2023 talk about flamegraphs
[libguestfs-talks.git] / 2023-flamegraphs / dwarf.svg
diff --git a/2023-flamegraphs/dwarf.svg b/2023-flamegraphs/dwarf.svg
new file mode 100644 (file)
index 0000000..cec95c4
--- /dev/null
@@ -0,0 +1,20729 @@
+<?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="1046" onload="init(evt)" viewBox="0 0 1200 1046" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<!-- Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples. -->
+<!-- NOTES:  -->
+<defs>
+       <linearGradient id="background" y1="0" y2="1" x1="0" x2="0" >
+               <stop stop-color="#eeeeee" offset="5%" />
+               <stop stop-color="#eeeeb0" offset="95%" />
+       </linearGradient>
+</defs>
+<style type="text/css">
+       text { font-family:Verdana; font-size:12px; fill:rgb(0,0,0); }
+       #search, #ignorecase { opacity:0.1; cursor:pointer; }
+       #search:hover, #search.show, #ignorecase:hover, #ignorecase.show { opacity:1; }
+       #subtitle { text-anchor:middle; font-color:rgb(160,160,160); }
+       #title { text-anchor:middle; font-size:17px}
+       #unzoom { cursor:pointer; }
+       #frames > *:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
+       .hide { display:none; }
+       .parent { opacity:0.5; }
+</style>
+<script type="text/ecmascript">
+<![CDATA[
+       "use strict";
+       var details, searchbtn, unzoombtn, matchedtxt, svg, searching, currentSearchTerm, ignorecase, ignorecaseBtn;
+       function init(evt) {
+               details = document.getElementById("details").firstChild;
+               searchbtn = document.getElementById("search");
+               ignorecaseBtn = document.getElementById("ignorecase");
+               unzoombtn = document.getElementById("unzoom");
+               matchedtxt = document.getElementById("matched");
+               svg = document.getElementsByTagName("svg")[0];
+               searching = 0;
+               currentSearchTerm = null;
+
+               // use GET parameters to restore a flamegraphs state.
+               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);
+       }
+
+       // 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(true);
+                       zoom(target);
+                       if (!document.querySelector('.parent')) {
+                               // we have basically done a clearzoom so clear the url
+                               var params = get_params();
+                               if (params.x) delete params.x;
+                               if (params.y) delete params.y;
+                               history.replaceState(null, null, parse_params(params));
+                               unzoombtn.classList.add("hide");
+                               return;
+                       }
+
+                       // set parameters for zoom state
+                       var el = target.querySelector("rect");
+                       if (el && el.attributes && el.attributes.y && el.attributes._orig_x) {
+                               var params = get_params()
+                               params.x = el.attributes._orig_x.value;
+                               params.y = el.attributes.y.value;
+                               history.replaceState(null, null, parse_params(params));
+                       }
+               }
+               else if (e.target.id == "unzoom") clearzoom();
+               else if (e.target.id == "search") search_prompt();
+               else if (e.target.id == "ignorecase") toggle_ignorecase();
+       }, false)
+
+       // mouse-over for info
+       // show
+       window.addEventListener("mouseover", function(e) {
+               var target = find_group(e.target);
+               if (target) details.nodeValue = "Function: " + g_to_text(target);
+       }, false)
+
+       // clear
+       window.addEventListener("mouseout", function(e) {
+               var target = find_group(e.target);
+               if (target) details.nodeValue = ' ';
+       }, false)
+
+       // ctrl-F for search
+       // ctrl-I to toggle case-sensitive search
+       window.addEventListener("keydown",function (e) {
+               if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
+                       e.preventDefault();
+                       search_prompt();
+               }
+               else if (e.ctrlKey && e.keyCode === 73) {
+                       e.preventDefault();
+                       toggle_ignorecase();
+               }
+       }, 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];
+       }
+       function find_group(node) {
+               var parent = node.parentElement;
+               if (!parent) return;
+               if (parent.id == "frames") return node;
+               return find_group(parent);
+       }
+       function orig_save(e, attr, val) {
+               if (e.attributes["_orig_" + attr] != undefined) return;
+               if (e.attributes[attr] == undefined) return;
+               if (val == undefined) val = e.attributes[attr].value;
+               e.setAttribute("_orig_" + attr, val);
+       }
+       function orig_load(e, attr) {
+               if (e.attributes["_orig_"+attr] == undefined) return;
+               e.attributes[attr].value = e.attributes["_orig_" + attr].value;
+               e.removeAttribute("_orig_"+attr);
+       }
+       function g_to_text(e) {
+               var text = find_child(e, "title").firstChild.nodeValue;
+               return (text)
+       }
+       function g_to_func(e) {
+               var func = g_to_text(e);
+               // if there's any manipulation we want to do to the function
+               // name before it's searched, do it here before returning.
+               return (func);
+       }
+       function update_text(e) {
+               var r = find_child(e, "rect");
+               var t = find_child(e, "text");
+               var w = parseFloat(r.attributes.width.value) -3;
+               var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
+               t.attributes.x.value = parseFloat(r.attributes.x.value) + 3;
+
+               // Smaller than this size won't fit anything
+               if (w < 2 * 12 * 0.59) {
+                       t.textContent = "";
+                       return;
+               }
+
+               t.textContent = txt;
+               var sl = t.getSubStringLength(0, txt.length);
+               // check if only whitespace or if we can fit the entire string into width w
+               if (/^ *$/.test(txt) || sl < w)
+                       return;
+
+               // this isn't perfect, but gives a good starting point
+               // and avoids calling getSubStringLength too often
+               var start = Math.floor((w/sl) * txt.length);
+               for (var x = start; x > 0; x = x-2) {
+                       if (t.getSubStringLength(0, x + 2) <= w) {
+                               t.textContent = txt.substring(0, x) + "..";
+                               return;
+                       }
+               }
+               t.textContent = "";
+       }
+
+       // zoom
+       function zoom_reset(e) {
+               if (e.attributes != undefined) {
+                       orig_load(e, "x");
+                       orig_load(e, "width");
+               }
+               if (e.childNodes == undefined) return;
+               for (var i = 0, c = e.childNodes; i < c.length; i++) {
+                       zoom_reset(c[i]);
+               }
+       }
+       function zoom_child(e, x, ratio) {
+               if (e.attributes != undefined) {
+                       if (e.attributes.x != undefined) {
+                               orig_save(e, "x");
+                               e.attributes.x.value = (parseFloat(e.attributes.x.value) - x - 10) * ratio + 10;
+                               if (e.tagName == "text")
+                                       e.attributes.x.value = find_child(e.parentNode, "rect[x]").attributes.x.value + 3;
+                       }
+                       if (e.attributes.width != undefined) {
+                               orig_save(e, "width");
+                               e.attributes.width.value = parseFloat(e.attributes.width.value) * ratio;
+                       }
+               }
+
+               if (e.childNodes == undefined) return;
+               for (var i = 0, c = e.childNodes; i < c.length; i++) {
+                       zoom_child(c[i], x - 10, ratio);
+               }
+       }
+       function zoom_parent(e) {
+               if (e.attributes) {
+                       if (e.attributes.x != undefined) {
+                               orig_save(e, "x");
+                               e.attributes.x.value = 10;
+                       }
+                       if (e.attributes.width != undefined) {
+                               orig_save(e, "width");
+                               e.attributes.width.value = parseInt(svg.width.baseVal.value) - (10 * 2);
+                       }
+               }
+               if (e.childNodes == undefined) return;
+               for (var i = 0, c = e.childNodes; i < c.length; i++) {
+                       zoom_parent(c[i]);
+               }
+       }
+       function zoom(node) {
+               var attr = find_child(node, "rect").attributes;
+               var width = parseFloat(attr.width.value);
+               var xmin = parseFloat(attr.x.value);
+               var xmax = parseFloat(xmin + width);
+               var ymin = parseFloat(attr.y.value);
+               var ratio = (svg.width.baseVal.value - 2 * 10) / width;
+
+               // XXX: Workaround for JavaScript float issues (fix me)
+               var fudge = 0.0001;
+
+               unzoombtn.classList.remove("hide");
+
+               var el = document.getElementById("frames").children;
+               for (var i = 0; i < el.length; i++) {
+                       var e = el[i];
+                       var a = find_child(e, "rect").attributes;
+                       var ex = parseFloat(a.x.value);
+                       var ew = parseFloat(a.width.value);
+                       var upstack;
+                       // Is it an ancestor
+                       if (0 == 0) {
+                               upstack = parseFloat(a.y.value) > ymin;
+                       } else {
+                               upstack = parseFloat(a.y.value) < ymin;
+                       }
+                       if (upstack) {
+                               // Direct ancestor
+                               if (ex <= xmin && (ex+ew+fudge) >= xmax) {
+                                       e.classList.add("parent");
+                                       zoom_parent(e);
+                                       update_text(e);
+                               }
+                               // not in current path
+                               else
+                                       e.classList.add("hide");
+                       }
+                       // Children maybe
+                       else {
+                               // no common path
+                               if (ex < xmin || ex + fudge >= xmax) {
+                                       e.classList.add("hide");
+                               }
+                               else {
+                                       zoom_child(e, xmin, ratio);
+                                       update_text(e);
+                               }
+                       }
+               }
+               search();
+       }
+       function unzoom(dont_update_text) {
+               unzoombtn.classList.add("hide");
+               var el = document.getElementById("frames").children;
+               for(var i = 0; i < el.length; i++) {
+                       el[i].classList.remove("parent");
+                       el[i].classList.remove("hide");
+                       zoom_reset(el[i]);
+                       if(!dont_update_text) update_text(el[i]);
+               }
+               search();
+       }
+       function clearzoom() {
+               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));
+       }
+
+       // search
+       function toggle_ignorecase() {
+               ignorecase = !ignorecase;
+               if (ignorecase) {
+                       ignorecaseBtn.classList.add("show");
+               } else {
+                       ignorecaseBtn.classList.remove("show");
+               }
+               reset_search();
+               search();
+       }
+       function reset_search() {
+               var el = document.querySelectorAll("#frames rect");
+               for (var i = 0; i < el.length; i++) {
+                       orig_load(el[i], "fill")
+               }
+               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_)"
+                           + (ignorecase ? ", ignoring case" : "")
+                           + "\nPress Ctrl-i to toggle case sensitivity", "");
+                       if (term != null) search(term);
+               } else {
+                       reset_search();
+                       searching = 0;
+                       currentSearchTerm = null;
+                       searchbtn.classList.remove("show");
+                       searchbtn.firstChild.nodeValue = "Search"
+                       matchedtxt.classList.add("hide");
+                       matchedtxt.firstChild.nodeValue = ""
+               }
+       }
+       function search(term) {
+               if (term) currentSearchTerm = term;
+
+               var re = new RegExp(currentSearchTerm, ignorecase ? 'i' : '');
+               var el = document.getElementById("frames").children;
+               var matches = new Object();
+               var maxwidth = 0;
+               for (var i = 0; i < el.length; i++) {
+                       var e = el[i];
+                       var func = g_to_func(e);
+                       var rect = find_child(e, "rect");
+                       if (func == null || rect == null)
+                               continue;
+
+                       // Save max width. Only works as we have a root frame
+                       var w = parseFloat(rect.attributes.width.value);
+                       if (w > maxwidth)
+                               maxwidth = w;
+
+                       if (func.match(re)) {
+                               // highlight
+                               var x = parseFloat(rect.attributes.x.value);
+                               orig_save(rect, "fill");
+                               rect.attributes.fill.value = "rgb(230,0,230)";
+
+                               // remember matches
+                               if (matches[x] == undefined) {
+                                       matches[x] = w;
+                               } else {
+                                       if (w > matches[x]) {
+                                               // overwrite with parent
+                                               matches[x] = w;
+                                       }
+                               }
+                               searching = 1;
+                       }
+               }
+               if (!searching)
+                       return;
+               var params = get_params();
+               params.s = currentSearchTerm;
+               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.
+               var fudge = 0.0001;     // JavaScript floating point
+               for (var k in keys) {
+                       var x = parseFloat(keys[k]);
+                       var w = matches[keys[k]];
+                       if (x >= lastx + lastw - fudge) {
+                               count += w;
+                               lastx = x;
+                               lastw = w;
+                       }
+               }
+               // display matched percent
+               matchedtxt.classList.remove("hide");
+               var pct = 100 * count / maxwidth;
+               if (pct != 100) pct = pct.toFixed(1)
+               matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
+       }
+]]>
+</script>
+<rect x="0.0" y="0" width="1200.0" height="1046.0" fill="url(#background)"  />
+<text id="title" x="600.00" y="24" >Flame Graph</text>
+<text id="details" x="10.00" y="1029" > </text>
+<text id="unzoom" x="10.00" y="24" class="hide">Reset Zoom</text>
+<text id="search" x="1090.00" y="24" >Search</text>
+<text id="ignorecase" x="1174.00" y="24" >ic</text>
+<text id="matched" x="1090.00" y="1029" > </text>
+<g id="frames">
+<g >
+<title>[libgtk-3.so.0.2404.30] (82,492,974 samples, 0.02%)</title><rect x="1174.2" y="709" width="0.3" height="15.0" fill="rgb(220,131,49)" rx="2" ry="2" />
+<text  x="1177.20" y="719.5" ></text>
+</g>
+<g >
+<title>preempt_count_add (56,775,954 samples, 0.02%)</title><rect x="678.7" y="757" width="0.2" height="15.0" fill="rgb(220,217,27)" rx="2" ry="2" />
+<text  x="681.71" y="767.5" ></text>
+</g>
+<g >
+<title>do_sys_poll (31,135,581 samples, 0.01%)</title><rect x="244.4" y="917" width="0.1" height="15.0" fill="rgb(217,101,32)" rx="2" ry="2" />
+<text  x="247.39" y="927.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (62,803,729 samples, 0.02%)</title><rect x="36.0" y="853" width="0.2" height="15.0" fill="rgb(210,216,21)" rx="2" ry="2" />
+<text  x="38.95" y="863.5" ></text>
+</g>
+<g >
+<title>xfs_file_write_checks (463,182,763 samples, 0.13%)</title><rect x="721.4" y="789" width="1.5" height="15.0" fill="rgb(235,179,45)" rx="2" ry="2" />
+<text  x="724.44" y="799.5" ></text>
+</g>
+<g >
+<title>rmqueue_bulk (37,631,896 samples, 0.01%)</title><rect x="457.6" y="821" width="0.1" height="15.0" fill="rgb(235,87,48)" rx="2" ry="2" />
+<text  x="460.58" y="831.5" ></text>
+</g>
+<g >
+<title>enqueue_entity (31,779,443 samples, 0.01%)</title><rect x="906.6" y="709" width="0.1" height="15.0" fill="rgb(247,176,29)" rx="2" ry="2" />
+<text  x="909.61" y="719.5" ></text>
+</g>
+<g >
+<title>[firefox] (283,029,377 samples, 0.08%)</title><rect x="172.2" y="917" width="0.9" height="15.0" fill="rgb(242,88,34)" rx="2" ry="2" />
+<text  x="175.20" y="927.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (551,840,625 samples, 0.15%)</title><rect x="223.5" y="965" width="1.7" height="15.0" fill="rgb(218,31,29)" rx="2" ry="2" />
+<text  x="226.46" y="975.5" ></text>
+</g>
+<g >
+<title>[firefox] (128,750,631 samples, 0.04%)</title><rect x="172.7" y="901" width="0.4" height="15.0" fill="rgb(210,62,25)" rx="2" ry="2" />
+<text  x="175.68" y="911.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (3,178,147,998 samples, 0.87%)</title><rect x="126.2" y="901" width="10.2" height="15.0" fill="rgb(213,82,54)" rx="2" ry="2" />
+<text  x="129.17" y="911.5" ></text>
+</g>
+<g >
+<title>__radix_tree_lookup (98,905,062 samples, 0.03%)</title><rect x="370.9" y="869" width="0.3" height="15.0" fill="rgb(243,198,5)" rx="2" ry="2" />
+<text  x="373.93" y="879.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (165,655,698 samples, 0.05%)</title><rect x="530.7" y="853" width="0.5" height="15.0" fill="rgb(220,59,28)" rx="2" ry="2" />
+<text  x="533.71" y="863.5" ></text>
+</g>
+<g >
+<title>__sys_recvmsg (58,902,542 samples, 0.02%)</title><rect x="1170.4" y="933" width="0.2" height="15.0" fill="rgb(207,111,20)" rx="2" ry="2" />
+<text  x="1173.44" y="943.5" ></text>
+</g>
+<g >
+<title>__list_del_entry_valid (125,399,887 samples, 0.03%)</title><rect x="710.3" y="677" width="0.4" height="15.0" fill="rgb(252,53,52)" rx="2" ry="2" />
+<text  x="713.28" y="687.5" ></text>
+</g>
+<g >
+<title>__sk_mem_raise_allocated (37,541,438 samples, 0.01%)</title><rect x="665.6" y="693" width="0.1" height="15.0" fill="rgb(222,62,29)" rx="2" ry="2" />
+<text  x="668.58" y="703.5" ></text>
+</g>
+<g >
+<title>kworker/5:0 (239,413,266 samples, 0.07%)</title><rect x="392.0" y="981" width="0.7" height="15.0" fill="rgb(209,174,14)" rx="2" ry="2" />
+<text  x="394.95" y="991.5" ></text>
+</g>
+<g >
+<title>psi_group_change (40,772,566 samples, 0.01%)</title><rect x="881.9" y="789" width="0.1" height="15.0" fill="rgb(216,184,16)" rx="2" ry="2" />
+<text  x="884.87" y="799.5" ></text>
+</g>
+<g >
+<title>free (32,712,136 samples, 0.01%)</title><rect x="114.3" y="933" width="0.1" height="15.0" fill="rgb(253,85,25)" rx="2" ry="2" />
+<text  x="117.31" y="943.5" ></text>
+</g>
+<g >
+<title>__libc_start_call_main (92,132,750 samples, 0.03%)</title><rect x="1167.1" y="933" width="0.3" height="15.0" fill="rgb(242,76,8)" rx="2" ry="2" />
+<text  x="1170.10" y="943.5" ></text>
+</g>
+<g >
+<title>[libz.so.1.2.12] (16,543,735,423 samples, 4.51%)</title><rect x="761.3" y="853" width="53.2" height="15.0" fill="rgb(209,174,30)" rx="2" ry="2" />
+<text  x="764.28" y="863.5" >[libz..</text>
+</g>
+<g >
+<title>sg_init_table (129,412,083 samples, 0.04%)</title><rect x="570.8" y="869" width="0.4" height="15.0" fill="rgb(207,158,11)" rx="2" ry="2" />
+<text  x="573.83" y="879.5" ></text>
+</g>
+<g >
+<title>__x64_sys_futex (314,732,244 samples, 0.09%)</title><rect x="158.2" y="853" width="1.0" height="15.0" fill="rgb(234,219,7)" rx="2" ry="2" />
+<text  x="161.21" y="863.5" ></text>
+</g>
+<g >
+<title>__sys_recvmsg (203,708,531 samples, 0.06%)</title><rect x="737.0" y="661" width="0.6" height="15.0" fill="rgb(215,187,54)" rx="2" ry="2" />
+<text  x="739.99" y="671.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (67,505,088 samples, 0.02%)</title><rect x="813.5" y="805" width="0.2" height="15.0" fill="rgb(224,75,19)" rx="2" ry="2" />
+<text  x="816.49" y="815.5" ></text>
+</g>
+<g >
+<title>i915_gem_object_pin_map (47,929,969 samples, 0.01%)</title><rect x="140.9" y="709" width="0.1" height="15.0" fill="rgb(208,7,19)" rx="2" ry="2" />
+<text  x="143.88" y="719.5" ></text>
+</g>
+<g >
+<title>drm_ioctl_kernel (116,256,922 samples, 0.03%)</title><rect x="134.4" y="757" width="0.3" height="15.0" fill="rgb(243,51,52)" rx="2" ry="2" />
+<text  x="137.35" y="767.5" ></text>
+</g>
+<g >
+<title>try_to_wake_up (178,797,301 samples, 0.05%)</title><rect x="48.0" y="709" width="0.6" height="15.0" fill="rgb(241,157,38)" rx="2" ry="2" />
+<text  x="51.02" y="719.5" ></text>
+</g>
+<g >
+<title>[libEGL_mesa.so.0.0.0] (765,156,570 samples, 0.21%)</title><rect x="143.2" y="933" width="2.5" height="15.0" fill="rgb(248,61,50)" rx="2" ry="2" />
+<text  x="146.24" y="943.5" ></text>
+</g>
+<g >
+<title>sock_alloc_send_pskb (139,271,028 samples, 0.04%)</title><rect x="47.4" y="821" width="0.4" height="15.0" fill="rgb(241,133,38)" rx="2" ry="2" />
+<text  x="50.36" y="831.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (834,673,174 samples, 0.23%)</title><rect x="1171.5" y="725" width="2.7" height="15.0" fill="rgb(228,193,7)" rx="2" ry="2" />
+<text  x="1174.50" y="735.5" ></text>
+</g>
+<g >
+<title>kthread (936,653,780 samples, 0.26%)</title><rect x="382.7" y="949" width="3.1" height="15.0" fill="rgb(247,173,54)" rx="2" ry="2" />
+<text  x="385.74" y="959.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (69,800,673 samples, 0.02%)</title><rect x="1166.2" y="757" width="0.2" height="15.0" fill="rgb(232,174,22)" rx="2" ry="2" />
+<text  x="1169.22" y="767.5" ></text>
+</g>
+<g >
+<title>pm_qos_read_value (66,186,574 samples, 0.02%)</title><rect x="1139.2" y="869" width="0.2" height="15.0" fill="rgb(212,203,51)" rx="2" ry="2" />
+<text  x="1142.17" y="879.5" ></text>
+</g>
+<g >
+<title>__libc_start_call_main (3,006,127,634 samples, 0.82%)</title><rect x="819.1" y="933" width="9.6" height="15.0" fill="rgb(235,25,44)" rx="2" ry="2" />
+<text  x="822.07" y="943.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (237,478,373 samples, 0.06%)</title><rect x="737.0" y="677" width="0.7" height="15.0" fill="rgb(206,109,40)" rx="2" ry="2" />
+<text  x="739.98" y="687.5" ></text>
+</g>
+<g >
+<title>__softirqentry_text_start (69,544,464 samples, 0.02%)</title><rect x="665.8" y="597" width="0.2" height="15.0" fill="rgb(250,94,19)" rx="2" ry="2" />
+<text  x="668.76" y="607.5" ></text>
+</g>
+<g >
+<title>__writeback_single_inode (438,511,554 samples, 0.12%)</title><rect x="523.3" y="837" width="1.4" height="15.0" fill="rgb(240,147,7)" rx="2" ry="2" />
+<text  x="526.31" y="847.5" ></text>
+</g>
+<g >
+<title>mozilla::detail::MutexImpl::unlock (50,000,728 samples, 0.01%)</title><rect x="157.2" y="949" width="0.2" height="15.0" fill="rgb(227,134,52)" rx="2" ry="2" />
+<text  x="160.24" y="959.5" ></text>
+</g>
+<g >
+<title>free (350,917,672 samples, 0.10%)</title><rect x="268.0" y="949" width="1.1" height="15.0" fill="rgb(237,144,5)" rx="2" ry="2" />
+<text  x="271.01" y="959.5" ></text>
+</g>
+<g >
+<title>__libc_poll (74,085,248 samples, 0.02%)</title><rect x="622.6" y="677" width="0.3" height="15.0" fill="rgb(213,206,36)" rx="2" ry="2" />
+<text  x="625.62" y="687.5" ></text>
+</g>
+<g >
+<title>__sysvec_apic_timer_interrupt (2,866,727,817 samples, 0.78%)</title><rect x="904.9" y="837" width="9.3" height="15.0" fill="rgb(218,94,47)" rx="2" ry="2" />
+<text  x="907.93" y="847.5" ></text>
+</g>
+<g >
+<title>iomap_finish_ioends (279,937,777 samples, 0.08%)</title><rect x="392.7" y="869" width="0.9" height="15.0" fill="rgb(235,190,17)" rx="2" ry="2" />
+<text  x="395.75" y="879.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (46,491,693 samples, 0.01%)</title><rect x="622.7" y="645" width="0.1" height="15.0" fill="rgb(239,84,32)" rx="2" ry="2" />
+<text  x="625.67" y="655.5" ></text>
+</g>
+<g >
+<title>_find_next_bit (111,762,997 samples, 0.03%)</title><rect x="373.2" y="837" width="0.3" height="15.0" fill="rgb(243,81,18)" rx="2" ry="2" />
+<text  x="376.18" y="847.5" ></text>
+</g>
+<g >
+<title>try_to_wake_up (48,883,960 samples, 0.01%)</title><rect x="173.8" y="821" width="0.1" height="15.0" fill="rgb(216,4,28)" rx="2" ry="2" />
+<text  x="176.75" y="831.5" ></text>
+</g>
+<g >
+<title>__writeback_single_inode (299,662,202 samples, 0.08%)</title><rect x="502.1" y="837" width="1.0" height="15.0" fill="rgb(219,180,28)" rx="2" ry="2" />
+<text  x="505.10" y="847.5" ></text>
+</g>
+<g >
+<title>loopback_xmit (41,353,362 samples, 0.01%)</title><rect x="740.2" y="389" width="0.2" height="15.0" fill="rgb(239,74,41)" rx="2" ry="2" />
+<text  x="743.24" y="399.5" ></text>
+</g>
+<g >
+<title>__GI___ioctl (414,815,154 samples, 0.11%)</title><rect x="132.7" y="805" width="1.3" height="15.0" fill="rgb(239,207,29)" rx="2" ry="2" />
+<text  x="135.66" y="815.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (5,676,302,212 samples, 1.55%)</title><rect x="460.7" y="965" width="18.3" height="15.0" fill="rgb(236,187,46)" rx="2" ry="2" />
+<text  x="463.73" y="975.5" ></text>
+</g>
+<g >
+<title>__libc_poll (45,284,258 samples, 0.01%)</title><rect x="615.7" y="933" width="0.2" height="15.0" fill="rgb(221,82,15)" rx="2" ry="2" />
+<text  x="618.71" y="943.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (46,115,018 samples, 0.01%)</title><rect x="735.9" y="869" width="0.1" height="15.0" fill="rgb(253,191,9)" rx="2" ry="2" />
+<text  x="738.88" y="879.5" ></text>
+</g>
+<g >
+<title>skcipher_walk_virt (261,965,480 samples, 0.07%)</title><rect x="431.4" y="821" width="0.8" height="15.0" fill="rgb(239,168,40)" rx="2" ry="2" />
+<text  x="434.36" y="831.5" ></text>
+</g>
+<g >
+<title>__writeback_inodes_wb (459,498,837 samples, 0.13%)</title><rect x="418.7" y="869" width="1.4" height="15.0" fill="rgb(250,146,14)" rx="2" ry="2" />
+<text  x="421.66" y="879.5" ></text>
+</g>
+<g >
+<title>irq_work_run_list (64,531,298 samples, 0.02%)</title><rect x="896.5" y="741" width="0.2" height="15.0" fill="rgb(237,108,4)" rx="2" ry="2" />
+<text  x="899.46" y="751.5" ></text>
+</g>
+<g >
+<title>iv_of_dmreq (268,171,751 samples, 0.07%)</title><rect x="610.4" y="869" width="0.9" height="15.0" fill="rgb(207,61,4)" rx="2" ry="2" />
+<text  x="613.42" y="879.5" ></text>
+</g>
+<g >
+<title>__GI___write (366,394,320 samples, 0.10%)</title><rect x="814.9" y="885" width="1.2" height="15.0" fill="rgb(246,145,46)" rx="2" ry="2" />
+<text  x="817.88" y="895.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (442,354,297 samples, 0.12%)</title><rect x="1171.6" y="357" width="1.4" height="15.0" fill="rgb(212,106,36)" rx="2" ry="2" />
+<text  x="1174.56" y="367.5" ></text>
+</g>
+<g >
+<title>[libglib-2.0.so.0.7303.0] (201,809,332 samples, 0.06%)</title><rect x="1187.5" y="885" width="0.6" height="15.0" fill="rgb(221,56,32)" rx="2" ry="2" />
+<text  x="1190.49" y="895.5" ></text>
+</g>
+<g >
+<title>__mod_lruvec_page_state (38,419,665 samples, 0.01%)</title><rect x="378.4" y="709" width="0.1" height="15.0" fill="rgb(253,24,30)" rx="2" ry="2" />
+<text  x="381.43" y="719.5" ></text>
+</g>
+<g >
+<title>__skb_datagram_iter (48,368,064 samples, 0.01%)</title><rect x="229.1" y="821" width="0.1" height="15.0" fill="rgb(244,32,34)" rx="2" ry="2" />
+<text  x="232.08" y="831.5" ></text>
+</g>
+<g >
+<title>iomap_writepages (163,765,990 samples, 0.04%)</title><rect x="533.4" y="789" width="0.5" height="15.0" fill="rgb(240,39,46)" rx="2" ry="2" />
+<text  x="536.40" y="799.5" ></text>
+</g>
+<g >
+<title>refill_stock (32,298,818 samples, 0.01%)</title><rect x="629.3" y="549" width="0.1" height="15.0" fill="rgb(217,166,0)" rx="2" ry="2" />
+<text  x="632.28" y="559.5" ></text>
+</g>
+<g >
+<title>__hrtimer_next_event_base (37,100,890 samples, 0.01%)</title><rect x="1159.7" y="853" width="0.1" height="15.0" fill="rgb(248,45,47)" rx="2" ry="2" />
+<text  x="1162.73" y="863.5" ></text>
+</g>
+<g >
+<title>iwl_mvm_tx_mpdu (495,560,085 samples, 0.14%)</title><rect x="633.4" y="389" width="1.5" height="15.0" fill="rgb(236,137,33)" rx="2" ry="2" />
+<text  x="636.35" y="399.5" ></text>
+</g>
+<g >
+<title>__strlen_avx2 (31,574,076 samples, 0.01%)</title><rect x="94.1" y="949" width="0.1" height="15.0" fill="rgb(219,167,32)" rx="2" ry="2" />
+<text  x="97.09" y="959.5" ></text>
+</g>
+<g >
+<title>[libcurl.so.4.8.0] (70,355,803 samples, 0.02%)</title><rect x="668.7" y="693" width="0.2" height="15.0" fill="rgb(245,65,9)" rx="2" ry="2" />
+<text  x="671.68" y="703.5" ></text>
+</g>
+<g >
+<title>get_page_from_freelist (54,360,816 samples, 0.01%)</title><rect x="533.2" y="837" width="0.1" height="15.0" fill="rgb(218,32,43)" rx="2" ry="2" />
+<text  x="536.16" y="847.5" ></text>
+</g>
+<g >
+<title>get_page_from_freelist (142,228,158 samples, 0.04%)</title><rect x="594.6" y="837" width="0.5" height="15.0" fill="rgb(251,36,54)" rx="2" ry="2" />
+<text  x="597.64" y="847.5" ></text>
+</g>
+<g >
+<title>do_sys_poll (58,765,048 samples, 0.02%)</title><rect x="1170.6" y="917" width="0.2" height="15.0" fill="rgb(251,117,28)" rx="2" ry="2" />
+<text  x="1173.63" y="927.5" ></text>
+</g>
+<g >
+<title>free_unref_page_commit (97,061,161 samples, 0.03%)</title><rect x="368.1" y="837" width="0.4" height="15.0" fill="rgb(223,225,25)" rx="2" ry="2" />
+<text  x="371.14" y="847.5" ></text>
+</g>
+<g >
+<title>__sys_recvmsg (36,909,690 samples, 0.01%)</title><rect x="1182.5" y="933" width="0.1" height="15.0" fill="rgb(226,18,43)" rx="2" ry="2" />
+<text  x="1185.46" y="943.5" ></text>
+</g>
+<g >
+<title>__softirqentry_text_start (192,736,622 samples, 0.05%)</title><rect x="832.8" y="789" width="0.6" height="15.0" fill="rgb(205,190,2)" rx="2" ry="2" />
+<text  x="835.75" y="799.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (195,411,074 samples, 0.05%)</title><rect x="748.9" y="805" width="0.6" height="15.0" fill="rgb(243,40,40)" rx="2" ry="2" />
+<text  x="751.88" y="815.5" ></text>
+</g>
+<g >
+<title>do_writepages (756,192,153 samples, 0.21%)</title><rect x="571.9" y="821" width="2.4" height="15.0" fill="rgb(246,229,40)" rx="2" ry="2" />
+<text  x="574.86" y="831.5" ></text>
+</g>
+<g >
+<title>timerqueue_del (37,547,864 samples, 0.01%)</title><rect x="1158.7" y="853" width="0.1" height="15.0" fill="rgb(230,18,12)" rx="2" ry="2" />
+<text  x="1161.68" y="863.5" ></text>
+</g>
+<g >
+<title>vfs_write (72,315,212 samples, 0.02%)</title><rect x="732.1" y="917" width="0.2" height="15.0" fill="rgb(208,143,48)" rx="2" ry="2" />
+<text  x="735.07" y="927.5" ></text>
+</g>
+<g >
+<title>try_to_wake_up (76,616,984 samples, 0.02%)</title><rect x="318.8" y="741" width="0.2" height="15.0" fill="rgb(215,178,48)" rx="2" ry="2" />
+<text  x="321.76" y="751.5" ></text>
+</g>
+<g >
+<title>bdev_write_page (272,396,994 samples, 0.07%)</title><rect x="368.9" y="805" width="0.8" height="15.0" fill="rgb(210,185,30)" rx="2" ry="2" />
+<text  x="371.87" y="815.5" ></text>
+</g>
+<g >
+<title>free_pcp_prepare (46,298,519 samples, 0.01%)</title><rect x="366.2" y="837" width="0.2" height="15.0" fill="rgb(213,87,48)" rx="2" ry="2" />
+<text  x="369.22" y="847.5" ></text>
+</g>
+<g >
+<title>__memcpy_avx_unaligned_erms (201,616,131 samples, 0.06%)</title><rect x="746.2" y="805" width="0.6" height="15.0" fill="rgb(225,96,13)" rx="2" ry="2" />
+<text  x="749.18" y="815.5" ></text>
+</g>
+<g >
+<title>realloc (150,707,666 samples, 0.04%)</title><rect x="297.8" y="933" width="0.5" height="15.0" fill="rgb(224,2,23)" rx="2" ry="2" />
+<text  x="300.85" y="943.5" ></text>
+</g>
+<g >
+<title>ip_sublist_rcv_finish (43,758,812 samples, 0.01%)</title><rect x="309.1" y="645" width="0.1" height="15.0" fill="rgb(206,184,20)" rx="2" ry="2" />
+<text  x="312.10" y="655.5" ></text>
+</g>
+<g >
+<title>copy_user_enhanced_fast_string (101,815,961 samples, 0.03%)</title><rect x="745.3" y="501" width="0.3" height="15.0" fill="rgb(241,211,53)" rx="2" ry="2" />
+<text  x="748.29" y="511.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (282,559,511 samples, 0.08%)</title><rect x="471.8" y="853" width="0.9" height="15.0" fill="rgb(226,200,10)" rx="2" ry="2" />
+<text  x="474.76" y="863.5" ></text>
+</g>
+<g >
+<title>update_blocked_averages (35,960,121 samples, 0.01%)</title><rect x="822.5" y="725" width="0.1" height="15.0" fill="rgb(216,92,14)" rx="2" ry="2" />
+<text  x="825.48" y="735.5" ></text>
+</g>
+<g >
+<title>pick_next_task_fair (245,385,752 samples, 0.07%)</title><rect x="89.2" y="821" width="0.8" height="15.0" fill="rgb(244,133,51)" rx="2" ry="2" />
+<text  x="92.23" y="831.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (76,607,562 samples, 0.02%)</title><rect x="150.4" y="949" width="0.2" height="15.0" fill="rgb(208,59,25)" rx="2" ry="2" />
+<text  x="153.35" y="959.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (400,317,118 samples, 0.11%)</title><rect x="588.7" y="853" width="1.2" height="15.0" fill="rgb(220,212,9)" rx="2" ry="2" />
+<text  x="591.66" y="863.5" ></text>
+</g>
+<g >
+<title>__list_del_entry_valid (111,547,824 samples, 0.03%)</title><rect x="707.2" y="693" width="0.4" height="15.0" fill="rgb(252,102,49)" rx="2" ry="2" />
+<text  x="710.20" y="703.5" ></text>
+</g>
+<g >
+<title>folio_end_writeback (248,377,925 samples, 0.07%)</title><rect x="392.8" y="837" width="0.8" height="15.0" fill="rgb(248,70,35)" rx="2" ry="2" />
+<text  x="395.85" y="847.5" ></text>
+</g>
+<g >
+<title>[libcurl.so.4.8.0] (47,381,533 samples, 0.01%)</title><rect x="668.2" y="709" width="0.2" height="15.0" fill="rgb(233,101,7)" rx="2" ry="2" />
+<text  x="671.21" y="719.5" ></text>
+</g>
+<g >
+<title>__mod_node_page_state (121,167,933 samples, 0.03%)</title><rect x="717.1" y="725" width="0.4" height="15.0" fill="rgb(247,199,11)" rx="2" ry="2" />
+<text  x="720.07" y="735.5" ></text>
+</g>
+<g >
+<title>shmem_getpage_gfp (77,403,525 samples, 0.02%)</title><rect x="134.5" y="661" width="0.2" height="15.0" fill="rgb(214,103,43)" rx="2" ry="2" />
+<text  x="137.48" y="671.5" ></text>
+</g>
+<g >
+<title>__mod_lruvec_page_state (62,768,573 samples, 0.02%)</title><rect x="758.8" y="709" width="0.2" height="15.0" fill="rgb(249,148,8)" rx="2" ry="2" />
+<text  x="761.77" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (454,653,443 samples, 0.12%)</title><rect x="12.9" y="901" width="1.5" height="15.0" fill="rgb(229,125,46)" rx="2" ry="2" />
+<text  x="15.90" y="911.5" ></text>
+</g>
+<g >
+<title>xcb_present_notify_msc (57,637,362 samples, 0.02%)</title><rect x="23.6" y="901" width="0.2" height="15.0" fill="rgb(206,80,51)" rx="2" ry="2" />
+<text  x="26.59" y="911.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (5,359,687,657 samples, 1.46%)</title><rect x="557.1" y="965" width="17.2" height="15.0" fill="rgb(229,59,7)" rx="2" ry="2" />
+<text  x="560.08" y="975.5" ></text>
+</g>
+<g >
+<title>__hrtimer_next_event_base (46,479,671 samples, 0.01%)</title><rect x="1156.0" y="805" width="0.1" height="15.0" fill="rgb(221,173,19)" rx="2" ry="2" />
+<text  x="1158.99" y="815.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (151,954,446 samples, 0.04%)</title><rect x="217.3" y="805" width="0.5" height="15.0" fill="rgb(245,77,2)" rx="2" ry="2" />
+<text  x="220.28" y="815.5" ></text>
+</g>
+<g >
+<title>try_to_wake_up (33,446,341 samples, 0.01%)</title><rect x="904.3" y="741" width="0.1" height="15.0" fill="rgb(206,124,27)" rx="2" ry="2" />
+<text  x="907.32" y="751.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (781,115,353 samples, 0.21%)</title><rect x="635.5" y="501" width="2.5" height="15.0" fill="rgb(213,186,11)" rx="2" ry="2" />
+<text  x="638.49" y="511.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (547,187,707 samples, 0.15%)</title><rect x="433.3" y="853" width="1.7" height="15.0" fill="rgb(235,56,8)" rx="2" ry="2" />
+<text  x="436.26" y="863.5" ></text>
+</g>
+<g >
+<title>[libxcb.so.1.1.0] (50,993,319 samples, 0.01%)</title><rect x="1165.3" y="773" width="0.2" height="15.0" fill="rgb(243,80,34)" rx="2" ry="2" />
+<text  x="1168.31" y="783.5" ></text>
+</g>
+<g >
+<title>futex_wait_setup (33,988,783 samples, 0.01%)</title><rect x="818.2" y="773" width="0.1" height="15.0" fill="rgb(225,126,34)" rx="2" ry="2" />
+<text  x="821.22" y="783.5" ></text>
+</g>
+<g >
+<title>tcp_recvmsg (3,542,714,468 samples, 0.97%)</title><rect x="628.3" y="597" width="11.4" height="15.0" fill="rgb(253,207,12)" rx="2" ry="2" />
+<text  x="631.33" y="607.5" ></text>
+</g>
+<g >
+<title>schedule_hrtimeout_range_clock (1,251,401,370 samples, 0.34%)</title><rect x="651.0" y="645" width="4.0" height="15.0" fill="rgb(223,10,46)" rx="2" ry="2" />
+<text  x="653.98" y="655.5" ></text>
+</g>
+<g >
+<title>[libxul.so] (73,514,201 samples, 0.02%)</title><rect x="180.7" y="965" width="0.3" height="15.0" fill="rgb(252,127,24)" rx="2" ry="2" />
+<text  x="183.74" y="975.5" ></text>
+</g>
+<g >
+<title>sock_alloc_send_pskb (159,354,312 samples, 0.04%)</title><rect x="19.5" y="661" width="0.5" height="15.0" fill="rgb(213,52,30)" rx="2" ry="2" />
+<text  x="22.45" y="671.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (51,382,007 samples, 0.01%)</title><rect x="214.8" y="773" width="0.2" height="15.0" fill="rgb(228,223,15)" rx="2" ry="2" />
+<text  x="217.83" y="783.5" ></text>
+</g>
+<g >
+<title>kthread (7,089,654,641 samples, 1.93%)</title><rect x="574.3" y="949" width="22.9" height="15.0" fill="rgb(206,107,42)" rx="2" ry="2" />
+<text  x="577.34" y="959.5" >k..</text>
+</g>
+<g >
+<title>xfs_vm_writepages (437,693,937 samples, 0.12%)</title><rect x="555.6" y="805" width="1.4" height="15.0" fill="rgb(230,62,4)" rx="2" ry="2" />
+<text  x="558.61" y="815.5" ></text>
+</g>
+<g >
+<title>mozilla::detail::ConditionVariableImpl::notify_one (180,770,906 samples, 0.05%)</title><rect x="24.9" y="949" width="0.6" height="15.0" fill="rgb(228,202,25)" rx="2" ry="2" />
+<text  x="27.88" y="959.5" ></text>
+</g>
+<g >
+<title>folio_referenced (100,765,206 samples, 0.03%)</title><rect x="355.5" y="853" width="0.3" height="15.0" fill="rgb(209,21,51)" rx="2" ry="2" />
+<text  x="358.51" y="863.5" ></text>
+</g>
+<g >
+<title>[libcurl.so.4.8.0] (7,783,419,309 samples, 2.12%)</title><rect x="618.8" y="741" width="25.0" height="15.0" fill="rgb(205,65,39)" rx="2" ry="2" />
+<text  x="621.79" y="751.5" >[..</text>
+</g>
+<g >
+<title>gtk_render_layout (31,389,548 samples, 0.01%)</title><rect x="1172.4" y="37" width="0.1" height="15.0" fill="rgb(205,80,10)" rx="2" ry="2" />
+<text  x="1175.43" y="47.5" ></text>
+</g>
+<g >
+<title>pa_mainloop_iterate (32,481,452 samples, 0.01%)</title><rect x="1162.0" y="885" width="0.1" height="15.0" fill="rgb(211,20,28)" rx="2" ry="2" />
+<text  x="1165.00" y="895.5" ></text>
+</g>
+<g >
+<title>plugin_pread (12,730,994,820 samples, 3.47%)</title><rect x="616.8" y="821" width="41.0" height="15.0" fill="rgb(249,131,31)" rx="2" ry="2" />
+<text  x="619.81" y="831.5" >plu..</text>
+</g>
+<g >
+<title>ip_finish_output2 (41,941,097 samples, 0.01%)</title><rect x="320.2" y="565" width="0.2" height="15.0" fill="rgb(218,38,48)" rx="2" ry="2" />
+<text  x="323.23" y="575.5" ></text>
+</g>
+<g >
+<title>set_next_entity (33,070,264 samples, 0.01%)</title><rect x="337.1" y="869" width="0.2" height="15.0" fill="rgb(238,175,32)" rx="2" ry="2" />
+<text  x="340.15" y="879.5" ></text>
+</g>
+<g >
+<title>common_interrupt (33,013,842 samples, 0.01%)</title><rect x="832.5" y="821" width="0.1" height="15.0" fill="rgb(209,40,27)" rx="2" ry="2" />
+<text  x="835.46" y="831.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (2,309,910,399 samples, 0.63%)</title><rect x="658.9" y="837" width="7.4" height="15.0" fill="rgb(238,61,45)" rx="2" ry="2" />
+<text  x="661.86" y="847.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (236,929,030 samples, 0.06%)</title><rect x="151.6" y="917" width="0.8" height="15.0" fill="rgb(230,35,24)" rx="2" ry="2" />
+<text  x="154.61" y="927.5" ></text>
+</g>
+<g >
+<title>__common_interrupt (55,757,416 samples, 0.02%)</title><rect x="900.1" y="773" width="0.2" height="15.0" fill="rgb(222,118,41)" rx="2" ry="2" />
+<text  x="903.14" y="783.5" ></text>
+</g>
+<g >
+<title>start_thread (32,481,452 samples, 0.01%)</title><rect x="1162.0" y="949" width="0.1" height="15.0" fill="rgb(239,65,54)" rx="2" ry="2" />
+<text  x="1165.00" y="959.5" ></text>
+</g>
+<g >
+<title>update_blocked_averages (36,776,713 samples, 0.01%)</title><rect x="813.6" y="757" width="0.1" height="15.0" fill="rgb(250,54,16)" rx="2" ry="2" />
+<text  x="816.56" y="767.5" ></text>
+</g>
+<g >
+<title>__x64_sys_poll (157,270,198 samples, 0.04%)</title><rect x="265.5" y="901" width="0.6" height="15.0" fill="rgb(231,147,36)" rx="2" ry="2" />
+<text  x="268.55" y="911.5" ></text>
+</g>
+<g >
+<title>ksys_read (37,926,757 samples, 0.01%)</title><rect x="731.9" y="933" width="0.1" height="15.0" fill="rgb(236,2,40)" rx="2" ry="2" />
+<text  x="734.92" y="943.5" ></text>
+</g>
+<g >
+<title>process_one_work (7,074,933,251 samples, 1.93%)</title><rect x="574.3" y="917" width="22.8" height="15.0" fill="rgb(237,212,53)" rx="2" ry="2" />
+<text  x="577.34" y="927.5" >p..</text>
+</g>
+<g >
+<title>vma_alloc_folio (43,734,237 samples, 0.01%)</title><rect x="134.6" y="613" width="0.1" height="15.0" fill="rgb(217,210,14)" rx="2" ry="2" />
+<text  x="137.58" y="623.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_call_function_single (45,055,074 samples, 0.01%)</title><rect x="1148.2" y="853" width="0.2" height="15.0" fill="rgb(221,192,46)" rx="2" ry="2" />
+<text  x="1151.24" y="863.5" ></text>
+</g>
+<g >
+<title>_XEventsQueued (316,257,881 samples, 0.09%)</title><rect x="279.9" y="853" width="1.0" height="15.0" fill="rgb(251,37,14)" rx="2" ry="2" />
+<text  x="282.86" y="863.5" ></text>
+</g>
+<g >
+<title>__posix_memalign (80,361,743 samples, 0.02%)</title><rect x="747.7" y="789" width="0.2" height="15.0" fill="rgb(213,27,9)" rx="2" ry="2" />
+<text  x="750.66" y="799.5" ></text>
+</g>
+<g >
+<title>kthread (115,661,137 samples, 0.03%)</title><rect x="829.6" y="949" width="0.4" height="15.0" fill="rgb(237,197,5)" rx="2" ry="2" />
+<text  x="832.64" y="959.5" ></text>
+</g>
+<g >
+<title>__GI___getpid (54,988,853 samples, 0.02%)</title><rect x="24.0" y="901" width="0.1" height="15.0" fill="rgb(227,148,17)" rx="2" ry="2" />
+<text  x="26.97" y="911.5" ></text>
+</g>
+<g >
+<title>iomap_finish_ioends (357,590,870 samples, 0.10%)</title><rect x="389.1" y="869" width="1.1" height="15.0" fill="rgb(207,223,26)" rx="2" ry="2" />
+<text  x="392.09" y="879.5" ></text>
+</g>
+<g >
+<title>aio_dispatch (480,310,538 samples, 0.13%)</title><rect x="826.2" y="853" width="1.5" height="15.0" fill="rgb(209,4,43)" rx="2" ry="2" />
+<text  x="829.17" y="863.5" ></text>
+</g>
+<g >
+<title>rcu_sched_clock_irq (31,099,798 samples, 0.01%)</title><rect x="833.9" y="709" width="0.1" height="15.0" fill="rgb(254,122,24)" rx="2" ry="2" />
+<text  x="836.92" y="719.5" ></text>
+</g>
+<g >
+<title>__local_bh_enable_ip (70,796,506 samples, 0.02%)</title><rect x="665.8" y="629" width="0.2" height="15.0" fill="rgb(218,143,44)" rx="2" ry="2" />
+<text  x="668.75" y="639.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (42,317,776 samples, 0.01%)</title><rect x="1163.5" y="629" width="0.1" height="15.0" fill="rgb(210,51,25)" rx="2" ry="2" />
+<text  x="1166.50" y="639.5" ></text>
+</g>
+<g >
+<title>ip_finish_output2 (408,756,568 samples, 0.11%)</title><rect x="623.3" y="485" width="1.3" height="15.0" fill="rgb(212,183,39)" rx="2" ry="2" />
+<text  x="626.31" y="495.5" ></text>
+</g>
+<g >
+<title>psi_task_switch (41,873,718 samples, 0.01%)</title><rect x="728.0" y="821" width="0.2" height="15.0" fill="rgb(223,17,38)" rx="2" ry="2" />
+<text  x="731.04" y="831.5" ></text>
+</g>
+<g >
+<title>selinux_socket_recvmsg (76,778,672 samples, 0.02%)</title><rect x="39.1" y="805" width="0.3" height="15.0" fill="rgb(214,206,49)" rx="2" ry="2" />
+<text  x="42.14" y="815.5" ></text>
+</g>
+<g >
+<title>[libxul.so] (58,517,207 samples, 0.02%)</title><rect x="24.2" y="949" width="0.2" height="15.0" fill="rgb(242,172,37)" rx="2" ry="2" />
+<text  x="27.25" y="959.5" ></text>
+</g>
+<g >
+<title>ieee80211_tx_dequeue (36,923,217 samples, 0.01%)</title><rect x="325.6" y="485" width="0.1" height="15.0" fill="rgb(230,150,46)" rx="2" ry="2" />
+<text  x="328.61" y="495.5" ></text>
+</g>
+<g >
+<title>kworker/0:1-mm_ (937,205,675 samples, 0.26%)</title><rect x="382.7" y="981" width="3.1" height="15.0" fill="rgb(209,176,29)" rx="2" ry="2" />
+<text  x="385.74" y="991.5" ></text>
+</g>
+<g >
+<title>mem_cgroup_css_rstat_flush (157,503,942 samples, 0.04%)</title><rect x="352.3" y="837" width="0.5" height="15.0" fill="rgb(214,112,37)" rx="2" ry="2" />
+<text  x="355.33" y="847.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (86,731,109 samples, 0.02%)</title><rect x="296.3" y="869" width="0.3" height="15.0" fill="rgb(214,117,35)" rx="2" ry="2" />
+<text  x="299.28" y="879.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (39,790,991 samples, 0.01%)</title><rect x="14.2" y="853" width="0.2" height="15.0" fill="rgb(229,20,40)" rx="2" ry="2" />
+<text  x="17.23" y="863.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (68,638,228 samples, 0.02%)</title><rect x="191.6" y="917" width="0.2" height="15.0" fill="rgb(233,95,5)" rx="2" ry="2" />
+<text  x="194.57" y="927.5" ></text>
+</g>
+<g >
+<title>__clock_gettime_2 (55,368,566 samples, 0.02%)</title><rect x="642.7" y="725" width="0.2" height="15.0" fill="rgb(250,22,20)" rx="2" ry="2" />
+<text  x="645.73" y="735.5" ></text>
+</g>
+<g >
+<title>copy_user_enhanced_fast_string (103,565,116 samples, 0.03%)</title><rect x="748.2" y="517" width="0.3" height="15.0" fill="rgb(231,86,15)" rx="2" ry="2" />
+<text  x="751.17" y="527.5" ></text>
+</g>
+<g >
+<title>try_to_wake_up (76,585,282 samples, 0.02%)</title><rect x="25.1" y="821" width="0.3" height="15.0" fill="rgb(234,225,17)" rx="2" ry="2" />
+<text  x="28.12" y="831.5" ></text>
+</g>
+<g >
+<title>memset_erms (101,403,905 samples, 0.03%)</title><rect x="399.9" y="853" width="0.4" height="15.0" fill="rgb(219,29,30)" rx="2" ry="2" />
+<text  x="402.94" y="863.5" ></text>
+</g>
+<g >
+<title>__libc_recvmsg (39,033,417 samples, 0.01%)</title><rect x="142.3" y="837" width="0.1" height="15.0" fill="rgb(248,105,8)" rx="2" ry="2" />
+<text  x="145.28" y="847.5" ></text>
+</g>
+<g >
+<title>g_main_context_dispatch (61,038,620 samples, 0.02%)</title><rect x="1187.1" y="709" width="0.2" height="15.0" fill="rgb(214,109,30)" rx="2" ry="2" />
+<text  x="1190.13" y="719.5" ></text>
+</g>
+<g >
+<title>skb_copy_datagram_iter (115,640,885 samples, 0.03%)</title><rect x="745.3" y="549" width="0.3" height="15.0" fill="rgb(209,86,25)" rx="2" ry="2" />
+<text  x="748.27" y="559.5" ></text>
+</g>
+<g >
+<title>nft_hash_lookup_fast (38,228,808 samples, 0.01%)</title><rect x="324.1" y="613" width="0.1" height="15.0" fill="rgb(209,82,0)" rx="2" ry="2" />
+<text  x="327.12" y="623.5" ></text>
+</g>
+<g >
+<title>skb_release_data (306,436,152 samples, 0.08%)</title><rect x="332.7" y="805" width="1.0" height="15.0" fill="rgb(225,220,16)" rx="2" ry="2" />
+<text  x="335.69" y="815.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (53,007,147 samples, 0.01%)</title><rect x="152.0" y="805" width="0.2" height="15.0" fill="rgb(207,86,0)" rx="2" ry="2" />
+<text  x="154.98" y="815.5" ></text>
+</g>
+<g >
+<title>ep_autoremove_wake_function (35,150,923 samples, 0.01%)</title><rect x="20.0" y="565" width="0.1" height="15.0" fill="rgb(254,175,42)" rx="2" ry="2" />
+<text  x="23.02" y="575.5" ></text>
+</g>
+<g >
+<title>rmqueue_bulk (48,917,537 samples, 0.01%)</title><rect x="594.9" y="821" width="0.2" height="15.0" fill="rgb(206,180,24)" rx="2" ry="2" />
+<text  x="597.94" y="831.5" ></text>
+</g>
+<g >
+<title>dixLookupResourceByClass (47,589,666 samples, 0.01%)</title><rect x="220.8" y="917" width="0.2" height="15.0" fill="rgb(228,142,37)" rx="2" ry="2" />
+<text  x="223.84" y="927.5" ></text>
+</g>
+<g >
+<title>schedule (109,450,498 samples, 0.03%)</title><rect x="395.4" y="917" width="0.3" height="15.0" fill="rgb(226,69,33)" rx="2" ry="2" />
+<text  x="398.38" y="927.5" ></text>
+</g>
+<g >
+<title>__i915_request_queue (54,305,552 samples, 0.01%)</title><rect x="137.2" y="773" width="0.2" height="15.0" fill="rgb(248,92,39)" rx="2" ry="2" />
+<text  x="140.19" y="783.5" ></text>
+</g>
+<g >
+<title>[firefox] (46,982,479 samples, 0.01%)</title><rect x="297.4" y="901" width="0.1" height="15.0" fill="rgb(231,152,20)" rx="2" ry="2" />
+<text  x="300.39" y="911.5" ></text>
+</g>
+<g >
+<title>[libxul.so] (2,265,595,068 samples, 0.62%)</title><rect x="286.0" y="965" width="7.3" height="15.0" fill="rgb(232,118,17)" rx="2" ry="2" />
+<text  x="288.96" y="975.5" ></text>
+</g>
+<g >
+<title>validate_xmit_skb (32,136,410 samples, 0.01%)</title><rect x="624.5" y="453" width="0.1" height="15.0" fill="rgb(241,1,47)" rx="2" ry="2" />
+<text  x="627.50" y="463.5" ></text>
+</g>
+<g >
+<title>native_apic_msr_eoi_write (55,075,756 samples, 0.02%)</title><rect x="914.0" y="821" width="0.2" height="15.0" fill="rgb(213,149,10)" rx="2" ry="2" />
+<text  x="916.98" y="831.5" ></text>
+</g>
+<g >
+<title>ppgtt_bind_vma (40,535,787 samples, 0.01%)</title><rect x="140.6" y="693" width="0.1" height="15.0" fill="rgb(251,195,1)" rx="2" ry="2" />
+<text  x="143.56" y="703.5" ></text>
+</g>
+<g >
+<title>update_sd_lb_stats.constprop.0 (159,872,982 samples, 0.04%)</title><rect x="901.6" y="757" width="0.5" height="15.0" fill="rgb(220,15,15)" rx="2" ry="2" />
+<text  x="904.61" y="767.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (192,520,832 samples, 0.05%)</title><rect x="747.9" y="805" width="0.7" height="15.0" fill="rgb(219,205,24)" rx="2" ry="2" />
+<text  x="750.93" y="815.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (2,288,276,082 samples, 0.62%)</title><rect x="658.9" y="821" width="7.4" height="15.0" fill="rgb(253,157,19)" rx="2" ry="2" />
+<text  x="661.92" y="831.5" ></text>
+</g>
+<g >
+<title>load_balance (52,464,596 samples, 0.01%)</title><rect x="822.3" y="725" width="0.2" height="15.0" fill="rgb(224,0,28)" rx="2" ry="2" />
+<text  x="825.30" y="735.5" ></text>
+</g>
+<g >
+<title>psi_group_change (35,266,048 samples, 0.01%)</title><rect x="884.3" y="821" width="0.1" height="15.0" fill="rgb(230,105,4)" rx="2" ry="2" />
+<text  x="887.33" y="831.5" ></text>
+</g>
+<g >
+<title>[libffi.so.8.1.0] (67,754,465 samples, 0.02%)</title><rect x="244.1" y="757" width="0.2" height="15.0" fill="rgb(216,18,23)" rx="2" ry="2" />
+<text  x="247.09" y="767.5" ></text>
+</g>
+<g >
+<title>node_page_state (70,006,937 samples, 0.02%)</title><rect x="708.9" y="677" width="0.2" height="15.0" fill="rgb(227,190,9)" rx="2" ry="2" />
+<text  x="711.89" y="687.5" ></text>
+</g>
+<g >
+<title>schedule (120,828,685 samples, 0.03%)</title><rect x="174.6" y="837" width="0.4" height="15.0" fill="rgb(211,2,0)" rx="2" ry="2" />
+<text  x="177.57" y="847.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (193,858,976 samples, 0.05%)</title><rect x="325.4" y="629" width="0.7" height="15.0" fill="rgb(245,14,29)" rx="2" ry="2" />
+<text  x="328.43" y="639.5" ></text>
+</g>
+<g >
+<title>__x64_sys_clock_nanosleep (35,522,991 samples, 0.01%)</title><rect x="25.9" y="869" width="0.1" height="15.0" fill="rgb(212,126,29)" rx="2" ry="2" />
+<text  x="28.90" y="879.5" ></text>
+</g>
+<g >
+<title>iomap_finish_ioends (227,228,430 samples, 0.06%)</title><rect x="392.0" y="869" width="0.7" height="15.0" fill="rgb(221,1,39)" rx="2" ry="2" />
+<text  x="394.96" y="879.5" ></text>
+</g>
+<g >
+<title>iwl_mvm_tx_skb_sta (37,158,438 samples, 0.01%)</title><rect x="325.7" y="469" width="0.1" height="15.0" fill="rgb(247,92,38)" rx="2" ry="2" />
+<text  x="328.73" y="479.5" ></text>
+</g>
+<g >
+<title>free (222,151,881 samples, 0.06%)</title><rect x="170.9" y="949" width="0.7" height="15.0" fill="rgb(221,202,6)" rx="2" ry="2" />
+<text  x="173.89" y="959.5" ></text>
+</g>
+<g >
+<title>percpu_counter_add_batch (140,770,558 samples, 0.04%)</title><rect x="385.2" y="805" width="0.4" height="15.0" fill="rgb(245,118,28)" rx="2" ry="2" />
+<text  x="388.19" y="815.5" ></text>
+</g>
+<g >
+<title>intel_idle (1,046,139,072 samples, 0.29%)</title><rect x="835.4" y="837" width="3.4" height="15.0" fill="rgb(216,162,40)" rx="2" ry="2" />
+<text  x="838.39" y="847.5" ></text>
+</g>
+<g >
+<title>noop_dirty_folio (68,088,830 samples, 0.02%)</title><rect x="376.7" y="773" width="0.2" height="15.0" fill="rgb(217,66,30)" rx="2" ry="2" />
+<text  x="379.71" y="783.5" ></text>
+</g>
+<g >
+<title>iomap_writepages (639,124,724 samples, 0.17%)</title><rect x="476.9" y="789" width="2.1" height="15.0" fill="rgb(245,17,7)" rx="2" ry="2" />
+<text  x="479.90" y="799.5" ></text>
+</g>
+<g >
+<title>[firefox] (33,892,067 samples, 0.01%)</title><rect x="50.6" y="869" width="0.1" height="15.0" fill="rgb(224,153,49)" rx="2" ry="2" />
+<text  x="53.56" y="879.5" ></text>
+</g>
+<g >
+<title>skcipher_walk_virt (205,869,307 samples, 0.06%)</title><rect x="566.5" y="821" width="0.6" height="15.0" fill="rgb(235,66,22)" rx="2" ry="2" />
+<text  x="569.47" y="831.5" ></text>
+</g>
+<g >
+<title>__sendmsg (77,438,751 samples, 0.02%)</title><rect x="191.6" y="949" width="0.2" height="15.0" fill="rgb(214,202,15)" rx="2" ry="2" />
+<text  x="194.56" y="959.5" ></text>
+</g>
+<g >
+<title>[libglib-2.0.so.0.7303.0] (35,874,326 samples, 0.01%)</title><rect x="298.6" y="965" width="0.1" height="15.0" fill="rgb(213,69,49)" rx="2" ry="2" />
+<text  x="301.59" y="975.5" ></text>
+</g>
+<g >
+<title>unmap_page_range (44,297,276 samples, 0.01%)</title><rect x="377.6" y="757" width="0.1" height="15.0" fill="rgb(254,86,51)" rx="2" ry="2" />
+<text  x="380.59" y="767.5" ></text>
+</g>
+<g >
+<title>irq_work_tick (54,980,914 samples, 0.01%)</title><rect x="908.4" y="741" width="0.2" height="15.0" fill="rgb(240,149,3)" rx="2" ry="2" />
+<text  x="911.43" y="751.5" ></text>
+</g>
+<g >
+<title>schedule (990,016,641 samples, 0.27%)</title><rect x="651.8" y="629" width="3.2" height="15.0" fill="rgb(239,113,38)" rx="2" ry="2" />
+<text  x="654.82" y="639.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (107,838,708 samples, 0.03%)</title><rect x="216.3" y="741" width="0.3" height="15.0" fill="rgb(231,68,5)" rx="2" ry="2" />
+<text  x="219.29" y="751.5" ></text>
+</g>
+<g >
+<title>[libxul.so] (56,498,977 samples, 0.02%)</title><rect x="183.4" y="949" width="0.2" height="15.0" fill="rgb(207,175,26)" rx="2" ry="2" />
+<text  x="186.45" y="959.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc_lru (83,715,940 samples, 0.02%)</title><rect x="700.2" y="661" width="0.3" height="15.0" fill="rgb(247,28,35)" rx="2" ry="2" />
+<text  x="703.22" y="671.5" ></text>
+</g>
+<g >
+<title>gen8_logical_ring_enable_irq (47,810,979 samples, 0.01%)</title><rect x="232.9" y="677" width="0.2" height="15.0" fill="rgb(242,40,25)" rx="2" ry="2" />
+<text  x="235.92" y="687.5" ></text>
+</g>
+<g >
+<title>newidle_balance (134,515,080 samples, 0.04%)</title><rect x="338.2" y="853" width="0.4" height="15.0" fill="rgb(217,77,16)" rx="2" ry="2" />
+<text  x="341.17" y="863.5" ></text>
+</g>
+<g >
+<title>execute_command_internal (77,229,650 samples, 0.02%)</title><rect x="243.4" y="773" width="0.3" height="15.0" fill="rgb(239,43,41)" rx="2" ry="2" />
+<text  x="246.42" y="783.5" ></text>
+</g>
+<g >
+<title>g_signal_emit (119,856,136 samples, 0.03%)</title><rect x="1178.0" y="245" width="0.4" height="15.0" fill="rgb(208,72,46)" rx="2" ry="2" />
+<text  x="1181.02" y="255.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (159,941,752 samples, 0.04%)</title><rect x="215.6" y="725" width="0.6" height="15.0" fill="rgb(229,212,21)" rx="2" ry="2" />
+<text  x="218.65" y="735.5" ></text>
+</g>
+<g >
+<title>[firefox] (37,305,942 samples, 0.01%)</title><rect x="24.3" y="901" width="0.1" height="15.0" fill="rgb(253,126,37)" rx="2" ry="2" />
+<text  x="27.31" y="911.5" ></text>
+</g>
+<g >
+<title>__mod_lruvec_page_state (65,352,350 samples, 0.02%)</title><rect x="477.2" y="725" width="0.2" height="15.0" fill="rgb(212,90,39)" rx="2" ry="2" />
+<text  x="480.22" y="735.5" ></text>
+</g>
+<g >
+<title>gen8_logical_ring_enable_irq (91,056,020 samples, 0.02%)</title><rect x="133.3" y="501" width="0.3" height="15.0" fill="rgb(245,132,3)" rx="2" ry="2" />
+<text  x="136.30" y="511.5" ></text>
+</g>
+<g >
+<title>kworker/u16:5 (2,852,368,260 samples, 0.78%)</title><rect x="524.8" y="981" width="9.1" height="15.0" fill="rgb(252,167,51)" rx="2" ry="2" />
+<text  x="527.76" y="991.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (41,879,973 samples, 0.01%)</title><rect x="1189.5" y="933" width="0.1" height="15.0" fill="rgb(244,202,50)" rx="2" ry="2" />
+<text  x="1192.51" y="943.5" ></text>
+</g>
+<g >
+<title>eventfd_write (162,384,098 samples, 0.04%)</title><rect x="815.2" y="805" width="0.5" height="15.0" fill="rgb(213,130,5)" rx="2" ry="2" />
+<text  x="818.21" y="815.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (33,715,579 samples, 0.01%)</title><rect x="132.3" y="773" width="0.1" height="15.0" fill="rgb(252,195,18)" rx="2" ry="2" />
+<text  x="135.26" y="783.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (218,477,501 samples, 0.06%)</title><rect x="723.2" y="837" width="0.7" height="15.0" fill="rgb(209,219,29)" rx="2" ry="2" />
+<text  x="726.24" y="847.5" ></text>
+</g>
+<g >
+<title>[libglamoregl.so] (33,459,375 samples, 0.01%)</title><rect x="218.1" y="837" width="0.1" height="15.0" fill="rgb(251,71,37)" rx="2" ry="2" />
+<text  x="221.05" y="847.5" ></text>
+</g>
+<g >
+<title>mempool_alloc (178,847,964 samples, 0.05%)</title><rect x="612.0" y="885" width="0.5" height="15.0" fill="rgb(214,21,29)" rx="2" ry="2" />
+<text  x="614.97" y="895.5" ></text>
+</g>
+<g >
+<title>___sys_recvmsg (39,940,514 samples, 0.01%)</title><rect x="1165.7" y="565" width="0.2" height="15.0" fill="rgb(230,54,42)" rx="2" ry="2" />
+<text  x="1168.73" y="575.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (78,024,979 samples, 0.02%)</title><rect x="720.7" y="741" width="0.3" height="15.0" fill="rgb(254,134,23)" rx="2" ry="2" />
+<text  x="723.72" y="751.5" ></text>
+</g>
+<g >
+<title>mod_lruvec_page_state (39,858,926 samples, 0.01%)</title><rect x="392.4" y="805" width="0.1" height="15.0" fill="rgb(251,19,9)" rx="2" ry="2" />
+<text  x="395.42" y="815.5" ></text>
+</g>
+<g >
+<title>remove_wait_queue (35,520,779 samples, 0.01%)</title><rect x="821.1" y="789" width="0.1" height="15.0" fill="rgb(220,202,17)" rx="2" ry="2" />
+<text  x="824.05" y="799.5" ></text>
+</g>
+<g >
+<title>do_try_to_free_pages (32,229,389 samples, 0.01%)</title><rect x="134.6" y="533" width="0.1" height="15.0" fill="rgb(231,51,31)" rx="2" ry="2" />
+<text  x="137.59" y="543.5" ></text>
+</g>
+<g >
+<title>__flush_smp_call_function_queue (145,338,996 samples, 0.04%)</title><rect x="1126.4" y="885" width="0.5" height="15.0" fill="rgb(235,51,4)" rx="2" ry="2" />
+<text  x="1129.44" y="895.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (1,110,325,974 samples, 0.30%)</title><rect x="87.4" y="933" width="3.6" height="15.0" fill="rgb(214,226,27)" rx="2" ry="2" />
+<text  x="90.41" y="943.5" ></text>
+</g>
+<g >
+<title>__fget_light (31,225,446 samples, 0.01%)</title><rect x="48.8" y="869" width="0.1" height="15.0" fill="rgb(205,114,33)" rx="2" ry="2" />
+<text  x="51.84" y="879.5" ></text>
+</g>
+<g >
+<title>mem_cgroup_iter (179,451,907 samples, 0.05%)</title><rect x="352.9" y="885" width="0.6" height="15.0" fill="rgb(230,77,29)" rx="2" ry="2" />
+<text  x="355.90" y="895.5" ></text>
+</g>
+<g >
+<title>kworker/u16:8-e (7,091,383,397 samples, 1.93%)</title><rect x="574.3" y="981" width="22.9" height="15.0" fill="rgb(250,116,2)" rx="2" ry="2" />
+<text  x="577.33" y="991.5" >k..</text>
+</g>
+<g >
+<title>do_syscall_64 (65,440,250 samples, 0.02%)</title><rect x="737.9" y="629" width="0.2" height="15.0" fill="rgb(239,175,17)" rx="2" ry="2" />
+<text  x="740.93" y="639.5" ></text>
+</g>
+<g >
+<title>flush_smp_call_function_queue (282,364,299 samples, 0.08%)</title><rect x="881.2" y="869" width="0.9" height="15.0" fill="rgb(209,163,23)" rx="2" ry="2" />
+<text  x="884.16" y="879.5" ></text>
+</g>
+<g >
+<title>select_task_rq_fair (33,384,982 samples, 0.01%)</title><rect x="25.2" y="805" width="0.1" height="15.0" fill="rgb(246,10,25)" rx="2" ry="2" />
+<text  x="28.16" y="815.5" ></text>
+</g>
+<g >
+<title>do_sigaction (108,960,186 samples, 0.03%)</title><rect x="644.7" y="677" width="0.3" height="15.0" fill="rgb(238,107,23)" rx="2" ry="2" />
+<text  x="647.67" y="687.5" ></text>
+</g>
+<g >
+<title>handle_mm_fault (99,585,240 samples, 0.03%)</title><rect x="146.2" y="885" width="0.3" height="15.0" fill="rgb(250,27,35)" rx="2" ry="2" />
+<text  x="149.22" y="895.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (223,087,261 samples, 0.06%)</title><rect x="663.3" y="645" width="0.7" height="15.0" fill="rgb(214,225,54)" rx="2" ry="2" />
+<text  x="666.26" y="655.5" ></text>
+</g>
+<g >
+<title>napi_gro_receive (739,676,814 samples, 0.20%)</title><rect x="307.2" y="757" width="2.4" height="15.0" fill="rgb(248,109,30)" rx="2" ry="2" />
+<text  x="310.18" y="767.5" ></text>
+</g>
+<g >
+<title>i915_gem_set_domain_ioctl (83,987,100 samples, 0.02%)</title><rect x="134.5" y="741" width="0.2" height="15.0" fill="rgb(209,27,37)" rx="2" ry="2" />
+<text  x="137.46" y="751.5" ></text>
+</g>
+<g >
+<title>folio_add_lru (255,935,798 samples, 0.07%)</title><rect x="755.8" y="709" width="0.8" height="15.0" fill="rgb(212,84,43)" rx="2" ry="2" />
+<text  x="758.82" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (267,218,290 samples, 0.07%)</title><rect x="1164.3" y="709" width="0.8" height="15.0" fill="rgb(224,23,23)" rx="2" ry="2" />
+<text  x="1167.28" y="719.5" ></text>
+</g>
+<g >
+<title>[libglamoregl.so] (140,739,198 samples, 0.04%)</title><rect x="216.2" y="805" width="0.4" height="15.0" fill="rgb(243,168,40)" rx="2" ry="2" />
+<text  x="219.19" y="815.5" ></text>
+</g>
+<g >
+<title>cgroup_rstat_flush_irqsafe (187,762,271 samples, 0.05%)</title><rect x="352.2" y="869" width="0.6" height="15.0" fill="rgb(252,77,12)" rx="2" ry="2" />
+<text  x="355.23" y="879.5" ></text>
+</g>
+<g >
+<title>preempt_count_add (56,509,954 samples, 0.02%)</title><rect x="587.2" y="805" width="0.2" height="15.0" fill="rgb(210,161,11)" rx="2" ry="2" />
+<text  x="590.20" y="815.5" ></text>
+</g>
+<g >
+<title>__entry_text_start (46,417,049 samples, 0.01%)</title><rect x="644.1" y="725" width="0.1" height="15.0" fill="rgb(243,2,52)" rx="2" ry="2" />
+<text  x="647.07" y="735.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (140,736,591 samples, 0.04%)</title><rect x="214.6" y="853" width="0.4" height="15.0" fill="rgb(234,193,38)" rx="2" ry="2" />
+<text  x="217.55" y="863.5" ></text>
+</g>
+<g >
+<title>ct_nmi_enter (77,678,784 samples, 0.02%)</title><rect x="915.0" y="821" width="0.3" height="15.0" fill="rgb(246,201,51)" rx="2" ry="2" />
+<text  x="918.01" y="831.5" ></text>
+</g>
+<g >
+<title>irqentry_exit (49,097,180 samples, 0.01%)</title><rect x="898.3" y="853" width="0.1" height="15.0" fill="rgb(218,188,22)" rx="2" ry="2" />
+<text  x="901.27" y="863.5" ></text>
+</g>
+<g >
+<title>[modesetting_drv.so] (38,162,286 samples, 0.01%)</title><rect x="209.8" y="885" width="0.1" height="15.0" fill="rgb(229,102,39)" rx="2" ry="2" />
+<text  x="212.77" y="895.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (263,353,561 samples, 0.07%)</title><rect x="462.6" y="837" width="0.9" height="15.0" fill="rgb(251,92,25)" rx="2" ry="2" />
+<text  x="465.63" y="847.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (34,420,161 samples, 0.01%)</title><rect x="210.7" y="821" width="0.1" height="15.0" fill="rgb(254,208,36)" rx="2" ry="2" />
+<text  x="213.68" y="831.5" ></text>
+</g>
+<g >
+<title>___sys_recvmsg (215,255,835 samples, 0.06%)</title><rect x="745.0" y="629" width="0.7" height="15.0" fill="rgb(254,51,53)" rx="2" ry="2" />
+<text  x="747.99" y="639.5" ></text>
+</g>
+<g >
+<title>rate_control_tx_status (591,459,506 samples, 0.16%)</title><rect x="312.4" y="709" width="1.9" height="15.0" fill="rgb(211,19,34)" rx="2" ry="2" />
+<text  x="315.37" y="719.5" ></text>
+</g>
+<g >
+<title>xfs_end_ioend (339,784,458 samples, 0.09%)</title><rect x="385.8" y="885" width="1.1" height="15.0" fill="rgb(237,216,5)" rx="2" ry="2" />
+<text  x="388.80" y="895.5" ></text>
+</g>
+<g >
+<title>__entry_text_start (77,252,492 samples, 0.02%)</title><rect x="670.4" y="869" width="0.3" height="15.0" fill="rgb(248,56,23)" rx="2" ry="2" />
+<text  x="673.42" y="879.5" ></text>
+</g>
+<g >
+<title>ktime_get (41,352,982 samples, 0.01%)</title><rect x="913.0" y="789" width="0.1" height="15.0" fill="rgb(218,1,8)" rx="2" ry="2" />
+<text  x="915.99" y="799.5" ></text>
+</g>
+<g >
+<title>sock_sendmsg (1,423,246,328 samples, 0.39%)</title><rect x="739.5" y="581" width="4.6" height="15.0" fill="rgb(253,163,12)" rx="2" ry="2" />
+<text  x="742.52" y="591.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (324,567,360 samples, 0.09%)</title><rect x="613.8" y="965" width="1.0" height="15.0" fill="rgb(206,179,48)" rx="2" ry="2" />
+<text  x="616.79" y="975.5" ></text>
+</g>
+<g >
+<title>__libc_send (1,012,004,748 samples, 0.28%)</title><rect x="622.9" y="677" width="3.2" height="15.0" fill="rgb(210,64,27)" rx="2" ry="2" />
+<text  x="625.86" y="687.5" ></text>
+</g>
+<g >
+<title>mozilla::detail::MutexImpl::lock (59,745,188 samples, 0.02%)</title><rect x="270.5" y="949" width="0.2" height="15.0" fill="rgb(234,99,6)" rx="2" ry="2" />
+<text  x="273.54" y="959.5" ></text>
+</g>
+<g >
+<title>__intel_context_do_pin_ww (40,271,367 samples, 0.01%)</title><rect x="1164.7" y="597" width="0.2" height="15.0" fill="rgb(207,174,41)" rx="2" ry="2" />
+<text  x="1167.73" y="607.5" ></text>
+</g>
+<g >
+<title>[libEGL_mesa.so.0.0.0] (123,965,419 samples, 0.03%)</title><rect x="142.1" y="933" width="0.4" height="15.0" fill="rgb(236,142,11)" rx="2" ry="2" />
+<text  x="145.11" y="943.5" ></text>
+</g>
+<g >
+<title>[bash] (44,908,828 samples, 0.01%)</title><rect x="243.4" y="517" width="0.2" height="15.0" fill="rgb(234,159,43)" rx="2" ry="2" />
+<text  x="246.42" y="527.5" ></text>
+</g>
+<g >
+<title>cgroup_rstat_flush_irqsafe (1,154,436,565 samples, 0.31%)</title><rect x="674.7" y="709" width="3.7" height="15.0" fill="rgb(209,197,51)" rx="2" ry="2" />
+<text  x="677.71" y="719.5" ></text>
+</g>
+<g >
+<title>__mod_lruvec_page_state (54,521,266 samples, 0.01%)</title><rect x="419.5" y="709" width="0.2" height="15.0" fill="rgb(214,50,31)" rx="2" ry="2" />
+<text  x="422.51" y="719.5" ></text>
+</g>
+<g >
+<title>[libspa-alsa.so] (92,087,791 samples, 0.03%)</title><rect x="733.1" y="933" width="0.3" height="15.0" fill="rgb(219,91,36)" rx="2" ry="2" />
+<text  x="736.10" y="943.5" ></text>
+</g>
+<g >
+<title>try_to_free_pages (105,037,642 samples, 0.03%)</title><rect x="705.3" y="693" width="0.3" height="15.0" fill="rgb(234,22,9)" rx="2" ry="2" />
+<text  x="708.30" y="703.5" ></text>
+</g>
+<g >
+<title>update_wall_time (91,776,954 samples, 0.03%)</title><rect x="907.4" y="757" width="0.3" height="15.0" fill="rgb(252,82,10)" rx="2" ry="2" />
+<text  x="910.39" y="767.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (3,849,289,752 samples, 1.05%)</title><rect x="628.1" y="661" width="12.4" height="15.0" fill="rgb(247,168,0)" rx="2" ry="2" />
+<text  x="631.09" y="671.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (65,492,931 samples, 0.02%)</title><rect x="320.2" y="597" width="0.2" height="15.0" fill="rgb(217,173,48)" rx="2" ry="2" />
+<text  x="323.21" y="607.5" ></text>
+</g>
+<g >
+<title>nf_conntrack_in (245,609,269 samples, 0.07%)</title><rect x="636.5" y="485" width="0.8" height="15.0" fill="rgb(226,200,2)" rx="2" ry="2" />
+<text  x="639.53" y="495.5" ></text>
+</g>
+<g >
+<title>[libvte-2.91.so.0.6992.0] (294,624,902 samples, 0.08%)</title><rect x="1180.3" y="805" width="0.9" height="15.0" fill="rgb(252,62,10)" rx="2" ry="2" />
+<text  x="1183.26" y="815.5" ></text>
+</g>
+<g >
+<title>irq_chip_ack_parent (42,538,152 samples, 0.01%)</title><rect x="895.5" y="805" width="0.2" height="15.0" fill="rgb(218,201,24)" rx="2" ry="2" />
+<text  x="898.55" y="815.5" ></text>
+</g>
+<g >
+<title>[libGLX.so.0.0.0] (91,722,042 samples, 0.03%)</title><rect x="18.3" y="933" width="0.3" height="15.0" fill="rgb(228,158,31)" rx="2" ry="2" />
+<text  x="21.28" y="943.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (34,925,153 samples, 0.01%)</title><rect x="325.9" y="565" width="0.1" height="15.0" fill="rgb(241,150,28)" rx="2" ry="2" />
+<text  x="328.90" y="575.5" ></text>
+</g>
+<g >
+<title>i2c_smbus_read_block_data (509,347,828 samples, 0.14%)</title><rect x="339.4" y="869" width="1.6" height="15.0" fill="rgb(223,45,16)" rx="2" ry="2" />
+<text  x="342.39" y="879.5" ></text>
+</g>
+<g >
+<title>qemu_try_memalign (83,768,999 samples, 0.02%)</title><rect x="747.7" y="805" width="0.2" height="15.0" fill="rgb(208,26,28)" rx="2" ry="2" />
+<text  x="750.65" y="815.5" ></text>
+</g>
+<g >
+<title>writeback_sb_inodes (866,940,717 samples, 0.24%)</title><rect x="457.9" y="853" width="2.8" height="15.0" fill="rgb(251,50,31)" rx="2" ry="2" />
+<text  x="460.88" y="863.5" ></text>
+</g>
+<g >
+<title>switch_mm_irqs_off (38,123,603 samples, 0.01%)</title><rect x="884.5" y="837" width="0.1" height="15.0" fill="rgb(212,167,24)" rx="2" ry="2" />
+<text  x="887.52" y="847.5" ></text>
+</g>
+<g >
+<title>sock_recvmsg (34,713,739 samples, 0.01%)</title><rect x="737.4" y="613" width="0.1" height="15.0" fill="rgb(252,63,29)" rx="2" ry="2" />
+<text  x="740.41" y="623.5" ></text>
+</g>
+<g >
+<title>_i915_vma_move_to_active (227,998,756 samples, 0.06%)</title><rect x="137.9" y="773" width="0.7" height="15.0" fill="rgb(251,169,4)" rx="2" ry="2" />
+<text  x="140.88" y="783.5" ></text>
+</g>
+<g >
+<title>switch_mm (66,252,593 samples, 0.02%)</title><rect x="880.8" y="837" width="0.2" height="15.0" fill="rgb(225,6,18)" rx="2" ry="2" />
+<text  x="883.83" y="847.5" ></text>
+</g>
+<g >
+<title>csum_partial (186,435,197 samples, 0.05%)</title><rect x="308.2" y="645" width="0.6" height="15.0" fill="rgb(225,227,42)" rx="2" ry="2" />
+<text  x="311.22" y="655.5" ></text>
+</g>
+<g >
+<title>[Xorg] (130,770,453 samples, 0.04%)</title><rect x="204.1" y="885" width="0.5" height="15.0" fill="rgb(239,78,44)" rx="2" ry="2" />
+<text  x="207.15" y="895.5" ></text>
+</g>
+<g >
+<title>__wake_up_common (118,487,067 samples, 0.03%)</title><rect x="815.2" y="789" width="0.4" height="15.0" fill="rgb(213,43,9)" rx="2" ry="2" />
+<text  x="818.23" y="799.5" ></text>
+</g>
+<g >
+<title>[unknown] (3,950,651,945 samples, 1.08%)</title><rect x="270.9" y="965" width="12.7" height="15.0" fill="rgb(222,163,4)" rx="2" ry="2" />
+<text  x="273.90" y="975.5" ></text>
+</g>
+<g >
+<title>memchr_inv (97,726,149 samples, 0.03%)</title><rect x="1160.8" y="837" width="0.3" height="15.0" fill="rgb(240,89,35)" rx="2" ry="2" />
+<text  x="1163.80" y="847.5" ></text>
+</g>
+<g >
+<title>__GI___sched_yield (164,129,232 samples, 0.04%)</title><rect x="169.6" y="949" width="0.6" height="15.0" fill="rgb(207,36,35)" rx="2" ry="2" />
+<text  x="172.63" y="959.5" ></text>
+</g>
+<g >
+<title>__futex_abstimed_wait_common (510,389,806 samples, 0.14%)</title><rect x="12.8" y="917" width="1.6" height="15.0" fill="rgb(223,73,50)" rx="2" ry="2" />
+<text  x="15.79" y="927.5" ></text>
+</g>
+<g >
+<title>gtk_container_propagate_draw (97,632,366 samples, 0.03%)</title><rect x="1172.3" y="133" width="0.3" height="15.0" fill="rgb(243,108,14)" rx="2" ry="2" />
+<text  x="1175.27" y="143.5" ></text>
+</g>
+<g >
+<title>backend_pread (12,752,388,098 samples, 3.48%)</title><rect x="616.8" y="837" width="41.1" height="15.0" fill="rgb(237,77,4)" rx="2" ry="2" />
+<text  x="619.80" y="847.5" >bac..</text>
+</g>
+<g >
+<title>_nohz_idle_balance.constprop.0.isra.0 (40,874,867 samples, 0.01%)</title><rect x="834.9" y="773" width="0.1" height="15.0" fill="rgb(213,190,36)" rx="2" ry="2" />
+<text  x="837.91" y="783.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (150,905,013 samples, 0.04%)</title><rect x="1163.5" y="661" width="0.4" height="15.0" fill="rgb(229,219,25)" rx="2" ry="2" />
+<text  x="1166.46" y="671.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (102,779,742 samples, 0.03%)</title><rect x="1172.3" y="165" width="0.3" height="15.0" fill="rgb(229,148,36)" rx="2" ry="2" />
+<text  x="1175.26" y="175.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock_irqsave (66,202,309 samples, 0.02%)</title><rect x="384.0" y="805" width="0.2" height="15.0" fill="rgb(253,220,32)" rx="2" ry="2" />
+<text  x="386.99" y="815.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (33,636,286 samples, 0.01%)</title><rect x="265.3" y="917" width="0.1" height="15.0" fill="rgb(234,55,24)" rx="2" ry="2" />
+<text  x="268.33" y="927.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (1,185,606,384 samples, 0.32%)</title><rect x="739.8" y="501" width="3.9" height="15.0" fill="rgb(226,172,49)" rx="2" ry="2" />
+<text  x="742.85" y="511.5" ></text>
+</g>
+<g >
+<title>copy_user_enhanced_fast_string (119,989,267 samples, 0.03%)</title><rect x="638.9" y="517" width="0.3" height="15.0" fill="rgb(214,213,32)" rx="2" ry="2" />
+<text  x="641.85" y="527.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (49,755,535 samples, 0.01%)</title><rect x="86.6" y="901" width="0.2" height="15.0" fill="rgb(227,51,41)" rx="2" ry="2" />
+<text  x="89.65" y="911.5" ></text>
+</g>
+<g >
+<title>irq_work_run_list (1,366,647,697 samples, 0.37%)</title><rect x="347.2" y="789" width="4.4" height="15.0" fill="rgb(216,214,20)" rx="2" ry="2" />
+<text  x="350.24" y="799.5" ></text>
+</g>
+<g >
+<title>curl_pread (122,510,528 samples, 0.03%)</title><rect x="657.4" y="789" width="0.4" height="15.0" fill="rgb(246,100,52)" rx="2" ry="2" />
+<text  x="660.36" y="799.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (6,196,881,981 samples, 1.69%)</title><rect x="420.2" y="965" width="19.9" height="15.0" fill="rgb(242,215,21)" rx="2" ry="2" />
+<text  x="423.18" y="975.5" ></text>
+</g>
+<g >
+<title>unix_stream_recvmsg (249,552,247 samples, 0.07%)</title><rect x="228.4" y="885" width="0.8" height="15.0" fill="rgb(219,212,51)" rx="2" ry="2" />
+<text  x="231.43" y="895.5" ></text>
+</g>
+<g >
+<title>aesni_enc (96,639,884 samples, 0.03%)</title><rect x="561.9" y="821" width="0.3" height="15.0" fill="rgb(244,65,4)" rx="2" ry="2" />
+<text  x="564.86" y="831.5" ></text>
+</g>
+<g >
+<title>gtk_container_propagate_draw (154,837,959 samples, 0.04%)</title><rect x="1177.9" y="277" width="0.5" height="15.0" fill="rgb(241,217,34)" rx="2" ry="2" />
+<text  x="1180.92" y="287.5" ></text>
+</g>
+<g >
+<title>get_page_from_freelist (102,168,693 samples, 0.03%)</title><rect x="571.4" y="837" width="0.3" height="15.0" fill="rgb(234,143,54)" rx="2" ry="2" />
+<text  x="574.36" y="847.5" ></text>
+</g>
+<g >
+<title>Renderer (11,088,878,174 samples, 3.03%)</title><rect x="118.7" y="981" width="35.7" height="15.0" fill="rgb(210,150,54)" rx="2" ry="2" />
+<text  x="121.66" y="991.5" >Ren..</text>
+</g>
+<g >
+<title>irqtime_account_irq (63,232,672 samples, 0.02%)</title><rect x="301.0" y="837" width="0.2" height="15.0" fill="rgb(226,171,40)" rx="2" ry="2" />
+<text  x="304.03" y="847.5" ></text>
+</g>
+<g >
+<title>__mod_memcg_lruvec_state (232,135,838 samples, 0.06%)</title><rect x="360.0" y="789" width="0.7" height="15.0" fill="rgb(213,115,31)" rx="2" ry="2" />
+<text  x="362.95" y="799.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (316,406,596 samples, 0.09%)</title><rect x="644.4" y="709" width="1.1" height="15.0" fill="rgb(218,68,0)" rx="2" ry="2" />
+<text  x="647.44" y="719.5" ></text>
+</g>
+<g >
+<title>kcompactd_do_work (74,981,835 samples, 0.02%)</title><rect x="341.1" y="917" width="0.3" height="15.0" fill="rgb(205,44,51)" rx="2" ry="2" />
+<text  x="344.13" y="927.5" ></text>
+</g>
+<g >
+<title>syscall (51,997,688 samples, 0.01%)</title><rect x="178.4" y="917" width="0.1" height="15.0" fill="rgb(239,105,36)" rx="2" ry="2" />
+<text  x="181.37" y="927.5" ></text>
+</g>
+<g >
+<title>handle_request (329,454,028 samples, 0.09%)</title><rect x="667.9" y="901" width="1.0" height="15.0" fill="rgb(224,106,43)" rx="2" ry="2" />
+<text  x="670.86" y="911.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (97,878,283 samples, 0.03%)</title><rect x="656.4" y="661" width="0.3" height="15.0" fill="rgb(238,225,44)" rx="2" ry="2" />
+<text  x="659.38" y="671.5" ></text>
+</g>
+<g >
+<title>__clock_gettime_2 (36,187,322 samples, 0.01%)</title><rect x="36.6" y="901" width="0.1" height="15.0" fill="rgb(209,210,28)" rx="2" ry="2" />
+<text  x="39.57" y="911.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (45,168,634 samples, 0.01%)</title><rect x="386.9" y="965" width="0.2" height="15.0" fill="rgb(236,215,21)" rx="2" ry="2" />
+<text  x="389.94" y="975.5" ></text>
+</g>
+<g >
+<title>__wake_up_common_lock (347,528,148 samples, 0.09%)</title><rect x="29.9" y="853" width="1.1" height="15.0" fill="rgb(212,76,26)" rx="2" ry="2" />
+<text  x="32.91" y="863.5" ></text>
+</g>
+<g >
+<title>ktime_get (49,885,522 samples, 0.01%)</title><rect x="897.5" y="805" width="0.2" height="15.0" fill="rgb(224,210,25)" rx="2" ry="2" />
+<text  x="900.54" y="815.5" ></text>
+</g>
+<g >
+<title>skb_copy_datagram_iter (52,318,087 samples, 0.01%)</title><rect x="40.2" y="789" width="0.2" height="15.0" fill="rgb(254,123,11)" rx="2" ry="2" />
+<text  x="43.21" y="799.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (48,704,224 samples, 0.01%)</title><rect x="1165.7" y="597" width="0.2" height="15.0" fill="rgb(238,227,32)" rx="2" ry="2" />
+<text  x="1168.73" y="607.5" ></text>
+</g>
+<g >
+<title>__schedule (108,381,095 samples, 0.03%)</title><rect x="295.9" y="837" width="0.3" height="15.0" fill="rgb(240,98,14)" rx="2" ry="2" />
+<text  x="298.88" y="847.5" ></text>
+</g>
+<g >
+<title>[libglamoregl.so] (723,722,409 samples, 0.20%)</title><rect x="214.4" y="901" width="2.4" height="15.0" fill="rgb(232,191,31)" rx="2" ry="2" />
+<text  x="217.43" y="911.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (830,971,616 samples, 0.23%)</title><rect x="506.5" y="837" width="2.7" height="15.0" fill="rgb(234,224,36)" rx="2" ry="2" />
+<text  x="509.52" y="847.5" ></text>
+</g>
+<g >
+<title>dequeue_entity (42,345,954 samples, 0.01%)</title><rect x="22.5" y="709" width="0.2" height="15.0" fill="rgb(217,178,18)" rx="2" ry="2" />
+<text  x="25.53" y="719.5" ></text>
+</g>
+<g >
+<title>[libglib-2.0.so.0.7303.0] (83,432,745 samples, 0.02%)</title><rect x="824.9" y="869" width="0.2" height="15.0" fill="rgb(217,14,14)" rx="2" ry="2" />
+<text  x="827.87" y="879.5" ></text>
+</g>
+<g >
+<title>newidle_balance (105,751,176 samples, 0.03%)</title><rect x="51.2" y="757" width="0.3" height="15.0" fill="rgb(218,124,18)" rx="2" ry="2" />
+<text  x="54.20" y="767.5" ></text>
+</g>
+<g >
+<title>__mod_lruvec_state (31,327,381 samples, 0.01%)</title><rect x="573.3" y="693" width="0.1" height="15.0" fill="rgb(222,197,27)" rx="2" ry="2" />
+<text  x="576.30" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (60,439,837 samples, 0.02%)</title><rect x="54.0" y="965" width="0.2" height="15.0" fill="rgb(221,123,23)" rx="2" ry="2" />
+<text  x="56.99" y="975.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (33,620,932 samples, 0.01%)</title><rect x="143.7" y="709" width="0.1" height="15.0" fill="rgb(210,33,17)" rx="2" ry="2" />
+<text  x="146.72" y="719.5" ></text>
+</g>
+<g >
+<title>hrtimer_start_range_ns (40,960,500 samples, 0.01%)</title><rect x="816.9" y="757" width="0.1" height="15.0" fill="rgb(231,104,28)" rx="2" ry="2" />
+<text  x="819.89" y="767.5" ></text>
+</g>
+<g >
+<title>do_shrink_slab (3,409,840,212 samples, 0.93%)</title><rect x="371.5" y="869" width="11.0" height="15.0" fill="rgb(220,130,54)" rx="2" ry="2" />
+<text  x="374.53" y="879.5" ></text>
+</g>
+<g >
+<title>irqtime_account_irq (55,087,516 samples, 0.02%)</title><rect x="915.3" y="837" width="0.1" height="15.0" fill="rgb(232,10,5)" rx="2" ry="2" />
+<text  x="918.26" y="847.5" ></text>
+</g>
+<g >
+<title>dequeue_entity (92,837,396 samples, 0.03%)</title><rect x="817.2" y="709" width="0.3" height="15.0" fill="rgb(213,63,6)" rx="2" ry="2" />
+<text  x="820.23" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (48,069,020 samples, 0.01%)</title><rect x="178.4" y="901" width="0.1" height="15.0" fill="rgb(249,158,13)" rx="2" ry="2" />
+<text  x="181.37" y="911.5" ></text>
+</g>
+<g >
+<title>malloc (38,329,450 samples, 0.01%)</title><rect x="42.5" y="917" width="0.1" height="15.0" fill="rgb(230,94,49)" rx="2" ry="2" />
+<text  x="45.46" y="927.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (55,584,970 samples, 0.02%)</title><rect x="227.2" y="965" width="0.2" height="15.0" fill="rgb(235,86,30)" rx="2" ry="2" />
+<text  x="230.21" y="975.5" ></text>
+</g>
+<g >
+<title>write_cache_pages (459,086,619 samples, 0.13%)</title><rect x="418.7" y="773" width="1.4" height="15.0" fill="rgb(224,73,17)" rx="2" ry="2" />
+<text  x="421.67" y="783.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_irq_work (95,810,446 samples, 0.03%)</title><rect x="133.3" y="629" width="0.3" height="15.0" fill="rgb(214,20,7)" rx="2" ry="2" />
+<text  x="136.29" y="639.5" ></text>
+</g>
+<g >
+<title>enqueue_task (93,205,352 samples, 0.03%)</title><rect x="30.6" y="773" width="0.3" height="15.0" fill="rgb(236,183,50)" rx="2" ry="2" />
+<text  x="33.59" y="783.5" ></text>
+</g>
+<g >
+<title>iwl_pcie_napi_poll (9,608,799,778 samples, 2.62%)</title><rect x="301.7" y="805" width="30.9" height="15.0" fill="rgb(245,29,12)" rx="2" ry="2" />
+<text  x="304.69" y="815.5" >iw..</text>
+</g>
+<g >
+<title>xfs_alloc_vextent (85,413,978 samples, 0.02%)</title><rect x="753.4" y="645" width="0.3" height="15.0" fill="rgb(206,227,30)" rx="2" ry="2" />
+<text  x="756.41" y="655.5" ></text>
+</g>
+<g >
+<title>__hrtimer_run_queues (328,103,890 samples, 0.09%)</title><rect x="833.5" y="773" width="1.0" height="15.0" fill="rgb(238,69,43)" rx="2" ry="2" />
+<text  x="836.47" y="783.5" ></text>
+</g>
+<g >
+<title>free (351,072,638 samples, 0.10%)</title><rect x="147.1" y="949" width="1.1" height="15.0" fill="rgb(237,42,22)" rx="2" ry="2" />
+<text  x="150.06" y="959.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_apic_timer_interrupt (31,735,354 samples, 0.01%)</title><rect x="227.4" y="965" width="0.1" height="15.0" fill="rgb(247,108,31)" rx="2" ry="2" />
+<text  x="230.38" y="975.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (3,630,317,161 samples, 0.99%)</title><rect x="400.5" y="853" width="11.7" height="15.0" fill="rgb(246,184,41)" rx="2" ry="2" />
+<text  x="403.50" y="863.5" ></text>
+</g>
+<g >
+<title>free_unref_page (40,744,790 samples, 0.01%)</title><rect x="662.9" y="517" width="0.2" height="15.0" fill="rgb(237,186,43)" rx="2" ry="2" />
+<text  x="665.93" y="527.5" ></text>
+</g>
+<g >
+<title>[libxul.so] (38,426,037 samples, 0.01%)</title><rect x="155.5" y="965" width="0.1" height="15.0" fill="rgb(245,91,54)" rx="2" ry="2" />
+<text  x="158.52" y="975.5" ></text>
+</g>
+<g >
+<title>cpu_startup_entry (16,597,204,628 samples, 4.53%)</title><rect x="831.9" y="901" width="53.5" height="15.0" fill="rgb(228,10,37)" rx="2" ry="2" />
+<text  x="834.94" y="911.5" >cpu_s..</text>
+</g>
+<g >
+<title>sock_read_iter (85,313,525 samples, 0.02%)</title><rect x="658.3" y="773" width="0.3" height="15.0" fill="rgb(220,182,30)" rx="2" ry="2" />
+<text  x="661.32" y="783.5" ></text>
+</g>
+<g >
+<title>super_cache_scan (125,778,134 samples, 0.03%)</title><rect x="381.9" y="853" width="0.4" height="15.0" fill="rgb(220,56,39)" rx="2" ry="2" />
+<text  x="384.93" y="863.5" ></text>
+</g>
+<g >
+<title>iwl_mvm_tx_reclaim (80,002,403 samples, 0.02%)</title><rect x="310.8" y="741" width="0.3" height="15.0" fill="rgb(211,84,37)" rx="2" ry="2" />
+<text  x="313.83" y="751.5" ></text>
+</g>
+<g >
+<title>__alloc_skb (147,781,558 samples, 0.04%)</title><rect x="19.5" y="629" width="0.4" height="15.0" fill="rgb(221,83,53)" rx="2" ry="2" />
+<text  x="22.47" y="639.5" ></text>
+</g>
+<g >
+<title>miTrapezoidBounds (36,248,140 samples, 0.01%)</title><rect x="218.3" y="917" width="0.1" height="15.0" fill="rgb(235,176,32)" rx="2" ry="2" />
+<text  x="221.29" y="927.5" ></text>
+</g>
+<g >
+<title>iomap_do_writepage (253,909,577 samples, 0.07%)</title><rect x="556.1" y="757" width="0.8" height="15.0" fill="rgb(239,7,22)" rx="2" ry="2" />
+<text  x="559.09" y="767.5" ></text>
+</g>
+<g >
+<title>mod_lruvec_page_state (50,309,122 samples, 0.01%)</title><rect x="418.9" y="741" width="0.1" height="15.0" fill="rgb(236,149,43)" rx="2" ry="2" />
+<text  x="421.88" y="751.5" ></text>
+</g>
+<g >
+<title>next_zone (58,654,551 samples, 0.02%)</title><rect x="1161.1" y="837" width="0.2" height="15.0" fill="rgb(211,204,32)" rx="2" ry="2" />
+<text  x="1164.11" y="847.5" ></text>
+</g>
+<g >
+<title>kworker/2:1-mm_ (272,508,533 samples, 0.07%)</title><rect x="387.3" y="981" width="0.9" height="15.0" fill="rgb(208,65,23)" rx="2" ry="2" />
+<text  x="390.30" y="991.5" ></text>
+</g>
+<g >
+<title>iomap_finish_ioends (251,856,778 samples, 0.07%)</title><rect x="387.3" y="869" width="0.8" height="15.0" fill="rgb(208,63,29)" rx="2" ry="2" />
+<text  x="390.32" y="879.5" ></text>
+</g>
+<g >
+<title>__vsnprintf_internal (109,675,195 samples, 0.03%)</title><rect x="657.4" y="757" width="0.4" height="15.0" fill="rgb(247,38,35)" rx="2" ry="2" />
+<text  x="660.40" y="767.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (212,112,598 samples, 0.06%)</title><rect x="662.1" y="485" width="0.7" height="15.0" fill="rgb(252,188,9)" rx="2" ry="2" />
+<text  x="665.12" y="495.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (57,331,066 samples, 0.02%)</title><rect x="14.2" y="869" width="0.2" height="15.0" fill="rgb(254,210,47)" rx="2" ry="2" />
+<text  x="17.18" y="879.5" ></text>
+</g>
+<g >
+<title>_copy_to_iter (104,616,569 samples, 0.03%)</title><rect x="745.3" y="517" width="0.3" height="15.0" fill="rgb(217,142,11)" rx="2" ry="2" />
+<text  x="748.28" y="527.5" ></text>
+</g>
+<g >
+<title>sysvec_apic_timer_interrupt (685,364,455 samples, 0.19%)</title><rect x="832.7" y="821" width="2.2" height="15.0" fill="rgb(234,115,52)" rx="2" ry="2" />
+<text  x="835.69" y="831.5" ></text>
+</g>
+<g >
+<title>__wake_up_common (33,992,849 samples, 0.01%)</title><rect x="93.9" y="789" width="0.1" height="15.0" fill="rgb(254,106,18)" rx="2" ry="2" />
+<text  x="96.87" y="799.5" ></text>
+</g>
+<g >
+<title>__hrtimer_next_event_base (43,159,009 samples, 0.01%)</title><rect x="883.0" y="821" width="0.1" height="15.0" fill="rgb(251,153,44)" rx="2" ry="2" />
+<text  x="886.01" y="831.5" ></text>
+</g>
+<g >
+<title>kthread (324,567,360 samples, 0.09%)</title><rect x="613.8" y="949" width="1.0" height="15.0" fill="rgb(243,65,53)" rx="2" ry="2" />
+<text  x="616.79" y="959.5" ></text>
+</g>
+<g >
+<title>sg_init_table (144,270,741 samples, 0.04%)</title><rect x="611.5" y="869" width="0.5" height="15.0" fill="rgb(218,43,17)" rx="2" ry="2" />
+<text  x="614.49" y="879.5" ></text>
+</g>
+<g >
+<title>moz_xmalloc (34,513,126 samples, 0.01%)</title><rect x="148.5" y="949" width="0.1" height="15.0" fill="rgb(205,220,9)" rx="2" ry="2" />
+<text  x="151.49" y="959.5" ></text>
+</g>
+<g >
+<title>[libcairo.so.2.11706.0] (32,956,338 samples, 0.01%)</title><rect x="1172.1" y="213" width="0.1" height="15.0" fill="rgb(250,207,20)" rx="2" ry="2" />
+<text  x="1175.07" y="223.5" ></text>
+</g>
+<g >
+<title>shmem_sg_alloc_table (302,241,556 samples, 0.08%)</title><rect x="139.5" y="709" width="1.0" height="15.0" fill="rgb(248,134,31)" rx="2" ry="2" />
+<text  x="142.52" y="719.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_apic_timer_interrupt (40,806,297 samples, 0.01%)</title><rect x="114.2" y="933" width="0.1" height="15.0" fill="rgb(237,109,18)" rx="2" ry="2" />
+<text  x="117.16" y="943.5" ></text>
+</g>
+<g >
+<title>__fget_light (47,791,583 samples, 0.01%)</title><rect x="1182.6" y="901" width="0.2" height="15.0" fill="rgb(238,136,39)" rx="2" ry="2" />
+<text  x="1185.65" y="911.5" ></text>
+</g>
+<g >
+<title>[wget] (92,132,750 samples, 0.03%)</title><rect x="1167.1" y="837" width="0.3" height="15.0" fill="rgb(208,162,15)" rx="2" ry="2" />
+<text  x="1170.10" y="847.5" ></text>
+</g>
+<g >
+<title>__calloc (60,171,099 samples, 0.02%)</title><rect x="626.4" y="693" width="0.2" height="15.0" fill="rgb(226,150,35)" rx="2" ry="2" />
+<text  x="629.36" y="703.5" ></text>
+</g>
+<g >
+<title>migrate_pages (55,059,459 samples, 0.02%)</title><rect x="341.2" y="885" width="0.2" height="15.0" fill="rgb(223,225,37)" rx="2" ry="2" />
+<text  x="344.20" y="895.5" ></text>
+</g>
+<g >
+<title>cpuidle_enter (73,746,796,711 samples, 20.12%)</title><rect x="887.9" y="901" width="237.4" height="15.0" fill="rgb(233,109,27)" rx="2" ry="2" />
+<text  x="890.92" y="911.5" >cpuidle_enter</text>
+</g>
+<g >
+<title>iwl_mvm_tx_skb_sta (118,227,628 samples, 0.03%)</title><rect x="624.1" y="357" width="0.4" height="15.0" fill="rgb(214,149,14)" rx="2" ry="2" />
+<text  x="627.08" y="367.5" ></text>
+</g>
+<g >
+<title>__schedule (217,917,605 samples, 0.06%)</title><rect x="22.4" y="741" width="0.7" height="15.0" fill="rgb(228,52,7)" rx="2" ry="2" />
+<text  x="25.43" y="751.5" ></text>
+</g>
+<g >
+<title>quiet_vmstat (365,547,010 samples, 0.10%)</title><rect x="1160.1" y="869" width="1.2" height="15.0" fill="rgb(237,152,37)" rx="2" ry="2" />
+<text  x="1163.13" y="879.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (55,704,359 samples, 0.02%)</title><rect x="266.3" y="917" width="0.2" height="15.0" fill="rgb(242,185,28)" rx="2" ry="2" />
+<text  x="269.32" y="927.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (204,844,540 samples, 0.06%)</title><rect x="1177.8" y="629" width="0.7" height="15.0" fill="rgb(230,104,31)" rx="2" ry="2" />
+<text  x="1180.82" y="639.5" ></text>
+</g>
+<g >
+<title>load_balance (129,132,625 samples, 0.04%)</title><rect x="89.4" y="789" width="0.4" height="15.0" fill="rgb(212,210,44)" rx="2" ry="2" />
+<text  x="92.36" y="799.5" ></text>
+</g>
+<g >
+<title>schedule (372,876,696 samples, 0.10%)</title><rect x="817.0" y="757" width="1.2" height="15.0" fill="rgb(221,142,42)" rx="2" ry="2" />
+<text  x="820.02" y="767.5" ></text>
+</g>
+<g >
+<title>truncate_inode_folio (99,632,214 samples, 0.03%)</title><rect x="378.4" y="773" width="0.3" height="15.0" fill="rgb(235,81,31)" rx="2" ry="2" />
+<text  x="381.38" y="783.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (710,432,192 samples, 0.19%)</title><rect x="244.5" y="965" width="2.3" height="15.0" fill="rgb(232,109,28)" rx="2" ry="2" />
+<text  x="247.55" y="975.5" ></text>
+</g>
+<g >
+<title>ip6_finish_output (968,533,979 samples, 0.26%)</title><rect x="660.0" y="645" width="3.1" height="15.0" fill="rgb(230,44,2)" rx="2" ry="2" />
+<text  x="663.00" y="655.5" ></text>
+</g>
+<g >
+<title>folio_activate_fn (71,602,664 samples, 0.02%)</title><rect x="376.2" y="741" width="0.3" height="15.0" fill="rgb(228,78,40)" rx="2" ry="2" />
+<text  x="379.23" y="751.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (1,035,176,248 samples, 0.28%)</title><rect x="32.8" y="901" width="3.4" height="15.0" fill="rgb(239,170,23)" rx="2" ry="2" />
+<text  x="35.84" y="911.5" ></text>
+</g>
+<g >
+<title>psi_task_switch (50,966,760 samples, 0.01%)</title><rect x="292.6" y="805" width="0.2" height="15.0" fill="rgb(208,64,49)" rx="2" ry="2" />
+<text  x="295.62" y="815.5" ></text>
+</g>
+<g >
+<title>__mod_memcg_lruvec_state (210,421,983 samples, 0.06%)</title><rect x="696.0" y="693" width="0.7" height="15.0" fill="rgb(210,106,22)" rx="2" ry="2" />
+<text  x="698.99" y="703.5" ></text>
+</g>
+<g >
+<title>xas_load (201,254,207 samples, 0.05%)</title><rect x="718.1" y="709" width="0.6" height="15.0" fill="rgb(226,177,46)" rx="2" ry="2" />
+<text  x="721.09" y="719.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (55,891,945 samples, 0.02%)</title><rect x="215.2" y="837" width="0.2" height="15.0" fill="rgb(226,61,14)" rx="2" ry="2" />
+<text  x="218.17" y="847.5" ></text>
+</g>
+<g >
+<title>shmem_read_mapping_page_gfp (77,928,947 samples, 0.02%)</title><rect x="134.5" y="677" width="0.2" height="15.0" fill="rgb(218,13,49)" rx="2" ry="2" />
+<text  x="137.47" y="687.5" ></text>
+</g>
+<g >
+<title>mozilla::detail::ConditionVariableImpl::notify_one (32,645,273 samples, 0.01%)</title><rect x="44.2" y="949" width="0.1" height="15.0" fill="rgb(214,46,49)" rx="2" ry="2" />
+<text  x="47.15" y="959.5" ></text>
+</g>
+<g >
+<title>ep_autoremove_wake_function (38,010,792 samples, 0.01%)</title><rect x="732.1" y="821" width="0.2" height="15.0" fill="rgb(243,160,45)" rx="2" ry="2" />
+<text  x="735.13" y="831.5" ></text>
+</g>
+<g >
+<title>g_main_context_check (356,709,928 samples, 0.10%)</title><rect x="99.8" y="917" width="1.1" height="15.0" fill="rgb(235,192,52)" rx="2" ry="2" />
+<text  x="102.80" y="927.5" ></text>
+</g>
+<g >
+<title>tcp_v6_do_rcv (219,649,689 samples, 0.06%)</title><rect x="741.2" y="261" width="0.7" height="15.0" fill="rgb(208,140,48)" rx="2" ry="2" />
+<text  x="744.15" y="271.5" ></text>
+</g>
+<g >
+<title>dequeue_task_fair (57,324,899 samples, 0.02%)</title><rect x="727.7" y="821" width="0.1" height="15.0" fill="rgb(222,222,39)" rx="2" ry="2" />
+<text  x="730.66" y="831.5" ></text>
+</g>
+<g >
+<title>tick_sched_handle (199,879,660 samples, 0.05%)</title><rect x="833.8" y="741" width="0.6" height="15.0" fill="rgb(214,229,6)" rx="2" ry="2" />
+<text  x="836.78" y="751.5" ></text>
+</g>
+<g >
+<title>dma_fence_signal_timestamp_locked (80,593,136 samples, 0.02%)</title><rect x="394.3" y="869" width="0.3" height="15.0" fill="rgb(224,135,8)" rx="2" ry="2" />
+<text  x="397.30" y="879.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (720,237,056 samples, 0.20%)</title><rect x="623.2" y="517" width="2.3" height="15.0" fill="rgb(216,78,36)" rx="2" ry="2" />
+<text  x="626.19" y="527.5" ></text>
+</g>
+<g >
+<title>workingset_update_node (73,430,252 samples, 0.02%)</title><rect x="361.8" y="805" width="0.3" height="15.0" fill="rgb(250,51,22)" rx="2" ry="2" />
+<text  x="364.82" y="815.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (35,319,851 samples, 0.01%)</title><rect x="1162.3" y="933" width="0.2" height="15.0" fill="rgb(233,114,50)" rx="2" ry="2" />
+<text  x="1165.34" y="943.5" ></text>
+</g>
+<g >
+<title>aio_compute_timeout (34,498,350 samples, 0.01%)</title><rect x="828.2" y="853" width="0.1" height="15.0" fill="rgb(252,69,54)" rx="2" ry="2" />
+<text  x="831.20" y="863.5" ></text>
+</g>
+<g >
+<title>xas_load (50,085,121 samples, 0.01%)</title><rect x="758.1" y="725" width="0.2" height="15.0" fill="rgb(209,139,24)" rx="2" ry="2" />
+<text  x="761.15" y="735.5" ></text>
+</g>
+<g >
+<title>[libcrypto.so.3.0.5] (65,089,327 samples, 0.02%)</title><rect x="284.8" y="533" width="0.2" height="15.0" fill="rgb(232,203,43)" rx="2" ry="2" />
+<text  x="287.77" y="543.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (85,259,946 samples, 0.02%)</title><rect x="298.7" y="965" width="0.3" height="15.0" fill="rgb(241,228,3)" rx="2" ry="2" />
+<text  x="301.74" y="975.5" ></text>
+</g>
+<g >
+<title>iomap_do_writepage (529,726,084 samples, 0.14%)</title><rect x="458.8" y="757" width="1.7" height="15.0" fill="rgb(253,156,33)" rx="2" ry="2" />
+<text  x="461.76" y="767.5" ></text>
+</g>
+<g >
+<title>pick_next_task_fair (54,495,525 samples, 0.01%)</title><rect x="158.8" y="757" width="0.2" height="15.0" fill="rgb(252,21,11)" rx="2" ry="2" />
+<text  x="161.78" y="767.5" ></text>
+</g>
+<g >
+<title>bdrv_co_common_block_status_above (49,774,161 samples, 0.01%)</title><rect x="735.9" y="885" width="0.1" height="15.0" fill="rgb(235,147,54)" rx="2" ry="2" />
+<text  x="738.87" y="895.5" ></text>
+</g>
+<g >
+<title>get_page_from_freelist (303,368,223 samples, 0.08%)</title><rect x="757.0" y="693" width="1.0" height="15.0" fill="rgb(228,146,17)" rx="2" ry="2" />
+<text  x="759.99" y="703.5" ></text>
+</g>
+<g >
+<title>irq_thread (536,466,717 samples, 0.15%)</title><rect x="339.3" y="933" width="1.8" height="15.0" fill="rgb(222,154,28)" rx="2" ry="2" />
+<text  x="342.34" y="943.5" ></text>
+</g>
+<g >
+<title>cryptd_skcipher_child (35,864,262 samples, 0.01%)</title><rect x="552.6" y="837" width="0.1" height="15.0" fill="rgb(213,130,20)" rx="2" ry="2" />
+<text  x="555.56" y="847.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (33,908,291 samples, 0.01%)</title><rect x="813.3" y="821" width="0.1" height="15.0" fill="rgb(222,3,24)" rx="2" ry="2" />
+<text  x="816.31" y="831.5" ></text>
+</g>
+<g >
+<title>tick_nohz_stop_tick (495,346,089 samples, 0.14%)</title><rect x="1159.9" y="885" width="1.6" height="15.0" fill="rgb(214,201,11)" rx="2" ry="2" />
+<text  x="1162.90" y="895.5" ></text>
+</g>
+<g >
+<title>run_rebalance_domains (66,744,296 samples, 0.02%)</title><rect x="833.1" y="773" width="0.2" height="15.0" fill="rgb(242,177,40)" rx="2" ry="2" />
+<text  x="836.13" y="783.5" ></text>
+</g>
+<g >
+<title>[firefox] (32,067,736 samples, 0.01%)</title><rect x="248.0" y="965" width="0.1" height="15.0" fill="rgb(254,179,45)" rx="2" ry="2" />
+<text  x="251.00" y="975.5" ></text>
+</g>
+<g >
+<title>Web_Content (32,418,044 samples, 0.01%)</title><rect x="194.0" y="981" width="0.2" height="15.0" fill="rgb(224,73,6)" rx="2" ry="2" />
+<text  x="197.05" y="991.5" ></text>
+</g>
+<g >
+<title>sysvec_call_function_single (53,288,200 samples, 0.01%)</title><rect x="834.9" y="821" width="0.2" height="15.0" fill="rgb(248,61,54)" rx="2" ry="2" />
+<text  x="837.90" y="831.5" ></text>
+</g>
+<g >
+<title>get_page_from_freelist (104,485,577 samples, 0.03%)</title><rect x="612.1" y="837" width="0.3" height="15.0" fill="rgb(217,136,39)" rx="2" ry="2" />
+<text  x="615.09" y="847.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (90,191,546 samples, 0.02%)</title><rect x="212.6" y="773" width="0.3" height="15.0" fill="rgb(227,80,7)" rx="2" ry="2" />
+<text  x="215.57" y="783.5" ></text>
+</g>
+<g >
+<title>wb_writeback (460,774,533 samples, 0.13%)</title><rect x="418.7" y="885" width="1.4" height="15.0" fill="rgb(211,48,14)" rx="2" ry="2" />
+<text  x="421.66" y="895.5" ></text>
+</g>
+<g >
+<title>__schedule (311,030,123 samples, 0.08%)</title><rect x="230.1" y="869" width="1.0" height="15.0" fill="rgb(244,162,3)" rx="2" ry="2" />
+<text  x="233.11" y="879.5" ></text>
+</g>
+<g >
+<title>schedule (221,334,380 samples, 0.06%)</title><rect x="22.4" y="757" width="0.7" height="15.0" fill="rgb(227,98,19)" rx="2" ry="2" />
+<text  x="25.42" y="767.5" ></text>
+</g>
+<g >
+<title>irqtime_account_process_tick (51,846,979 samples, 0.01%)</title><rect x="908.6" y="741" width="0.2" height="15.0" fill="rgb(253,128,22)" rx="2" ry="2" />
+<text  x="911.60" y="751.5" ></text>
+</g>
+<g >
+<title>sta_info_get_by_addrs (84,343,711 samples, 0.02%)</title><rect x="314.4" y="725" width="0.3" height="15.0" fill="rgb(210,193,26)" rx="2" ry="2" />
+<text  x="317.42" y="735.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (38,933,372 samples, 0.01%)</title><rect x="1165.3" y="725" width="0.1" height="15.0" fill="rgb(246,43,11)" rx="2" ry="2" />
+<text  x="1168.31" y="735.5" ></text>
+</g>
+<g >
+<title>nft_do_chain_inet (52,594,567 samples, 0.01%)</title><rect x="743.4" y="437" width="0.2" height="15.0" fill="rgb(216,139,51)" rx="2" ry="2" />
+<text  x="746.44" y="447.5" ></text>
+</g>
+<g >
+<title>sock_poll (265,742,091 samples, 0.07%)</title><rect x="655.1" y="645" width="0.9" height="15.0" fill="rgb(242,79,11)" rx="2" ry="2" />
+<text  x="658.11" y="655.5" ></text>
+</g>
+<g >
+<title>sysprof_collector_mark_vprintf (40,588,344 samples, 0.01%)</title><rect x="825.0" y="853" width="0.1" height="15.0" fill="rgb(212,49,26)" rx="2" ry="2" />
+<text  x="828.00" y="863.5" ></text>
+</g>
+<g >
+<title>__vdso_clock_gettime (55,906,827 samples, 0.02%)</title><rect x="281.8" y="869" width="0.2" height="15.0" fill="rgb(243,39,24)" rx="2" ry="2" />
+<text  x="284.84" y="879.5" ></text>
+</g>
+<g >
+<title>write_cb (191,623,001 samples, 0.05%)</title><rect x="641.5" y="709" width="0.7" height="15.0" fill="rgb(218,49,3)" rx="2" ry="2" />
+<text  x="644.54" y="719.5" ></text>
+</g>
+<g >
+<title>aesni_xts_encrypt (1,469,506,461 samples, 0.40%)</title><rect x="582.0" y="821" width="4.7" height="15.0" fill="rgb(217,207,16)" rx="2" ry="2" />
+<text  x="585.01" y="831.5" ></text>
+</g>
+<g >
+<title>__rseq_handle_notify_resume (32,954,294 samples, 0.01%)</title><rect x="90.7" y="869" width="0.1" height="15.0" fill="rgb(252,182,1)" rx="2" ry="2" />
+<text  x="93.71" y="879.5" ></text>
+</g>
+<g >
+<title>clockevents_program_event (147,129,611 samples, 0.04%)</title><rect x="912.9" y="805" width="0.5" height="15.0" fill="rgb(212,70,47)" rx="2" ry="2" />
+<text  x="915.94" y="815.5" ></text>
+</g>
+<g >
+<title>g_main_context_dispatch (95,142,026 samples, 0.03%)</title><rect x="278.9" y="901" width="0.3" height="15.0" fill="rgb(246,32,11)" rx="2" ry="2" />
+<text  x="281.89" y="911.5" ></text>
+</g>
+<g >
+<title>handle_irq_event (32,727,617 samples, 0.01%)</title><rect x="832.5" y="773" width="0.1" height="15.0" fill="rgb(210,170,44)" rx="2" ry="2" />
+<text  x="835.46" y="783.5" ></text>
+</g>
+<g >
+<title>[modesetting_drv.so] (333,065,385 samples, 0.09%)</title><rect x="200.0" y="917" width="1.1" height="15.0" fill="rgb(215,64,31)" rx="2" ry="2" />
+<text  x="203.01" y="927.5" ></text>
+</g>
+<g >
+<title>__list_del_entry_valid (31,709,787 samples, 0.01%)</title><rect x="757.3" y="677" width="0.1" height="15.0" fill="rgb(242,113,25)" rx="2" ry="2" />
+<text  x="760.26" y="687.5" ></text>
+</g>
+<g >
+<title>kthread (6,394,469,560 samples, 1.74%)</title><rect x="440.1" y="949" width="20.6" height="15.0" fill="rgb(240,174,27)" rx="2" ry="2" />
+<text  x="443.14" y="959.5" ></text>
+</g>
+<g >
+<title>charge_memcg (32,381,005 samples, 0.01%)</title><rect x="236.8" y="757" width="0.1" height="15.0" fill="rgb(236,61,4)" rx="2" ry="2" />
+<text  x="239.84" y="767.5" ></text>
+</g>
+<g >
+<title>compaction_alloc (33,175,619 samples, 0.01%)</title><rect x="341.2" y="869" width="0.1" height="15.0" fill="rgb(248,225,9)" rx="2" ry="2" />
+<text  x="344.21" y="879.5" ></text>
+</g>
+<g >
+<title>zram_rw_page (35,115,043 samples, 0.01%)</title><rect x="368.5" y="805" width="0.2" height="15.0" fill="rgb(236,50,22)" rx="2" ry="2" />
+<text  x="371.54" y="815.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irq (81,723,653 samples, 0.02%)</title><rect x="697.4" y="709" width="0.2" height="15.0" fill="rgb(233,208,54)" rx="2" ry="2" />
+<text  x="700.37" y="719.5" ></text>
+</g>
+<g >
+<title>smpboot_thread_fn (1,481,065,896 samples, 0.40%)</title><rect x="347.1" y="933" width="4.7" height="15.0" fill="rgb(222,162,41)" rx="2" ry="2" />
+<text  x="350.06" y="943.5" ></text>
+</g>
+<g >
+<title>rmqueue_bulk (58,255,073 samples, 0.02%)</title><rect x="522.9" y="821" width="0.2" height="15.0" fill="rgb(244,137,42)" rx="2" ry="2" />
+<text  x="525.93" y="831.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (149,605,927 samples, 0.04%)</title><rect x="692.9" y="661" width="0.4" height="15.0" fill="rgb(231,138,47)" rx="2" ry="2" />
+<text  x="695.87" y="671.5" ></text>
+</g>
+<g >
+<title>nvme_irq (136,183,184 samples, 0.04%)</title><rect x="892.9" y="773" width="0.4" height="15.0" fill="rgb(221,219,27)" rx="2" ry="2" />
+<text  x="895.89" y="783.5" ></text>
+</g>
+<g >
+<title>[git-remote-http] (101,643,328 samples, 0.03%)</title><rect x="284.8" y="901" width="0.3" height="15.0" fill="rgb(213,106,47)" rx="2" ry="2" />
+<text  x="287.75" y="911.5" ></text>
+</g>
+<g >
+<title>i915_vma_pin_ww (502,188,609 samples, 0.14%)</title><rect x="139.4" y="757" width="1.7" height="15.0" fill="rgb(236,77,36)" rx="2" ry="2" />
+<text  x="142.44" y="767.5" ></text>
+</g>
+<g >
+<title>unix_stream_read_generic (74,206,619 samples, 0.02%)</title><rect x="44.6" y="821" width="0.3" height="15.0" fill="rgb(241,9,38)" rx="2" ry="2" />
+<text  x="47.61" y="831.5" ></text>
+</g>
+<g >
+<title>__wake_up_common_lock (59,947,670 samples, 0.02%)</title><rect x="299.6" y="917" width="0.2" height="15.0" fill="rgb(206,60,12)" rx="2" ry="2" />
+<text  x="302.65" y="927.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (460,319,011 samples, 0.13%)</title><rect x="291.7" y="917" width="1.5" height="15.0" fill="rgb(250,26,27)" rx="2" ry="2" />
+<text  x="294.68" y="927.5" ></text>
+</g>
+<g >
+<title>crypt_page_free (41,586,606 samples, 0.01%)</title><rect x="384.2" y="629" width="0.2" height="15.0" fill="rgb(241,117,52)" rx="2" ry="2" />
+<text  x="387.24" y="639.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (37,889,743 samples, 0.01%)</title><rect x="663.1" y="629" width="0.2" height="15.0" fill="rgb(211,215,7)" rx="2" ry="2" />
+<text  x="666.14" y="639.5" ></text>
+</g>
+<g >
+<title>nf_conntrack_in (61,702,691 samples, 0.02%)</title><rect x="663.6" y="629" width="0.2" height="15.0" fill="rgb(205,144,44)" rx="2" ry="2" />
+<text  x="666.63" y="639.5" ></text>
+</g>
+<g >
+<title>WRScene~ilder#8 (38,132,325 samples, 0.01%)</title><rect x="184.9" y="981" width="0.1" height="15.0" fill="rgb(209,4,33)" rx="2" ry="2" />
+<text  x="187.88" y="991.5" ></text>
+</g>
+<g >
+<title>hrtimer_update_next_event (52,464,739 samples, 0.01%)</title><rect x="1159.7" y="869" width="0.1" height="15.0" fill="rgb(240,179,19)" rx="2" ry="2" />
+<text  x="1162.68" y="879.5" ></text>
+</g>
+<g >
+<title>__clock_gettime_2 (85,482,121 samples, 0.02%)</title><rect x="103.9" y="933" width="0.3" height="15.0" fill="rgb(251,58,10)" rx="2" ry="2" />
+<text  x="106.88" y="943.5" ></text>
+</g>
+<g >
+<title>gtk_main_do_event (276,893,290 samples, 0.08%)</title><rect x="1177.8" y="741" width="0.9" height="15.0" fill="rgb(247,5,31)" rx="2" ry="2" />
+<text  x="1180.78" y="751.5" ></text>
+</g>
+<g >
+<title>ip6_finish_output (78,258,970 samples, 0.02%)</title><rect x="665.7" y="661" width="0.3" height="15.0" fill="rgb(240,200,28)" rx="2" ry="2" />
+<text  x="668.73" y="671.5" ></text>
+</g>
+<g >
+<title>task_tick_fair (33,260,855 samples, 0.01%)</title><rect x="814.1" y="693" width="0.1" height="15.0" fill="rgb(226,105,48)" rx="2" ry="2" />
+<text  x="817.12" y="703.5" ></text>
+</g>
+<g >
+<title>mozilla::detail::MutexImpl::unlock (38,431,319 samples, 0.01%)</title><rect x="270.7" y="949" width="0.2" height="15.0" fill="rgb(253,104,20)" rx="2" ry="2" />
+<text  x="273.74" y="959.5" ></text>
+</g>
+<g >
+<title>____intel_wakeref_put_last (95,283,505 samples, 0.03%)</title><rect x="393.8" y="901" width="0.3" height="15.0" fill="rgb(208,97,38)" rx="2" ry="2" />
+<text  x="396.77" y="911.5" ></text>
+</g>
+<g >
+<title>wb_workfn (559,513,953 samples, 0.15%)</title><rect x="595.3" y="901" width="1.8" height="15.0" fill="rgb(248,210,8)" rx="2" ry="2" />
+<text  x="598.31" y="911.5" ></text>
+</g>
+<g >
+<title>xas_clear_mark (69,532,083 samples, 0.02%)</title><rect x="361.0" y="805" width="0.3" height="15.0" fill="rgb(253,150,48)" rx="2" ry="2" />
+<text  x="364.05" y="815.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (46,338,020 samples, 0.01%)</title><rect x="222.9" y="725" width="0.2" height="15.0" fill="rgb(235,118,34)" rx="2" ry="2" />
+<text  x="225.91" y="735.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (83,199,673 samples, 0.02%)</title><rect x="1174.2" y="725" width="0.3" height="15.0" fill="rgb(215,133,33)" rx="2" ry="2" />
+<text  x="1177.20" y="735.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (81,734,205 samples, 0.02%)</title><rect x="143.6" y="757" width="0.2" height="15.0" fill="rgb(234,158,37)" rx="2" ry="2" />
+<text  x="146.58" y="767.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (502,537,604 samples, 0.14%)</title><rect x="390.3" y="965" width="1.6" height="15.0" fill="rgb(237,208,52)" rx="2" ry="2" />
+<text  x="393.32" y="975.5" ></text>
+</g>
+<g >
+<title>aio_bh_poll (146,342,126 samples, 0.04%)</title><rect x="827.2" y="837" width="0.5" height="15.0" fill="rgb(222,180,39)" rx="2" ry="2" />
+<text  x="830.23" y="847.5" ></text>
+</g>
+<g >
+<title>[wget] (93,852,759 samples, 0.03%)</title><rect x="1167.1" y="965" width="0.3" height="15.0" fill="rgb(229,37,13)" rx="2" ry="2" />
+<text  x="1170.09" y="975.5" ></text>
+</g>
+<g >
+<title>node_dirty_ok (32,944,259 samples, 0.01%)</title><rect x="757.5" y="677" width="0.1" height="15.0" fill="rgb(253,39,16)" rx="2" ry="2" />
+<text  x="760.53" y="687.5" ></text>
+</g>
+<g >
+<title>dixLookupResourceByType (465,402,258 samples, 0.13%)</title><rect x="219.3" y="933" width="1.5" height="15.0" fill="rgb(205,58,53)" rx="2" ry="2" />
+<text  x="222.33" y="943.5" ></text>
+</g>
+<g >
+<title>do_softirq.part.0 (694,299,366 samples, 0.19%)</title><rect x="740.4" y="405" width="2.3" height="15.0" fill="rgb(210,45,35)" rx="2" ry="2" />
+<text  x="743.45" y="415.5" ></text>
+</g>
+<g >
+<title>__libc_recvmsg (825,702,389 samples, 0.23%)</title><rect x="38.6" y="933" width="2.7" height="15.0" fill="rgb(236,219,42)" rx="2" ry="2" />
+<text  x="41.63" y="943.5" ></text>
+</g>
+<g >
+<title>memcpy_erms (53,584,071 samples, 0.01%)</title><rect x="570.7" y="869" width="0.1" height="15.0" fill="rgb(241,58,42)" rx="2" ry="2" />
+<text  x="573.65" y="879.5" ></text>
+</g>
+<g >
+<title>tick_nohz_restart_sched_tick (815,192,214 samples, 0.22%)</title><rect x="1155.6" y="885" width="2.6" height="15.0" fill="rgb(223,205,15)" rx="2" ry="2" />
+<text  x="1158.59" y="895.5" ></text>
+</g>
+<g >
+<title>i915_gem_do_execbuffer (929,006,132 samples, 0.25%)</title><rect x="233.2" y="869" width="3.0" height="15.0" fill="rgb(250,10,2)" rx="2" ry="2" />
+<text  x="236.23" y="879.5" ></text>
+</g>
+<g >
+<title>process_one_work (340,655,485 samples, 0.09%)</title><rect x="396.5" y="917" width="1.0" height="15.0" fill="rgb(232,84,33)" rx="2" ry="2" />
+<text  x="399.45" y="927.5" ></text>
+</g>
+<g >
+<title>__wake_up_common (43,247,284 samples, 0.01%)</title><rect x="266.8" y="789" width="0.1" height="15.0" fill="rgb(244,137,11)" rx="2" ry="2" />
+<text  x="269.80" y="799.5" ></text>
+</g>
+<g >
+<title>g_source_add_poll (98,940,778 samples, 0.03%)</title><rect x="739.0" y="677" width="0.3" height="15.0" fill="rgb(240,172,8)" rx="2" ry="2" />
+<text  x="741.95" y="687.5" ></text>
+</g>
+<g >
+<title>Compositor (2,247,009,950 samples, 0.61%)</title><rect x="10.2" y="981" width="7.2" height="15.0" fill="rgb(228,197,20)" rx="2" ry="2" />
+<text  x="13.16" y="991.5" ></text>
+</g>
+<g >
+<title>xfs_vm_writepages (299,662,202 samples, 0.08%)</title><rect x="502.1" y="805" width="1.0" height="15.0" fill="rgb(206,170,29)" rx="2" ry="2" />
+<text  x="505.10" y="815.5" ></text>
+</g>
+<g >
+<title>gdk_window_get_origin (44,420,979 samples, 0.01%)</title><rect x="269.1" y="949" width="0.2" height="15.0" fill="rgb(253,35,43)" rx="2" ry="2" />
+<text  x="272.14" y="959.5" ></text>
+</g>
+<g >
+<title>lru_add_fn (68,363,817 samples, 0.02%)</title><rect x="344.5" y="837" width="0.2" height="15.0" fill="rgb(254,157,47)" rx="2" ry="2" />
+<text  x="347.48" y="847.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (1,086,373,177 samples, 0.30%)</title><rect x="87.5" y="917" width="3.5" height="15.0" fill="rgb(237,65,24)" rx="2" ry="2" />
+<text  x="90.49" y="927.5" ></text>
+</g>
+<g >
+<title>ieee80211_data_to_8023_exthdr (82,164,473 samples, 0.02%)</title><rect x="306.4" y="709" width="0.2" height="15.0" fill="rgb(242,12,25)" rx="2" ry="2" />
+<text  x="309.36" y="719.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (92,145,488 samples, 0.03%)</title><rect x="1165.6" y="725" width="0.3" height="15.0" fill="rgb(209,222,30)" rx="2" ry="2" />
+<text  x="1168.61" y="735.5" ></text>
+</g>
+<g >
+<title>get_page_from_freelist (153,517,265 samples, 0.04%)</title><rect x="418.0" y="837" width="0.5" height="15.0" fill="rgb(237,25,33)" rx="2" ry="2" />
+<text  x="420.99" y="847.5" ></text>
+</g>
+<g >
+<title>import_iovec (34,041,554 samples, 0.01%)</title><rect x="40.5" y="837" width="0.1" height="15.0" fill="rgb(205,172,32)" rx="2" ry="2" />
+<text  x="43.46" y="847.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (145,179,256 samples, 0.04%)</title><rect x="43.4" y="885" width="0.4" height="15.0" fill="rgb(215,162,4)" rx="2" ry="2" />
+<text  x="46.36" y="895.5" ></text>
+</g>
+<g >
+<title>[libGLdispatch.so.0.0.0] (64,779,838 samples, 0.02%)</title><rect x="225.2" y="965" width="0.2" height="15.0" fill="rgb(211,190,6)" rx="2" ry="2" />
+<text  x="228.24" y="975.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (48,127,788 samples, 0.01%)</title><rect x="1174.5" y="757" width="0.1" height="15.0" fill="rgb(245,162,31)" rx="2" ry="2" />
+<text  x="1177.48" y="767.5" ></text>
+</g>
+<g >
+<title>malloc (46,646,535 samples, 0.01%)</title><rect x="16.3" y="917" width="0.1" height="15.0" fill="rgb(212,72,29)" rx="2" ry="2" />
+<text  x="19.26" y="927.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (391,114,268 samples, 0.11%)</title><rect x="389.1" y="965" width="1.2" height="15.0" fill="rgb(208,48,35)" rx="2" ry="2" />
+<text  x="392.05" y="975.5" ></text>
+</g>
+<g >
+<title>kernel_fpu_begin_mask (137,268,724 samples, 0.04%)</title><rect x="606.3" y="821" width="0.5" height="15.0" fill="rgb(238,47,17)" rx="2" ry="2" />
+<text  x="609.33" y="831.5" ></text>
+</g>
+<g >
+<title>intel_engine_irq_enable (42,991,042 samples, 0.01%)</title><rect x="232.3" y="629" width="0.1" height="15.0" fill="rgb(238,4,51)" rx="2" ry="2" />
+<text  x="235.28" y="639.5" ></text>
+</g>
+<g >
+<title>g_main_context_iteration (2,025,743,639 samples, 0.55%)</title><rect x="96.3" y="949" width="6.5" height="15.0" fill="rgb(244,28,43)" rx="2" ry="2" />
+<text  x="99.31" y="959.5" ></text>
+</g>
+<g >
+<title>write_cache_pages (866,236,874 samples, 0.24%)</title><rect x="457.9" y="773" width="2.8" height="15.0" fill="rgb(239,211,10)" rx="2" ry="2" />
+<text  x="460.88" y="783.5" ></text>
+</g>
+<g >
+<title>__x64_sys_futex (41,765,784 samples, 0.01%)</title><rect x="178.4" y="869" width="0.1" height="15.0" fill="rgb(230,179,13)" rx="2" ry="2" />
+<text  x="181.38" y="879.5" ></text>
+</g>
+<g >
+<title>__mod_memcg_lruvec_state (44,304,873 samples, 0.01%)</title><rect x="573.4" y="693" width="0.1" height="15.0" fill="rgb(226,80,18)" rx="2" ry="2" />
+<text  x="576.40" y="703.5" ></text>
+</g>
+<g >
+<title>iv_of_dmreq (145,540,851 samples, 0.04%)</title><rect x="532.2" y="869" width="0.5" height="15.0" fill="rgb(238,66,22)" rx="2" ry="2" />
+<text  x="535.25" y="879.5" ></text>
+</g>
+<g >
+<title>i915_gem_do_execbuffer (1,524,519,740 samples, 0.42%)</title><rect x="136.6" y="789" width="4.9" height="15.0" fill="rgb(207,186,24)" rx="2" ry="2" />
+<text  x="139.62" y="799.5" ></text>
+</g>
+<g >
+<title>__clock_gettime_2 (38,038,551 samples, 0.01%)</title><rect x="101.9" y="901" width="0.1" height="15.0" fill="rgb(215,193,52)" rx="2" ry="2" />
+<text  x="104.89" y="911.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (71,304,138 samples, 0.02%)</title><rect x="1174.2" y="661" width="0.2" height="15.0" fill="rgb(220,74,48)" rx="2" ry="2" />
+<text  x="1177.21" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (48,227,011 samples, 0.01%)</title><rect x="744.7" y="661" width="0.2" height="15.0" fill="rgb(245,70,6)" rx="2" ry="2" />
+<text  x="747.71" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (782,194,014 samples, 0.21%)</title><rect x="1182.4" y="965" width="2.5" height="15.0" fill="rgb(212,22,3)" rx="2" ry="2" />
+<text  x="1185.42" y="975.5" ></text>
+</g>
+<g >
+<title>__wake_up_common_lock (35,858,747 samples, 0.01%)</title><rect x="39.9" y="725" width="0.1" height="15.0" fill="rgb(240,1,38)" rx="2" ry="2" />
+<text  x="42.90" y="735.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (282,399,764 samples, 0.08%)</title><rect x="607.6" y="853" width="0.9" height="15.0" fill="rgb(219,48,24)" rx="2" ry="2" />
+<text  x="610.60" y="863.5" ></text>
+</g>
+<g >
+<title>[libnss3.so] (45,068,703 samples, 0.01%)</title><rect x="159.9" y="917" width="0.1" height="15.0" fill="rgb(224,99,13)" rx="2" ry="2" />
+<text  x="162.87" y="927.5" ></text>
+</g>
+<g >
+<title>[Xorg] (62,347,336 samples, 0.02%)</title><rect x="242.2" y="917" width="0.2" height="15.0" fill="rgb(210,101,48)" rx="2" ry="2" />
+<text  x="245.20" y="927.5" ></text>
+</g>
+<g >
+<title>xas_load (263,791,464 samples, 0.07%)</title><rect x="712.1" y="741" width="0.8" height="15.0" fill="rgb(251,24,38)" rx="2" ry="2" />
+<text  x="715.06" y="751.5" ></text>
+</g>
+<g >
+<title>[libglamoregl.so] (459,989,059 samples, 0.13%)</title><rect x="216.8" y="917" width="1.4" height="15.0" fill="rgb(227,91,34)" rx="2" ry="2" />
+<text  x="219.76" y="927.5" ></text>
+</g>
+<g >
+<title>compaction_alloc (572,991,082 samples, 0.16%)</title><rect x="342.5" y="869" width="1.9" height="15.0" fill="rgb(224,44,40)" rx="2" ry="2" />
+<text  x="345.52" y="879.5" ></text>
+</g>
+<g >
+<title>__folio_start_writeback (299,641,240 samples, 0.08%)</title><rect x="438.7" y="741" width="1.0" height="15.0" fill="rgb(232,1,36)" rx="2" ry="2" />
+<text  x="441.69" y="751.5" ></text>
+</g>
+<g >
+<title>__hrtimer_next_event_base (52,465,311 samples, 0.01%)</title><rect x="913.5" y="789" width="0.2" height="15.0" fill="rgb(215,27,4)" rx="2" ry="2" />
+<text  x="916.48" y="799.5" ></text>
+</g>
+<g >
+<title>do_iter_write (83,103,403 samples, 0.02%)</title><rect x="1189.2" y="901" width="0.3" height="15.0" fill="rgb(249,86,48)" rx="2" ry="2" />
+<text  x="1192.22" y="911.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (183,936,196 samples, 0.05%)</title><rect x="658.0" y="821" width="0.6" height="15.0" fill="rgb(207,19,53)" rx="2" ry="2" />
+<text  x="661.04" y="831.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (155,130,444 samples, 0.04%)</title><rect x="98.6" y="869" width="0.5" height="15.0" fill="rgb(227,220,16)" rx="2" ry="2" />
+<text  x="101.61" y="879.5" ></text>
+</g>
+<g >
+<title>glamor_create_pixmap (665,959,045 samples, 0.18%)</title><rect x="221.0" y="933" width="2.1" height="15.0" fill="rgb(219,77,14)" rx="2" ry="2" />
+<text  x="223.99" y="943.5" ></text>
+</g>
+<g >
+<title>wb_writeback (149,405,777 samples, 0.04%)</title><rect x="612.5" y="885" width="0.5" height="15.0" fill="rgb(235,224,42)" rx="2" ry="2" />
+<text  x="615.55" y="895.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (36,574,202 samples, 0.01%)</title><rect x="748.4" y="469" width="0.1" height="15.0" fill="rgb(229,57,12)" rx="2" ry="2" />
+<text  x="751.38" y="479.5" ></text>
+</g>
+<g >
+<title>security_socket_recvmsg (59,994,326 samples, 0.02%)</title><rect x="228.2" y="869" width="0.2" height="15.0" fill="rgb(247,72,11)" rx="2" ry="2" />
+<text  x="231.24" y="879.5" ></text>
+</g>
+<g >
+<title>aesni_enc (98,253,384 samples, 0.03%)</title><rect x="466.2" y="821" width="0.3" height="15.0" fill="rgb(228,45,54)" rx="2" ry="2" />
+<text  x="469.22" y="831.5" ></text>
+</g>
+<g >
+<title>__dev_queue_xmit (76,004,885 samples, 0.02%)</title><rect x="740.2" y="421" width="0.2" height="15.0" fill="rgb(224,140,17)" rx="2" ry="2" />
+<text  x="743.19" y="431.5" ></text>
+</g>
+<g >
+<title>e1000e_read_phy_reg_mdic (40,672,566 samples, 0.01%)</title><rect x="390.4" y="821" width="0.1" height="15.0" fill="rgb(252,92,44)" rx="2" ry="2" />
+<text  x="393.35" y="831.5" ></text>
+</g>
+<g >
+<title>unix_stream_recvmsg (306,027,725 samples, 0.08%)</title><rect x="39.4" y="837" width="1.0" height="15.0" fill="rgb(239,180,44)" rx="2" ry="2" />
+<text  x="42.39" y="847.5" ></text>
+</g>
+<g >
+<title>sysvec_apic_timer_interrupt (37,518,410 samples, 0.01%)</title><rect x="114.2" y="917" width="0.1" height="15.0" fill="rgb(244,20,43)" rx="2" ry="2" />
+<text  x="117.17" y="927.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (817,077,353 samples, 0.22%)</title><rect x="1171.5" y="581" width="2.6" height="15.0" fill="rgb(222,22,5)" rx="2" ry="2" />
+<text  x="1174.51" y="591.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (81,437,653 samples, 0.02%)</title><rect x="145.1" y="773" width="0.3" height="15.0" fill="rgb(254,8,28)" rx="2" ry="2" />
+<text  x="148.14" y="783.5" ></text>
+</g>
+<g >
+<title>nft_do_chain_inet (34,410,969 samples, 0.01%)</title><rect x="663.9" y="629" width="0.1" height="15.0" fill="rgb(233,118,29)" rx="2" ry="2" />
+<text  x="666.86" y="639.5" ></text>
+</g>
+<g >
+<title>kthread (5,676,302,212 samples, 1.55%)</title><rect x="460.7" y="949" width="18.3" height="15.0" fill="rgb(245,112,51)" rx="2" ry="2" />
+<text  x="463.73" y="959.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (100,539,336 samples, 0.03%)</title><rect x="148.7" y="901" width="0.3" height="15.0" fill="rgb(206,191,4)" rx="2" ry="2" />
+<text  x="151.68" y="911.5" ></text>
+</g>
+<g >
+<title>ktime_get_update_offsets_now (65,062,937 samples, 0.02%)</title><rect x="913.7" y="805" width="0.2" height="15.0" fill="rgb(242,26,54)" rx="2" ry="2" />
+<text  x="916.65" y="815.5" ></text>
+</g>
+<g >
+<title>moz_xmalloc (191,241,199 samples, 0.05%)</title><rect x="269.7" y="949" width="0.6" height="15.0" fill="rgb(251,159,37)" rx="2" ry="2" />
+<text  x="272.68" y="959.5" ></text>
+</g>
+<g >
+<title>[libxul.so] (86,620,616 samples, 0.02%)</title><rect x="153.2" y="933" width="0.2" height="15.0" fill="rgb(240,108,1)" rx="2" ry="2" />
+<text  x="156.16" y="943.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (340,869,950 samples, 0.09%)</title><rect x="1178.7" y="725" width="1.1" height="15.0" fill="rgb(246,97,0)" rx="2" ry="2" />
+<text  x="1181.74" y="735.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (117,367,793 samples, 0.03%)</title><rect x="143.6" y="773" width="0.3" height="15.0" fill="rgb(214,207,11)" rx="2" ry="2" />
+<text  x="146.56" y="783.5" ></text>
+</g>
+<g >
+<title>ip_local_out (38,204,040 samples, 0.01%)</title><rect x="325.9" y="597" width="0.1" height="15.0" fill="rgb(246,1,1)" rx="2" ry="2" />
+<text  x="328.89" y="607.5" ></text>
+</g>
+<g >
+<title>wake_up_q (37,731,118 samples, 0.01%)</title><rect x="145.9" y="837" width="0.1" height="15.0" fill="rgb(226,87,12)" rx="2" ry="2" />
+<text  x="148.87" y="847.5" ></text>
+</g>
+<g >
+<title>[libxul.so] (14,114,559,356 samples, 3.85%)</title><rect x="60.2" y="965" width="45.4" height="15.0" fill="rgb(254,8,21)" rx="2" ry="2" />
+<text  x="63.20" y="975.5" >[lib..</text>
+</g>
+<g >
+<title>[iris_dri.so] (78,083,447 samples, 0.02%)</title><rect x="200.7" y="805" width="0.3" height="15.0" fill="rgb(207,228,43)" rx="2" ry="2" />
+<text  x="203.73" y="815.5" ></text>
+</g>
+<g >
+<title>dequeue_task_fair (183,081,479 samples, 0.05%)</title><rect x="821.5" y="757" width="0.6" height="15.0" fill="rgb(236,41,27)" rx="2" ry="2" />
+<text  x="824.48" y="767.5" ></text>
+</g>
+<g >
+<title>try_to_wake_up (36,285,800 samples, 0.01%)</title><rect x="15.2" y="837" width="0.1" height="15.0" fill="rgb(217,130,42)" rx="2" ry="2" />
+<text  x="18.17" y="847.5" ></text>
+</g>
+<g >
+<title>gdk_display_get_event (35,911,135 samples, 0.01%)</title><rect x="1177.6" y="869" width="0.1" height="15.0" fill="rgb(235,196,48)" rx="2" ry="2" />
+<text  x="1180.59" y="879.5" ></text>
+</g>
+<g >
+<title>[firefox] (32,259,840 samples, 0.01%)</title><rect x="148.5" y="917" width="0.1" height="15.0" fill="rgb(226,112,47)" rx="2" ry="2" />
+<text  x="151.49" y="927.5" ></text>
+</g>
+<g >
+<title>__mod_node_page_state (42,057,820 samples, 0.01%)</title><rect x="384.7" y="757" width="0.1" height="15.0" fill="rgb(251,127,33)" rx="2" ry="2" />
+<text  x="387.67" y="767.5" ></text>
+</g>
+<g >
+<title>folio_copy (216,327,443 samples, 0.06%)</title><rect x="345.2" y="837" width="0.7" height="15.0" fill="rgb(222,189,43)" rx="2" ry="2" />
+<text  x="348.18" y="847.5" ></text>
+</g>
+<g >
+<title>g_main_context_check (36,548,343 samples, 0.01%)</title><rect x="1186.5" y="901" width="0.1" height="15.0" fill="rgb(213,140,48)" rx="2" ry="2" />
+<text  x="1189.47" y="911.5" ></text>
+</g>
+<g >
+<title>ipt_do_table (132,467,409 samples, 0.04%)</title><rect x="329.1" y="677" width="0.5" height="15.0" fill="rgb(246,0,7)" rx="2" ry="2" />
+<text  x="332.13" y="687.5" ></text>
+</g>
+<g >
+<title>[Xorg] (62,499,362 samples, 0.02%)</title><rect x="242.2" y="933" width="0.2" height="15.0" fill="rgb(206,118,10)" rx="2" ry="2" />
+<text  x="245.20" y="943.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (42,227,856 samples, 0.01%)</title><rect x="1173.8" y="437" width="0.2" height="15.0" fill="rgb(220,132,40)" rx="2" ry="2" />
+<text  x="1176.82" y="447.5" ></text>
+</g>
+<g >
+<title>[libcairo.so.2.11706.0] (74,143,335 samples, 0.02%)</title><rect x="1176.3" y="853" width="0.3" height="15.0" fill="rgb(226,67,51)" rx="2" ry="2" />
+<text  x="1179.35" y="863.5" ></text>
+</g>
+<g >
+<title>try_to_wake_up (301,793,013 samples, 0.08%)</title><rect x="30.0" y="805" width="1.0" height="15.0" fill="rgb(250,143,19)" rx="2" ry="2" />
+<text  x="33.02" y="815.5" ></text>
+</g>
+<g >
+<title>__GI___ioctl (38,102,698 samples, 0.01%)</title><rect x="143.7" y="741" width="0.1" height="15.0" fill="rgb(227,183,10)" rx="2" ry="2" />
+<text  x="146.72" y="751.5" ></text>
+</g>
+<g >
+<title>[ssh] (48,677,517 samples, 0.01%)</title><rect x="830.4" y="821" width="0.2" height="15.0" fill="rgb(245,88,51)" rx="2" ry="2" />
+<text  x="833.42" y="831.5" ></text>
+</g>
+<g >
+<title>execute_command_internal (47,110,437 samples, 0.01%)</title><rect x="243.4" y="629" width="0.2" height="15.0" fill="rgb(217,98,45)" rx="2" ry="2" />
+<text  x="246.42" y="639.5" ></text>
+</g>
+<g >
+<title>try_to_wake_up (219,305,090 samples, 0.06%)</title><rect x="327.9" y="533" width="0.7" height="15.0" fill="rgb(243,119,50)" rx="2" ry="2" />
+<text  x="330.87" y="543.5" ></text>
+</g>
+<g >
+<title>__intel_wakeref_get_first (46,327,226 samples, 0.01%)</title><rect x="137.4" y="773" width="0.1" height="15.0" fill="rgb(216,198,42)" rx="2" ry="2" />
+<text  x="140.36" y="783.5" ></text>
+</g>
+<g >
+<title>[libEGL_mesa.so.0.0.0] (105,919,660 samples, 0.03%)</title><rect x="142.2" y="885" width="0.3" height="15.0" fill="rgb(225,94,6)" rx="2" ry="2" />
+<text  x="145.15" y="895.5" ></text>
+</g>
+<g >
+<title>i915_vma_pin_ww (31,082,405 samples, 0.01%)</title><rect x="144.6" y="661" width="0.1" height="15.0" fill="rgb(254,133,22)" rx="2" ry="2" />
+<text  x="147.63" y="671.5" ></text>
+</g>
+<g >
+<title>memset_erms (106,217,829 samples, 0.03%)</title><rect x="611.6" y="853" width="0.4" height="15.0" fill="rgb(205,74,17)" rx="2" ry="2" />
+<text  x="614.61" y="863.5" ></text>
+</g>
+<g >
+<title>gtk_main (39,096,757 samples, 0.01%)</title><rect x="1185.5" y="821" width="0.2" height="15.0" fill="rgb(215,111,32)" rx="2" ry="2" />
+<text  x="1188.55" y="831.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (77,113,282 samples, 0.02%)</title><rect x="1179.0" y="581" width="0.2" height="15.0" fill="rgb(244,133,51)" rx="2" ry="2" />
+<text  x="1181.99" y="591.5" ></text>
+</g>
+<g >
+<title>__mod_lruvec_page_state (42,523,957 samples, 0.01%)</title><rect x="388.7" y="789" width="0.1" height="15.0" fill="rgb(237,21,16)" rx="2" ry="2" />
+<text  x="391.70" y="799.5" ></text>
+</g>
+<g >
+<title>mod_lruvec_page_state (75,619,049 samples, 0.02%)</title><rect x="391.3" y="805" width="0.3" height="15.0" fill="rgb(205,122,16)" rx="2" ry="2" />
+<text  x="394.31" y="815.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (82,639,884 samples, 0.02%)</title><rect x="720.4" y="741" width="0.2" height="15.0" fill="rgb(246,197,2)" rx="2" ry="2" />
+<text  x="723.38" y="751.5" ></text>
+</g>
+<g >
+<title>ep_poll_callback (55,167,873 samples, 0.02%)</title><rect x="20.0" y="613" width="0.2" height="15.0" fill="rgb(253,217,10)" rx="2" ry="2" />
+<text  x="22.98" y="623.5" ></text>
+</g>
+<g >
+<title>__entry_text_start (97,065,852 samples, 0.03%)</title><rect x="226.7" y="965" width="0.3" height="15.0" fill="rgb(225,217,6)" rx="2" ry="2" />
+<text  x="229.68" y="975.5" ></text>
+</g>
+<g >
+<title>syscall (49,846,495 samples, 0.01%)</title><rect x="152.5" y="917" width="0.1" height="15.0" fill="rgb(214,174,30)" rx="2" ry="2" />
+<text  x="155.45" y="927.5" ></text>
+</g>
+<g >
+<title>Py_BytesMain (67,754,465 samples, 0.02%)</title><rect x="244.1" y="965" width="0.2" height="15.0" fill="rgb(212,126,33)" rx="2" ry="2" />
+<text  x="247.09" y="975.5" ></text>
+</g>
+<g >
+<title>[libgdk-3.so.0.2404.30] (41,041,502 samples, 0.01%)</title><rect x="278.9" y="885" width="0.1" height="15.0" fill="rgb(246,164,13)" rx="2" ry="2" />
+<text  x="281.91" y="895.5" ></text>
+</g>
+<g >
+<title>__wake_up_common (53,971,553 samples, 0.01%)</title><rect x="156.5" y="837" width="0.2" height="15.0" fill="rgb(207,177,18)" rx="2" ry="2" />
+<text  x="159.50" y="847.5" ></text>
+</g>
+<g >
+<title>mod_lruvec_page_state (89,838,515 samples, 0.02%)</title><rect x="438.1" y="741" width="0.3" height="15.0" fill="rgb(240,64,4)" rx="2" ry="2" />
+<text  x="441.08" y="751.5" ></text>
+</g>
+<g >
+<title>tcp_sendmsg (921,564,380 samples, 0.25%)</title><rect x="623.0" y="581" width="3.0" height="15.0" fill="rgb(229,11,30)" rx="2" ry="2" />
+<text  x="626.03" y="591.5" ></text>
+</g>
+<g >
+<title>dma_fence_add_callback (49,036,141 samples, 0.01%)</title><rect x="232.3" y="773" width="0.1" height="15.0" fill="rgb(224,190,5)" rx="2" ry="2" />
+<text  x="235.26" y="783.5" ></text>
+</g>
+<g >
+<title>i915_sg_trim (31,538,259 samples, 0.01%)</title><rect x="234.3" y="773" width="0.1" height="15.0" fill="rgb(217,208,51)" rx="2" ry="2" />
+<text  x="237.29" y="783.5" ></text>
+</g>
+<g >
+<title>__GI___pthread_cond_wait (547,570,739 samples, 0.15%)</title><rect x="12.7" y="933" width="1.8" height="15.0" fill="rgb(243,80,16)" rx="2" ry="2" />
+<text  x="15.72" y="943.5" ></text>
+</g>
+<g >
+<title>ieee80211_subif_start_xmit (329,906,584 samples, 0.09%)</title><rect x="623.4" y="437" width="1.1" height="15.0" fill="rgb(207,21,37)" rx="2" ry="2" />
+<text  x="626.42" y="447.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (173,581,518 samples, 0.05%)</title><rect x="748.9" y="789" width="0.6" height="15.0" fill="rgb(215,181,5)" rx="2" ry="2" />
+<text  x="751.92" y="799.5" ></text>
+</g>
+<g >
+<title>xfs_end_ioend (433,494,865 samples, 0.12%)</title><rect x="390.5" y="885" width="1.4" height="15.0" fill="rgb(249,89,16)" rx="2" ry="2" />
+<text  x="393.51" y="895.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (71,669,328 samples, 0.02%)</title><rect x="1163.7" y="485" width="0.2" height="15.0" fill="rgb(219,127,1)" rx="2" ry="2" />
+<text  x="1166.69" y="495.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_irq_work (50,655,102 samples, 0.01%)</title><rect x="232.9" y="805" width="0.2" height="15.0" fill="rgb(208,184,30)" rx="2" ry="2" />
+<text  x="235.92" y="815.5" ></text>
+</g>
+<g >
+<title>percpu_counter_add_batch (44,463,026 samples, 0.01%)</title><rect x="388.9" y="805" width="0.1" height="15.0" fill="rgb(238,216,20)" rx="2" ry="2" />
+<text  x="391.88" y="815.5" ></text>
+</g>
+<g >
+<title>iomap_writepages (730,086,908 samples, 0.20%)</title><rect x="437.7" y="789" width="2.4" height="15.0" fill="rgb(210,97,30)" rx="2" ry="2" />
+<text  x="440.74" y="799.5" ></text>
+</g>
+<g >
+<title>__sys_recvmsg (44,554,020 samples, 0.01%)</title><rect x="1165.7" y="581" width="0.2" height="15.0" fill="rgb(244,104,43)" rx="2" ry="2" />
+<text  x="1168.73" y="591.5" ></text>
+</g>
+<g >
+<title>__mod_lruvec_page_state (57,345,962 samples, 0.02%)</title><rect x="596.4" y="709" width="0.2" height="15.0" fill="rgb(236,161,39)" rx="2" ry="2" />
+<text  x="599.38" y="719.5" ></text>
+</g>
+<g >
+<title>do_futex (60,319,596 samples, 0.02%)</title><rect x="104.3" y="869" width="0.2" height="15.0" fill="rgb(218,26,46)" rx="2" ry="2" />
+<text  x="107.30" y="879.5" ></text>
+</g>
+<g >
+<title>dequeue_entity (50,582,549 samples, 0.01%)</title><rect x="727.7" y="805" width="0.1" height="15.0" fill="rgb(232,102,4)" rx="2" ry="2" />
+<text  x="730.68" y="815.5" ></text>
+</g>
+<g >
+<title>xfs_alloc_ag_vextent (74,161,608 samples, 0.02%)</title><rect x="753.4" y="629" width="0.2" height="15.0" fill="rgb(212,154,6)" rx="2" ry="2" />
+<text  x="756.41" y="639.5" ></text>
+</g>
+<g >
+<title>preempt_count_add (61,802,865 samples, 0.02%)</title><rect x="515.5" y="805" width="0.2" height="15.0" fill="rgb(234,5,8)" rx="2" ry="2" />
+<text  x="518.50" y="815.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (255,858,525 samples, 0.07%)</title><rect x="144.0" y="789" width="0.9" height="15.0" fill="rgb(234,19,13)" rx="2" ry="2" />
+<text  x="147.05" y="799.5" ></text>
+</g>
+<g >
+<title>xfs_end_io (229,790,435 samples, 0.06%)</title><rect x="392.0" y="901" width="0.7" height="15.0" fill="rgb(252,3,7)" rx="2" ry="2" />
+<text  x="394.96" y="911.5" ></text>
+</g>
+<g >
+<title>check_move_unevictable_folios (340,578,974 samples, 0.09%)</title><rect x="374.9" y="757" width="1.1" height="15.0" fill="rgb(244,165,22)" rx="2" ry="2" />
+<text  x="377.90" y="767.5" ></text>
+</g>
+<g >
+<title>newidle_balance (50,931,091 samples, 0.01%)</title><rect x="158.8" y="741" width="0.1" height="15.0" fill="rgb(237,77,36)" rx="2" ry="2" />
+<text  x="161.78" y="751.5" ></text>
+</g>
+<g >
+<title>crypt_page_alloc (93,670,817 samples, 0.03%)</title><rect x="533.1" y="869" width="0.3" height="15.0" fill="rgb(245,103,28)" rx="2" ry="2" />
+<text  x="536.10" y="879.5" ></text>
+</g>
+<g >
+<title>folio_clear_dirty_for_io (101,047,841 samples, 0.03%)</title><rect x="523.4" y="757" width="0.3" height="15.0" fill="rgb(233,127,35)" rx="2" ry="2" />
+<text  x="526.41" y="767.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (951,362,648 samples, 0.26%)</title><rect x="482.8" y="837" width="3.1" height="15.0" fill="rgb(213,208,19)" rx="2" ry="2" />
+<text  x="485.83" y="847.5" ></text>
+</g>
+<g >
+<title>ip_protocol_deliver_rcu (258,820,965 samples, 0.07%)</title><rect x="320.0" y="645" width="0.9" height="15.0" fill="rgb(248,65,15)" rx="2" ry="2" />
+<text  x="323.02" y="655.5" ></text>
+</g>
+<g >
+<title>malloc (46,795,332 samples, 0.01%)</title><rect x="114.5" y="917" width="0.2" height="15.0" fill="rgb(248,55,46)" rx="2" ry="2" />
+<text  x="117.53" y="927.5" ></text>
+</g>
+<g >
+<title>[unknown] (281,776,640 samples, 0.08%)</title><rect x="114.9" y="949" width="1.0" height="15.0" fill="rgb(226,211,29)" rx="2" ry="2" />
+<text  x="117.94" y="959.5" ></text>
+</g>
+<g >
+<title>[libgdk-3.so.0.2404.30] (835,133,462 samples, 0.23%)</title><rect x="1171.5" y="757" width="2.7" height="15.0" fill="rgb(225,119,22)" rx="2" ry="2" />
+<text  x="1174.49" y="767.5" ></text>
+</g>
+<g >
+<title>tcp_poll (54,011,342 samples, 0.01%)</title><rect x="823.6" y="789" width="0.2" height="15.0" fill="rgb(219,116,2)" rx="2" ry="2" />
+<text  x="826.61" y="799.5" ></text>
+</g>
+<g >
+<title>memset_erms (131,844,981 samples, 0.04%)</title><rect x="522.0" y="853" width="0.5" height="15.0" fill="rgb(238,39,39)" rx="2" ry="2" />
+<text  x="525.04" y="863.5" ></text>
+</g>
+<g >
+<title>get_page_from_freelist (154,686,807 samples, 0.04%)</title><rect x="522.6" y="837" width="0.5" height="15.0" fill="rgb(222,155,7)" rx="2" ry="2" />
+<text  x="525.62" y="847.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (384,775,337 samples, 0.10%)</title><rect x="19.1" y="789" width="1.3" height="15.0" fill="rgb(219,73,42)" rx="2" ry="2" />
+<text  x="22.14" y="799.5" ></text>
+</g>
+<g >
+<title>eglMakeCurrent (32,786,668 samples, 0.01%)</title><rect x="146.9" y="949" width="0.1" height="15.0" fill="rgb(227,147,37)" rx="2" ry="2" />
+<text  x="149.90" y="959.5" ></text>
+</g>
+<g >
+<title>__schedule (50,075,414 samples, 0.01%)</title><rect x="169.8" y="869" width="0.2" height="15.0" fill="rgb(223,203,34)" rx="2" ry="2" />
+<text  x="172.81" y="879.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (78,077,299 samples, 0.02%)</title><rect x="1174.2" y="677" width="0.3" height="15.0" fill="rgb(240,156,17)" rx="2" ry="2" />
+<text  x="1177.20" y="687.5" ></text>
+</g>
+<g >
+<title>hrtimer_init_sleeper (33,179,350 samples, 0.01%)</title><rect x="651.1" y="629" width="0.1" height="15.0" fill="rgb(251,172,30)" rx="2" ry="2" />
+<text  x="654.07" y="639.5" ></text>
+</g>
+<g >
+<title>__x64_sys_poll (117,129,014 samples, 0.03%)</title><rect x="276.4" y="853" width="0.3" height="15.0" fill="rgb(210,5,34)" rx="2" ry="2" />
+<text  x="279.36" y="863.5" ></text>
+</g>
+<g >
+<title>kcompactd0 (1,794,358,851 samples, 0.49%)</title><rect x="341.1" y="981" width="5.8" height="15.0" fill="rgb(236,183,27)" rx="2" ry="2" />
+<text  x="344.13" y="991.5" ></text>
+</g>
+<g >
+<title>__libc_start_main_alias_2 (92,132,750 samples, 0.03%)</title><rect x="1167.1" y="949" width="0.3" height="15.0" fill="rgb(228,75,12)" rx="2" ry="2" />
+<text  x="1170.10" y="959.5" ></text>
+</g>
+<g >
+<title>[git-remote-http] (97,709,645 samples, 0.03%)</title><rect x="284.8" y="885" width="0.3" height="15.0" fill="rgb(238,192,30)" rx="2" ry="2" />
+<text  x="287.75" y="895.5" ></text>
+</g>
+<g >
+<title>[libspa-alsa.so] (62,989,437 samples, 0.02%)</title><rect x="732.7" y="885" width="0.2" height="15.0" fill="rgb(234,109,9)" rx="2" ry="2" />
+<text  x="735.71" y="895.5" ></text>
+</g>
+<g >
+<title>[libglconv_vaapi_x11_plugin.so] (141,714,913 samples, 0.04%)</title><rect x="1166.1" y="869" width="0.4" height="15.0" fill="rgb(230,102,31)" rx="2" ry="2" />
+<text  x="1169.06" y="879.5" ></text>
+</g>
+<g >
+<title>[firefox] (45,952,078 samples, 0.01%)</title><rect x="179.0" y="917" width="0.1" height="15.0" fill="rgb(207,86,21)" rx="2" ry="2" />
+<text  x="182.00" y="927.5" ></text>
+</g>
+<g >
+<title>[libpipewire-0.3.so.0.358.0] (139,298,084 samples, 0.04%)</title><rect x="732.6" y="933" width="0.5" height="15.0" fill="rgb(218,198,36)" rx="2" ry="2" />
+<text  x="735.65" y="943.5" ></text>
+</g>
+<g >
+<title>xfs_end_io (53,635,976 samples, 0.01%)</title><rect x="387.1" y="901" width="0.2" height="15.0" fill="rgb(253,21,18)" rx="2" ry="2" />
+<text  x="390.11" y="911.5" ></text>
+</g>
+<g >
+<title>napi_schedule_prep (182,368,048 samples, 0.05%)</title><rect x="334.4" y="885" width="0.6" height="15.0" fill="rgb(246,161,5)" rx="2" ry="2" />
+<text  x="337.39" y="895.5" ></text>
+</g>
+<g >
+<title>irq_thread (12,396,469,477 samples, 3.38%)</title><rect x="299.4" y="933" width="39.9" height="15.0" fill="rgb(247,72,26)" rx="2" ry="2" />
+<text  x="302.43" y="943.5" >irq..</text>
+</g>
+<g >
+<title>napi_skb_cache_put (60,292,473 samples, 0.02%)</title><rect x="309.4" y="741" width="0.1" height="15.0" fill="rgb(234,160,40)" rx="2" ry="2" />
+<text  x="312.35" y="751.5" ></text>
+</g>
+<g >
+<title>__update_load_avg_cfs_rq (62,628,489 samples, 0.02%)</title><rect x="903.4" y="773" width="0.2" height="15.0" fill="rgb(235,124,33)" rx="2" ry="2" />
+<text  x="906.37" y="783.5" ></text>
+</g>
+<g >
+<title>kworker/u16:3-k (7,486,880,563 samples, 2.04%)</title><rect x="479.0" y="981" width="24.1" height="15.0" fill="rgb(239,164,13)" rx="2" ry="2" />
+<text  x="482.00" y="991.5" >k..</text>
+</g>
+<g >
+<title>newidle_balance (129,568,390 samples, 0.04%)</title><rect x="822.2" y="741" width="0.4" height="15.0" fill="rgb(249,120,39)" rx="2" ry="2" />
+<text  x="825.18" y="751.5" ></text>
+</g>
+<g >
+<title>___sys_recvmsg (56,736,429 samples, 0.02%)</title><rect x="1170.4" y="917" width="0.2" height="15.0" fill="rgb(220,207,10)" rx="2" ry="2" />
+<text  x="1173.44" y="927.5" ></text>
+</g>
+<g >
+<title>do_try_to_free_pages (105,037,642 samples, 0.03%)</title><rect x="705.3" y="677" width="0.3" height="15.0" fill="rgb(217,15,21)" rx="2" ry="2" />
+<text  x="708.30" y="687.5" ></text>
+</g>
+<g >
+<title>drm_crtc_queue_sequence_ioctl (32,020,401 samples, 0.01%)</title><rect x="231.9" y="885" width="0.1" height="15.0" fill="rgb(248,54,32)" rx="2" ry="2" />
+<text  x="234.92" y="895.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (315,272,904 samples, 0.09%)</title><rect x="22.3" y="821" width="1.0" height="15.0" fill="rgb(230,77,1)" rx="2" ry="2" />
+<text  x="25.27" y="831.5" ></text>
+</g>
+<g >
+<title>worker_thread (6,810,445,764 samples, 1.86%)</title><rect x="398.3" y="933" width="21.9" height="15.0" fill="rgb(249,131,37)" rx="2" ry="2" />
+<text  x="401.25" y="943.5" >w..</text>
+</g>
+<g >
+<title>proactive_compact_node (1,713,114,423 samples, 0.47%)</title><rect x="341.4" y="917" width="5.5" height="15.0" fill="rgb(211,42,37)" rx="2" ry="2" />
+<text  x="344.38" y="927.5" ></text>
+</g>
+<g >
+<title>__GI_inet_ntop (71,720,252 samples, 0.02%)</title><rect x="626.1" y="693" width="0.3" height="15.0" fill="rgb(220,63,46)" rx="2" ry="2" />
+<text  x="629.13" y="703.5" ></text>
+</g>
+<g >
+<title>update_blocked_averages (65,997,677 samples, 0.02%)</title><rect x="89.8" y="789" width="0.2" height="15.0" fill="rgb(230,174,36)" rx="2" ry="2" />
+<text  x="92.79" y="799.5" ></text>
+</g>
+<g >
+<title>_dl_update_slotinfo (38,358,803 samples, 0.01%)</title><rect x="94.5" y="917" width="0.1" height="15.0" fill="rgb(237,53,15)" rx="2" ry="2" />
+<text  x="97.48" y="927.5" ></text>
+</g>
+<g >
+<title>execute_command_internal (46,988,181 samples, 0.01%)</title><rect x="243.4" y="597" width="0.2" height="15.0" fill="rgb(253,127,24)" rx="2" ry="2" />
+<text  x="246.42" y="607.5" ></text>
+</g>
+<g >
+<title>[firefox] (31,777,198 samples, 0.01%)</title><rect x="141.8" y="885" width="0.1" height="15.0" fill="rgb(239,165,16)" rx="2" ry="2" />
+<text  x="144.77" y="895.5" ></text>
+</g>
+<g >
+<title>enqueue_entity (727,728,705 samples, 0.20%)</title><rect x="1128.5" y="821" width="2.3" height="15.0" fill="rgb(227,111,28)" rx="2" ry="2" />
+<text  x="1131.46" y="831.5" ></text>
+</g>
+<g >
+<title>__mod_lruvec_page_state (34,451,330 samples, 0.01%)</title><rect x="387.8" y="789" width="0.1" height="15.0" fill="rgb(232,21,23)" rx="2" ry="2" />
+<text  x="390.82" y="799.5" ></text>
+</g>
+<g >
+<title>__libc_recv (3,969,356,872 samples, 1.08%)</title><rect x="627.9" y="693" width="12.8" height="15.0" fill="rgb(233,132,51)" rx="2" ry="2" />
+<text  x="630.88" y="703.5" ></text>
+</g>
+<g >
+<title>__gt_unpark (37,537,758 samples, 0.01%)</title><rect x="137.4" y="757" width="0.1" height="15.0" fill="rgb(226,129,50)" rx="2" ry="2" />
+<text  x="140.37" y="767.5" ></text>
+</g>
+<g >
+<title>[Xorg] (2,747,627,722 samples, 0.75%)</title><rect x="205.4" y="933" width="8.9" height="15.0" fill="rgb(217,191,38)" rx="2" ry="2" />
+<text  x="208.42" y="943.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (43,287,985 samples, 0.01%)</title><rect x="1179.6" y="517" width="0.1" height="15.0" fill="rgb(244,168,29)" rx="2" ry="2" />
+<text  x="1182.60" y="527.5" ></text>
+</g>
+<g >
+<title>__schedule (2,407,037,075 samples, 0.66%)</title><rect x="1145.9" y="885" width="7.7" height="15.0" fill="rgb(211,9,31)" rx="2" ry="2" />
+<text  x="1148.89" y="895.5" ></text>
+</g>
+<g >
+<title>gtk_main (1,701,582,755 samples, 0.46%)</title><rect x="1176.8" y="949" width="5.4" height="15.0" fill="rgb(209,204,44)" rx="2" ry="2" />
+<text  x="1179.75" y="959.5" ></text>
+</g>
+<g >
+<title>kcryptd_crypt (4,767,083,690 samples, 1.30%)</title><rect x="597.2" y="901" width="15.3" height="15.0" fill="rgb(222,199,27)" rx="2" ry="2" />
+<text  x="600.20" y="911.5" ></text>
+</g>
+<g >
+<title>inet6_csk_xmit (112,596,243 samples, 0.03%)</title><rect x="665.7" y="693" width="0.4" height="15.0" fill="rgb(246,210,48)" rx="2" ry="2" />
+<text  x="668.71" y="703.5" ></text>
+</g>
+<g >
+<title>[libxul.so] (190,063,515 samples, 0.05%)</title><rect x="190.6" y="949" width="0.6" height="15.0" fill="rgb(223,121,45)" rx="2" ry="2" />
+<text  x="193.57" y="959.5" ></text>
+</g>
+<g >
+<title>__mod_lruvec_page_state (447,633,465 samples, 0.12%)</title><rect x="359.3" y="805" width="1.4" height="15.0" fill="rgb(209,222,25)" rx="2" ry="2" />
+<text  x="362.30" y="815.5" ></text>
+</g>
+<g >
+<title>handle_fasteoi_irq (135,480,410 samples, 0.04%)</title><rect x="895.8" y="821" width="0.4" height="15.0" fill="rgb(207,225,16)" rx="2" ry="2" />
+<text  x="898.80" y="831.5" ></text>
+</g>
+<g >
+<title>[libvte-2.91.so.0.6992.0] (205,798,308 samples, 0.06%)</title><rect x="1180.4" y="789" width="0.6" height="15.0" fill="rgb(207,41,34)" rx="2" ry="2" />
+<text  x="1183.36" y="799.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (77,101,551 samples, 0.02%)</title><rect x="825.1" y="869" width="0.3" height="15.0" fill="rgb(232,125,42)" rx="2" ry="2" />
+<text  x="828.13" y="879.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (198,907,582 samples, 0.05%)</title><rect x="558.8" y="837" width="0.6" height="15.0" fill="rgb(216,36,14)" rx="2" ry="2" />
+<text  x="561.77" y="847.5" ></text>
+</g>
+<g >
+<title>update_curr (31,404,741 samples, 0.01%)</title><rect x="13.3" y="741" width="0.1" height="15.0" fill="rgb(214,183,27)" rx="2" ry="2" />
+<text  x="16.28" y="751.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (192,520,832 samples, 0.05%)</title><rect x="747.9" y="773" width="0.7" height="15.0" fill="rgb(224,217,49)" rx="2" ry="2" />
+<text  x="750.93" y="783.5" ></text>
+</g>
+<g >
+<title>syscall_return_via_sysret (31,516,661 samples, 0.01%)</title><rect x="36.2" y="901" width="0.1" height="15.0" fill="rgb(230,59,54)" rx="2" ry="2" />
+<text  x="39.20" y="911.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (239,460,524 samples, 0.07%)</title><rect x="1163.4" y="693" width="0.8" height="15.0" fill="rgb(205,161,22)" rx="2" ry="2" />
+<text  x="1166.38" y="703.5" ></text>
+</g>
+<g >
+<title>process_one_work (6,184,023,464 samples, 1.69%)</title><rect x="420.2" y="917" width="19.9" height="15.0" fill="rgb(212,94,26)" rx="2" ry="2" />
+<text  x="423.18" y="927.5" ></text>
+</g>
+<g >
+<title>syscall (189,941,647 samples, 0.05%)</title><rect x="174.5" y="949" width="0.6" height="15.0" fill="rgb(205,228,32)" rx="2" ry="2" />
+<text  x="177.46" y="959.5" ></text>
+</g>
+<g >
+<title>sock_recvmsg (90,310,448 samples, 0.02%)</title><rect x="39.1" y="837" width="0.3" height="15.0" fill="rgb(252,53,41)" rx="2" ry="2" />
+<text  x="42.10" y="847.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (334,739,167 samples, 0.09%)</title><rect x="896.2" y="837" width="1.1" height="15.0" fill="rgb(236,21,7)" rx="2" ry="2" />
+<text  x="899.24" y="847.5" ></text>
+</g>
+<g >
+<title>do_sys_poll (136,407,108 samples, 0.04%)</title><rect x="1188.8" y="917" width="0.4" height="15.0" fill="rgb(246,122,24)" rx="2" ry="2" />
+<text  x="1191.76" y="927.5" ></text>
+</g>
+<g >
+<title>drm_syncobj_wait_ioctl (212,334,737 samples, 0.06%)</title><rect x="133.0" y="709" width="0.7" height="15.0" fill="rgb(248,30,45)" rx="2" ry="2" />
+<text  x="135.98" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (49,980,809 samples, 0.01%)</title><rect x="1165.7" y="613" width="0.2" height="15.0" fill="rgb(218,34,40)" rx="2" ry="2" />
+<text  x="1168.73" y="623.5" ></text>
+</g>
+<g >
+<title>[libxcb.so.1.1.0] (262,173,001 samples, 0.07%)</title><rect x="279.9" y="789" width="0.9" height="15.0" fill="rgb(210,155,24)" rx="2" ry="2" />
+<text  x="282.92" y="799.5" ></text>
+</g>
+<g >
+<title>cgroup_rstat_flush_locked (141,185,671 samples, 0.04%)</title><rect x="751.2" y="677" width="0.5" height="15.0" fill="rgb(237,169,12)" rx="2" ry="2" />
+<text  x="754.21" y="687.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc_node (82,884,378 samples, 0.02%)</title><rect x="317.3" y="741" width="0.3" height="15.0" fill="rgb(232,131,49)" rx="2" ry="2" />
+<text  x="320.34" y="751.5" ></text>
+</g>
+<g >
+<title>eventfd_poll (79,370,730 samples, 0.02%)</title><rect x="820.7" y="805" width="0.2" height="15.0" fill="rgb(241,27,12)" rx="2" ry="2" />
+<text  x="823.67" y="815.5" ></text>
+</g>
+<g >
+<title>[firefox] (49,300,901 samples, 0.01%)</title><rect x="150.0" y="885" width="0.1" height="15.0" fill="rgb(230,171,4)" rx="2" ry="2" />
+<text  x="152.98" y="895.5" ></text>
+</g>
+<g >
+<title>process_one_work (233,573,784 samples, 0.06%)</title><rect x="392.0" y="917" width="0.7" height="15.0" fill="rgb(215,39,25)" rx="2" ry="2" />
+<text  x="394.95" y="927.5" ></text>
+</g>
+<g >
+<title>_copy_to_iter (140,242,368 samples, 0.04%)</title><rect x="638.8" y="533" width="0.4" height="15.0" fill="rgb(224,184,11)" rx="2" ry="2" />
+<text  x="641.79" y="543.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (38,232,399 samples, 0.01%)</title><rect x="813.3" y="837" width="0.1" height="15.0" fill="rgb(252,50,25)" rx="2" ry="2" />
+<text  x="816.31" y="847.5" ></text>
+</g>
+<g >
+<title>[firefox] (222,125,668 samples, 0.06%)</title><rect x="268.1" y="933" width="0.8" height="15.0" fill="rgb(250,113,42)" rx="2" ry="2" />
+<text  x="271.14" y="943.5" ></text>
+</g>
+<g >
+<title>file_has_perm (39,162,457 samples, 0.01%)</title><rect x="240.2" y="869" width="0.1" height="15.0" fill="rgb(215,94,27)" rx="2" ry="2" />
+<text  x="243.20" y="879.5" ></text>
+</g>
+<g >
+<title>kthread_should_stop (32,199,916 samples, 0.01%)</title><rect x="335.1" y="917" width="0.1" height="15.0" fill="rgb(248,27,28)" rx="2" ry="2" />
+<text  x="338.14" y="927.5" ></text>
+</g>
+<g >
+<title>__intel_context_do_pin_ww (133,347,971 samples, 0.04%)</title><rect x="138.7" y="757" width="0.5" height="15.0" fill="rgb(236,113,47)" rx="2" ry="2" />
+<text  x="141.72" y="767.5" ></text>
+</g>
+<g >
+<title>PK11_CreateDigestContext (48,988,813 samples, 0.01%)</title><rect x="159.9" y="933" width="0.1" height="15.0" fill="rgb(225,73,14)" rx="2" ry="2" />
+<text  x="162.86" y="943.5" ></text>
+</g>
+<g >
+<title>__vdso_clock_gettime (32,588,942 samples, 0.01%)</title><rect x="1182.3" y="965" width="0.1" height="15.0" fill="rgb(218,120,21)" rx="2" ry="2" />
+<text  x="1185.26" y="975.5" ></text>
+</g>
+<g >
+<title>skb_checksum_help (40,240,732 samples, 0.01%)</title><rect x="635.1" y="485" width="0.2" height="15.0" fill="rgb(205,96,44)" rx="2" ry="2" />
+<text  x="638.14" y="495.5" ></text>
+</g>
+<g >
+<title>__fprop_add_percpu (93,092,577 samples, 0.03%)</title><rect x="383.5" y="805" width="0.3" height="15.0" fill="rgb(242,171,5)" rx="2" ry="2" />
+<text  x="386.51" y="815.5" ></text>
+</g>
+<g >
+<title>ksys_write (16,161,163,124 samples, 4.41%)</title><rect x="671.2" y="837" width="52.0" height="15.0" fill="rgb(242,1,50)" rx="2" ry="2" />
+<text  x="674.18" y="847.5" >ksys_..</text>
+</g>
+<g >
+<title>vfs_write (248,319,815 samples, 0.07%)</title><rect x="724.8" y="837" width="0.8" height="15.0" fill="rgb(234,120,7)" rx="2" ry="2" />
+<text  x="727.78" y="847.5" ></text>
+</g>
+<g >
+<title>__x64_sys_futex (152,836,726 samples, 0.04%)</title><rect x="149.1" y="869" width="0.5" height="15.0" fill="rgb(212,7,28)" rx="2" ry="2" />
+<text  x="152.11" y="879.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (6,810,445,764 samples, 1.86%)</title><rect x="398.3" y="965" width="21.9" height="15.0" fill="rgb(243,163,39)" rx="2" ry="2" />
+<text  x="401.25" y="975.5" >r..</text>
+</g>
+<g >
+<title>switch_mm (399,195,139 samples, 0.11%)</title><rect x="1124.0" y="869" width="1.3" height="15.0" fill="rgb(220,147,38)" rx="2" ry="2" />
+<text  x="1126.98" y="879.5" ></text>
+</g>
+<g >
+<title>folio_end_writeback (386,371,077 samples, 0.11%)</title><rect x="390.6" y="837" width="1.3" height="15.0" fill="rgb(218,107,13)" rx="2" ry="2" />
+<text  x="393.63" y="847.5" ></text>
+</g>
+<g >
+<title>eb_validate_vmas (646,347,553 samples, 0.18%)</title><rect x="234.0" y="853" width="2.1" height="15.0" fill="rgb(252,122,52)" rx="2" ry="2" />
+<text  x="237.02" y="863.5" ></text>
+</g>
+<g >
+<title>sock_sendmsg (33,023,646 samples, 0.01%)</title><rect x="1165.3" y="613" width="0.1" height="15.0" fill="rgb(243,228,8)" rx="2" ry="2" />
+<text  x="1168.33" y="623.5" ></text>
+</g>
+<g >
+<title>[libspa-alsa.so] (59,135,334 samples, 0.02%)</title><rect x="732.7" y="869" width="0.2" height="15.0" fill="rgb(208,99,8)" rx="2" ry="2" />
+<text  x="735.72" y="879.5" ></text>
+</g>
+<g >
+<title>__intel_wakeref_get_first (39,242,091 samples, 0.01%)</title><rect x="138.9" y="725" width="0.1" height="15.0" fill="rgb(232,19,14)" rx="2" ry="2" />
+<text  x="141.88" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (132,713,451 samples, 0.04%)</title><rect x="44.5" y="901" width="0.5" height="15.0" fill="rgb(227,195,22)" rx="2" ry="2" />
+<text  x="47.53" y="911.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (107,799,522 samples, 0.03%)</title><rect x="1172.2" y="213" width="0.4" height="15.0" fill="rgb(223,103,12)" rx="2" ry="2" />
+<text  x="1175.24" y="223.5" ></text>
+</g>
+<g >
+<title>__schedule (133,582,542 samples, 0.04%)</title><rect x="733.8" y="869" width="0.4" height="15.0" fill="rgb(218,55,36)" rx="2" ry="2" />
+<text  x="736.82" y="879.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (245,995,391 samples, 0.07%)</title><rect x="222.3" y="789" width="0.8" height="15.0" fill="rgb(223,64,52)" rx="2" ry="2" />
+<text  x="225.29" y="799.5" ></text>
+</g>
+<g >
+<title>g_thread_self (35,213,349 samples, 0.01%)</title><rect x="102.7" y="933" width="0.1" height="15.0" fill="rgb(242,169,19)" rx="2" ry="2" />
+<text  x="105.72" y="943.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (46,052,547 samples, 0.01%)</title><rect x="1173.8" y="453" width="0.2" height="15.0" fill="rgb(232,169,32)" rx="2" ry="2" />
+<text  x="1176.81" y="463.5" ></text>
+</g>
+<g >
+<title>[libpipewire-module-protocol-pulse.so] (32,300,466 samples, 0.01%)</title><rect x="729.2" y="869" width="0.1" height="15.0" fill="rgb(214,210,54)" rx="2" ry="2" />
+<text  x="732.23" y="879.5" ></text>
+</g>
+<g >
+<title>bash (220,913,829 samples, 0.06%)</title><rect x="243.3" y="981" width="0.7" height="15.0" fill="rgb(231,163,20)" rx="2" ry="2" />
+<text  x="246.33" y="991.5" ></text>
+</g>
+<g >
+<title>kworker/2:2 (270,936,188 samples, 0.07%)</title><rect x="388.2" y="981" width="0.9" height="15.0" fill="rgb(245,32,21)" rx="2" ry="2" />
+<text  x="391.18" y="991.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (43,070,438 samples, 0.01%)</title><rect x="626.6" y="661" width="0.2" height="15.0" fill="rgb(253,128,38)" rx="2" ry="2" />
+<text  x="629.62" y="671.5" ></text>
+</g>
+<g >
+<title>psi_group_change (34,076,429 samples, 0.01%)</title><rect x="230.9" y="837" width="0.1" height="15.0" fill="rgb(248,168,46)" rx="2" ry="2" />
+<text  x="233.90" y="847.5" ></text>
+</g>
+<g >
+<title>__fget_light (47,943,629 samples, 0.01%)</title><rect x="671.2" y="805" width="0.2" height="15.0" fill="rgb(233,101,11)" rx="2" ry="2" />
+<text  x="674.24" y="815.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (54,017,855 samples, 0.01%)</title><rect x="216.5" y="677" width="0.1" height="15.0" fill="rgb(231,110,0)" rx="2" ry="2" />
+<text  x="219.45" y="687.5" ></text>
+</g>
+<g >
+<title>psi_task_switch (181,685,911 samples, 0.05%)</title><rect x="654.1" y="597" width="0.6" height="15.0" fill="rgb(241,145,43)" rx="2" ry="2" />
+<text  x="657.08" y="607.5" ></text>
+</g>
+<g >
+<title>event_notifier_test_and_clear (212,269,945 samples, 0.06%)</title><rect x="826.5" y="821" width="0.6" height="15.0" fill="rgb(221,192,19)" rx="2" ry="2" />
+<text  x="829.46" y="831.5" ></text>
+</g>
+<g >
+<title>timerqueue_add (95,461,321 samples, 0.03%)</title><rect x="651.3" y="597" width="0.3" height="15.0" fill="rgb(209,183,34)" rx="2" ry="2" />
+<text  x="654.26" y="607.5" ></text>
+</g>
+<g >
+<title>__memcmp_avx2_movbe (33,068,025 samples, 0.01%)</title><rect x="290.8" y="949" width="0.1" height="15.0" fill="rgb(241,165,44)" rx="2" ry="2" />
+<text  x="293.82" y="959.5" ></text>
+</g>
+<g >
+<title>crypt_page_alloc (172,615,794 samples, 0.05%)</title><rect x="612.0" y="869" width="0.5" height="15.0" fill="rgb(209,219,30)" rx="2" ry="2" />
+<text  x="614.99" y="879.5" ></text>
+</g>
+<g >
+<title>schedule (42,302,216 samples, 0.01%)</title><rect x="829.8" y="885" width="0.1" height="15.0" fill="rgb(214,10,1)" rx="2" ry="2" />
+<text  x="832.80" y="895.5" ></text>
+</g>
+<g >
+<title>schedule (32,850,575 samples, 0.01%)</title><rect x="168.8" y="869" width="0.1" height="15.0" fill="rgb(207,157,12)" rx="2" ry="2" />
+<text  x="171.79" y="879.5" ></text>
+</g>
+<g >
+<title>do_futex (54,572,505 samples, 0.01%)</title><rect x="145.8" y="869" width="0.2" height="15.0" fill="rgb(218,194,19)" rx="2" ry="2" />
+<text  x="148.82" y="879.5" ></text>
+</g>
+<g >
+<title>cpuidle_not_available (130,596,757 samples, 0.04%)</title><rect x="1125.4" y="901" width="0.4" height="15.0" fill="rgb(235,60,3)" rx="2" ry="2" />
+<text  x="1128.43" y="911.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (164,247,286 samples, 0.04%)</title><rect x="143.5" y="805" width="0.5" height="15.0" fill="rgb(235,144,42)" rx="2" ry="2" />
+<text  x="146.51" y="815.5" ></text>
+</g>
+<g >
+<title>[xfdesktop] (39,096,757 samples, 0.01%)</title><rect x="1185.5" y="853" width="0.2" height="15.0" fill="rgb(250,97,24)" rx="2" ry="2" />
+<text  x="1188.55" y="863.5" ></text>
+</g>
+<g >
+<title>folio_clear_dirty_for_io (110,446,345 samples, 0.03%)</title><rect x="418.8" y="757" width="0.3" height="15.0" fill="rgb(247,64,50)" rx="2" ry="2" />
+<text  x="421.76" y="767.5" ></text>
+</g>
+<g >
+<title>__x64_sys_sendto (2,235,718,649 samples, 0.61%)</title><rect x="658.9" y="805" width="7.2" height="15.0" fill="rgb(229,222,27)" rx="2" ry="2" />
+<text  x="661.94" y="815.5" ></text>
+</g>
+<g >
+<title>__mod_memcg_lruvec_state (51,140,006 samples, 0.01%)</title><rect x="459.7" y="693" width="0.1" height="15.0" fill="rgb(229,172,28)" rx="2" ry="2" />
+<text  x="462.66" y="703.5" ></text>
+</g>
+<g >
+<title>memset_erms (56,594,752 samples, 0.02%)</title><rect x="532.9" y="853" width="0.2" height="15.0" fill="rgb(229,184,15)" rx="2" ry="2" />
+<text  x="535.89" y="863.5" ></text>
+</g>
+<g >
+<title>__sys_recvfrom (3,757,989,561 samples, 1.03%)</title><rect x="628.2" y="629" width="12.1" height="15.0" fill="rgb(209,155,14)" rx="2" ry="2" />
+<text  x="631.16" y="639.5" ></text>
+</g>
+<g >
+<title>xts_crypt (1,781,989,419 samples, 0.49%)</title><rect x="561.4" y="837" width="5.7" height="15.0" fill="rgb(212,214,44)" rx="2" ry="2" />
+<text  x="564.39" y="847.5" ></text>
+</g>
+<g >
+<title>tick_nohz_tick_stopped (40,745,612 samples, 0.01%)</title><rect x="1161.5" y="901" width="0.1" height="15.0" fill="rgb(214,219,11)" rx="2" ry="2" />
+<text  x="1164.50" y="911.5" ></text>
+</g>
+<g >
+<title>shmem_getpage_gfp (297,207,988 samples, 0.08%)</title><rect x="234.6" y="757" width="1.0" height="15.0" fill="rgb(232,208,53)" rx="2" ry="2" />
+<text  x="237.62" y="767.5" ></text>
+</g>
+<g >
+<title>percpu_counter_add_batch (37,147,165 samples, 0.01%)</title><rect x="392.6" y="805" width="0.1" height="15.0" fill="rgb(240,136,19)" rx="2" ry="2" />
+<text  x="395.57" y="815.5" ></text>
+</g>
+<g >
+<title>memcpy_erms (64,803,493 samples, 0.02%)</title><rect x="436.3" y="869" width="0.2" height="15.0" fill="rgb(226,199,53)" rx="2" ry="2" />
+<text  x="439.31" y="879.5" ></text>
+</g>
+<g >
+<title>gtk_widget_style_get_valist (46,497,102 samples, 0.01%)</title><rect x="1179.6" y="533" width="0.1" height="15.0" fill="rgb(240,43,47)" rx="2" ry="2" />
+<text  x="1182.60" y="543.5" ></text>
+</g>
+<g >
+<title>inet6_csk_xmit (1,302,481,151 samples, 0.36%)</title><rect x="659.8" y="677" width="4.2" height="15.0" fill="rgb(224,42,21)" rx="2" ry="2" />
+<text  x="662.79" y="687.5" ></text>
+</g>
+<g >
+<title>__softirqentry_text_start (842,730,531 samples, 0.23%)</title><rect x="660.4" y="581" width="2.7" height="15.0" fill="rgb(222,174,3)" rx="2" ry="2" />
+<text  x="663.39" y="591.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (75,734,046 samples, 0.02%)</title><rect x="216.4" y="709" width="0.2" height="15.0" fill="rgb(240,210,10)" rx="2" ry="2" />
+<text  x="219.39" y="719.5" ></text>
+</g>
+<g >
+<title>g_main_context_iteration (92,012,491 samples, 0.03%)</title><rect x="192.2" y="949" width="0.3" height="15.0" fill="rgb(218,88,38)" rx="2" ry="2" />
+<text  x="195.18" y="959.5" ></text>
+</g>
+<g >
+<title>ieee80211_xmit_fast_finish (51,081,314 samples, 0.01%)</title><rect x="623.9" y="357" width="0.2" height="15.0" fill="rgb(216,131,15)" rx="2" ry="2" />
+<text  x="626.91" y="367.5" ></text>
+</g>
+<g >
+<title>xas_load (31,679,077 samples, 0.01%)</title><rect x="759.1" y="693" width="0.1" height="15.0" fill="rgb(222,98,50)" rx="2" ry="2" />
+<text  x="762.15" y="703.5" ></text>
+</g>
+<g >
+<title>shrink_slab (35,766,519 samples, 0.01%)</title><rect x="756.9" y="629" width="0.1" height="15.0" fill="rgb(221,36,12)" rx="2" ry="2" />
+<text  x="759.87" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (45,940,607 samples, 0.01%)</title><rect x="178.4" y="885" width="0.1" height="15.0" fill="rgb(230,125,39)" rx="2" ry="2" />
+<text  x="181.38" y="895.5" ></text>
+</g>
+<g >
+<title>WRRende~ckend#1 (6,158,804,320 samples, 1.68%)</title><rect x="160.3" y="981" width="19.8" height="15.0" fill="rgb(229,74,28)" rx="2" ry="2" />
+<text  x="163.29" y="991.5" ></text>
+</g>
+<g >
+<title>__GI___getpid (32,104,567 samples, 0.01%)</title><rect x="146.7" y="917" width="0.1" height="15.0" fill="rgb(243,89,31)" rx="2" ry="2" />
+<text  x="149.74" y="927.5" ></text>
+</g>
+<g >
+<title>enqueue_hrtimer (183,027,148 samples, 0.05%)</title><rect x="905.9" y="789" width="0.6" height="15.0" fill="rgb(249,69,44)" rx="2" ry="2" />
+<text  x="908.90" y="799.5" ></text>
+</g>
+<g >
+<title>[libcurl.so.4.8.0] (74,595,683 samples, 0.02%)</title><rect x="615.6" y="949" width="0.3" height="15.0" fill="rgb(242,75,16)" rx="2" ry="2" />
+<text  x="618.62" y="959.5" ></text>
+</g>
+<g >
+<title>intel_engine_irq_enable (67,616,945 samples, 0.02%)</title><rect x="1163.7" y="357" width="0.2" height="15.0" fill="rgb(251,58,10)" rx="2" ry="2" />
+<text  x="1166.70" y="367.5" ></text>
+</g>
+<g >
+<title>__rcu_read_unlock (34,425,782 samples, 0.01%)</title><rect x="674.5" y="757" width="0.1" height="15.0" fill="rgb(236,129,8)" rx="2" ry="2" />
+<text  x="677.49" y="767.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (150,547,193 samples, 0.04%)</title><rect x="215.7" y="709" width="0.5" height="15.0" fill="rgb(240,106,47)" rx="2" ry="2" />
+<text  x="218.68" y="719.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (129,188,725 samples, 0.04%)</title><rect x="226.1" y="949" width="0.4" height="15.0" fill="rgb(217,27,45)" rx="2" ry="2" />
+<text  x="229.08" y="959.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (160,147,975 samples, 0.04%)</title><rect x="747.1" y="725" width="0.5" height="15.0" fill="rgb(206,106,39)" rx="2" ry="2" />
+<text  x="750.05" y="735.5" ></text>
+</g>
+<g >
+<title>iwl_mvm_rx_ba_notif (83,068,320 samples, 0.02%)</title><rect x="310.8" y="757" width="0.3" height="15.0" fill="rgb(252,3,25)" rx="2" ry="2" />
+<text  x="313.82" y="767.5" ></text>
+</g>
+<g >
+<title>__x64_sys_ioctl (40,037,337 samples, 0.01%)</title><rect x="135.8" y="821" width="0.1" height="15.0" fill="rgb(212,185,1)" rx="2" ry="2" />
+<text  x="138.77" y="831.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (442,062,278 samples, 0.12%)</title><rect x="12.9" y="885" width="1.5" height="15.0" fill="rgb(231,7,6)" rx="2" ry="2" />
+<text  x="15.94" y="895.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (209,091,316 samples, 0.06%)</title><rect x="395.8" y="965" width="0.6" height="15.0" fill="rgb(221,78,22)" rx="2" ry="2" />
+<text  x="398.77" y="975.5" ></text>
+</g>
+<g >
+<title>ksoftirqd/6 (1,483,995,060 samples, 0.40%)</title><rect x="347.1" y="981" width="4.7" height="15.0" fill="rgb(231,79,43)" rx="2" ry="2" />
+<text  x="350.05" y="991.5" ></text>
+</g>
+<g >
+<title>curl_maprintf (47,381,533 samples, 0.01%)</title><rect x="668.2" y="741" width="0.2" height="15.0" fill="rgb(237,152,18)" rx="2" ry="2" />
+<text  x="671.21" y="751.5" ></text>
+</g>
+<g >
+<title>ksys_write (266,309,107 samples, 0.07%)</title><rect x="724.7" y="853" width="0.9" height="15.0" fill="rgb(229,46,28)" rx="2" ry="2" />
+<text  x="727.72" y="863.5" ></text>
+</g>
+<g >
+<title>vlc (1,471,311,518 samples, 0.40%)</title><rect x="1162.2" y="981" width="4.7" height="15.0" fill="rgb(209,56,31)" rx="2" ry="2" />
+<text  x="1165.21" y="991.5" ></text>
+</g>
+<g >
+<title>tick_sched_timer (1,748,021,106 samples, 0.48%)</title><rect x="906.9" y="789" width="5.6" height="15.0" fill="rgb(242,124,31)" rx="2" ry="2" />
+<text  x="909.85" y="799.5" ></text>
+</g>
+<g >
+<title>fw_domains_get_with_fallback (85,886,428 samples, 0.02%)</title><rect x="133.3" y="469" width="0.3" height="15.0" fill="rgb(215,127,7)" rx="2" ry="2" />
+<text  x="136.31" y="479.5" ></text>
+</g>
+<g >
+<title>tick_sched_timer (34,895,478 samples, 0.01%)</title><rect x="1148.1" y="773" width="0.1" height="15.0" fill="rgb(238,170,38)" rx="2" ry="2" />
+<text  x="1151.07" y="783.5" ></text>
+</g>
+<g >
+<title>__libc_recvmsg (244,293,692 samples, 0.07%)</title><rect x="280.0" y="773" width="0.7" height="15.0" fill="rgb(243,82,41)" rx="2" ry="2" />
+<text  x="282.96" y="783.5" ></text>
+</g>
+<g >
+<title>__memset_avx2_unaligned_erms (54,413,780 samples, 0.01%)</title><rect x="171.4" y="933" width="0.2" height="15.0" fill="rgb(240,198,20)" rx="2" ry="2" />
+<text  x="174.43" y="943.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (80,137,312 samples, 0.02%)</title><rect x="1166.2" y="805" width="0.3" height="15.0" fill="rgb(208,24,1)" rx="2" ry="2" />
+<text  x="1169.19" y="815.5" ></text>
+</g>
+<g >
+<title>find_busiest_group (50,741,090 samples, 0.01%)</title><rect x="653.6" y="549" width="0.2" height="15.0" fill="rgb(239,169,53)" rx="2" ry="2" />
+<text  x="656.60" y="559.5" ></text>
+</g>
+<g >
+<title>__dentry_kill (52,466,419 samples, 0.01%)</title><rect x="382.0" y="805" width="0.1" height="15.0" fill="rgb(212,112,25)" rx="2" ry="2" />
+<text  x="384.97" y="815.5" ></text>
+</g>
+<g >
+<title>i915_request_retire.part.0 (161,101,458 samples, 0.04%)</title><rect x="394.1" y="885" width="0.5" height="15.0" fill="rgb(241,100,47)" rx="2" ry="2" />
+<text  x="397.12" y="895.5" ></text>
+</g>
+<g >
+<title>[libxul.so] (352,158,201 samples, 0.10%)</title><rect x="52.2" y="949" width="1.1" height="15.0" fill="rgb(219,217,12)" rx="2" ry="2" />
+<text  x="55.20" y="959.5" ></text>
+</g>
+<g >
+<title>tcp_data_queue (95,459,179 samples, 0.03%)</title><rect x="320.5" y="581" width="0.3" height="15.0" fill="rgb(231,202,17)" rx="2" ry="2" />
+<text  x="323.53" y="591.5" ></text>
+</g>
+<g >
+<title>[libxul.so] (1,428,767,182 samples, 0.39%)</title><rect x="188.2" y="965" width="4.6" height="15.0" fill="rgb(254,213,38)" rx="2" ry="2" />
+<text  x="191.22" y="975.5" ></text>
+</g>
+<g >
+<title>_PyRun_SimpleFileObject (67,754,465 samples, 0.02%)</title><rect x="244.1" y="917" width="0.2" height="15.0" fill="rgb(212,203,24)" rx="2" ry="2" />
+<text  x="247.09" y="927.5" ></text>
+</g>
+<g >
+<title>folio_batch_move_lru (32,215,754 samples, 0.01%)</title><rect x="236.6" y="773" width="0.2" height="15.0" fill="rgb(210,108,39)" rx="2" ry="2" />
+<text  x="239.65" y="783.5" ></text>
+</g>
+<g >
+<title>crypt_iv_plain64_gen (158,968,240 samples, 0.04%)</title><rect x="535.6" y="869" width="0.5" height="15.0" fill="rgb(229,192,11)" rx="2" ry="2" />
+<text  x="538.61" y="879.5" ></text>
+</g>
+<g >
+<title>[libxul.so] (102,910,235 samples, 0.03%)</title><rect x="11.6" y="949" width="0.3" height="15.0" fill="rgb(215,121,25)" rx="2" ry="2" />
+<text  x="14.56" y="959.5" ></text>
+</g>
+<g >
+<title>[libegl_x11_plugin.so] (155,901,644 samples, 0.04%)</title><rect x="1165.5" y="869" width="0.5" height="15.0" fill="rgb(233,178,12)" rx="2" ry="2" />
+<text  x="1168.52" y="879.5" ></text>
+</g>
+<g >
+<title>cgroup_rstat_flush_locked (1,152,743,818 samples, 0.31%)</title><rect x="674.7" y="693" width="3.7" height="15.0" fill="rgb(227,33,6)" rx="2" ry="2" />
+<text  x="677.72" y="703.5" ></text>
+</g>
+<g >
+<title>[libgdk-3.so.0.2404.30] (44,955,066 samples, 0.01%)</title><rect x="282.4" y="917" width="0.2" height="15.0" fill="rgb(217,20,35)" rx="2" ry="2" />
+<text  x="285.41" y="927.5" ></text>
+</g>
+<g >
+<title>ipv6_rcv (233,690,173 samples, 0.06%)</title><rect x="662.0" y="501" width="0.8" height="15.0" fill="rgb(235,142,37)" rx="2" ry="2" />
+<text  x="665.05" y="511.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_call_function_single (55,302,645 samples, 0.02%)</title><rect x="834.9" y="837" width="0.2" height="15.0" fill="rgb(212,136,37)" rx="2" ry="2" />
+<text  x="837.89" y="847.5" ></text>
+</g>
+<g >
+<title>__x64_sys_pwrite64 (3,081,646,903 samples, 0.84%)</title><rect x="750.6" y="821" width="9.9" height="15.0" fill="rgb(244,0,23)" rx="2" ry="2" />
+<text  x="753.57" y="831.5" ></text>
+</g>
+<g >
+<title>i915_vma_unbind (69,683,636 samples, 0.02%)</title><rect x="377.8" y="805" width="0.2" height="15.0" fill="rgb(242,138,2)" rx="2" ry="2" />
+<text  x="380.80" y="815.5" ></text>
+</g>
+<g >
+<title>percpu_counter_add_batch (50,911,951 samples, 0.01%)</title><rect x="386.7" y="805" width="0.2" height="15.0" fill="rgb(209,25,8)" rx="2" ry="2" />
+<text  x="389.71" y="815.5" ></text>
+</g>
+<g >
+<title>schedule (314,942,884 samples, 0.09%)</title><rect x="13.1" y="805" width="1.0" height="15.0" fill="rgb(241,61,44)" rx="2" ry="2" />
+<text  x="16.10" y="815.5" ></text>
+</g>
+<g >
+<title>ksys_read (48,724,245 samples, 0.01%)</title><rect x="240.5" y="933" width="0.2" height="15.0" fill="rgb(236,8,14)" rx="2" ry="2" />
+<text  x="243.52" y="943.5" ></text>
+</g>
+<g >
+<title>__handle_irq_event_percpu (132,714,063 samples, 0.04%)</title><rect x="895.8" y="789" width="0.4" height="15.0" fill="rgb(207,71,3)" rx="2" ry="2" />
+<text  x="898.80" y="799.5" ></text>
+</g>
+<g >
+<title>irq_work_run (92,061,328 samples, 0.03%)</title><rect x="133.3" y="581" width="0.3" height="15.0" fill="rgb(219,76,20)" rx="2" ry="2" />
+<text  x="136.29" y="591.5" ></text>
+</g>
+<g >
+<title>irqentry_enter (55,309,492 samples, 0.02%)</title><rect x="897.9" y="837" width="0.2" height="15.0" fill="rgb(242,97,6)" rx="2" ry="2" />
+<text  x="900.93" y="847.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (54,980,988 samples, 0.01%)</title><rect x="622.6" y="661" width="0.2" height="15.0" fill="rgb(212,98,16)" rx="2" ry="2" />
+<text  x="625.65" y="671.5" ></text>
+</g>
+<g >
+<title>file_has_perm (37,258,437 samples, 0.01%)</title><rect x="92.6" y="853" width="0.1" height="15.0" fill="rgb(222,68,24)" rx="2" ry="2" />
+<text  x="95.55" y="863.5" ></text>
+</g>
+<g >
+<title>iwl_mvm_rx_common (1,655,104,202 samples, 0.45%)</title><rect x="310.5" y="773" width="5.4" height="15.0" fill="rgb(254,147,37)" rx="2" ry="2" />
+<text  x="313.55" y="783.5" ></text>
+</g>
+<g >
+<title>percpu_counter_add_batch (54,439,301 samples, 0.01%)</title><rect x="759.4" y="709" width="0.2" height="15.0" fill="rgb(237,56,38)" rx="2" ry="2" />
+<text  x="762.38" y="719.5" ></text>
+</g>
+<g >
+<title>iwl_mvm_tx_skb_sta (510,031,582 samples, 0.14%)</title><rect x="633.3" y="405" width="1.6" height="15.0" fill="rgb(247,139,19)" rx="2" ry="2" />
+<text  x="636.30" y="415.5" ></text>
+</g>
+<g >
+<title>[libEGL_mesa.so.0.0.0] (68,860,834 samples, 0.02%)</title><rect x="132.4" y="789" width="0.3" height="15.0" fill="rgb(213,216,31)" rx="2" ry="2" />
+<text  x="135.44" y="799.5" ></text>
+</g>
+<g >
+<title>[libxul.so] (158,755,769 samples, 0.04%)</title><rect x="178.0" y="933" width="0.5" height="15.0" fill="rgb(207,18,14)" rx="2" ry="2" />
+<text  x="181.03" y="943.5" ></text>
+</g>
+<g >
+<title>rcu_gp_fqs_loop (74,567,737 samples, 0.02%)</title><rect x="829.7" y="917" width="0.2" height="15.0" fill="rgb(231,89,28)" rx="2" ry="2" />
+<text  x="832.70" y="927.5" ></text>
+</g>
+<g >
+<title>__x64_sys_futex (63,335,600 samples, 0.02%)</title><rect x="15.1" y="901" width="0.2" height="15.0" fill="rgb(219,30,41)" rx="2" ry="2" />
+<text  x="18.08" y="911.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (116,321,153 samples, 0.03%)</title><rect x="665.7" y="709" width="0.4" height="15.0" fill="rgb(224,33,27)" rx="2" ry="2" />
+<text  x="668.70" y="719.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (222,471,257 samples, 0.06%)</title><rect x="151.7" y="901" width="0.7" height="15.0" fill="rgb(220,129,32)" rx="2" ry="2" />
+<text  x="154.66" y="911.5" ></text>
+</g>
+<g >
+<title>percpu_counter_add_batch (62,527,222 samples, 0.02%)</title><rect x="390.0" y="805" width="0.2" height="15.0" fill="rgb(244,217,30)" rx="2" ry="2" />
+<text  x="393.04" y="815.5" ></text>
+</g>
+<g >
+<title>[libcairo.so.2.11706.0] (149,780,911 samples, 0.04%)</title><rect x="1169.0" y="949" width="0.5" height="15.0" fill="rgb(253,22,43)" rx="2" ry="2" />
+<text  x="1172.00" y="959.5" ></text>
+</g>
+<g >
+<title>memset_erms (118,555,591 samples, 0.03%)</title><rect x="436.6" y="853" width="0.4" height="15.0" fill="rgb(205,0,45)" rx="2" ry="2" />
+<text  x="439.64" y="863.5" ></text>
+</g>
+<g >
+<title>__GI___isoc99_sscanf (33,695,298 samples, 0.01%)</title><rect x="647.1" y="709" width="0.1" height="15.0" fill="rgb(230,126,3)" rx="2" ry="2" />
+<text  x="650.07" y="719.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (345,823,133 samples, 0.09%)</title><rect x="1178.7" y="741" width="1.1" height="15.0" fill="rgb(251,146,50)" rx="2" ry="2" />
+<text  x="1181.74" y="751.5" ></text>
+</g>
+<g >
+<title>__writeback_inodes_wb (299,662,202 samples, 0.08%)</title><rect x="502.1" y="869" width="1.0" height="15.0" fill="rgb(246,117,42)" rx="2" ry="2" />
+<text  x="505.10" y="879.5" ></text>
+</g>
+<g >
+<title>aesni_xts_encrypt (1,686,837,561 samples, 0.46%)</title><rect x="487.1" y="821" width="5.5" height="15.0" fill="rgb(254,3,29)" rx="2" ry="2" />
+<text  x="490.13" y="831.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (83,262,561 samples, 0.02%)</title><rect x="211.1" y="885" width="0.3" height="15.0" fill="rgb(241,208,27)" rx="2" ry="2" />
+<text  x="214.08" y="895.5" ></text>
+</g>
+<g >
+<title>__libc_recvmsg (269,381,505 samples, 0.07%)</title><rect x="744.9" y="693" width="0.9" height="15.0" fill="rgb(219,92,18)" rx="2" ry="2" />
+<text  x="747.92" y="703.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (186,303,561 samples, 0.05%)</title><rect x="1177.8" y="533" width="0.6" height="15.0" fill="rgb(221,66,23)" rx="2" ry="2" />
+<text  x="1180.84" y="543.5" ></text>
+</g>
+<g >
+<title>iwl_mvm_tx_skb (119,667,755 samples, 0.03%)</title><rect x="624.1" y="373" width="0.4" height="15.0" fill="rgb(230,167,34)" rx="2" ry="2" />
+<text  x="627.08" y="383.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (40,695,991 samples, 0.01%)</title><rect x="143.6" y="741" width="0.1" height="15.0" fill="rgb(237,131,36)" rx="2" ry="2" />
+<text  x="146.59" y="751.5" ></text>
+</g>
+<g >
+<title>mempool_alloc (215,802,728 samples, 0.06%)</title><rect x="457.2" y="885" width="0.7" height="15.0" fill="rgb(213,94,36)" rx="2" ry="2" />
+<text  x="460.17" y="895.5" ></text>
+</g>
+<g >
+<title>move_pages_to_lru (34,240,450 samples, 0.01%)</title><rect x="355.9" y="853" width="0.1" height="15.0" fill="rgb(226,156,16)" rx="2" ry="2" />
+<text  x="358.92" y="863.5" ></text>
+</g>
+<g >
+<title>xcb_poll_for_special_event (38,573,582 samples, 0.01%)</title><rect x="132.5" y="773" width="0.1" height="15.0" fill="rgb(227,93,46)" rx="2" ry="2" />
+<text  x="135.51" y="783.5" ></text>
+</g>
+<g >
+<title>schedule (200,592,592 samples, 0.05%)</title><rect x="51.0" y="805" width="0.7" height="15.0" fill="rgb(211,104,11)" rx="2" ry="2" />
+<text  x="54.02" y="815.5" ></text>
+</g>
+<g >
+<title>write_cache_pages (438,252,674 samples, 0.12%)</title><rect x="523.3" y="773" width="1.4" height="15.0" fill="rgb(249,183,35)" rx="2" ry="2" />
+<text  x="526.31" y="783.5" ></text>
+</g>
+<g >
+<title>find_busiest_group (35,421,936 samples, 0.01%)</title><rect x="13.6" y="725" width="0.1" height="15.0" fill="rgb(206,133,45)" rx="2" ry="2" />
+<text  x="16.63" y="735.5" ></text>
+</g>
+<g >
+<title>qemu_memalign (86,110,192 samples, 0.02%)</title><rect x="747.6" y="821" width="0.3" height="15.0" fill="rgb(226,196,24)" rx="2" ry="2" />
+<text  x="750.64" y="831.5" ></text>
+</g>
+<g >
+<title>xfs_end_io (898,847,348 samples, 0.25%)</title><rect x="382.8" y="901" width="2.9" height="15.0" fill="rgb(244,100,41)" rx="2" ry="2" />
+<text  x="385.82" y="911.5" ></text>
+</g>
+<g >
+<title>mempool_alloc (209,417,208 samples, 0.06%)</title><rect x="437.0" y="885" width="0.7" height="15.0" fill="rgb(209,15,38)" rx="2" ry="2" />
+<text  x="440.05" y="895.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (4,348,141,190 samples, 1.19%)</title><rect x="735.6" y="933" width="14.0" height="15.0" fill="rgb(212,18,53)" rx="2" ry="2" />
+<text  x="738.60" y="943.5" ></text>
+</g>
+<g >
+<title>skb_copy_datagram_from_iter (34,196,713 samples, 0.01%)</title><rect x="47.2" y="821" width="0.1" height="15.0" fill="rgb(246,182,10)" rx="2" ry="2" />
+<text  x="50.24" y="831.5" ></text>
+</g>
+<g >
+<title>unix_stream_read_generic (134,201,922 samples, 0.04%)</title><rect x="21.0" y="725" width="0.5" height="15.0" fill="rgb(249,148,54)" rx="2" ry="2" />
+<text  x="24.03" y="735.5" ></text>
+</g>
+<g >
+<title>xfs_trans_reserve (39,957,867 samples, 0.01%)</title><rect x="760.2" y="709" width="0.1" height="15.0" fill="rgb(238,76,2)" rx="2" ry="2" />
+<text  x="763.20" y="719.5" ></text>
+</g>
+<g >
+<title>kcryptd_crypt (2,677,454,669 samples, 0.73%)</title><rect x="524.8" y="901" width="8.6" height="15.0" fill="rgb(232,127,4)" rx="2" ry="2" />
+<text  x="527.78" y="911.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (214,836,066 samples, 0.06%)</title><rect x="200.3" y="869" width="0.7" height="15.0" fill="rgb(247,162,42)" rx="2" ry="2" />
+<text  x="203.30" y="879.5" ></text>
+</g>
+<g >
+<title>[firefox] (31,444,767 samples, 0.01%)</title><rect x="169.2" y="917" width="0.1" height="15.0" fill="rgb(236,64,33)" rx="2" ry="2" />
+<text  x="172.15" y="927.5" ></text>
+</g>
+<g >
+<title>writeback_sb_inodes (556,508,561 samples, 0.15%)</title><rect x="595.3" y="853" width="1.8" height="15.0" fill="rgb(232,55,7)" rx="2" ry="2" />
+<text  x="598.32" y="863.5" ></text>
+</g>
+<g >
+<title>[libglib-2.0.so.0.7303.0] (100,772,488 samples, 0.03%)</title><rect x="248.2" y="965" width="0.3" height="15.0" fill="rgb(217,138,1)" rx="2" ry="2" />
+<text  x="251.17" y="975.5" ></text>
+</g>
+<g >
+<title>[firefox] (33,802,058 samples, 0.01%)</title><rect x="16.3" y="885" width="0.1" height="15.0" fill="rgb(240,13,32)" rx="2" ry="2" />
+<text  x="19.29" y="895.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (59,185,338 samples, 0.02%)</title><rect x="387.1" y="965" width="0.2" height="15.0" fill="rgb(226,46,53)" rx="2" ry="2" />
+<text  x="390.11" y="975.5" ></text>
+</g>
+<g >
+<title>mempool_alloc (255,974,479 samples, 0.07%)</title><rect x="417.8" y="885" width="0.9" height="15.0" fill="rgb(221,99,27)" rx="2" ry="2" />
+<text  x="420.83" y="895.5" ></text>
+</g>
+<g >
+<title>g_signal_emit_valist (31,256,078 samples, 0.01%)</title><rect x="1179.4" y="597" width="0.1" height="15.0" fill="rgb(217,191,46)" rx="2" ry="2" />
+<text  x="1182.36" y="607.5" ></text>
+</g>
+<g >
+<title>schedule_idle (2,479,678,065 samples, 0.68%)</title><rect x="1145.7" y="901" width="8.0" height="15.0" fill="rgb(248,212,53)" rx="2" ry="2" />
+<text  x="1148.67" y="911.5" ></text>
+</g>
+<g >
+<title>sched_ttwu_pending (243,897,592 samples, 0.07%)</title><rect x="881.3" y="853" width="0.8" height="15.0" fill="rgb(220,8,23)" rx="2" ry="2" />
+<text  x="884.28" y="863.5" ></text>
+</g>
+<g >
+<title>ep_item_poll.isra.0 (55,523,626 samples, 0.02%)</title><rect x="33.4" y="837" width="0.2" height="15.0" fill="rgb(229,69,37)" rx="2" ry="2" />
+<text  x="36.37" y="847.5" ></text>
+</g>
+<g >
+<title>preempt_count_add (51,441,534 samples, 0.01%)</title><rect x="410.8" y="805" width="0.2" height="15.0" fill="rgb(245,49,52)" rx="2" ry="2" />
+<text  x="413.79" y="815.5" ></text>
+</g>
+<g >
+<title>wb_workfn (758,652,211 samples, 0.21%)</title><rect x="571.9" y="901" width="2.4" height="15.0" fill="rgb(236,74,31)" rx="2" ry="2" />
+<text  x="574.86" y="911.5" ></text>
+</g>
+<g >
+<title>zap_page_range_single (50,373,981 samples, 0.01%)</title><rect x="377.6" y="773" width="0.1" height="15.0" fill="rgb(215,142,7)" rx="2" ry="2" />
+<text  x="380.57" y="783.5" ></text>
+</g>
+<g >
+<title>unix_stream_sendmsg (516,199,515 samples, 0.14%)</title><rect x="47.1" y="837" width="1.6" height="15.0" fill="rgb(241,96,30)" rx="2" ry="2" />
+<text  x="50.07" y="847.5" ></text>
+</g>
+<g >
+<title>handle_single_connection (15,548,349,079 samples, 4.24%)</title><rect x="616.6" y="917" width="50.0" height="15.0" fill="rgb(233,22,10)" rx="2" ry="2" />
+<text  x="619.58" y="927.5" >handl..</text>
+</g>
+<g >
+<title>wb_workfn (732,491,780 samples, 0.20%)</title><rect x="437.7" y="901" width="2.4" height="15.0" fill="rgb(248,54,6)" rx="2" ry="2" />
+<text  x="440.73" y="911.5" ></text>
+</g>
+<g >
+<title>schedule_hrtimeout_range_clock (86,541,700 samples, 0.02%)</title><rect x="43.5" y="837" width="0.3" height="15.0" fill="rgb(241,11,10)" rx="2" ry="2" />
+<text  x="46.49" y="847.5" ></text>
+</g>
+<g >
+<title>folio_mark_dirty (40,366,134 samples, 0.01%)</title><rect x="376.5" y="773" width="0.2" height="15.0" fill="rgb(252,116,50)" rx="2" ry="2" />
+<text  x="379.52" y="783.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (4,350,729,393 samples, 1.19%)</title><rect x="735.6" y="965" width="14.0" height="15.0" fill="rgb(252,23,42)" rx="2" ry="2" />
+<text  x="738.60" y="975.5" ></text>
+</g>
+<g >
+<title>__wake_up_common_lock (43,029,884 samples, 0.01%)</title><rect x="732.1" y="853" width="0.2" height="15.0" fill="rgb(234,156,44)" rx="2" ry="2" />
+<text  x="735.12" y="863.5" ></text>
+</g>
+<g >
+<title>iptable_mangle_hook (57,774,879 samples, 0.02%)</title><rect x="636.2" y="485" width="0.2" height="15.0" fill="rgb(223,210,40)" rx="2" ry="2" />
+<text  x="639.23" y="495.5" ></text>
+</g>
+<g >
+<title>aesni_enc (144,196,408 samples, 0.04%)</title><rect x="405.0" y="821" width="0.5" height="15.0" fill="rgb(206,165,51)" rx="2" ry="2" />
+<text  x="408.03" y="831.5" ></text>
+</g>
+<g >
+<title>mozilla::detail::MutexImpl::lock (37,377,170 samples, 0.01%)</title><rect x="37.6" y="949" width="0.2" height="15.0" fill="rgb(244,39,11)" rx="2" ry="2" />
+<text  x="40.65" y="959.5" ></text>
+</g>
+<g >
+<title>memset_erms (66,581,258 samples, 0.02%)</title><rect x="462.1" y="853" width="0.2" height="15.0" fill="rgb(239,212,48)" rx="2" ry="2" />
+<text  x="465.12" y="863.5" ></text>
+</g>
+<g >
+<title>ieee80211_tx_h_rate_ctrl (41,699,927 samples, 0.01%)</title><rect x="623.9" y="341" width="0.2" height="15.0" fill="rgb(227,64,34)" rx="2" ry="2" />
+<text  x="626.94" y="351.5" ></text>
+</g>
+<g >
+<title>nft_do_chain_inet (96,524,165 samples, 0.03%)</title><rect x="321.2" y="645" width="0.3" height="15.0" fill="rgb(219,145,48)" rx="2" ry="2" />
+<text  x="324.18" y="655.5" ></text>
+</g>
+<g >
+<title>native_write_msr (50,559,297 samples, 0.01%)</title><rect x="911.3" y="693" width="0.1" height="15.0" fill="rgb(241,139,46)" rx="2" ry="2" />
+<text  x="914.25" y="703.5" ></text>
+</g>
+<g >
+<title>__mod_lruvec_page_state (54,927,705 samples, 0.01%)</title><rect x="595.6" y="725" width="0.2" height="15.0" fill="rgb(239,133,18)" rx="2" ry="2" />
+<text  x="598.60" y="735.5" ></text>
+</g>
+<g >
+<title>find_busiest_group (31,745,360 samples, 0.01%)</title><rect x="822.4" y="709" width="0.1" height="15.0" fill="rgb(209,120,9)" rx="2" ry="2" />
+<text  x="825.36" y="719.5" ></text>
+</g>
+<g >
+<title>[unknown] (270,875,934 samples, 0.07%)</title><rect x="44.3" y="965" width="0.9" height="15.0" fill="rgb(243,88,7)" rx="2" ry="2" />
+<text  x="47.32" y="975.5" ></text>
+</g>
+<g >
+<title>mozilla::detail::ConditionVariableImpl::notify_one (125,947,446 samples, 0.03%)</title><rect x="104.2" y="949" width="0.4" height="15.0" fill="rgb(230,14,40)" rx="2" ry="2" />
+<text  x="107.17" y="959.5" ></text>
+</g>
+<g >
+<title>__sk_mem_reduce_allocated (53,651,605 samples, 0.01%)</title><rect x="745.1" y="549" width="0.1" height="15.0" fill="rgb(236,1,45)" rx="2" ry="2" />
+<text  x="748.05" y="559.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (50,253,593 samples, 0.01%)</title><rect x="748.3" y="501" width="0.2" height="15.0" fill="rgb(208,1,14)" rx="2" ry="2" />
+<text  x="751.33" y="511.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (571,917,272 samples, 0.16%)</title><rect x="97.4" y="901" width="1.8" height="15.0" fill="rgb(227,94,29)" rx="2" ry="2" />
+<text  x="100.38" y="911.5" ></text>
+</g>
+<g >
+<title>mem_cgroup_migrate (65,404,009 samples, 0.02%)</title><rect x="346.4" y="837" width="0.2" height="15.0" fill="rgb(252,39,50)" rx="2" ry="2" />
+<text  x="349.38" y="847.5" ></text>
+</g>
+<g >
+<title>drmHandleEvent (387,824,412 samples, 0.11%)</title><rect x="201.3" y="917" width="1.3" height="15.0" fill="rgb(205,149,49)" rx="2" ry="2" />
+<text  x="204.35" y="927.5" ></text>
+</g>
+<g >
+<title>__dev_queue_xmit (121,863,704 samples, 0.03%)</title><rect x="325.5" y="581" width="0.4" height="15.0" fill="rgb(246,50,33)" rx="2" ry="2" />
+<text  x="328.49" y="591.5" ></text>
+</g>
+<g >
+<title>fwtable_write32 (66,658,678 samples, 0.02%)</title><rect x="1163.7" y="325" width="0.2" height="15.0" fill="rgb(250,108,7)" rx="2" ry="2" />
+<text  x="1166.71" y="335.5" ></text>
+</g>
+<g >
+<title>[libEGL_mesa.so.0.0.0] (720,031,102 samples, 0.20%)</title><rect x="1163.2" y="869" width="2.3" height="15.0" fill="rgb(206,188,19)" rx="2" ry="2" />
+<text  x="1166.20" y="879.5" ></text>
+</g>
+<g >
+<title>__radix_tree_lookup (90,765,105 samples, 0.02%)</title><rect x="674.1" y="757" width="0.3" height="15.0" fill="rgb(228,32,48)" rx="2" ry="2" />
+<text  x="677.07" y="767.5" ></text>
+</g>
+<g >
+<title>__fprop_add_percpu (36,392,335 samples, 0.01%)</title><rect x="393.0" y="805" width="0.1" height="15.0" fill="rgb(227,47,52)" rx="2" ry="2" />
+<text  x="395.99" y="815.5" ></text>
+</g>
+<g >
+<title>folio_end_writeback (334,916,385 samples, 0.09%)</title><rect x="389.2" y="837" width="1.0" height="15.0" fill="rgb(210,112,17)" rx="2" ry="2" />
+<text  x="392.16" y="847.5" ></text>
+</g>
+<g >
+<title>preempt_count_add (83,848,741 samples, 0.02%)</title><rect x="697.1" y="693" width="0.3" height="15.0" fill="rgb(205,187,47)" rx="2" ry="2" />
+<text  x="700.10" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (300,268,249 samples, 0.08%)</title><rect x="815.0" y="853" width="1.0" height="15.0" fill="rgb(223,122,52)" rx="2" ry="2" />
+<text  x="818.01" y="863.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (74,426,994 samples, 0.02%)</title><rect x="1172.3" y="53" width="0.2" height="15.0" fill="rgb(210,113,40)" rx="2" ry="2" />
+<text  x="1175.30" y="63.5" ></text>
+</g>
+<g >
+<title>worker_thread (270,189,613 samples, 0.07%)</title><rect x="388.2" y="933" width="0.9" height="15.0" fill="rgb(217,6,44)" rx="2" ry="2" />
+<text  x="391.18" y="943.5" ></text>
+</g>
+<g >
+<title>g_signal_emit (40,950,043 samples, 0.01%)</title><rect x="1179.9" y="789" width="0.1" height="15.0" fill="rgb(226,0,5)" rx="2" ry="2" />
+<text  x="1182.89" y="799.5" ></text>
+</g>
+<g >
+<title>pipe_write (99,815,097 samples, 0.03%)</title><rect x="156.5" y="869" width="0.3" height="15.0" fill="rgb(217,36,10)" rx="2" ry="2" />
+<text  x="159.47" y="879.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (3,657,223,536 samples, 1.00%)</title><rect x="598.7" y="869" width="11.7" height="15.0" fill="rgb(241,58,45)" rx="2" ry="2" />
+<text  x="601.65" y="879.5" ></text>
+</g>
+<g >
+<title>__new_sem_post (118,260,647 samples, 0.03%)</title><rect x="749.1" y="709" width="0.4" height="15.0" fill="rgb(219,108,42)" rx="2" ry="2" />
+<text  x="752.09" y="719.5" ></text>
+</g>
+<g >
+<title>__sysvec_apic_timer_interrupt (90,706,337 samples, 0.02%)</title><rect x="94.8" y="917" width="0.3" height="15.0" fill="rgb(230,108,8)" rx="2" ry="2" />
+<text  x="97.85" y="927.5" ></text>
+</g>
+<g >
+<title>ip_rcv_finish_core.constprop.0 (192,227,445 samples, 0.05%)</title><rect x="322.3" y="709" width="0.6" height="15.0" fill="rgb(251,15,34)" rx="2" ry="2" />
+<text  x="325.26" y="719.5" ></text>
+</g>
+<g >
+<title>moz_arena_malloc (38,808,079 samples, 0.01%)</title><rect x="102.9" y="949" width="0.1" height="15.0" fill="rgb(250,126,11)" rx="2" ry="2" />
+<text  x="105.92" y="959.5" ></text>
+</g>
+<g >
+<title>[libxul.so] (69,853,581 samples, 0.02%)</title><rect x="59.9" y="949" width="0.2" height="15.0" fill="rgb(252,74,19)" rx="2" ry="2" />
+<text  x="62.91" y="959.5" ></text>
+</g>
+<g >
+<title>tcp_stream_alloc_skb (64,138,778 samples, 0.02%)</title><rect x="625.8" y="549" width="0.2" height="15.0" fill="rgb(208,108,8)" rx="2" ry="2" />
+<text  x="628.78" y="559.5" ></text>
+</g>
+<g >
+<title>__GI___ioctl (258,662,708 samples, 0.07%)</title><rect x="144.0" y="805" width="0.9" height="15.0" fill="rgb(248,199,53)" rx="2" ry="2" />
+<text  x="147.04" y="815.5" ></text>
+</g>
+<g >
+<title>kthread (1,794,358,851 samples, 0.49%)</title><rect x="341.1" y="949" width="5.8" height="15.0" fill="rgb(253,42,23)" rx="2" ry="2" />
+<text  x="344.13" y="959.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (46,965,449 samples, 0.01%)</title><rect x="735.1" y="933" width="0.2" height="15.0" fill="rgb(217,33,25)" rx="2" ry="2" />
+<text  x="738.13" y="943.5" ></text>
+</g>
+<g >
+<title>__libc_read (220,818,462 samples, 0.06%)</title><rect x="658.0" y="853" width="0.7" height="15.0" fill="rgb(246,164,17)" rx="2" ry="2" />
+<text  x="660.97" y="863.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (425,335,676 samples, 0.12%)</title><rect x="211.5" y="885" width="1.4" height="15.0" fill="rgb(238,166,36)" rx="2" ry="2" />
+<text  x="214.51" y="895.5" ></text>
+</g>
+<g >
+<title>[libcurl.so.4.8.0] (72,188,288 samples, 0.02%)</title><rect x="668.7" y="709" width="0.2" height="15.0" fill="rgb(224,209,43)" rx="2" ry="2" />
+<text  x="671.68" y="719.5" ></text>
+</g>
+<g >
+<title>__folio_start_writeback (283,660,204 samples, 0.08%)</title><rect x="477.7" y="741" width="0.9" height="15.0" fill="rgb(248,36,5)" rx="2" ry="2" />
+<text  x="480.72" y="751.5" ></text>
+</g>
+<g >
+<title>[Xorg] (61,940,037 samples, 0.02%)</title><rect x="242.2" y="901" width="0.2" height="15.0" fill="rgb(220,5,32)" rx="2" ry="2" />
+<text  x="245.20" y="911.5" ></text>
+</g>
+<g >
+<title>[firefox] (34,933,253 samples, 0.01%)</title><rect x="178.9" y="917" width="0.1" height="15.0" fill="rgb(211,123,13)" rx="2" ry="2" />
+<text  x="181.85" y="927.5" ></text>
+</g>
+<g >
+<title>__x64_sys_futex (133,172,319 samples, 0.04%)</title><rect x="747.1" y="693" width="0.4" height="15.0" fill="rgb(219,179,37)" rx="2" ry="2" />
+<text  x="750.08" y="703.5" ></text>
+</g>
+<g >
+<title>[libxul.so] (32,844,510 samples, 0.01%)</title><rect x="154.7" y="949" width="0.1" height="15.0" fill="rgb(224,17,1)" rx="2" ry="2" />
+<text  x="157.70" y="959.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (76,930,757 samples, 0.02%)</title><rect x="1142.8" y="837" width="0.3" height="15.0" fill="rgb(242,52,52)" rx="2" ry="2" />
+<text  x="1145.82" y="847.5" ></text>
+</g>
+<g >
+<title>__memcpy_avx_unaligned_erms (31,966,059 samples, 0.01%)</title><rect x="297.0" y="933" width="0.1" height="15.0" fill="rgb(247,112,51)" rx="2" ry="2" />
+<text  x="300.04" y="943.5" ></text>
+</g>
+<g >
+<title>__sys_recvmsg (182,156,730 samples, 0.05%)</title><rect x="20.9" y="789" width="0.6" height="15.0" fill="rgb(247,191,22)" rx="2" ry="2" />
+<text  x="23.92" y="799.5" ></text>
+</g>
+<g >
+<title>i915_vm_map_pt_stash (51,398,460 samples, 0.01%)</title><rect x="140.9" y="741" width="0.1" height="15.0" fill="rgb(214,103,19)" rx="2" ry="2" />
+<text  x="143.87" y="751.5" ></text>
+</g>
+<g >
+<title>iomap_iter (272,010,664 samples, 0.07%)</title><rect x="687.7" y="773" width="0.9" height="15.0" fill="rgb(240,83,18)" rx="2" ry="2" />
+<text  x="690.73" y="783.5" ></text>
+</g>
+<g >
+<title>shmem_sg_alloc_table (420,105,596 samples, 0.11%)</title><rect x="234.2" y="789" width="1.4" height="15.0" fill="rgb(218,130,31)" rx="2" ry="2" />
+<text  x="237.24" y="799.5" ></text>
+</g>
+<g >
+<title>try_to_wake_up (34,327,742 samples, 0.01%)</title><rect x="20.0" y="549" width="0.1" height="15.0" fill="rgb(228,178,27)" rx="2" ry="2" />
+<text  x="23.02" y="559.5" ></text>
+</g>
+<g >
+<title>memcpy_erms (71,725,344 samples, 0.02%)</title><rect x="521.6" y="869" width="0.3" height="15.0" fill="rgb(227,83,28)" rx="2" ry="2" />
+<text  x="524.64" y="879.5" ></text>
+</g>
+<g >
+<title>_iwl_dbg_tlv_time_point (33,871,316 samples, 0.01%)</title><rect x="310.7" y="757" width="0.1" height="15.0" fill="rgb(247,112,15)" rx="2" ry="2" />
+<text  x="313.71" y="767.5" ></text>
+</g>
+<g >
+<title>irq_thread_fn (10,955,579,389 samples, 2.99%)</title><rect x="299.9" y="917" width="35.2" height="15.0" fill="rgb(243,163,42)" rx="2" ry="2" />
+<text  x="302.87" y="927.5" >ir..</text>
+</g>
+<g >
+<title>___pthread_mutex_lock (135,496,719 samples, 0.04%)</title><rect x="104.7" y="933" width="0.4" height="15.0" fill="rgb(249,1,6)" rx="2" ry="2" />
+<text  x="107.70" y="943.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (255,955,081 samples, 0.07%)</title><rect x="295.7" y="885" width="0.9" height="15.0" fill="rgb(222,118,52)" rx="2" ry="2" />
+<text  x="298.73" y="895.5" ></text>
+</g>
+<g >
+<title>bdrv_co_pwritev_part (203,947,830 samples, 0.06%)</title><rect x="748.9" y="821" width="0.6" height="15.0" fill="rgb(234,127,4)" rx="2" ry="2" />
+<text  x="751.86" y="831.5" ></text>
+</g>
+<g >
+<title>__libc_start_call_main (103,738,733 samples, 0.03%)</title><rect x="284.8" y="933" width="0.3" height="15.0" fill="rgb(228,120,15)" rx="2" ry="2" />
+<text  x="287.75" y="943.5" ></text>
+</g>
+<g >
+<title>native_queued_spin_lock_slowpath (75,414,457 samples, 0.02%)</title><rect x="363.7" y="821" width="0.2" height="15.0" fill="rgb(238,180,3)" rx="2" ry="2" />
+<text  x="366.70" y="831.5" ></text>
+</g>
+<g >
+<title>[Xorg] (325,149,273 samples, 0.09%)</title><rect x="201.5" y="853" width="1.0" height="15.0" fill="rgb(251,171,51)" rx="2" ry="2" />
+<text  x="204.50" y="863.5" ></text>
+</g>
+<g >
+<title>__check_object_size (89,269,499 samples, 0.02%)</title><rect x="639.3" y="517" width="0.2" height="15.0" fill="rgb(232,202,5)" rx="2" ry="2" />
+<text  x="642.26" y="527.5" ></text>
+</g>
+<g >
+<title>psi_group_change (60,705,762 samples, 0.02%)</title><rect x="894.3" y="725" width="0.2" height="15.0" fill="rgb(219,123,17)" rx="2" ry="2" />
+<text  x="897.34" y="735.5" ></text>
+</g>
+<g >
+<title>__futex_abstimed_wait_common (194,285,150 samples, 0.05%)</title><rect x="149.1" y="917" width="0.6" height="15.0" fill="rgb(216,153,4)" rx="2" ry="2" />
+<text  x="152.07" y="927.5" ></text>
+</g>
+<g >
+<title>[firefox] (83,162,639 samples, 0.02%)</title><rect x="148.2" y="933" width="0.3" height="15.0" fill="rgb(211,227,36)" rx="2" ry="2" />
+<text  x="151.21" y="943.5" ></text>
+</g>
+<g >
+<title>moz_xmalloc (302,945,827 samples, 0.08%)</title><rect x="49.9" y="949" width="0.9" height="15.0" fill="rgb(227,224,18)" rx="2" ry="2" />
+<text  x="52.87" y="959.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (171,889,225 samples, 0.05%)</title><rect x="1177.9" y="309" width="0.5" height="15.0" fill="rgb(214,118,44)" rx="2" ry="2" />
+<text  x="1180.87" y="319.5" ></text>
+</g>
+<g >
+<title>[unknown] (1,453,093,568 samples, 0.40%)</title><rect x="175.1" y="965" width="4.7" height="15.0" fill="rgb(217,50,27)" rx="2" ry="2" />
+<text  x="178.08" y="975.5" ></text>
+</g>
+<g >
+<title>selinux_socket_recvmsg (53,351,848 samples, 0.01%)</title><rect x="228.3" y="853" width="0.1" height="15.0" fill="rgb(213,3,24)" rx="2" ry="2" />
+<text  x="231.26" y="863.5" ></text>
+</g>
+<g >
+<title>rate_control_get_rate (79,721,796 samples, 0.02%)</title><rect x="633.0" y="373" width="0.3" height="15.0" fill="rgb(244,115,25)" rx="2" ry="2" />
+<text  x="636.01" y="383.5" ></text>
+</g>
+<g >
+<title>skcipher_walk_done (40,531,722 samples, 0.01%)</title><rect x="451.3" y="821" width="0.1" height="15.0" fill="rgb(224,84,1)" rx="2" ry="2" />
+<text  x="454.31" y="831.5" ></text>
+</g>
+<g >
+<title>queue_work_on (37,323,728 samples, 0.01%)</title><rect x="896.8" y="757" width="0.1" height="15.0" fill="rgb(249,219,6)" rx="2" ry="2" />
+<text  x="899.80" y="767.5" ></text>
+</g>
+<g >
+<title>do_futex (544,245,808 samples, 0.15%)</title><rect x="816.7" y="805" width="1.7" height="15.0" fill="rgb(217,186,16)" rx="2" ry="2" />
+<text  x="819.67" y="815.5" ></text>
+</g>
+<g >
+<title>tcp_v6_rcv (289,903,421 samples, 0.08%)</title><rect x="740.9" y="277" width="1.0" height="15.0" fill="rgb(246,130,52)" rx="2" ry="2" />
+<text  x="743.94" y="287.5" ></text>
+</g>
+<g >
+<title>ieee80211_tx_dequeue (114,414,627 samples, 0.03%)</title><rect x="623.7" y="373" width="0.4" height="15.0" fill="rgb(249,23,10)" rx="2" ry="2" />
+<text  x="626.71" y="383.5" ></text>
+</g>
+<g >
+<title>__x64_sys_sched_yield (47,269,605 samples, 0.01%)</title><rect x="168.7" y="885" width="0.2" height="15.0" fill="rgb(211,21,53)" rx="2" ry="2" />
+<text  x="171.74" y="895.5" ></text>
+</g>
+<g >
+<title>__futex_abstimed_wait_common (58,021,594 samples, 0.02%)</title><rect x="1166.7" y="885" width="0.2" height="15.0" fill="rgb(240,38,28)" rx="2" ry="2" />
+<text  x="1169.70" y="895.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (4,230,065,429 samples, 1.15%)</title><rect x="441.9" y="869" width="13.6" height="15.0" fill="rgb(227,147,54)" rx="2" ry="2" />
+<text  x="444.93" y="879.5" ></text>
+</g>
+<g >
+<title>[unknown] (44,467,743 samples, 0.01%)</title><rect x="1176.6" y="965" width="0.2" height="15.0" fill="rgb(248,138,49)" rx="2" ry="2" />
+<text  x="1179.61" y="975.5" ></text>
+</g>
+<g >
+<title>xfs_file_write_iter (39,176,070 samples, 0.01%)</title><rect x="723.1" y="805" width="0.1" height="15.0" fill="rgb(222,84,9)" rx="2" ry="2" />
+<text  x="726.07" y="815.5" ></text>
+</g>
+<g >
+<title>drm_ioctl (255,755,297 samples, 0.07%)</title><rect x="1164.3" y="677" width="0.8" height="15.0" fill="rgb(249,99,42)" rx="2" ry="2" />
+<text  x="1167.29" y="687.5" ></text>
+</g>
+<g >
+<title>mempool_alloc (254,990,643 samples, 0.07%)</title><rect x="522.5" y="885" width="0.8" height="15.0" fill="rgb(210,176,23)" rx="2" ry="2" />
+<text  x="525.48" y="895.5" ></text>
+</g>
+<g >
+<title>[perf] (18,449,830,230 samples, 5.03%)</title><rect x="669.1" y="965" width="59.4" height="15.0" fill="rgb(227,129,23)" rx="2" ry="2" />
+<text  x="672.10" y="975.5" >[perf]</text>
+</g>
+<g >
+<title>mwait_idle_with_hints.constprop.0 (6,105,348,898 samples, 1.67%)</title><rect x="918.7" y="853" width="19.7" height="15.0" fill="rgb(239,161,20)" rx="2" ry="2" />
+<text  x="921.71" y="863.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (123,018,100 samples, 0.03%)</title><rect x="169.7" y="933" width="0.4" height="15.0" fill="rgb(224,202,36)" rx="2" ry="2" />
+<text  x="172.68" y="943.5" ></text>
+</g>
+<g >
+<title>[libxul.so] (73,215,199 samples, 0.02%)</title><rect x="152.4" y="933" width="0.2" height="15.0" fill="rgb(221,199,7)" rx="2" ry="2" />
+<text  x="155.38" y="943.5" ></text>
+</g>
+<g >
+<title>__mod_memcg_lruvec_state (43,573,281 samples, 0.01%)</title><rect x="572.3" y="709" width="0.2" height="15.0" fill="rgb(251,137,26)" rx="2" ry="2" />
+<text  x="575.35" y="719.5" ></text>
+</g>
+<g >
+<title>[firefox] (138,331,364 samples, 0.04%)</title><rect x="147.4" y="917" width="0.4" height="15.0" fill="rgb(231,116,4)" rx="2" ry="2" />
+<text  x="150.39" y="927.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (35,529,180 samples, 0.01%)</title><rect x="1163.0" y="757" width="0.1" height="15.0" fill="rgb(238,6,18)" rx="2" ry="2" />
+<text  x="1166.01" y="767.5" ></text>
+</g>
+<g >
+<title>__folio_start_writeback (60,433,341 samples, 0.02%)</title><rect x="612.7" y="741" width="0.2" height="15.0" fill="rgb(227,67,3)" rx="2" ry="2" />
+<text  x="615.74" y="751.5" ></text>
+</g>
+<g >
+<title>LegalNewID (168,272,468 samples, 0.05%)</title><rect x="204.7" y="933" width="0.5" height="15.0" fill="rgb(236,31,16)" rx="2" ry="2" />
+<text  x="207.70" y="943.5" ></text>
+</g>
+<g >
+<title>mod_lruvec_page_state (58,483,165 samples, 0.02%)</title><rect x="397.1" y="805" width="0.2" height="15.0" fill="rgb(252,84,35)" rx="2" ry="2" />
+<text  x="400.14" y="815.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (235,088,859 samples, 0.06%)</title><rect x="746.9" y="805" width="0.7" height="15.0" fill="rgb(211,85,40)" rx="2" ry="2" />
+<text  x="749.86" y="815.5" ></text>
+</g>
+<g >
+<title>dequeue_entity (70,016,443 samples, 0.02%)</title><rect x="230.2" y="837" width="0.3" height="15.0" fill="rgb(225,71,5)" rx="2" ry="2" />
+<text  x="233.24" y="847.5" ></text>
+</g>
+<g >
+<title>[libxul.so] (1,095,824,156 samples, 0.30%)</title><rect x="142.5" y="949" width="3.5" height="15.0" fill="rgb(228,28,17)" rx="2" ry="2" />
+<text  x="145.52" y="959.5" ></text>
+</g>
+<g >
+<title>worker_thread (7,484,666,583 samples, 2.04%)</title><rect x="479.0" y="933" width="24.1" height="15.0" fill="rgb(251,113,38)" rx="2" ry="2" />
+<text  x="482.01" y="943.5" >w..</text>
+</g>
+<g >
+<title>dma_fence_signal_timestamp_locked (33,541,241 samples, 0.01%)</title><rect x="396.0" y="869" width="0.1" height="15.0" fill="rgb(223,73,54)" rx="2" ry="2" />
+<text  x="399.00" y="879.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (3,841,806,487 samples, 1.05%)</title><rect x="736.2" y="869" width="12.4" height="15.0" fill="rgb(211,147,16)" rx="2" ry="2" />
+<text  x="739.23" y="879.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (37,184,814 samples, 0.01%)</title><rect x="169.4" y="901" width="0.1" height="15.0" fill="rgb(221,53,29)" rx="2" ry="2" />
+<text  x="172.37" y="911.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock_irqsave (50,054,275 samples, 0.01%)</title><rect x="438.9" y="725" width="0.1" height="15.0" fill="rgb(247,182,50)" rx="2" ry="2" />
+<text  x="441.87" y="735.5" ></text>
+</g>
+<g >
+<title>aesni_enc (114,910,637 samples, 0.03%)</title><rect x="602.3" y="821" width="0.3" height="15.0" fill="rgb(235,27,7)" rx="2" ry="2" />
+<text  x="605.26" y="831.5" ></text>
+</g>
+<g >
+<title>__wake_up_common_lock (43,214,449 samples, 0.01%)</title><rect x="20.0" y="597" width="0.1" height="15.0" fill="rgb(246,149,24)" rx="2" ry="2" />
+<text  x="23.01" y="607.5" ></text>
+</g>
+<g >
+<title>timerqueue_iterate_next (34,773,279 samples, 0.01%)</title><rect x="1141.3" y="837" width="0.2" height="15.0" fill="rgb(244,217,1)" rx="2" ry="2" />
+<text  x="1144.35" y="847.5" ></text>
+</g>
+<g >
+<title>[perf] (17,597,119,966 samples, 4.80%)</title><rect x="669.2" y="949" width="56.7" height="15.0" fill="rgb(247,94,53)" rx="2" ry="2" />
+<text  x="672.24" y="959.5" >[perf]</text>
+</g>
+<g >
+<title>__alloc_pages (136,749,146 samples, 0.04%)</title><rect x="612.0" y="853" width="0.5" height="15.0" fill="rgb(243,156,36)" rx="2" ry="2" />
+<text  x="615.02" y="863.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_irq_work (1,387,341,393 samples, 0.38%)</title><rect x="347.2" y="853" width="4.5" height="15.0" fill="rgb(232,143,54)" rx="2" ry="2" />
+<text  x="350.19" y="863.5" ></text>
+</g>
+<g >
+<title>pick_next_task_idle (42,106,010 samples, 0.01%)</title><rect x="337.3" y="885" width="0.1" height="15.0" fill="rgb(216,20,6)" rx="2" ry="2" />
+<text  x="340.26" y="895.5" ></text>
+</g>
+<g >
+<title>signalfd_poll (90,659,072 samples, 0.02%)</title><rect x="823.2" y="805" width="0.3" height="15.0" fill="rgb(219,59,9)" rx="2" ry="2" />
+<text  x="826.20" y="815.5" ></text>
+</g>
+<g >
+<title>queue_work_on (122,792,372 samples, 0.03%)</title><rect x="318.6" y="773" width="0.4" height="15.0" fill="rgb(248,153,18)" rx="2" ry="2" />
+<text  x="321.62" y="783.5" ></text>
+</g>
+<g >
+<title>timecounter_read (34,205,792 samples, 0.01%)</title><rect x="734.6" y="853" width="0.1" height="15.0" fill="rgb(223,205,30)" rx="2" ry="2" />
+<text  x="737.59" y="863.5" ></text>
+</g>
+<g >
+<title>raw_spin_rq_lock_nested (47,666,477 samples, 0.01%)</title><rect x="911.9" y="725" width="0.2" height="15.0" fill="rgb(246,70,9)" rx="2" ry="2" />
+<text  x="914.94" y="735.5" ></text>
+</g>
+<g >
+<title>[firefox] (122,342,348 samples, 0.03%)</title><rect x="21.7" y="805" width="0.4" height="15.0" fill="rgb(238,171,49)" rx="2" ry="2" />
+<text  x="24.68" y="815.5" ></text>
+</g>
+<g >
+<title>__mem_cgroup_flush_stats (188,528,834 samples, 0.05%)</title><rect x="352.2" y="885" width="0.6" height="15.0" fill="rgb(221,217,41)" rx="2" ry="2" />
+<text  x="355.23" y="895.5" ></text>
+</g>
+<g >
+<title>folio_end_writeback (238,999,632 samples, 0.07%)</title><rect x="388.3" y="837" width="0.7" height="15.0" fill="rgb(250,3,24)" rx="2" ry="2" />
+<text  x="391.26" y="847.5" ></text>
+</g>
+<g >
+<title>_PyObject_Call (67,754,465 samples, 0.02%)</title><rect x="244.1" y="805" width="0.2" height="15.0" fill="rgb(229,90,33)" rx="2" ry="2" />
+<text  x="247.09" y="815.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (51,972,689 samples, 0.01%)</title><rect x="828.9" y="965" width="0.2" height="15.0" fill="rgb(238,193,21)" rx="2" ry="2" />
+<text  x="831.91" y="975.5" ></text>
+</g>
+<g >
+<title>[git] (147,264,259 samples, 0.04%)</title><rect x="285.2" y="965" width="0.5" height="15.0" fill="rgb(232,31,11)" rx="2" ry="2" />
+<text  x="288.20" y="975.5" ></text>
+</g>
+<g >
+<title>super_cache_count (759,508,659 samples, 0.21%)</title><rect x="379.5" y="853" width="2.4" height="15.0" fill="rgb(251,197,26)" rx="2" ry="2" />
+<text  x="382.48" y="863.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (4,349,912,227 samples, 1.19%)</title><rect x="735.6" y="949" width="14.0" height="15.0" fill="rgb(240,18,20)" rx="2" ry="2" />
+<text  x="738.60" y="959.5" ></text>
+</g>
+<g >
+<title>vm_fault_cpu (50,753,646 samples, 0.01%)</title><rect x="227.2" y="853" width="0.2" height="15.0" fill="rgb(245,14,45)" rx="2" ry="2" />
+<text  x="230.22" y="863.5" ></text>
+</g>
+<g >
+<title>dma_direct_map_sg (190,714,320 samples, 0.05%)</title><rect x="246.0" y="773" width="0.6" height="15.0" fill="rgb(230,165,42)" rx="2" ry="2" />
+<text  x="249.01" y="783.5" ></text>
+</g>
+<g >
+<title>__libc_poll (84,215,839 samples, 0.02%)</title><rect x="20.4" y="821" width="0.3" height="15.0" fill="rgb(223,199,11)" rx="2" ry="2" />
+<text  x="23.42" y="831.5" ></text>
+</g>
+<g >
+<title>try_to_wake_up (38,505,703 samples, 0.01%)</title><rect x="104.4" y="821" width="0.1" height="15.0" fill="rgb(250,129,25)" rx="2" ry="2" />
+<text  x="107.37" y="831.5" ></text>
+</g>
+<g >
+<title>firefox (11,397,772,569 samples, 3.11%)</title><rect x="247.9" y="981" width="36.7" height="15.0" fill="rgb(231,166,11)" rx="2" ry="2" />
+<text  x="250.94" y="991.5" >fir..</text>
+</g>
+<g >
+<title>ppgtt_bind_vma (44,165,671 samples, 0.01%)</title><rect x="235.6" y="773" width="0.2" height="15.0" fill="rgb(221,46,21)" rx="2" ry="2" />
+<text  x="238.65" y="783.5" ></text>
+</g>
+<g >
+<title>xfs_file_buffered_write (3,005,335,483 samples, 0.82%)</title><rect x="750.8" y="789" width="9.6" height="15.0" fill="rgb(238,198,24)" rx="2" ry="2" />
+<text  x="753.77" y="799.5" ></text>
+</g>
+<g >
+<title>[libxul.so] (1,264,905,109 samples, 0.35%)</title><rect x="81.4" y="949" width="4.0" height="15.0" fill="rgb(228,36,20)" rx="2" ry="2" />
+<text  x="84.36" y="959.5" ></text>
+</g>
+<g >
+<title>GetXIDRange (32,849,731 samples, 0.01%)</title><rect x="204.6" y="933" width="0.1" height="15.0" fill="rgb(223,81,18)" rx="2" ry="2" />
+<text  x="207.60" y="943.5" ></text>
+</g>
+<g >
+<title>pick_next_task_fair (221,077,448 samples, 0.06%)</title><rect x="653.3" y="597" width="0.7" height="15.0" fill="rgb(247,224,19)" rx="2" ry="2" />
+<text  x="656.29" y="607.5" ></text>
+</g>
+<g >
+<title>security_file_permission (40,032,696 samples, 0.01%)</title><rect x="815.7" y="805" width="0.2" height="15.0" fill="rgb(224,139,53)" rx="2" ry="2" />
+<text  x="818.74" y="815.5" ></text>
+</g>
+<g >
+<title>nf_conntrack_tcp_packet (104,253,013 samples, 0.03%)</title><rect x="636.9" y="469" width="0.4" height="15.0" fill="rgb(248,27,13)" rx="2" ry="2" />
+<text  x="639.94" y="479.5" ></text>
+</g>
+<g >
+<title>try_to_wake_up (36,968,353 samples, 0.01%)</title><rect x="732.1" y="805" width="0.2" height="15.0" fill="rgb(216,39,43)" rx="2" ry="2" />
+<text  x="735.14" y="815.5" ></text>
+</g>
+<g >
+<title>common_interrupt (45,644,167 samples, 0.01%)</title><rect x="813.1" y="821" width="0.2" height="15.0" fill="rgb(241,186,1)" rx="2" ry="2" />
+<text  x="816.12" y="831.5" ></text>
+</g>
+<g >
+<title>kthread (6,724,874,669 samples, 1.83%)</title><rect x="503.1" y="949" width="21.7" height="15.0" fill="rgb(226,179,36)" rx="2" ry="2" />
+<text  x="506.11" y="959.5" >k..</text>
+</g>
+<g >
+<title>vfs_read (42,466,274 samples, 0.01%)</title><rect x="240.5" y="917" width="0.2" height="15.0" fill="rgb(228,65,14)" rx="2" ry="2" />
+<text  x="243.54" y="927.5" ></text>
+</g>
+<g >
+<title>ieee80211_queue_skb (82,149,518 samples, 0.02%)</title><rect x="325.6" y="517" width="0.3" height="15.0" fill="rgb(220,42,51)" rx="2" ry="2" />
+<text  x="328.59" y="527.5" ></text>
+</g>
+<g >
+<title>write_cache_pages (297,941,802 samples, 0.08%)</title><rect x="502.1" y="773" width="1.0" height="15.0" fill="rgb(249,33,19)" rx="2" ry="2" />
+<text  x="505.11" y="783.5" ></text>
+</g>
+<g >
+<title>i2c_dw_isr (63,083,978 samples, 0.02%)</title><rect x="895.8" y="773" width="0.2" height="15.0" fill="rgb(246,109,34)" rx="2" ry="2" />
+<text  x="898.82" y="783.5" ></text>
+</g>
+<g >
+<title>security_file_ioctl (52,748,503 samples, 0.01%)</title><rect x="237.5" y="917" width="0.1" height="15.0" fill="rgb(215,99,31)" rx="2" ry="2" />
+<text  x="240.47" y="927.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (178,264,098 samples, 0.05%)</title><rect x="1177.9" y="421" width="0.5" height="15.0" fill="rgb(236,34,31)" rx="2" ry="2" />
+<text  x="1180.86" y="431.5" ></text>
+</g>
+<g >
+<title>folio_clear_dirty_for_io (74,302,744 samples, 0.02%)</title><rect x="502.2" y="757" width="0.2" height="15.0" fill="rgb(208,40,40)" rx="2" ry="2" />
+<text  x="505.20" y="767.5" ></text>
+</g>
+<g >
+<title>count_shadow_nodes (564,777,117 samples, 0.15%)</title><rect x="372.0" y="853" width="1.8" height="15.0" fill="rgb(249,52,45)" rx="2" ry="2" />
+<text  x="375.02" y="863.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (76,244,778 samples, 0.02%)</title><rect x="15.1" y="933" width="0.2" height="15.0" fill="rgb(241,51,8)" rx="2" ry="2" />
+<text  x="18.07" y="943.5" ></text>
+</g>
+<g >
+<title>__clock_gettime_2 (43,913,074 samples, 0.01%)</title><rect x="825.4" y="869" width="0.1" height="15.0" fill="rgb(241,65,46)" rx="2" ry="2" />
+<text  x="828.38" y="879.5" ></text>
+</g>
+<g >
+<title>qemu_sem_timedwait (795,548,436 samples, 0.22%)</title><rect x="816.3" y="901" width="2.5" height="15.0" fill="rgb(236,43,28)" rx="2" ry="2" />
+<text  x="819.28" y="911.5" ></text>
+</g>
+<g >
+<title>crypt_iv_plain64_gen (132,624,773 samples, 0.04%)</title><rect x="421.4" y="869" width="0.4" height="15.0" fill="rgb(254,97,27)" rx="2" ry="2" />
+<text  x="424.39" y="879.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (157,317,777 samples, 0.04%)</title><rect x="142.7" y="933" width="0.5" height="15.0" fill="rgb(230,129,28)" rx="2" ry="2" />
+<text  x="145.73" y="943.5" ></text>
+</g>
+<g >
+<title>skb_release_data (67,859,578 samples, 0.02%)</title><rect x="662.9" y="533" width="0.2" height="15.0" fill="rgb(207,67,8)" rx="2" ry="2" />
+<text  x="665.87" y="543.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (4,393,100,931 samples, 1.20%)</title><rect x="227.6" y="965" width="14.1" height="15.0" fill="rgb(243,82,49)" rx="2" ry="2" />
+<text  x="230.56" y="975.5" ></text>
+</g>
+<g >
+<title>selinux_file_permission (34,178,722 samples, 0.01%)</title><rect x="92.7" y="853" width="0.1" height="15.0" fill="rgb(205,71,23)" rx="2" ry="2" />
+<text  x="95.67" y="863.5" ></text>
+</g>
+<g >
+<title>g_application_run (39,096,757 samples, 0.01%)</title><rect x="1185.5" y="949" width="0.2" height="15.0" fill="rgb(239,61,14)" rx="2" ry="2" />
+<text  x="1188.55" y="959.5" ></text>
+</g>
+<g >
+<title>iv_of_dmreq (232,457,141 samples, 0.06%)</title><rect x="569.9" y="869" width="0.8" height="15.0" fill="rgb(206,118,24)" rx="2" ry="2" />
+<text  x="572.90" y="879.5" ></text>
+</g>
+<g >
+<title>__fprop_add_percpu (37,296,608 samples, 0.01%)</title><rect x="386.1" y="805" width="0.1" height="15.0" fill="rgb(246,161,38)" rx="2" ry="2" />
+<text  x="389.09" y="815.5" ></text>
+</g>
+<g >
+<title>do_iter_write (695,118,432 samples, 0.19%)</title><rect x="238.2" y="901" width="2.2" height="15.0" fill="rgb(207,209,49)" rx="2" ry="2" />
+<text  x="241.16" y="911.5" ></text>
+</g>
+<g >
+<title>page_vma_mapped_walk (41,867,572 samples, 0.01%)</title><rect x="365.2" y="805" width="0.1" height="15.0" fill="rgb(215,106,9)" rx="2" ry="2" />
+<text  x="368.20" y="815.5" ></text>
+</g>
+<g >
+<title>[libevent-2.1.so.7.0.1] (32,921,220 samples, 0.01%)</title><rect x="32.5" y="917" width="0.1" height="15.0" fill="rgb(233,5,40)" rx="2" ry="2" />
+<text  x="35.49" y="927.5" ></text>
+</g>
+<g >
+<title>mem_cgroup_uncharge_skmem (66,488,088 samples, 0.02%)</title><rect x="629.0" y="549" width="0.3" height="15.0" fill="rgb(208,43,31)" rx="2" ry="2" />
+<text  x="632.04" y="559.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (74,847,909 samples, 0.02%)</title><rect x="92.8" y="901" width="0.2" height="15.0" fill="rgb(242,149,13)" rx="2" ry="2" />
+<text  x="95.80" y="911.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (32,981,730 samples, 0.01%)</title><rect x="132.3" y="757" width="0.1" height="15.0" fill="rgb(214,107,7)" rx="2" ry="2" />
+<text  x="135.26" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (68,840,617 samples, 0.02%)</title><rect x="145.8" y="917" width="0.2" height="15.0" fill="rgb(233,220,34)" rx="2" ry="2" />
+<text  x="148.80" y="927.5" ></text>
+</g>
+<g >
+<title>TaskCon~ller_#3 (50,807,702 samples, 0.01%)</title><rect x="155.2" y="981" width="0.1" height="15.0" fill="rgb(228,152,12)" rx="2" ry="2" />
+<text  x="158.17" y="991.5" ></text>
+</g>
+<g >
+<title>crypt_convert (6,406,232,198 samples, 1.75%)</title><rect x="534.1" y="885" width="20.6" height="15.0" fill="rgb(235,126,36)" rx="2" ry="2" />
+<text  x="537.12" y="895.5" ></text>
+</g>
+<g >
+<title>native_apic_msr_eoi_write (36,306,249 samples, 0.01%)</title><rect x="895.7" y="805" width="0.1" height="15.0" fill="rgb(236,203,0)" rx="2" ry="2" />
+<text  x="898.68" y="815.5" ></text>
+</g>
+<g >
+<title>pixman_region_intersect (36,682,641 samples, 0.01%)</title><rect x="223.2" y="933" width="0.1" height="15.0" fill="rgb(212,130,1)" rx="2" ry="2" />
+<text  x="226.21" y="943.5" ></text>
+</g>
+<g >
+<title>ep_poll_callback (241,459,493 samples, 0.07%)</title><rect x="47.9" y="773" width="0.8" height="15.0" fill="rgb(224,58,47)" rx="2" ry="2" />
+<text  x="50.88" y="783.5" ></text>
+</g>
+<g >
+<title>folio_alloc_swap (58,553,019 samples, 0.02%)</title><rect x="370.0" y="821" width="0.2" height="15.0" fill="rgb(231,68,28)" rx="2" ry="2" />
+<text  x="372.97" y="831.5" ></text>
+</g>
+<g >
+<title>futex_wake (120,497,868 samples, 0.03%)</title><rect x="25.0" y="853" width="0.4" height="15.0" fill="rgb(234,7,17)" rx="2" ry="2" />
+<text  x="27.98" y="863.5" ></text>
+</g>
+<g >
+<title>handle_edge_irq (48,490,266 samples, 0.01%)</title><rect x="900.1" y="757" width="0.2" height="15.0" fill="rgb(248,169,23)" rx="2" ry="2" />
+<text  x="903.15" y="767.5" ></text>
+</g>
+<g >
+<title>post_alloc_hook (35,470,303 samples, 0.01%)</title><rect x="709.1" y="693" width="0.1" height="15.0" fill="rgb(213,7,4)" rx="2" ry="2" />
+<text  x="712.11" y="703.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (183,986,326 samples, 0.05%)</title><rect x="1177.8" y="485" width="0.6" height="15.0" fill="rgb(207,194,8)" rx="2" ry="2" />
+<text  x="1180.85" y="495.5" ></text>
+</g>
+<g >
+<title>crypt_iv_plain64_gen (179,341,009 samples, 0.05%)</title><rect x="575.9" y="869" width="0.6" height="15.0" fill="rgb(230,147,52)" rx="2" ry="2" />
+<text  x="578.93" y="879.5" ></text>
+</g>
+<g >
+<title>calc_load_nohz_stop (43,421,410 samples, 0.01%)</title><rect x="1155.7" y="869" width="0.1" height="15.0" fill="rgb(248,60,43)" rx="2" ry="2" />
+<text  x="1158.68" y="879.5" ></text>
+</g>
+<g >
+<title>__softirqentry_text_start (10,298,326,845 samples, 2.81%)</title><rect x="300.7" y="853" width="33.2" height="15.0" fill="rgb(254,48,27)" rx="2" ry="2" />
+<text  x="303.73" y="863.5" >__..</text>
+</g>
+<g >
+<title>tcp_write_xmit (1,423,499,995 samples, 0.39%)</title><rect x="659.6" y="709" width="4.6" height="15.0" fill="rgb(253,56,12)" rx="2" ry="2" />
+<text  x="662.58" y="719.5" ></text>
+</g>
+<g >
+<title>__folio_end_writeback (146,945,212 samples, 0.04%)</title><rect x="397.7" y="821" width="0.5" height="15.0" fill="rgb(209,11,45)" rx="2" ry="2" />
+<text  x="400.74" y="831.5" ></text>
+</g>
+<g >
+<title>drm_atomic_helper_prepare_planes (61,059,176 samples, 0.02%)</title><rect x="232.2" y="837" width="0.2" height="15.0" fill="rgb(237,66,42)" rx="2" ry="2" />
+<text  x="235.24" y="847.5" ></text>
+</g>
+<g >
+<title>try_to_wake_up (37,415,815 samples, 0.01%)</title><rect x="145.9" y="821" width="0.1" height="15.0" fill="rgb(226,49,46)" rx="2" ry="2" />
+<text  x="148.87" y="831.5" ></text>
+</g>
+<g >
+<title>irq_work_run (69,126,066 samples, 0.02%)</title><rect x="1163.7" y="421" width="0.2" height="15.0" fill="rgb(211,146,2)" rx="2" ry="2" />
+<text  x="1166.70" y="431.5" ></text>
+</g>
+<g >
+<title>skcipher_walk_done (46,616,105 samples, 0.01%)</title><rect x="587.5" y="821" width="0.1" height="15.0" fill="rgb(223,136,0)" rx="2" ry="2" />
+<text  x="590.47" y="831.5" ></text>
+</g>
+<g >
+<title>sysvec_apic_timer_interrupt (37,639,126 samples, 0.01%)</title><rect x="1126.9" y="869" width="0.2" height="15.0" fill="rgb(230,229,27)" rx="2" ry="2" />
+<text  x="1129.95" y="879.5" ></text>
+</g>
+<g >
+<title>__virt_addr_valid (49,563,187 samples, 0.01%)</title><rect x="639.4" y="501" width="0.1" height="15.0" fill="rgb(213,229,45)" rx="2" ry="2" />
+<text  x="642.37" y="511.5" ></text>
+</g>
+<g >
+<title>g_signal_emit_valist (715,548,921 samples, 0.20%)</title><rect x="1177.7" y="821" width="2.3" height="15.0" fill="rgb(206,4,53)" rx="2" ry="2" />
+<text  x="1180.73" y="831.5" ></text>
+</g>
+<g >
+<title>iomap_finish_ioends (332,849,722 samples, 0.09%)</title><rect x="385.8" y="869" width="1.1" height="15.0" fill="rgb(229,146,46)" rx="2" ry="2" />
+<text  x="388.80" y="879.5" ></text>
+</g>
+<g >
+<title>try_to_wake_up (45,042,870 samples, 0.01%)</title><rect x="156.5" y="805" width="0.2" height="15.0" fill="rgb(248,42,53)" rx="2" ry="2" />
+<text  x="159.53" y="815.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (1,493,670,898 samples, 0.41%)</title><rect x="739.5" y="645" width="4.8" height="15.0" fill="rgb(237,68,36)" rx="2" ry="2" />
+<text  x="742.46" y="655.5" ></text>
+</g>
+<g >
+<title>___sys_recvmsg (178,370,662 samples, 0.05%)</title><rect x="20.9" y="773" width="0.6" height="15.0" fill="rgb(254,49,14)" rx="2" ry="2" />
+<text  x="23.93" y="783.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (558,174,536 samples, 0.15%)</title><rect x="453.3" y="853" width="1.8" height="15.0" fill="rgb(219,156,24)" rx="2" ry="2" />
+<text  x="456.29" y="863.5" ></text>
+</g>
+<g >
+<title>____sys_sendmsg (125,433,339 samples, 0.03%)</title><rect x="93.6" y="869" width="0.4" height="15.0" fill="rgb(247,108,21)" rx="2" ry="2" />
+<text  x="96.59" y="879.5" ></text>
+</g>
+<g >
+<title>__GI___ioctl (93,595,007 samples, 0.03%)</title><rect x="1163.6" y="645" width="0.3" height="15.0" fill="rgb(248,24,1)" rx="2" ry="2" />
+<text  x="1166.64" y="655.5" ></text>
+</g>
+<g >
+<title>miComputeCompositeRegion (44,909,028 samples, 0.01%)</title><rect x="213.6" y="901" width="0.1" height="15.0" fill="rgb(220,216,8)" rx="2" ry="2" />
+<text  x="216.57" y="911.5" ></text>
+</g>
+<g >
+<title>__folio_end_writeback (284,517,568 samples, 0.08%)</title><rect x="386.0" y="821" width="0.9" height="15.0" fill="rgb(225,16,28)" rx="2" ry="2" />
+<text  x="388.95" y="831.5" ></text>
+</g>
+<g >
+<title>aesni_enc (160,505,501 samples, 0.04%)</title><rect x="541.1" y="821" width="0.5" height="15.0" fill="rgb(206,45,8)" rx="2" ry="2" />
+<text  x="544.12" y="831.5" ></text>
+</g>
+<g >
+<title>__GI___ioctl (53,304,307 samples, 0.01%)</title><rect x="1164.0" y="677" width="0.2" height="15.0" fill="rgb(240,194,15)" rx="2" ry="2" />
+<text  x="1166.98" y="687.5" ></text>
+</g>
+<g >
+<title>backend_pread (329,454,028 samples, 0.09%)</title><rect x="667.9" y="885" width="1.0" height="15.0" fill="rgb(238,57,36)" rx="2" ry="2" />
+<text  x="670.86" y="895.5" ></text>
+</g>
+<g >
+<title>__mod_zone_page_state (99,805,208 samples, 0.03%)</title><rect x="367.6" y="805" width="0.3" height="15.0" fill="rgb(214,199,9)" rx="2" ry="2" />
+<text  x="370.57" y="815.5" ></text>
+</g>
+<g >
+<title>_i915_vma_move_to_active (34,505,989 samples, 0.01%)</title><rect x="1164.6" y="613" width="0.1" height="15.0" fill="rgb(206,27,42)" rx="2" ry="2" />
+<text  x="1167.60" y="623.5" ></text>
+</g>
+<g >
+<title>[Xorg] (165,487,240 samples, 0.05%)</title><rect x="204.1" y="917" width="0.5" height="15.0" fill="rgb(232,151,38)" rx="2" ry="2" />
+<text  x="207.06" y="927.5" ></text>
+</g>
+<g >
+<title>drm_syncobj_array_wait.constprop.0 (146,816,037 samples, 0.04%)</title><rect x="133.2" y="693" width="0.5" height="15.0" fill="rgb(235,91,52)" rx="2" ry="2" />
+<text  x="136.18" y="703.5" ></text>
+</g>
+<g >
+<title>__active_retire (55,348,851 samples, 0.02%)</title><rect x="394.3" y="853" width="0.2" height="15.0" fill="rgb(250,215,13)" rx="2" ry="2" />
+<text  x="397.31" y="863.5" ></text>
+</g>
+<g >
+<title>do_epoll_wait (124,437,083 samples, 0.03%)</title><rect x="43.4" y="853" width="0.4" height="15.0" fill="rgb(220,227,16)" rx="2" ry="2" />
+<text  x="46.37" y="863.5" ></text>
+</g>
+<g >
+<title>signal_irq_work (63,947,830 samples, 0.02%)</title><rect x="896.5" y="709" width="0.2" height="15.0" fill="rgb(245,21,39)" rx="2" ry="2" />
+<text  x="899.46" y="719.5" ></text>
+</g>
+<g >
+<title>common_nsleep (33,311,083 samples, 0.01%)</title><rect x="25.9" y="853" width="0.1" height="15.0" fill="rgb(227,1,48)" rx="2" ry="2" />
+<text  x="28.91" y="863.5" ></text>
+</g>
+<g >
+<title>mod_lruvec_page_state (62,913,759 samples, 0.02%)</title><rect x="595.6" y="741" width="0.2" height="15.0" fill="rgb(217,80,32)" rx="2" ry="2" />
+<text  x="598.59" y="751.5" ></text>
+</g>
+<g >
+<title>mozilla::detail::MutexImpl::lock (32,393,524 samples, 0.01%)</title><rect x="53.2" y="933" width="0.1" height="15.0" fill="rgb(246,160,38)" rx="2" ry="2" />
+<text  x="56.21" y="943.5" ></text>
+</g>
+<g >
+<title>___pthread_mutex_lock (48,927,532 samples, 0.01%)</title><rect x="16.7" y="917" width="0.2" height="15.0" fill="rgb(218,179,17)" rx="2" ry="2" />
+<text  x="19.71" y="927.5" ></text>
+</g>
+<g >
+<title>__fget_light (85,337,832 samples, 0.02%)</title><rect x="820.3" y="805" width="0.3" height="15.0" fill="rgb(216,95,23)" rx="2" ry="2" />
+<text  x="823.35" y="815.5" ></text>
+</g>
+<g >
+<title>fw_domains_get_with_fallback (50,602,820 samples, 0.01%)</title><rect x="373.9" y="757" width="0.2" height="15.0" fill="rgb(225,116,28)" rx="2" ry="2" />
+<text  x="376.93" y="767.5" ></text>
+</g>
+<g >
+<title>___sys_recvmsg (45,332,399 samples, 0.01%)</title><rect x="277.4" y="709" width="0.1" height="15.0" fill="rgb(238,219,11)" rx="2" ry="2" />
+<text  x="280.40" y="719.5" ></text>
+</g>
+<g >
+<title>__handle_irq_event_percpu (32,727,617 samples, 0.01%)</title><rect x="832.5" y="757" width="0.1" height="15.0" fill="rgb(217,123,46)" rx="2" ry="2" />
+<text  x="835.46" y="767.5" ></text>
+</g>
+<g >
+<title>[libcurl.so.4.8.0] (5,898,073,970 samples, 1.61%)</title><rect x="621.8" y="709" width="19.0" height="15.0" fill="rgb(241,122,26)" rx="2" ry="2" />
+<text  x="624.77" y="719.5" ></text>
+</g>
+<g >
+<title>[Xorg] (33,326,872 samples, 0.01%)</title><rect x="53.9" y="949" width="0.1" height="15.0" fill="rgb(238,154,46)" rx="2" ry="2" />
+<text  x="56.88" y="959.5" ></text>
+</g>
+<g >
+<title>[libglib-2.0.so.0.7303.0] (85,337,299 samples, 0.02%)</title><rect x="192.2" y="933" width="0.3" height="15.0" fill="rgb(216,18,10)" rx="2" ry="2" />
+<text  x="195.18" y="943.5" ></text>
+</g>
+<g >
+<title>schedule (36,994,960 samples, 0.01%)</title><rect x="1170.7" y="885" width="0.1" height="15.0" fill="rgb(211,109,3)" rx="2" ry="2" />
+<text  x="1173.67" y="895.5" ></text>
+</g>
+<g >
+<title>skcipher_walk_virt (296,534,483 samples, 0.08%)</title><rect x="411.2" y="821" width="1.0" height="15.0" fill="rgb(208,124,41)" rx="2" ry="2" />
+<text  x="414.22" y="831.5" ></text>
+</g>
+<g >
+<title>check_tsc_unstable (88,502,020 samples, 0.02%)</title><rect x="887.5" y="869" width="0.3" height="15.0" fill="rgb(234,189,2)" rx="2" ry="2" />
+<text  x="890.52" y="879.5" ></text>
+</g>
+<g >
+<title>psi_flags_change (45,775,532 samples, 0.01%)</title><rect x="1131.6" y="821" width="0.1" height="15.0" fill="rgb(225,179,42)" rx="2" ry="2" />
+<text  x="1134.56" y="831.5" ></text>
+</g>
+<g >
+<title>____sys_recvmsg (415,393,131 samples, 0.11%)</title><rect x="39.0" y="853" width="1.4" height="15.0" fill="rgb(207,29,45)" rx="2" ry="2" />
+<text  x="42.04" y="863.5" ></text>
+</g>
+<g >
+<title>main (39,096,757 samples, 0.01%)</title><rect x="1185.5" y="965" width="0.2" height="15.0" fill="rgb(245,148,25)" rx="2" ry="2" />
+<text  x="1188.55" y="975.5" ></text>
+</g>
+<g >
+<title>g_signal_emit_valist (119,856,136 samples, 0.03%)</title><rect x="1178.0" y="229" width="0.4" height="15.0" fill="rgb(251,145,23)" rx="2" ry="2" />
+<text  x="1181.02" y="239.5" ></text>
+</g>
+<g >
+<title>skcipher_walk_done (51,135,403 samples, 0.01%)</title><rect x="411.1" y="821" width="0.1" height="15.0" fill="rgb(239,117,11)" rx="2" ry="2" />
+<text  x="414.05" y="831.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (97,432,985 samples, 0.03%)</title><rect x="1162.8" y="853" width="0.3" height="15.0" fill="rgb(236,72,28)" rx="2" ry="2" />
+<text  x="1165.83" y="863.5" ></text>
+</g>
+<g >
+<title>update_load_avg (62,965,450 samples, 0.02%)</title><rect x="652.9" y="565" width="0.2" height="15.0" fill="rgb(245,228,52)" rx="2" ry="2" />
+<text  x="655.95" y="575.5" ></text>
+</g>
+<g >
+<title>__do_fault (98,242,601 samples, 0.03%)</title><rect x="146.2" y="837" width="0.3" height="15.0" fill="rgb(216,186,52)" rx="2" ry="2" />
+<text  x="149.22" y="847.5" ></text>
+</g>
+<g >
+<title>__alloc_skb (249,301,589 samples, 0.07%)</title><rect x="316.8" y="757" width="0.9" height="15.0" fill="rgb(244,228,27)" rx="2" ry="2" />
+<text  x="319.85" y="767.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (167,675,001 samples, 0.05%)</title><rect x="280.1" y="741" width="0.5" height="15.0" fill="rgb(234,146,5)" rx="2" ry="2" />
+<text  x="283.09" y="751.5" ></text>
+</g>
+<g >
+<title>handle_mm_fault (54,114,489 samples, 0.01%)</title><rect x="267.4" y="901" width="0.1" height="15.0" fill="rgb(242,165,10)" rx="2" ry="2" />
+<text  x="270.37" y="911.5" ></text>
+</g>
+<g >
+<title>iwl_mvm_tx_mpdu (36,512,771 samples, 0.01%)</title><rect x="325.7" y="453" width="0.1" height="15.0" fill="rgb(229,168,43)" rx="2" ry="2" />
+<text  x="328.73" y="463.5" ></text>
+</g>
+<g >
+<title>[libgdk-3.so.0.2404.30] (841,805,643 samples, 0.23%)</title><rect x="1171.5" y="789" width="2.7" height="15.0" fill="rgb(221,105,49)" rx="2" ry="2" />
+<text  x="1174.48" y="799.5" ></text>
+</g>
+<g >
+<title>__x64_sys_epoll_wait (550,501,179 samples, 0.15%)</title><rect x="229.4" y="933" width="1.8" height="15.0" fill="rgb(223,212,7)" rx="2" ry="2" />
+<text  x="232.41" y="943.5" ></text>
+</g>
+<g >
+<title>schedule (156,764,540 samples, 0.04%)</title><rect x="289.7" y="885" width="0.6" height="15.0" fill="rgb(236,142,36)" rx="2" ry="2" />
+<text  x="292.75" y="895.5" ></text>
+</g>
+<g >
+<title>g_main_loop_run (574,021,709 samples, 0.16%)</title><rect x="1186.4" y="933" width="1.9" height="15.0" fill="rgb(211,106,47)" rx="2" ry="2" />
+<text  x="1189.44" y="943.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (39,196,222 samples, 0.01%)</title><rect x="152.7" y="885" width="0.1" height="15.0" fill="rgb(218,19,13)" rx="2" ry="2" />
+<text  x="155.72" y="895.5" ></text>
+</g>
+<g >
+<title>schedule (127,413,095 samples, 0.03%)</title><rect x="731.5" y="885" width="0.4" height="15.0" fill="rgb(233,17,33)" rx="2" ry="2" />
+<text  x="734.49" y="895.5" ></text>
+</g>
+<g >
+<title>mem_cgroup_css_rstat_flush (113,728,111 samples, 0.03%)</title><rect x="751.3" y="661" width="0.4" height="15.0" fill="rgb(239,95,28)" rx="2" ry="2" />
+<text  x="754.30" y="671.5" ></text>
+</g>
+<g >
+<title>[libxcb.so.1.1.0] (102,767,500 samples, 0.03%)</title><rect x="277.4" y="805" width="0.3" height="15.0" fill="rgb(236,206,31)" rx="2" ry="2" />
+<text  x="280.35" y="815.5" ></text>
+</g>
+<g >
+<title>native_read_msr (64,211,075 samples, 0.02%)</title><rect x="909.9" y="709" width="0.2" height="15.0" fill="rgb(239,101,11)" rx="2" ry="2" />
+<text  x="912.92" y="719.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (186,164,977 samples, 0.05%)</title><rect x="1177.8" y="517" width="0.6" height="15.0" fill="rgb(251,162,15)" rx="2" ry="2" />
+<text  x="1180.84" y="527.5" ></text>
+</g>
+<g >
+<title>shmem_read_mapping_page_gfp (356,291,773 samples, 0.10%)</title><rect x="234.4" y="773" width="1.2" height="15.0" fill="rgb(250,22,5)" rx="2" ry="2" />
+<text  x="237.44" y="783.5" ></text>
+</g>
+<g >
+<title>drm_ioctl_kernel (85,910,318 samples, 0.02%)</title><rect x="1163.7" y="565" width="0.2" height="15.0" fill="rgb(234,12,35)" rx="2" ry="2" />
+<text  x="1166.65" y="575.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (4,079,022,553 samples, 1.11%)</title><rect x="481.5" y="853" width="13.1" height="15.0" fill="rgb(214,11,39)" rx="2" ry="2" />
+<text  x="484.50" y="863.5" ></text>
+</g>
+<g >
+<title>prune_dcache_sb (77,344,345 samples, 0.02%)</title><rect x="381.9" y="837" width="0.3" height="15.0" fill="rgb(228,156,27)" rx="2" ry="2" />
+<text  x="384.93" y="847.5" ></text>
+</g>
+<g >
+<title>ep_poll_callback (32,189,536 samples, 0.01%)</title><rect x="93.9" y="773" width="0.1" height="15.0" fill="rgb(248,123,40)" rx="2" ry="2" />
+<text  x="96.88" y="783.5" ></text>
+</g>
+<g >
+<title>dmcrypt_write (710,432,192 samples, 0.19%)</title><rect x="244.5" y="933" width="2.3" height="15.0" fill="rgb(230,172,48)" rx="2" ry="2" />
+<text  x="247.55" y="943.5" ></text>
+</g>
+<g >
+<title>skcipher_walk_next (82,659,605 samples, 0.02%)</title><rect x="431.9" y="805" width="0.3" height="15.0" fill="rgb(218,96,46)" rx="2" ry="2" />
+<text  x="434.94" y="815.5" ></text>
+</g>
+<g >
+<title>do_iter_readv_writev (301,801,584 samples, 0.08%)</title><rect x="19.2" y="725" width="1.0" height="15.0" fill="rgb(254,15,25)" rx="2" ry="2" />
+<text  x="22.22" y="735.5" ></text>
+</g>
+<g >
+<title>[xfce4-panel] (824,010,865 samples, 0.22%)</title><rect x="1171.5" y="693" width="2.6" height="15.0" fill="rgb(220,82,47)" rx="2" ry="2" />
+<text  x="1174.50" y="703.5" ></text>
+</g>
+<g >
+<title>[libcairo.so.2.11706.0] (81,168,605 samples, 0.02%)</title><rect x="1176.3" y="917" width="0.3" height="15.0" fill="rgb(242,111,11)" rx="2" ry="2" />
+<text  x="1179.34" y="927.5" ></text>
+</g>
+<g >
+<title>__mod_node_page_state (117,567,543 samples, 0.03%)</title><rect x="702.5" y="661" width="0.4" height="15.0" fill="rgb(229,221,23)" rx="2" ry="2" />
+<text  x="705.50" y="671.5" ></text>
+</g>
+<g >
+<title>napi_gro_complete.constprop.0 (664,057,622 samples, 0.18%)</title><rect x="319.4" y="757" width="2.1" height="15.0" fill="rgb(228,115,54)" rx="2" ry="2" />
+<text  x="322.41" y="767.5" ></text>
+</g>
+<g >
+<title>[libEGL_mesa.so.0.0.0] (718,115,013 samples, 0.20%)</title><rect x="1163.2" y="853" width="2.3" height="15.0" fill="rgb(250,77,21)" rx="2" ry="2" />
+<text  x="1166.21" y="863.5" ></text>
+</g>
+<g >
+<title>pick_next_entity (46,573,661 samples, 0.01%)</title><rect x="1148.9" y="853" width="0.2" height="15.0" fill="rgb(226,109,28)" rx="2" ry="2" />
+<text  x="1151.94" y="863.5" ></text>
+</g>
+<g >
+<title>syscall_return_via_sysret (39,823,617 samples, 0.01%)</title><rect x="725.7" y="885" width="0.1" height="15.0" fill="rgb(240,24,7)" rx="2" ry="2" />
+<text  x="728.71" y="895.5" ></text>
+</g>
+<g >
+<title>reader_loop (114,353,481 samples, 0.03%)</title><rect x="243.4" y="901" width="0.4" height="15.0" fill="rgb(243,6,44)" rx="2" ry="2" />
+<text  x="246.39" y="911.5" ></text>
+</g>
+<g >
+<title>backend_pread (329,454,028 samples, 0.09%)</title><rect x="667.9" y="853" width="1.0" height="15.0" fill="rgb(243,17,49)" rx="2" ry="2" />
+<text  x="670.86" y="863.5" ></text>
+</g>
+<g >
+<title>process_one_work (44,489,148 samples, 0.01%)</title><rect x="386.9" y="917" width="0.2" height="15.0" fill="rgb(246,108,9)" rx="2" ry="2" />
+<text  x="389.94" y="927.5" ></text>
+</g>
+<g >
+<title>mod_lruvec_page_state (69,013,652 samples, 0.02%)</title><rect x="389.8" y="805" width="0.2" height="15.0" fill="rgb(225,169,22)" rx="2" ry="2" />
+<text  x="392.77" y="815.5" ></text>
+</g>
+<g >
+<title>intel_engine_irq_enable (47,810,979 samples, 0.01%)</title><rect x="232.9" y="693" width="0.2" height="15.0" fill="rgb(215,88,13)" rx="2" ry="2" />
+<text  x="235.92" y="703.5" ></text>
+</g>
+<g >
+<title>percpu_counter_add_batch (43,203,811 samples, 0.01%)</title><rect x="388.0" y="805" width="0.1" height="15.0" fill="rgb(237,121,53)" rx="2" ry="2" />
+<text  x="390.99" y="815.5" ></text>
+</g>
+<g >
+<title>run_ksoftirqd (1,436,872,703 samples, 0.39%)</title><rect x="347.1" y="917" width="4.6" height="15.0" fill="rgb(224,75,19)" rx="2" ry="2" />
+<text  x="350.08" y="927.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (86,799,715 samples, 0.02%)</title><rect x="1174.2" y="789" width="0.3" height="15.0" fill="rgb(252,41,29)" rx="2" ry="2" />
+<text  x="1177.20" y="799.5" ></text>
+</g>
+<g >
+<title>sg_init_table (145,617,869 samples, 0.04%)</title><rect x="475.8" y="869" width="0.5" height="15.0" fill="rgb(234,23,19)" rx="2" ry="2" />
+<text  x="478.79" y="879.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (227,339,888 samples, 0.06%)</title><rect x="647.6" y="741" width="0.7" height="15.0" fill="rgb(245,107,52)" rx="2" ry="2" />
+<text  x="650.61" y="751.5" ></text>
+</g>
+<g >
+<title>perf (18,532,134,851 samples, 5.06%)</title><rect x="669.1" y="981" width="59.7" height="15.0" fill="rgb(219,64,29)" rx="2" ry="2" />
+<text  x="672.10" y="991.5" >perf</text>
+</g>
+<g >
+<title>asm_sysvec_apic_timer_interrupt (36,966,740 samples, 0.01%)</title><rect x="685.7" y="741" width="0.1" height="15.0" fill="rgb(237,146,38)" rx="2" ry="2" />
+<text  x="688.65" y="751.5" ></text>
+</g>
+<g >
+<title>ttwu_do_activate (308,347,850 samples, 0.08%)</title><rect x="893.8" y="757" width="1.0" height="15.0" fill="rgb(243,188,8)" rx="2" ry="2" />
+<text  x="896.76" y="767.5" ></text>
+</g>
+<g >
+<title>[firefox] (53,686,723 samples, 0.01%)</title><rect x="172.9" y="885" width="0.2" height="15.0" fill="rgb(232,76,31)" rx="2" ry="2" />
+<text  x="175.91" y="895.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (52,361,918 samples, 0.01%)</title><rect x="1163.0" y="789" width="0.1" height="15.0" fill="rgb(244,107,52)" rx="2" ry="2" />
+<text  x="1165.97" y="799.5" ></text>
+</g>
+<g >
+<title>do_iter_write (72,958,389 samples, 0.02%)</title><rect x="145.2" y="725" width="0.2" height="15.0" fill="rgb(213,127,54)" rx="2" ry="2" />
+<text  x="148.15" y="735.5" ></text>
+</g>
+<g >
+<title>kworker/u16:7 (5,363,622,659 samples, 1.46%)</title><rect x="557.1" y="981" width="17.2" height="15.0" fill="rgb(244,43,5)" rx="2" ry="2" />
+<text  x="560.07" y="991.5" ></text>
+</g>
+<g >
+<title>_aesni_enc1 (87,468,393 samples, 0.02%)</title><rect x="466.3" y="805" width="0.2" height="15.0" fill="rgb(224,112,3)" rx="2" ry="2" />
+<text  x="469.25" y="815.5" ></text>
+</g>
+<g >
+<title>schedule (118,313,862 samples, 0.03%)</title><rect x="295.9" y="853" width="0.4" height="15.0" fill="rgb(240,187,25)" rx="2" ry="2" />
+<text  x="298.88" y="863.5" ></text>
+</g>
+<g >
+<title>____sys_recvmsg (35,805,999 samples, 0.01%)</title><rect x="1165.7" y="549" width="0.2" height="15.0" fill="rgb(231,218,8)" rx="2" ry="2" />
+<text  x="1168.74" y="559.5" ></text>
+</g>
+<g >
+<title>rs_drv_mac80211_tx_status (538,436,931 samples, 0.15%)</title><rect x="312.5" y="693" width="1.8" height="15.0" fill="rgb(246,38,5)" rx="2" ry="2" />
+<text  x="315.54" y="703.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (81,195,933 samples, 0.02%)</title><rect x="1172.3" y="85" width="0.2" height="15.0" fill="rgb(226,184,22)" rx="2" ry="2" />
+<text  x="1175.28" y="95.5" ></text>
+</g>
+<g >
+<title>netif_receive_skb_list_internal (84,098,121 samples, 0.02%)</title><rect x="309.1" y="709" width="0.2" height="15.0" fill="rgb(210,124,16)" rx="2" ry="2" />
+<text  x="312.07" y="719.5" ></text>
+</g>
+<g >
+<title>rs_pretty_rate (205,449,043 samples, 0.06%)</title><rect x="313.4" y="661" width="0.7" height="15.0" fill="rgb(239,221,7)" rx="2" ry="2" />
+<text  x="316.42" y="671.5" ></text>
+</g>
+<g >
+<title>evmap_io_active_ (68,494,979 samples, 0.02%)</title><rect x="36.3" y="917" width="0.3" height="15.0" fill="rgb(237,85,51)" rx="2" ry="2" />
+<text  x="39.33" y="927.5" ></text>
+</g>
+<g >
+<title>iomap_do_writepage (283,395,566 samples, 0.08%)</title><rect x="419.1" y="757" width="0.9" height="15.0" fill="rgb(246,201,19)" rx="2" ry="2" />
+<text  x="422.13" y="767.5" ></text>
+</g>
+<g >
+<title>[libcurl.so.4.8.0] (64,829,690 samples, 0.02%)</title><rect x="667.9" y="709" width="0.2" height="15.0" fill="rgb(249,168,14)" rx="2" ry="2" />
+<text  x="670.86" y="719.5" ></text>
+</g>
+<g >
+<title>xfs_end_ioend (47,825,313 samples, 0.01%)</title><rect x="396.2" y="885" width="0.1" height="15.0" fill="rgb(211,19,54)" rx="2" ry="2" />
+<text  x="399.16" y="895.5" ></text>
+</g>
+<g >
+<title>do_writepages (639,404,275 samples, 0.17%)</title><rect x="476.9" y="821" width="2.1" height="15.0" fill="rgb(239,145,34)" rx="2" ry="2" />
+<text  x="479.90" y="831.5" ></text>
+</g>
+<g >
+<title>[git] (49,495,390 samples, 0.01%)</title><rect x="285.3" y="805" width="0.2" height="15.0" fill="rgb(251,154,13)" rx="2" ry="2" />
+<text  x="288.31" y="815.5" ></text>
+</g>
+<g >
+<title>memset_erms (89,701,350 samples, 0.02%)</title><rect x="571.0" y="853" width="0.2" height="15.0" fill="rgb(208,128,30)" rx="2" ry="2" />
+<text  x="573.96" y="863.5" ></text>
+</g>
+<g >
+<title>worker_thread (7,089,654,641 samples, 1.93%)</title><rect x="574.3" y="933" width="22.9" height="15.0" fill="rgb(250,157,46)" rx="2" ry="2" />
+<text  x="577.34" y="943.5" >w..</text>
+</g>
+<g >
+<title>__free (33,731,112 samples, 0.01%)</title><rect x="640.8" y="709" width="0.2" height="15.0" fill="rgb(250,128,49)" rx="2" ry="2" />
+<text  x="643.85" y="719.5" ></text>
+</g>
+<g >
+<title>[Xorg] (189,324,035 samples, 0.05%)</title><rect x="201.8" y="821" width="0.7" height="15.0" fill="rgb(227,52,0)" rx="2" ry="2" />
+<text  x="204.85" y="831.5" ></text>
+</g>
+<g >
+<title>wb_writeback (559,015,501 samples, 0.15%)</title><rect x="595.3" y="885" width="1.8" height="15.0" fill="rgb(238,205,4)" rx="2" ry="2" />
+<text  x="598.31" y="895.5" ></text>
+</g>
+<g >
+<title>pick_next_task_fair (49,937,958 samples, 0.01%)</title><rect x="727.9" y="821" width="0.1" height="15.0" fill="rgb(214,166,20)" rx="2" ry="2" />
+<text  x="730.87" y="831.5" ></text>
+</g>
+<g >
+<title>xfs_end_ioend (43,528,557 samples, 0.01%)</title><rect x="386.9" y="885" width="0.2" height="15.0" fill="rgb(227,101,12)" rx="2" ry="2" />
+<text  x="389.94" y="895.5" ></text>
+</g>
+<g >
+<title>[firefox] (31,525,705 samples, 0.01%)</title><rect x="42.5" y="901" width="0.1" height="15.0" fill="rgb(224,176,12)" rx="2" ry="2" />
+<text  x="45.49" y="911.5" ></text>
+</g>
+<g >
+<title>[unknown] (79,384,805 samples, 0.02%)</title><rect x="25.6" y="965" width="0.2" height="15.0" fill="rgb(227,38,34)" rx="2" ry="2" />
+<text  x="28.57" y="975.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (379,250,188 samples, 0.10%)</title><rect x="516.9" y="853" width="1.2" height="15.0" fill="rgb(242,196,25)" rx="2" ry="2" />
+<text  x="519.91" y="863.5" ></text>
+</g>
+<g >
+<title>nft_do_chain_inet (177,548,731 samples, 0.05%)</title><rect x="662.2" y="469" width="0.6" height="15.0" fill="rgb(247,65,30)" rx="2" ry="2" />
+<text  x="665.23" y="479.5" ></text>
+</g>
+<g >
+<title>update_load_avg (40,597,447 samples, 0.01%)</title><rect x="821.9" y="725" width="0.1" height="15.0" fill="rgb(223,146,15)" rx="2" ry="2" />
+<text  x="824.92" y="735.5" ></text>
+</g>
+<g >
+<title>g_signal_emit_valist (35,573,392 samples, 0.01%)</title><rect x="1181.4" y="805" width="0.1" height="15.0" fill="rgb(242,17,39)" rx="2" ry="2" />
+<text  x="1184.38" y="815.5" ></text>
+</g>
+<g >
+<title>do_iter_readv_writev (73,870,740 samples, 0.02%)</title><rect x="1189.2" y="885" width="0.3" height="15.0" fill="rgb(220,197,29)" rx="2" ry="2" />
+<text  x="1192.23" y="895.5" ></text>
+</g>
+<g >
+<title>sg_init_table (166,898,798 samples, 0.05%)</title><rect x="593.9" y="869" width="0.6" height="15.0" fill="rgb(240,218,6)" rx="2" ry="2" />
+<text  x="596.94" y="879.5" ></text>
+</g>
+<g >
+<title>[libxul.so] (151,066,694 samples, 0.04%)</title><rect x="84.5" y="933" width="0.5" height="15.0" fill="rgb(251,3,26)" rx="2" ry="2" />
+<text  x="87.47" y="943.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (85,436,528 samples, 0.02%)</title><rect x="290.3" y="901" width="0.2" height="15.0" fill="rgb(219,53,48)" rx="2" ry="2" />
+<text  x="293.27" y="911.5" ></text>
+</g>
+<g >
+<title>pipewire (899,508,668 samples, 0.25%)</title><rect x="732.5" y="981" width="2.9" height="15.0" fill="rgb(235,166,42)" rx="2" ry="2" />
+<text  x="735.55" y="991.5" ></text>
+</g>
+<g >
+<title>qemu_mutex_lock_impl (34,521,085 samples, 0.01%)</title><rect x="816.1" y="901" width="0.1" height="15.0" fill="rgb(242,32,23)" rx="2" ry="2" />
+<text  x="819.11" y="911.5" ></text>
+</g>
+<g >
+<title>__mod_zone_page_state (123,565,392 samples, 0.03%)</title><rect x="703.6" y="677" width="0.4" height="15.0" fill="rgb(239,7,8)" rx="2" ry="2" />
+<text  x="706.61" y="687.5" ></text>
+</g>
+<g >
+<title>Xorg (13,944,360,461 samples, 3.80%)</title><rect x="198.4" y="981" width="44.9" height="15.0" fill="rgb(242,47,43)" rx="2" ry="2" />
+<text  x="201.39" y="991.5" >Xorg</text>
+</g>
+<g >
+<title>skcipher_walk_virt (248,990,962 samples, 0.07%)</title><rect x="470.9" y="821" width="0.9" height="15.0" fill="rgb(235,90,9)" rx="2" ry="2" />
+<text  x="473.95" y="831.5" ></text>
+</g>
+<g >
+<title>sysprof_collector_mark_vprintf (53,932,327 samples, 0.01%)</title><rect x="100.4" y="885" width="0.2" height="15.0" fill="rgb(236,107,26)" rx="2" ry="2" />
+<text  x="103.38" y="895.5" ></text>
+</g>
+<g >
+<title>iwl_pcie_rx_alloc_page (99,183,920 samples, 0.03%)</title><rect x="613.2" y="885" width="0.4" height="15.0" fill="rgb(225,189,42)" rx="2" ry="2" />
+<text  x="616.25" y="895.5" ></text>
+</g>
+<g >
+<title>sysvec_irq_work (94,965,870 samples, 0.03%)</title><rect x="133.3" y="613" width="0.3" height="15.0" fill="rgb(214,206,41)" rx="2" ry="2" />
+<text  x="136.29" y="623.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (50,462,896 samples, 0.01%)</title><rect x="132.0" y="741" width="0.1" height="15.0" fill="rgb(226,65,3)" rx="2" ry="2" />
+<text  x="134.99" y="751.5" ></text>
+</g>
+<g >
+<title>__schedule (965,552,646 samples, 0.26%)</title><rect x="651.9" y="613" width="3.1" height="15.0" fill="rgb(240,217,40)" rx="2" ry="2" />
+<text  x="654.87" y="623.5" ></text>
+</g>
+<g >
+<title>[libxul.so] (348,825,436 samples, 0.10%)</title><rect x="112.8" y="933" width="1.1" height="15.0" fill="rgb(216,170,6)" rx="2" ry="2" />
+<text  x="115.76" y="943.5" ></text>
+</g>
+<g >
+<title>drm_syncobj_array_find (57,941,689 samples, 0.02%)</title><rect x="133.0" y="693" width="0.2" height="15.0" fill="rgb(222,165,39)" rx="2" ry="2" />
+<text  x="135.98" y="703.5" ></text>
+</g>
+<g >
+<title>do_sched_yield (49,577,692 samples, 0.01%)</title><rect x="289.6" y="885" width="0.1" height="15.0" fill="rgb(214,142,32)" rx="2" ry="2" />
+<text  x="292.59" y="895.5" ></text>
+</g>
+<g >
+<title>simd_skcipher_encrypt (122,457,314 samples, 0.03%)</title><rect x="610.0" y="853" width="0.4" height="15.0" fill="rgb(209,35,15)" rx="2" ry="2" />
+<text  x="613.03" y="863.5" ></text>
+</g>
+<g >
+<title>rcu_is_cpu_rrupt_from_idle (35,981,542 samples, 0.01%)</title><rect x="909.3" y="725" width="0.2" height="15.0" fill="rgb(226,119,28)" rx="2" ry="2" />
+<text  x="912.35" y="735.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_apic_timer_interrupt (35,624,001 samples, 0.01%)</title><rect x="116.9" y="965" width="0.1" height="15.0" fill="rgb(205,151,33)" rx="2" ry="2" />
+<text  x="119.86" y="975.5" ></text>
+</g>
+<g >
+<title>iv_of_dmreq (392,454,843 samples, 0.11%)</title><rect x="498.9" y="869" width="1.3" height="15.0" fill="rgb(247,37,0)" rx="2" ry="2" />
+<text  x="501.94" y="879.5" ></text>
+</g>
+<g >
+<title>g_main_context_dispatch (487,841,325 samples, 0.13%)</title><rect x="1186.6" y="901" width="1.6" height="15.0" fill="rgb(221,23,18)" rx="2" ry="2" />
+<text  x="1189.58" y="911.5" ></text>
+</g>
+<g >
+<title>[unknown] (58,219,847 samples, 0.02%)</title><rect x="1170.1" y="965" width="0.2" height="15.0" fill="rgb(205,51,53)" rx="2" ry="2" />
+<text  x="1173.10" y="975.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (51,718,684 samples, 0.01%)</title><rect x="1164.0" y="661" width="0.1" height="15.0" fill="rgb(206,121,3)" rx="2" ry="2" />
+<text  x="1166.98" y="671.5" ></text>
+</g>
+<g >
+<title>rebalance_domains (44,438,474 samples, 0.01%)</title><rect x="833.0" y="773" width="0.1" height="15.0" fill="rgb(220,41,16)" rx="2" ry="2" />
+<text  x="835.99" y="783.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (117,533,683 samples, 0.03%)</title><rect x="1165.5" y="789" width="0.4" height="15.0" fill="rgb(215,146,34)" rx="2" ry="2" />
+<text  x="1168.55" y="799.5" ></text>
+</g>
+<g >
+<title>do_sys_poll (1,169,374,734 samples, 0.32%)</title><rect x="820.0" y="821" width="3.8" height="15.0" fill="rgb(223,31,15)" rx="2" ry="2" />
+<text  x="823.02" y="831.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (174,141,463 samples, 0.05%)</title><rect x="197.6" y="965" width="0.6" height="15.0" fill="rgb(232,28,41)" rx="2" ry="2" />
+<text  x="200.63" y="975.5" ></text>
+</g>
+<g >
+<title>tcp_recvmsg (113,047,765 samples, 0.03%)</title><rect x="737.0" y="597" width="0.4" height="15.0" fill="rgb(248,3,29)" rx="2" ry="2" />
+<text  x="740.04" y="607.5" ></text>
+</g>
+<g >
+<title>process_one_work (164,455,217 samples, 0.04%)</title><rect x="395.8" y="917" width="0.5" height="15.0" fill="rgb(211,83,1)" rx="2" ry="2" />
+<text  x="398.78" y="927.5" ></text>
+</g>
+<g >
+<title>___pthread_mutex_lock (75,320,148 samples, 0.02%)</title><rect x="297.6" y="917" width="0.2" height="15.0" fill="rgb(251,75,35)" rx="2" ry="2" />
+<text  x="300.57" y="927.5" ></text>
+</g>
+<g >
+<title>skcipher_walk_done (55,313,118 samples, 0.02%)</title><rect x="493.3" y="821" width="0.2" height="15.0" fill="rgb(212,52,3)" rx="2" ry="2" />
+<text  x="496.32" y="831.5" ></text>
+</g>
+<g >
+<title>percpu_counter_add_batch (36,723,084 samples, 0.01%)</title><rect x="393.5" y="805" width="0.1" height="15.0" fill="rgb(229,32,15)" rx="2" ry="2" />
+<text  x="396.52" y="815.5" ></text>
+</g>
+<g >
+<title>tty_poll (356,633,767 samples, 0.10%)</title><rect x="1183.5" y="901" width="1.2" height="15.0" fill="rgb(254,144,8)" rx="2" ry="2" />
+<text  x="1186.54" y="911.5" ></text>
+</g>
+<g >
+<title>g_main_context_dispatch (1,352,143,558 samples, 0.37%)</title><rect x="1177.3" y="901" width="4.3" height="15.0" fill="rgb(213,201,43)" rx="2" ry="2" />
+<text  x="1180.27" y="911.5" ></text>
+</g>
+<g >
+<title>skcipher_walk_next (110,813,993 samples, 0.03%)</title><rect x="494.3" y="805" width="0.3" height="15.0" fill="rgb(245,15,50)" rx="2" ry="2" />
+<text  x="497.27" y="815.5" ></text>
+</g>
+<g >
+<title>fence_work (59,794,039 samples, 0.02%)</title><rect x="235.6" y="789" width="0.2" height="15.0" fill="rgb(245,147,51)" rx="2" ry="2" />
+<text  x="238.60" y="799.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (74,368,093 samples, 0.02%)</title><rect x="267.4" y="949" width="0.2" height="15.0" fill="rgb(247,178,50)" rx="2" ry="2" />
+<text  x="270.35" y="959.5" ></text>
+</g>
+<g >
+<title>__alloc_skb (39,359,375 samples, 0.01%)</title><rect x="625.8" y="533" width="0.1" height="15.0" fill="rgb(228,184,31)" rx="2" ry="2" />
+<text  x="628.78" y="543.5" ></text>
+</g>
+<g >
+<title>clockevents_program_event (63,978,329 samples, 0.02%)</title><rect x="1156.5" y="837" width="0.3" height="15.0" fill="rgb(231,189,47)" rx="2" ry="2" />
+<text  x="1159.55" y="847.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (165,661,312 samples, 0.05%)</title><rect x="197.7" y="917" width="0.5" height="15.0" fill="rgb(219,140,23)" rx="2" ry="2" />
+<text  x="200.66" y="927.5" ></text>
+</g>
+<g >
+<title>sock_poll (89,026,803 samples, 0.02%)</title><rect x="823.5" y="805" width="0.3" height="15.0" fill="rgb(225,81,14)" rx="2" ry="2" />
+<text  x="826.50" y="815.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (200,890,806 samples, 0.05%)</title><rect x="222.4" y="773" width="0.7" height="15.0" fill="rgb(227,206,27)" rx="2" ry="2" />
+<text  x="225.43" y="783.5" ></text>
+</g>
+<g >
+<title>futex_wait (538,152,272 samples, 0.15%)</title><rect x="816.7" y="789" width="1.7" height="15.0" fill="rgb(216,32,30)" rx="2" ry="2" />
+<text  x="819.69" y="799.5" ></text>
+</g>
+<g >
+<title>loopback_xmit (48,636,801 samples, 0.01%)</title><rect x="660.2" y="581" width="0.1" height="15.0" fill="rgb(250,200,35)" rx="2" ry="2" />
+<text  x="663.15" y="591.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (50,828,556 samples, 0.01%)</title><rect x="237.3" y="725" width="0.1" height="15.0" fill="rgb(239,133,18)" rx="2" ry="2" />
+<text  x="240.27" y="735.5" ></text>
+</g>
+<g >
+<title>netif_receive_skb_list_internal (614,350,709 samples, 0.17%)</title><rect x="319.5" y="741" width="2.0" height="15.0" fill="rgb(238,228,6)" rx="2" ry="2" />
+<text  x="322.53" y="751.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (6,724,874,669 samples, 1.83%)</title><rect x="503.1" y="965" width="21.7" height="15.0" fill="rgb(250,181,30)" rx="2" ry="2" />
+<text  x="506.11" y="975.5" >r..</text>
+</g>
+<g >
+<title>pick_next_task_fair (64,601,676 samples, 0.02%)</title><rect x="149.3" y="773" width="0.2" height="15.0" fill="rgb(224,174,27)" rx="2" ry="2" />
+<text  x="152.29" y="783.5" ></text>
+</g>
+<g >
+<title>__folio_end_writeback (311,662,485 samples, 0.09%)</title><rect x="389.2" y="821" width="1.0" height="15.0" fill="rgb(228,112,10)" rx="2" ry="2" />
+<text  x="392.23" y="831.5" ></text>
+</g>
+<g >
+<title>switch_mm_irqs_off (56,382,380 samples, 0.02%)</title><rect x="880.9" y="821" width="0.1" height="15.0" fill="rgb(224,48,44)" rx="2" ry="2" />
+<text  x="883.87" y="831.5" ></text>
+</g>
+<g >
+<title>[Xorg] (387,858,724 samples, 0.11%)</title><rect x="216.9" y="901" width="1.3" height="15.0" fill="rgb(214,117,46)" rx="2" ry="2" />
+<text  x="219.91" y="911.5" ></text>
+</g>
+<g >
+<title>[firefox] (65,039,949 samples, 0.02%)</title><rect x="174.2" y="901" width="0.2" height="15.0" fill="rgb(206,136,21)" rx="2" ry="2" />
+<text  x="177.18" y="911.5" ></text>
+</g>
+<g >
+<title>__mod_zone_page_state (136,294,617 samples, 0.04%)</title><rect x="717.5" y="725" width="0.4" height="15.0" fill="rgb(205,115,50)" rx="2" ry="2" />
+<text  x="720.46" y="735.5" ></text>
+</g>
+<g >
+<title>radix_tree_gang_lookup_tag (179,530,043 samples, 0.05%)</title><rect x="381.2" y="805" width="0.6" height="15.0" fill="rgb(214,47,4)" rx="2" ry="2" />
+<text  x="384.21" y="815.5" ></text>
+</g>
+<g >
+<title>trigger_load_balance (32,528,044 samples, 0.01%)</title><rect x="912.4" y="741" width="0.1" height="15.0" fill="rgb(247,222,21)" rx="2" ry="2" />
+<text  x="915.37" y="751.5" ></text>
+</g>
+<g >
+<title>__memcpy_avx_unaligned_erms (145,208,192 samples, 0.04%)</title><rect x="641.7" y="677" width="0.5" height="15.0" fill="rgb(217,74,46)" rx="2" ry="2" />
+<text  x="644.68" y="687.5" ></text>
+</g>
+<g >
+<title>__libc_read (97,215,171 samples, 0.03%)</title><rect x="825.5" y="869" width="0.3" height="15.0" fill="rgb(242,215,25)" rx="2" ry="2" />
+<text  x="828.52" y="879.5" ></text>
+</g>
+<g >
+<title>xfs_end_io (257,699,142 samples, 0.07%)</title><rect x="388.2" y="901" width="0.8" height="15.0" fill="rgb(247,161,29)" rx="2" ry="2" />
+<text  x="391.20" y="911.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (31,401,405 samples, 0.01%)</title><rect x="1169.8" y="933" width="0.1" height="15.0" fill="rgb(251,174,29)" rx="2" ry="2" />
+<text  x="1172.76" y="943.5" ></text>
+</g>
+<g >
+<title>rb_erase (32,891,406 samples, 0.01%)</title><rect x="1149.4" y="837" width="0.2" height="15.0" fill="rgb(221,141,4)" rx="2" ry="2" />
+<text  x="1152.45" y="847.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (1,337,660,088 samples, 0.36%)</title><rect x="819.9" y="853" width="4.3" height="15.0" fill="rgb(208,32,37)" rx="2" ry="2" />
+<text  x="822.93" y="863.5" ></text>
+</g>
+<g >
+<title>tick_sched_timer (157,334,877 samples, 0.04%)</title><rect x="813.8" y="757" width="0.5" height="15.0" fill="rgb(207,29,20)" rx="2" ry="2" />
+<text  x="816.80" y="767.5" ></text>
+</g>
+<g >
+<title>[git] (57,415,662 samples, 0.02%)</title><rect x="285.3" y="821" width="0.2" height="15.0" fill="rgb(243,192,16)" rx="2" ry="2" />
+<text  x="288.30" y="831.5" ></text>
+</g>
+<g >
+<title>balance_pgdat (9,570,307,090 samples, 2.61%)</title><rect x="351.9" y="917" width="30.8" height="15.0" fill="rgb(214,126,12)" rx="2" ry="2" />
+<text  x="354.86" y="927.5" >ba..</text>
+</g>
+<g >
+<title>g_main_context_prepare (142,981,781 samples, 0.04%)</title><rect x="828.0" y="885" width="0.5" height="15.0" fill="rgb(230,196,6)" rx="2" ry="2" />
+<text  x="831.00" y="895.5" ></text>
+</g>
+<g >
+<title>engine_retire (67,284,882 samples, 0.02%)</title><rect x="395.9" y="901" width="0.3" height="15.0" fill="rgb(240,46,54)" rx="2" ry="2" />
+<text  x="398.93" y="911.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (86,159,535 samples, 0.02%)</title><rect x="200.7" y="821" width="0.3" height="15.0" fill="rgb(231,55,10)" rx="2" ry="2" />
+<text  x="203.70" y="831.5" ></text>
+</g>
+<g >
+<title>process_one_work (5,663,331,780 samples, 1.55%)</title><rect x="460.7" y="917" width="18.3" height="15.0" fill="rgb(254,180,22)" rx="2" ry="2" />
+<text  x="463.73" y="927.5" ></text>
+</g>
+<g >
+<title>ip_sublist_rcv (79,534,336 samples, 0.02%)</title><rect x="309.1" y="661" width="0.2" height="15.0" fill="rgb(231,212,23)" rx="2" ry="2" />
+<text  x="312.08" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (182,718,104 samples, 0.05%)</title><rect x="647.8" y="725" width="0.5" height="15.0" fill="rgb(251,71,43)" rx="2" ry="2" />
+<text  x="650.75" y="735.5" ></text>
+</g>
+<g >
+<title>mod_lruvec_page_state (102,188,584 samples, 0.03%)</title><rect x="458.3" y="741" width="0.3" height="15.0" fill="rgb(244,0,5)" rx="2" ry="2" />
+<text  x="461.32" y="751.5" ></text>
+</g>
+<g >
+<title>psi_group_change (56,856,791 samples, 0.02%)</title><rect x="35.5" y="773" width="0.2" height="15.0" fill="rgb(246,49,9)" rx="2" ry="2" />
+<text  x="38.49" y="783.5" ></text>
+</g>
+<g >
+<title>__x64_sys_futex (145,327,064 samples, 0.04%)</title><rect x="174.5" y="901" width="0.5" height="15.0" fill="rgb(223,52,41)" rx="2" ry="2" />
+<text  x="177.51" y="911.5" ></text>
+</g>
+<g >
+<title>tcp_v4_rcv (249,395,678 samples, 0.07%)</title><rect x="320.1" y="629" width="0.8" height="15.0" fill="rgb(230,2,8)" rx="2" ry="2" />
+<text  x="323.05" y="639.5" ></text>
+</g>
+<g >
+<title>xfs_vm_writepages (556,378,877 samples, 0.15%)</title><rect x="595.3" y="805" width="1.8" height="15.0" fill="rgb(230,180,39)" rx="2" ry="2" />
+<text  x="598.32" y="815.5" ></text>
+</g>
+<g >
+<title>folio_batch_move_lru (84,765,523 samples, 0.02%)</title><rect x="344.4" y="853" width="0.3" height="15.0" fill="rgb(231,148,34)" rx="2" ry="2" />
+<text  x="347.44" y="863.5" ></text>
+</g>
+<g >
+<title>__folio_end_writeback (216,158,797 samples, 0.06%)</title><rect x="388.3" y="821" width="0.7" height="15.0" fill="rgb(244,148,23)" rx="2" ry="2" />
+<text  x="391.33" y="831.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (252,561,236 samples, 0.07%)</title><rect x="224.4" y="949" width="0.8" height="15.0" fill="rgb(243,130,9)" rx="2" ry="2" />
+<text  x="227.43" y="959.5" ></text>
+</g>
+<g >
+<title>e1000_check_for_copper_link_ich8lan (42,218,776 samples, 0.01%)</title><rect x="390.3" y="869" width="0.2" height="15.0" fill="rgb(206,165,53)" rx="2" ry="2" />
+<text  x="393.35" y="879.5" ></text>
+</g>
+<g >
+<title>__wake_up_common_lock (207,854,441 samples, 0.06%)</title><rect x="47.9" y="757" width="0.7" height="15.0" fill="rgb(219,156,40)" rx="2" ry="2" />
+<text  x="50.94" y="767.5" ></text>
+</g>
+<g >
+<title>nft_do_chain_inet (153,199,549 samples, 0.04%)</title><rect x="323.8" y="661" width="0.5" height="15.0" fill="rgb(225,112,3)" rx="2" ry="2" />
+<text  x="326.80" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (94,367,730 samples, 0.03%)</title><rect x="749.1" y="677" width="0.3" height="15.0" fill="rgb(215,198,1)" rx="2" ry="2" />
+<text  x="752.13" y="687.5" ></text>
+</g>
+<g >
+<title>__schedule (658,401,488 samples, 0.18%)</title><rect x="33.7" y="805" width="2.1" height="15.0" fill="rgb(235,25,49)" rx="2" ry="2" />
+<text  x="36.72" y="815.5" ></text>
+</g>
+<g >
+<title>gtk_container_propagate_draw (179,236,700 samples, 0.05%)</title><rect x="1177.9" y="437" width="0.5" height="15.0" fill="rgb(217,212,8)" rx="2" ry="2" />
+<text  x="1180.86" y="447.5" ></text>
+</g>
+<g >
+<title>kworker/1:0 (366,082,381 samples, 0.10%)</title><rect x="385.8" y="981" width="1.1" height="15.0" fill="rgb(227,121,18)" rx="2" ry="2" />
+<text  x="388.76" y="991.5" ></text>
+</g>
+<g >
+<title>drm_atomic_helper_page_flip (116,461,238 samples, 0.03%)</title><rect x="232.1" y="869" width="0.4" height="15.0" fill="rgb(228,131,44)" rx="2" ry="2" />
+<text  x="235.12" y="879.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (1,540,715,879 samples, 0.42%)</title><rect x="739.4" y="693" width="4.9" height="15.0" fill="rgb(213,226,0)" rx="2" ry="2" />
+<text  x="742.37" y="703.5" ></text>
+</g>
+<g >
+<title>filemap_dirty_folio (1,958,206,424 samples, 0.53%)</title><rect x="714.9" y="757" width="6.3" height="15.0" fill="rgb(209,223,28)" rx="2" ry="2" />
+<text  x="717.94" y="767.5" ></text>
+</g>
+<g >
+<title>psi_task_switch (117,241,673 samples, 0.03%)</title><rect x="822.7" y="757" width="0.3" height="15.0" fill="rgb(237,180,27)" rx="2" ry="2" />
+<text  x="825.66" y="767.5" ></text>
+</g>
+<g >
+<title>_aesni_enc4 (976,532,505 samples, 0.27%)</title><rect x="447.5" y="805" width="3.2" height="15.0" fill="rgb(253,177,5)" rx="2" ry="2" />
+<text  x="450.54" y="815.5" ></text>
+</g>
+<g >
+<title>get_page_from_freelist (121,358,719 samples, 0.03%)</title><rect x="437.2" y="837" width="0.4" height="15.0" fill="rgb(245,182,3)" rx="2" ry="2" />
+<text  x="440.19" y="847.5" ></text>
+</g>
+<g >
+<title>load_balance (74,304,529 samples, 0.02%)</title><rect x="292.2" y="773" width="0.3" height="15.0" fill="rgb(224,114,14)" rx="2" ry="2" />
+<text  x="295.21" y="783.5" ></text>
+</g>
+<g >
+<title>tcp_recvmsg_locked (84,417,537 samples, 0.02%)</title><rect x="737.1" y="581" width="0.3" height="15.0" fill="rgb(229,83,18)" rx="2" ry="2" />
+<text  x="740.13" y="591.5" ></text>
+</g>
+<g >
+<title>irqtime_account_irq (32,519,044 samples, 0.01%)</title><rect x="897.2" y="821" width="0.1" height="15.0" fill="rgb(223,220,52)" rx="2" ry="2" />
+<text  x="900.20" y="831.5" ></text>
+</g>
+<g >
+<title>process_backlog (625,713,291 samples, 0.17%)</title><rect x="740.6" y="341" width="2.0" height="15.0" fill="rgb(207,126,30)" rx="2" ry="2" />
+<text  x="743.58" y="351.5" ></text>
+</g>
+<g >
+<title>i915_vm_map_pt_stash (39,529,678 samples, 0.01%)</title><rect x="235.9" y="821" width="0.1" height="15.0" fill="rgb(237,171,46)" rx="2" ry="2" />
+<text  x="238.91" y="831.5" ></text>
+</g>
+<g >
+<title>[libxul.so] (493,444,044 samples, 0.13%)</title><rect x="42.7" y="965" width="1.6" height="15.0" fill="rgb(210,198,29)" rx="2" ry="2" />
+<text  x="45.73" y="975.5" ></text>
+</g>
+<g >
+<title>shrink_slab (59,442,494 samples, 0.02%)</title><rect x="705.4" y="645" width="0.2" height="15.0" fill="rgb(251,200,27)" rx="2" ry="2" />
+<text  x="708.44" y="655.5" ></text>
+</g>
+<g >
+<title>__entry_text_start (45,190,338 samples, 0.01%)</title><rect x="615.7" y="917" width="0.2" height="15.0" fill="rgb(241,166,5)" rx="2" ry="2" />
+<text  x="618.71" y="927.5" ></text>
+</g>
+<g >
+<title>__wake_up_common (38,430,873 samples, 0.01%)</title><rect x="20.0" y="581" width="0.1" height="15.0" fill="rgb(224,10,50)" rx="2" ry="2" />
+<text  x="23.01" y="591.5" ></text>
+</g>
+<g >
+<title>curl_url_get (72,188,288 samples, 0.02%)</title><rect x="668.7" y="757" width="0.2" height="15.0" fill="rgb(230,147,50)" rx="2" ry="2" />
+<text  x="671.68" y="767.5" ></text>
+</g>
+<g >
+<title>ip_list_rcv (80,148,385 samples, 0.02%)</title><rect x="309.1" y="677" width="0.2" height="15.0" fill="rgb(222,71,2)" rx="2" ry="2" />
+<text  x="312.08" y="687.5" ></text>
+</g>
+<g >
+<title>[libxcb.so.1.1.0] (50,193,717 samples, 0.01%)</title><rect x="1165.3" y="757" width="0.2" height="15.0" fill="rgb(219,151,53)" rx="2" ry="2" />
+<text  x="1168.31" y="767.5" ></text>
+</g>
+<g >
+<title>drm_ioctl_kernel (1,556,104,627 samples, 0.42%)</title><rect x="136.5" y="821" width="5.0" height="15.0" fill="rgb(244,94,27)" rx="2" ry="2" />
+<text  x="139.53" y="831.5" ></text>
+</g>
+<g >
+<title>__sysvec_apic_timer_interrupt (43,610,835 samples, 0.01%)</title><rect x="267.6" y="917" width="0.2" height="15.0" fill="rgb(215,201,52)" rx="2" ry="2" />
+<text  x="270.64" y="927.5" ></text>
+</g>
+<g >
+<title>iomap_finish_ioend (176,567,464 samples, 0.05%)</title><rect x="397.6" y="853" width="0.6" height="15.0" fill="rgb(239,145,20)" rx="2" ry="2" />
+<text  x="400.65" y="863.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (129,596,158 samples, 0.04%)</title><rect x="735.7" y="917" width="0.4" height="15.0" fill="rgb(250,36,3)" rx="2" ry="2" />
+<text  x="738.65" y="927.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (196,676,200 samples, 0.05%)</title><rect x="554.8" y="853" width="0.6" height="15.0" fill="rgb(243,56,33)" rx="2" ry="2" />
+<text  x="557.81" y="863.5" ></text>
+</g>
+<g >
+<title>tick_nohz_idle_enter (31,098,986 samples, 0.01%)</title><rect x="884.7" y="869" width="0.1" height="15.0" fill="rgb(237,32,16)" rx="2" ry="2" />
+<text  x="887.70" y="879.5" ></text>
+</g>
+<g >
+<title>g_signal_emit (715,548,921 samples, 0.20%)</title><rect x="1177.7" y="837" width="2.3" height="15.0" fill="rgb(248,135,10)" rx="2" ry="2" />
+<text  x="1180.73" y="847.5" ></text>
+</g>
+<g >
+<title>iomap_finish_ioend (41,710,622 samples, 0.01%)</title><rect x="386.9" y="853" width="0.2" height="15.0" fill="rgb(249,134,13)" rx="2" ry="2" />
+<text  x="389.94" y="863.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (55,528,580 samples, 0.02%)</title><rect x="701.0" y="709" width="0.2" height="15.0" fill="rgb(237,0,40)" rx="2" ry="2" />
+<text  x="703.97" y="719.5" ></text>
+</g>
+<g >
+<title>skb_release_data (70,823,650 samples, 0.02%)</title><rect x="39.6" y="789" width="0.2" height="15.0" fill="rgb(252,211,12)" rx="2" ry="2" />
+<text  x="42.59" y="799.5" ></text>
+</g>
+<g >
+<title>signal_irq_work (68,858,131 samples, 0.02%)</title><rect x="1163.7" y="373" width="0.2" height="15.0" fill="rgb(210,86,31)" rx="2" ry="2" />
+<text  x="1166.70" y="383.5" ></text>
+</g>
+<g >
+<title>blk_mq_flush_plug_list (387,847,838 samples, 0.11%)</title><rect x="245.5" y="853" width="1.3" height="15.0" fill="rgb(231,71,26)" rx="2" ry="2" />
+<text  x="248.53" y="863.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (150,001,786 samples, 0.04%)</title><rect x="93.6" y="917" width="0.5" height="15.0" fill="rgb(219,84,13)" rx="2" ry="2" />
+<text  x="96.58" y="927.5" ></text>
+</g>
+<g >
+<title>irq_work_run (48,258,505 samples, 0.01%)</title><rect x="232.9" y="757" width="0.2" height="15.0" fill="rgb(250,31,5)" rx="2" ry="2" />
+<text  x="235.92" y="767.5" ></text>
+</g>
+<g >
+<title>wake_up_q (42,538,891 samples, 0.01%)</title><rect x="749.2" y="613" width="0.2" height="15.0" fill="rgb(235,127,19)" rx="2" ry="2" />
+<text  x="752.24" y="623.5" ></text>
+</g>
+<g >
+<title>[xfce4-panel] (821,361,760 samples, 0.22%)</title><rect x="1171.5" y="629" width="2.6" height="15.0" fill="rgb(238,112,30)" rx="2" ry="2" />
+<text  x="1174.50" y="639.5" ></text>
+</g>
+<g >
+<title>ct_kernel_exit_state (65,434,844 samples, 0.02%)</title><rect x="917.1" y="837" width="0.2" height="15.0" fill="rgb(205,50,32)" rx="2" ry="2" />
+<text  x="920.05" y="847.5" ></text>
+</g>
+<g >
+<title>hrtimer_nanosleep (32,998,246 samples, 0.01%)</title><rect x="25.9" y="837" width="0.1" height="15.0" fill="rgb(248,150,39)" rx="2" ry="2" />
+<text  x="28.91" y="847.5" ></text>
+</g>
+<g >
+<title>[libvte-2.91.so.0.6992.0] (450,438,670 samples, 0.12%)</title><rect x="1180.1" y="853" width="1.4" height="15.0" fill="rgb(210,100,36)" rx="2" ry="2" />
+<text  x="1183.10" y="863.5" ></text>
+</g>
+<g >
+<title>kthread (6,810,445,764 samples, 1.86%)</title><rect x="398.3" y="949" width="21.9" height="15.0" fill="rgb(234,63,11)" rx="2" ry="2" />
+<text  x="401.25" y="959.5" >k..</text>
+</g>
+<g >
+<title>__wake_up_common_lock (40,703,336 samples, 0.01%)</title><rect x="320.7" y="549" width="0.1" height="15.0" fill="rgb(214,79,24)" rx="2" ry="2" />
+<text  x="323.66" y="559.5" ></text>
+</g>
+<g >
+<title>__writeback_inodes_wb (148,240,118 samples, 0.04%)</title><rect x="612.5" y="869" width="0.5" height="15.0" fill="rgb(243,22,10)" rx="2" ry="2" />
+<text  x="615.55" y="879.5" ></text>
+</g>
+<g >
+<title>eb_pin_engine (43,396,629 samples, 0.01%)</title><rect x="1164.7" y="613" width="0.2" height="15.0" fill="rgb(245,147,13)" rx="2" ry="2" />
+<text  x="1167.73" y="623.5" ></text>
+</g>
+<g >
+<title>__mod_lruvec_page_state (452,051,944 samples, 0.12%)</title><rect x="695.3" y="709" width="1.4" height="15.0" fill="rgb(229,190,28)" rx="2" ry="2" />
+<text  x="698.26" y="719.5" ></text>
+</g>
+<g >
+<title>dequeue_entity (90,629,521 samples, 0.02%)</title><rect x="34.0" y="773" width="0.2" height="15.0" fill="rgb(238,193,14)" rx="2" ry="2" />
+<text  x="36.95" y="783.5" ></text>
+</g>
+<g >
+<title>__GI___lll_lock_wake (34,094,517 samples, 0.01%)</title><rect x="157.9" y="885" width="0.1" height="15.0" fill="rgb(209,16,50)" rx="2" ry="2" />
+<text  x="160.91" y="895.5" ></text>
+</g>
+<g >
+<title>__GI___libc_sigaction (45,688,256 samples, 0.01%)</title><rect x="617.6" y="773" width="0.1" height="15.0" fill="rgb(230,137,15)" rx="2" ry="2" />
+<text  x="620.56" y="783.5" ></text>
+</g>
+<g >
+<title>do_nanosleep (31,783,010 samples, 0.01%)</title><rect x="25.9" y="821" width="0.1" height="15.0" fill="rgb(205,105,28)" rx="2" ry="2" />
+<text  x="28.91" y="831.5" ></text>
+</g>
+<g >
+<title>secondary_startup_64_no_verify (102,434,575,463 samples, 27.95%)</title><rect x="831.9" y="965" width="329.8" height="15.0" fill="rgb(205,166,40)" rx="2" ry="2" />
+<text  x="834.94" y="975.5" >secondary_startup_64_no_verify</text>
+</g>
+<g >
+<title>n_tty_poll (239,833,329 samples, 0.07%)</title><rect x="1183.9" y="885" width="0.7" height="15.0" fill="rgb(244,123,29)" rx="2" ry="2" />
+<text  x="1186.88" y="895.5" ></text>
+</g>
+<g >
+<title>percpu_counter_add_batch (78,509,849 samples, 0.02%)</title><rect x="391.6" y="805" width="0.3" height="15.0" fill="rgb(227,2,25)" rx="2" ry="2" />
+<text  x="394.62" y="815.5" ></text>
+</g>
+<g >
+<title>__vfscanf_internal (110,541,290 samples, 0.03%)</title><rect x="642.2" y="709" width="0.4" height="15.0" fill="rgb(215,182,43)" rx="2" ry="2" />
+<text  x="645.24" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (52,931,068 samples, 0.01%)</title><rect x="136.1" y="869" width="0.2" height="15.0" fill="rgb(215,227,6)" rx="2" ry="2" />
+<text  x="139.09" y="879.5" ></text>
+</g>
+<g >
+<title>kthread (271,425,872 samples, 0.07%)</title><rect x="387.3" y="949" width="0.9" height="15.0" fill="rgb(245,41,9)" rx="2" ry="2" />
+<text  x="390.30" y="959.5" ></text>
+</g>
+<g >
+<title>futex_wait (226,262,165 samples, 0.06%)</title><rect x="51.0" y="837" width="0.7" height="15.0" fill="rgb(223,194,52)" rx="2" ry="2" />
+<text  x="53.97" y="847.5" ></text>
+</g>
+<g >
+<title>memcg_stats_lock (32,346,228 samples, 0.01%)</title><rect x="693.4" y="661" width="0.1" height="15.0" fill="rgb(243,102,7)" rx="2" ry="2" />
+<text  x="696.36" y="671.5" ></text>
+</g>
+<g >
+<title>_XReply (43,040,379 samples, 0.01%)</title><rect x="269.1" y="901" width="0.2" height="15.0" fill="rgb(216,118,14)" rx="2" ry="2" />
+<text  x="272.14" y="911.5" ></text>
+</g>
+<g >
+<title>__mod_memcg_lruvec_state (40,471,946 samples, 0.01%)</title><rect x="478.3" y="693" width="0.1" height="15.0" fill="rgb(239,185,25)" rx="2" ry="2" />
+<text  x="481.26" y="703.5" ></text>
+</g>
+<g >
+<title>[libdbus-1.so.3.32.0] (40,052,232 samples, 0.01%)</title><rect x="279.5" y="837" width="0.1" height="15.0" fill="rgb(209,13,34)" rx="2" ry="2" />
+<text  x="282.47" y="847.5" ></text>
+</g>
+<g >
+<title>folio_end_writeback (279,789,166 samples, 0.08%)</title><rect x="396.6" y="837" width="0.9" height="15.0" fill="rgb(233,161,7)" rx="2" ry="2" />
+<text  x="399.63" y="847.5" ></text>
+</g>
+<g >
+<title>do_fault (51,474,600 samples, 0.01%)</title><rect x="227.2" y="885" width="0.2" height="15.0" fill="rgb(252,208,47)" rx="2" ry="2" />
+<text  x="230.22" y="895.5" ></text>
+</g>
+<g >
+<title>nft_do_chain_inet (34,238,039 samples, 0.01%)</title><rect x="625.2" y="437" width="0.1" height="15.0" fill="rgb(247,59,48)" rx="2" ry="2" />
+<text  x="628.17" y="447.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (5,009,262,867 samples, 1.37%)</title><rect x="576.5" y="869" width="16.1" height="15.0" fill="rgb(218,178,36)" rx="2" ry="2" />
+<text  x="579.51" y="879.5" ></text>
+</g>
+<g >
+<title>do_futex (378,830,592 samples, 0.10%)</title><rect x="13.0" y="853" width="1.2" height="15.0" fill="rgb(214,47,24)" rx="2" ry="2" />
+<text  x="15.96" y="863.5" ></text>
+</g>
+<g >
+<title>WriteEventsToClient (81,341,996 samples, 0.02%)</title><rect x="201.6" y="821" width="0.2" height="15.0" fill="rgb(239,205,52)" rx="2" ry="2" />
+<text  x="204.59" y="831.5" ></text>
+</g>
+<g >
+<title>TaskCon~ller_#1 (33,887,327 samples, 0.01%)</title><rect x="155.0" y="981" width="0.1" height="15.0" fill="rgb(237,66,35)" rx="2" ry="2" />
+<text  x="157.97" y="991.5" ></text>
+</g>
+<g >
+<title>__libc_poll (42,566,110 samples, 0.01%)</title><rect x="192.2" y="917" width="0.1" height="15.0" fill="rgb(251,224,45)" rx="2" ry="2" />
+<text  x="195.20" y="927.5" ></text>
+</g>
+<g >
+<title>writeback_sb_inodes (731,696,513 samples, 0.20%)</title><rect x="437.7" y="853" width="2.4" height="15.0" fill="rgb(249,1,39)" rx="2" ry="2" />
+<text  x="440.73" y="863.5" ></text>
+</g>
+<g >
+<title>syscall (45,771,225 samples, 0.01%)</title><rect x="169.4" y="933" width="0.1" height="15.0" fill="rgb(246,147,45)" rx="2" ry="2" />
+<text  x="172.36" y="943.5" ></text>
+</g>
+<g >
+<title>dmcrypt_write/2 (712,044,656 samples, 0.19%)</title><rect x="244.5" y="981" width="2.3" height="15.0" fill="rgb(225,61,3)" rx="2" ry="2" />
+<text  x="247.54" y="991.5" ></text>
+</g>
+<g >
+<title>folio_migrate_flags (77,216,900 samples, 0.02%)</title><rect x="345.9" y="837" width="0.2" height="15.0" fill="rgb(237,59,18)" rx="2" ry="2" />
+<text  x="348.87" y="847.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (677,037,844 samples, 0.18%)</title><rect x="463.5" y="837" width="2.2" height="15.0" fill="rgb(240,201,41)" rx="2" ry="2" />
+<text  x="466.48" y="847.5" ></text>
+</g>
+<g >
+<title>cpupri_set (53,381,355 samples, 0.01%)</title><rect x="894.0" y="709" width="0.2" height="15.0" fill="rgb(211,142,22)" rx="2" ry="2" />
+<text  x="896.98" y="719.5" ></text>
+</g>
+<g >
+<title>[libcairo.so.2.11706.0] (451,077,198 samples, 0.12%)</title><rect x="1168.0" y="965" width="1.5" height="15.0" fill="rgb(229,228,18)" rx="2" ry="2" />
+<text  x="1171.04" y="975.5" ></text>
+</g>
+<g >
+<title>pidfd_poll (80,734,950 samples, 0.02%)</title><rect x="1182.9" y="901" width="0.3" height="15.0" fill="rgb(229,122,32)" rx="2" ry="2" />
+<text  x="1185.89" y="911.5" ></text>
+</g>
+<g >
+<title>do_writepages (866,940,717 samples, 0.24%)</title><rect x="457.9" y="821" width="2.8" height="15.0" fill="rgb(234,221,4)" rx="2" ry="2" />
+<text  x="460.88" y="831.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (43,298,425 samples, 0.01%)</title><rect x="152.0" y="773" width="0.1" height="15.0" fill="rgb(248,154,5)" rx="2" ry="2" />
+<text  x="155.01" y="783.5" ></text>
+</g>
+<g >
+<title>iomap_writepages (556,006,081 samples, 0.15%)</title><rect x="595.3" y="789" width="1.8" height="15.0" fill="rgb(222,18,13)" rx="2" ry="2" />
+<text  x="598.32" y="799.5" ></text>
+</g>
+<g >
+<title>futex_wake (40,524,743 samples, 0.01%)</title><rect x="178.4" y="837" width="0.1" height="15.0" fill="rgb(243,43,29)" rx="2" ry="2" />
+<text  x="181.38" y="847.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (174,486,077 samples, 0.05%)</title><rect x="149.1" y="885" width="0.6" height="15.0" fill="rgb(245,45,32)" rx="2" ry="2" />
+<text  x="152.11" y="895.5" ></text>
+</g>
+<g >
+<title>cpuidle_enter_state (15,156,792,975 samples, 4.13%)</title><rect x="832.3" y="853" width="48.7" height="15.0" fill="rgb(207,84,27)" rx="2" ry="2" />
+<text  x="835.26" y="863.5" >cpui..</text>
+</g>
+<g >
+<title>__x64_sys_ioctl (264,001,262 samples, 0.07%)</title><rect x="1164.3" y="693" width="0.8" height="15.0" fill="rgb(222,90,17)" rx="2" ry="2" />
+<text  x="1167.28" y="703.5" ></text>
+</g>
+<g >
+<title>psi_task_switch (511,170,630 samples, 0.14%)</title><rect x="1150.3" y="869" width="1.6" height="15.0" fill="rgb(224,70,32)" rx="2" ry="2" />
+<text  x="1153.29" y="879.5" ></text>
+</g>
+<g >
+<title>worker_thread (203,558,356 samples, 0.06%)</title><rect x="397.6" y="933" width="0.6" height="15.0" fill="rgb(231,66,36)" rx="2" ry="2" />
+<text  x="400.59" y="943.5" ></text>
+</g>
+<g >
+<title>[libxul.so] (97,176,143 samples, 0.03%)</title><rect x="154.4" y="965" width="0.3" height="15.0" fill="rgb(213,145,32)" rx="2" ry="2" />
+<text  x="157.39" y="975.5" ></text>
+</g>
+<g >
+<title>find_get_pages_range_tag (58,275,733 samples, 0.02%)</title><rect x="439.9" y="741" width="0.2" height="15.0" fill="rgb(215,54,39)" rx="2" ry="2" />
+<text  x="442.90" y="751.5" ></text>
+</g>
+<g >
+<title>__mod_memcg_lruvec_state (41,797,032 samples, 0.01%)</title><rect x="439.2" y="693" width="0.2" height="15.0" fill="rgb(218,103,27)" rx="2" ry="2" />
+<text  x="442.23" y="703.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (173,963,509 samples, 0.05%)</title><rect x="1177.9" y="357" width="0.5" height="15.0" fill="rgb(210,152,15)" rx="2" ry="2" />
+<text  x="1180.86" y="367.5" ></text>
+</g>
+<g >
+<title>g_signal_emit_valist (48,127,788 samples, 0.01%)</title><rect x="1174.5" y="773" width="0.1" height="15.0" fill="rgb(218,174,45)" rx="2" ry="2" />
+<text  x="1177.48" y="783.5" ></text>
+</g>
+<g >
+<title>unix_stream_read_generic (44,792,599 samples, 0.01%)</title><rect x="1188.6" y="869" width="0.1" height="15.0" fill="rgb(224,210,39)" rx="2" ry="2" />
+<text  x="1191.55" y="879.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (7,089,654,641 samples, 1.93%)</title><rect x="574.3" y="965" width="22.9" height="15.0" fill="rgb(249,68,45)" rx="2" ry="2" />
+<text  x="577.34" y="975.5" >r..</text>
+</g>
+<g >
+<title>kernel_fpu_end (31,368,022 samples, 0.01%)</title><rect x="411.0" y="821" width="0.1" height="15.0" fill="rgb(214,40,26)" rx="2" ry="2" />
+<text  x="413.95" y="831.5" ></text>
+</g>
+<g >
+<title>curl_mvsnprintf (41,850,616 samples, 0.01%)</title><rect x="668.1" y="693" width="0.1" height="15.0" fill="rgb(212,99,52)" rx="2" ry="2" />
+<text  x="671.07" y="703.5" ></text>
+</g>
+<g >
+<title>g_main_loop_run (66,760,770 samples, 0.02%)</title><rect x="1187.1" y="741" width="0.2" height="15.0" fill="rgb(221,68,37)" rx="2" ry="2" />
+<text  x="1190.12" y="751.5" ></text>
+</g>
+<g >
+<title>execute_command (48,180,599 samples, 0.01%)</title><rect x="243.4" y="677" width="0.2" height="15.0" fill="rgb(228,68,47)" rx="2" ry="2" />
+<text  x="246.42" y="687.5" ></text>
+</g>
+<g >
+<title>____sys_sendmsg (108,438,912 samples, 0.03%)</title><rect x="266.6" y="869" width="0.3" height="15.0" fill="rgb(229,182,52)" rx="2" ry="2" />
+<text  x="269.60" y="879.5" ></text>
+</g>
+<g >
+<title>drm_ioctl (33,828,623 samples, 0.01%)</title><rect x="135.1" y="789" width="0.1" height="15.0" fill="rgb(234,77,18)" rx="2" ry="2" />
+<text  x="138.13" y="799.5" ></text>
+</g>
+<g >
+<title>__libc_poll (192,818,458 samples, 0.05%)</title><rect x="265.5" y="949" width="0.6" height="15.0" fill="rgb(227,161,35)" rx="2" ry="2" />
+<text  x="268.49" y="959.5" ></text>
+</g>
+<g >
+<title>cpuidle_governor_latency_req (329,563,998 samples, 0.09%)</title><rect x="1138.3" y="885" width="1.1" height="15.0" fill="rgb(246,177,23)" rx="2" ry="2" />
+<text  x="1141.32" y="895.5" ></text>
+</g>
+<g >
+<title>[unknown] (3,279,257,255 samples, 0.89%)</title><rect x="105.6" y="965" width="10.6" height="15.0" fill="rgb(226,21,37)" rx="2" ry="2" />
+<text  x="108.63" y="975.5" ></text>
+</g>
+<g >
+<title>blk_co_do_pwritev_part (291,846,893 samples, 0.08%)</title><rect x="748.6" y="901" width="1.0" height="15.0" fill="rgb(240,129,49)" rx="2" ry="2" />
+<text  x="751.64" y="911.5" ></text>
+</g>
+<g >
+<title>[libcairo.so.2.11706.0] (76,558,931 samples, 0.02%)</title><rect x="1176.3" y="885" width="0.3" height="15.0" fill="rgb(206,9,54)" rx="2" ry="2" />
+<text  x="1179.34" y="895.5" ></text>
+</g>
+<g >
+<title>handle_mm_fault (37,346,313 samples, 0.01%)</title><rect x="275.8" y="885" width="0.1" height="15.0" fill="rgb(219,132,21)" rx="2" ry="2" />
+<text  x="278.82" y="895.5" ></text>
+</g>
+<g >
+<title>__mod_lruvec_page_state (51,440,276 samples, 0.01%)</title><rect x="556.4" y="709" width="0.2" height="15.0" fill="rgb(250,200,20)" rx="2" ry="2" />
+<text  x="559.42" y="719.5" ></text>
+</g>
+<g >
+<title>update_blocked_averages (63,985,532 samples, 0.02%)</title><rect x="833.1" y="757" width="0.2" height="15.0" fill="rgb(236,221,40)" rx="2" ry="2" />
+<text  x="836.14" y="767.5" ></text>
+</g>
+<g >
+<title>__x64_sys_ioctl (33,631,178 samples, 0.01%)</title><rect x="132.0" y="709" width="0.1" height="15.0" fill="rgb(250,219,15)" rx="2" ry="2" />
+<text  x="135.00" y="719.5" ></text>
+</g>
+<g >
+<title>curl_pread (12,708,422,057 samples, 3.47%)</title><rect x="616.9" y="805" width="40.9" height="15.0" fill="rgb(235,164,28)" rx="2" ry="2" />
+<text  x="619.89" y="815.5" >cur..</text>
+</g>
+<g >
+<title>__update_load_avg_se (36,979,280 samples, 0.01%)</title><rect x="1149.9" y="821" width="0.1" height="15.0" fill="rgb(223,115,45)" rx="2" ry="2" />
+<text  x="1152.89" y="831.5" ></text>
+</g>
+<g >
+<title>i2c_smbus_xfer (508,872,002 samples, 0.14%)</title><rect x="339.4" y="853" width="1.6" height="15.0" fill="rgb(208,227,4)" rx="2" ry="2" />
+<text  x="342.39" y="863.5" ></text>
+</g>
+<g >
+<title>enqueue_entity (80,238,498 samples, 0.02%)</title><rect x="881.5" y="789" width="0.2" height="15.0" fill="rgb(212,61,9)" rx="2" ry="2" />
+<text  x="884.46" y="799.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (160,328,166 samples, 0.04%)</title><rect x="276.4" y="869" width="0.5" height="15.0" fill="rgb(240,74,4)" rx="2" ry="2" />
+<text  x="279.35" y="879.5" ></text>
+</g>
+<g >
+<title>__mod_lruvec_state (32,470,173 samples, 0.01%)</title><rect x="458.4" y="709" width="0.1" height="15.0" fill="rgb(234,90,14)" rx="2" ry="2" />
+<text  x="461.37" y="719.5" ></text>
+</g>
+<g >
+<title>kcryptd_crypt (6,707,769,812 samples, 1.83%)</title><rect x="534.0" y="901" width="21.6" height="15.0" fill="rgb(223,3,36)" rx="2" ry="2" />
+<text  x="537.02" y="911.5" >k..</text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (729,445,783 samples, 0.20%)</title><rect x="496.1" y="853" width="2.3" height="15.0" fill="rgb(206,112,7)" rx="2" ry="2" />
+<text  x="499.05" y="863.5" ></text>
+</g>
+<g >
+<title>[libGLX.so.0.0.0] (74,368,200 samples, 0.02%)</title><rect x="23.9" y="917" width="0.2" height="15.0" fill="rgb(239,92,38)" rx="2" ry="2" />
+<text  x="26.91" y="927.5" ></text>
+</g>
+<g >
+<title>[libEGL_mesa.so.0.0.0] (104,764,690 samples, 0.03%)</title><rect x="1166.2" y="821" width="0.3" height="15.0" fill="rgb(234,77,17)" rx="2" ry="2" />
+<text  x="1169.18" y="831.5" ></text>
+</g>
+<g >
+<title>event_base_loop (207,754,260 samples, 0.06%)</title><rect x="43.2" y="949" width="0.7" height="15.0" fill="rgb(235,5,7)" rx="2" ry="2" />
+<text  x="46.24" y="959.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (5,512,631,918 samples, 1.50%)</title><rect x="481.2" y="869" width="17.7" height="15.0" fill="rgb(225,104,17)" rx="2" ry="2" />
+<text  x="484.19" y="879.5" ></text>
+</g>
+<g >
+<title>ieee80211_rx_list (1,033,527,950 samples, 0.28%)</title><rect x="303.9" y="757" width="3.3" height="15.0" fill="rgb(253,91,54)" rx="2" ry="2" />
+<text  x="306.85" y="767.5" ></text>
+</g>
+<g >
+<title>kthread (4,936,720,583 samples, 1.35%)</title><rect x="597.2" y="949" width="15.9" height="15.0" fill="rgb(215,225,23)" rx="2" ry="2" />
+<text  x="600.16" y="959.5" ></text>
+</g>
+<g >
+<title>memset_erms (135,848,378 samples, 0.04%)</title><rect x="554.3" y="853" width="0.4" height="15.0" fill="rgb(235,49,40)" rx="2" ry="2" />
+<text  x="557.30" y="863.5" ></text>
+</g>
+<g >
+<title>sg_init_table (184,333,287 samples, 0.05%)</title><rect x="554.1" y="869" width="0.6" height="15.0" fill="rgb(217,34,11)" rx="2" ry="2" />
+<text  x="557.15" y="879.5" ></text>
+</g>
+<g >
+<title>load_balance (34,773,274 samples, 0.01%)</title><rect x="149.3" y="741" width="0.1" height="15.0" fill="rgb(219,185,12)" rx="2" ry="2" />
+<text  x="152.32" y="751.5" ></text>
+</g>
+<g >
+<title>__handle_mm_fault (50,305,916 samples, 0.01%)</title><rect x="266.3" y="869" width="0.2" height="15.0" fill="rgb(207,124,27)" rx="2" ry="2" />
+<text  x="269.33" y="879.5" ></text>
+</g>
+<g >
+<title>__schedule (75,314,295 samples, 0.02%)</title><rect x="1188.9" y="869" width="0.2" height="15.0" fill="rgb(230,107,32)" rx="2" ry="2" />
+<text  x="1191.89" y="879.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_apic_timer_interrupt (5,337,275,225 samples, 1.46%)</title><rect x="898.4" y="869" width="17.2" height="15.0" fill="rgb(213,17,31)" rx="2" ry="2" />
+<text  x="901.43" y="879.5" ></text>
+</g>
+<g >
+<title>__nf_conntrack_find_get (49,454,143 samples, 0.01%)</title><rect x="636.7" y="469" width="0.1" height="15.0" fill="rgb(211,166,36)" rx="2" ry="2" />
+<text  x="639.65" y="479.5" ></text>
+</g>
+<g >
+<title>sock_recvmsg (144,666,031 samples, 0.04%)</title><rect x="639.7" y="613" width="0.5" height="15.0" fill="rgb(248,94,12)" rx="2" ry="2" />
+<text  x="642.74" y="623.5" ></text>
+</g>
+<g >
+<title>tick_nohz_get_sleep_length (1,579,235,131 samples, 0.43%)</title><rect x="1139.6" y="885" width="5.0" height="15.0" fill="rgb(247,133,5)" rx="2" ry="2" />
+<text  x="1142.56" y="895.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (246,588,611 samples, 0.07%)</title><rect x="224.4" y="933" width="0.8" height="15.0" fill="rgb(214,37,17)" rx="2" ry="2" />
+<text  x="227.45" y="943.5" ></text>
+</g>
+<g >
+<title>avc_lookup (61,751,844 samples, 0.02%)</title><rect x="640.0" y="549" width="0.2" height="15.0" fill="rgb(249,150,18)" rx="2" ry="2" />
+<text  x="643.00" y="559.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (135,223,940 samples, 0.04%)</title><rect x="1174.2" y="805" width="0.4" height="15.0" fill="rgb(209,58,4)" rx="2" ry="2" />
+<text  x="1177.20" y="815.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (212,971,191 samples, 0.06%)</title><rect x="748.8" y="837" width="0.7" height="15.0" fill="rgb(243,201,42)" rx="2" ry="2" />
+<text  x="751.83" y="847.5" ></text>
+</g>
+<g >
+<title>[libxul.so] (35,099,846 samples, 0.01%)</title><rect x="193.5" y="933" width="0.1" height="15.0" fill="rgb(234,40,24)" rx="2" ry="2" />
+<text  x="196.51" y="943.5" ></text>
+</g>
+<g >
+<title>hrtimer_start_range_ns (31,120,303 samples, 0.01%)</title><rect x="237.8" y="901" width="0.1" height="15.0" fill="rgb(234,225,5)" rx="2" ry="2" />
+<text  x="240.82" y="911.5" ></text>
+</g>
+<g >
+<title>charge_memcg (872,105,224 samples, 0.24%)</title><rect x="692.0" y="693" width="2.8" height="15.0" fill="rgb(211,62,3)" rx="2" ry="2" />
+<text  x="694.95" y="703.5" ></text>
+</g>
+<g >
+<title>xfce4-session (61,106,302 samples, 0.02%)</title><rect x="1174.8" y="981" width="0.2" height="15.0" fill="rgb(227,150,54)" rx="2" ry="2" />
+<text  x="1177.84" y="991.5" ></text>
+</g>
+<g >
+<title>kfree (46,453,411 samples, 0.01%)</title><rect x="228.6" y="821" width="0.2" height="15.0" fill="rgb(232,145,28)" rx="2" ry="2" />
+<text  x="231.65" y="831.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (55,476,832 samples, 0.02%)</title><rect x="216.0" y="677" width="0.2" height="15.0" fill="rgb(212,71,7)" rx="2" ry="2" />
+<text  x="218.98" y="687.5" ></text>
+</g>
+<g >
+<title>execlists_submission_tasklet (112,020,498 samples, 0.03%)</title><rect x="896.7" y="789" width="0.4" height="15.0" fill="rgb(242,116,50)" rx="2" ry="2" />
+<text  x="899.72" y="799.5" ></text>
+</g>
+<g >
+<title>threaded-ml (35,587,564 samples, 0.01%)</title><rect x="1162.0" y="981" width="0.1" height="15.0" fill="rgb(223,23,16)" rx="2" ry="2" />
+<text  x="1164.99" y="991.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_apic_timer_interrupt (130,749,162 samples, 0.04%)</title><rect x="94.7" y="949" width="0.5" height="15.0" fill="rgb(253,100,29)" rx="2" ry="2" />
+<text  x="97.74" y="959.5" ></text>
+</g>
+<g >
+<title>__libc_read (205,813,065 samples, 0.06%)</title><rect x="826.5" y="805" width="0.6" height="15.0" fill="rgb(250,86,45)" rx="2" ry="2" />
+<text  x="829.48" y="815.5" ></text>
+</g>
+<g >
+<title>i915_vma_resource_unbind_work (34,931,702 samples, 0.01%)</title><rect x="377.9" y="709" width="0.1" height="15.0" fill="rgb(209,130,8)" rx="2" ry="2" />
+<text  x="380.86" y="719.5" ></text>
+</g>
+<g >
+<title>tcp_v4_rcv (1,403,174,181 samples, 0.38%)</title><rect x="324.5" y="661" width="4.5" height="15.0" fill="rgb(241,59,1)" rx="2" ry="2" />
+<text  x="327.49" y="671.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (214,217,288 samples, 0.06%)</title><rect x="224.5" y="901" width="0.7" height="15.0" fill="rgb(206,50,16)" rx="2" ry="2" />
+<text  x="227.55" y="911.5" ></text>
+</g>
+<g >
+<title>sk_page_frag_refill (110,212,008 samples, 0.03%)</title><rect x="664.8" y="725" width="0.4" height="15.0" fill="rgb(234,104,24)" rx="2" ry="2" />
+<text  x="667.81" y="735.5" ></text>
+</g>
+<g >
+<title>copy_user_enhanced_fast_string (1,981,053,543 samples, 0.54%)</title><rect x="679.4" y="757" width="6.4" height="15.0" fill="rgb(247,43,0)" rx="2" ry="2" />
+<text  x="682.40" y="767.5" ></text>
+</g>
+<g >
+<title>vfs_write (44,790,772 samples, 0.01%)</title><rect x="738.0" y="597" width="0.1" height="15.0" fill="rgb(236,56,1)" rx="2" ry="2" />
+<text  x="740.95" y="607.5" ></text>
+</g>
+<g >
+<title>[libglconv_vaapi_x11_plugin.so] (107,208,750 samples, 0.03%)</title><rect x="1166.2" y="853" width="0.3" height="15.0" fill="rgb(241,17,27)" rx="2" ry="2" />
+<text  x="1169.17" y="863.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (32,721,912 samples, 0.01%)</title><rect x="268.7" y="901" width="0.1" height="15.0" fill="rgb(222,34,52)" rx="2" ry="2" />
+<text  x="271.71" y="911.5" ></text>
+</g>
+<g >
+<title>timekeeping_update (53,415,398 samples, 0.01%)</title><rect x="907.5" y="725" width="0.2" height="15.0" fill="rgb(231,8,6)" rx="2" ry="2" />
+<text  x="910.52" y="735.5" ></text>
+</g>
+<g >
+<title>free_pcppages_bulk (39,060,408 samples, 0.01%)</title><rect x="344.9" y="853" width="0.1" height="15.0" fill="rgb(226,65,39)" rx="2" ry="2" />
+<text  x="347.91" y="863.5" ></text>
+</g>
+<g >
+<title>skcipher_walk_done (33,274,464 samples, 0.01%)</title><rect x="606.8" y="821" width="0.1" height="15.0" fill="rgb(236,37,10)" rx="2" ry="2" />
+<text  x="609.83" y="831.5" ></text>
+</g>
+<g >
+<title>ipv6_rcv (213,313,719 samples, 0.06%)</title><rect x="741.9" y="309" width="0.7" height="15.0" fill="rgb(241,200,32)" rx="2" ry="2" />
+<text  x="744.89" y="319.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (94,220,983 samples, 0.03%)</title><rect x="1172.3" y="117" width="0.3" height="15.0" fill="rgb(241,2,8)" rx="2" ry="2" />
+<text  x="1175.27" y="127.5" ></text>
+</g>
+<g >
+<title>pa_mainloop_run (32,481,452 samples, 0.01%)</title><rect x="1162.0" y="901" width="0.1" height="15.0" fill="rgb(248,203,24)" rx="2" ry="2" />
+<text  x="1165.00" y="911.5" ></text>
+</g>
+<g >
+<title>__common_interrupt (1,749,320,921 samples, 0.48%)</title><rect x="890.6" y="837" width="5.6" height="15.0" fill="rgb(228,144,39)" rx="2" ry="2" />
+<text  x="893.60" y="847.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (197,376,453 samples, 0.05%)</title><rect x="1178.8" y="629" width="0.7" height="15.0" fill="rgb(213,119,10)" rx="2" ry="2" />
+<text  x="1181.84" y="639.5" ></text>
+</g>
+<g >
+<title>__xa_set_mark (52,613,092 samples, 0.01%)</title><rect x="759.1" y="709" width="0.2" height="15.0" fill="rgb(231,112,28)" rx="2" ry="2" />
+<text  x="762.13" y="719.5" ></text>
+</g>
+<g >
+<title>vm_fault_cpu (98,242,601 samples, 0.03%)</title><rect x="146.2" y="821" width="0.3" height="15.0" fill="rgb(214,97,9)" rx="2" ry="2" />
+<text  x="149.22" y="831.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (32,580,878 samples, 0.01%)</title><rect x="200.9" y="773" width="0.1" height="15.0" fill="rgb(237,185,11)" rx="2" ry="2" />
+<text  x="203.87" y="783.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (114,136,515 samples, 0.03%)</title><rect x="1162.8" y="869" width="0.3" height="15.0" fill="rgb(228,124,26)" rx="2" ry="2" />
+<text  x="1165.78" y="879.5" ></text>
+</g>
+<g >
+<title>__sys_recvmsg (88,644,557 samples, 0.02%)</title><rect x="1188.5" y="933" width="0.3" height="15.0" fill="rgb(241,186,2)" rx="2" ry="2" />
+<text  x="1191.47" y="943.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (674,277,235 samples, 0.18%)</title><rect x="589.9" y="853" width="2.2" height="15.0" fill="rgb(253,210,32)" rx="2" ry="2" />
+<text  x="592.95" y="863.5" ></text>
+</g>
+<g >
+<title>do_iter_readv_writev (609,551,816 samples, 0.17%)</title><rect x="238.2" y="885" width="2.0" height="15.0" fill="rgb(230,224,37)" rx="2" ry="2" />
+<text  x="241.21" y="895.5" ></text>
+</g>
+<g >
+<title>__writeback_inodes_wb (756,192,153 samples, 0.21%)</title><rect x="571.9" y="869" width="2.4" height="15.0" fill="rgb(216,101,32)" rx="2" ry="2" />
+<text  x="574.86" y="879.5" ></text>
+</g>
+<g >
+<title>[libspa-support.so] (639,861,247 samples, 0.17%)</title><rect x="729.0" y="949" width="2.1" height="15.0" fill="rgb(207,138,35)" rx="2" ry="2" />
+<text  x="732.04" y="959.5" ></text>
+</g>
+<g >
+<title>set_next_entity (264,979,134 samples, 0.07%)</title><rect x="1149.2" y="853" width="0.8" height="15.0" fill="rgb(228,107,1)" rx="2" ry="2" />
+<text  x="1152.15" y="863.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (430,451,212 samples, 0.12%)</title><rect x="1171.6" y="293" width="1.4" height="15.0" fill="rgb(248,81,15)" rx="2" ry="2" />
+<text  x="1174.57" y="303.5" ></text>
+</g>
+<g >
+<title>xfs_file_buffered_write (204,269,467 samples, 0.06%)</title><rect x="724.9" y="821" width="0.7" height="15.0" fill="rgb(227,82,14)" rx="2" ry="2" />
+<text  x="727.90" y="831.5" ></text>
+</g>
+<g >
+<title>[libxcb.so.1.1.0] (101,535,135 samples, 0.03%)</title><rect x="277.4" y="789" width="0.3" height="15.0" fill="rgb(234,36,45)" rx="2" ry="2" />
+<text  x="280.35" y="799.5" ></text>
+</g>
+<g >
+<title>iomap_iter (204,761,101 samples, 0.06%)</title><rect x="753.1" y="757" width="0.6" height="15.0" fill="rgb(229,96,10)" rx="2" ry="2" />
+<text  x="756.07" y="767.5" ></text>
+</g>
+<g >
+<title>iomap_finish_ioends (313,198,687 samples, 0.09%)</title><rect x="396.5" y="869" width="1.0" height="15.0" fill="rgb(231,4,29)" rx="2" ry="2" />
+<text  x="399.52" y="879.5" ></text>
+</g>
+<g >
+<title>nvme_prep_rq.part.0 (381,062,360 samples, 0.10%)</title><rect x="245.6" y="821" width="1.2" height="15.0" fill="rgb(213,159,47)" rx="2" ry="2" />
+<text  x="248.55" y="831.5" ></text>
+</g>
+<g >
+<title>__wake_up_common_lock (36,567,673 samples, 0.01%)</title><rect x="93.9" y="805" width="0.1" height="15.0" fill="rgb(223,179,12)" rx="2" ry="2" />
+<text  x="96.87" y="815.5" ></text>
+</g>
+<g >
+<title>iomap_do_writepage (89,712,897 samples, 0.02%)</title><rect x="612.7" y="757" width="0.3" height="15.0" fill="rgb(211,161,49)" rx="2" ry="2" />
+<text  x="615.70" y="767.5" ></text>
+</g>
+<g >
+<title>drm_handle_vblank (56,047,691 samples, 0.02%)</title><rect x="892.1" y="741" width="0.2" height="15.0" fill="rgb(234,105,14)" rx="2" ry="2" />
+<text  x="895.15" y="751.5" ></text>
+</g>
+<g >
+<title>drm_ioctl_kernel (1,794,313,215 samples, 0.49%)</title><rect x="231.7" y="901" width="5.8" height="15.0" fill="rgb(227,140,17)" rx="2" ry="2" />
+<text  x="234.68" y="911.5" ></text>
+</g>
+<g >
+<title>__sys_recvmsg (121,110,755 samples, 0.03%)</title><rect x="280.1" y="725" width="0.4" height="15.0" fill="rgb(234,126,26)" rx="2" ry="2" />
+<text  x="283.10" y="735.5" ></text>
+</g>
+<g >
+<title>folio_referenced_one (67,276,331 samples, 0.02%)</title><rect x="355.5" y="821" width="0.3" height="15.0" fill="rgb(248,226,22)" rx="2" ry="2" />
+<text  x="358.55" y="831.5" ></text>
+</g>
+<g >
+<title>[libgdk-3.so.0.2404.30] (843,552,297 samples, 0.23%)</title><rect x="1171.5" y="805" width="2.7" height="15.0" fill="rgb(241,146,37)" rx="2" ry="2" />
+<text  x="1174.48" y="815.5" ></text>
+</g>
+<g >
+<title>aio_set_fd_handler (155,689,769 samples, 0.04%)</title><rect x="738.8" y="693" width="0.5" height="15.0" fill="rgb(227,97,32)" rx="2" ry="2" />
+<text  x="741.78" y="703.5" ></text>
+</g>
+<g >
+<title>__sys_recvmsg (387,229,012 samples, 0.11%)</title><rect x="228.1" y="933" width="1.3" height="15.0" fill="rgb(246,135,8)" rx="2" ry="2" />
+<text  x="231.15" y="943.5" ></text>
+</g>
+<g >
+<title>i915_gem_object_unbind (89,395,944 samples, 0.02%)</title><rect x="377.8" y="821" width="0.3" height="15.0" fill="rgb(238,226,40)" rx="2" ry="2" />
+<text  x="380.77" y="831.5" ></text>
+</g>
+<g >
+<title>tcp_recvmsg_locked (3,437,298,623 samples, 0.94%)</title><rect x="628.7" y="581" width="11.0" height="15.0" fill="rgb(217,43,42)" rx="2" ry="2" />
+<text  x="631.67" y="591.5" ></text>
+</g>
+<g >
+<title>__tcp_push_pending_frames (1,429,556,458 samples, 0.39%)</title><rect x="659.6" y="725" width="4.6" height="15.0" fill="rgb(229,132,9)" rx="2" ry="2" />
+<text  x="662.57" y="735.5" ></text>
+</g>
+<g >
+<title>worker_thread (6,724,874,669 samples, 1.83%)</title><rect x="503.1" y="933" width="21.7" height="15.0" fill="rgb(223,186,12)" rx="2" ry="2" />
+<text  x="506.11" y="943.5" >w..</text>
+</g>
+<g >
+<title>skcipher_walk_next (61,536,606 samples, 0.02%)</title><rect x="607.4" y="805" width="0.2" height="15.0" fill="rgb(247,87,23)" rx="2" ry="2" />
+<text  x="610.40" y="815.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (82,205,811 samples, 0.02%)</title><rect x="1174.2" y="693" width="0.3" height="15.0" fill="rgb(237,4,46)" rx="2" ry="2" />
+<text  x="1177.20" y="703.5" ></text>
+</g>
+<g >
+<title>ksys_read (119,699,146 samples, 0.03%)</title><rect x="826.6" y="757" width="0.4" height="15.0" fill="rgb(212,50,7)" rx="2" ry="2" />
+<text  x="829.60" y="767.5" ></text>
+</g>
+<g >
+<title>irqentry_enter (100,828,866 samples, 0.03%)</title><rect x="914.9" y="837" width="0.4" height="15.0" fill="rgb(241,14,20)" rx="2" ry="2" />
+<text  x="917.93" y="847.5" ></text>
+</g>
+<g >
+<title>skcipher_walk_next (98,689,957 samples, 0.03%)</title><rect x="516.6" y="805" width="0.3" height="15.0" fill="rgb(231,111,42)" rx="2" ry="2" />
+<text  x="519.59" y="815.5" ></text>
+</g>
+<g >
+<title>__sys_recvmsg (41,632,092 samples, 0.01%)</title><rect x="738.4" y="629" width="0.1" height="15.0" fill="rgb(228,214,48)" rx="2" ry="2" />
+<text  x="741.38" y="639.5" ></text>
+</g>
+<g >
+<title>[libcurl.so.4.8.0] (39,382,328 samples, 0.01%)</title><rect x="668.8" y="677" width="0.1" height="15.0" fill="rgb(248,35,53)" rx="2" ry="2" />
+<text  x="671.78" y="687.5" ></text>
+</g>
+<g >
+<title>handle_edge_irq (50,883,307 samples, 0.01%)</title><rect x="384.2" y="741" width="0.2" height="15.0" fill="rgb(209,56,32)" rx="2" ry="2" />
+<text  x="387.23" y="751.5" ></text>
+</g>
+<g >
+<title>rmqueue_bulk (53,769,510 samples, 0.01%)</title><rect x="418.3" y="821" width="0.2" height="15.0" fill="rgb(251,198,39)" rx="2" ry="2" />
+<text  x="421.31" y="831.5" ></text>
+</g>
+<g >
+<title>ttwu_queue_wakelist (54,979,312 samples, 0.01%)</title><rect x="328.4" y="517" width="0.2" height="15.0" fill="rgb(246,196,27)" rx="2" ry="2" />
+<text  x="331.39" y="527.5" ></text>
+</g>
+<g >
+<title>schedule_hrtimeout_range_clock (128,668,501 samples, 0.04%)</title><rect x="731.5" y="901" width="0.4" height="15.0" fill="rgb(222,122,31)" rx="2" ry="2" />
+<text  x="734.49" y="911.5" ></text>
+</g>
+<g >
+<title>free_unref_page (58,162,975 samples, 0.02%)</title><rect x="893.0" y="693" width="0.2" height="15.0" fill="rgb(208,198,27)" rx="2" ry="2" />
+<text  x="896.04" y="703.5" ></text>
+</g>
+<g >
+<title>do_epoll_wait (190,502,693 samples, 0.05%)</title><rect x="733.6" y="917" width="0.7" height="15.0" fill="rgb(215,134,1)" rx="2" ry="2" />
+<text  x="736.64" y="927.5" ></text>
+</g>
+<g >
+<title>__wake_up_common (254,940,582 samples, 0.07%)</title><rect x="47.8" y="789" width="0.9" height="15.0" fill="rgb(248,206,3)" rx="2" ry="2" />
+<text  x="50.84" y="799.5" ></text>
+</g>
+<g >
+<title>get_page_from_freelist (37,357,300 samples, 0.01%)</title><rect x="665.0" y="677" width="0.1" height="15.0" fill="rgb(237,172,14)" rx="2" ry="2" />
+<text  x="668.01" y="687.5" ></text>
+</g>
+<g >
+<title>[firefox] (46,075,924 samples, 0.01%)</title><rect x="269.5" y="933" width="0.1" height="15.0" fill="rgb(233,43,32)" rx="2" ry="2" />
+<text  x="272.50" y="943.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (34,570,723 samples, 0.01%)</title><rect x="159.3" y="837" width="0.1" height="15.0" fill="rgb(240,98,54)" rx="2" ry="2" />
+<text  x="162.28" y="847.5" ></text>
+</g>
+<g >
+<title>[firefox] (554,798,805 samples, 0.15%)</title><rect x="171.7" y="933" width="1.8" height="15.0" fill="rgb(208,85,12)" rx="2" ry="2" />
+<text  x="174.69" y="943.5" ></text>
+</g>
+<g >
+<title>g_signal_emit (64,295,904 samples, 0.02%)</title><rect x="1179.5" y="613" width="0.3" height="15.0" fill="rgb(207,226,42)" rx="2" ry="2" />
+<text  x="1182.55" y="623.5" ></text>
+</g>
+<g >
+<title>__engine_unpark (36,214,719 samples, 0.01%)</title><rect x="138.9" y="709" width="0.1" height="15.0" fill="rgb(213,138,46)" rx="2" ry="2" />
+<text  x="141.88" y="719.5" ></text>
+</g>
+<g >
+<title>__wake_up_common (265,063,223 samples, 0.07%)</title><rect x="327.7" y="565" width="0.9" height="15.0" fill="rgb(240,60,18)" rx="2" ry="2" />
+<text  x="330.72" y="575.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (40,392,378 samples, 0.01%)</title><rect x="883.9" y="837" width="0.1" height="15.0" fill="rgb(221,38,10)" rx="2" ry="2" />
+<text  x="886.91" y="847.5" ></text>
+</g>
+<g >
+<title>[libcairo.so.2.11706.0] (81,168,605 samples, 0.02%)</title><rect x="1176.3" y="933" width="0.3" height="15.0" fill="rgb(241,12,20)" rx="2" ry="2" />
+<text  x="1179.34" y="943.5" ></text>
+</g>
+<g >
+<title>kthread (365,912,767 samples, 0.10%)</title><rect x="385.8" y="949" width="1.1" height="15.0" fill="rgb(206,55,50)" rx="2" ry="2" />
+<text  x="388.76" y="959.5" ></text>
+</g>
+<g >
+<title>execlists_submission_tasklet (1,423,872,823 samples, 0.39%)</title><rect x="347.1" y="869" width="4.6" height="15.0" fill="rgb(228,11,44)" rx="2" ry="2" />
+<text  x="350.11" y="879.5" ></text>
+</g>
+<g >
+<title>mod_lruvec_page_state (169,564,104 samples, 0.05%)</title><rect x="384.5" y="805" width="0.6" height="15.0" fill="rgb(237,202,21)" rx="2" ry="2" />
+<text  x="387.53" y="815.5" ></text>
+</g>
+<g >
+<title>rest_init (16,597,204,628 samples, 4.53%)</title><rect x="831.9" y="917" width="53.5" height="15.0" fill="rgb(217,192,23)" rx="2" ry="2" />
+<text  x="834.94" y="927.5" >rest_..</text>
+</g>
+<g >
+<title>__skb_datagram_iter (275,286,336 samples, 0.08%)</title><rect x="638.7" y="549" width="0.8" height="15.0" fill="rgb(243,29,31)" rx="2" ry="2" />
+<text  x="641.66" y="559.5" ></text>
+</g>
+<g >
+<title>rmap_walk_file (88,874,534 samples, 0.02%)</title><rect x="355.5" y="837" width="0.3" height="15.0" fill="rgb(231,33,30)" rx="2" ry="2" />
+<text  x="358.54" y="847.5" ></text>
+</g>
+<g >
+<title>hrtimer_update_next_event (73,077,768 samples, 0.02%)</title><rect x="913.4" y="805" width="0.3" height="15.0" fill="rgb(239,87,5)" rx="2" ry="2" />
+<text  x="916.42" y="815.5" ></text>
+</g>
+<g >
+<title>fw_domains_get_with_fallback (1,335,641,756 samples, 0.36%)</title><rect x="347.3" y="693" width="4.3" height="15.0" fill="rgb(240,135,37)" rx="2" ry="2" />
+<text  x="350.33" y="703.5" ></text>
+</g>
+<g >
+<title>update_sd_lb_stats.constprop.0 (56,544,042 samples, 0.02%)</title><rect x="89.6" y="757" width="0.1" height="15.0" fill="rgb(236,28,25)" rx="2" ry="2" />
+<text  x="92.57" y="767.5" ></text>
+</g>
+<g >
+<title>psi_group_change (47,650,469 samples, 0.01%)</title><rect x="1130.8" y="837" width="0.2" height="15.0" fill="rgb(234,108,45)" rx="2" ry="2" />
+<text  x="1133.81" y="847.5" ></text>
+</g>
+<g >
+<title>futex_wait (378,947,868 samples, 0.10%)</title><rect x="291.7" y="869" width="1.2" height="15.0" fill="rgb(213,58,41)" rx="2" ry="2" />
+<text  x="294.72" y="879.5" ></text>
+</g>
+<g >
+<title>do_writepages (437,693,937 samples, 0.12%)</title><rect x="555.6" y="821" width="1.4" height="15.0" fill="rgb(214,137,37)" rx="2" ry="2" />
+<text  x="558.61" y="831.5" ></text>
+</g>
+<g >
+<title>iv_of_dmreq (315,058,627 samples, 0.09%)</title><rect x="592.6" y="869" width="1.0" height="15.0" fill="rgb(216,133,13)" rx="2" ry="2" />
+<text  x="595.63" y="879.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (33,406,931 samples, 0.01%)</title><rect x="191.3" y="933" width="0.1" height="15.0" fill="rgb(229,178,12)" rx="2" ry="2" />
+<text  x="194.29" y="943.5" ></text>
+</g>
+<g >
+<title>mozilla::detail::MutexImpl::unlock (39,239,542 samples, 0.01%)</title><rect x="149.8" y="949" width="0.1" height="15.0" fill="rgb(218,182,51)" rx="2" ry="2" />
+<text  x="152.78" y="959.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (32,721,912 samples, 0.01%)</title><rect x="268.7" y="885" width="0.1" height="15.0" fill="rgb(241,74,36)" rx="2" ry="2" />
+<text  x="271.71" y="895.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (703,934,372 samples, 0.19%)</title><rect x="29.5" y="933" width="2.3" height="15.0" fill="rgb(236,121,12)" rx="2" ry="2" />
+<text  x="32.49" y="943.5" ></text>
+</g>
+<g >
+<title>[git] (102,737,742 samples, 0.03%)</title><rect x="285.3" y="853" width="0.3" height="15.0" fill="rgb(253,53,8)" rx="2" ry="2" />
+<text  x="288.28" y="863.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (34,376,882 samples, 0.01%)</title><rect x="384.7" y="741" width="0.1" height="15.0" fill="rgb(220,117,11)" rx="2" ry="2" />
+<text  x="387.69" y="751.5" ></text>
+</g>
+<g >
+<title>iwl_pcie_rx_allocator_work (159,514,594 samples, 0.04%)</title><rect x="614.0" y="901" width="0.5" height="15.0" fill="rgb(233,84,16)" rx="2" ry="2" />
+<text  x="616.96" y="911.5" ></text>
+</g>
+<g >
+<title>[libxul.so] (890,147,944 samples, 0.24%)</title><rect x="294.0" y="933" width="2.9" height="15.0" fill="rgb(251,30,30)" rx="2" ry="2" />
+<text  x="297.02" y="943.5" ></text>
+</g>
+<g >
+<title>__sendmsg (165,243,063 samples, 0.05%)</title><rect x="93.6" y="949" width="0.5" height="15.0" fill="rgb(230,223,49)" rx="2" ry="2" />
+<text  x="96.55" y="959.5" ></text>
+</g>
+<g >
+<title>simd_skcipher_encrypt (160,137,552 samples, 0.04%)</title><rect x="592.1" y="853" width="0.5" height="15.0" fill="rgb(242,152,31)" rx="2" ry="2" />
+<text  x="595.12" y="863.5" ></text>
+</g>
+<g >
+<title>xas_store (357,835,696 samples, 0.10%)</title><rect x="699.4" y="709" width="1.1" height="15.0" fill="rgb(253,183,25)" rx="2" ry="2" />
+<text  x="702.35" y="719.5" ></text>
+</g>
+<g >
+<title>mod_lruvec_page_state (37,321,780 samples, 0.01%)</title><rect x="502.7" y="725" width="0.1" height="15.0" fill="rgb(242,161,46)" rx="2" ry="2" />
+<text  x="505.67" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (95,631,315 samples, 0.03%)</title><rect x="275.4" y="901" width="0.3" height="15.0" fill="rgb(214,139,6)" rx="2" ry="2" />
+<text  x="278.37" y="911.5" ></text>
+</g>
+<g >
+<title>do_sys_poll (102,931,511 samples, 0.03%)</title><rect x="627.1" y="629" width="0.4" height="15.0" fill="rgb(254,137,37)" rx="2" ry="2" />
+<text  x="630.15" y="639.5" ></text>
+</g>
+<g >
+<title>nbd_send_request (1,598,025,671 samples, 0.44%)</title><rect x="739.3" y="741" width="5.2" height="15.0" fill="rgb(206,32,23)" rx="2" ry="2" />
+<text  x="742.31" y="751.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (982,467,890 samples, 0.27%)</title><rect x="622.9" y="661" width="3.2" height="15.0" fill="rgb(238,23,36)" rx="2" ry="2" />
+<text  x="625.90" y="671.5" ></text>
+</g>
+<g >
+<title>[libevent-2.1.so.7.0.1] (200,297,858 samples, 0.05%)</title><rect x="43.3" y="933" width="0.6" height="15.0" fill="rgb(252,194,54)" rx="2" ry="2" />
+<text  x="46.26" y="943.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (279,206,629 samples, 0.08%)</title><rect x="1147.5" y="869" width="0.9" height="15.0" fill="rgb(242,173,23)" rx="2" ry="2" />
+<text  x="1150.52" y="879.5" ></text>
+</g>
+<g >
+<title>newidle_balance (135,238,479 samples, 0.04%)</title><rect x="292.2" y="789" width="0.4" height="15.0" fill="rgb(242,111,49)" rx="2" ry="2" />
+<text  x="295.15" y="799.5" ></text>
+</g>
+<g >
+<title>ieee80211_lookup_ra_sta (88,796,593 samples, 0.02%)</title><rect x="631.3" y="453" width="0.3" height="15.0" fill="rgb(215,128,46)" rx="2" ry="2" />
+<text  x="634.34" y="463.5" ></text>
+</g>
+<g >
+<title>kworker/u17:1-i (328,425,933 samples, 0.09%)</title><rect x="613.8" y="981" width="1.0" height="15.0" fill="rgb(217,153,52)" rx="2" ry="2" />
+<text  x="616.78" y="991.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (177,664,858 samples, 0.05%)</title><rect x="1177.9" y="405" width="0.5" height="15.0" fill="rgb(237,136,0)" rx="2" ry="2" />
+<text  x="1180.86" y="415.5" ></text>
+</g>
+<g >
+<title>xfs_vm_writepages (438,511,554 samples, 0.12%)</title><rect x="523.3" y="805" width="1.4" height="15.0" fill="rgb(250,216,46)" rx="2" ry="2" />
+<text  x="526.31" y="815.5" ></text>
+</g>
+<g >
+<title>[firefox] (41,363,041 samples, 0.01%)</title><rect x="12.3" y="933" width="0.1" height="15.0" fill="rgb(236,200,15)" rx="2" ry="2" />
+<text  x="15.29" y="943.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (273,060,768 samples, 0.07%)</title><rect x="1177.8" y="725" width="0.9" height="15.0" fill="rgb(219,192,9)" rx="2" ry="2" />
+<text  x="1180.78" y="735.5" ></text>
+</g>
+<g >
+<title>_aesni_enc1 (138,336,011 samples, 0.04%)</title><rect x="509.9" y="805" width="0.4" height="15.0" fill="rgb(224,40,46)" rx="2" ry="2" />
+<text  x="512.90" y="815.5" ></text>
+</g>
+<g >
+<title>[libxul.so] (501,815,854 samples, 0.14%)</title><rect x="155.8" y="965" width="1.6" height="15.0" fill="rgb(212,76,29)" rx="2" ry="2" />
+<text  x="158.79" y="975.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (250,804,040 samples, 0.07%)</title><rect x="736.9" y="693" width="0.8" height="15.0" fill="rgb(209,25,24)" rx="2" ry="2" />
+<text  x="739.94" y="703.5" ></text>
+</g>
+<g >
+<title>wb_writeback (640,823,622 samples, 0.17%)</title><rect x="476.9" y="885" width="2.1" height="15.0" fill="rgb(219,40,13)" rx="2" ry="2" />
+<text  x="479.90" y="895.5" ></text>
+</g>
+<g >
+<title>g_signal_emit (53,512,816 samples, 0.01%)</title><rect x="1177.3" y="805" width="0.2" height="15.0" fill="rgb(228,104,2)" rx="2" ry="2" />
+<text  x="1180.34" y="815.5" ></text>
+</g>
+<g >
+<title>__wake_up_common (36,571,405 samples, 0.01%)</title><rect x="320.7" y="533" width="0.1" height="15.0" fill="rgb(216,20,40)" rx="2" ry="2" />
+<text  x="323.67" y="543.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (1,961,888,356 samples, 0.54%)</title><rect x="128.8" y="853" width="6.3" height="15.0" fill="rgb(209,111,32)" rx="2" ry="2" />
+<text  x="131.76" y="863.5" ></text>
+</g>
+<g >
+<title>do_iter_write (348,286,835 samples, 0.10%)</title><rect x="19.2" y="741" width="1.1" height="15.0" fill="rgb(254,82,11)" rx="2" ry="2" />
+<text  x="22.18" y="751.5" ></text>
+</g>
+<g >
+<title>__i915_vma_evict (48,386,584 samples, 0.01%)</title><rect x="377.8" y="773" width="0.2" height="15.0" fill="rgb(244,207,5)" rx="2" ry="2" />
+<text  x="380.82" y="783.5" ></text>
+</g>
+<g >
+<title>qio_channel_readv_full_all_eof (276,500,903 samples, 0.08%)</title><rect x="744.9" y="725" width="0.9" height="15.0" fill="rgb(218,124,6)" rx="2" ry="2" />
+<text  x="747.92" y="735.5" ></text>
+</g>
+<g >
+<title>shrink_page_list (4,486,072,282 samples, 1.22%)</title><rect x="356.0" y="869" width="14.5" height="15.0" fill="rgb(249,209,52)" rx="2" ry="2" />
+<text  x="359.03" y="879.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_established (201,271,826 samples, 0.05%)</title><rect x="741.2" y="245" width="0.7" height="15.0" fill="rgb(208,201,7)" rx="2" ry="2" />
+<text  x="744.21" y="255.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (59,008,641 samples, 0.02%)</title><rect x="267.4" y="933" width="0.1" height="15.0" fill="rgb(212,186,6)" rx="2" ry="2" />
+<text  x="270.35" y="943.5" ></text>
+</g>
+<g >
+<title>futex_wake (89,107,025 samples, 0.02%)</title><rect x="148.7" y="853" width="0.3" height="15.0" fill="rgb(222,141,10)" rx="2" ry="2" />
+<text  x="151.69" y="863.5" ></text>
+</g>
+<g >
+<title>____sys_recvmsg (94,413,886 samples, 0.03%)</title><rect x="44.5" y="853" width="0.4" height="15.0" fill="rgb(252,79,22)" rx="2" ry="2" />
+<text  x="47.55" y="863.5" ></text>
+</g>
+<g >
+<title>curl_multi_remove_handle (37,059,153 samples, 0.01%)</title><rect x="657.0" y="773" width="0.2" height="15.0" fill="rgb(206,170,10)" rx="2" ry="2" />
+<text  x="660.03" y="783.5" ></text>
+</g>
+<g >
+<title>[libcurl.so.4.8.0] (81,381,794 samples, 0.02%)</title><rect x="284.8" y="709" width="0.2" height="15.0" fill="rgb(243,161,20)" rx="2" ry="2" />
+<text  x="287.75" y="719.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver (428,247,338 samples, 0.12%)</title><rect x="322.9" y="693" width="1.4" height="15.0" fill="rgb(248,191,22)" rx="2" ry="2" />
+<text  x="325.91" y="703.5" ></text>
+</g>
+<g >
+<title>process_csb (42,087,439 samples, 0.01%)</title><rect x="896.9" y="773" width="0.2" height="15.0" fill="rgb(253,187,16)" rx="2" ry="2" />
+<text  x="899.95" y="783.5" ></text>
+</g>
+<g >
+<title>ieee80211_queue_skb (1,053,053,912 samples, 0.29%)</title><rect x="631.6" y="453" width="3.4" height="15.0" fill="rgb(245,170,54)" rx="2" ry="2" />
+<text  x="634.62" y="463.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (365,912,767 samples, 0.10%)</title><rect x="385.8" y="965" width="1.1" height="15.0" fill="rgb(228,113,22)" rx="2" ry="2" />
+<text  x="388.76" y="975.5" ></text>
+</g>
+<g >
+<title>X509_STORE_load_file_ex (76,095,565 samples, 0.02%)</title><rect x="284.8" y="693" width="0.2" height="15.0" fill="rgb(244,31,2)" rx="2" ry="2" />
+<text  x="287.77" y="703.5" ></text>
+</g>
+<g >
+<title>filemap_add_folio (824,707,900 samples, 0.22%)</title><rect x="754.0" y="725" width="2.6" height="15.0" fill="rgb(239,97,43)" rx="2" ry="2" />
+<text  x="756.99" y="735.5" ></text>
+</g>
+<g >
+<title>alloc_skb_with_frags (149,326,220 samples, 0.04%)</title><rect x="19.5" y="645" width="0.4" height="15.0" fill="rgb(223,200,53)" rx="2" ry="2" />
+<text  x="22.47" y="655.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (90,060,986 samples, 0.02%)</title><rect x="168.7" y="917" width="0.3" height="15.0" fill="rgb(225,161,50)" rx="2" ry="2" />
+<text  x="171.68" y="927.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (773,497,463 samples, 0.21%)</title><rect x="1182.4" y="949" width="2.5" height="15.0" fill="rgb(208,126,11)" rx="2" ry="2" />
+<text  x="1185.45" y="959.5" ></text>
+</g>
+<g >
+<title>[libvlccore.so.9.0.1] (1,315,799,293 samples, 0.36%)</title><rect x="1162.7" y="933" width="4.2" height="15.0" fill="rgb(225,201,11)" rx="2" ry="2" />
+<text  x="1165.66" y="943.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (142,167,239 samples, 0.04%)</title><rect x="25.0" y="901" width="0.4" height="15.0" fill="rgb(215,22,23)" rx="2" ry="2" />
+<text  x="27.96" y="911.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (43,619,265 samples, 0.01%)</title><rect x="216.5" y="661" width="0.1" height="15.0" fill="rgb(226,210,39)" rx="2" ry="2" />
+<text  x="219.49" y="671.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (221,026,951 samples, 0.06%)</title><rect x="1177.8" y="709" width="0.7" height="15.0" fill="rgb(248,34,23)" rx="2" ry="2" />
+<text  x="1180.78" y="719.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (110,575,032 samples, 0.03%)</title><rect x="204.2" y="805" width="0.4" height="15.0" fill="rgb(233,156,44)" rx="2" ry="2" />
+<text  x="207.21" y="815.5" ></text>
+</g>
+<g >
+<title>__mod_lruvec_page_state (32,589,523 samples, 0.01%)</title><rect x="392.4" y="789" width="0.1" height="15.0" fill="rgb(229,128,40)" rx="2" ry="2" />
+<text  x="395.43" y="799.5" ></text>
+</g>
+<g >
+<title>irq_work_single (64,432,098 samples, 0.02%)</title><rect x="896.5" y="725" width="0.2" height="15.0" fill="rgb(237,87,51)" rx="2" ry="2" />
+<text  x="899.46" y="735.5" ></text>
+</g>
+<g >
+<title>hrtimer_start_range_ns (39,344,603 samples, 0.01%)</title><rect x="229.9" y="885" width="0.1" height="15.0" fill="rgb(222,215,31)" rx="2" ry="2" />
+<text  x="232.91" y="895.5" ></text>
+</g>
+<g >
+<title>xfs_buffered_write_iomap_begin (33,796,541 samples, 0.01%)</title><rect x="725.2" y="773" width="0.1" height="15.0" fill="rgb(214,127,29)" rx="2" ry="2" />
+<text  x="728.20" y="783.5" ></text>
+</g>
+<g >
+<title>rate_control_cap_mask (33,325,584 samples, 0.01%)</title><rect x="632.9" y="357" width="0.1" height="15.0" fill="rgb(224,202,35)" rx="2" ry="2" />
+<text  x="635.91" y="367.5" ></text>
+</g>
+<g >
+<title>do_futex (68,434,614 samples, 0.02%)</title><rect x="173.7" y="869" width="0.2" height="15.0" fill="rgb(239,198,3)" rx="2" ry="2" />
+<text  x="176.69" y="879.5" ></text>
+</g>
+<g >
+<title>__libc_start_call_main (124,008,357 samples, 0.03%)</title><rect x="285.3" y="933" width="0.4" height="15.0" fill="rgb(208,228,54)" rx="2" ry="2" />
+<text  x="288.27" y="943.5" ></text>
+</g>
+<g >
+<title>mempool_alloc (267,544,613 samples, 0.07%)</title><rect x="554.7" y="885" width="0.9" height="15.0" fill="rgb(229,23,54)" rx="2" ry="2" />
+<text  x="557.75" y="895.5" ></text>
+</g>
+<g >
+<title>vlc_cond_timedwait (65,360,034 samples, 0.02%)</title><rect x="1166.7" y="917" width="0.2" height="15.0" fill="rgb(209,147,36)" rx="2" ry="2" />
+<text  x="1169.69" y="927.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (434,261,795 samples, 0.12%)</title><rect x="1171.6" y="325" width="1.4" height="15.0" fill="rgb(231,79,34)" rx="2" ry="2" />
+<text  x="1174.57" y="335.5" ></text>
+</g>
+<g >
+<title>ip_sublist_rcv (3,212,450,482 samples, 0.88%)</title><rect x="322.2" y="725" width="10.3" height="15.0" fill="rgb(240,38,44)" rx="2" ry="2" />
+<text  x="325.15" y="735.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (260,878,165 samples, 0.07%)</title><rect x="422.2" y="837" width="0.8" height="15.0" fill="rgb(214,158,20)" rx="2" ry="2" />
+<text  x="425.17" y="847.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (60,376,207 samples, 0.02%)</title><rect x="1179.6" y="565" width="0.1" height="15.0" fill="rgb(208,15,7)" rx="2" ry="2" />
+<text  x="1182.55" y="575.5" ></text>
+</g>
+<g >
+<title>crypt_page_alloc (178,127,516 samples, 0.05%)</title><rect x="571.3" y="869" width="0.6" height="15.0" fill="rgb(247,200,42)" rx="2" ry="2" />
+<text  x="574.28" y="879.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (194,149,399 samples, 0.05%)</title><rect x="320.9" y="661" width="0.6" height="15.0" fill="rgb(243,47,51)" rx="2" ry="2" />
+<text  x="323.86" y="671.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (320,471,299 samples, 0.09%)</title><rect x="1178.8" y="677" width="1.0" height="15.0" fill="rgb(235,165,40)" rx="2" ry="2" />
+<text  x="1181.78" y="687.5" ></text>
+</g>
+<g >
+<title>fwtable_write32 (1,347,094,967 samples, 0.37%)</title><rect x="347.3" y="709" width="4.3" height="15.0" fill="rgb(214,2,21)" rx="2" ry="2" />
+<text  x="350.30" y="719.5" ></text>
+</g>
+<g >
+<title>[ssh] (67,620,961 samples, 0.02%)</title><rect x="830.4" y="917" width="0.2" height="15.0" fill="rgb(248,31,43)" rx="2" ry="2" />
+<text  x="833.39" y="927.5" ></text>
+</g>
+<g >
+<title>malloc (38,195,065 samples, 0.01%)</title><rect x="12.6" y="933" width="0.1" height="15.0" fill="rgb(211,101,37)" rx="2" ry="2" />
+<text  x="15.56" y="943.5" ></text>
+</g>
+<g >
+<title>__xfs_trans_commit (217,344,218 samples, 0.06%)</title><rect x="721.7" y="741" width="0.7" height="15.0" fill="rgb(248,148,2)" rx="2" ry="2" />
+<text  x="724.74" y="751.5" ></text>
+</g>
+<g >
+<title>drm_ioctl_kernel (251,726,675 samples, 0.07%)</title><rect x="1164.3" y="661" width="0.8" height="15.0" fill="rgb(224,43,34)" rx="2" ry="2" />
+<text  x="1167.31" y="671.5" ></text>
+</g>
+<g >
+<title>inet6_recvmsg (68,364,827 samples, 0.02%)</title><rect x="658.3" y="757" width="0.2" height="15.0" fill="rgb(228,229,28)" rx="2" ry="2" />
+<text  x="661.32" y="767.5" ></text>
+</g>
+<g >
+<title>ip6_input (63,348,984 samples, 0.02%)</title><rect x="660.6" y="501" width="0.2" height="15.0" fill="rgb(246,94,43)" rx="2" ry="2" />
+<text  x="663.58" y="511.5" ></text>
+</g>
+<g >
+<title>write_cache_pages (163,765,990 samples, 0.04%)</title><rect x="533.4" y="773" width="0.5" height="15.0" fill="rgb(227,77,43)" rx="2" ry="2" />
+<text  x="536.40" y="783.5" ></text>
+</g>
+<g >
+<title>[libglamoregl.so] (641,684,575 samples, 0.18%)</title><rect x="221.0" y="901" width="2.1" height="15.0" fill="rgb(227,45,25)" rx="2" ry="2" />
+<text  x="224.03" y="911.5" ></text>
+</g>
+<g >
+<title>__e1000_read_phy_reg_hv (41,943,128 samples, 0.01%)</title><rect x="390.3" y="837" width="0.2" height="15.0" fill="rgb(212,218,33)" rx="2" ry="2" />
+<text  x="393.35" y="847.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (4,936,720,583 samples, 1.35%)</title><rect x="597.2" y="965" width="15.9" height="15.0" fill="rgb(252,172,26)" rx="2" ry="2" />
+<text  x="600.16" y="975.5" ></text>
+</g>
+<g >
+<title>ssh (118,573,317 samples, 0.03%)</title><rect x="830.3" y="981" width="0.4" height="15.0" fill="rgb(220,220,15)" rx="2" ry="2" />
+<text  x="833.33" y="991.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (44,276,571 samples, 0.01%)</title><rect x="1163.0" y="773" width="0.1" height="15.0" fill="rgb(225,7,28)" rx="2" ry="2" />
+<text  x="1165.99" y="783.5" ></text>
+</g>
+<g >
+<title>[firefox] (36,988,634 samples, 0.01%)</title><rect x="114.6" y="901" width="0.1" height="15.0" fill="rgb(237,124,53)" rx="2" ry="2" />
+<text  x="117.56" y="911.5" ></text>
+</g>
+<g >
+<title>BlockHandler (339,364,677 samples, 0.09%)</title><rect x="200.0" y="933" width="1.1" height="15.0" fill="rgb(226,17,47)" rx="2" ry="2" />
+<text  x="202.99" y="943.5" ></text>
+</g>
+<g >
+<title>g_signal_emit (35,946,859 samples, 0.01%)</title><rect x="1181.4" y="821" width="0.1" height="15.0" fill="rgb(253,86,48)" rx="2" ry="2" />
+<text  x="1184.38" y="831.5" ></text>
+</g>
+<g >
+<title>malloc (116,201,316 samples, 0.03%)</title><rect x="291.1" y="949" width="0.4" height="15.0" fill="rgb(212,147,29)" rx="2" ry="2" />
+<text  x="294.12" y="959.5" ></text>
+</g>
+<g >
+<title>[libglamoregl.so] (1,537,942,643 samples, 0.42%)</title><rect x="214.3" y="933" width="4.9" height="15.0" fill="rgb(222,72,33)" rx="2" ry="2" />
+<text  x="217.26" y="943.5" ></text>
+</g>
+<g >
+<title>skcipher_walk_done (42,934,151 samples, 0.01%)</title><rect x="566.3" y="821" width="0.2" height="15.0" fill="rgb(238,128,7)" rx="2" ry="2" />
+<text  x="569.33" y="831.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (372,703,383 samples, 0.10%)</title><rect x="211.7" y="869" width="1.2" height="15.0" fill="rgb(231,137,26)" rx="2" ry="2" />
+<text  x="214.68" y="879.5" ></text>
+</g>
+<g >
+<title>xfs_iext_lookup_extent (45,075,930 samples, 0.01%)</title><rect x="688.2" y="741" width="0.2" height="15.0" fill="rgb(232,194,54)" rx="2" ry="2" />
+<text  x="691.22" y="751.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (821,361,760 samples, 0.22%)</title><rect x="1171.5" y="613" width="2.6" height="15.0" fill="rgb(227,38,9)" rx="2" ry="2" />
+<text  x="1174.50" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (65,744,113 samples, 0.02%)</title><rect x="135.1" y="821" width="0.2" height="15.0" fill="rgb(239,219,28)" rx="2" ry="2" />
+<text  x="138.11" y="831.5" ></text>
+</g>
+<g >
+<title>free (168,584,414 samples, 0.05%)</title><rect x="49.3" y="949" width="0.6" height="15.0" fill="rgb(250,66,53)" rx="2" ry="2" />
+<text  x="52.33" y="959.5" ></text>
+</g>
+<g >
+<title>update_curr (42,728,561 samples, 0.01%)</title><rect x="290.0" y="837" width="0.1" height="15.0" fill="rgb(244,169,20)" rx="2" ry="2" />
+<text  x="292.99" y="847.5" ></text>
+</g>
+<g >
+<title>__swap_writepage (278,526,340 samples, 0.08%)</title><rect x="368.9" y="821" width="0.9" height="15.0" fill="rgb(211,139,40)" rx="2" ry="2" />
+<text  x="371.86" y="831.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (327,388,335 samples, 0.09%)</title><rect x="724.7" y="885" width="1.0" height="15.0" fill="rgb(221,200,41)" rx="2" ry="2" />
+<text  x="727.65" y="895.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (67,825,361 samples, 0.02%)</title><rect x="384.2" y="805" width="0.2" height="15.0" fill="rgb(244,105,8)" rx="2" ry="2" />
+<text  x="387.20" y="815.5" ></text>
+</g>
+<g >
+<title>__vdso_clock_gettime (53,576,106 samples, 0.01%)</title><rect x="104.0" y="917" width="0.2" height="15.0" fill="rgb(247,24,2)" rx="2" ry="2" />
+<text  x="106.98" y="927.5" ></text>
+</g>
+<g >
+<title>enqueue_task (35,227,818 samples, 0.01%)</title><rect x="48.4" y="677" width="0.1" height="15.0" fill="rgb(238,187,34)" rx="2" ry="2" />
+<text  x="51.39" y="687.5" ></text>
+</g>
+<g >
+<title>mozilla::detail::ConditionVariableImpl::wait (206,940,875 samples, 0.06%)</title><rect x="149.0" y="949" width="0.7" height="15.0" fill="rgb(241,41,3)" rx="2" ry="2" />
+<text  x="152.04" y="959.5" ></text>
+</g>
+<g >
+<title>[firefox] (150,039,894 samples, 0.04%)</title><rect x="50.2" y="901" width="0.5" height="15.0" fill="rgb(209,79,48)" rx="2" ry="2" />
+<text  x="53.20" y="911.5" ></text>
+</g>
+<g >
+<title>__vdso_clock_gettime (52,932,091 samples, 0.01%)</title><rect x="278.6" y="869" width="0.2" height="15.0" fill="rgb(233,169,49)" rx="2" ry="2" />
+<text  x="281.61" y="879.5" ></text>
+</g>
+<g >
+<title>napi_gro_complete.constprop.0 (95,574,082 samples, 0.03%)</title><rect x="309.0" y="725" width="0.4" height="15.0" fill="rgb(232,110,45)" rx="2" ry="2" />
+<text  x="312.04" y="735.5" ></text>
+</g>
+<g >
+<title>irq_enter_rcu (208,359,599 samples, 0.06%)</title><rect x="914.2" y="837" width="0.7" height="15.0" fill="rgb(235,163,28)" rx="2" ry="2" />
+<text  x="917.24" y="847.5" ></text>
+</g>
+<g >
+<title>xfs_bmapi_allocate (104,841,268 samples, 0.03%)</title><rect x="753.4" y="677" width="0.3" height="15.0" fill="rgb(248,34,23)" rx="2" ry="2" />
+<text  x="756.36" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_getsockname (57,932,848 samples, 0.02%)</title><rect x="641.0" y="661" width="0.2" height="15.0" fill="rgb(224,129,44)" rx="2" ry="2" />
+<text  x="644.01" y="671.5" ></text>
+</g>
+<g >
+<title>free (54,687,520 samples, 0.01%)</title><rect x="36.7" y="949" width="0.2" height="15.0" fill="rgb(252,174,9)" rx="2" ry="2" />
+<text  x="39.69" y="959.5" ></text>
+</g>
+<g >
+<title>__handle_mm_fault (36,210,616 samples, 0.01%)</title><rect x="275.8" y="869" width="0.1" height="15.0" fill="rgb(226,71,27)" rx="2" ry="2" />
+<text  x="278.82" y="879.5" ></text>
+</g>
+<g >
+<title>__rcu_read_lock (38,728,073 samples, 0.01%)</title><rect x="674.4" y="757" width="0.1" height="15.0" fill="rgb(236,86,9)" rx="2" ry="2" />
+<text  x="677.37" y="767.5" ></text>
+</g>
+<g >
+<title>xas_descend (121,404,452 samples, 0.03%)</title><rect x="698.8" y="693" width="0.3" height="15.0" fill="rgb(214,196,18)" rx="2" ry="2" />
+<text  x="701.75" y="703.5" ></text>
+</g>
+<g >
+<title>[libglib-2.0.so.0.7303.0] (47,507,753 samples, 0.01%)</title><rect x="100.4" y="869" width="0.2" height="15.0" fill="rgb(216,116,35)" rx="2" ry="2" />
+<text  x="103.40" y="879.5" ></text>
+</g>
+<g >
+<title>__entry_text_start (56,825,832 samples, 0.02%)</title><rect x="97.2" y="901" width="0.1" height="15.0" fill="rgb(205,66,39)" rx="2" ry="2" />
+<text  x="100.17" y="911.5" ></text>
+</g>
+<g >
+<title>iwl_pcie_rx_handle (5,255,336,379 samples, 1.43%)</title><rect x="302.1" y="789" width="16.9" height="15.0" fill="rgb(234,112,44)" rx="2" ry="2" />
+<text  x="305.10" y="799.5" ></text>
+</g>
+<g >
+<title>skb_release_data (36,325,473 samples, 0.01%)</title><rect x="311.6" y="709" width="0.1" height="15.0" fill="rgb(213,73,51)" rx="2" ry="2" />
+<text  x="314.63" y="719.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_call_function_single (92,739,818 samples, 0.03%)</title><rect x="915.6" y="869" width="0.3" height="15.0" fill="rgb(242,96,9)" rx="2" ry="2" />
+<text  x="918.61" y="879.5" ></text>
+</g>
+<g >
+<title>schedule_hrtimeout_range_clock (38,053,314 samples, 0.01%)</title><rect x="1170.7" y="901" width="0.1" height="15.0" fill="rgb(216,168,43)" rx="2" ry="2" />
+<text  x="1173.67" y="911.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (136,422,483 samples, 0.04%)</title><rect x="216.2" y="773" width="0.4" height="15.0" fill="rgb(220,226,11)" rx="2" ry="2" />
+<text  x="219.20" y="783.5" ></text>
+</g>
+<g >
+<title>__wake_up_common (41,814,421 samples, 0.01%)</title><rect x="732.1" y="837" width="0.2" height="15.0" fill="rgb(233,88,17)" rx="2" ry="2" />
+<text  x="735.12" y="847.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (317,114,738 samples, 0.09%)</title><rect x="826.2" y="837" width="1.0" height="15.0" fill="rgb(227,144,47)" rx="2" ry="2" />
+<text  x="829.21" y="847.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (2,102,932,126 samples, 0.57%)</title><rect x="704.7" y="725" width="6.8" height="15.0" fill="rgb(236,121,47)" rx="2" ry="2" />
+<text  x="707.73" y="735.5" ></text>
+</g>
+<g >
+<title>__mod_lruvec_page_state (34,200,074 samples, 0.01%)</title><rect x="237.0" y="773" width="0.1" height="15.0" fill="rgb(253,11,14)" rx="2" ry="2" />
+<text  x="239.96" y="783.5" ></text>
+</g>
+<g >
+<title>dma_fence_add_callback (99,344,914 samples, 0.03%)</title><rect x="133.3" y="661" width="0.3" height="15.0" fill="rgb(214,214,12)" rx="2" ry="2" />
+<text  x="136.28" y="671.5" ></text>
+</g>
+<g >
+<title>net_rx_action (819,493,308 samples, 0.22%)</title><rect x="660.5" y="565" width="2.6" height="15.0" fill="rgb(233,152,12)" rx="2" ry="2" />
+<text  x="663.46" y="575.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (39,044,160 samples, 0.01%)</title><rect x="280.5" y="725" width="0.1" height="15.0" fill="rgb(226,42,7)" rx="2" ry="2" />
+<text  x="283.50" y="735.5" ></text>
+</g>
+<g >
+<title>iwl_mvm_rx_tx_cmd (1,469,415,964 samples, 0.40%)</title><rect x="311.1" y="757" width="4.7" height="15.0" fill="rgb(218,88,43)" rx="2" ry="2" />
+<text  x="314.08" y="767.5" ></text>
+</g>
+<g >
+<title>iomap_write_begin (1,440,363,083 samples, 0.39%)</title><rect x="753.7" y="757" width="4.7" height="15.0" fill="rgb(216,115,2)" rx="2" ry="2" />
+<text  x="756.73" y="767.5" ></text>
+</g>
+<g >
+<title>[libxcb.so.1.1.0] (63,245,826 samples, 0.02%)</title><rect x="1165.7" y="645" width="0.2" height="15.0" fill="rgb(218,83,16)" rx="2" ry="2" />
+<text  x="1168.70" y="655.5" ></text>
+</g>
+<g >
+<title>ttwu_do_activate (195,349,253 samples, 0.05%)</title><rect x="881.4" y="837" width="0.6" height="15.0" fill="rgb(254,180,17)" rx="2" ry="2" />
+<text  x="884.37" y="847.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (338,360,816 samples, 0.09%)</title><rect x="211.8" y="853" width="1.1" height="15.0" fill="rgb(214,67,41)" rx="2" ry="2" />
+<text  x="214.79" y="863.5" ></text>
+</g>
+<g >
+<title>pollwake (235,355,732 samples, 0.06%)</title><rect x="327.8" y="549" width="0.8" height="15.0" fill="rgb(235,3,40)" rx="2" ry="2" />
+<text  x="330.82" y="559.5" ></text>
+</g>
+<g >
+<title>_aesni_enc4 (1,152,573,062 samples, 0.31%)</title><rect x="406.6" y="805" width="3.8" height="15.0" fill="rgb(210,167,26)" rx="2" ry="2" />
+<text  x="409.64" y="815.5" ></text>
+</g>
+<g >
+<title>update_load_avg (328,618,010 samples, 0.09%)</title><rect x="1129.7" y="805" width="1.1" height="15.0" fill="rgb(236,31,52)" rx="2" ry="2" />
+<text  x="1132.74" y="815.5" ></text>
+</g>
+<g >
+<title>sock_sendmsg (571,224,297 samples, 0.16%)</title><rect x="46.9" y="853" width="1.8" height="15.0" fill="rgb(248,102,29)" rx="2" ry="2" />
+<text  x="49.90" y="863.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (358,845,809 samples, 0.10%)</title><rect x="1178.7" y="773" width="1.2" height="15.0" fill="rgb(244,14,9)" rx="2" ry="2" />
+<text  x="1181.73" y="783.5" ></text>
+</g>
+<g >
+<title>iv_of_dmreq (282,444,251 samples, 0.08%)</title><rect x="455.5" y="869" width="1.0" height="15.0" fill="rgb(237,66,7)" rx="2" ry="2" />
+<text  x="458.55" y="879.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (68,250,102 samples, 0.02%)</title><rect x="917.7" y="853" width="0.3" height="15.0" fill="rgb(216,29,0)" rx="2" ry="2" />
+<text  x="920.73" y="863.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (59,378,829 samples, 0.02%)</title><rect x="738.4" y="661" width="0.2" height="15.0" fill="rgb(235,75,31)" rx="2" ry="2" />
+<text  x="741.36" y="671.5" ></text>
+</g>
+<g >
+<title>process_one_work (7,165,419,277 samples, 1.95%)</title><rect x="534.0" y="917" width="23.0" height="15.0" fill="rgb(212,76,2)" rx="2" ry="2" />
+<text  x="536.96" y="927.5" >p..</text>
+</g>
+<g >
+<title>__wake_up_common (57,079,380 samples, 0.02%)</title><rect x="20.0" y="629" width="0.2" height="15.0" fill="rgb(217,53,36)" rx="2" ry="2" />
+<text  x="22.98" y="639.5" ></text>
+</g>
+<g >
+<title>____sys_sendmsg (55,385,001 samples, 0.02%)</title><rect x="191.6" y="869" width="0.2" height="15.0" fill="rgb(247,229,9)" rx="2" ry="2" />
+<text  x="194.58" y="879.5" ></text>
+</g>
+<g >
+<title>hrtimer_interrupt (55,913,282 samples, 0.02%)</title><rect x="1148.0" y="805" width="0.2" height="15.0" fill="rgb(254,223,22)" rx="2" ry="2" />
+<text  x="1151.03" y="815.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (225,243,755 samples, 0.06%)</title><rect x="501.2" y="853" width="0.7" height="15.0" fill="rgb(246,41,16)" rx="2" ry="2" />
+<text  x="504.22" y="863.5" ></text>
+</g>
+<g >
+<title>copy_user_enhanced_fast_string (186,034,432 samples, 0.05%)</title><rect x="664.2" y="709" width="0.6" height="15.0" fill="rgb(220,194,35)" rx="2" ry="2" />
+<text  x="667.20" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (366,660,152 samples, 0.10%)</title><rect x="1188.5" y="949" width="1.1" height="15.0" fill="rgb(217,89,32)" rx="2" ry="2" />
+<text  x="1191.46" y="959.5" ></text>
+</g>
+<g >
+<title>schedule (132,922,273 samples, 0.04%)</title><rect x="149.2" y="805" width="0.4" height="15.0" fill="rgb(225,78,50)" rx="2" ry="2" />
+<text  x="152.15" y="815.5" ></text>
+</g>
+<g >
+<title>xas_load (42,138,938 samples, 0.01%)</title><rect x="460.0" y="725" width="0.1" height="15.0" fill="rgb(230,105,43)" rx="2" ry="2" />
+<text  x="463.00" y="735.5" ></text>
+</g>
+<g >
+<title>psi_group_change (99,549,483 samples, 0.03%)</title><rect x="337.7" y="869" width="0.3" height="15.0" fill="rgb(231,79,52)" rx="2" ry="2" />
+<text  x="340.71" y="879.5" ></text>
+</g>
+<g >
+<title>execute_command_internal (48,180,599 samples, 0.01%)</title><rect x="243.4" y="693" width="0.2" height="15.0" fill="rgb(215,36,20)" rx="2" ry="2" />
+<text  x="246.42" y="703.5" ></text>
+</g>
+<g >
+<title>scheduler_tick (118,227,212 samples, 0.03%)</title><rect x="834.0" y="709" width="0.4" height="15.0" fill="rgb(215,86,47)" rx="2" ry="2" />
+<text  x="837.02" y="719.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (107,201,552 samples, 0.03%)</title><rect x="215.8" y="693" width="0.4" height="15.0" fill="rgb(209,110,39)" rx="2" ry="2" />
+<text  x="218.81" y="703.5" ></text>
+</g>
+<g >
+<title>crypt_convert (4,559,501,684 samples, 1.24%)</title><rect x="597.3" y="885" width="14.7" height="15.0" fill="rgb(217,51,53)" rx="2" ry="2" />
+<text  x="600.28" y="895.5" ></text>
+</g>
+<g >
+<title>cpuidle_enter (15,162,241,849 samples, 4.14%)</title><rect x="832.2" y="869" width="48.9" height="15.0" fill="rgb(214,182,25)" rx="2" ry="2" />
+<text  x="835.25" y="879.5" >cpui..</text>
+</g>
+<g >
+<title>xfs_end_ioend (180,063,603 samples, 0.05%)</title><rect x="397.6" y="885" width="0.6" height="15.0" fill="rgb(250,191,21)" rx="2" ry="2" />
+<text  x="400.65" y="895.5" ></text>
+</g>
+<g >
+<title>glamor_destroy_pixmap (116,226,799 samples, 0.03%)</title><rect x="204.2" y="837" width="0.4" height="15.0" fill="rgb(254,227,38)" rx="2" ry="2" />
+<text  x="207.19" y="847.5" ></text>
+</g>
+<g >
+<title>folio_batch_move_lru (206,972,806 samples, 0.06%)</title><rect x="756.0" y="693" width="0.6" height="15.0" fill="rgb(245,156,11)" rx="2" ry="2" />
+<text  x="758.95" y="703.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (455,449,901 samples, 0.12%)</title><rect x="736.8" y="725" width="1.5" height="15.0" fill="rgb(224,227,7)" rx="2" ry="2" />
+<text  x="739.82" y="735.5" ></text>
+</g>
+<g >
+<title>lru_add_fn (144,341,707 samples, 0.04%)</title><rect x="756.1" y="677" width="0.4" height="15.0" fill="rgb(231,218,51)" rx="2" ry="2" />
+<text  x="759.08" y="687.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (43,768,377 samples, 0.01%)</title><rect x="275.8" y="933" width="0.1" height="15.0" fill="rgb(242,149,0)" rx="2" ry="2" />
+<text  x="278.81" y="943.5" ></text>
+</g>
+<g >
+<title>[libglib-2.0.so.0.7303.0] (39,096,757 samples, 0.01%)</title><rect x="1185.5" y="885" width="0.2" height="15.0" fill="rgb(226,189,38)" rx="2" ry="2" />
+<text  x="1188.55" y="895.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (208,011,459 samples, 0.06%)</title><rect x="212.2" y="805" width="0.7" height="15.0" fill="rgb(217,197,25)" rx="2" ry="2" />
+<text  x="215.20" y="815.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (1,372,753,351 samples, 0.37%)</title><rect x="819.8" y="869" width="4.4" height="15.0" fill="rgb(214,105,27)" rx="2" ry="2" />
+<text  x="822.82" y="879.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (2,881,889,675 samples, 0.79%)</title><rect x="736.5" y="789" width="9.3" height="15.0" fill="rgb(217,171,45)" rx="2" ry="2" />
+<text  x="739.54" y="799.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (120,580,717 samples, 0.03%)</title><rect x="823.9" y="837" width="0.3" height="15.0" fill="rgb(206,68,25)" rx="2" ry="2" />
+<text  x="826.85" y="847.5" ></text>
+</g>
+<g >
+<title>[firefox] (95,488,541 samples, 0.03%)</title><rect x="174.1" y="933" width="0.3" height="15.0" fill="rgb(223,201,34)" rx="2" ry="2" />
+<text  x="177.13" y="943.5" ></text>
+</g>
+<g >
+<title>xas_load (34,087,119 samples, 0.01%)</title><rect x="140.4" y="645" width="0.1" height="15.0" fill="rgb(225,178,50)" rx="2" ry="2" />
+<text  x="143.36" y="655.5" ></text>
+</g>
+<g >
+<title>find_busiest_group (38,213,307 samples, 0.01%)</title><rect x="292.3" y="757" width="0.1" height="15.0" fill="rgb(212,142,34)" rx="2" ry="2" />
+<text  x="295.31" y="767.5" ></text>
+</g>
+<g >
+<title>pollwake (70,262,971 samples, 0.02%)</title><rect x="661.7" y="357" width="0.2" height="15.0" fill="rgb(220,169,48)" rx="2" ry="2" />
+<text  x="664.72" y="367.5" ></text>
+</g>
+<g >
+<title>__ip_local_out (803,229,269 samples, 0.22%)</title><rect x="635.4" y="517" width="2.6" height="15.0" fill="rgb(218,122,7)" rx="2" ry="2" />
+<text  x="638.42" y="527.5" ></text>
+</g>
+<g >
+<title>isolate_lru_pages (303,809,953 samples, 0.08%)</title><rect x="354.2" y="869" width="1.0" height="15.0" fill="rgb(232,57,27)" rx="2" ry="2" />
+<text  x="357.22" y="879.5" ></text>
+</g>
+<g >
+<title>XTranslateCoordinates (33,591,534 samples, 0.01%)</title><rect x="282.3" y="901" width="0.1" height="15.0" fill="rgb(226,197,3)" rx="2" ry="2" />
+<text  x="285.30" y="911.5" ></text>
+</g>
+<g >
+<title>kthread (7,178,834,401 samples, 1.96%)</title><rect x="534.0" y="949" width="23.1" height="15.0" fill="rgb(240,200,46)" rx="2" ry="2" />
+<text  x="536.96" y="959.5" >k..</text>
+</g>
+<g >
+<title>sg_init_table (78,782,647 samples, 0.02%)</title><rect x="532.8" y="869" width="0.3" height="15.0" fill="rgb(248,98,20)" rx="2" ry="2" />
+<text  x="535.82" y="879.5" ></text>
+</g>
+<g >
+<title>snd_pcm_mmap_commit (33,274,513 samples, 0.01%)</title><rect x="732.8" y="853" width="0.1" height="15.0" fill="rgb(216,35,34)" rx="2" ry="2" />
+<text  x="735.81" y="863.5" ></text>
+</g>
+<g >
+<title>do_sys_poll (653,503,020 samples, 0.18%)</title><rect x="1182.6" y="917" width="2.1" height="15.0" fill="rgb(211,187,19)" rx="2" ry="2" />
+<text  x="1185.59" y="927.5" ></text>
+</g>
+<g >
+<title>xlog_cil_commit (84,108,540 samples, 0.02%)</title><rect x="759.9" y="709" width="0.2" height="15.0" fill="rgb(222,122,40)" rx="2" ry="2" />
+<text  x="762.86" y="719.5" ></text>
+</g>
+<g >
+<title>curl_multi_perform (329,454,028 samples, 0.09%)</title><rect x="667.9" y="789" width="1.0" height="15.0" fill="rgb(214,126,37)" rx="2" ry="2" />
+<text  x="670.86" y="799.5" ></text>
+</g>
+<g >
+<title>psi_task_switch (35,648,891 samples, 0.01%)</title><rect x="23.0" y="725" width="0.1" height="15.0" fill="rgb(217,15,17)" rx="2" ry="2" />
+<text  x="25.97" y="735.5" ></text>
+</g>
+<g >
+<title>kworker/6:2-eve (214,076,735 samples, 0.06%)</title><rect x="395.8" y="981" width="0.6" height="15.0" fill="rgb(212,98,15)" rx="2" ry="2" />
+<text  x="398.76" y="991.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (109,870,803 samples, 0.03%)</title><rect x="694.2" y="661" width="0.4" height="15.0" fill="rgb(216,8,24)" rx="2" ry="2" />
+<text  x="697.21" y="671.5" ></text>
+</g>
+<g >
+<title>load_balance (41,227,737 samples, 0.01%)</title><rect x="174.7" y="773" width="0.1" height="15.0" fill="rgb(223,214,24)" rx="2" ry="2" />
+<text  x="177.69" y="783.5" ></text>
+</g>
+<g >
+<title>g_array_append_vals (43,029,294 samples, 0.01%)</title><rect x="1181.0" y="789" width="0.2" height="15.0" fill="rgb(246,187,52)" rx="2" ry="2" />
+<text  x="1184.04" y="799.5" ></text>
+</g>
+<g >
+<title>[libglamoregl.so] (205,435,846 samples, 0.06%)</title><rect x="212.9" y="885" width="0.6" height="15.0" fill="rgb(222,21,53)" rx="2" ry="2" />
+<text  x="215.88" y="895.5" ></text>
+</g>
+<g >
+<title>__ieee80211_subif_start_xmit (106,260,505 samples, 0.03%)</title><rect x="325.5" y="533" width="0.4" height="15.0" fill="rgb(229,187,33)" rx="2" ry="2" />
+<text  x="328.52" y="543.5" ></text>
+</g>
+<g >
+<title>free (55,150,873 samples, 0.02%)</title><rect x="178.8" y="933" width="0.2" height="15.0" fill="rgb(222,61,24)" rx="2" ry="2" />
+<text  x="181.82" y="943.5" ></text>
+</g>
+<g >
+<title>[bash] (78,544,057 samples, 0.02%)</title><rect x="243.4" y="789" width="0.3" height="15.0" fill="rgb(221,225,29)" rx="2" ry="2" />
+<text  x="246.42" y="799.5" ></text>
+</g>
+<g >
+<title>__libc_read (126,532,280 samples, 0.03%)</title><rect x="275.3" y="933" width="0.4" height="15.0" fill="rgb(241,89,47)" rx="2" ry="2" />
+<text  x="278.33" y="943.5" ></text>
+</g>
+<g >
+<title>[libEGL_mesa.so.0.0.0] (111,612,021 samples, 0.03%)</title><rect x="142.1" y="917" width="0.4" height="15.0" fill="rgb(232,204,11)" rx="2" ry="2" />
+<text  x="145.14" y="927.5" ></text>
+</g>
+<g >
+<title>moz_xmalloc (38,798,258 samples, 0.01%)</title><rect x="12.6" y="949" width="0.1" height="15.0" fill="rgb(242,9,52)" rx="2" ry="2" />
+<text  x="15.56" y="959.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (60,376,207 samples, 0.02%)</title><rect x="1179.6" y="581" width="0.1" height="15.0" fill="rgb(218,174,28)" rx="2" ry="2" />
+<text  x="1182.55" y="591.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (153,607,559 samples, 0.04%)</title><rect x="748.0" y="725" width="0.5" height="15.0" fill="rgb(221,107,31)" rx="2" ry="2" />
+<text  x="751.04" y="735.5" ></text>
+</g>
+<g >
+<title>kworker/u16:9-k (4,937,343,247 samples, 1.35%)</title><rect x="597.2" y="981" width="15.9" height="15.0" fill="rgb(211,11,48)" rx="2" ry="2" />
+<text  x="600.16" y="991.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_list_core (3,361,655,831 samples, 0.92%)</title><rect x="321.7" y="757" width="10.8" height="15.0" fill="rgb(235,208,13)" rx="2" ry="2" />
+<text  x="324.68" y="767.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_established (814,405,916 samples, 0.22%)</title><rect x="326.3" y="629" width="2.6" height="15.0" fill="rgb(251,14,36)" rx="2" ry="2" />
+<text  x="329.30" y="639.5" ></text>
+</g>
+<g >
+<title>do_futex (71,386,032 samples, 0.02%)</title><rect x="749.1" y="645" width="0.3" height="15.0" fill="rgb(248,104,42)" rx="2" ry="2" />
+<text  x="752.15" y="655.5" ></text>
+</g>
+<g >
+<title>__vsprintf_internal (53,709,582 samples, 0.01%)</title><rect x="626.2" y="661" width="0.2" height="15.0" fill="rgb(250,154,35)" rx="2" ry="2" />
+<text  x="629.18" y="671.5" ></text>
+</g>
+<g >
+<title>__libc_poll (2,380,611,218 samples, 0.65%)</title><rect x="649.4" y="725" width="7.6" height="15.0" fill="rgb(251,153,32)" rx="2" ry="2" />
+<text  x="652.36" y="735.5" ></text>
+</g>
+<g >
+<title>__free (101,885,355 samples, 0.03%)</title><rect x="642.9" y="725" width="0.3" height="15.0" fill="rgb(205,161,39)" rx="2" ry="2" />
+<text  x="645.91" y="735.5" ></text>
+</g>
+<g >
+<title>xfs_alloc_ag_vextent_near.constprop.0 (71,878,178 samples, 0.02%)</title><rect x="753.4" y="613" width="0.2" height="15.0" fill="rgb(227,79,45)" rx="2" ry="2" />
+<text  x="756.41" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (80,387,027 samples, 0.02%)</title><rect x="298.8" y="949" width="0.2" height="15.0" fill="rgb(240,125,1)" rx="2" ry="2" />
+<text  x="301.76" y="959.5" ></text>
+</g>
+<g >
+<title>xts_crypt (1,032,708,515 samples, 0.28%)</title><rect x="527.4" y="837" width="3.3" height="15.0" fill="rgb(214,141,16)" rx="2" ry="2" />
+<text  x="530.38" y="847.5" ></text>
+</g>
+<g >
+<title>[libspa-audioconvert.so] (517,114,613 samples, 0.14%)</title><rect x="729.4" y="869" width="1.7" height="15.0" fill="rgb(245,101,0)" rx="2" ry="2" />
+<text  x="732.41" y="879.5" ></text>
+</g>
+<g >
+<title>[Xorg] (441,547,012 samples, 0.12%)</title><rect x="201.2" y="933" width="1.4" height="15.0" fill="rgb(233,80,1)" rx="2" ry="2" />
+<text  x="204.18" y="943.5" ></text>
+</g>
+<g >
+<title>__mod_lruvec_page_state (89,490,626 samples, 0.02%)</title><rect x="458.3" y="725" width="0.3" height="15.0" fill="rgb(235,197,10)" rx="2" ry="2" />
+<text  x="461.34" y="735.5" ></text>
+</g>
+<g >
+<title>kernel_fpu_end (32,769,057 samples, 0.01%)</title><rect x="515.7" y="821" width="0.1" height="15.0" fill="rgb(237,190,24)" rx="2" ry="2" />
+<text  x="518.69" y="831.5" ></text>
+</g>
+<g >
+<title>xfs_end_io (284,341,163 samples, 0.08%)</title><rect x="392.7" y="901" width="1.0" height="15.0" fill="rgb(237,60,46)" rx="2" ry="2" />
+<text  x="395.74" y="911.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (60,299,083 samples, 0.02%)</title><rect x="213.3" y="853" width="0.1" height="15.0" fill="rgb(248,10,30)" rx="2" ry="2" />
+<text  x="216.26" y="863.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (154,129,337 samples, 0.04%)</title><rect x="131.7" y="773" width="0.5" height="15.0" fill="rgb(231,143,39)" rx="2" ry="2" />
+<text  x="134.71" y="783.5" ></text>
+</g>
+<g >
+<title>free (65,311,315 samples, 0.02%)</title><rect x="23.4" y="869" width="0.2" height="15.0" fill="rgb(220,65,21)" rx="2" ry="2" />
+<text  x="26.37" y="879.5" ></text>
+</g>
+<g >
+<title>[wget] (43,188,995 samples, 0.01%)</title><rect x="1167.1" y="789" width="0.1" height="15.0" fill="rgb(238,19,13)" rx="2" ry="2" />
+<text  x="1170.10" y="799.5" ></text>
+</g>
+<g >
+<title>[libnspr4.so] (32,014,867 samples, 0.01%)</title><rect x="81.3" y="949" width="0.1" height="15.0" fill="rgb(230,64,46)" rx="2" ry="2" />
+<text  x="84.26" y="959.5" ></text>
+</g>
+<g >
+<title>mozilla::detail::ConditionVariableImpl::wait (300,632,016 samples, 0.08%)</title><rect x="50.8" y="949" width="1.0" height="15.0" fill="rgb(216,24,17)" rx="2" ry="2" />
+<text  x="53.85" y="959.5" ></text>
+</g>
+<g >
+<title>mozilla::detail::ConditionVariableImpl::notify_one (96,547,539 samples, 0.03%)</title><rect x="173.6" y="949" width="0.4" height="15.0" fill="rgb(212,14,37)" rx="2" ry="2" />
+<text  x="176.65" y="959.5" ></text>
+</g>
+<g >
+<title>dixLookupResourceByClass (155,787,917 samples, 0.04%)</title><rect x="204.7" y="917" width="0.5" height="15.0" fill="rgb(237,213,2)" rx="2" ry="2" />
+<text  x="207.74" y="927.5" ></text>
+</g>
+<g >
+<title>shmem_getpage_gfp (340,642,650 samples, 0.09%)</title><rect x="236.4" y="805" width="1.0" height="15.0" fill="rgb(239,61,49)" rx="2" ry="2" />
+<text  x="239.35" y="815.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (315,218,278 samples, 0.09%)</title><rect x="815.0" y="869" width="1.0" height="15.0" fill="rgb(214,142,53)" rx="2" ry="2" />
+<text  x="817.97" y="879.5" ></text>
+</g>
+<g >
+<title>e1000e_phy_has_link_generic (41,943,128 samples, 0.01%)</title><rect x="390.3" y="853" width="0.2" height="15.0" fill="rgb(235,96,49)" rx="2" ry="2" />
+<text  x="393.35" y="863.5" ></text>
+</g>
+<g >
+<title>__GI___pthread_cond_signal (126,826,424 samples, 0.03%)</title><rect x="148.6" y="933" width="0.4" height="15.0" fill="rgb(209,182,40)" rx="2" ry="2" />
+<text  x="151.63" y="943.5" ></text>
+</g>
+<g >
+<title>[libglib-2.0.so.0.7303.0] (145,540,112 samples, 0.04%)</title><rect x="100.1" y="901" width="0.5" height="15.0" fill="rgb(215,64,36)" rx="2" ry="2" />
+<text  x="103.08" y="911.5" ></text>
+</g>
+<g >
+<title>iomap_finish_ioend (47,825,313 samples, 0.01%)</title><rect x="396.2" y="853" width="0.1" height="15.0" fill="rgb(226,198,33)" rx="2" ry="2" />
+<text  x="399.16" y="863.5" ></text>
+</g>
+<g >
+<title>nft_do_chain (173,908,853 samples, 0.05%)</title><rect x="662.2" y="453" width="0.6" height="15.0" fill="rgb(215,212,10)" rx="2" ry="2" />
+<text  x="665.24" y="463.5" ></text>
+</g>
+<g >
+<title>[firefox] (139,938,735 samples, 0.04%)</title><rect x="268.3" y="917" width="0.4" height="15.0" fill="rgb(233,144,26)" rx="2" ry="2" />
+<text  x="271.25" y="927.5" ></text>
+</g>
+<g >
+<title>[libasound.so.2.0.0] (32,817,744 samples, 0.01%)</title><rect x="732.8" y="837" width="0.1" height="15.0" fill="rgb(208,154,47)" rx="2" ry="2" />
+<text  x="735.81" y="847.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (61,993,142 samples, 0.02%)</title><rect x="627.5" y="645" width="0.2" height="15.0" fill="rgb(252,181,25)" rx="2" ry="2" />
+<text  x="630.50" y="655.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (33,561,493 samples, 0.01%)</title><rect x="813.3" y="805" width="0.1" height="15.0" fill="rgb(244,200,38)" rx="2" ry="2" />
+<text  x="816.31" y="815.5" ></text>
+</g>
+<g >
+<title>__x64_sys_ioctl (1,592,703,872 samples, 0.43%)</title><rect x="136.4" y="853" width="5.2" height="15.0" fill="rgb(239,40,9)" rx="2" ry="2" />
+<text  x="139.45" y="863.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (39,899,939 samples, 0.01%)</title><rect x="169.4" y="917" width="0.1" height="15.0" fill="rgb(217,75,12)" rx="2" ry="2" />
+<text  x="172.36" y="927.5" ></text>
+</g>
+<g >
+<title>avc_lookup (31,959,631 samples, 0.01%)</title><rect x="39.3" y="773" width="0.1" height="15.0" fill="rgb(236,221,9)" rx="2" ry="2" />
+<text  x="42.29" y="783.5" ></text>
+</g>
+<g >
+<title>__blk_rq_map_sg (99,668,468 samples, 0.03%)</title><rect x="245.6" y="805" width="0.4" height="15.0" fill="rgb(214,151,35)" rx="2" ry="2" />
+<text  x="248.64" y="815.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (130,445,411 samples, 0.04%)</title><rect x="266.6" y="917" width="0.4" height="15.0" fill="rgb(226,100,42)" rx="2" ry="2" />
+<text  x="269.59" y="927.5" ></text>
+</g>
+<g >
+<title>apic_ack_irq (33,550,581 samples, 0.01%)</title><rect x="891.0" y="805" width="0.1" height="15.0" fill="rgb(237,64,16)" rx="2" ry="2" />
+<text  x="894.04" y="815.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (176,516,850 samples, 0.05%)</title><rect x="215.6" y="757" width="0.6" height="15.0" fill="rgb(215,184,12)" rx="2" ry="2" />
+<text  x="218.59" y="767.5" ></text>
+</g>
+<g >
+<title>tick_nohz_stop_tick (44,316,292 samples, 0.01%)</title><rect x="885.2" y="853" width="0.1" height="15.0" fill="rgb(238,131,40)" rx="2" ry="2" />
+<text  x="888.19" y="863.5" ></text>
+</g>
+<g >
+<title>pageout (545,742,232 samples, 0.15%)</title><rect x="368.5" y="853" width="1.8" height="15.0" fill="rgb(219,26,5)" rx="2" ry="2" />
+<text  x="371.51" y="863.5" ></text>
+</g>
+<g >
+<title>__schedule (124,892,188 samples, 0.03%)</title><rect x="731.5" y="869" width="0.4" height="15.0" fill="rgb(207,57,20)" rx="2" ry="2" />
+<text  x="734.49" y="879.5" ></text>
+</g>
+<g >
+<title>irqtime_account_irq (51,112,450 samples, 0.01%)</title><rect x="900.4" y="805" width="0.2" height="15.0" fill="rgb(210,215,12)" rx="2" ry="2" />
+<text  x="903.43" y="815.5" ></text>
+</g>
+<g >
+<title>tcp_poll (98,551,164 samples, 0.03%)</title><rect x="655.5" y="629" width="0.3" height="15.0" fill="rgb(245,37,41)" rx="2" ry="2" />
+<text  x="658.48" y="639.5" ></text>
+</g>
+<g >
+<title>place_entity (50,984,373 samples, 0.01%)</title><rect x="1129.2" y="805" width="0.2" height="15.0" fill="rgb(246,48,39)" rx="2" ry="2" />
+<text  x="1132.21" y="815.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (62,484,244 samples, 0.02%)</title><rect x="211.2" y="853" width="0.2" height="15.0" fill="rgb(206,6,11)" rx="2" ry="2" />
+<text  x="214.15" y="863.5" ></text>
+</g>
+<g >
+<title>[unknown] (110,951,219 samples, 0.03%)</title><rect x="153.1" y="949" width="0.4" height="15.0" fill="rgb(247,68,49)" rx="2" ry="2" />
+<text  x="156.11" y="959.5" ></text>
+</g>
+<g >
+<title>[bash] (46,221,639 samples, 0.01%)</title><rect x="243.4" y="549" width="0.2" height="15.0" fill="rgb(241,184,15)" rx="2" ry="2" />
+<text  x="246.42" y="559.5" ></text>
+</g>
+<g >
+<title>[libxul.so] (120,046,032 samples, 0.03%)</title><rect x="183.7" y="965" width="0.4" height="15.0" fill="rgb(222,27,39)" rx="2" ry="2" />
+<text  x="186.73" y="975.5" ></text>
+</g>
+<g >
+<title>__x64_sys_poll (39,045,109 samples, 0.01%)</title><rect x="298.8" y="933" width="0.1" height="15.0" fill="rgb(226,15,48)" rx="2" ry="2" />
+<text  x="301.80" y="943.5" ></text>
+</g>
+<g >
+<title>kworker/3:0-mm_ (391,335,007 samples, 0.11%)</title><rect x="389.1" y="981" width="1.2" height="15.0" fill="rgb(223,119,48)" rx="2" ry="2" />
+<text  x="392.05" y="991.5" ></text>
+</g>
+<g >
+<title>percpu_counter_add_batch (32,129,008 samples, 0.01%)</title><rect x="438.4" y="741" width="0.1" height="15.0" fill="rgb(230,183,17)" rx="2" ry="2" />
+<text  x="441.40" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_epoll_wait (906,166,860 samples, 0.25%)</title><rect x="32.9" y="869" width="3.0" height="15.0" fill="rgb(228,132,36)" rx="2" ry="2" />
+<text  x="35.93" y="879.5" ></text>
+</g>
+<g >
+<title>syscall_return_via_sysret (33,050,085 samples, 0.01%)</title><rect x="31.8" y="933" width="0.1" height="15.0" fill="rgb(249,227,0)" rx="2" ry="2" />
+<text  x="34.76" y="943.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (41,127,169 samples, 0.01%)</title><rect x="720.0" y="709" width="0.1" height="15.0" fill="rgb(221,157,26)" rx="2" ry="2" />
+<text  x="723.01" y="719.5" ></text>
+</g>
+<g >
+<title>worker_thread (391,114,268 samples, 0.11%)</title><rect x="389.1" y="933" width="1.2" height="15.0" fill="rgb(248,179,49)" rx="2" ry="2" />
+<text  x="392.05" y="943.5" ></text>
+</g>
+<g >
+<title>__schedule (36,678,116 samples, 0.01%)</title><rect x="244.9" y="901" width="0.1" height="15.0" fill="rgb(206,120,36)" rx="2" ry="2" />
+<text  x="247.85" y="911.5" ></text>
+</g>
+<g >
+<title>___sys_sendmsg (113,024,786 samples, 0.03%)</title><rect x="266.6" y="885" width="0.4" height="15.0" fill="rgb(234,227,1)" rx="2" ry="2" />
+<text  x="269.59" y="895.5" ></text>
+</g>
+<g >
+<title>[libdbus-glib-1.so.2.3.5] (125,639,041 samples, 0.03%)</title><rect x="279.3" y="885" width="0.5" height="15.0" fill="rgb(254,117,24)" rx="2" ry="2" />
+<text  x="282.35" y="895.5" ></text>
+</g>
+<g >
+<title>drm_ioctl (31,317,491 samples, 0.01%)</title><rect x="136.1" y="821" width="0.1" height="15.0" fill="rgb(225,104,27)" rx="2" ry="2" />
+<text  x="139.11" y="831.5" ></text>
+</g>
+<g >
+<title>cgroup_rstat_flush_irqsafe (141,339,811 samples, 0.04%)</title><rect x="751.2" y="693" width="0.5" height="15.0" fill="rgb(206,112,36)" rx="2" ry="2" />
+<text  x="754.21" y="703.5" ></text>
+</g>
+<g >
+<title>__GI___pthread_cond_wait (296,289,751 samples, 0.08%)</title><rect x="50.9" y="933" width="0.9" height="15.0" fill="rgb(245,202,22)" rx="2" ry="2" />
+<text  x="53.86" y="943.5" ></text>
+</g>
+<g >
+<title>sock_def_readable (65,655,983 samples, 0.02%)</title><rect x="20.0" y="661" width="0.2" height="15.0" fill="rgb(211,68,12)" rx="2" ry="2" />
+<text  x="22.97" y="671.5" ></text>
+</g>
+<g >
+<title>[libEGL_mesa.so.0.0.0] (46,207,254 samples, 0.01%)</title><rect x="145.0" y="869" width="0.1" height="15.0" fill="rgb(254,188,47)" rx="2" ry="2" />
+<text  x="147.96" y="879.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (70,631,421 samples, 0.02%)</title><rect x="241.5" y="917" width="0.2" height="15.0" fill="rgb(237,217,17)" rx="2" ry="2" />
+<text  x="244.46" y="927.5" ></text>
+</g>
+<g >
+<title>shmem_alloc_folio (44,672,503 samples, 0.01%)</title><rect x="134.6" y="629" width="0.1" height="15.0" fill="rgb(230,107,41)" rx="2" ry="2" />
+<text  x="137.58" y="639.5" ></text>
+</g>
+<g >
+<title>balance_dirty_pages_ratelimited_flags (268,581,264 samples, 0.07%)</title><rect x="750.9" y="757" width="0.9" height="15.0" fill="rgb(226,228,15)" rx="2" ry="2" />
+<text  x="753.89" y="767.5" ></text>
+</g>
+<g >
+<title>process_one_work (490,681,485 samples, 0.13%)</title><rect x="390.3" y="917" width="1.6" height="15.0" fill="rgb(225,214,46)" rx="2" ry="2" />
+<text  x="393.33" y="927.5" ></text>
+</g>
+<g >
+<title>[libglib-2.0.so.0.7303.0] (32,191,580 samples, 0.01%)</title><rect x="749.6" y="965" width="0.1" height="15.0" fill="rgb(205,209,25)" rx="2" ry="2" />
+<text  x="752.61" y="975.5" ></text>
+</g>
+<g >
+<title>pipewire (52,235,946 samples, 0.01%)</title><rect x="728.8" y="981" width="0.1" height="15.0" fill="rgb(246,195,34)" rx="2" ry="2" />
+<text  x="731.76" y="991.5" ></text>
+</g>
+<g >
+<title>XaceHookDispatch (49,112,404 samples, 0.01%)</title><rect x="202.6" y="949" width="0.2" height="15.0" fill="rgb(210,33,5)" rx="2" ry="2" />
+<text  x="205.60" y="959.5" ></text>
+</g>
+<g >
+<title>do_sys_poll (929,570,340 samples, 0.25%)</title><rect x="87.5" y="885" width="3.0" height="15.0" fill="rgb(207,65,28)" rx="2" ry="2" />
+<text  x="90.54" y="895.5" ></text>
+</g>
+<g >
+<title>__x64_sys_ioctl (48,623,171 samples, 0.01%)</title><rect x="1164.0" y="629" width="0.1" height="15.0" fill="rgb(210,173,5)" rx="2" ry="2" />
+<text  x="1166.98" y="639.5" ></text>
+</g>
+<g >
+<title>preempt_count_sub (34,757,104 samples, 0.01%)</title><rect x="709.4" y="693" width="0.1" height="15.0" fill="rgb(221,128,21)" rx="2" ry="2" />
+<text  x="712.42" y="703.5" ></text>
+</g>
+<g >
+<title>mod_lruvec_page_state (113,680,153 samples, 0.03%)</title><rect x="459.5" y="725" width="0.3" height="15.0" fill="rgb(240,176,30)" rx="2" ry="2" />
+<text  x="462.48" y="735.5" ></text>
+</g>
+<g >
+<title>charge_memcg (171,665,852 samples, 0.05%)</title><rect x="754.3" y="677" width="0.5" height="15.0" fill="rgb(253,44,32)" rx="2" ry="2" />
+<text  x="757.27" y="687.5" ></text>
+</g>
+<g >
+<title>[libEGL_mesa.so.0.0.0] (716,962,065 samples, 0.20%)</title><rect x="1163.2" y="837" width="2.3" height="15.0" fill="rgb(212,175,4)" rx="2" ry="2" />
+<text  x="1166.21" y="847.5" ></text>
+</g>
+<g >
+<title>PyEval_EvalCode (67,754,465 samples, 0.02%)</title><rect x="244.1" y="853" width="0.2" height="15.0" fill="rgb(253,80,17)" rx="2" ry="2" />
+<text  x="247.09" y="863.5" ></text>
+</g>
+<g >
+<title>curl_mvsnprintf (101,510,445 samples, 0.03%)</title><rect x="668.4" y="725" width="0.3" height="15.0" fill="rgb(253,62,10)" rx="2" ry="2" />
+<text  x="671.36" y="735.5" ></text>
+</g>
+<g >
+<title>update_rq_clock (48,846,336 samples, 0.01%)</title><rect x="895.1" y="757" width="0.1" height="15.0" fill="rgb(211,28,10)" rx="2" ry="2" />
+<text  x="898.08" y="767.5" ></text>
+</g>
+<g >
+<title>iomap_write_begin (7,793,519,025 samples, 2.13%)</title><rect x="688.6" y="773" width="25.1" height="15.0" fill="rgb(213,82,25)" rx="2" ry="2" />
+<text  x="691.61" y="783.5" >i..</text>
+</g>
+<g >
+<title>xfs_end_io (257,909,672 samples, 0.07%)</title><rect x="387.3" y="901" width="0.9" height="15.0" fill="rgb(247,126,49)" rx="2" ry="2" />
+<text  x="390.32" y="911.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (471,904,561 samples, 0.13%)</title><rect x="291.6" y="933" width="1.6" height="15.0" fill="rgb(249,220,38)" rx="2" ry="2" />
+<text  x="294.64" y="943.5" ></text>
+</g>
+<g >
+<title>tick_irq_enter (172,439,011 samples, 0.05%)</title><rect x="914.4" y="821" width="0.5" height="15.0" fill="rgb(235,185,39)" rx="2" ry="2" />
+<text  x="917.36" y="831.5" ></text>
+</g>
+<g >
+<title>drm_ioctl_kernel (236,590,058 samples, 0.06%)</title><rect x="144.1" y="725" width="0.7" height="15.0" fill="rgb(242,33,31)" rx="2" ry="2" />
+<text  x="147.08" y="735.5" ></text>
+</g>
+<g >
+<title>zram_bvec_rw.constprop.0.isra.0 (179,148,245 samples, 0.05%)</title><rect x="369.2" y="773" width="0.5" height="15.0" fill="rgb(208,131,46)" rx="2" ry="2" />
+<text  x="372.17" y="783.5" ></text>
+</g>
+<g >
+<title>[wget] (92,132,750 samples, 0.03%)</title><rect x="1167.1" y="869" width="0.3" height="15.0" fill="rgb(216,69,30)" rx="2" ry="2" />
+<text  x="1170.10" y="879.5" ></text>
+</g>
+<g >
+<title>ip6_finish_output2 (958,863,097 samples, 0.26%)</title><rect x="660.0" y="629" width="3.1" height="15.0" fill="rgb(206,164,16)" rx="2" ry="2" />
+<text  x="663.03" y="639.5" ></text>
+</g>
+<g >
+<title>ipt_do_table (208,769,524 samples, 0.06%)</title><rect x="635.6" y="485" width="0.6" height="15.0" fill="rgb(216,48,36)" rx="2" ry="2" />
+<text  x="638.56" y="495.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock_bh (55,017,309 samples, 0.02%)</title><rect x="334.0" y="885" width="0.2" height="15.0" fill="rgb(240,27,54)" rx="2" ry="2" />
+<text  x="337.04" y="895.5" ></text>
+</g>
+<g >
+<title>sock_poll (38,411,600 samples, 0.01%)</title><rect x="33.4" y="821" width="0.2" height="15.0" fill="rgb(216,179,7)" rx="2" ry="2" />
+<text  x="36.43" y="831.5" ></text>
+</g>
+<g >
+<title>intel_uncore_forcewake_get (51,968,637 samples, 0.01%)</title><rect x="373.9" y="773" width="0.2" height="15.0" fill="rgb(233,64,48)" rx="2" ry="2" />
+<text  x="376.92" y="783.5" ></text>
+</g>
+<g >
+<title>[libgdk-3.so.0.2404.30] (981,887,218 samples, 0.27%)</title><rect x="1171.5" y="853" width="3.1" height="15.0" fill="rgb(209,58,35)" rx="2" ry="2" />
+<text  x="1174.48" y="863.5" ></text>
+</g>
+<g >
+<title>xfs_end_ioend (53,635,976 samples, 0.01%)</title><rect x="387.1" y="885" width="0.2" height="15.0" fill="rgb(250,36,9)" rx="2" ry="2" />
+<text  x="390.11" y="895.5" ></text>
+</g>
+<g >
+<title>dma_fence_add_callback (72,470,971 samples, 0.02%)</title><rect x="1163.7" y="501" width="0.2" height="15.0" fill="rgb(252,160,32)" rx="2" ry="2" />
+<text  x="1166.69" y="511.5" ></text>
+</g>
+<g >
+<title>mozilla::detail::ConditionVariableImpl::notify_one (128,939,224 samples, 0.04%)</title><rect x="148.6" y="949" width="0.4" height="15.0" fill="rgb(252,22,20)" rx="2" ry="2" />
+<text  x="151.62" y="959.5" ></text>
+</g>
+<g >
+<title>xas_store (35,702,988 samples, 0.01%)</title><rect x="346.3" y="821" width="0.1" height="15.0" fill="rgb(227,36,47)" rx="2" ry="2" />
+<text  x="349.26" y="831.5" ></text>
+</g>
+<g >
+<title>__x64_sys_poll (31,813,898 samples, 0.01%)</title><rect x="244.4" y="933" width="0.1" height="15.0" fill="rgb(242,70,34)" rx="2" ry="2" />
+<text  x="247.39" y="943.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (219,380,761 samples, 0.06%)</title><rect x="131.5" y="789" width="0.8" height="15.0" fill="rgb(224,157,29)" rx="2" ry="2" />
+<text  x="134.55" y="799.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (688,370,041 samples, 0.19%)</title><rect x="29.5" y="917" width="2.3" height="15.0" fill="rgb(244,165,15)" rx="2" ry="2" />
+<text  x="32.54" y="927.5" ></text>
+</g>
+<g >
+<title>iomap_finish_ioends (41,710,622 samples, 0.01%)</title><rect x="386.9" y="869" width="0.2" height="15.0" fill="rgb(227,197,36)" rx="2" ry="2" />
+<text  x="389.94" y="879.5" ></text>
+</g>
+<g >
+<title>tcp_recvmsg_locked (131,581,060 samples, 0.04%)</title><rect x="748.1" y="581" width="0.4" height="15.0" fill="rgb(240,31,12)" rx="2" ry="2" />
+<text  x="751.09" y="591.5" ></text>
+</g>
+<g >
+<title>schedule_hrtimeout_range_clock (681,981,230 samples, 0.19%)</title><rect x="88.3" y="869" width="2.2" height="15.0" fill="rgb(249,196,20)" rx="2" ry="2" />
+<text  x="91.34" y="879.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (265,848,599 samples, 0.07%)</title><rect x="234.7" y="741" width="0.9" height="15.0" fill="rgb(216,135,14)" rx="2" ry="2" />
+<text  x="237.72" y="751.5" ></text>
+</g>
+<g >
+<title>__schedule (52,487,396 samples, 0.01%)</title><rect x="613.6" y="901" width="0.2" height="15.0" fill="rgb(213,123,20)" rx="2" ry="2" />
+<text  x="616.58" y="911.5" ></text>
+</g>
+<g >
+<title>unix_destruct_scm (57,372,126 samples, 0.02%)</title><rect x="39.8" y="773" width="0.2" height="15.0" fill="rgb(233,123,17)" rx="2" ry="2" />
+<text  x="42.83" y="783.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (2,890,624,944 samples, 0.79%)</title><rect x="126.8" y="885" width="9.3" height="15.0" fill="rgb(236,89,13)" rx="2" ry="2" />
+<text  x="129.77" y="895.5" ></text>
+</g>
+<g >
+<title>mod_lruvec_page_state (54,534,631 samples, 0.01%)</title><rect x="555.8" y="741" width="0.2" height="15.0" fill="rgb(219,111,14)" rx="2" ry="2" />
+<text  x="558.81" y="751.5" ></text>
+</g>
+<g >
+<title>PR_WaitCondVar (71,908,780 samples, 0.02%)</title><rect x="118.2" y="949" width="0.2" height="15.0" fill="rgb(220,85,42)" rx="2" ry="2" />
+<text  x="121.19" y="959.5" ></text>
+</g>
+<g >
+<title>[libgobject-2.0.so.0.7303.0] (118,083,460 samples, 0.03%)</title><rect x="1178.0" y="213" width="0.4" height="15.0" fill="rgb(229,113,25)" rx="2" ry="2" />
+<text  x="1181.02" y="223.5" ></text>
+</g>
+<g >
+<title>[git] (110,970,266 samples, 0.03%)</title><rect x="285.3" y="869" width="0.3" height="15.0" fill="rgb(233,100,38)" rx="2" ry="2" />
+<text  x="288.27" y="879.5" ></text>
+</g>
+<g >
+<title>__x64_sys_ioctl (88,611,483 samples, 0.02%)</title><rect x="1163.6" y="597" width="0.3" height="15.0" fill="rgb(248,48,36)" rx="2" ry="2" />
+<text  x="1166.65" y="607.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (271,425,872 samples, 0.07%)</title><rect x="387.3" y="965" width="0.9" height="15.0" fill="rgb(229,187,17)" rx="2" ry="2" />
+<text  x="390.30" y="975.5" ></text>
+</g>
+<g >
+<title>iv_of_dmreq (303,283,019 samples, 0.08%)</title><rect x="520.7" y="869" width="0.9" height="15.0" fill="rgb(207,48,23)" rx="2" ry="2" />
+<text  x="523.66" y="879.5" ></text>
+</g>
+<g >
+<title>pick_next_task_fair (112,310,513 samples, 0.03%)</title><rect x="51.2" y="773" width="0.4" height="15.0" fill="rgb(248,150,28)" rx="2" ry="2" />
+<text  x="54.19" y="783.5" ></text>
+</g>
+<g >
+<title>process_backlog (718,347,780 samples, 0.20%)</title><rect x="660.5" y="533" width="2.3" height="15.0" fill="rgb(221,62,35)" rx="2" ry="2" />
+<text  x="663.50" y="543.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (119,145,207 samples, 0.03%)</title><rect x="1165.5" y="805" width="0.4" height="15.0" fill="rgb(221,169,17)" rx="2" ry="2" />
+<text  x="1168.54" y="815.5" ></text>
+</g>
+<g >
+<title>__GI___pthread_cond_signal (112,333,927 samples, 0.03%)</title><rect x="104.2" y="933" width="0.4" height="15.0" fill="rgb(210,158,37)" rx="2" ry="2" />
+<text  x="107.21" y="943.5" ></text>
+</g>
+<g >
+<title>preempt_count_add (95,896,528 samples, 0.03%)</title><rect x="363.2" y="821" width="0.3" height="15.0" fill="rgb(244,28,44)" rx="2" ry="2" />
+<text  x="366.17" y="831.5" ></text>
+</g>
+<g >
+<title>folio_clear_dirty_for_io (117,310,288 samples, 0.03%)</title><rect x="555.7" y="757" width="0.4" height="15.0" fill="rgb(210,18,1)" rx="2" ry="2" />
+<text  x="558.71" y="767.5" ></text>
+</g>
+<g >
+<title>ksys_read (74,574,431 samples, 0.02%)</title><rect x="275.4" y="885" width="0.2" height="15.0" fill="rgb(212,22,50)" rx="2" ry="2" />
+<text  x="278.38" y="895.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (185,040,227 samples, 0.05%)</title><rect x="656.1" y="677" width="0.6" height="15.0" fill="rgb(241,180,4)" rx="2" ry="2" />
+<text  x="659.12" y="687.5" ></text>
+</g>
+<g >
+<title>gen8_logical_ring_enable_irq (67,486,013 samples, 0.02%)</title><rect x="1163.7" y="341" width="0.2" height="15.0" fill="rgb(217,47,15)" rx="2" ry="2" />
+<text  x="1166.70" y="351.5" ></text>
+</g>
+<g >
+<title>pollwake (48,358,093 samples, 0.01%)</title><rect x="156.5" y="821" width="0.2" height="15.0" fill="rgb(250,49,45)" rx="2" ry="2" />
+<text  x="159.52" y="831.5" ></text>
+</g>
+<g >
+<title>wb_workfn (868,373,603 samples, 0.24%)</title><rect x="457.9" y="901" width="2.8" height="15.0" fill="rgb(220,227,27)" rx="2" ry="2" />
+<text  x="460.88" y="911.5" ></text>
+</g>
+<g >
+<title>blk_mq_submit_bio (567,646,800 samples, 0.15%)</title><rect x="245.0" y="885" width="1.8" height="15.0" fill="rgb(215,52,17)" rx="2" ry="2" />
+<text  x="248.01" y="895.5" ></text>
+</g>
+<g >
+<title>sg_init_table (156,731,256 samples, 0.04%)</title><rect x="436.5" y="869" width="0.5" height="15.0" fill="rgb(230,67,19)" rx="2" ry="2" />
+<text  x="439.52" y="879.5" ></text>
+</g>
+<g >
+<title>[libgdk-3.so.0.2404.30] (725,239,792 samples, 0.20%)</title><rect x="1177.7" y="869" width="2.4" height="15.0" fill="rgb(224,53,8)" rx="2" ry="2" />
+<text  x="1180.72" y="879.5" ></text>
+</g>
+<g >
+<title>__mod_timer (68,146,856 samples, 0.02%)</title><rect x="326.1" y="613" width="0.2" height="15.0" fill="rgb(245,185,17)" rx="2" ry="2" />
+<text  x="329.08" y="623.5" ></text>
+</g>
+<g >
+<title>curl_easy_setopt (57,947,156 samples, 0.02%)</title><rect x="657.2" y="789" width="0.2" height="15.0" fill="rgb(252,20,13)" rx="2" ry="2" />
+<text  x="660.18" y="799.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (63,722,087 samples, 0.02%)</title><rect x="20.4" y="805" width="0.3" height="15.0" fill="rgb(208,154,3)" rx="2" ry="2" />
+<text  x="23.45" y="815.5" ></text>
+</g>
+<g >
+<title>sysvec_irq_work (1,375,948,621 samples, 0.38%)</title><rect x="347.2" y="837" width="4.5" height="15.0" fill="rgb(249,51,52)" rx="2" ry="2" />
+<text  x="350.23" y="847.5" ></text>
+</g>
+<g >
+<title>xfs_vm_writepages (756,192,153 samples, 0.21%)</title><rect x="571.9" y="805" width="2.4" height="15.0" fill="rgb(250,115,37)" rx="2" ry="2" />
+<text  x="574.86" y="815.5" ></text>
+</g>
+<g >
+<title>g_main_context_dispatch (617,730,309 samples, 0.17%)</title><rect x="826.0" y="885" width="2.0" height="15.0" fill="rgb(244,146,22)" rx="2" ry="2" />
+<text  x="829.01" y="895.5" ></text>
+</g>
+<g >
+<title>[libxul.so] (3,733,346,922 samples, 1.02%)</title><rect x="271.0" y="949" width="12.0" height="15.0" fill="rgb(254,62,12)" rx="2" ry="2" />
+<text  x="273.97" y="959.5" ></text>
+</g>
+<g >
+<title>__switch_to_asm (230,841,030 samples, 0.06%)</title><rect x="830.9" y="965" width="0.7" height="15.0" fill="rgb(241,35,28)" rx="2" ry="2" />
+<text  x="833.90" y="975.5" ></text>
+</g>
+<g >
+<title>[libcurl.so.4.8.0] (99,935,363 samples, 0.03%)</title><rect x="615.9" y="949" width="0.4" height="15.0" fill="rgb(209,25,42)" rx="2" ry="2" />
+<text  x="618.95" y="959.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock_irq (181,208,258 samples, 0.05%)</title><rect x="696.8" y="709" width="0.6" height="15.0" fill="rgb(218,93,16)" rx="2" ry="2" />
+<text  x="699.79" y="719.5" ></text>
+</g>
+<g >
+<title>shmem_get_pages (461,361,980 samples, 0.13%)</title><rect x="234.1" y="805" width="1.5" height="15.0" fill="rgb(236,49,46)" rx="2" ry="2" />
+<text  x="237.11" y="815.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (487,172,541 samples, 0.13%)</title><rect x="97.6" y="885" width="1.6" height="15.0" fill="rgb(241,220,35)" rx="2" ry="2" />
+<text  x="100.65" y="895.5" ></text>
+</g>
+<g >
+<title>irq_work_single (92,061,328 samples, 0.03%)</title><rect x="133.3" y="549" width="0.3" height="15.0" fill="rgb(246,11,15)" rx="2" ry="2" />
+<text  x="136.29" y="559.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (53,806,618 samples, 0.01%)</title><rect x="227.2" y="933" width="0.2" height="15.0" fill="rgb(239,143,51)" rx="2" ry="2" />
+<text  x="230.21" y="943.5" ></text>
+</g>
+<g >
+<title>_PyEval_EvalFrameDefault (67,754,465 samples, 0.02%)</title><rect x="244.1" y="821" width="0.2" height="15.0" fill="rgb(206,62,37)" rx="2" ry="2" />
+<text  x="247.09" y="831.5" ></text>
+</g>
+<g >
+<title>ip_output (41,236,340 samples, 0.01%)</title><rect x="625.3" y="485" width="0.1" height="15.0" fill="rgb(220,115,11)" rx="2" ry="2" />
+<text  x="628.29" y="495.5" ></text>
+</g>
+<g >
+<title>uncharge_batch (41,510,279 samples, 0.01%)</title><rect x="357.5" y="837" width="0.2" height="15.0" fill="rgb(226,98,6)" rx="2" ry="2" />
+<text  x="360.54" y="847.5" ></text>
+</g>
+<g >
+<title>mem_cgroup_charge_skmem (102,453,915 samples, 0.03%)</title><rect x="327.2" y="597" width="0.4" height="15.0" fill="rgb(215,16,9)" rx="2" ry="2" />
+<text  x="330.22" y="607.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock_irq (154,270,761 samples, 0.04%)</title><rect x="363.5" y="837" width="0.5" height="15.0" fill="rgb(223,33,34)" rx="2" ry="2" />
+<text  x="366.48" y="847.5" ></text>
+</g>
+<g >
+<title>__folio_mark_dirty (1,591,157,077 samples, 0.43%)</title><rect x="715.3" y="741" width="5.1" height="15.0" fill="rgb(219,86,21)" rx="2" ry="2" />
+<text  x="718.26" y="751.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (83,784,972 samples, 0.02%)</title><rect x="151.9" y="821" width="0.3" height="15.0" fill="rgb(224,175,21)" rx="2" ry="2" />
+<text  x="154.91" y="831.5" ></text>
+</g>
+<g >
+<title>[libglamoregl.so] (683,230,394 samples, 0.19%)</title><rect x="211.4" y="901" width="2.2" height="15.0" fill="rgb(252,168,13)" rx="2" ry="2" />
+<text  x="214.35" y="911.5" ></text>
+</g>
+<g >
+<title>shrink_node (59,698,596 samples, 0.02%)</title><rect x="756.8" y="645" width="0.2" height="15.0" fill="rgb(228,77,26)" rx="2" ry="2" />
+<text  x="759.80" y="655.5" ></text>
+</g>
+<g >
+<title>try_to_free_pages (42,399,208 samples, 0.01%)</title><rect x="664.9" y="661" width="0.1" height="15.0" fill="rgb(213,36,39)" rx="2" ry="2" />
+<text  x="667.88" y="671.5" ></text>
+</g>
+<g >
+<title>rcu_gp_kthread (115,661,137 samples, 0.03%)</title><rect x="829.6" y="933" width="0.4" height="15.0" fill="rgb(250,29,7)" rx="2" ry="2" />
+<text  x="832.64" y="943.5" ></text>
+</g>
+<g >
+<title>iomap_do_writepage (429,859,170 samples, 0.12%)</title><rect x="438.5" y="757" width="1.4" height="15.0" fill="rgb(253,131,15)" rx="2" ry="2" />
+<text  x="441.51" y="767.5" ></text>
+</g>
+<g >
+<title>__memset_avx2_unaligned_erms (52,799,372 samples, 0.01%)</title><rect x="148.0" y="933" width="0.2" height="15.0" fill="rgb(243,178,48)" rx="2" ry="2" />
+<text  x="151.01" y="943.5" ></text>
+</g>
+<g >
+<title>[_gi.cpython-311-x86_64-linux-gnu.so] (67,754,465 samples, 0.02%)</title><rect x="244.1" y="789" width="0.2" height="15.0" fill="rgb(227,204,49)" rx="2" ry="2" />
+<text  x="247.09" y="799.5" ></text>
+</g>
+<g >
+<title>read_tsc (32,632,734 samples, 0.01%)</title><rect x="1155.3" y="869" width="0.2" height="15.0" fill="rgb(210,193,15)" rx="2" ry="2" />
+<text  x="1158.35" y="879.5" ></text>
+</g>
+<g >
+<title>folio_batch_move_lru (993,907,277 samples, 0.27%)</title><rect x="701.2" y="709" width="3.2" height="15.0" fill="rgb(206,172,23)" rx="2" ry="2" />
+<text  x="704.20" y="719.5" ></text>
+</g>
+<g >
+<title>__i915_gem_object_unset_pages (59,305,125 samples, 0.02%)</title><rect x="373.9" y="805" width="0.2" height="15.0" fill="rgb(234,101,34)" rx="2" ry="2" />
+<text  x="376.91" y="815.5" ></text>
+</g>
+<g >
+<title>cgroup_rstat_updated (32,788,991 samples, 0.01%)</title><rect x="360.4" y="773" width="0.1" height="15.0" fill="rgb(251,3,32)" rx="2" ry="2" />
+<text  x="363.42" y="783.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (79,430,876 samples, 0.02%)</title><rect x="1166.2" y="789" width="0.3" height="15.0" fill="rgb(240,20,37)" rx="2" ry="2" />
+<text  x="1169.20" y="799.5" ></text>
+</g>
+<g >
+<title>[libspa-audioconvert.so] (541,515,879 samples, 0.15%)</title><rect x="729.3" y="885" width="1.8" height="15.0" fill="rgb(240,206,26)" rx="2" ry="2" />
+<text  x="732.34" y="895.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (363,033,831 samples, 0.10%)</title><rect x="132.7" y="789" width="1.2" height="15.0" fill="rgb(239,139,4)" rx="2" ry="2" />
+<text  x="135.71" y="799.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (83,535,596 samples, 0.02%)</title><rect x="145.1" y="789" width="0.3" height="15.0" fill="rgb(208,146,34)" rx="2" ry="2" />
+<text  x="148.14" y="799.5" ></text>
+</g>
+<g >
+<title>i915_gem_execbuffer2_ioctl (1,554,702,753 samples, 0.42%)</title><rect x="136.5" y="805" width="5.0" height="15.0" fill="rgb(207,99,32)" rx="2" ry="2" />
+<text  x="139.53" y="815.5" ></text>
+</g>
+<g >
+<title>napi_complete_done (4,220,983,432 samples, 1.15%)</title><rect x="319.0" y="789" width="13.6" height="15.0" fill="rgb(251,5,2)" rx="2" ry="2" />
+<text  x="322.03" y="799.5" ></text>
+</g>
+<g >
+<title>rcu_preempt (118,542,154 samples, 0.03%)</title><rect x="829.6" y="981" width="0.4" height="15.0" fill="rgb(214,40,25)" rx="2" ry="2" />
+<text  x="832.63" y="991.5" ></text>
+</g>
+<g >
+<title>__inet_lookup_established (63,108,178 samples, 0.02%)</title><rect x="322.6" y="677" width="0.2" height="15.0" fill="rgb(222,95,52)" rx="2" ry="2" />
+<text  x="325.63" y="687.5" ></text>
+</g>
+<g >
+<title>__folio_start_writeback (376,589,160 samples, 0.10%)</title><rect x="458.9" y="741" width="1.3" height="15.0" fill="rgb(218,51,31)" rx="2" ry="2" />
+<text  x="461.95" y="751.5" ></text>
+</g>
+<g >
+<title>release_pages (77,708,600 samples, 0.02%)</title><rect x="378.1" y="757" width="0.2" height="15.0" fill="rgb(249,94,43)" rx="2" ry="2" />
+<text  x="381.07" y="767.5" ></text>
+</g>
+<g >
+<title>[libGLX.so.0.0.0] (45,286,870 samples, 0.01%)</title><rect x="18.4" y="917" width="0.1" height="15.0" fill="rgb(254,28,43)" rx="2" ry="2" />
+<text  x="21.37" y="927.5" ></text>
+</g>
+<g >
+<title>i915_gem_set_domain_ioctl (362,642,359 samples, 0.10%)</title><rect x="236.3" y="885" width="1.2" height="15.0" fill="rgb(217,111,3)" rx="2" ry="2" />
+<text  x="239.28" y="895.5" ></text>
+</g>
+<g >
+<title>drm_ioctl_kernel (44,689,914 samples, 0.01%)</title><rect x="1164.0" y="597" width="0.1" height="15.0" fill="rgb(226,169,47)" rx="2" ry="2" />
+<text  x="1166.99" y="607.5" ></text>
+</g>
+<g >
+<title>timerqueue_add (167,375,821 samples, 0.05%)</title><rect x="905.9" y="773" width="0.6" height="15.0" fill="rgb(247,60,17)" rx="2" ry="2" />
+<text  x="908.95" y="783.5" ></text>
+</g>
+<g >
+<title>mozilla::TimeStamp::Now (116,610,330 samples, 0.03%)</title><rect x="103.8" y="949" width="0.4" height="15.0" fill="rgb(235,115,4)" rx="2" ry="2" />
+<text  x="106.78" y="959.5" ></text>
+</g>
+<g >
+<title>unix_stream_read_generic (36,063,474 samples, 0.01%)</title><rect x="277.4" y="661" width="0.1" height="15.0" fill="rgb(235,97,44)" rx="2" ry="2" />
+<text  x="280.42" y="671.5" ></text>
+</g>
+<g >
+<title>sock_def_readable (275,035,190 samples, 0.08%)</title><rect x="47.8" y="821" width="0.9" height="15.0" fill="rgb(232,87,6)" rx="2" ry="2" />
+<text  x="50.81" y="831.5" ></text>
+</g>
+<g >
+<title>sock_write_iter (64,582,930 samples, 0.02%)</title><rect x="145.2" y="693" width="0.2" height="15.0" fill="rgb(214,184,54)" rx="2" ry="2" />
+<text  x="148.17" y="703.5" ></text>
+</g>
+<g >
+<title>touch_atime (94,951,573 samples, 0.03%)</title><rect x="92.2" y="853" width="0.3" height="15.0" fill="rgb(208,109,22)" rx="2" ry="2" />
+<text  x="95.18" y="863.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (51,446,836 samples, 0.01%)</title><rect x="626.6" y="677" width="0.2" height="15.0" fill="rgb(237,153,24)" rx="2" ry="2" />
+<text  x="629.59" y="687.5" ></text>
+</g>
+<g >
+<title>tsc_verify_tsc_adjust (236,813,404 samples, 0.06%)</title><rect x="887.1" y="885" width="0.7" height="15.0" fill="rgb(245,110,31)" rx="2" ry="2" />
+<text  x="890.05" y="895.5" ></text>
+</g>
+<g >
+<title>[unknown] (196,330,532 samples, 0.05%)</title><rect x="226.0" y="965" width="0.6" height="15.0" fill="rgb(234,194,46)" rx="2" ry="2" />
+<text  x="229.01" y="975.5" ></text>
+</g>
+<g >
+<title>inflate (16,758,926,898 samples, 4.57%)</title><rect x="760.6" y="869" width="54.0" height="15.0" fill="rgb(210,115,19)" rx="2" ry="2" />
+<text  x="763.61" y="879.5" >inflate</text>
+</g>
+<g >
+<title>folio_clear_dirty_for_io (40,921,435 samples, 0.01%)</title><rect x="533.5" y="757" width="0.1" height="15.0" fill="rgb(234,111,47)" rx="2" ry="2" />
+<text  x="536.45" y="767.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver_finish (1,466,409,130 samples, 0.40%)</title><rect x="324.3" y="693" width="4.7" height="15.0" fill="rgb(221,15,29)" rx="2" ry="2" />
+<text  x="327.29" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (72,309,185 samples, 0.02%)</title><rect x="143.0" y="853" width="0.2" height="15.0" fill="rgb(254,149,7)" rx="2" ry="2" />
+<text  x="145.96" y="863.5" ></text>
+</g>
+<g >
+<title>[libglib-2.0.so.0.7303.0] (573,691,877 samples, 0.16%)</title><rect x="1186.4" y="917" width="1.9" height="15.0" fill="rgb(234,134,34)" rx="2" ry="2" />
+<text  x="1189.44" y="927.5" ></text>
+</g>
+<g >
+<title>schedule_hrtimeout_range_clock (45,841,134 samples, 0.01%)</title><rect x="1183.4" y="901" width="0.1" height="15.0" fill="rgb(229,28,3)" rx="2" ry="2" />
+<text  x="1186.35" y="911.5" ></text>
+</g>
+<g >
+<title>signal_irq_work (48,258,505 samples, 0.01%)</title><rect x="232.9" y="709" width="0.2" height="15.0" fill="rgb(232,61,23)" rx="2" ry="2" />
+<text  x="235.92" y="719.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (466,473,365 samples, 0.13%)</title><rect x="1171.5" y="501" width="1.5" height="15.0" fill="rgb(231,58,27)" rx="2" ry="2" />
+<text  x="1174.52" y="511.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (32,326,700 samples, 0.01%)</title><rect x="213.1" y="837" width="0.1" height="15.0" fill="rgb(239,87,50)" rx="2" ry="2" />
+<text  x="216.12" y="847.5" ></text>
+</g>
+<g >
+<title>folio_add_lru (112,642,888 samples, 0.03%)</title><rect x="344.4" y="869" width="0.3" height="15.0" fill="rgb(230,72,45)" rx="2" ry="2" />
+<text  x="347.37" y="879.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (71,507,433 samples, 0.02%)</title><rect x="211.1" y="869" width="0.3" height="15.0" fill="rgb(248,94,8)" rx="2" ry="2" />
+<text  x="214.12" y="879.5" ></text>
+</g>
+<g >
+<title>WaitForSomething (846,734,413 samples, 0.23%)</title><rect x="199.9" y="949" width="2.7" height="15.0" fill="rgb(220,169,33)" rx="2" ry="2" />
+<text  x="202.87" y="959.5" ></text>
+</g>
+<g >
+<title>[libxul.so] (1,330,903,509 samples, 0.36%)</title><rect x="175.2" y="949" width="4.3" height="15.0" fill="rgb(229,144,17)" rx="2" ry="2" />
+<text  x="178.17" y="959.5" ></text>
+</g>
+<g >
+<title>kernel_fpu_begin_mask (149,871,151 samples, 0.04%)</title><rect x="565.8" y="821" width="0.5" height="15.0" fill="rgb(240,174,41)" rx="2" ry="2" />
+<text  x="568.77" y="831.5" ></text>
+</g>
+<g >
+<title>[libcrypto.so.3.0.5] (65,849,563 samples, 0.02%)</title><rect x="284.8" y="597" width="0.2" height="15.0" fill="rgb(218,34,28)" rx="2" ry="2" />
+<text  x="287.77" y="607.5" ></text>
+</g>
+<g >
+<title>[Xorg] (1,515,520,534 samples, 0.41%)</title><rect x="205.7" y="901" width="4.9" height="15.0" fill="rgb(225,83,34)" rx="2" ry="2" />
+<text  x="208.72" y="911.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (46,639,599 samples, 0.01%)</title><rect x="315.7" y="741" width="0.1" height="15.0" fill="rgb(224,104,54)" rx="2" ry="2" />
+<text  x="318.66" y="751.5" ></text>
+</g>
+<g >
+<title>load_balance (44,944,789 samples, 0.01%)</title><rect x="338.4" y="837" width="0.1" height="15.0" fill="rgb(254,23,52)" rx="2" ry="2" />
+<text  x="341.36" y="847.5" ></text>
+</g>
+<g >
+<title>hrtimer_interrupt (87,077,024 samples, 0.02%)</title><rect x="94.9" y="901" width="0.2" height="15.0" fill="rgb(223,157,14)" rx="2" ry="2" />
+<text  x="97.86" y="911.5" ></text>
+</g>
+<g >
+<title>__writeback_single_inode (866,940,717 samples, 0.24%)</title><rect x="457.9" y="837" width="2.8" height="15.0" fill="rgb(226,192,42)" rx="2" ry="2" />
+<text  x="460.88" y="847.5" ></text>
+</g>
+<g >
+<title>TaskCon~ller_#0 (36,113,162 samples, 0.01%)</title><rect x="154.9" y="981" width="0.1" height="15.0" fill="rgb(239,23,17)" rx="2" ry="2" />
+<text  x="157.86" y="991.5" ></text>
+</g>
+<g >
+<title>futex_wait_queue (337,280,881 samples, 0.09%)</title><rect x="291.8" y="853" width="1.0" height="15.0" fill="rgb(228,221,37)" rx="2" ry="2" />
+<text  x="294.76" y="863.5" ></text>
+</g>
+<g >
+<title>security_file_permission (86,706,996 samples, 0.02%)</title><rect x="671.9" y="805" width="0.3" height="15.0" fill="rgb(221,176,18)" rx="2" ry="2" />
+<text  x="674.93" y="815.5" ></text>
+</g>
+<g >
+<title>simd_skcipher_encrypt (125,322,046 samples, 0.03%)</title><rect x="435.0" y="853" width="0.4" height="15.0" fill="rgb(216,75,19)" rx="2" ry="2" />
+<text  x="438.02" y="863.5" ></text>
+</g>
+<g >
+<title>skb_release_data (70,838,680 samples, 0.02%)</title><rect x="228.6" y="837" width="0.2" height="15.0" fill="rgb(251,116,15)" rx="2" ry="2" />
+<text  x="231.57" y="847.5" ></text>
+</g>
+<g >
+<title>execute_command (49,280,152 samples, 0.01%)</title><rect x="243.4" y="741" width="0.2" height="15.0" fill="rgb(222,81,23)" rx="2" ry="2" />
+<text  x="246.42" y="751.5" ></text>
+</g>
+<g >
+<title>__entry_text_start (33,680,368 samples, 0.01%)</title><rect x="819.6" y="869" width="0.1" height="15.0" fill="rgb(216,34,54)" rx="2" ry="2" />
+<text  x="822.62" y="879.5" ></text>
+</g>
+<g >
+<title>crypt_free_buffer_pages (46,234,872 samples, 0.01%)</title><rect x="384.2" y="645" width="0.2" height="15.0" fill="rgb(241,151,6)" rx="2" ry="2" />
+<text  x="387.24" y="655.5" ></text>
+</g>
+<g >
+<title>__clock_gettime_2 (35,010,861 samples, 0.01%)</title><rect x="96.9" y="917" width="0.1" height="15.0" fill="rgb(238,77,27)" rx="2" ry="2" />
+<text  x="99.92" y="927.5" ></text>
+</g>
+<g >
+<title>copy_page_from_iter_atomic (2,186,824,750 samples, 0.60%)</title><rect x="679.0" y="773" width="7.0" height="15.0" fill="rgb(233,193,12)" rx="2" ry="2" />
+<text  x="681.96" y="783.5" ></text>
+</g>
+<g >
+<title>[firefox] (42,380,882 samples, 0.01%)</title><rect x="53.0" y="917" width="0.1" height="15.0" fill="rgb(239,208,7)" rx="2" ry="2" />
+<text  x="55.97" y="927.5" ></text>
+</g>
+<g >
+<title>folio_referenced (129,548,331 samples, 0.04%)</title><rect x="364.9" y="853" width="0.5" height="15.0" fill="rgb(252,50,30)" rx="2" ry="2" />
+<text  x="367.94" y="863.5" ></text>
+</g>
+<g >
+<title>__GI___ioctl (63,461,155 samples, 0.02%)</title><rect x="135.7" y="869" width="0.3" height="15.0" fill="rgb(228,119,33)" rx="2" ry="2" />
+<text  x="138.75" y="879.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (190,954,764 samples, 0.05%)</title><rect x="627.1" y="661" width="0.6" height="15.0" fill="rgb(219,220,20)" rx="2" ry="2" />
+<text  x="630.09" y="671.5" ></text>
+</g>
+<g >
+<title>ipt_do_table (34,221,707 samples, 0.01%)</title><rect x="319.8" y="629" width="0.1" height="15.0" fill="rgb(223,159,24)" rx="2" ry="2" />
+<text  x="322.80" y="639.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (144,729,942 samples, 0.04%)</title><rect x="143.5" y="789" width="0.5" height="15.0" fill="rgb(240,126,34)" rx="2" ry="2" />
+<text  x="146.54" y="799.5" ></text>
+</g>
+<g >
+<title>intel_engine_irq_enable (1,356,094,432 samples, 0.37%)</title><rect x="347.3" y="741" width="4.3" height="15.0" fill="rgb(214,193,30)" rx="2" ry="2" />
+<text  x="350.27" y="751.5" ></text>
+</g>
+<g >
+<title>inet6_recvmsg (199,862,469 samples, 0.05%)</title><rect x="745.0" y="597" width="0.7" height="15.0" fill="rgb(229,142,32)" rx="2" ry="2" />
+<text  x="748.01" y="607.5" ></text>
+</g>
+<g >
+<title>[libxul.so] (664,523,963 samples, 0.18%)</title><rect x="287.1" y="949" width="2.1" height="15.0" fill="rgb(218,12,53)" rx="2" ry="2" />
+<text  x="290.10" y="959.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (56,079,642 samples, 0.02%)</title><rect x="617.3" y="725" width="0.2" height="15.0" fill="rgb(247,32,18)" rx="2" ry="2" />
+<text  x="620.28" y="735.5" ></text>
+</g>
+<g >
+<title>____sys_recvmsg (154,931,249 samples, 0.04%)</title><rect x="737.0" y="629" width="0.5" height="15.0" fill="rgb(212,135,15)" rx="2" ry="2" />
+<text  x="740.02" y="639.5" ></text>
+</g>
+<g >
+<title>free (47,470,164 samples, 0.01%)</title><rect x="192.0" y="949" width="0.2" height="15.0" fill="rgb(222,19,37)" rx="2" ry="2" />
+<text  x="195.02" y="959.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (143,685,336 samples, 0.04%)</title><rect x="142.8" y="917" width="0.4" height="15.0" fill="rgb(238,196,24)" rx="2" ry="2" />
+<text  x="145.78" y="927.5" ></text>
+</g>
+<g >
+<title>timekeeping_advance (89,203,294 samples, 0.02%)</title><rect x="907.4" y="741" width="0.3" height="15.0" fill="rgb(236,35,11)" rx="2" ry="2" />
+<text  x="910.40" y="751.5" ></text>
+</g>
+<g >
+<title>iomap_finish_ioend (332,849,722 samples, 0.09%)</title><rect x="385.8" y="853" width="1.1" height="15.0" fill="rgb(233,126,40)" rx="2" ry="2" />
+<text  x="388.80" y="863.5" ></text>
+</g>
+<g >
+<title>[libEGL_mesa.so.0.0.0] (715,267,234 samples, 0.20%)</title><rect x="1163.2" y="821" width="2.3" height="15.0" fill="rgb(230,180,15)" rx="2" ry="2" />
+<text  x="1166.21" y="831.5" ></text>
+</g>
+<g >
+<title>[unknown] (94,679,545 samples, 0.03%)</title><rect x="750.0" y="965" width="0.3" height="15.0" fill="rgb(245,171,26)" rx="2" ry="2" />
+<text  x="752.97" y="975.5" ></text>
+</g>
+<g >
+<title>__x64_sys_poll (1,913,995,858 samples, 0.52%)</title><rect x="649.9" y="677" width="6.2" height="15.0" fill="rgb(237,83,52)" rx="2" ry="2" />
+<text  x="652.95" y="687.5" ></text>
+</g>
+<g >
+<title>ip_finish_output2 (128,588,838 samples, 0.04%)</title><rect x="325.5" y="597" width="0.4" height="15.0" fill="rgb(209,162,9)" rx="2" ry="2" />
+<text  x="328.47" y="607.5" ></text>
+</g>
+<g >
+<title>[firefox] (180,630,852 samples, 0.05%)</title><rect x="269.7" y="917" width="0.6" height="15.0" fill="rgb(206,193,20)" rx="2" ry="2" />
+<text  x="272.70" y="927.5" ></text>
+</g>
+<g >
+<title>__vfprintf_internal (91,208,385 samples, 0.02%)</title><rect x="657.5" y="741" width="0.3" height="15.0" fill="rgb(251,42,45)" rx="2" ry="2" />
+<text  x="660.46" y="751.5" ></text>
+</g>
+<g >
+<title>g_main_context_prepare (37,558,668 samples, 0.01%)</title><rect x="1188.2" y="901" width="0.1" height="15.0" fill="rgb(253,105,27)" rx="2" ry="2" />
+<text  x="1191.15" y="911.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (40,904,986 samples, 0.01%)</title><rect x="275.8" y="917" width="0.1" height="15.0" fill="rgb(243,215,46)" rx="2" ry="2" />
+<text  x="278.81" y="927.5" ></text>
+</g>
+<g >
+<title>xfs_vm_writepages (163,765,990 samples, 0.04%)</title><rect x="533.4" y="805" width="0.5" height="15.0" fill="rgb(237,101,0)" rx="2" ry="2" />
+<text  x="536.40" y="815.5" ></text>
+</g>
+<g >
+<title>pick_next_task_fair (82,303,487 samples, 0.02%)</title><rect x="22.7" y="725" width="0.3" height="15.0" fill="rgb(236,186,11)" rx="2" ry="2" />
+<text  x="25.69" y="735.5" ></text>
+</g>
+<g >
+<title>enqueue_task_fair (57,575,682 samples, 0.02%)</title><rect x="30.6" y="757" width="0.2" height="15.0" fill="rgb(231,2,10)" rx="2" ry="2" />
+<text  x="33.60" y="767.5" ></text>
+</g>
+<g >
+<title>__x64_sys_ioctl (42,398,013 samples, 0.01%)</title><rect x="136.1" y="837" width="0.1" height="15.0" fill="rgb(206,0,25)" rx="2" ry="2" />
+<text  x="139.10" y="847.5" ></text>
+</g>
+<g >
+<title>epoll_wait (1,148,700,672 samples, 0.31%)</title><rect x="32.6" y="917" width="3.7" height="15.0" fill="rgb(248,128,32)" rx="2" ry="2" />
+<text  x="35.60" y="927.5" ></text>
+</g>
+<g >
+<title>moz_arena_malloc (57,380,841 samples, 0.02%)</title><rect x="269.5" y="949" width="0.2" height="15.0" fill="rgb(236,174,12)" rx="2" ry="2" />
+<text  x="272.49" y="959.5" ></text>
+</g>
+<g >
+<title>[libcurl.so.4.8.0] (65,653,011 samples, 0.02%)</title><rect x="646.9" y="709" width="0.2" height="15.0" fill="rgb(253,152,15)" rx="2" ry="2" />
+<text  x="649.86" y="719.5" ></text>
+</g>
+<g >
+<title>___sys_sendmsg (133,068,218 samples, 0.04%)</title><rect x="93.6" y="885" width="0.4" height="15.0" fill="rgb(239,154,1)" rx="2" ry="2" />
+<text  x="96.59" y="895.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (356,274,732 samples, 0.10%)</title><rect x="731.3" y="949" width="1.2" height="15.0" fill="rgb(219,90,12)" rx="2" ry="2" />
+<text  x="734.31" y="959.5" ></text>
+</g>
+<g >
+<title>__libc_recvmsg (57,206,285 samples, 0.02%)</title><rect x="1165.7" y="629" width="0.2" height="15.0" fill="rgb(226,148,5)" rx="2" ry="2" />
+<text  x="1168.72" y="639.5" ></text>
+</g>
+<g >
+<title>tcp_sendmsg_locked (1,368,914,162 samples, 0.37%)</title><rect x="739.7" y="549" width="4.4" height="15.0" fill="rgb(224,29,42)" rx="2" ry="2" />
+<text  x="742.70" y="559.5" ></text>
+</g>
+<g >
+<title>futex_wake (61,372,590 samples, 0.02%)</title><rect x="15.1" y="869" width="0.2" height="15.0" fill="rgb(232,51,19)" rx="2" ry="2" />
+<text  x="18.09" y="879.5" ></text>
+</g>
+<g >
+<title>kworker/4:0-eve (503,018,477 samples, 0.14%)</title><rect x="390.3" y="981" width="1.6" height="15.0" fill="rgb(209,183,36)" rx="2" ry="2" />
+<text  x="393.32" y="991.5" ></text>
+</g>
+<g >
+<title>iomap_writepages (756,192,153 samples, 0.21%)</title><rect x="571.9" y="789" width="2.4" height="15.0" fill="rgb(211,144,48)" rx="2" ry="2" />
+<text  x="574.86" y="799.5" ></text>
+</g>
+<g >
+<title>aesni_xts_encrypt (1,117,338,140 samples, 0.30%)</title><rect x="562.2" y="821" width="3.6" height="15.0" fill="rgb(207,30,3)" rx="2" ry="2" />
+<text  x="565.17" y="831.5" ></text>
+</g>
+<g >
+<title>___sys_sendmsg (622,436,232 samples, 0.17%)</title><rect x="46.8" y="885" width="2.0" height="15.0" fill="rgb(210,150,46)" rx="2" ry="2" />
+<text  x="49.82" y="895.5" ></text>
+</g>
+<g >
+<title>balance_fair (148,129,229 samples, 0.04%)</title><rect x="338.1" y="869" width="0.5" height="15.0" fill="rgb(242,86,34)" rx="2" ry="2" />
+<text  x="341.12" y="879.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (69,308,646 samples, 0.02%)</title><rect x="824.0" y="821" width="0.2" height="15.0" fill="rgb(242,141,30)" rx="2" ry="2" />
+<text  x="827.01" y="831.5" ></text>
+</g>
+<g >
+<title>mod_lruvec_page_state (44,784,571 samples, 0.01%)</title><rect x="395.1" y="805" width="0.1" height="15.0" fill="rgb(247,79,41)" rx="2" ry="2" />
+<text  x="398.10" y="815.5" ></text>
+</g>
+<g >
+<title>__x64_sys_futex (231,090,841 samples, 0.06%)</title><rect x="51.0" y="869" width="0.7" height="15.0" fill="rgb(235,36,52)" rx="2" ry="2" />
+<text  x="53.96" y="879.5" ></text>
+</g>
+<g >
+<title>typeinfo for std::__cxx11::basic_stringstream&lt;wchar_t, std::char_traits&lt;wchar_t&gt;, std::allocator&lt;wchar_t&gt; &gt; (39,596,335 samples, 0.01%)</title><rect x="26.2" y="965" width="0.1" height="15.0" fill="rgb(220,14,25)" rx="2" ry="2" />
+<text  x="29.22" y="975.5" ></text>
+</g>
+<g >
+<title>arch_scale_freq_tick (126,051,117 samples, 0.03%)</title><rect x="909.7" y="725" width="0.4" height="15.0" fill="rgb(219,140,0)" rx="2" ry="2" />
+<text  x="912.72" y="735.5" ></text>
+</g>
+<g >
+<title>xa_get_order (39,422,751 samples, 0.01%)</title><rect x="755.3" y="693" width="0.2" height="15.0" fill="rgb(223,215,42)" rx="2" ry="2" />
+<text  x="758.34" y="703.5" ></text>
+</g>
+<g >
+<title>i915_gem_object_pin_map (36,660,924 samples, 0.01%)</title><rect x="235.9" y="789" width="0.1" height="15.0" fill="rgb(251,53,16)" rx="2" ry="2" />
+<text  x="238.92" y="799.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock (51,762,552 samples, 0.01%)</title><rect x="364.0" y="837" width="0.1" height="15.0" fill="rgb(228,167,33)" rx="2" ry="2" />
+<text  x="366.98" y="847.5" ></text>
+</g>
+<g >
+<title>[libvte-2.91.so.0.6992.0] (102,542,883 samples, 0.03%)</title><rect x="1178.0" y="133" width="0.4" height="15.0" fill="rgb(211,59,4)" rx="2" ry="2" />
+<text  x="1181.03" y="143.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (76,114,900 samples, 0.02%)</title><rect x="213.0" y="869" width="0.2" height="15.0" fill="rgb(216,16,51)" rx="2" ry="2" />
+<text  x="215.99" y="879.5" ></text>
+</g>
+<g >
+<title>newidle_balance (46,190,558 samples, 0.01%)</title><rect x="727.9" y="805" width="0.1" height="15.0" fill="rgb(219,47,17)" rx="2" ry="2" />
+<text  x="730.88" y="815.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (49,896,841 samples, 0.01%)</title><rect x="212.7" y="741" width="0.2" height="15.0" fill="rgb(244,79,25)" rx="2" ry="2" />
+<text  x="215.69" y="751.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (254,408,750 samples, 0.07%)</title><rect x="144.1" y="773" width="0.8" height="15.0" fill="rgb(216,106,38)" rx="2" ry="2" />
+<text  x="147.05" y="783.5" ></text>
+</g>
+<g >
+<title>do_futex (41,247,972 samples, 0.01%)</title><rect x="178.4" y="853" width="0.1" height="15.0" fill="rgb(214,206,9)" rx="2" ry="2" />
+<text  x="181.38" y="863.5" ></text>
+</g>
+<g >
+<title>[firefox] (147,469,618 samples, 0.04%)</title><rect x="297.9" y="917" width="0.4" height="15.0" fill="rgb(209,118,54)" rx="2" ry="2" />
+<text  x="300.86" y="927.5" ></text>
+</g>
+<g >
+<title>__folio_start_writeback (315,260,210 samples, 0.09%)</title><rect x="572.8" y="741" width="1.0" height="15.0" fill="rgb(248,170,10)" rx="2" ry="2" />
+<text  x="575.81" y="751.5" ></text>
+</g>
+<g >
+<title>Xorg (1,055,241,425 samples, 0.29%)</title><rect x="194.2" y="981" width="3.3" height="15.0" fill="rgb(227,201,45)" rx="2" ry="2" />
+<text  x="197.15" y="991.5" ></text>
+</g>
+<g >
+<title>[wget] (64,067,887 samples, 0.02%)</title><rect x="1167.1" y="805" width="0.2" height="15.0" fill="rgb(232,10,50)" rx="2" ry="2" />
+<text  x="1170.10" y="815.5" ></text>
+</g>
+<g >
+<title>sock_sendmsg (589,374,645 samples, 0.16%)</title><rect x="238.3" y="853" width="1.9" height="15.0" fill="rgb(235,103,12)" rx="2" ry="2" />
+<text  x="241.27" y="863.5" ></text>
+</g>
+<g >
+<title>kcryptd_crypt (5,007,613,524 samples, 1.37%)</title><rect x="460.8" y="901" width="16.1" height="15.0" fill="rgb(224,129,52)" rx="2" ry="2" />
+<text  x="463.78" y="911.5" ></text>
+</g>
+<g >
+<title>__drm_mode_object_find (33,462,935 samples, 0.01%)</title><rect x="231.8" y="869" width="0.1" height="15.0" fill="rgb(229,177,11)" rx="2" ry="2" />
+<text  x="234.78" y="879.5" ></text>
+</g>
+<g >
+<title>_aesni_enc4 (1,090,668,227 samples, 0.30%)</title><rect x="583.2" y="805" width="3.5" height="15.0" fill="rgb(219,153,49)" rx="2" ry="2" />
+<text  x="586.21" y="815.5" ></text>
+</g>
+<g >
+<title>alloc_skb_with_frags (36,073,820 samples, 0.01%)</title><rect x="1189.3" y="805" width="0.1" height="15.0" fill="rgb(206,41,32)" rx="2" ry="2" />
+<text  x="1192.30" y="815.5" ></text>
+</g>
+<g >
+<title>__mod_lruvec_state (146,389,117 samples, 0.04%)</title><rect x="695.5" y="693" width="0.5" height="15.0" fill="rgb(253,158,12)" rx="2" ry="2" />
+<text  x="698.52" y="703.5" ></text>
+</g>
+<g >
+<title>vfs_write (16,059,556,894 samples, 4.38%)</title><rect x="671.5" y="821" width="51.7" height="15.0" fill="rgb(245,34,11)" rx="2" ry="2" />
+<text  x="674.50" y="831.5" >vfs_w..</text>
+</g>
+<g >
+<title>eb_pin_engine (37,103,962 samples, 0.01%)</title><rect x="233.9" y="853" width="0.1" height="15.0" fill="rgb(212,47,47)" rx="2" ry="2" />
+<text  x="236.89" y="863.5" ></text>
+</g>
+<g >
+<title>__realloc (34,344,087 samples, 0.01%)</title><rect x="641.4" y="709" width="0.1" height="15.0" fill="rgb(246,21,12)" rx="2" ry="2" />
+<text  x="644.38" y="719.5" ></text>
+</g>
+<g >
+<title>iwl_mvm_mac_itxq_xmit (238,686,512 samples, 0.07%)</title><rect x="623.7" y="389" width="0.8" height="15.0" fill="rgb(216,197,53)" rx="2" ry="2" />
+<text  x="626.69" y="399.5" ></text>
+</g>
+<g >
+<title>i915_gem_shrinker_scan (1,498,894,004 samples, 0.41%)</title><rect x="373.9" y="853" width="4.8" height="15.0" fill="rgb(214,49,3)" rx="2" ry="2" />
+<text  x="376.89" y="863.5" ></text>
+</g>
+<g >
+<title>DamageReportDamage (56,737,295 samples, 0.02%)</title><rect x="209.1" y="837" width="0.2" height="15.0" fill="rgb(224,52,44)" rx="2" ry="2" />
+<text  x="212.08" y="847.5" ></text>
+</g>
+<g >
+<title>page_vma_mapped_walk (58,424,551 samples, 0.02%)</title><rect x="355.6" y="805" width="0.2" height="15.0" fill="rgb(226,42,54)" rx="2" ry="2" />
+<text  x="358.57" y="815.5" ></text>
+</g>
+<g >
+<title>ttwu_do_activate (1,543,921,008 samples, 0.42%)</title><rect x="1127.8" y="869" width="4.9" height="15.0" fill="rgb(221,91,18)" rx="2" ry="2" />
+<text  x="1130.75" y="879.5" ></text>
+</g>
+<g >
+<title>dequeue_task_fair (50,568,324 samples, 0.01%)</title><rect x="22.5" y="725" width="0.2" height="15.0" fill="rgb(240,11,17)" rx="2" ry="2" />
+<text  x="25.50" y="735.5" ></text>
+</g>
+<g >
+<title>[libglib-2.0.so.0.7303.0] (144,633,349 samples, 0.04%)</title><rect x="59.7" y="965" width="0.5" height="15.0" fill="rgb(231,17,7)" rx="2" ry="2" />
+<text  x="62.72" y="975.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (936,653,780 samples, 0.26%)</title><rect x="382.7" y="965" width="3.1" height="15.0" fill="rgb(225,144,40)" rx="2" ry="2" />
+<text  x="385.74" y="975.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (33,163,069 samples, 0.01%)</title><rect x="1189.9" y="949" width="0.1" height="15.0" fill="rgb(244,163,30)" rx="2" ry="2" />
+<text  x="1192.85" y="959.5" ></text>
+</g>
+<g >
+<title>syscall_return_via_sysret (67,294,141 samples, 0.02%)</title><rect x="656.8" y="709" width="0.2" height="15.0" fill="rgb(231,206,53)" rx="2" ry="2" />
+<text  x="659.80" y="719.5" ></text>
+</g>
+<g >
+<title>iomap_finish_ioend (251,856,778 samples, 0.07%)</title><rect x="387.3" y="853" width="0.8" height="15.0" fill="rgb(213,73,4)" rx="2" ry="2" />
+<text  x="390.32" y="863.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (824,010,865 samples, 0.22%)</title><rect x="1171.5" y="677" width="2.6" height="15.0" fill="rgb(209,144,43)" rx="2" ry="2" />
+<text  x="1174.50" y="687.5" ></text>
+</g>
+<g >
+<title>rmap_walk_file (60,238,576 samples, 0.02%)</title><rect x="365.2" y="837" width="0.2" height="15.0" fill="rgb(217,226,19)" rx="2" ry="2" />
+<text  x="368.16" y="847.5" ></text>
+</g>
+<g >
+<title>update_sd_lb_stats.constprop.0 (36,073,974 samples, 0.01%)</title><rect x="292.3" y="741" width="0.1" height="15.0" fill="rgb(217,42,36)" rx="2" ry="2" />
+<text  x="295.31" y="751.5" ></text>
+</g>
+<g >
+<title>list_lru_count_one (103,735,285 samples, 0.03%)</title><rect x="379.1" y="837" width="0.4" height="15.0" fill="rgb(242,135,18)" rx="2" ry="2" />
+<text  x="382.14" y="847.5" ></text>
+</g>
+<g >
+<title>newidle_balance (58,908,884 samples, 0.02%)</title><rect x="149.3" y="757" width="0.2" height="15.0" fill="rgb(251,175,7)" rx="2" ry="2" />
+<text  x="152.30" y="767.5" ></text>
+</g>
+<g >
+<title>mempool_alloc (192,378,004 samples, 0.05%)</title><rect x="476.3" y="885" width="0.6" height="15.0" fill="rgb(241,160,46)" rx="2" ry="2" />
+<text  x="479.28" y="895.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (267,985,147 samples, 0.07%)</title><rect x="567.1" y="853" width="0.9" height="15.0" fill="rgb(228,75,20)" rx="2" ry="2" />
+<text  x="570.14" y="863.5" ></text>
+</g>
+<g >
+<title>[libxul.so] (43,665,820 samples, 0.01%)</title><rect x="182.6" y="965" width="0.2" height="15.0" fill="rgb(242,94,44)" rx="2" ry="2" />
+<text  x="185.64" y="975.5" ></text>
+</g>
+<g >
+<title>[libxul.so] (764,063,873 samples, 0.21%)</title><rect x="262.7" y="949" width="2.4" height="15.0" fill="rgb(206,36,43)" rx="2" ry="2" />
+<text  x="265.67" y="959.5" ></text>
+</g>
+<g >
+<title>[libcairo.so.2.11706.0] (76,558,931 samples, 0.02%)</title><rect x="1176.3" y="869" width="0.3" height="15.0" fill="rgb(234,26,9)" rx="2" ry="2" />
+<text  x="1179.34" y="879.5" ></text>
+</g>
+<g >
+<title>__sysvec_irq_work (1,369,452,514 samples, 0.37%)</title><rect x="347.2" y="821" width="4.4" height="15.0" fill="rgb(211,200,34)" rx="2" ry="2" />
+<text  x="350.24" y="831.5" ></text>
+</g>
+<g >
+<title>i915_active_add_request (58,914,401 samples, 0.02%)</title><rect x="233.6" y="837" width="0.2" height="15.0" fill="rgb(228,193,29)" rx="2" ry="2" />
+<text  x="236.65" y="847.5" ></text>
+</g>
+<g >
+<title>_int_malloc (64,969,040 samples, 0.02%)</title><rect x="747.7" y="741" width="0.2" height="15.0" fill="rgb(249,167,45)" rx="2" ry="2" />
+<text  x="750.71" y="751.5" ></text>
+</g>
+<g >
+<title>__switch_to (49,789,649 samples, 0.01%)</title><rect x="1147.2" y="869" width="0.2" height="15.0" fill="rgb(241,112,7)" rx="2" ry="2" />
+<text  x="1150.22" y="879.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (219,903,273 samples, 0.06%)</title><rect x="1178.8" y="645" width="0.7" height="15.0" fill="rgb(212,115,35)" rx="2" ry="2" />
+<text  x="1181.82" y="655.5" ></text>
+</g>
+<g >
+<title>engine_retire (169,863,747 samples, 0.05%)</title><rect x="394.1" y="901" width="0.6" height="15.0" fill="rgb(228,144,17)" rx="2" ry="2" />
+<text  x="397.11" y="911.5" ></text>
+</g>
+<g >
+<title>newidle_balance (66,100,691 samples, 0.02%)</title><rect x="174.7" y="789" width="0.2" height="15.0" fill="rgb(250,69,5)" rx="2" ry="2" />
+<text  x="177.67" y="799.5" ></text>
+</g>
+<g >
+<title>__x64_sys_poll (117,088,412 samples, 0.03%)</title><rect x="627.1" y="645" width="0.4" height="15.0" fill="rgb(212,208,54)" rx="2" ry="2" />
+<text  x="630.11" y="655.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (156,236,818 samples, 0.04%)</title><rect x="224.7" y="869" width="0.5" height="15.0" fill="rgb(243,198,16)" rx="2" ry="2" />
+<text  x="227.72" y="879.5" ></text>
+</g>
+<g >
+<title>__mod_lruvec_page_state (73,664,661 samples, 0.02%)</title><rect x="478.2" y="709" width="0.2" height="15.0" fill="rgb(221,101,11)" rx="2" ry="2" />
+<text  x="481.17" y="719.5" ></text>
+</g>
+<g >
+<title>enqueue_task (299,823,345 samples, 0.08%)</title><rect x="893.8" y="741" width="1.0" height="15.0" fill="rgb(209,136,24)" rx="2" ry="2" />
+<text  x="896.79" y="751.5" ></text>
+</g>
+<g >
+<title>file_modified_flags (193,226,146 samples, 0.05%)</title><rect x="759.7" y="757" width="0.7" height="15.0" fill="rgb(210,165,22)" rx="2" ry="2" />
+<text  x="762.73" y="767.5" ></text>
+</g>
+<g >
+<title>iwl_pcie_isr (132,384,569 samples, 0.04%)</title><rect x="892.5" y="773" width="0.4" height="15.0" fill="rgb(241,8,42)" rx="2" ry="2" />
+<text  x="895.47" y="783.5" ></text>
+</g>
+<g >
+<title>start_thread (15,553,574,652 samples, 4.24%)</title><rect x="616.6" y="949" width="50.0" height="15.0" fill="rgb(234,107,52)" rx="2" ry="2" />
+<text  x="619.56" y="959.5" >start..</text>
+</g>
+<g >
+<title>[qemu-img] (55,276,502 samples, 0.02%)</title><rect x="828.2" y="869" width="0.1" height="15.0" fill="rgb(209,126,53)" rx="2" ry="2" />
+<text  x="831.17" y="879.5" ></text>
+</g>
+<g >
+<title>xfs_end_io (339,784,458 samples, 0.09%)</title><rect x="385.8" y="901" width="1.1" height="15.0" fill="rgb(246,40,41)" rx="2" ry="2" />
+<text  x="388.80" y="911.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (40,041,516 samples, 0.01%)</title><rect x="121.2" y="853" width="0.1" height="15.0" fill="rgb(233,127,33)" rx="2" ry="2" />
+<text  x="124.16" y="863.5" ></text>
+</g>
+<g >
+<title>[ssh] (52,859,202 samples, 0.01%)</title><rect x="830.4" y="869" width="0.2" height="15.0" fill="rgb(209,39,45)" rx="2" ry="2" />
+<text  x="833.42" y="879.5" ></text>
+</g>
+<g >
+<title>dequeue_task_fair (107,668,704 samples, 0.03%)</title><rect x="817.2" y="725" width="0.3" height="15.0" fill="rgb(219,200,50)" rx="2" ry="2" />
+<text  x="820.19" y="735.5" ></text>
+</g>
+<g >
+<title>curl_mvaprintf (72,188,288 samples, 0.02%)</title><rect x="668.7" y="725" width="0.2" height="15.0" fill="rgb(210,193,49)" rx="2" ry="2" />
+<text  x="671.68" y="735.5" ></text>
+</g>
+<g >
+<title>realloc (107,782,528 samples, 0.03%)</title><rect x="149.9" y="949" width="0.4" height="15.0" fill="rgb(236,192,45)" rx="2" ry="2" />
+<text  x="152.91" y="959.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (287,283,135 samples, 0.08%)</title><rect x="442.3" y="837" width="0.9" height="15.0" fill="rgb(250,65,23)" rx="2" ry="2" />
+<text  x="445.26" y="847.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (141,979,419 samples, 0.04%)</title><rect x="44.5" y="917" width="0.5" height="15.0" fill="rgb(242,11,45)" rx="2" ry="2" />
+<text  x="47.50" y="927.5" ></text>
+</g>
+<g >
+<title>do_futex (383,187,756 samples, 0.10%)</title><rect x="291.7" y="885" width="1.2" height="15.0" fill="rgb(248,127,21)" rx="2" ry="2" />
+<text  x="294.71" y="895.5" ></text>
+</g>
+<g >
+<title>malloc (299,031,628 samples, 0.08%)</title><rect x="49.9" y="933" width="0.9" height="15.0" fill="rgb(210,154,27)" rx="2" ry="2" />
+<text  x="52.88" y="943.5" ></text>
+</g>
+<g >
+<title>[libglib-2.0.so.0.7303.0] (31,097,466 samples, 0.01%)</title><rect x="101.8" y="869" width="0.1" height="15.0" fill="rgb(243,55,35)" rx="2" ry="2" />
+<text  x="104.79" y="879.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_list_core (83,236,648 samples, 0.02%)</title><rect x="309.1" y="693" width="0.2" height="15.0" fill="rgb(252,212,19)" rx="2" ry="2" />
+<text  x="312.07" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (64,811,504 samples, 0.02%)</title><rect x="145.8" y="901" width="0.2" height="15.0" fill="rgb(237,41,3)" rx="2" ry="2" />
+<text  x="148.81" y="911.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (140,014,591 samples, 0.04%)</title><rect x="216.2" y="789" width="0.4" height="15.0" fill="rgb(214,0,39)" rx="2" ry="2" />
+<text  x="219.19" y="799.5" ></text>
+</g>
+<g >
+<title>__mod_memcg_lruvec_state (201,904,616 samples, 0.06%)</title><rect x="716.4" y="709" width="0.6" height="15.0" fill="rgb(244,141,16)" rx="2" ry="2" />
+<text  x="719.39" y="719.5" ></text>
+</g>
+<g >
+<title>__common_interrupt (36,436,330 samples, 0.01%)</title><rect x="813.1" y="805" width="0.1" height="15.0" fill="rgb(241,119,40)" rx="2" ry="2" />
+<text  x="816.12" y="815.5" ></text>
+</g>
+<g >
+<title>switch_ldt (38,292,126 samples, 0.01%)</title><rect x="1124.1" y="853" width="0.1" height="15.0" fill="rgb(232,98,38)" rx="2" ry="2" />
+<text  x="1127.06" y="863.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (84,355,209 samples, 0.02%)</title><rect x="104.3" y="917" width="0.2" height="15.0" fill="rgb(219,35,15)" rx="2" ry="2" />
+<text  x="107.28" y="927.5" ></text>
+</g>
+<g >
+<title>qio_channel_readv_all (158,732,080 samples, 0.04%)</title><rect x="748.0" y="757" width="0.6" height="15.0" fill="rgb(220,215,10)" rx="2" ry="2" />
+<text  x="751.04" y="767.5" ></text>
+</g>
+<g >
+<title>__x64_sys_ioctl (61,220,516 samples, 0.02%)</title><rect x="143.0" y="821" width="0.2" height="15.0" fill="rgb(242,133,33)" rx="2" ry="2" />
+<text  x="145.97" y="831.5" ></text>
+</g>
+<g >
+<title>aesni_xts_encrypt (1,587,581,400 samples, 0.43%)</title><rect x="541.6" y="821" width="5.1" height="15.0" fill="rgb(208,198,21)" rx="2" ry="2" />
+<text  x="544.64" y="831.5" ></text>
+</g>
+<g >
+<title>[firefox] (45,724,912 samples, 0.01%)</title><rect x="267.8" y="917" width="0.1" height="15.0" fill="rgb(240,216,35)" rx="2" ry="2" />
+<text  x="270.79" y="927.5" ></text>
+</g>
+<g >
+<title>i801_transaction (38,675,364 samples, 0.01%)</title><rect x="340.0" y="805" width="0.2" height="15.0" fill="rgb(213,176,3)" rx="2" ry="2" />
+<text  x="343.03" y="815.5" ></text>
+</g>
+<g >
+<title>eglGetCurrentContext (70,279,131 samples, 0.02%)</title><rect x="146.7" y="949" width="0.2" height="15.0" fill="rgb(245,29,28)" rx="2" ry="2" />
+<text  x="149.67" y="959.5" ></text>
+</g>
+<g >
+<title>rmqueue_bulk (498,644,421 samples, 0.14%)</title><rect x="709.5" y="693" width="1.6" height="15.0" fill="rgb(249,92,53)" rx="2" ry="2" />
+<text  x="712.53" y="703.5" ></text>
+</g>
+<g >
+<title>syscall_return_via_sysret (53,033,876 samples, 0.01%)</title><rect x="640.5" y="677" width="0.2" height="15.0" fill="rgb(210,183,3)" rx="2" ry="2" />
+<text  x="643.49" y="687.5" ></text>
+</g>
+<g >
+<title>policy_node (50,126,082 samples, 0.01%)</title><rect x="711.8" y="709" width="0.2" height="15.0" fill="rgb(252,101,10)" rx="2" ry="2" />
+<text  x="714.79" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (45,707,924 samples, 0.01%)</title><rect x="198.2" y="949" width="0.2" height="15.0" fill="rgb(212,155,50)" rx="2" ry="2" />
+<text  x="201.22" y="959.5" ></text>
+</g>
+<g >
+<title>_int_realloc (31,453,975 samples, 0.01%)</title><rect x="641.4" y="693" width="0.1" height="15.0" fill="rgb(243,42,8)" rx="2" ry="2" />
+<text  x="644.39" y="703.5" ></text>
+</g>
+<g >
+<title>iv_of_dmreq (286,254,449 samples, 0.08%)</title><rect x="474.7" y="869" width="0.9" height="15.0" fill="rgb(249,113,34)" rx="2" ry="2" />
+<text  x="477.65" y="879.5" ></text>
+</g>
+<g >
+<title>__run_timers (116,796,837 samples, 0.03%)</title><rect x="904.2" y="789" width="0.4" height="15.0" fill="rgb(252,170,46)" rx="2" ry="2" />
+<text  x="907.23" y="799.5" ></text>
+</g>
+<g >
+<title>bdrv_co_preadv_part (192,976,152 samples, 0.05%)</title><rect x="747.9" y="837" width="0.7" height="15.0" fill="rgb(228,24,54)" rx="2" ry="2" />
+<text  x="750.93" y="847.5" ></text>
+</g>
+<g >
+<title>mozilla::detail::MutexImpl::unlock (118,129,966 samples, 0.03%)</title><rect x="14.7" y="949" width="0.4" height="15.0" fill="rgb(224,99,10)" rx="2" ry="2" />
+<text  x="17.68" y="959.5" ></text>
+</g>
+<g >
+<title>do_try_to_free_pages (42,399,208 samples, 0.01%)</title><rect x="664.9" y="645" width="0.1" height="15.0" fill="rgb(222,122,24)" rx="2" ry="2" />
+<text  x="667.88" y="655.5" ></text>
+</g>
+<g >
+<title>update_process_times (187,146,569 samples, 0.05%)</title><rect x="833.8" y="725" width="0.6" height="15.0" fill="rgb(233,139,53)" rx="2" ry="2" />
+<text  x="836.82" y="735.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (70,094,822 samples, 0.02%)</title><rect x="191.6" y="933" width="0.2" height="15.0" fill="rgb(218,103,11)" rx="2" ry="2" />
+<text  x="194.57" y="943.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (37,484,772 samples, 0.01%)</title><rect x="152.7" y="837" width="0.1" height="15.0" fill="rgb(225,102,7)" rx="2" ry="2" />
+<text  x="155.72" y="847.5" ></text>
+</g>
+<g >
+<title>WRScene~lder#44 (34,334,173 samples, 0.01%)</title><rect x="187.1" y="981" width="0.1" height="15.0" fill="rgb(248,185,48)" rx="2" ry="2" />
+<text  x="190.10" y="991.5" ></text>
+</g>
+<g >
+<title>blk_co_do_preadv (3,872,616,876 samples, 1.06%)</title><rect x="736.2" y="901" width="12.4" height="15.0" fill="rgb(208,89,30)" rx="2" ry="2" />
+<text  x="739.16" y="911.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (93,631,877 samples, 0.03%)</title><rect x="1171.7" y="245" width="0.3" height="15.0" fill="rgb(208,26,2)" rx="2" ry="2" />
+<text  x="1174.69" y="255.5" ></text>
+</g>
+<g >
+<title>vfs_writev (36,050,528 samples, 0.01%)</title><rect x="1165.3" y="677" width="0.1" height="15.0" fill="rgb(247,91,31)" rx="2" ry="2" />
+<text  x="1168.32" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (728,460,090 samples, 0.20%)</title><rect x="726.1" y="917" width="2.3" height="15.0" fill="rgb(210,185,21)" rx="2" ry="2" />
+<text  x="729.05" y="927.5" ></text>
+</g>
+<g >
+<title>[libcurl.so.4.8.0] (1,165,642,057 samples, 0.32%)</title><rect x="622.4" y="693" width="3.7" height="15.0" fill="rgb(245,181,28)" rx="2" ry="2" />
+<text  x="625.38" y="703.5" ></text>
+</g>
+<g >
+<title>handle_single_connection (329,454,028 samples, 0.09%)</title><rect x="667.9" y="933" width="1.0" height="15.0" fill="rgb(243,23,17)" rx="2" ry="2" />
+<text  x="670.86" y="943.5" ></text>
+</g>
+<g >
+<title>nf_conntrack_in (69,265,785 samples, 0.02%)</title><rect x="624.9" y="437" width="0.2" height="15.0" fill="rgb(232,53,47)" rx="2" ry="2" />
+<text  x="627.92" y="447.5" ></text>
+</g>
+<g >
+<title>crypt_iv_plain64_gen (160,433,896 samples, 0.04%)</title><rect x="399.7" y="869" width="0.6" height="15.0" fill="rgb(252,80,42)" rx="2" ry="2" />
+<text  x="402.75" y="879.5" ></text>
+</g>
+<g >
+<title>____sys_sendmsg (1,431,050,011 samples, 0.39%)</title><rect x="739.5" y="597" width="4.6" height="15.0" fill="rgb(214,142,38)" rx="2" ry="2" />
+<text  x="742.50" y="607.5" ></text>
+</g>
+<g >
+<title>__x64_sys_futex (91,295,330 samples, 0.02%)</title><rect x="148.7" y="885" width="0.3" height="15.0" fill="rgb(217,132,1)" rx="2" ry="2" />
+<text  x="151.68" y="895.5" ></text>
+</g>
+<g >
+<title>[xfwm4] (229,117,817 samples, 0.06%)</title><rect x="1186.7" y="805" width="0.7" height="15.0" fill="rgb(245,76,23)" rx="2" ry="2" />
+<text  x="1189.67" y="815.5" ></text>
+</g>
+<g >
+<title>kthread (209,091,316 samples, 0.06%)</title><rect x="395.8" y="949" width="0.6" height="15.0" fill="rgb(205,147,19)" rx="2" ry="2" />
+<text  x="398.77" y="959.5" ></text>
+</g>
+<g >
+<title>__free_one_page (47,323,404 samples, 0.01%)</title><rect x="333.3" y="757" width="0.1" height="15.0" fill="rgb(253,86,46)" rx="2" ry="2" />
+<text  x="336.30" y="767.5" ></text>
+</g>
+<g >
+<title>process_one_work (152,972,231 samples, 0.04%)</title><rect x="613.1" y="917" width="0.5" height="15.0" fill="rgb(224,63,8)" rx="2" ry="2" />
+<text  x="616.08" y="927.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (34,605,922 samples, 0.01%)</title><rect x="732.3" y="933" width="0.1" height="15.0" fill="rgb(254,81,26)" rx="2" ry="2" />
+<text  x="735.31" y="943.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (59,178,582 samples, 0.02%)</title><rect x="54.0" y="949" width="0.2" height="15.0" fill="rgb(218,213,12)" rx="2" ry="2" />
+<text  x="57.00" y="959.5" ></text>
+</g>
+<g >
+<title>worker_thread (324,567,360 samples, 0.09%)</title><rect x="613.8" y="933" width="1.0" height="15.0" fill="rgb(248,220,8)" rx="2" ry="2" />
+<text  x="616.79" y="943.5" ></text>
+</g>
+<g >
+<title>[libglib-2.0.so.0.7303.0] (73,843,466 samples, 0.02%)</title><rect x="281.1" y="869" width="0.2" height="15.0" fill="rgb(230,169,28)" rx="2" ry="2" />
+<text  x="284.10" y="879.5" ></text>
+</g>
+<g >
+<title>__filemap_add_folio (3,078,033,186 samples, 0.84%)</title><rect x="690.6" y="725" width="9.9" height="15.0" fill="rgb(235,216,27)" rx="2" ry="2" />
+<text  x="693.59" y="735.5" ></text>
+</g>
+<g >
+<title>__schedule (1,209,117,941 samples, 0.33%)</title><rect x="335.4" y="901" width="3.9" height="15.0" fill="rgb(248,0,17)" rx="2" ry="2" />
+<text  x="338.37" y="911.5" ></text>
+</g>
+<g >
+<title>mozilla::detail::ConditionVariableImpl::wait_for (540,832,354 samples, 0.15%)</title><rect x="157.8" y="933" width="1.8" height="15.0" fill="rgb(224,93,41)" rx="2" ry="2" />
+<text  x="160.82" y="943.5" ></text>
+</g>
+<g >
+<title>__schedule (319,584,439 samples, 0.09%)</title><rect x="291.8" y="821" width="1.0" height="15.0" fill="rgb(226,199,2)" rx="2" ry="2" />
+<text  x="294.81" y="831.5" ></text>
+</g>
+<g >
+<title>[libvte-2.91.so.0.6992.0] (111,798,763 samples, 0.03%)</title><rect x="1176.2" y="965" width="0.4" height="15.0" fill="rgb(205,120,18)" rx="2" ry="2" />
+<text  x="1179.24" y="975.5" ></text>
+</g>
+<g >
+<title>xfdesktop (82,548,941 samples, 0.02%)</title><rect x="1185.4" y="981" width="0.3" height="15.0" fill="rgb(247,4,11)" rx="2" ry="2" />
+<text  x="1188.41" y="991.5" ></text>
+</g>
+<g >
+<title>realloc (99,304,277 samples, 0.03%)</title><rect x="174.1" y="949" width="0.3" height="15.0" fill="rgb(235,208,35)" rx="2" ry="2" />
+<text  x="177.12" y="959.5" ></text>
+</g>
+<g >
+<title>mod_lruvec_page_state (59,452,821 samples, 0.02%)</title><rect x="556.4" y="725" width="0.2" height="15.0" fill="rgb(228,115,4)" rx="2" ry="2" />
+<text  x="559.40" y="735.5" ></text>
+</g>
+<g >
+<title>folio_clear_dirty_for_io (39,628,312 samples, 0.01%)</title><rect x="612.6" y="757" width="0.1" height="15.0" fill="rgb(234,143,16)" rx="2" ry="2" />
+<text  x="615.57" y="767.5" ></text>
+</g>
+<g >
+<title>__kmalloc_node_track_caller (81,560,551 samples, 0.02%)</title><rect x="317.0" y="741" width="0.2" height="15.0" fill="rgb(231,12,54)" rx="2" ry="2" />
+<text  x="319.96" y="751.5" ></text>
+</g>
+<g >
+<title>xfwm4 (1,240,357,598 samples, 0.34%)</title><rect x="1185.8" y="981" width="4.0" height="15.0" fill="rgb(215,128,1)" rx="2" ry="2" />
+<text  x="1188.79" y="991.5" ></text>
+</g>
+<g >
+<title>drm_ioctl (31,848,799 samples, 0.01%)</title><rect x="143.0" y="805" width="0.1" height="15.0" fill="rgb(234,229,48)" rx="2" ry="2" />
+<text  x="146.01" y="815.5" ></text>
+</g>
+<g >
+<title>security_file_permission (68,839,933 samples, 0.02%)</title><rect x="240.2" y="885" width="0.2" height="15.0" fill="rgb(252,54,46)" rx="2" ry="2" />
+<text  x="243.18" y="895.5" ></text>
+</g>
+<g >
+<title>sockfd_lookup_light (32,852,084 samples, 0.01%)</title><rect x="48.8" y="885" width="0.1" height="15.0" fill="rgb(210,181,33)" rx="2" ry="2" />
+<text  x="51.83" y="895.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (629,379,356 samples, 0.17%)</title><rect x="1163.2" y="805" width="2.0" height="15.0" fill="rgb(214,148,22)" rx="2" ry="2" />
+<text  x="1166.22" y="815.5" ></text>
+</g>
+<g >
+<title>[libpipewire-0.3.so.0.358.0] (265,671,919 samples, 0.07%)</title><rect x="732.6" y="965" width="0.8" height="15.0" fill="rgb(214,198,7)" rx="2" ry="2" />
+<text  x="735.56" y="975.5" ></text>
+</g>
+<g >
+<title>iomap_finish_ioend (213,661,286 samples, 0.06%)</title><rect x="394.7" y="853" width="0.7" height="15.0" fill="rgb(251,101,44)" rx="2" ry="2" />
+<text  x="397.68" y="863.5" ></text>
+</g>
+<g >
+<title>process_one_work (209,802,689 samples, 0.06%)</title><rect x="613.8" y="917" width="0.7" height="15.0" fill="rgb(238,153,10)" rx="2" ry="2" />
+<text  x="616.81" y="927.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (55,203,962 samples, 0.02%)</title><rect x="135.8" y="853" width="0.1" height="15.0" fill="rgb(217,14,41)" rx="2" ry="2" />
+<text  x="138.75" y="863.5" ></text>
+</g>
+<g >
+<title>timerqueue_del (85,193,130 samples, 0.02%)</title><rect x="1156.1" y="821" width="0.3" height="15.0" fill="rgb(228,6,36)" rx="2" ry="2" />
+<text  x="1159.14" y="831.5" ></text>
+</g>
+<g >
+<title>malloc (92,911,623 samples, 0.03%)</title><rect x="148.2" y="949" width="0.3" height="15.0" fill="rgb(232,220,53)" rx="2" ry="2" />
+<text  x="151.19" y="959.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (35,319,851 samples, 0.01%)</title><rect x="1162.3" y="917" width="0.2" height="15.0" fill="rgb(213,95,23)" rx="2" ry="2" />
+<text  x="1165.34" y="927.5" ></text>
+</g>
+<g >
+<title>[libgdk-3.so.0.2404.30] (983,239,863 samples, 0.27%)</title><rect x="1171.5" y="869" width="3.1" height="15.0" fill="rgb(254,24,26)" rx="2" ry="2" />
+<text  x="1174.47" y="879.5" ></text>
+</g>
+<g >
+<title>folio_unlock (61,853,491 samples, 0.02%)</title><rect x="721.2" y="757" width="0.2" height="15.0" fill="rgb(217,38,26)" rx="2" ry="2" />
+<text  x="724.24" y="767.5" ></text>
+</g>
+<g >
+<title>start_secondary (85,837,370,835 samples, 23.42%)</title><rect x="885.4" y="949" width="276.3" height="15.0" fill="rgb(217,225,28)" rx="2" ry="2" />
+<text  x="888.37" y="959.5" >start_secondary</text>
+</g>
+<g >
+<title>curl_mvaprintf (87,784,306 samples, 0.02%)</title><rect x="646.3" y="709" width="0.3" height="15.0" fill="rgb(236,222,25)" rx="2" ry="2" />
+<text  x="649.28" y="719.5" ></text>
+</g>
+<g >
+<title>__GI___writev (417,386,969 samples, 0.11%)</title><rect x="19.1" y="821" width="1.3" height="15.0" fill="rgb(227,93,12)" rx="2" ry="2" />
+<text  x="22.07" y="831.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (605,299,385 samples, 0.17%)</title><rect x="221.1" y="869" width="2.0" height="15.0" fill="rgb(216,14,26)" rx="2" ry="2" />
+<text  x="224.15" y="879.5" ></text>
+</g>
+<g >
+<title>do_futex (129,031,149 samples, 0.04%)</title><rect x="747.1" y="677" width="0.4" height="15.0" fill="rgb(242,227,33)" rx="2" ry="2" />
+<text  x="750.10" y="687.5" ></text>
+</g>
+<g >
+<title>xfs_log_reserve (54,810,959 samples, 0.01%)</title><rect x="722.6" y="709" width="0.2" height="15.0" fill="rgb(222,1,26)" rx="2" ry="2" />
+<text  x="725.59" y="719.5" ></text>
+</g>
+<g >
+<title>swapper (102,812,563,216 samples, 28.05%)</title><rect x="830.7" y="981" width="331.0" height="15.0" fill="rgb(248,222,25)" rx="2" ry="2" />
+<text  x="833.73" y="991.5" >swapper</text>
+</g>
+<g >
+<title>__napi_poll (58,316,762 samples, 0.02%)</title><rect x="665.8" y="565" width="0.2" height="15.0" fill="rgb(209,115,47)" rx="2" ry="2" />
+<text  x="668.77" y="575.5" ></text>
+</g>
+<g >
+<title>[unknown] (564,652,309 samples, 0.15%)</title><rect x="15.3" y="965" width="1.9" height="15.0" fill="rgb(234,77,0)" rx="2" ry="2" />
+<text  x="18.34" y="975.5" ></text>
+</g>
+<g >
+<title>worker_thread (239,201,144 samples, 0.07%)</title><rect x="392.0" y="933" width="0.7" height="15.0" fill="rgb(238,102,44)" rx="2" ry="2" />
+<text  x="394.95" y="943.5" ></text>
+</g>
+<g >
+<title>__sys_sendto (2,232,836,228 samples, 0.61%)</title><rect x="659.0" y="789" width="7.1" height="15.0" fill="rgb(207,80,47)" rx="2" ry="2" />
+<text  x="661.95" y="799.5" ></text>
+</g>
+<g >
+<title>tcp_v4_early_demux (110,444,977 samples, 0.03%)</title><rect x="322.5" y="693" width="0.4" height="15.0" fill="rgb(210,116,20)" rx="2" ry="2" />
+<text  x="325.52" y="703.5" ></text>
+</g>
+<g >
+<title>raw_send_socket (2,389,715,463 samples, 0.65%)</title><rect x="658.7" y="869" width="7.7" height="15.0" fill="rgb(210,30,12)" rx="2" ry="2" />
+<text  x="661.75" y="879.5" ></text>
+</g>
+<g >
+<title>__mem_cgroup_charge (217,381,022 samples, 0.06%)</title><rect x="754.2" y="693" width="0.7" height="15.0" fill="rgb(212,81,10)" rx="2" ry="2" />
+<text  x="757.21" y="703.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (72,645,984 samples, 0.02%)</title><rect x="1162.9" y="821" width="0.2" height="15.0" fill="rgb(249,21,34)" rx="2" ry="2" />
+<text  x="1165.91" y="831.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (34,728,754 samples, 0.01%)</title><rect x="1174.3" y="613" width="0.1" height="15.0" fill="rgb(210,17,17)" rx="2" ry="2" />
+<text  x="1177.26" y="623.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_one_core (706,296,995 samples, 0.19%)</title><rect x="660.5" y="517" width="2.3" height="15.0" fill="rgb(235,169,42)" rx="2" ry="2" />
+<text  x="663.52" y="527.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (7,228,532,641 samples, 1.97%)</title><rect x="689.6" y="757" width="23.3" height="15.0" fill="rgb(219,19,34)" rx="2" ry="2" />
+<text  x="692.64" y="767.5" >_..</text>
+</g>
+<g >
+<title>try_to_wake_up (75,822,097 samples, 0.02%)</title><rect x="747.3" y="629" width="0.2" height="15.0" fill="rgb(227,141,42)" rx="2" ry="2" />
+<text  x="750.27" y="639.5" ></text>
+</g>
+<g >
+<title>intel_engine_irq_enable (91,406,340 samples, 0.02%)</title><rect x="133.3" y="517" width="0.3" height="15.0" fill="rgb(244,20,54)" rx="2" ry="2" />
+<text  x="136.29" y="527.5" ></text>
+</g>
+<g >
+<title>__sysvec_irq_work (48,258,505 samples, 0.01%)</title><rect x="232.9" y="773" width="0.2" height="15.0" fill="rgb(206,97,12)" rx="2" ry="2" />
+<text  x="235.92" y="783.5" ></text>
+</g>
+<g >
+<title>snd_pcm_ioctl (78,845,750 samples, 0.02%)</title><rect x="734.5" y="917" width="0.3" height="15.0" fill="rgb(214,34,27)" rx="2" ry="2" />
+<text  x="737.50" y="927.5" ></text>
+</g>
+<g >
+<title>__sysvec_apic_timer_interrupt (57,879,178 samples, 0.02%)</title><rect x="1148.0" y="821" width="0.2" height="15.0" fill="rgb(223,220,40)" rx="2" ry="2" />
+<text  x="1151.03" y="831.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (85,303,334 samples, 0.02%)</title><rect x="1174.2" y="757" width="0.3" height="15.0" fill="rgb(206,136,18)" rx="2" ry="2" />
+<text  x="1177.20" y="767.5" ></text>
+</g>
+<g >
+<title>__remove_mapping (2,124,211,057 samples, 0.58%)</title><rect x="358.0" y="853" width="6.8" height="15.0" fill="rgb(252,164,42)" rx="2" ry="2" />
+<text  x="360.98" y="863.5" ></text>
+</g>
+<g >
+<title>inet_recvmsg (40,139,430 samples, 0.01%)</title><rect x="667.4" y="901" width="0.1" height="15.0" fill="rgb(243,98,44)" rx="2" ry="2" />
+<text  x="670.39" y="911.5" ></text>
+</g>
+<g >
+<title>__GI___ioctl (82,904,505 samples, 0.02%)</title><rect x="135.1" y="853" width="0.2" height="15.0" fill="rgb(226,147,39)" rx="2" ry="2" />
+<text  x="138.08" y="863.5" ></text>
+</g>
+<g >
+<title>ttwu_do_wakeup (89,544,538 samples, 0.02%)</title><rect x="1132.7" y="869" width="0.3" height="15.0" fill="rgb(217,35,51)" rx="2" ry="2" />
+<text  x="1135.72" y="879.5" ></text>
+</g>
+<g >
+<title>_aesni_enc4 (1,125,512,781 samples, 0.31%)</title><rect x="511.5" y="805" width="3.6" height="15.0" fill="rgb(233,165,53)" rx="2" ry="2" />
+<text  x="514.46" y="815.5" ></text>
+</g>
+<g >
+<title>[firefox] (114,851,280 samples, 0.03%)</title><rect x="49.4" y="933" width="0.4" height="15.0" fill="rgb(222,193,29)" rx="2" ry="2" />
+<text  x="52.40" y="943.5" ></text>
+</g>
+<g >
+<title>[libcairo.so.2.11706.0] (32,956,338 samples, 0.01%)</title><rect x="1172.1" y="229" width="0.1" height="15.0" fill="rgb(233,186,8)" rx="2" ry="2" />
+<text  x="1175.07" y="239.5" ></text>
+</g>
+<g >
+<title>[firefox] (43,039,472 samples, 0.01%)</title><rect x="270.0" y="885" width="0.1" height="15.0" fill="rgb(235,136,46)" rx="2" ry="2" />
+<text  x="272.99" y="895.5" ></text>
+</g>
+<g >
+<title>__mod_lruvec_page_state (50,060,040 samples, 0.01%)</title><rect x="524.1" y="709" width="0.2" height="15.0" fill="rgb(221,177,29)" rx="2" ry="2" />
+<text  x="527.12" y="719.5" ></text>
+</g>
+<g >
+<title>irq_work_run_list (92,061,328 samples, 0.03%)</title><rect x="133.3" y="565" width="0.3" height="15.0" fill="rgb(248,32,6)" rx="2" ry="2" />
+<text  x="136.29" y="575.5" ></text>
+</g>
+<g >
+<title>[libxul.so] (82,308,919 samples, 0.02%)</title><rect x="118.2" y="965" width="0.2" height="15.0" fill="rgb(240,14,3)" rx="2" ry="2" />
+<text  x="121.17" y="975.5" ></text>
+</g>
+<g >
+<title>kworker/u16:2-f (5,678,690,488 samples, 1.55%)</title><rect x="460.7" y="981" width="18.3" height="15.0" fill="rgb(226,197,5)" rx="2" ry="2" />
+<text  x="463.72" y="991.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (211,957,690 samples, 0.06%)</title><rect x="832.7" y="805" width="0.7" height="15.0" fill="rgb(250,72,18)" rx="2" ry="2" />
+<text  x="835.73" y="815.5" ></text>
+</g>
+<g >
+<title>dequeue_task_fair (116,804,702 samples, 0.03%)</title><rect x="33.9" y="789" width="0.4" height="15.0" fill="rgb(229,122,54)" rx="2" ry="2" />
+<text  x="36.90" y="799.5" ></text>
+</g>
+<g >
+<title>[libxul.so] (112,213,333 samples, 0.03%)</title><rect x="184.1" y="949" width="0.4" height="15.0" fill="rgb(254,222,1)" rx="2" ry="2" />
+<text  x="187.12" y="959.5" ></text>
+</g>
+<g >
+<title>handle_edge_irq (1,548,137,484 samples, 0.42%)</title><rect x="890.8" y="821" width="5.0" height="15.0" fill="rgb(224,190,42)" rx="2" ry="2" />
+<text  x="893.82" y="831.5" ></text>
+</g>
+<g >
+<title>pixman_rasterize_trapezoid (242,370,748 samples, 0.07%)</title><rect x="218.4" y="917" width="0.8" height="15.0" fill="rgb(212,224,39)" rx="2" ry="2" />
+<text  x="221.43" y="927.5" ></text>
+</g>
+<g >
+<title>newidle_balance (77,392,723 samples, 0.02%)</title><rect x="22.7" y="709" width="0.2" height="15.0" fill="rgb(240,187,12)" rx="2" ry="2" />
+<text  x="25.69" y="719.5" ></text>
+</g>
+<g >
+<title>drm_syncobj_array_wait_timeout.constprop.0 (139,594,080 samples, 0.04%)</title><rect x="133.2" y="677" width="0.4" height="15.0" fill="rgb(223,18,23)" rx="2" ry="2" />
+<text  x="136.18" y="687.5" ></text>
+</g>
+<g >
+<title>free_unref_page_list (859,413,143 samples, 0.23%)</title><rect x="365.7" y="853" width="2.8" height="15.0" fill="rgb(221,139,54)" rx="2" ry="2" />
+<text  x="368.71" y="863.5" ></text>
+</g>
+<g >
+<title>ktime_get (46,064,264 samples, 0.01%)</title><rect x="907.0" y="773" width="0.1" height="15.0" fill="rgb(209,223,49)" rx="2" ry="2" />
+<text  x="910.00" y="783.5" ></text>
+</g>
+<g >
+<title>xcb_poll_for_special_event (36,240,256 samples, 0.01%)</title><rect x="145.0" y="837" width="0.1" height="15.0" fill="rgb(251,104,12)" rx="2" ry="2" />
+<text  x="148.00" y="847.5" ></text>
+</g>
+<g >
+<title>XaceHook (160,418,801 samples, 0.04%)</title><rect x="220.3" y="917" width="0.5" height="15.0" fill="rgb(211,59,33)" rx="2" ry="2" />
+<text  x="223.28" y="927.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock_irqsave (42,261,969 samples, 0.01%)</title><rect x="1141.5" y="853" width="0.1" height="15.0" fill="rgb(236,12,52)" rx="2" ry="2" />
+<text  x="1144.46" y="863.5" ></text>
+</g>
+<g >
+<title>ksys_write (252,438,756 samples, 0.07%)</title><rect x="85.8" y="901" width="0.8" height="15.0" fill="rgb(213,191,37)" rx="2" ry="2" />
+<text  x="88.82" y="911.5" ></text>
+</g>
+<g >
+<title>vfs_read (378,290,878 samples, 0.10%)</title><rect x="91.6" y="885" width="1.2" height="15.0" fill="rgb(240,222,8)" rx="2" ry="2" />
+<text  x="94.56" y="895.5" ></text>
+</g>
+<g >
+<title>kthread (391,114,268 samples, 0.11%)</title><rect x="389.1" y="949" width="1.2" height="15.0" fill="rgb(228,141,5)" rx="2" ry="2" />
+<text  x="392.05" y="959.5" ></text>
+</g>
+<g >
+<title>[firefox] (84,333,834 samples, 0.02%)</title><rect x="174.2" y="917" width="0.2" height="15.0" fill="rgb(215,28,54)" rx="2" ry="2" />
+<text  x="177.16" y="927.5" ></text>
+</g>
+<g >
+<title>ksys_read (168,179,597 samples, 0.05%)</title><rect x="658.0" y="805" width="0.6" height="15.0" fill="rgb(216,29,50)" rx="2" ry="2" />
+<text  x="661.05" y="815.5" ></text>
+</g>
+<g >
+<title>[firefox] (107,782,528 samples, 0.03%)</title><rect x="149.9" y="933" width="0.4" height="15.0" fill="rgb(216,97,0)" rx="2" ry="2" />
+<text  x="152.91" y="943.5" ></text>
+</g>
+<g >
+<title>__sys_recvmsg (219,717,871 samples, 0.06%)</title><rect x="745.0" y="645" width="0.7" height="15.0" fill="rgb(248,141,17)" rx="2" ry="2" />
+<text  x="747.99" y="655.5" ></text>
+</g>
+<g >
+<title>i915_gem_object_put_pages_shmem (1,058,084,086 samples, 0.29%)</title><rect x="374.1" y="805" width="3.4" height="15.0" fill="rgb(232,204,44)" rx="2" ry="2" />
+<text  x="377.10" y="815.5" ></text>
+</g>
+<g >
+<title>__sysvec_irq_work (93,565,269 samples, 0.03%)</title><rect x="133.3" y="597" width="0.3" height="15.0" fill="rgb(226,34,53)" rx="2" ry="2" />
+<text  x="136.29" y="607.5" ></text>
+</g>
+<g >
+<title>do_setitimer (74,217,770 samples, 0.02%)</title><rect x="237.7" y="917" width="0.3" height="15.0" fill="rgb(244,44,15)" rx="2" ry="2" />
+<text  x="240.73" y="927.5" ></text>
+</g>
+<g >
+<title>gen8_irq_handler (127,579,335 samples, 0.03%)</title><rect x="892.0" y="773" width="0.4" height="15.0" fill="rgb(234,226,5)" rx="2" ry="2" />
+<text  x="895.03" y="783.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (88,325,275 samples, 0.02%)</title><rect x="613.3" y="869" width="0.2" height="15.0" fill="rgb(238,81,28)" rx="2" ry="2" />
+<text  x="616.26" y="879.5" ></text>
+</g>
+<g >
+<title>mod_memcg_state (48,267,204 samples, 0.01%)</title><rect x="327.3" y="581" width="0.1" height="15.0" fill="rgb(249,75,22)" rx="2" ry="2" />
+<text  x="330.26" y="591.5" ></text>
+</g>
+<g >
+<title>schedule (85,551,318 samples, 0.02%)</title><rect x="43.5" y="821" width="0.3" height="15.0" fill="rgb(232,140,42)" rx="2" ry="2" />
+<text  x="46.49" y="831.5" ></text>
+</g>
+<g >
+<title>qio_channel_readv_full_all_eof (74,916,300 samples, 0.02%)</title><rect x="744.7" y="725" width="0.2" height="15.0" fill="rgb(205,218,51)" rx="2" ry="2" />
+<text  x="747.68" y="735.5" ></text>
+</g>
+<g >
+<title>__bio_split_to_limits (113,511,540 samples, 0.03%)</title><rect x="245.0" y="869" width="0.4" height="15.0" fill="rgb(229,185,35)" rx="2" ry="2" />
+<text  x="248.04" y="879.5" ></text>
+</g>
+<g >
+<title>__i915_gem_object_get_pages (361,986,843 samples, 0.10%)</title><rect x="236.3" y="869" width="1.1" height="15.0" fill="rgb(210,134,48)" rx="2" ry="2" />
+<text  x="239.28" y="879.5" ></text>
+</g>
+<g >
+<title>schedule_hrtimeout_range_clock (85,703,154 samples, 0.02%)</title><rect x="1188.9" y="901" width="0.2" height="15.0" fill="rgb(231,65,5)" rx="2" ry="2" />
+<text  x="1191.86" y="911.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (733,748,874 samples, 0.20%)</title><rect x="423.0" y="837" width="2.4" height="15.0" fill="rgb(240,18,50)" rx="2" ry="2" />
+<text  x="426.01" y="847.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock_irqsave (50,404,872 samples, 0.01%)</title><rect x="573.0" y="725" width="0.1" height="15.0" fill="rgb(237,156,6)" rx="2" ry="2" />
+<text  x="575.98" y="735.5" ></text>
+</g>
+<g >
+<title>sock_sendmsg (122,498,791 samples, 0.03%)</title><rect x="93.6" y="853" width="0.4" height="15.0" fill="rgb(249,7,38)" rx="2" ry="2" />
+<text  x="96.60" y="863.5" ></text>
+</g>
+<g >
+<title>do_epoll_wait (176,773,620 samples, 0.05%)</title><rect x="731.3" y="917" width="0.6" height="15.0" fill="rgb(240,117,7)" rx="2" ry="2" />
+<text  x="734.33" y="927.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (206,392,872 samples, 0.06%)</title><rect x="1177.8" y="661" width="0.7" height="15.0" fill="rgb(216,200,29)" rx="2" ry="2" />
+<text  x="1180.82" y="671.5" ></text>
+</g>
+<g >
+<title>main (1,074,179,971 samples, 0.29%)</title><rect x="1171.3" y="965" width="3.5" height="15.0" fill="rgb(210,186,2)" rx="2" ry="2" />
+<text  x="1174.31" y="975.5" ></text>
+</g>
+<g >
+<title>__fget_light (52,168,187 samples, 0.01%)</title><rect x="98.1" y="837" width="0.2" height="15.0" fill="rgb(227,177,21)" rx="2" ry="2" />
+<text  x="101.12" y="847.5" ></text>
+</g>
+<g >
+<title>__kmalloc_node_track_caller (69,255,198 samples, 0.02%)</title><rect x="238.8" y="773" width="0.2" height="15.0" fill="rgb(245,169,2)" rx="2" ry="2" />
+<text  x="241.81" y="783.5" ></text>
+</g>
+<g >
+<title>glean.dispatche (3,944,629,256 samples, 1.08%)</title><rect x="285.9" y="981" width="12.7" height="15.0" fill="rgb(247,86,16)" rx="2" ry="2" />
+<text  x="288.86" y="991.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (106,297,104 samples, 0.03%)</title><rect x="148.7" y="917" width="0.3" height="15.0" fill="rgb(249,197,40)" rx="2" ry="2" />
+<text  x="151.66" y="927.5" ></text>
+</g>
+<g >
+<title>iomap_finish_ioend (256,716,708 samples, 0.07%)</title><rect x="388.2" y="853" width="0.8" height="15.0" fill="rgb(241,76,15)" rx="2" ry="2" />
+<text  x="391.20" y="863.5" ></text>
+</g>
+<g >
+<title>[libspa-audioconvert.so] (591,947,304 samples, 0.16%)</title><rect x="729.2" y="901" width="1.9" height="15.0" fill="rgb(208,107,45)" rx="2" ry="2" />
+<text  x="732.17" y="911.5" ></text>
+</g>
+<g >
+<title>delay_tsc (38,026,959 samples, 0.01%)</title><rect x="390.4" y="805" width="0.1" height="15.0" fill="rgb(229,81,0)" rx="2" ry="2" />
+<text  x="393.36" y="815.5" ></text>
+</g>
+<g >
+<title>folio_add_lru (1,262,346,417 samples, 0.34%)</title><rect x="700.5" y="725" width="4.1" height="15.0" fill="rgb(248,17,1)" rx="2" ry="2" />
+<text  x="703.51" y="735.5" ></text>
+</g>
+<g >
+<title>__softirqentry_text_start (57,418,668 samples, 0.02%)</title><rect x="813.5" y="789" width="0.2" height="15.0" fill="rgb(242,200,23)" rx="2" ry="2" />
+<text  x="816.50" y="799.5" ></text>
+</g>
+<g >
+<title>pagevec_lookup_range_tag (31,333,123 samples, 0.01%)</title><rect x="420.0" y="757" width="0.1" height="15.0" fill="rgb(228,170,23)" rx="2" ry="2" />
+<text  x="423.04" y="767.5" ></text>
+</g>
+<g >
+<title>do_softirq.part.0 (70,331,469 samples, 0.02%)</title><rect x="665.8" y="613" width="0.2" height="15.0" fill="rgb(235,126,8)" rx="2" ry="2" />
+<text  x="668.75" y="623.5" ></text>
+</g>
+<g >
+<title>_raw_spin_trylock (79,649,716 samples, 0.02%)</title><rect x="707.7" y="693" width="0.2" height="15.0" fill="rgb(217,162,18)" rx="2" ry="2" />
+<text  x="710.69" y="703.5" ></text>
+</g>
+<g >
+<title>free (33,896,564 samples, 0.01%)</title><rect x="264.8" y="933" width="0.2" height="15.0" fill="rgb(219,19,26)" rx="2" ry="2" />
+<text  x="267.85" y="943.5" ></text>
+</g>
+<g >
+<title>futex_wait (150,966,743 samples, 0.04%)</title><rect x="149.1" y="837" width="0.5" height="15.0" fill="rgb(243,129,0)" rx="2" ry="2" />
+<text  x="152.12" y="847.5" ></text>
+</g>
+<g >
+<title>intel_idle_ibrs (57,305,508,616 samples, 15.63%)</title><rect x="938.4" y="869" width="184.4" height="15.0" fill="rgb(243,71,9)" rx="2" ry="2" />
+<text  x="941.36" y="879.5" >intel_idle_ibrs</text>
+</g>
+<g >
+<title>anon_pipe_buf_release (31,647,780 samples, 0.01%)</title><rect x="91.9" y="853" width="0.1" height="15.0" fill="rgb(221,72,9)" rx="2" ry="2" />
+<text  x="94.90" y="863.5" ></text>
+</g>
+<g >
+<title>iomap_write_end (2,404,473,420 samples, 0.66%)</title><rect x="713.7" y="773" width="7.7" height="15.0" fill="rgb(223,119,29)" rx="2" ry="2" />
+<text  x="716.70" y="783.5" ></text>
+</g>
+<g >
+<title>iterate_groups (75,233,950 samples, 0.02%)</title><rect x="1150.7" y="853" width="0.3" height="15.0" fill="rgb(206,224,4)" rx="2" ry="2" />
+<text  x="1153.71" y="863.5" ></text>
+</g>
+<g >
+<title>__schedule (36,455,731 samples, 0.01%)</title><rect x="396.3" y="901" width="0.1" height="15.0" fill="rgb(251,128,21)" rx="2" ry="2" />
+<text  x="399.32" y="911.5" ></text>
+</g>
+<g >
+<title>memset_erms (79,361,603 samples, 0.02%)</title><rect x="421.6" y="853" width="0.2" height="15.0" fill="rgb(221,131,17)" rx="2" ry="2" />
+<text  x="424.56" y="863.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (67,939,877 samples, 0.02%)</title><rect x="1176.0" y="965" width="0.2" height="15.0" fill="rgb(230,69,49)" rx="2" ry="2" />
+<text  x="1179.02" y="975.5" ></text>
+</g>
+<g >
+<title>memset_erms (118,604,750 samples, 0.03%)</title><rect x="480.8" y="853" width="0.4" height="15.0" fill="rgb(252,152,2)" rx="2" ry="2" />
+<text  x="483.81" y="863.5" ></text>
+</g>
+<g >
+<title>folio_clear_dirty_for_io (192,494,282 samples, 0.05%)</title><rect x="437.9" y="757" width="0.6" height="15.0" fill="rgb(210,15,34)" rx="2" ry="2" />
+<text  x="440.89" y="767.5" ></text>
+</g>
+<g >
+<title>futex_wait_queue (32,120,998 samples, 0.01%)</title><rect x="1166.7" y="789" width="0.1" height="15.0" fill="rgb(226,145,26)" rx="2" ry="2" />
+<text  x="1169.74" y="799.5" ></text>
+</g>
+<g >
+<title>[Xorg] (136,565,168 samples, 0.04%)</title><rect x="204.1" y="901" width="0.5" height="15.0" fill="rgb(231,10,16)" rx="2" ry="2" />
+<text  x="207.14" y="911.5" ></text>
+</g>
+<g >
+<title>pixman_line_fixed_edge_init (42,781,876 samples, 0.01%)</title><rect x="218.5" y="901" width="0.1" height="15.0" fill="rgb(228,194,22)" rx="2" ry="2" />
+<text  x="221.47" y="911.5" ></text>
+</g>
+<g >
+<title>[libglib-2.0.so.0.7303.0] (33,055,205 samples, 0.01%)</title><rect x="298.6" y="917" width="0.1" height="15.0" fill="rgb(206,169,1)" rx="2" ry="2" />
+<text  x="301.60" y="927.5" ></text>
+</g>
+<g >
+<title>execute_command_internal (78,544,057 samples, 0.02%)</title><rect x="243.4" y="821" width="0.3" height="15.0" fill="rgb(220,82,54)" rx="2" ry="2" />
+<text  x="246.42" y="831.5" ></text>
+</g>
+<g >
+<title>_aesni_enc4 (857,479,604 samples, 0.23%)</title><rect x="467.5" y="805" width="2.7" height="15.0" fill="rgb(218,131,12)" rx="2" ry="2" />
+<text  x="470.46" y="815.5" ></text>
+</g>
+<g >
+<title>[libEGL_mesa.so.0.0.0] (716,516,001 samples, 0.20%)</title><rect x="143.4" y="901" width="2.3" height="15.0" fill="rgb(234,141,29)" rx="2" ry="2" />
+<text  x="146.37" y="911.5" ></text>
+</g>
+<g >
+<title>execute_command_internal (48,180,599 samples, 0.01%)</title><rect x="243.4" y="661" width="0.2" height="15.0" fill="rgb(206,216,35)" rx="2" ry="2" />
+<text  x="246.42" y="671.5" ></text>
+</g>
+<g >
+<title>hrtimer_start_range_ns (462,454,169 samples, 0.13%)</title><rect x="1158.4" y="885" width="1.5" height="15.0" fill="rgb(224,85,12)" rx="2" ry="2" />
+<text  x="1161.41" y="895.5" ></text>
+</g>
+<g >
+<title>moz_xmalloc (53,258,588 samples, 0.01%)</title><rect x="114.5" y="933" width="0.2" height="15.0" fill="rgb(212,217,30)" rx="2" ry="2" />
+<text  x="117.51" y="943.5" ></text>
+</g>
+<g >
+<title>__wake_up_common_lock (44,284,437 samples, 0.01%)</title><rect x="266.8" y="805" width="0.1" height="15.0" fill="rgb(253,199,22)" rx="2" ry="2" />
+<text  x="269.80" y="815.5" ></text>
+</g>
+<g >
+<title>shrink_node (42,399,208 samples, 0.01%)</title><rect x="664.9" y="629" width="0.1" height="15.0" fill="rgb(246,216,29)" rx="2" ry="2" />
+<text  x="667.88" y="639.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (266,820,635 samples, 0.07%)</title><rect x="151.5" y="933" width="0.9" height="15.0" fill="rgb(206,54,15)" rx="2" ry="2" />
+<text  x="154.52" y="943.5" ></text>
+</g>
+<g >
+<title>[firefox] (61,214,603 samples, 0.02%)</title><rect x="103.3" y="901" width="0.2" height="15.0" fill="rgb(208,112,44)" rx="2" ry="2" />
+<text  x="106.27" y="911.5" ></text>
+</g>
+<g >
+<title>wb_workfn (461,480,829 samples, 0.13%)</title><rect x="418.7" y="901" width="1.4" height="15.0" fill="rgb(232,72,5)" rx="2" ry="2" />
+<text  x="421.66" y="911.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (3,824,918,217 samples, 1.04%)</title><rect x="462.3" y="869" width="12.4" height="15.0" fill="rgb(209,163,5)" rx="2" ry="2" />
+<text  x="465.34" y="879.5" ></text>
+</g>
+<g >
+<title>do_writev (77,415,105 samples, 0.02%)</title><rect x="145.1" y="757" width="0.3" height="15.0" fill="rgb(227,123,1)" rx="2" ry="2" />
+<text  x="148.14" y="767.5" ></text>
+</g>
+<g >
+<title>xfs_bmapi_read (35,285,227 samples, 0.01%)</title><rect x="753.1" y="709" width="0.1" height="15.0" fill="rgb(240,69,14)" rx="2" ry="2" />
+<text  x="756.12" y="719.5" ></text>
+</g>
+<g >
+<title>mozilla::detail::MutexImpl::lock (175,605,739 samples, 0.05%)</title><rect x="104.6" y="949" width="0.5" height="15.0" fill="rgb(226,164,13)" rx="2" ry="2" />
+<text  x="107.58" y="959.5" ></text>
+</g>
+<g >
+<title>__mod_lruvec_state (47,395,855 samples, 0.01%)</title><rect x="384.7" y="773" width="0.1" height="15.0" fill="rgb(208,30,19)" rx="2" ry="2" />
+<text  x="387.65" y="783.5" ></text>
+</g>
+<g >
+<title>ReadRequestFromClient (90,229,586 samples, 0.02%)</title><rect x="199.5" y="949" width="0.3" height="15.0" fill="rgb(210,10,17)" rx="2" ry="2" />
+<text  x="202.55" y="959.5" ></text>
+</g>
+<g >
+<title>__sysvec_call_function_single (38,759,075 samples, 0.01%)</title><rect x="915.8" y="837" width="0.1" height="15.0" fill="rgb(227,228,38)" rx="2" ry="2" />
+<text  x="918.76" y="847.5" ></text>
+</g>
+<g >
+<title>ip_list_rcv (3,249,672,177 samples, 0.89%)</title><rect x="322.0" y="741" width="10.5" height="15.0" fill="rgb(245,33,8)" rx="2" ry="2" />
+<text  x="325.03" y="751.5" ></text>
+</g>
+<g >
+<title>tick_nohz_idle_retain_tick (32,325,121 samples, 0.01%)</title><rect x="1158.2" y="901" width="0.1" height="15.0" fill="rgb(249,55,22)" rx="2" ry="2" />
+<text  x="1161.21" y="911.5" ></text>
+</g>
+<g >
+<title>__mod_lruvec_page_state (54,656,429 samples, 0.01%)</title><rect x="389.8" y="789" width="0.2" height="15.0" fill="rgb(224,74,12)" rx="2" ry="2" />
+<text  x="392.78" y="799.5" ></text>
+</g>
+<g >
+<title>uncharge_folio (84,531,448 samples, 0.02%)</title><rect x="357.7" y="837" width="0.2" height="15.0" fill="rgb(233,3,9)" rx="2" ry="2" />
+<text  x="360.67" y="847.5" ></text>
+</g>
+<g >
+<title>do_futex (144,386,181 samples, 0.04%)</title><rect x="174.5" y="885" width="0.5" height="15.0" fill="rgb(243,73,29)" rx="2" ry="2" />
+<text  x="177.52" y="895.5" ></text>
+</g>
+<g >
+<title>iomap_page_create (48,181,862 samples, 0.01%)</title><rect x="713.1" y="757" width="0.2" height="15.0" fill="rgb(239,111,35)" rx="2" ry="2" />
+<text  x="716.14" y="767.5" ></text>
+</g>
+<g >
+<title>__next_timer_interrupt (70,019,179 samples, 0.02%)</title><rect x="1142.6" y="837" width="0.2" height="15.0" fill="rgb(209,184,39)" rx="2" ry="2" />
+<text  x="1145.60" y="847.5" ></text>
+</g>
+<g >
+<title>xas_start (38,296,507 samples, 0.01%)</title><rect x="712.8" y="725" width="0.1" height="15.0" fill="rgb(237,163,45)" rx="2" ry="2" />
+<text  x="715.78" y="735.5" ></text>
+</g>
+<g >
+<title>dequeue_rt_stack (100,453,608 samples, 0.03%)</title><rect x="336.2" y="869" width="0.3" height="15.0" fill="rgb(246,187,42)" rx="2" ry="2" />
+<text  x="339.17" y="879.5" ></text>
+</g>
+<g >
+<title>find_get_pages_range_tag (35,344,522 samples, 0.01%)</title><rect x="556.9" y="741" width="0.1" height="15.0" fill="rgb(243,183,30)" rx="2" ry="2" />
+<text  x="559.91" y="751.5" ></text>
+</g>
+<g >
+<title>do_sys_poll (37,908,882 samples, 0.01%)</title><rect x="298.8" y="917" width="0.1" height="15.0" fill="rgb(251,137,48)" rx="2" ry="2" />
+<text  x="301.80" y="927.5" ></text>
+</g>
+<g >
+<title>fpregs_restore_userregs (37,245,999 samples, 0.01%)</title><rect x="90.8" y="869" width="0.1" height="15.0" fill="rgb(215,79,13)" rx="2" ry="2" />
+<text  x="93.82" y="879.5" ></text>
+</g>
+<g >
+<title>__x64_sys_futex (388,678,902 samples, 0.11%)</title><rect x="291.7" y="901" width="1.2" height="15.0" fill="rgb(216,212,46)" rx="2" ry="2" />
+<text  x="294.69" y="911.5" ></text>
+</g>
+<g >
+<title>[libglamoregl.so] (62,193,945 samples, 0.02%)</title><rect x="218.0" y="853" width="0.2" height="15.0" fill="rgb(237,225,42)" rx="2" ry="2" />
+<text  x="220.96" y="863.5" ></text>
+</g>
+<g >
+<title>gmain (153,086,135 samples, 0.04%)</title><rect x="298.6" y="981" width="0.5" height="15.0" fill="rgb(215,226,33)" rx="2" ry="2" />
+<text  x="301.56" y="991.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (123,247,490 samples, 0.03%)</title><rect x="214.6" y="837" width="0.4" height="15.0" fill="rgb(241,28,10)" rx="2" ry="2" />
+<text  x="217.61" y="847.5" ></text>
+</g>
+<g >
+<title>tcp_wmem_schedule (43,059,461 samples, 0.01%)</title><rect x="665.6" y="725" width="0.1" height="15.0" fill="rgb(247,228,20)" rx="2" ry="2" />
+<text  x="668.56" y="735.5" ></text>
+</g>
+<g >
+<title>alloc_skb_with_frags (130,236,789 samples, 0.04%)</title><rect x="47.4" y="805" width="0.4" height="15.0" fill="rgb(243,52,35)" rx="2" ry="2" />
+<text  x="50.38" y="815.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (628,127,303 samples, 0.17%)</title><rect x="1163.2" y="789" width="2.0" height="15.0" fill="rgb(216,70,22)" rx="2" ry="2" />
+<text  x="1166.22" y="799.5" ></text>
+</g>
+<g >
+<title>folio_clear_dirty_for_io (141,035,624 samples, 0.04%)</title><rect x="595.4" y="757" width="0.5" height="15.0" fill="rgb(228,65,37)" rx="2" ry="2" />
+<text  x="598.45" y="767.5" ></text>
+</g>
+<g >
+<title>pick_next_task_rt (53,892,053 samples, 0.01%)</title><rect x="1150.0" y="869" width="0.2" height="15.0" fill="rgb(209,101,50)" rx="2" ry="2" />
+<text  x="1153.02" y="879.5" ></text>
+</g>
+<g >
+<title>e1000_watchdog_task (42,656,984 samples, 0.01%)</title><rect x="390.3" y="901" width="0.2" height="15.0" fill="rgb(252,132,51)" rx="2" ry="2" />
+<text  x="393.35" y="911.5" ></text>
+</g>
+<g >
+<title>malloc (32,621,457 samples, 0.01%)</title><rect x="148.5" y="933" width="0.1" height="15.0" fill="rgb(242,178,52)" rx="2" ry="2" />
+<text  x="151.49" y="943.5" ></text>
+</g>
+<g >
+<title>__libc_recvmsg (69,147,631 samples, 0.02%)</title><rect x="744.7" y="693" width="0.2" height="15.0" fill="rgb(232,142,16)" rx="2" ry="2" />
+<text  x="747.69" y="703.5" ></text>
+</g>
+<g >
+<title>__i915_vma_unbind (66,246,310 samples, 0.02%)</title><rect x="377.8" y="789" width="0.2" height="15.0" fill="rgb(236,91,19)" rx="2" ry="2" />
+<text  x="380.81" y="799.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (69,173,690 samples, 0.02%)</title><rect x="916.8" y="837" width="0.3" height="15.0" fill="rgb(220,16,50)" rx="2" ry="2" />
+<text  x="919.83" y="847.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (51,449,343 samples, 0.01%)</title><rect x="14.8" y="901" width="0.2" height="15.0" fill="rgb(208,51,52)" rx="2" ry="2" />
+<text  x="17.83" y="911.5" ></text>
+</g>
+<g >
+<title>__x64_sys_futex (74,467,772 samples, 0.02%)</title><rect x="749.1" y="661" width="0.3" height="15.0" fill="rgb(237,213,32)" rx="2" ry="2" />
+<text  x="752.14" y="671.5" ></text>
+</g>
+<g >
+<title>[bash] (78,544,057 samples, 0.02%)</title><rect x="243.4" y="805" width="0.3" height="15.0" fill="rgb(238,188,41)" rx="2" ry="2" />
+<text  x="246.42" y="815.5" ></text>
+</g>
+<g >
+<title>rmqueue_bulk (84,220,149 samples, 0.02%)</title><rect x="757.7" y="677" width="0.3" height="15.0" fill="rgb(239,101,39)" rx="2" ry="2" />
+<text  x="760.70" y="687.5" ></text>
+</g>
+<g >
+<title>kworker/7:0 (348,031,384 samples, 0.09%)</title><rect x="396.4" y="981" width="1.2" height="15.0" fill="rgb(232,192,1)" rx="2" ry="2" />
+<text  x="399.45" y="991.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (152,872,916 samples, 0.04%)</title><rect x="1177.9" y="261" width="0.5" height="15.0" fill="rgb(213,26,40)" rx="2" ry="2" />
+<text  x="1180.92" y="271.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (70,373,095 samples, 0.02%)</title><rect x="744.7" y="709" width="0.2" height="15.0" fill="rgb(240,20,51)" rx="2" ry="2" />
+<text  x="747.68" y="719.5" ></text>
+</g>
+<g >
+<title>bdrv_co_preadv_part (3,854,687,631 samples, 1.05%)</title><rect x="736.2" y="885" width="12.4" height="15.0" fill="rgb(223,170,49)" rx="2" ry="2" />
+<text  x="739.21" y="895.5" ></text>
+</g>
+<g >
+<title>__mod_memcg_lruvec_state (37,892,557 samples, 0.01%)</title><rect x="758.8" y="693" width="0.2" height="15.0" fill="rgb(235,193,39)" rx="2" ry="2" />
+<text  x="761.85" y="703.5" ></text>
+</g>
+<g >
+<title>__GI___pthread_cond_wait (205,498,233 samples, 0.06%)</title><rect x="149.0" y="933" width="0.7" height="15.0" fill="rgb(225,223,4)" rx="2" ry="2" />
+<text  x="152.04" y="943.5" ></text>
+</g>
+<g >
+<title>syscall_return_via_sysret (233,720,946 samples, 0.06%)</title><rect x="242.5" y="965" width="0.8" height="15.0" fill="rgb(253,25,39)" rx="2" ry="2" />
+<text  x="245.52" y="975.5" ></text>
+</g>
+<g >
+<title>__x64_sys_poll (272,687,064 samples, 0.07%)</title><rect x="97.7" y="869" width="0.9" height="15.0" fill="rgb(212,26,42)" rx="2" ry="2" />
+<text  x="100.69" y="879.5" ></text>
+</g>
+<g >
+<title>__sys_sendto (953,054,401 samples, 0.26%)</title><rect x="622.9" y="613" width="3.1" height="15.0" fill="rgb(240,225,19)" rx="2" ry="2" />
+<text  x="625.94" y="623.5" ></text>
+</g>
+<g >
+<title>lzogeneric1x_1_compress (67,669,502 samples, 0.02%)</title><rect x="369.5" y="741" width="0.2" height="15.0" fill="rgb(235,25,41)" rx="2" ry="2" />
+<text  x="372.50" y="751.5" ></text>
+</g>
+<g >
+<title>find_get_pages_range_tag (64,266,002 samples, 0.02%)</title><rect x="460.5" y="741" width="0.2" height="15.0" fill="rgb(246,132,28)" rx="2" ry="2" />
+<text  x="463.46" y="751.5" ></text>
+</g>
+<g >
+<title>__GI___ioctl (87,647,996 samples, 0.02%)</title><rect x="142.9" y="869" width="0.3" height="15.0" fill="rgb(245,15,48)" rx="2" ry="2" />
+<text  x="145.94" y="879.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (36,006,139 samples, 0.01%)</title><rect x="748.7" y="885" width="0.1" height="15.0" fill="rgb(249,182,28)" rx="2" ry="2" />
+<text  x="751.66" y="895.5" ></text>
+</g>
+<g >
+<title>ct_nmi_exit (40,790,496 samples, 0.01%)</title><rect x="898.3" y="837" width="0.1" height="15.0" fill="rgb(216,1,0)" rx="2" ry="2" />
+<text  x="901.30" y="847.5" ></text>
+</g>
+<g >
+<title>iwl_mvm_set_tx_params (40,399,516 samples, 0.01%)</title><rect x="624.2" y="325" width="0.1" height="15.0" fill="rgb(246,12,3)" rx="2" ry="2" />
+<text  x="627.15" y="335.5" ></text>
+</g>
+<g >
+<title>__vfprintf_internal (43,607,172 samples, 0.01%)</title><rect x="626.2" y="645" width="0.2" height="15.0" fill="rgb(226,107,17)" rx="2" ry="2" />
+<text  x="629.21" y="655.5" ></text>
+</g>
+<g >
+<title>___pthread_mutex_lock (47,092,434 samples, 0.01%)</title><rect x="51.8" y="933" width="0.2" height="15.0" fill="rgb(237,141,48)" rx="2" ry="2" />
+<text  x="54.83" y="943.5" ></text>
+</g>
+<g >
+<title>__handle_mm_fault (33,854,232 samples, 0.01%)</title><rect x="748.4" y="437" width="0.1" height="15.0" fill="rgb(241,148,44)" rx="2" ry="2" />
+<text  x="751.38" y="447.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (2,721,534,597 samples, 0.74%)</title><rect x="598.8" y="853" width="8.8" height="15.0" fill="rgb(241,48,49)" rx="2" ry="2" />
+<text  x="601.84" y="863.5" ></text>
+</g>
+<g >
+<title>drm_ioctl (1,879,382,317 samples, 0.51%)</title><rect x="231.4" y="917" width="6.1" height="15.0" fill="rgb(232,63,42)" rx="2" ry="2" />
+<text  x="234.41" y="927.5" ></text>
+</g>
+<g >
+<title>intel_gt_invalidate_tlb (58,334,235 samples, 0.02%)</title><rect x="373.9" y="789" width="0.2" height="15.0" fill="rgb(214,181,5)" rx="2" ry="2" />
+<text  x="376.91" y="799.5" ></text>
+</g>
+<g >
+<title>sprintf (178,350,060 samples, 0.05%)</title><rect x="313.5" y="645" width="0.6" height="15.0" fill="rgb(211,49,50)" rx="2" ry="2" />
+<text  x="316.51" y="655.5" ></text>
+</g>
+<g >
+<title>skcipher_walk_done (47,158,329 samples, 0.01%)</title><rect x="470.8" y="821" width="0.1" height="15.0" fill="rgb(210,160,20)" rx="2" ry="2" />
+<text  x="473.80" y="831.5" ></text>
+</g>
+<g >
+<title>skb_copy_datagram_iter (48,923,560 samples, 0.01%)</title><rect x="229.1" y="837" width="0.1" height="15.0" fill="rgb(223,23,39)" rx="2" ry="2" />
+<text  x="232.08" y="847.5" ></text>
+</g>
+<g >
+<title>mwait_idle_with_hints.constprop.0 (1,043,805,847 samples, 0.28%)</title><rect x="835.4" y="821" width="3.4" height="15.0" fill="rgb(209,209,15)" rx="2" ry="2" />
+<text  x="838.40" y="831.5" ></text>
+</g>
+<g >
+<title>sock_sendmsg (105,900,613 samples, 0.03%)</title><rect x="266.6" y="853" width="0.3" height="15.0" fill="rgb(244,136,25)" rx="2" ry="2" />
+<text  x="269.60" y="863.5" ></text>
+</g>
+<g >
+<title>__libc_recvmsg (56,290,394 samples, 0.02%)</title><rect x="277.4" y="773" width="0.2" height="15.0" fill="rgb(210,194,39)" rx="2" ry="2" />
+<text  x="280.39" y="783.5" ></text>
+</g>
+<g >
+<title>syscall_return_via_sysret (191,575,947 samples, 0.05%)</title><rect x="724.0" y="869" width="0.6" height="15.0" fill="rgb(224,194,21)" rx="2" ry="2" />
+<text  x="726.96" y="879.5" ></text>
+</g>
+<g >
+<title>update_sd_lb_stats.constprop.0 (31,186,038 samples, 0.01%)</title><rect x="13.6" y="709" width="0.1" height="15.0" fill="rgb(233,184,26)" rx="2" ry="2" />
+<text  x="16.64" y="719.5" ></text>
+</g>
+<g >
+<title>drm_ioctl (121,652,439 samples, 0.03%)</title><rect x="134.3" y="773" width="0.4" height="15.0" fill="rgb(228,124,42)" rx="2" ry="2" />
+<text  x="137.33" y="783.5" ></text>
+</g>
+<g >
+<title>pick_next_task_fair (101,052,878 samples, 0.03%)</title><rect x="230.5" y="853" width="0.3" height="15.0" fill="rgb(227,60,50)" rx="2" ry="2" />
+<text  x="233.50" y="863.5" ></text>
+</g>
+<g >
+<title>crypt_convert (5,958,694,950 samples, 1.63%)</title><rect x="503.3" y="885" width="19.2" height="15.0" fill="rgb(252,45,3)" rx="2" ry="2" />
+<text  x="506.28" y="895.5" ></text>
+</g>
+<g >
+<title>__filemap_remove_folio (1,320,534,750 samples, 0.36%)</title><rect x="358.7" y="837" width="4.2" height="15.0" fill="rgb(250,35,38)" rx="2" ry="2" />
+<text  x="361.67" y="847.5" ></text>
+</g>
+<g >
+<title>[libcurl.so.4.8.0] (108,373,762 samples, 0.03%)</title><rect x="667.9" y="725" width="0.3" height="15.0" fill="rgb(227,121,8)" rx="2" ry="2" />
+<text  x="670.86" y="735.5" ></text>
+</g>
+<g >
+<title>zero_user_segments (126,047,536 samples, 0.03%)</title><rect x="713.3" y="757" width="0.4" height="15.0" fill="rgb(209,65,34)" rx="2" ry="2" />
+<text  x="716.29" y="767.5" ></text>
+</g>
+<g >
+<title>execute_variable_command (79,536,539 samples, 0.02%)</title><rect x="243.4" y="853" width="0.3" height="15.0" fill="rgb(250,223,41)" rx="2" ry="2" />
+<text  x="246.42" y="863.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (50,185,517 samples, 0.01%)</title><rect x="136.1" y="853" width="0.2" height="15.0" fill="rgb(212,14,7)" rx="2" ry="2" />
+<text  x="139.09" y="863.5" ></text>
+</g>
+<g >
+<title>inet6_csk_xmit (1,144,381,308 samples, 0.31%)</title><rect x="739.9" y="485" width="3.7" height="15.0" fill="rgb(251,55,49)" rx="2" ry="2" />
+<text  x="742.94" y="495.5" ></text>
+</g>
+<g >
+<title>[libxcb.so.1.1.0] (527,758,101 samples, 0.14%)</title><rect x="19.0" y="869" width="1.7" height="15.0" fill="rgb(222,0,11)" rx="2" ry="2" />
+<text  x="22.00" y="879.5" ></text>
+</g>
+<g >
+<title>rcu_note_context_switch (131,432,662 samples, 0.04%)</title><rect x="1152.2" y="869" width="0.4" height="15.0" fill="rgb(248,32,14)" rx="2" ry="2" />
+<text  x="1155.20" y="879.5" ></text>
+</g>
+<g >
+<title>skcipher_walk_virt (269,795,619 samples, 0.07%)</title><rect x="451.4" y="821" width="0.9" height="15.0" fill="rgb(221,51,16)" rx="2" ry="2" />
+<text  x="454.44" y="831.5" ></text>
+</g>
+<g >
+<title>__sendmsg (1,527,450,436 samples, 0.42%)</title><rect x="739.4" y="677" width="4.9" height="15.0" fill="rgb(207,10,23)" rx="2" ry="2" />
+<text  x="742.40" y="687.5" ></text>
+</g>
+<g >
+<title>___sys_recvmsg (97,586,461 samples, 0.03%)</title><rect x="280.1" y="709" width="0.3" height="15.0" fill="rgb(217,64,26)" rx="2" ry="2" />
+<text  x="283.12" y="719.5" ></text>
+</g>
+<g >
+<title>inet6_recvmsg (114,908,826 samples, 0.03%)</title><rect x="737.0" y="613" width="0.4" height="15.0" fill="rgb(220,52,41)" rx="2" ry="2" />
+<text  x="740.04" y="623.5" ></text>
+</g>
+<g >
+<title>drm_syncobj_array_wait.constprop.0 (77,199,421 samples, 0.02%)</title><rect x="1163.7" y="533" width="0.2" height="15.0" fill="rgb(237,72,4)" rx="2" ry="2" />
+<text  x="1166.68" y="543.5" ></text>
+</g>
+<g >
+<title>update_rq_clock (66,157,073 samples, 0.02%)</title><rect x="912.1" y="725" width="0.3" height="15.0" fill="rgb(231,56,49)" rx="2" ry="2" />
+<text  x="915.15" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (344,852,542 samples, 0.09%)</title><rect x="132.8" y="773" width="1.1" height="15.0" fill="rgb(219,18,20)" rx="2" ry="2" />
+<text  x="135.76" y="783.5" ></text>
+</g>
+<g >
+<title>crypt_page_alloc (202,148,702 samples, 0.06%)</title><rect x="437.1" y="869" width="0.6" height="15.0" fill="rgb(240,221,41)" rx="2" ry="2" />
+<text  x="440.07" y="879.5" ></text>
+</g>
+<g >
+<title>try_to_wake_up (41,607,334 samples, 0.01%)</title><rect x="749.2" y="597" width="0.2" height="15.0" fill="rgb(246,171,35)" rx="2" ry="2" />
+<text  x="752.24" y="607.5" ></text>
+</g>
+<g >
+<title>xfs_vm_writepages (866,940,717 samples, 0.24%)</title><rect x="457.9" y="805" width="2.8" height="15.0" fill="rgb(211,67,29)" rx="2" ry="2" />
+<text  x="460.88" y="815.5" ></text>
+</g>
+<g >
+<title>[libgl_plugin.so] (1,180,980,057 samples, 0.32%)</title><rect x="1162.8" y="885" width="3.8" height="15.0" fill="rgb(250,1,38)" rx="2" ry="2" />
+<text  x="1165.77" y="895.5" ></text>
+</g>
+<g >
+<title>__mem_cgroup_flush_stats (142,329,489 samples, 0.04%)</title><rect x="751.2" y="709" width="0.5" height="15.0" fill="rgb(223,155,48)" rx="2" ry="2" />
+<text  x="754.21" y="719.5" ></text>
+</g>
+<g >
+<title>gtk_container_propagate_draw (821,709,152 samples, 0.22%)</title><rect x="1171.5" y="661" width="2.6" height="15.0" fill="rgb(206,185,38)" rx="2" ry="2" />
+<text  x="1174.50" y="671.5" ></text>
+</g>
+<g >
+<title>vfs_writev (359,011,866 samples, 0.10%)</title><rect x="19.2" y="757" width="1.1" height="15.0" fill="rgb(252,76,48)" rx="2" ry="2" />
+<text  x="22.17" y="767.5" ></text>
+</g>
+<g >
+<title>moz_xmalloc (84,272,225 samples, 0.02%)</title><rect x="24.5" y="949" width="0.3" height="15.0" fill="rgb(226,167,27)" rx="2" ry="2" />
+<text  x="27.51" y="959.5" ></text>
+</g>
+<g >
+<title>worker_thread (7,178,834,401 samples, 1.96%)</title><rect x="534.0" y="933" width="23.1" height="15.0" fill="rgb(252,113,25)" rx="2" ry="2" />
+<text  x="536.96" y="943.5" >w..</text>
+</g>
+<g >
+<title>rs_drv_get_rate (37,671,570 samples, 0.01%)</title><rect x="633.1" y="357" width="0.2" height="15.0" fill="rgb(205,5,30)" rx="2" ry="2" />
+<text  x="636.15" y="367.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (812,088,878 samples, 0.22%)</title><rect x="1171.5" y="549" width="2.6" height="15.0" fill="rgb(208,21,40)" rx="2" ry="2" />
+<text  x="1174.51" y="559.5" ></text>
+</g>
+<g >
+<title>need_update (299,975,935 samples, 0.08%)</title><rect x="1160.3" y="853" width="1.0" height="15.0" fill="rgb(236,212,21)" rx="2" ry="2" />
+<text  x="1163.34" y="863.5" ></text>
+</g>
+<g >
+<title>mod_lruvec_page_state (85,722,669 samples, 0.02%)</title><rect x="478.1" y="725" width="0.3" height="15.0" fill="rgb(254,222,52)" rx="2" ry="2" />
+<text  x="481.14" y="735.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (36,574,202 samples, 0.01%)</title><rect x="748.4" y="485" width="0.1" height="15.0" fill="rgb(217,135,28)" rx="2" ry="2" />
+<text  x="751.38" y="495.5" ></text>
+</g>
+<g >
+<title>__GI___isoc99_sscanf (139,478,230 samples, 0.04%)</title><rect x="642.2" y="725" width="0.4" height="15.0" fill="rgb(253,184,27)" rx="2" ry="2" />
+<text  x="645.15" y="735.5" ></text>
+</g>
+<g >
+<title>__tcp_send_ack.part.0 (132,339,690 samples, 0.04%)</title><rect x="629.4" y="565" width="0.5" height="15.0" fill="rgb(238,223,28)" rx="2" ry="2" />
+<text  x="632.43" y="575.5" ></text>
+</g>
+<g >
+<title>fw_domains_get_with_fallback (39,640,841 samples, 0.01%)</title><rect x="232.3" y="581" width="0.1" height="15.0" fill="rgb(254,35,28)" rx="2" ry="2" />
+<text  x="235.29" y="591.5" ></text>
+</g>
+<g >
+<title>blk_mq_end_request_batch (50,234,360 samples, 0.01%)</title><rect x="384.2" y="677" width="0.2" height="15.0" fill="rgb(206,198,48)" rx="2" ry="2" />
+<text  x="387.23" y="687.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_one_core (613,078,999 samples, 0.17%)</title><rect x="740.6" y="325" width="2.0" height="15.0" fill="rgb(237,149,29)" rx="2" ry="2" />
+<text  x="743.60" y="335.5" ></text>
+</g>
+<g >
+<title>g_mutex_unlock (39,304,600 samples, 0.01%)</title><rect x="102.4" y="917" width="0.1" height="15.0" fill="rgb(221,176,44)" rx="2" ry="2" />
+<text  x="105.41" y="927.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (40,574,225 samples, 0.01%)</title><rect x="716.3" y="677" width="0.1" height="15.0" fill="rgb(230,35,32)" rx="2" ry="2" />
+<text  x="719.26" y="687.5" ></text>
+</g>
+<g >
+<title>dev_hard_start_xmit (108,561,589 samples, 0.03%)</title><rect x="325.5" y="565" width="0.4" height="15.0" fill="rgb(232,209,49)" rx="2" ry="2" />
+<text  x="328.51" y="575.5" ></text>
+</g>
+<g >
+<title>pixman_edge_init (32,879,902 samples, 0.01%)</title><rect x="218.5" y="885" width="0.1" height="15.0" fill="rgb(226,162,29)" rx="2" ry="2" />
+<text  x="221.48" y="895.5" ></text>
+</g>
+<g >
+<title>g_mutex_lock (31,602,853 samples, 0.01%)</title><rect x="100.8" y="901" width="0.1" height="15.0" fill="rgb(220,15,19)" rx="2" ry="2" />
+<text  x="103.76" y="911.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (308,694,199 samples, 0.08%)</title><rect x="724.7" y="869" width="1.0" height="15.0" fill="rgb(236,158,30)" rx="2" ry="2" />
+<text  x="727.71" y="879.5" ></text>
+</g>
+<g >
+<title>mem_cgroup_css_rstat_flush (912,050,564 samples, 0.25%)</title><rect x="675.5" y="677" width="2.9" height="15.0" fill="rgb(210,227,46)" rx="2" ry="2" />
+<text  x="678.49" y="687.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (360,042,709 samples, 0.10%)</title><rect x="1178.7" y="789" width="1.2" height="15.0" fill="rgb(240,144,37)" rx="2" ry="2" />
+<text  x="1181.73" y="799.5" ></text>
+</g>
+<g >
+<title>intel_prepare_plane_fb (59,895,458 samples, 0.02%)</title><rect x="232.2" y="821" width="0.2" height="15.0" fill="rgb(247,20,25)" rx="2" ry="2" />
+<text  x="235.24" y="831.5" ></text>
+</g>
+<g >
+<title>ksys_write (632,777,753 samples, 0.17%)</title><rect x="29.6" y="901" width="2.0" height="15.0" fill="rgb(226,135,54)" rx="2" ry="2" />
+<text  x="32.56" y="911.5" ></text>
+</g>
+<g >
+<title>__mod_lruvec_state (136,310,792 samples, 0.04%)</title><rect x="702.4" y="677" width="0.5" height="15.0" fill="rgb(252,178,24)" rx="2" ry="2" />
+<text  x="705.44" y="687.5" ></text>
+</g>
+<g >
+<title>dequeue_task_fair (77,817,515 samples, 0.02%)</title><rect x="230.2" y="853" width="0.3" height="15.0" fill="rgb(218,68,8)" rx="2" ry="2" />
+<text  x="233.21" y="863.5" ></text>
+</g>
+<g >
+<title>__GI___lll_lock_wake (70,065,684 samples, 0.02%)</title><rect x="14.8" y="917" width="0.2" height="15.0" fill="rgb(224,124,53)" rx="2" ry="2" />
+<text  x="17.82" y="927.5" ></text>
+</g>
+<g >
+<title>[libX11.so.6.4.0] (117,272,470 samples, 0.03%)</title><rect x="277.3" y="837" width="0.4" height="15.0" fill="rgb(227,135,21)" rx="2" ry="2" />
+<text  x="280.32" y="847.5" ></text>
+</g>
+<g >
+<title>[firefox] (31,855,529 samples, 0.01%)</title><rect x="148.3" y="917" width="0.1" height="15.0" fill="rgb(243,229,5)" rx="2" ry="2" />
+<text  x="151.27" y="927.5" ></text>
+</g>
+<g >
+<title>[libxul.so] (2,485,019,052 samples, 0.68%)</title><rect x="17.6" y="965" width="8.0" height="15.0" fill="rgb(216,197,27)" rx="2" ry="2" />
+<text  x="20.57" y="975.5" ></text>
+</g>
+<g >
+<title>ConfigureWindow (78,957,358 samples, 0.02%)</title><rect x="203.5" y="933" width="0.3" height="15.0" fill="rgb(252,47,22)" rx="2" ry="2" />
+<text  x="206.52" y="943.5" ></text>
+</g>
+<g >
+<title>[firefox] (104,388,226 samples, 0.03%)</title><rect x="291.2" y="933" width="0.3" height="15.0" fill="rgb(237,199,54)" rx="2" ry="2" />
+<text  x="294.16" y="943.5" ></text>
+</g>
+<g >
+<title>___sys_recvmsg (32,456,378 samples, 0.01%)</title><rect x="1182.5" y="917" width="0.1" height="15.0" fill="rgb(234,13,15)" rx="2" ry="2" />
+<text  x="1185.46" y="927.5" ></text>
+</g>
+<g >
+<title>xfs_end_io (180,063,603 samples, 0.05%)</title><rect x="397.6" y="901" width="0.6" height="15.0" fill="rgb(205,181,45)" rx="2" ry="2" />
+<text  x="400.65" y="911.5" ></text>
+</g>
+<g >
+<title>[unknown] (682,606,153 samples, 0.19%)</title><rect x="157.4" y="965" width="2.2" height="15.0" fill="rgb(237,54,33)" rx="2" ry="2" />
+<text  x="160.41" y="975.5" ></text>
+</g>
+<g >
+<title>[firefox] (46,303,869 samples, 0.01%)</title><rect x="269.3" y="933" width="0.2" height="15.0" fill="rgb(250,182,17)" rx="2" ry="2" />
+<text  x="272.33" y="943.5" ></text>
+</g>
+<g >
+<title>___pthread_mutex_lock (64,918,697 samples, 0.02%)</title><rect x="268.9" y="933" width="0.2" height="15.0" fill="rgb(221,126,51)" rx="2" ry="2" />
+<text  x="271.87" y="943.5" ></text>
+</g>
+<g >
+<title>[libwnck-3.so.0.3.0] (342,351,702 samples, 0.09%)</title><rect x="1173.0" y="501" width="1.1" height="15.0" fill="rgb(213,126,33)" rx="2" ry="2" />
+<text  x="1176.02" y="511.5" ></text>
+</g>
+<g >
+<title>syscall_return_via_sysret (38,756,364 samples, 0.01%)</title><rect x="86.9" y="933" width="0.1" height="15.0" fill="rgb(244,227,11)" rx="2" ry="2" />
+<text  x="89.87" y="943.5" ></text>
+</g>
+<g >
+<title>handle_request (12,793,793,680 samples, 3.49%)</title><rect x="616.7" y="885" width="41.2" height="15.0" fill="rgb(223,227,27)" rx="2" ry="2" />
+<text  x="619.72" y="895.5" >han..</text>
+</g>
+<g >
+<title>__netif_receive_skb_core.constprop.0 (74,564,781 samples, 0.02%)</title><rect x="321.8" y="741" width="0.2" height="15.0" fill="rgb(249,38,42)" rx="2" ry="2" />
+<text  x="324.79" y="751.5" ></text>
+</g>
+<g >
+<title>xfs_vm_writepages (459,318,962 samples, 0.13%)</title><rect x="418.7" y="805" width="1.4" height="15.0" fill="rgb(254,216,4)" rx="2" ry="2" />
+<text  x="421.66" y="815.5" ></text>
+</g>
+<g >
+<title>__writeback_single_inode (556,508,561 samples, 0.15%)</title><rect x="595.3" y="837" width="1.8" height="15.0" fill="rgb(213,68,24)" rx="2" ry="2" />
+<text  x="598.32" y="847.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (81,974,358 samples, 0.02%)</title><rect x="173.7" y="917" width="0.2" height="15.0" fill="rgb(252,20,54)" rx="2" ry="2" />
+<text  x="176.67" y="927.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (4,809,878,332 samples, 1.31%)</title><rect x="505.2" y="869" width="15.5" height="15.0" fill="rgb(242,3,8)" rx="2" ry="2" />
+<text  x="508.18" y="879.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (5,347,623,718 samples, 1.46%)</title><rect x="124.8" y="933" width="17.2" height="15.0" fill="rgb(237,97,17)" rx="2" ry="2" />
+<text  x="127.81" y="943.5" ></text>
+</g>
+<g >
+<title>__sys_recvmsg (145,779,470 samples, 0.04%)</title><rect x="748.1" y="661" width="0.4" height="15.0" fill="rgb(220,185,47)" rx="2" ry="2" />
+<text  x="751.05" y="671.5" ></text>
+</g>
+<g >
+<title>[libgdk-3.so.0.2404.30] (31,982,096 samples, 0.01%)</title><rect x="1171.4" y="853" width="0.1" height="15.0" fill="rgb(245,200,31)" rx="2" ry="2" />
+<text  x="1174.37" y="863.5" ></text>
+</g>
+<g >
+<title>tick_nohz_idle_exit (74,839,832 samples, 0.02%)</title><rect x="884.8" y="869" width="0.2" height="15.0" fill="rgb(249,165,17)" rx="2" ry="2" />
+<text  x="887.80" y="879.5" ></text>
+</g>
+<g >
+<title>[libglib-2.0.so.0.7303.0] (66,760,770 samples, 0.02%)</title><rect x="1187.1" y="725" width="0.2" height="15.0" fill="rgb(233,100,10)" rx="2" ry="2" />
+<text  x="1190.12" y="735.5" ></text>
+</g>
+<g >
+<title>enqueue_hrtimer (158,314,589 samples, 0.04%)</title><rect x="1157.4" y="853" width="0.5" height="15.0" fill="rgb(208,8,24)" rx="2" ry="2" />
+<text  x="1160.43" y="863.5" ></text>
+</g>
+<g >
+<title>kthread (203,558,356 samples, 0.06%)</title><rect x="397.6" y="949" width="0.6" height="15.0" fill="rgb(241,202,31)" rx="2" ry="2" />
+<text  x="400.59" y="959.5" ></text>
+</g>
+<g >
+<title>kernel_fpu_begin_mask (194,290,082 samples, 0.05%)</title><rect x="492.6" y="821" width="0.6" height="15.0" fill="rgb(238,130,44)" rx="2" ry="2" />
+<text  x="495.59" y="831.5" ></text>
+</g>
+<g >
+<title>start_thread (21,288,899,205 samples, 5.81%)</title><rect x="750.3" y="949" width="68.5" height="15.0" fill="rgb(216,171,41)" rx="2" ry="2" />
+<text  x="753.31" y="959.5" >start_t..</text>
+</g>
+<g >
+<title>__x64_sys_futex (41,598,750 samples, 0.01%)</title><rect x="1166.7" y="837" width="0.2" height="15.0" fill="rgb(244,70,40)" rx="2" ry="2" />
+<text  x="1169.72" y="847.5" ></text>
+</g>
+<g >
+<title>ksys_read (409,169,905 samples, 0.11%)</title><rect x="91.5" y="901" width="1.3" height="15.0" fill="rgb(230,207,33)" rx="2" ry="2" />
+<text  x="94.46" y="911.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_apic_timer_interrupt (39,716,126 samples, 0.01%)</title><rect x="1126.9" y="885" width="0.2" height="15.0" fill="rgb(222,85,30)" rx="2" ry="2" />
+<text  x="1129.94" y="895.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_apic_timer_interrupt (44,072,227 samples, 0.01%)</title><rect x="170.7" y="949" width="0.2" height="15.0" fill="rgb(249,70,42)" rx="2" ry="2" />
+<text  x="173.72" y="959.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (301,281,140 samples, 0.08%)</title><rect x="240.7" y="933" width="1.0" height="15.0" fill="rgb(253,17,47)" rx="2" ry="2" />
+<text  x="243.74" y="943.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (115,661,137 samples, 0.03%)</title><rect x="829.6" y="965" width="0.4" height="15.0" fill="rgb(239,100,30)" rx="2" ry="2" />
+<text  x="832.64" y="975.5" ></text>
+</g>
+<g >
+<title>kernel_fpu_begin_mask (157,853,258 samples, 0.04%)</title><rect x="430.6" y="821" width="0.5" height="15.0" fill="rgb(230,141,31)" rx="2" ry="2" />
+<text  x="433.61" y="831.5" ></text>
+</g>
+<g >
+<title>ktime_get (69,748,245 samples, 0.02%)</title><rect x="1154.3" y="885" width="0.2" height="15.0" fill="rgb(248,141,45)" rx="2" ry="2" />
+<text  x="1157.31" y="895.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (68,710,258 samples, 0.02%)</title><rect x="143.0" y="837" width="0.2" height="15.0" fill="rgb(236,90,51)" rx="2" ry="2" />
+<text  x="145.97" y="847.5" ></text>
+</g>
+<g >
+<title>[libpipewire-0.3.so.0.358.0] (627,876,032 samples, 0.17%)</title><rect x="729.1" y="933" width="2.0" height="15.0" fill="rgb(206,180,51)" rx="2" ry="2" />
+<text  x="732.07" y="943.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (115,324,816 samples, 0.03%)</title><rect x="200.6" y="837" width="0.4" height="15.0" fill="rgb(238,174,34)" rx="2" ry="2" />
+<text  x="203.61" y="847.5" ></text>
+</g>
+<g >
+<title>schedule (197,587,381 samples, 0.05%)</title><rect x="158.5" y="789" width="0.6" height="15.0" fill="rgb(233,21,51)" rx="2" ry="2" />
+<text  x="161.49" y="799.5" ></text>
+</g>
+<g >
+<title>__filemap_remove_folio (78,215,969 samples, 0.02%)</title><rect x="378.4" y="741" width="0.2" height="15.0" fill="rgb(232,163,14)" rx="2" ry="2" />
+<text  x="381.40" y="751.5" ></text>
+</g>
+<g >
+<title>__mem_cgroup_charge (43,278,532 samples, 0.01%)</title><rect x="236.8" y="773" width="0.2" height="15.0" fill="rgb(233,54,15)" rx="2" ry="2" />
+<text  x="239.82" y="783.5" ></text>
+</g>
+<g >
+<title>__GI___ioctl (63,670,415 samples, 0.02%)</title><rect x="132.0" y="757" width="0.2" height="15.0" fill="rgb(209,64,31)" rx="2" ry="2" />
+<text  x="134.97" y="767.5" ></text>
+</g>
+<g >
+<title>__libc_recvmsg (35,859,125 samples, 0.01%)</title><rect x="132.5" y="741" width="0.1" height="15.0" fill="rgb(210,96,17)" rx="2" ry="2" />
+<text  x="135.52" y="751.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (167,371,998 samples, 0.05%)</title><rect x="197.7" y="949" width="0.5" height="15.0" fill="rgb(234,134,33)" rx="2" ry="2" />
+<text  x="200.65" y="959.5" ></text>
+</g>
+<g >
+<title>radix_tree_next_chunk (138,680,501 samples, 0.04%)</title><rect x="381.3" y="789" width="0.5" height="15.0" fill="rgb(218,193,54)" rx="2" ry="2" />
+<text  x="384.34" y="799.5" ></text>
+</g>
+<g >
+<title>[libcurl.so.4.8.0] (87,976,672 samples, 0.02%)</title><rect x="284.8" y="741" width="0.2" height="15.0" fill="rgb(249,69,44)" rx="2" ry="2" />
+<text  x="287.75" y="751.5" ></text>
+</g>
+<g >
+<title>__folio_alloc (52,571,768 samples, 0.01%)</title><rect x="237.3" y="741" width="0.1" height="15.0" fill="rgb(208,154,54)" rx="2" ry="2" />
+<text  x="240.26" y="751.5" ></text>
+</g>
+<g >
+<title>__schedule (34,542,950 samples, 0.01%)</title><rect x="1170.7" y="869" width="0.1" height="15.0" fill="rgb(238,121,13)" rx="2" ry="2" />
+<text  x="1173.68" y="879.5" ></text>
+</g>
+<g >
+<title>dev_hard_start_xmit (51,883,223 samples, 0.01%)</title><rect x="660.1" y="597" width="0.2" height="15.0" fill="rgb(214,209,44)" rx="2" ry="2" />
+<text  x="663.14" y="607.5" ></text>
+</g>
+<g >
+<title>security_socket_recvmsg (86,132,981 samples, 0.02%)</title><rect x="39.1" y="821" width="0.3" height="15.0" fill="rgb(213,174,35)" rx="2" ry="2" />
+<text  x="42.11" y="831.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_safe_stack (50,401,602 samples, 0.01%)</title><rect x="667.6" y="965" width="0.1" height="15.0" fill="rgb(242,167,49)" rx="2" ry="2" />
+<text  x="670.57" y="975.5" ></text>
+</g>
+<g >
+<title>arch_cpu_idle_enter (247,998,552 samples, 0.07%)</title><rect x="887.0" y="901" width="0.8" height="15.0" fill="rgb(239,112,5)" rx="2" ry="2" />
+<text  x="890.02" y="911.5" ></text>
+</g>
+<g >
+<title>filemap_remove_folio (92,999,997 samples, 0.03%)</title><rect x="378.4" y="757" width="0.3" height="15.0" fill="rgb(205,204,10)" rx="2" ry="2" />
+<text  x="381.39" y="767.5" ></text>
+</g>
+<g >
+<title>sk_filter_trim_cap (118,104,052 samples, 0.03%)</title><rect x="324.8" y="645" width="0.4" height="15.0" fill="rgb(237,131,53)" rx="2" ry="2" />
+<text  x="327.77" y="655.5" ></text>
+</g>
+<g >
+<title>sock_alloc_send_pskb (41,123,201 samples, 0.01%)</title><rect x="93.7" y="821" width="0.2" height="15.0" fill="rgb(236,227,13)" rx="2" ry="2" />
+<text  x="96.73" y="831.5" ></text>
+</g>
+<g >
+<title>poll_freewait (74,033,475 samples, 0.02%)</title><rect x="727.3" y="869" width="0.2" height="15.0" fill="rgb(244,175,25)" rx="2" ry="2" />
+<text  x="730.29" y="879.5" ></text>
+</g>
+<g >
+<title>hrtimer_get_next_event (162,930,193 samples, 0.04%)</title><rect x="1143.2" y="837" width="0.6" height="15.0" fill="rgb(252,92,2)" rx="2" ry="2" />
+<text  x="1146.23" y="847.5" ></text>
+</g>
+<g >
+<title>memcpy_erms (88,396,347 samples, 0.02%)</title><rect x="593.7" y="869" width="0.2" height="15.0" fill="rgb(205,112,23)" rx="2" ry="2" />
+<text  x="596.65" y="879.5" ></text>
+</g>
+<g >
+<title>folio_alloc (2,279,036,567 samples, 0.62%)</title><rect x="704.6" y="741" width="7.4" height="15.0" fill="rgb(240,65,34)" rx="2" ry="2" />
+<text  x="707.65" y="751.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (78,076,029 samples, 0.02%)</title><rect x="1162.2" y="965" width="0.3" height="15.0" fill="rgb(242,136,11)" rx="2" ry="2" />
+<text  x="1165.21" y="975.5" ></text>
+</g>
+<g >
+<title>__schedule (131,856,815 samples, 0.04%)</title><rect x="149.2" y="789" width="0.4" height="15.0" fill="rgb(251,56,38)" rx="2" ry="2" />
+<text  x="152.15" y="799.5" ></text>
+</g>
+<g >
+<title>irq_work_run (44,331,048 samples, 0.01%)</title><rect x="232.3" y="693" width="0.1" height="15.0" fill="rgb(236,5,28)" rx="2" ry="2" />
+<text  x="235.27" y="703.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free_bulk.part.0 (49,441,895 samples, 0.01%)</title><rect x="309.4" y="725" width="0.1" height="15.0" fill="rgb(209,42,19)" rx="2" ry="2" />
+<text  x="312.38" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (2,118,599,164 samples, 0.58%)</title><rect x="649.9" y="693" width="6.8" height="15.0" fill="rgb(234,97,13)" rx="2" ry="2" />
+<text  x="652.90" y="703.5" ></text>
+</g>
+<g >
+<title>__update_load_avg_se (85,375,001 samples, 0.02%)</title><rect x="1130.5" y="789" width="0.3" height="15.0" fill="rgb(232,12,40)" rx="2" ry="2" />
+<text  x="1133.48" y="799.5" ></text>
+</g>
+<g >
+<title>__x64_sys_ioctl (250,897,288 samples, 0.07%)</title><rect x="144.1" y="757" width="0.8" height="15.0" fill="rgb(253,39,46)" rx="2" ry="2" />
+<text  x="147.05" y="767.5" ></text>
+</g>
+<g >
+<title>__sendmsg (796,520,947 samples, 0.22%)</title><rect x="46.7" y="949" width="2.5" height="15.0" fill="rgb(250,31,16)" rx="2" ry="2" />
+<text  x="49.66" y="959.5" ></text>
+</g>
+<g >
+<title>enqueue_task_fair (885,074,246 samples, 0.24%)</title><rect x="1128.0" y="837" width="2.8" height="15.0" fill="rgb(236,179,6)" rx="2" ry="2" />
+<text  x="1130.95" y="847.5" ></text>
+</g>
+<g >
+<title>xas_load (31,895,436 samples, 0.01%)</title><rect x="573.7" y="725" width="0.1" height="15.0" fill="rgb(232,177,50)" rx="2" ry="2" />
+<text  x="576.71" y="735.5" ></text>
+</g>
+<g >
+<title>iwl_pcie_irq_handler (10,927,188,815 samples, 2.98%)</title><rect x="300.0" y="901" width="35.1" height="15.0" fill="rgb(207,211,40)" rx="2" ry="2" />
+<text  x="302.96" y="911.5" >iw..</text>
+</g>
+<g >
+<title>xfs_end_io (216,396,857 samples, 0.06%)</title><rect x="394.7" y="901" width="0.7" height="15.0" fill="rgb(242,181,1)" rx="2" ry="2" />
+<text  x="397.68" y="911.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (90,100,234 samples, 0.02%)</title><rect x="1163.6" y="613" width="0.3" height="15.0" fill="rgb(235,111,45)" rx="2" ry="2" />
+<text  x="1166.65" y="623.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (245,834,270 samples, 0.07%)</title><rect x="224.4" y="917" width="0.8" height="15.0" fill="rgb(231,22,51)" rx="2" ry="2" />
+<text  x="227.45" y="927.5" ></text>
+</g>
+<g >
+<title>read_command (105,373,923 samples, 0.03%)</title><rect x="243.4" y="885" width="0.4" height="15.0" fill="rgb(211,48,21)" rx="2" ry="2" />
+<text  x="246.42" y="895.5" ></text>
+</g>
+<g >
+<title>iwl_mvm_tx_skb (516,351,615 samples, 0.14%)</title><rect x="633.3" y="421" width="1.6" height="15.0" fill="rgb(221,69,7)" rx="2" ry="2" />
+<text  x="636.28" y="431.5" ></text>
+</g>
+<g >
+<title>i915_gem_object_release_mmap_offset (70,280,367 samples, 0.02%)</title><rect x="377.5" y="805" width="0.2" height="15.0" fill="rgb(234,19,52)" rx="2" ry="2" />
+<text  x="380.51" y="815.5" ></text>
+</g>
+<g >
+<title>pipe_read (42,059,144 samples, 0.01%)</title><rect x="275.4" y="853" width="0.2" height="15.0" fill="rgb(229,169,0)" rx="2" ry="2" />
+<text  x="278.43" y="863.5" ></text>
+</g>
+<g >
+<title>mod_lruvec_page_state (47,275,984 samples, 0.01%)</title><rect x="523.5" y="741" width="0.2" height="15.0" fill="rgb(223,153,9)" rx="2" ry="2" />
+<text  x="526.52" y="751.5" ></text>
+</g>
+<g >
+<title>napi_gro_flush (677,174,143 samples, 0.18%)</title><rect x="319.4" y="773" width="2.1" height="15.0" fill="rgb(240,209,16)" rx="2" ry="2" />
+<text  x="322.37" y="783.5" ></text>
+</g>
+<g >
+<title>folio_clear_dirty_for_io (186,029,501 samples, 0.05%)</title><rect x="572.0" y="757" width="0.6" height="15.0" fill="rgb(220,156,5)" rx="2" ry="2" />
+<text  x="575.04" y="767.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (39,500,102 samples, 0.01%)</title><rect x="359.8" y="757" width="0.2" height="15.0" fill="rgb(208,92,20)" rx="2" ry="2" />
+<text  x="362.83" y="767.5" ></text>
+</g>
+<g >
+<title>_nohz_idle_balance.constprop.0.isra.0 (37,117,664 samples, 0.01%)</title><rect x="832.8" y="773" width="0.1" height="15.0" fill="rgb(223,58,10)" rx="2" ry="2" />
+<text  x="835.78" y="783.5" ></text>
+</g>
+<g >
+<title>[modesetting_drv.so] (364,921,279 samples, 0.10%)</title><rect x="201.4" y="885" width="1.2" height="15.0" fill="rgb(240,112,10)" rx="2" ry="2" />
+<text  x="204.42" y="895.5" ></text>
+</g>
+<g >
+<title>free_unref_page_list (36,052,467 samples, 0.01%)</title><rect x="378.2" y="741" width="0.1" height="15.0" fill="rgb(221,63,37)" rx="2" ry="2" />
+<text  x="381.20" y="751.5" ></text>
+</g>
+<g >
+<title>select_task_rq_fair (33,398,746 samples, 0.01%)</title><rect x="318.8" y="725" width="0.1" height="15.0" fill="rgb(226,17,50)" rx="2" ry="2" />
+<text  x="321.81" y="735.5" ></text>
+</g>
+<g >
+<title>syscall_return_via_sysret (33,992,170 samples, 0.01%)</title><rect x="276.9" y="885" width="0.1" height="15.0" fill="rgb(226,201,48)" rx="2" ry="2" />
+<text  x="279.87" y="895.5" ></text>
+</g>
+<g >
+<title>mempool_alloc (97,757,611 samples, 0.03%)</title><rect x="533.1" y="885" width="0.3" height="15.0" fill="rgb(233,84,11)" rx="2" ry="2" />
+<text  x="536.08" y="895.5" ></text>
+</g>
+<g >
+<title>calloc (48,825,703 samples, 0.01%)</title><rect x="267.8" y="949" width="0.1" height="15.0" fill="rgb(245,68,36)" rx="2" ry="2" />
+<text  x="270.79" y="959.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (354,393,707 samples, 0.10%)</title><rect x="1178.7" y="757" width="1.2" height="15.0" fill="rgb(254,125,3)" rx="2" ry="2" />
+<text  x="1181.73" y="767.5" ></text>
+</g>
+<g >
+<title>iomap_finish_ioends (213,661,286 samples, 0.06%)</title><rect x="394.7" y="869" width="0.7" height="15.0" fill="rgb(247,64,37)" rx="2" ry="2" />
+<text  x="397.68" y="879.5" ></text>
+</g>
+<g >
+<title>try_to_free_pages (32,229,389 samples, 0.01%)</title><rect x="134.6" y="549" width="0.1" height="15.0" fill="rgb(216,224,36)" rx="2" ry="2" />
+<text  x="137.59" y="559.5" ></text>
+</g>
+<g >
+<title>__fdget_pos (67,917,251 samples, 0.02%)</title><rect x="671.2" y="821" width="0.2" height="15.0" fill="rgb(228,110,31)" rx="2" ry="2" />
+<text  x="674.21" y="831.5" ></text>
+</g>
+<g >
+<title>[libpulse.so.0.24.2] (32,481,452 samples, 0.01%)</title><rect x="1162.0" y="917" width="0.1" height="15.0" fill="rgb(208,201,18)" rx="2" ry="2" />
+<text  x="1165.00" y="927.5" ></text>
+</g>
+<g >
+<title>__queue_work (117,351,739 samples, 0.03%)</title><rect x="318.6" y="757" width="0.4" height="15.0" fill="rgb(239,20,29)" rx="2" ry="2" />
+<text  x="321.63" y="767.5" ></text>
+</g>
+<g >
+<title>avc_has_perm (32,596,667 samples, 0.01%)</title><rect x="240.2" y="853" width="0.1" height="15.0" fill="rgb(224,8,29)" rx="2" ry="2" />
+<text  x="243.21" y="863.5" ></text>
+</g>
+<g >
+<title>fault_in_iov_iter_readable (538,650,059 samples, 0.15%)</title><rect x="686.0" y="773" width="1.7" height="15.0" fill="rgb(244,85,34)" rx="2" ry="2" />
+<text  x="689.00" y="783.5" ></text>
+</g>
+<g >
+<title>newidle_balance (51,067,353 samples, 0.01%)</title><rect x="1148.8" y="853" width="0.1" height="15.0" fill="rgb(222,66,52)" rx="2" ry="2" />
+<text  x="1151.77" y="863.5" ></text>
+</g>
+<g >
+<title>__GI___writev (87,348,636 samples, 0.02%)</title><rect x="145.1" y="805" width="0.3" height="15.0" fill="rgb(249,11,39)" rx="2" ry="2" />
+<text  x="148.13" y="815.5" ></text>
+</g>
+<g >
+<title>do_futex (40,218,710 samples, 0.01%)</title><rect x="1166.7" y="821" width="0.2" height="15.0" fill="rgb(251,138,42)" rx="2" ry="2" />
+<text  x="1169.73" y="831.5" ></text>
+</g>
+<g >
+<title>__mod_lruvec_page_state (34,129,573 samples, 0.01%)</title><rect x="502.3" y="725" width="0.1" height="15.0" fill="rgb(210,188,6)" rx="2" ry="2" />
+<text  x="505.27" y="735.5" ></text>
+</g>
+<g >
+<title>pagevec_lookup_range_tag (39,444,451 samples, 0.01%)</title><rect x="478.8" y="757" width="0.2" height="15.0" fill="rgb(207,73,18)" rx="2" ry="2" />
+<text  x="481.83" y="767.5" ></text>
+</g>
+<g >
+<title>nvme_queue_rqs (385,033,689 samples, 0.11%)</title><rect x="245.5" y="837" width="1.3" height="15.0" fill="rgb(232,127,39)" rx="2" ry="2" />
+<text  x="248.54" y="847.5" ></text>
+</g>
+<g >
+<title>__mod_lruvec_state (119,946,177 samples, 0.03%)</title><rect x="716.0" y="709" width="0.4" height="15.0" fill="rgb(234,128,16)" rx="2" ry="2" />
+<text  x="719.00" y="719.5" ></text>
+</g>
+<g >
+<title>enqueue_task (68,761,782 samples, 0.02%)</title><rect x="906.6" y="741" width="0.2" height="15.0" fill="rgb(233,55,1)" rx="2" ry="2" />
+<text  x="909.58" y="751.5" ></text>
+</g>
+<g >
+<title>__rseq_handle_notify_resume (32,405,378 samples, 0.01%)</title><rect x="824.0" y="805" width="0.2" height="15.0" fill="rgb(252,191,9)" rx="2" ry="2" />
+<text  x="827.05" y="815.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (2,857,135,318 samples, 0.78%)</title><rect x="736.6" y="757" width="9.2" height="15.0" fill="rgb(253,140,41)" rx="2" ry="2" />
+<text  x="739.62" y="767.5" ></text>
+</g>
+<g >
+<title>dma_fence_add_callback (61,271,889 samples, 0.02%)</title><rect x="232.9" y="837" width="0.2" height="15.0" fill="rgb(231,83,51)" rx="2" ry="2" />
+<text  x="235.88" y="847.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (47,203,994 samples, 0.01%)</title><rect x="232.3" y="757" width="0.1" height="15.0" fill="rgb(215,113,16)" rx="2" ry="2" />
+<text  x="235.27" y="767.5" ></text>
+</g>
+<g >
+<title>[xfwm4] (33,809,188 samples, 0.01%)</title><rect x="1187.9" y="853" width="0.1" height="15.0" fill="rgb(215,180,14)" rx="2" ry="2" />
+<text  x="1190.93" y="863.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (632,702,873 samples, 0.17%)</title><rect x="393.7" y="965" width="2.0" height="15.0" fill="rgb(215,209,44)" rx="2" ry="2" />
+<text  x="396.71" y="975.5" ></text>
+</g>
+<g >
+<title>hrtimer_start_range_ns (35,290,249 samples, 0.01%)</title><rect x="158.4" y="789" width="0.1" height="15.0" fill="rgb(210,173,37)" rx="2" ry="2" />
+<text  x="161.37" y="799.5" ></text>
+</g>
+<g >
+<title>irq_work_run_list (48,258,505 samples, 0.01%)</title><rect x="232.9" y="741" width="0.2" height="15.0" fill="rgb(206,15,5)" rx="2" ry="2" />
+<text  x="235.92" y="751.5" ></text>
+</g>
+<g >
+<title>shmem_get_pages (318,723,448 samples, 0.09%)</title><rect x="139.5" y="725" width="1.0" height="15.0" fill="rgb(220,6,2)" rx="2" ry="2" />
+<text  x="142.46" y="735.5" ></text>
+</g>
+<g >
+<title>__schedule (605,593,130 samples, 0.17%)</title><rect x="821.2" y="773" width="2.0" height="15.0" fill="rgb(254,19,6)" rx="2" ry="2" />
+<text  x="824.24" y="783.5" ></text>
+</g>
+<g >
+<title>handle_edge_irq (33,013,842 samples, 0.01%)</title><rect x="832.5" y="789" width="0.1" height="15.0" fill="rgb(241,228,20)" rx="2" ry="2" />
+<text  x="835.46" y="799.5" ></text>
+</g>
+<g >
+<title>iomap_iter (41,619,212 samples, 0.01%)</title><rect x="725.2" y="789" width="0.1" height="15.0" fill="rgb(225,10,21)" rx="2" ry="2" />
+<text  x="728.18" y="799.5" ></text>
+</g>
+<g >
+<title>mempool_alloc (295,171,725 samples, 0.08%)</title><rect x="501.1" y="885" width="1.0" height="15.0" fill="rgb(232,186,31)" rx="2" ry="2" />
+<text  x="504.15" y="895.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (159,421,081 samples, 0.04%)</title><rect x="156.4" y="917" width="0.5" height="15.0" fill="rgb(233,130,8)" rx="2" ry="2" />
+<text  x="159.38" y="927.5" ></text>
+</g>
+<g >
+<title>aesni_enc (151,147,229 samples, 0.04%)</title><rect x="509.9" y="821" width="0.4" height="15.0" fill="rgb(209,25,31)" rx="2" ry="2" />
+<text  x="512.86" y="831.5" ></text>
+</g>
+<g >
+<title>__free_one_page (33,133,383 samples, 0.01%)</title><rect x="344.9" y="837" width="0.1" height="15.0" fill="rgb(250,35,35)" rx="2" ry="2" />
+<text  x="347.92" y="847.5" ></text>
+</g>
+<g >
+<title>__mod_lruvec_page_state (77,054,122 samples, 0.02%)</title><rect x="572.2" y="725" width="0.3" height="15.0" fill="rgb(223,61,17)" rx="2" ry="2" />
+<text  x="575.25" y="735.5" ></text>
+</g>
+<g >
+<title>ct_nmi_enter (43,406,443 samples, 0.01%)</title><rect x="898.0" y="821" width="0.1" height="15.0" fill="rgb(237,31,25)" rx="2" ry="2" />
+<text  x="900.97" y="831.5" ></text>
+</g>
+<g >
+<title>[firefox] (119,461,682 samples, 0.03%)</title><rect x="297.9" y="885" width="0.4" height="15.0" fill="rgb(212,73,22)" rx="2" ry="2" />
+<text  x="300.90" y="895.5" ></text>
+</g>
+<g >
+<title>i915_gem_object_get_pages_internal (32,079,883 samples, 0.01%)</title><rect x="235.9" y="773" width="0.1" height="15.0" fill="rgb(225,171,42)" rx="2" ry="2" />
+<text  x="238.92" y="783.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (335,216,646 samples, 0.09%)</title><rect x="1178.8" y="709" width="1.0" height="15.0" fill="rgb(206,107,47)" rx="2" ry="2" />
+<text  x="1181.75" y="719.5" ></text>
+</g>
+<g >
+<title>[libglapi.so.0.0.0] (74,554,014 samples, 0.02%)</title><rect x="121.7" y="965" width="0.2" height="15.0" fill="rgb(225,31,49)" rx="2" ry="2" />
+<text  x="124.67" y="975.5" ></text>
+</g>
+<g >
+<title>release_pages (80,840,158 samples, 0.02%)</title><rect x="704.1" y="693" width="0.3" height="15.0" fill="rgb(245,136,35)" rx="2" ry="2" />
+<text  x="707.14" y="703.5" ></text>
+</g>
+<g >
+<title>drm_ioctl (45,906,516 samples, 0.01%)</title><rect x="1164.0" y="613" width="0.1" height="15.0" fill="rgb(233,73,21)" rx="2" ry="2" />
+<text  x="1166.99" y="623.5" ></text>
+</g>
+<g >
+<title>[libvte-2.91.so.0.6992.0] (348,612,331 samples, 0.10%)</title><rect x="1180.2" y="821" width="1.1" height="15.0" fill="rgb(230,227,31)" rx="2" ry="2" />
+<text  x="1183.22" y="831.5" ></text>
+</g>
+<g >
+<title>g_main_context_iteration (66,249,392 samples, 0.02%)</title><rect x="244.1" y="709" width="0.2" height="15.0" fill="rgb(227,41,10)" rx="2" ry="2" />
+<text  x="247.10" y="719.5" ></text>
+</g>
+<g >
+<title>blk_mq_flush_plug_list (73,907,736 samples, 0.02%)</title><rect x="244.6" y="885" width="0.2" height="15.0" fill="rgb(208,0,51)" rx="2" ry="2" />
+<text  x="247.58" y="895.5" ></text>
+</g>
+<g >
+<title>__mod_lruvec_page_state (78,499,941 samples, 0.02%)</title><rect x="438.1" y="725" width="0.3" height="15.0" fill="rgb(233,5,5)" rx="2" ry="2" />
+<text  x="441.10" y="735.5" ></text>
+</g>
+<g >
+<title>writeback_sb_inodes (639,592,927 samples, 0.17%)</title><rect x="476.9" y="853" width="2.1" height="15.0" fill="rgb(214,21,19)" rx="2" ry="2" />
+<text  x="479.90" y="863.5" ></text>
+</g>
+<g >
+<title>execlists_submission_tasklet (45,433,187 samples, 0.01%)</title><rect x="137.7" y="709" width="0.1" height="15.0" fill="rgb(222,72,50)" rx="2" ry="2" />
+<text  x="140.66" y="719.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (269,853,019 samples, 0.07%)</title><rect x="744.9" y="709" width="0.9" height="15.0" fill="rgb(216,39,35)" rx="2" ry="2" />
+<text  x="747.92" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (2,171,940,134 samples, 0.59%)</title><rect x="649.7" y="709" width="7.0" height="15.0" fill="rgb(229,92,23)" rx="2" ry="2" />
+<text  x="652.73" y="719.5" ></text>
+</g>
+<g >
+<title>PickKeyboard (38,841,013 samples, 0.01%)</title><rect x="201.7" y="789" width="0.1" height="15.0" fill="rgb(220,207,18)" rx="2" ry="2" />
+<text  x="204.70" y="799.5" ></text>
+</g>
+<g >
+<title>workingset_age_nonresident (49,097,923 samples, 0.01%)</title><rect x="364.7" y="821" width="0.1" height="15.0" fill="rgb(252,147,48)" rx="2" ry="2" />
+<text  x="367.66" y="831.5" ></text>
+</g>
+<g >
+<title>[firefox] (54,690,425 samples, 0.01%)</title><rect x="171.1" y="917" width="0.2" height="15.0" fill="rgb(211,146,15)" rx="2" ry="2" />
+<text  x="174.11" y="927.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (244,824,106 samples, 0.07%)</title><rect x="745.0" y="677" width="0.7" height="15.0" fill="rgb(253,180,32)" rx="2" ry="2" />
+<text  x="747.96" y="687.5" ></text>
+</g>
+<g >
+<title>common_interrupt (50,883,307 samples, 0.01%)</title><rect x="384.2" y="773" width="0.2" height="15.0" fill="rgb(207,176,4)" rx="2" ry="2" />
+<text  x="387.23" y="783.5" ></text>
+</g>
+<g >
+<title>__gt_park (56,771,202 samples, 0.02%)</title><rect x="393.9" y="885" width="0.2" height="15.0" fill="rgb(207,117,40)" rx="2" ry="2" />
+<text  x="396.89" y="895.5" ></text>
+</g>
+<g >
+<title>nvme_queue_rqs (72,896,276 samples, 0.02%)</title><rect x="244.6" y="869" width="0.2" height="15.0" fill="rgb(237,54,53)" rx="2" ry="2" />
+<text  x="247.58" y="879.5" ></text>
+</g>
+<g >
+<title>wb_workfn (442,114,911 samples, 0.12%)</title><rect x="523.3" y="901" width="1.4" height="15.0" fill="rgb(234,35,41)" rx="2" ry="2" />
+<text  x="526.31" y="911.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (47,774,343 samples, 0.01%)</title><rect x="703.8" y="661" width="0.2" height="15.0" fill="rgb(210,97,52)" rx="2" ry="2" />
+<text  x="706.85" y="671.5" ></text>
+</g>
+<g >
+<title>qio_channel_write_all (1,586,323,946 samples, 0.43%)</title><rect x="739.3" y="725" width="5.2" height="15.0" fill="rgb(220,153,39)" rx="2" ry="2" />
+<text  x="742.35" y="735.5" ></text>
+</g>
+<g >
+<title>[libglamoregl.so] (116,226,799 samples, 0.03%)</title><rect x="204.2" y="821" width="0.4" height="15.0" fill="rgb(223,216,51)" rx="2" ry="2" />
+<text  x="207.19" y="831.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (31,450,456 samples, 0.01%)</title><rect x="667.4" y="853" width="0.1" height="15.0" fill="rgb(234,16,4)" rx="2" ry="2" />
+<text  x="670.41" y="863.5" ></text>
+</g>
+<g >
+<title>g_signal_emit_valist (70,985,493 samples, 0.02%)</title><rect x="1179.5" y="629" width="0.3" height="15.0" fill="rgb(239,116,29)" rx="2" ry="2" />
+<text  x="1182.53" y="639.5" ></text>
+</g>
+<g >
+<title>__GI___ioctl (40,982,737 samples, 0.01%)</title><rect x="152.2" y="869" width="0.1" height="15.0" fill="rgb(234,133,21)" rx="2" ry="2" />
+<text  x="155.21" y="879.5" ></text>
+</g>
+<g >
+<title>do_futex (123,531,870 samples, 0.03%)</title><rect x="25.0" y="869" width="0.4" height="15.0" fill="rgb(235,4,50)" rx="2" ry="2" />
+<text  x="27.97" y="879.5" ></text>
+</g>
+<g >
+<title>[libglib-2.0.so.0.7303.0] (92,379,720 samples, 0.03%)</title><rect x="737.9" y="677" width="0.3" height="15.0" fill="rgb(239,50,23)" rx="2" ry="2" />
+<text  x="740.87" y="687.5" ></text>
+</g>
+<g >
+<title>[firefox] (40,895,923 samples, 0.01%)</title><rect x="59.6" y="965" width="0.1" height="15.0" fill="rgb(249,156,32)" rx="2" ry="2" />
+<text  x="62.59" y="975.5" ></text>
+</g>
+<g >
+<title>find_busiest_group (171,072,876 samples, 0.05%)</title><rect x="901.6" y="773" width="0.5" height="15.0" fill="rgb(211,215,47)" rx="2" ry="2" />
+<text  x="904.57" y="783.5" ></text>
+</g>
+<g >
+<title>moz_xrealloc (32,726,700 samples, 0.01%)</title><rect x="103.5" y="949" width="0.2" height="15.0" fill="rgb(221,20,30)" rx="2" ry="2" />
+<text  x="106.55" y="959.5" ></text>
+</g>
+<g >
+<title>__writeback_single_inode (756,192,153 samples, 0.21%)</title><rect x="571.9" y="837" width="2.4" height="15.0" fill="rgb(243,36,27)" rx="2" ry="2" />
+<text  x="574.86" y="847.5" ></text>
+</g>
+<g >
+<title>scheduler_tick (77,324,041 samples, 0.02%)</title><rect x="814.0" y="709" width="0.2" height="15.0" fill="rgb(235,62,52)" rx="2" ry="2" />
+<text  x="816.98" y="719.5" ></text>
+</g>
+<g >
+<title>sg_init_table (182,511,920 samples, 0.05%)</title><rect x="521.9" y="869" width="0.6" height="15.0" fill="rgb(252,60,50)" rx="2" ry="2" />
+<text  x="524.87" y="879.5" ></text>
+</g>
+<g >
+<title>native_write_msr (43,709,392 samples, 0.01%)</title><rect x="1157.3" y="821" width="0.1" height="15.0" fill="rgb(253,28,50)" rx="2" ry="2" />
+<text  x="1160.29" y="831.5" ></text>
+</g>
+<g >
+<title>__x64_sys_sendto (954,173,527 samples, 0.26%)</title><rect x="622.9" y="629" width="3.1" height="15.0" fill="rgb(230,189,2)" rx="2" ry="2" />
+<text  x="625.93" y="639.5" ></text>
+</g>
+<g >
+<title>sysvec_apic_timer_interrupt (5,047,753,359 samples, 1.38%)</title><rect x="899.4" y="853" width="16.2" height="15.0" fill="rgb(223,19,28)" rx="2" ry="2" />
+<text  x="902.36" y="863.5" ></text>
+</g>
+<g >
+<title>kernel_fpu_begin_mask (143,316,017 samples, 0.04%)</title><rect x="450.8" y="821" width="0.4" height="15.0" fill="rgb(211,115,49)" rx="2" ry="2" />
+<text  x="453.76" y="831.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (168,963,753 samples, 0.05%)</title><rect x="826.5" y="789" width="0.6" height="15.0" fill="rgb(216,196,49)" rx="2" ry="2" />
+<text  x="829.53" y="799.5" ></text>
+</g>
+<g >
+<title>timerqueue_add (113,574,979 samples, 0.03%)</title><rect x="1159.3" y="853" width="0.4" height="15.0" fill="rgb(245,122,35)" rx="2" ry="2" />
+<text  x="1162.31" y="863.5" ></text>
+</g>
+<g >
+<title>__mod_lruvec_page_state (57,188,370 samples, 0.02%)</title><rect x="391.3" y="789" width="0.2" height="15.0" fill="rgb(223,175,46)" rx="2" ry="2" />
+<text  x="394.33" y="799.5" ></text>
+</g>
+<g >
+<title>__flush_work.isra.0 (40,962,651 samples, 0.01%)</title><rect x="1184.3" y="869" width="0.1" height="15.0" fill="rgb(211,21,30)" rx="2" ry="2" />
+<text  x="1187.25" y="879.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (83,205,293 samples, 0.02%)</title><rect x="641.0" y="693" width="0.2" height="15.0" fill="rgb(219,203,44)" rx="2" ry="2" />
+<text  x="643.98" y="703.5" ></text>
+</g>
+<g >
+<title>curl_multi_poll (2,563,160,852 samples, 0.70%)</title><rect x="648.8" y="773" width="8.2" height="15.0" fill="rgb(205,217,51)" rx="2" ry="2" />
+<text  x="651.78" y="783.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (37,661,020 samples, 0.01%)</title><rect x="1162.3" y="949" width="0.2" height="15.0" fill="rgb(212,194,20)" rx="2" ry="2" />
+<text  x="1165.34" y="959.5" ></text>
+</g>
+<g >
+<title>pagevec_lookup_range_tag (64,987,125 samples, 0.02%)</title><rect x="460.5" y="757" width="0.2" height="15.0" fill="rgb(242,37,4)" rx="2" ry="2" />
+<text  x="463.46" y="767.5" ></text>
+</g>
+<g >
+<title>do_madvise (32,543,263 samples, 0.01%)</title><rect x="268.7" y="853" width="0.1" height="15.0" fill="rgb(221,136,51)" rx="2" ry="2" />
+<text  x="271.71" y="863.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (466,473,365 samples, 0.13%)</title><rect x="1171.5" y="469" width="1.5" height="15.0" fill="rgb(244,90,7)" rx="2" ry="2" />
+<text  x="1174.52" y="479.5" ></text>
+</g>
+<g >
+<title>realloc (32,026,673 samples, 0.01%)</title><rect x="103.6" y="933" width="0.1" height="15.0" fill="rgb(242,133,31)" rx="2" ry="2" />
+<text  x="106.55" y="943.5" ></text>
+</g>
+<g >
+<title>curl_maprintf (72,188,288 samples, 0.02%)</title><rect x="668.7" y="741" width="0.2" height="15.0" fill="rgb(224,221,52)" rx="2" ry="2" />
+<text  x="671.68" y="751.5" ></text>
+</g>
+<g >
+<title>handle_mm_fault (53,877,790 samples, 0.01%)</title><rect x="266.3" y="885" width="0.2" height="15.0" fill="rgb(232,73,22)" rx="2" ry="2" />
+<text  x="269.32" y="895.5" ></text>
+</g>
+<g >
+<title>memset_erms (109,411,464 samples, 0.03%)</title><rect x="713.3" y="741" width="0.4" height="15.0" fill="rgb(213,51,5)" rx="2" ry="2" />
+<text  x="716.35" y="751.5" ></text>
+</g>
+<g >
+<title>__update_load_avg_cfs_rq (37,655,178 samples, 0.01%)</title><rect x="1149.8" y="821" width="0.1" height="15.0" fill="rgb(250,213,6)" rx="2" ry="2" />
+<text  x="1152.77" y="831.5" ></text>
+</g>
+<g >
+<title>[libvte-2.91.so.0.6992.0] (111,229,816 samples, 0.03%)</title><rect x="1178.0" y="149" width="0.4" height="15.0" fill="rgb(216,47,26)" rx="2" ry="2" />
+<text  x="1181.02" y="159.5" ></text>
+</g>
+<g >
+<title>dev_gro_receive (588,377,390 samples, 0.16%)</title><rect x="307.5" y="741" width="1.9" height="15.0" fill="rgb(233,150,14)" rx="2" ry="2" />
+<text  x="310.46" y="751.5" ></text>
+</g>
+<g >
+<title>psi_task_switch (79,696,369 samples, 0.02%)</title><rect x="817.8" y="725" width="0.3" height="15.0" fill="rgb(246,117,48)" rx="2" ry="2" />
+<text  x="820.85" y="735.5" ></text>
+</g>
+<g >
+<title>iomap_finish_ioends (176,567,464 samples, 0.05%)</title><rect x="397.6" y="869" width="0.6" height="15.0" fill="rgb(222,145,35)" rx="2" ry="2" />
+<text  x="400.65" y="879.5" ></text>
+</g>
+<g >
+<title>__GI___getpid (38,102,659 samples, 0.01%)</title><rect x="18.4" y="901" width="0.1" height="15.0" fill="rgb(228,217,29)" rx="2" ry="2" />
+<text  x="21.39" y="911.5" ></text>
+</g>
+<g >
+<title>scheduler_tick (34,949,422 samples, 0.01%)</title><rect x="95.0" y="821" width="0.1" height="15.0" fill="rgb(210,13,37)" rx="2" ry="2" />
+<text  x="97.96" y="831.5" ></text>
+</g>
+<g >
+<title>kcryptd_crypt (5,488,855,725 samples, 1.50%)</title><rect x="440.2" y="901" width="17.7" height="15.0" fill="rgb(251,191,51)" rx="2" ry="2" />
+<text  x="443.20" y="911.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (4,843,449,203 samples, 1.32%)</title><rect x="400.3" y="869" width="15.6" height="15.0" fill="rgb(239,138,47)" rx="2" ry="2" />
+<text  x="403.27" y="879.5" ></text>
+</g>
+<g >
+<title>g_try_malloc (82,153,917 samples, 0.02%)</title><rect x="745.9" y="821" width="0.3" height="15.0" fill="rgb(214,35,23)" rx="2" ry="2" />
+<text  x="748.91" y="831.5" ></text>
+</g>
+<g >
+<title>nohz_balance_enter_idle (66,598,063 samples, 0.02%)</title><rect x="1144.9" y="901" width="0.2" height="15.0" fill="rgb(211,207,3)" rx="2" ry="2" />
+<text  x="1147.89" y="911.5" ></text>
+</g>
+<g >
+<title>security_file_ioctl (33,750,337 samples, 0.01%)</title><rect x="133.7" y="741" width="0.1" height="15.0" fill="rgb(235,11,49)" rx="2" ry="2" />
+<text  x="136.67" y="751.5" ></text>
+</g>
+<g >
+<title>kworker/6:1 (640,300,861 samples, 0.17%)</title><rect x="393.7" y="981" width="2.0" height="15.0" fill="rgb(252,172,18)" rx="2" ry="2" />
+<text  x="396.69" y="991.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (38,976,205 samples, 0.01%)</title><rect x="314.3" y="725" width="0.1" height="15.0" fill="rgb(206,123,51)" rx="2" ry="2" />
+<text  x="317.30" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (1,604,782,477 samples, 0.44%)</title><rect x="136.4" y="869" width="5.2" height="15.0" fill="rgb(224,101,47)" rx="2" ry="2" />
+<text  x="139.44" y="879.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (291,784,818 samples, 0.08%)</title><rect x="1163.3" y="725" width="1.0" height="15.0" fill="rgb(214,164,52)" rx="2" ry="2" />
+<text  x="1166.33" y="735.5" ></text>
+</g>
+<g >
+<title>psi_task_switch (176,988,711 samples, 0.05%)</title><rect x="337.5" y="885" width="0.6" height="15.0" fill="rgb(249,116,32)" rx="2" ry="2" />
+<text  x="340.48" y="895.5" ></text>
+</g>
+<g >
+<title>[firefox] (44,199,519 samples, 0.01%)</title><rect x="16.3" y="901" width="0.1" height="15.0" fill="rgb(212,167,9)" rx="2" ry="2" />
+<text  x="19.27" y="911.5" ></text>
+</g>
+<g >
+<title>security_file_permission (33,182,059 samples, 0.01%)</title><rect x="20.2" y="725" width="0.1" height="15.0" fill="rgb(228,192,6)" rx="2" ry="2" />
+<text  x="23.20" y="735.5" ></text>
+</g>
+<g >
+<title>net_rx_action (10,101,111,266 samples, 2.76%)</title><rect x="301.2" y="837" width="32.5" height="15.0" fill="rgb(205,197,21)" rx="2" ry="2" />
+<text  x="304.23" y="847.5" >ne..</text>
+</g>
+<g >
+<title>do_iter_readv_writev (65,146,232 samples, 0.02%)</title><rect x="145.2" y="709" width="0.2" height="15.0" fill="rgb(224,31,0)" rx="2" ry="2" />
+<text  x="148.17" y="719.5" ></text>
+</g>
+<g >
+<title>[libgdk-3.so.0.2404.30] (43,614,033 samples, 0.01%)</title><rect x="269.1" y="933" width="0.2" height="15.0" fill="rgb(237,13,31)" rx="2" ry="2" />
+<text  x="272.14" y="943.5" ></text>
+</g>
+<g >
+<title>futex_wait_queue (140,625,144 samples, 0.04%)</title><rect x="149.1" y="821" width="0.5" height="15.0" fill="rgb(224,158,11)" rx="2" ry="2" />
+<text  x="152.13" y="831.5" ></text>
+</g>
+<g >
+<title>writeback_sb_inodes (437,693,937 samples, 0.12%)</title><rect x="555.6" y="853" width="1.4" height="15.0" fill="rgb(209,25,9)" rx="2" ry="2" />
+<text  x="558.61" y="863.5" ></text>
+</g>
+<g >
+<title>__folio_end_writeback (232,848,736 samples, 0.06%)</title><rect x="392.9" y="821" width="0.7" height="15.0" fill="rgb(230,31,25)" rx="2" ry="2" />
+<text  x="395.89" y="831.5" ></text>
+</g>
+<g >
+<title>moz_xmalloc (57,454,680 samples, 0.02%)</title><rect x="282.7" y="933" width="0.2" height="15.0" fill="rgb(207,29,42)" rx="2" ry="2" />
+<text  x="285.69" y="943.5" ></text>
+</g>
+<g >
+<title>calloc (34,424,482 samples, 0.01%)</title><rect x="135.6" y="853" width="0.1" height="15.0" fill="rgb(244,140,50)" rx="2" ry="2" />
+<text  x="138.57" y="863.5" ></text>
+</g>
+<g >
+<title>__irqentry_text_start (138,993,576 samples, 0.04%)</title><rect x="890.0" y="869" width="0.4" height="15.0" fill="rgb(220,57,30)" rx="2" ry="2" />
+<text  x="892.97" y="879.5" ></text>
+</g>
+<g >
+<title>i915_vma_pin_ww (39,892,973 samples, 0.01%)</title><rect x="1164.9" y="597" width="0.1" height="15.0" fill="rgb(231,202,54)" rx="2" ry="2" />
+<text  x="1167.90" y="607.5" ></text>
+</g>
+<g >
+<title>__GI___pthread_mutex_unlock_usercnt (47,566,257 samples, 0.01%)</title><rect x="157.2" y="933" width="0.2" height="15.0" fill="rgb(224,182,27)" rx="2" ry="2" />
+<text  x="160.24" y="943.5" ></text>
+</g>
+<g >
+<title>xfs_file_buffered_write (15,799,793,586 samples, 4.31%)</title><rect x="672.2" y="805" width="50.9" height="15.0" fill="rgb(231,164,31)" rx="2" ry="2" />
+<text  x="675.21" y="815.5" >xfs_f..</text>
+</g>
+<g >
+<title>poll_freewait (31,220,975 samples, 0.01%)</title><rect x="88.2" y="869" width="0.1" height="15.0" fill="rgb(250,64,41)" rx="2" ry="2" />
+<text  x="91.24" y="879.5" ></text>
+</g>
+<g >
+<title>security_socket_recvmsg (33,546,561 samples, 0.01%)</title><rect x="737.4" y="597" width="0.1" height="15.0" fill="rgb(232,180,21)" rx="2" ry="2" />
+<text  x="740.41" y="607.5" ></text>
+</g>
+<g >
+<title>unix_stream_recvmsg (46,052,970 samples, 0.01%)</title><rect x="1188.5" y="885" width="0.2" height="15.0" fill="rgb(231,132,49)" rx="2" ry="2" />
+<text  x="1191.55" y="895.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (101,467,322 samples, 0.03%)</title><rect x="146.2" y="901" width="0.3" height="15.0" fill="rgb(232,4,11)" rx="2" ry="2" />
+<text  x="149.21" y="911.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_apic_timer_interrupt (309,316,945 samples, 0.08%)</title><rect x="813.4" y="837" width="1.0" height="15.0" fill="rgb(223,194,17)" rx="2" ry="2" />
+<text  x="816.43" y="847.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (181,150,455 samples, 0.05%)</title><rect x="594.6" y="853" width="0.5" height="15.0" fill="rgb(248,190,1)" rx="2" ry="2" />
+<text  x="597.56" y="863.5" ></text>
+</g>
+<g >
+<title>sg_init_table (192,585,135 samples, 0.05%)</title><rect x="500.5" y="869" width="0.6" height="15.0" fill="rgb(245,26,28)" rx="2" ry="2" />
+<text  x="503.51" y="879.5" ></text>
+</g>
+<g >
+<title>thread_group_exited (46,568,263 samples, 0.01%)</title><rect x="1183.0" y="885" width="0.2" height="15.0" fill="rgb(252,198,14)" rx="2" ry="2" />
+<text  x="1186.00" y="895.5" ></text>
+</g>
+<g >
+<title>shmem_read_mapping_page_gfp (255,559,004 samples, 0.07%)</title><rect x="139.7" y="693" width="0.8" height="15.0" fill="rgb(212,119,23)" rx="2" ry="2" />
+<text  x="142.67" y="703.5" ></text>
+</g>
+<g >
+<title>gtk_main_do_event (834,673,174 samples, 0.23%)</title><rect x="1171.5" y="741" width="2.7" height="15.0" fill="rgb(235,124,49)" rx="2" ry="2" />
+<text  x="1174.50" y="751.5" ></text>
+</g>
+<g >
+<title>dev_hard_start_xmit (1,325,458,832 samples, 0.36%)</title><rect x="630.8" y="501" width="4.2" height="15.0" fill="rgb(237,33,36)" rx="2" ry="2" />
+<text  x="633.77" y="511.5" ></text>
+</g>
+<g >
+<title>iwl_trans_pcie_tx (55,255,426 samples, 0.02%)</title><rect x="624.3" y="325" width="0.2" height="15.0" fill="rgb(227,91,39)" rx="2" ry="2" />
+<text  x="627.28" y="335.5" ></text>
+</g>
+<g >
+<title>do_writev (36,707,728 samples, 0.01%)</title><rect x="1165.3" y="693" width="0.1" height="15.0" fill="rgb(226,53,20)" rx="2" ry="2" />
+<text  x="1168.32" y="703.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (3,163,345,430 samples, 0.86%)</title><rect x="442.1" y="853" width="10.2" height="15.0" fill="rgb(218,21,8)" rx="2" ry="2" />
+<text  x="445.14" y="863.5" ></text>
+</g>
+<g >
+<title>ieee80211_prepare_and_rx_handle (893,075,473 samples, 0.24%)</title><rect x="304.3" y="741" width="2.9" height="15.0" fill="rgb(242,213,11)" rx="2" ry="2" />
+<text  x="307.30" y="751.5" ></text>
+</g>
+<g >
+<title>kthread (5,359,687,657 samples, 1.46%)</title><rect x="557.1" y="949" width="17.2" height="15.0" fill="rgb(216,82,15)" rx="2" ry="2" />
+<text  x="560.08" y="959.5" ></text>
+</g>
+<g >
+<title>drm_ioctl (255,761,419 samples, 0.07%)</title><rect x="132.8" y="741" width="0.9" height="15.0" fill="rgb(213,48,41)" rx="2" ry="2" />
+<text  x="135.84" y="751.5" ></text>
+</g>
+<g >
+<title>[libGLX_mesa.so.0.0.0] (1,639,829,685 samples, 0.45%)</title><rect x="18.6" y="933" width="5.3" height="15.0" fill="rgb(225,116,30)" rx="2" ry="2" />
+<text  x="21.58" y="943.5" ></text>
+</g>
+<g >
+<title>irq_thread_fn (530,670,488 samples, 0.14%)</title><rect x="339.3" y="917" width="1.7" height="15.0" fill="rgb(208,187,13)" rx="2" ry="2" />
+<text  x="342.34" y="927.5" ></text>
+</g>
+<g >
+<title>__sysvec_irq_work (69,881,713 samples, 0.02%)</title><rect x="1163.7" y="437" width="0.2" height="15.0" fill="rgb(232,211,3)" rx="2" ry="2" />
+<text  x="1166.70" y="447.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (147,898,999 samples, 0.04%)</title><rect x="748.0" y="693" width="0.5" height="15.0" fill="rgb(248,92,33)" rx="2" ry="2" />
+<text  x="751.05" y="703.5" ></text>
+</g>
+<g >
+<title>iomap_do_writepage (272,523,821 samples, 0.07%)</title><rect x="523.7" y="757" width="0.9" height="15.0" fill="rgb(212,21,15)" rx="2" ry="2" />
+<text  x="526.75" y="767.5" ></text>
+</g>
+<g >
+<title>iomap_finish_ioend (52,637,442 samples, 0.01%)</title><rect x="387.1" y="853" width="0.2" height="15.0" fill="rgb(208,140,3)" rx="2" ry="2" />
+<text  x="390.11" y="863.5" ></text>
+</g>
+<g >
+<title>__clone3 (15,554,455,624 samples, 4.24%)</title><rect x="616.6" y="965" width="50.0" height="15.0" fill="rgb(246,224,39)" rx="2" ry="2" />
+<text  x="619.56" y="975.5" >__clo..</text>
+</g>
+<g >
+<title>[qemu-img] (82,483,084 samples, 0.02%)</title><rect x="738.3" y="693" width="0.3" height="15.0" fill="rgb(247,122,46)" rx="2" ry="2" />
+<text  x="741.33" y="703.5" ></text>
+</g>
+<g >
+<title>kfree (56,718,985 samples, 0.02%)</title><rect x="39.6" y="773" width="0.2" height="15.0" fill="rgb(207,47,35)" rx="2" ry="2" />
+<text  x="42.63" y="783.5" ></text>
+</g>
+<g >
+<title>__new_sem_post (180,914,205 samples, 0.05%)</title><rect x="747.0" y="741" width="0.6" height="15.0" fill="rgb(236,29,20)" rx="2" ry="2" />
+<text  x="750.03" y="751.5" ></text>
+</g>
+<g >
+<title>[libcurl.so.4.8.0] (88,515,249 samples, 0.02%)</title><rect x="284.8" y="773" width="0.2" height="15.0" fill="rgb(253,166,38)" rx="2" ry="2" />
+<text  x="287.75" y="783.5" ></text>
+</g>
+<g >
+<title>percpu_counter_add_batch (32,174,986 samples, 0.01%)</title><rect x="395.3" y="805" width="0.1" height="15.0" fill="rgb(209,221,10)" rx="2" ry="2" />
+<text  x="398.26" y="815.5" ></text>
+</g>
+<g >
+<title>unix_stream_read_generic (298,198,185 samples, 0.08%)</title><rect x="39.4" y="821" width="1.0" height="15.0" fill="rgb(225,88,39)" rx="2" ry="2" />
+<text  x="42.41" y="831.5" ></text>
+</g>
+<g >
+<title>____sys_recvmsg (144,150,154 samples, 0.04%)</title><rect x="748.1" y="629" width="0.4" height="15.0" fill="rgb(254,196,51)" rx="2" ry="2" />
+<text  x="751.05" y="639.5" ></text>
+</g>
+<g >
+<title>rmqueue_bulk (53,202,644 samples, 0.01%)</title><rect x="501.7" y="821" width="0.2" height="15.0" fill="rgb(237,209,44)" rx="2" ry="2" />
+<text  x="504.72" y="831.5" ></text>
+</g>
+<g >
+<title>syscall_return_via_sysret (145,291,724 samples, 0.04%)</title><rect x="99.2" y="901" width="0.5" height="15.0" fill="rgb(244,180,37)" rx="2" ry="2" />
+<text  x="102.23" y="911.5" ></text>
+</g>
+<g >
+<title>kthread (632,702,873 samples, 0.17%)</title><rect x="393.7" y="949" width="2.0" height="15.0" fill="rgb(233,94,47)" rx="2" ry="2" />
+<text  x="396.71" y="959.5" ></text>
+</g>
+<g >
+<title>nf_conntrack_in (320,071,203 samples, 0.09%)</title><rect x="329.7" y="677" width="1.0" height="15.0" fill="rgb(216,183,54)" rx="2" ry="2" />
+<text  x="332.69" y="687.5" ></text>
+</g>
+<g >
+<title>[git] (115,534,964 samples, 0.03%)</title><rect x="285.3" y="885" width="0.3" height="15.0" fill="rgb(240,151,14)" rx="2" ry="2" />
+<text  x="288.27" y="895.5" ></text>
+</g>
+<g >
+<title>__x64_sys_futex (125,520,507 samples, 0.03%)</title><rect x="25.0" y="885" width="0.4" height="15.0" fill="rgb(218,185,53)" rx="2" ry="2" />
+<text  x="27.96" y="895.5" ></text>
+</g>
+<g >
+<title>[unknown] (40,544,685 samples, 0.01%)</title><rect x="160.1" y="949" width="0.2" height="15.0" fill="rgb(209,121,30)" rx="2" ry="2" />
+<text  x="163.14" y="959.5" ></text>
+</g>
+<g >
+<title>sg_init_table (188,266,213 samples, 0.05%)</title><rect x="417.2" y="869" width="0.6" height="15.0" fill="rgb(241,220,18)" rx="2" ry="2" />
+<text  x="420.21" y="879.5" ></text>
+</g>
+<g >
+<title>ieee80211_subif_start_xmit (33,859,487 samples, 0.01%)</title><rect x="320.2" y="517" width="0.2" height="15.0" fill="rgb(240,95,45)" rx="2" ry="2" />
+<text  x="323.25" y="527.5" ></text>
+</g>
+<g >
+<title>____sys_recvmsg (50,615,468 samples, 0.01%)</title><rect x="1170.4" y="901" width="0.2" height="15.0" fill="rgb(208,204,25)" rx="2" ry="2" />
+<text  x="1173.44" y="911.5" ></text>
+</g>
+<g >
+<title>crypt_convert (5,240,799,057 samples, 1.43%)</title><rect x="440.3" y="885" width="16.9" height="15.0" fill="rgb(224,160,14)" rx="2" ry="2" />
+<text  x="443.29" y="895.5" ></text>
+</g>
+<g >
+<title>shrink_node (104,862,581 samples, 0.03%)</title><rect x="705.3" y="661" width="0.3" height="15.0" fill="rgb(213,74,18)" rx="2" ry="2" />
+<text  x="708.30" y="671.5" ></text>
+</g>
+<g >
+<title>__mod_lruvec_page_state (86,894,336 samples, 0.02%)</title><rect x="573.3" y="709" width="0.3" height="15.0" fill="rgb(223,108,22)" rx="2" ry="2" />
+<text  x="576.28" y="719.5" ></text>
+</g>
+<g >
+<title>irq_work_single (1,366,429,093 samples, 0.37%)</title><rect x="347.2" y="773" width="4.4" height="15.0" fill="rgb(242,177,29)" rx="2" ry="2" />
+<text  x="350.25" y="783.5" ></text>
+</g>
+<g >
+<title>intel_idle_ibrs (13,017,854,429 samples, 3.55%)</title><rect x="838.8" y="837" width="41.9" height="15.0" fill="rgb(232,36,53)" rx="2" ry="2" />
+<text  x="841.76" y="847.5" >int..</text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (740,599,805 samples, 0.20%)</title><rect x="726.0" y="933" width="2.4" height="15.0" fill="rgb(221,86,46)" rx="2" ry="2" />
+<text  x="729.01" y="943.5" ></text>
+</g>
+<g >
+<title>tick_nohz_next_event (912,778,515 samples, 0.25%)</title><rect x="1141.7" y="869" width="2.9" height="15.0" fill="rgb(209,45,20)" rx="2" ry="2" />
+<text  x="1144.71" y="879.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (432,614,020 samples, 0.12%)</title><rect x="1171.6" y="309" width="1.4" height="15.0" fill="rgb(219,140,14)" rx="2" ry="2" />
+<text  x="1174.57" y="319.5" ></text>
+</g>
+<g >
+<title>signal_irq_work (1,365,545,062 samples, 0.37%)</title><rect x="347.2" y="757" width="4.4" height="15.0" fill="rgb(249,182,1)" rx="2" ry="2" />
+<text  x="350.25" y="767.5" ></text>
+</g>
+<g >
+<title>[libxul.so] (252,908,906 samples, 0.07%)</title><rect x="114.9" y="933" width="0.9" height="15.0" fill="rgb(208,168,15)" rx="2" ry="2" />
+<text  x="117.95" y="943.5" ></text>
+</g>
+<g >
+<title>i801_access (507,987,393 samples, 0.14%)</title><rect x="339.4" y="821" width="1.6" height="15.0" fill="rgb(250,93,13)" rx="2" ry="2" />
+<text  x="342.39" y="831.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (101,788,211 samples, 0.03%)</title><rect x="275.4" y="917" width="0.3" height="15.0" fill="rgb(207,40,46)" rx="2" ry="2" />
+<text  x="278.35" y="927.5" ></text>
+</g>
+<g >
+<title>get_page_from_freelist (110,924,951 samples, 0.03%)</title><rect x="476.4" y="837" width="0.3" height="15.0" fill="rgb(250,186,10)" rx="2" ry="2" />
+<text  x="479.39" y="847.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (37,012,273 samples, 0.01%)</title><rect x="24.0" y="885" width="0.1" height="15.0" fill="rgb(240,185,40)" rx="2" ry="2" />
+<text  x="26.99" y="895.5" ></text>
+</g>
+<g >
+<title>cpuidle_reflect (53,222,130 samples, 0.01%)</title><rect x="1125.8" y="901" width="0.2" height="15.0" fill="rgb(231,22,48)" rx="2" ry="2" />
+<text  x="1128.85" y="911.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (192,744,262 samples, 0.05%)</title><rect x="747.9" y="821" width="0.7" height="15.0" fill="rgb(251,64,8)" rx="2" ry="2" />
+<text  x="750.93" y="831.5" ></text>
+</g>
+<g >
+<title>preempt_count_add (50,293,759 samples, 0.01%)</title><rect x="720.1" y="709" width="0.2" height="15.0" fill="rgb(209,60,45)" rx="2" ry="2" />
+<text  x="723.15" y="719.5" ></text>
+</g>
+<g >
+<title>crypt_iv_plain64_gen (114,441,288 samples, 0.03%)</title><rect x="558.2" y="869" width="0.3" height="15.0" fill="rgb(232,129,48)" rx="2" ry="2" />
+<text  x="561.16" y="879.5" ></text>
+</g>
+<g >
+<title>vfs_write (595,191,488 samples, 0.16%)</title><rect x="29.7" y="885" width="1.9" height="15.0" fill="rgb(250,51,16)" rx="2" ry="2" />
+<text  x="32.68" y="895.5" ></text>
+</g>
+<g >
+<title>preempt_count_sub (31,706,927 samples, 0.01%)</title><rect x="708.1" y="677" width="0.1" height="15.0" fill="rgb(253,130,37)" rx="2" ry="2" />
+<text  x="711.09" y="687.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (40,695,991 samples, 0.01%)</title><rect x="143.6" y="725" width="0.1" height="15.0" fill="rgb(246,76,28)" rx="2" ry="2" />
+<text  x="146.59" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (147,373,255 samples, 0.04%)</title><rect x="748.0" y="677" width="0.5" height="15.0" fill="rgb(237,111,45)" rx="2" ry="2" />
+<text  x="751.05" y="687.5" ></text>
+</g>
+<g >
+<title>skb_release_data (37,882,557 samples, 0.01%)</title><rect x="21.1" y="693" width="0.1" height="15.0" fill="rgb(253,4,22)" rx="2" ry="2" />
+<text  x="24.09" y="703.5" ></text>
+</g>
+<g >
+<title>preempt_count_add (36,274,133 samples, 0.01%)</title><rect x="719.3" y="709" width="0.1" height="15.0" fill="rgb(235,146,53)" rx="2" ry="2" />
+<text  x="722.27" y="719.5" ></text>
+</g>
+<g >
+<title>skb_release_data (48,689,446 samples, 0.01%)</title><rect x="307.3" y="725" width="0.1" height="15.0" fill="rgb(232,73,49)" rx="2" ry="2" />
+<text  x="310.29" y="735.5" ></text>
+</g>
+<g >
+<title>process_one_work (5,349,299,957 samples, 1.46%)</title><rect x="557.1" y="917" width="17.2" height="15.0" fill="rgb(213,101,26)" rx="2" ry="2" />
+<text  x="560.08" y="927.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (76,958,364 samples, 0.02%)</title><rect x="707.9" y="693" width="0.3" height="15.0" fill="rgb(237,177,47)" rx="2" ry="2" />
+<text  x="710.95" y="703.5" ></text>
+</g>
+<g >
+<title>validate_xmit_skb (68,767,030 samples, 0.02%)</title><rect x="635.1" y="501" width="0.2" height="15.0" fill="rgb(213,57,11)" rx="2" ry="2" />
+<text  x="638.07" y="511.5" ></text>
+</g>
+<g >
+<title>cairo_show_glyphs (81,168,605 samples, 0.02%)</title><rect x="1176.3" y="949" width="0.3" height="15.0" fill="rgb(211,153,10)" rx="2" ry="2" />
+<text  x="1179.34" y="959.5" ></text>
+</g>
+<g >
+<title>__handle_mm_fault (52,692,425 samples, 0.01%)</title><rect x="227.2" y="901" width="0.2" height="15.0" fill="rgb(248,224,48)" rx="2" ry="2" />
+<text  x="230.21" y="911.5" ></text>
+</g>
+<g >
+<title>[libxul.so] (75,074,342 samples, 0.02%)</title><rect x="159.8" y="965" width="0.3" height="15.0" fill="rgb(236,86,23)" rx="2" ry="2" />
+<text  x="162.84" y="975.5" ></text>
+</g>
+<g >
+<title>ipt_do_table (197,622,063 samples, 0.05%)</title><rect x="323.0" y="661" width="0.7" height="15.0" fill="rgb(220,43,39)" rx="2" ry="2" />
+<text  x="326.05" y="671.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (465,240,042 samples, 0.13%)</title><rect x="1171.5" y="437" width="1.5" height="15.0" fill="rgb(206,98,37)" rx="2" ry="2" />
+<text  x="1174.52" y="447.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (226,758,472 samples, 0.06%)</title><rect x="748.8" y="853" width="0.7" height="15.0" fill="rgb(206,158,1)" rx="2" ry="2" />
+<text  x="751.81" y="863.5" ></text>
+</g>
+<g >
+<title>[libcurl.so.4.8.0] (101,510,445 samples, 0.03%)</title><rect x="668.4" y="709" width="0.3" height="15.0" fill="rgb(254,29,7)" rx="2" ry="2" />
+<text  x="671.36" y="719.5" ></text>
+</g>
+<g >
+<title>shmem_add_to_page_cache (117,108,363 samples, 0.03%)</title><rect x="236.8" y="789" width="0.3" height="15.0" fill="rgb(221,25,16)" rx="2" ry="2" />
+<text  x="239.75" y="799.5" ></text>
+</g>
+<g >
+<title>[libpython3.11.so.1.0] (67,754,465 samples, 0.02%)</title><rect x="244.1" y="837" width="0.2" height="15.0" fill="rgb(217,86,28)" rx="2" ry="2" />
+<text  x="247.09" y="847.5" ></text>
+</g>
+<g >
+<title>[libglamoregl.so] (121,498,678 samples, 0.03%)</title><rect x="217.8" y="869" width="0.4" height="15.0" fill="rgb(218,88,39)" rx="2" ry="2" />
+<text  x="220.77" y="879.5" ></text>
+</g>
+<g >
+<title>__softirqentry_text_start (32,976,826 samples, 0.01%)</title><rect x="915.6" y="821" width="0.1" height="15.0" fill="rgb(228,189,25)" rx="2" ry="2" />
+<text  x="918.64" y="831.5" ></text>
+</g>
+<g >
+<title>nft_do_chain (44,719,403 samples, 0.01%)</title><rect x="743.5" y="421" width="0.1" height="15.0" fill="rgb(232,224,2)" rx="2" ry="2" />
+<text  x="746.46" y="431.5" ></text>
+</g>
+<g >
+<title>lru_add_fn (757,205,480 samples, 0.21%)</title><rect x="701.7" y="693" width="2.4" height="15.0" fill="rgb(236,14,15)" rx="2" ry="2" />
+<text  x="704.71" y="703.5" ></text>
+</g>
+<g >
+<title>__ieee80211_subif_start_xmit (33,482,276 samples, 0.01%)</title><rect x="320.2" y="501" width="0.2" height="15.0" fill="rgb(228,213,16)" rx="2" ry="2" />
+<text  x="323.25" y="511.5" ></text>
+</g>
+<g >
+<title>workingset_eviction (102,219,468 samples, 0.03%)</title><rect x="364.5" y="837" width="0.3" height="15.0" fill="rgb(235,108,5)" rx="2" ry="2" />
+<text  x="367.49" y="847.5" ></text>
+</g>
+<g >
+<title>[unknown] (406,101,456 samples, 0.11%)</title><rect x="52.2" y="965" width="1.3" height="15.0" fill="rgb(232,48,25)" rx="2" ry="2" />
+<text  x="55.17" y="975.5" ></text>
+</g>
+<g >
+<title>eb_validate_vmas (597,955,980 samples, 0.16%)</title><rect x="139.2" y="773" width="2.0" height="15.0" fill="rgb(237,184,16)" rx="2" ry="2" />
+<text  x="142.24" y="783.5" ></text>
+</g>
+<g >
+<title>common_interrupt (62,191,231 samples, 0.02%)</title><rect x="900.1" y="789" width="0.2" height="15.0" fill="rgb(234,165,9)" rx="2" ry="2" />
+<text  x="903.14" y="799.5" ></text>
+</g>
+<g >
+<title>__x64_sys_futex (564,620,083 samples, 0.15%)</title><rect x="816.6" y="821" width="1.9" height="15.0" fill="rgb(210,74,11)" rx="2" ry="2" />
+<text  x="819.63" y="831.5" ></text>
+</g>
+<g >
+<title>qemu_sem_post (122,249,226 samples, 0.03%)</title><rect x="749.1" y="725" width="0.4" height="15.0" fill="rgb(205,70,49)" rx="2" ry="2" />
+<text  x="752.08" y="735.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (3,113,219,294 samples, 0.85%)</title><rect x="750.5" y="853" width="10.1" height="15.0" fill="rgb(220,74,47)" rx="2" ry="2" />
+<text  x="753.54" y="863.5" ></text>
+</g>
+<g >
+<title>sched_clock_cpu (60,269,501 samples, 0.02%)</title><rect x="351.4" y="677" width="0.2" height="15.0" fill="rgb(252,215,20)" rx="2" ry="2" />
+<text  x="354.44" y="687.5" ></text>
+</g>
+<g >
+<title>iwl_mvm_mac_itxq_xmit (75,752,364 samples, 0.02%)</title><rect x="325.6" y="501" width="0.2" height="15.0" fill="rgb(250,139,16)" rx="2" ry="2" />
+<text  x="328.61" y="511.5" ></text>
+</g>
+<g >
+<title>sock_recvmsg (33,609,685 samples, 0.01%)</title><rect x="280.1" y="677" width="0.2" height="15.0" fill="rgb(223,86,12)" rx="2" ry="2" />
+<text  x="283.15" y="687.5" ></text>
+</g>
+<g >
+<title>ct_kernel_exit.constprop.0 (49,494,975 samples, 0.01%)</title><rect x="835.2" y="837" width="0.2" height="15.0" fill="rgb(225,154,15)" rx="2" ry="2" />
+<text  x="838.22" y="847.5" ></text>
+</g>
+<g >
+<title>enqueue_task (1,534,930,673 samples, 0.42%)</title><rect x="1127.8" y="853" width="4.9" height="15.0" fill="rgb(229,215,39)" rx="2" ry="2" />
+<text  x="1130.78" y="863.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (12,396,469,477 samples, 3.38%)</title><rect x="299.4" y="965" width="39.9" height="15.0" fill="rgb(230,198,15)" rx="2" ry="2" />
+<text  x="302.43" y="975.5" >ret..</text>
+</g>
+<g >
+<title>azx_cc_read (32,654,556 samples, 0.01%)</title><rect x="734.6" y="837" width="0.1" height="15.0" fill="rgb(218,227,16)" rx="2" ry="2" />
+<text  x="737.60" y="847.5" ></text>
+</g>
+<g >
+<title>__ip_local_out (200,320,909 samples, 0.05%)</title><rect x="624.6" y="469" width="0.7" height="15.0" fill="rgb(238,30,44)" rx="2" ry="2" />
+<text  x="627.65" y="479.5" ></text>
+</g>
+<g >
+<title>folio_batch_move_lru (95,914,854 samples, 0.03%)</title><rect x="376.2" y="757" width="0.3" height="15.0" fill="rgb(239,133,40)" rx="2" ry="2" />
+<text  x="379.16" y="767.5" ></text>
+</g>
+<g >
+<title>mem_cgroup_wb_stats (146,165,159 samples, 0.04%)</title><rect x="751.2" y="725" width="0.5" height="15.0" fill="rgb(253,43,9)" rx="2" ry="2" />
+<text  x="754.21" y="735.5" ></text>
+</g>
+<g >
+<title>unix_stream_sendmsg (109,487,476 samples, 0.03%)</title><rect x="93.6" y="837" width="0.4" height="15.0" fill="rgb(236,124,16)" rx="2" ry="2" />
+<text  x="96.65" y="847.5" ></text>
+</g>
+<g >
+<title>[libglib-2.0.so.0.7303.0] (248,673,512 samples, 0.07%)</title><rect x="277.8" y="885" width="0.8" height="15.0" fill="rgb(211,214,8)" rx="2" ry="2" />
+<text  x="280.78" y="895.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (40,324,338 samples, 0.01%)</title><rect x="1179.9" y="757" width="0.1" height="15.0" fill="rgb(247,39,17)" rx="2" ry="2" />
+<text  x="1182.89" y="767.5" ></text>
+</g>
+<g >
+<title>clear_page_erms (40,705,266 samples, 0.01%)</title><rect x="236.5" y="789" width="0.1" height="15.0" fill="rgb(229,117,41)" rx="2" ry="2" />
+<text  x="239.49" y="799.5" ></text>
+</g>
+<g >
+<title>__GI___write (179,473,580 samples, 0.05%)</title><rect x="156.3" y="949" width="0.6" height="15.0" fill="rgb(253,4,19)" rx="2" ry="2" />
+<text  x="159.35" y="959.5" ></text>
+</g>
+<g >
+<title>skcipher_walk_virt (349,520,583 samples, 0.10%)</title><rect x="493.5" y="821" width="1.1" height="15.0" fill="rgb(205,167,12)" rx="2" ry="2" />
+<text  x="496.50" y="831.5" ></text>
+</g>
+<g >
+<title>sock_sendmsg (53,535,805 samples, 0.01%)</title><rect x="191.6" y="853" width="0.2" height="15.0" fill="rgb(213,60,32)" rx="2" ry="2" />
+<text  x="194.58" y="863.5" ></text>
+</g>
+<g >
+<title>skcipher_walk_virt (319,024,661 samples, 0.09%)</title><rect x="587.6" y="821" width="1.0" height="15.0" fill="rgb(240,82,43)" rx="2" ry="2" />
+<text  x="590.62" y="831.5" ></text>
+</g>
+<g >
+<title>__x64_sys_ppoll (1,201,184,328 samples, 0.33%)</title><rect x="820.0" y="837" width="3.8" height="15.0" fill="rgb(209,6,13)" rx="2" ry="2" />
+<text  x="822.97" y="847.5" ></text>
+</g>
+<g >
+<title>[libgdk-3.so.0.2404.30] (160,671,508 samples, 0.04%)</title><rect x="277.3" y="885" width="0.5" height="15.0" fill="rgb(241,9,49)" rx="2" ry="2" />
+<text  x="280.26" y="895.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (130,337,331 samples, 0.04%)</title><rect x="142.8" y="901" width="0.4" height="15.0" fill="rgb(234,158,25)" rx="2" ry="2" />
+<text  x="145.81" y="911.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (377,453,258 samples, 0.10%)</title><rect x="644.2" y="725" width="1.3" height="15.0" fill="rgb(212,155,54)" rx="2" ry="2" />
+<text  x="647.24" y="735.5" ></text>
+</g>
+<g >
+<title>kthread (59,185,338 samples, 0.02%)</title><rect x="387.1" y="949" width="0.2" height="15.0" fill="rgb(215,91,26)" rx="2" ry="2" />
+<text  x="390.11" y="959.5" ></text>
+</g>
+<g >
+<title>percpu_ref_put_many.constprop.0 (43,169,103 samples, 0.01%)</title><rect x="357.4" y="837" width="0.1" height="15.0" fill="rgb(219,92,51)" rx="2" ry="2" />
+<text  x="360.40" y="847.5" ></text>
+</g>
+<g >
+<title>__kmalloc_node_track_caller (47,281,376 samples, 0.01%)</title><rect x="47.4" y="773" width="0.2" height="15.0" fill="rgb(239,28,7)" rx="2" ry="2" />
+<text  x="50.41" y="783.5" ></text>
+</g>
+<g >
+<title>mozilla::detail::MutexImpl::unlock (38,916,592 samples, 0.01%)</title><rect x="37.8" y="949" width="0.1" height="15.0" fill="rgb(250,143,8)" rx="2" ry="2" />
+<text  x="40.77" y="959.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (50,996,131 samples, 0.01%)</title><rect x="696.5" y="677" width="0.2" height="15.0" fill="rgb(223,57,23)" rx="2" ry="2" />
+<text  x="699.50" y="687.5" ></text>
+</g>
+<g >
+<title>__sys_sendmsg (118,579,216 samples, 0.03%)</title><rect x="266.6" y="901" width="0.4" height="15.0" fill="rgb(206,59,1)" rx="2" ry="2" />
+<text  x="269.59" y="911.5" ></text>
+</g>
+<g >
+<title>protocol_recv_request_send_reply.isra.0 (329,454,028 samples, 0.09%)</title><rect x="667.9" y="917" width="1.0" height="15.0" fill="rgb(224,51,53)" rx="2" ry="2" />
+<text  x="670.86" y="927.5" ></text>
+</g>
+<g >
+<title>try_charge_memcg (273,422,631 samples, 0.07%)</title><rect x="693.9" y="677" width="0.9" height="15.0" fill="rgb(205,151,52)" rx="2" ry="2" />
+<text  x="696.88" y="687.5" ></text>
+</g>
+<g >
+<title>xa_get_order (258,199,610 samples, 0.07%)</title><rect x="697.7" y="709" width="0.8" height="15.0" fill="rgb(242,186,53)" rx="2" ry="2" />
+<text  x="700.65" y="719.5" ></text>
+</g>
+<g >
+<title>mozilla::detail::MutexImpl::lock (60,520,187 samples, 0.02%)</title><rect x="14.5" y="949" width="0.2" height="15.0" fill="rgb(220,224,3)" rx="2" ry="2" />
+<text  x="17.48" y="959.5" ></text>
+</g>
+<g >
+<title>syscall (87,688,202 samples, 0.02%)</title><rect x="15.1" y="949" width="0.2" height="15.0" fill="rgb(238,181,6)" rx="2" ry="2" />
+<text  x="18.06" y="959.5" ></text>
+</g>
+<g >
+<title>tcp_data_queue (120,762,390 samples, 0.03%)</title><rect x="661.6" y="421" width="0.4" height="15.0" fill="rgb(232,75,46)" rx="2" ry="2" />
+<text  x="664.61" y="431.5" ></text>
+</g>
+<g >
+<title>__libc_start_main_alias_2 (3,006,827,593 samples, 0.82%)</title><rect x="819.1" y="949" width="9.6" height="15.0" fill="rgb(227,102,2)" rx="2" ry="2" />
+<text  x="822.06" y="959.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (72,610,223 samples, 0.02%)</title><rect x="135.1" y="837" width="0.2" height="15.0" fill="rgb(205,83,0)" rx="2" ry="2" />
+<text  x="138.09" y="847.5" ></text>
+</g>
+<g >
+<title>xfs_vm_writepages (731,696,513 samples, 0.20%)</title><rect x="437.7" y="805" width="2.4" height="15.0" fill="rgb(246,150,5)" rx="2" ry="2" />
+<text  x="440.73" y="815.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock_irqsave (33,847,705 samples, 0.01%)</title><rect x="707.6" y="693" width="0.1" height="15.0" fill="rgb(206,192,25)" rx="2" ry="2" />
+<text  x="710.58" y="703.5" ></text>
+</g>
+<g >
+<title>qio_channel_read_all (75,494,671 samples, 0.02%)</title><rect x="744.7" y="741" width="0.2" height="15.0" fill="rgb(207,65,13)" rx="2" ry="2" />
+<text  x="747.68" y="751.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (322,746,488 samples, 0.09%)</title><rect x="22.2" y="837" width="1.1" height="15.0" fill="rgb(223,47,4)" rx="2" ry="2" />
+<text  x="25.24" y="847.5" ></text>
+</g>
+<g >
+<title>irq/139-iwlwifi (12,469,036,035 samples, 3.40%)</title><rect x="299.2" y="981" width="40.1" height="15.0" fill="rgb(234,167,13)" rx="2" ry="2" />
+<text  x="302.20" y="991.5" >irq..</text>
+</g>
+<g >
+<title>_raw_spin_lock_irqsave (50,057,673 samples, 0.01%)</title><rect x="477.9" y="725" width="0.2" height="15.0" fill="rgb(217,37,50)" rx="2" ry="2" />
+<text  x="480.89" y="735.5" ></text>
+</g>
+<g >
+<title>_mid_memalign.constprop.0 (77,692,825 samples, 0.02%)</title><rect x="747.7" y="773" width="0.2" height="15.0" fill="rgb(230,202,39)" rx="2" ry="2" />
+<text  x="750.67" y="783.5" ></text>
+</g>
+<g >
+<title>__mod_lruvec_page_state (41,300,941 samples, 0.01%)</title><rect x="397.2" y="789" width="0.1" height="15.0" fill="rgb(220,11,38)" rx="2" ry="2" />
+<text  x="400.15" y="799.5" ></text>
+</g>
+<g >
+<title>nf_conntrack_in (58,449,297 samples, 0.02%)</title><rect x="321.0" y="645" width="0.2" height="15.0" fill="rgb(206,34,4)" rx="2" ry="2" />
+<text  x="323.98" y="655.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (78,381,581 samples, 0.02%)</title><rect x="1172.3" y="69" width="0.2" height="15.0" fill="rgb(246,192,18)" rx="2" ry="2" />
+<text  x="1175.29" y="79.5" ></text>
+</g>
+<g >
+<title>xfs_trans_alloc (91,863,353 samples, 0.03%)</title><rect x="722.5" y="741" width="0.3" height="15.0" fill="rgb(230,163,14)" rx="2" ry="2" />
+<text  x="725.47" y="751.5" ></text>
+</g>
+<g >
+<title>__i915_gem_object_get_pages (318,884,839 samples, 0.09%)</title><rect x="139.5" y="741" width="1.0" height="15.0" fill="rgb(241,41,31)" rx="2" ry="2" />
+<text  x="142.46" y="751.5" ></text>
+</g>
+<g >
+<title>[libgbm.so.1.0.0] (31,687,207 samples, 0.01%)</title><rect x="209.8" y="869" width="0.1" height="15.0" fill="rgb(208,207,44)" rx="2" ry="2" />
+<text  x="212.79" y="879.5" ></text>
+</g>
+<g >
+<title>[libEGL_mesa.so.0.0.0] (761,139,318 samples, 0.21%)</title><rect x="143.3" y="917" width="2.4" height="15.0" fill="rgb(246,154,20)" rx="2" ry="2" />
+<text  x="146.25" y="927.5" ></text>
+</g>
+<g >
+<title>kcryptd_crypt (4,575,880,720 samples, 1.25%)</title><rect x="557.1" y="901" width="14.8" height="15.0" fill="rgb(248,220,46)" rx="2" ry="2" />
+<text  x="560.12" y="911.5" ></text>
+</g>
+<g >
+<title>intel_atomic_commit_tail (34,755,553 samples, 0.01%)</title><rect x="613.9" y="901" width="0.1" height="15.0" fill="rgb(251,126,46)" rx="2" ry="2" />
+<text  x="616.85" y="911.5" ></text>
+</g>
+<g >
+<title>sysprof_collector_mark_vprintf (32,107,589 samples, 0.01%)</title><rect x="278.5" y="869" width="0.1" height="15.0" fill="rgb(228,114,8)" rx="2" ry="2" />
+<text  x="281.48" y="879.5" ></text>
+</g>
+<g >
+<title>snd_ctl_ioctl (45,693,563 samples, 0.01%)</title><rect x="734.4" y="917" width="0.1" height="15.0" fill="rgb(212,77,48)" rx="2" ry="2" />
+<text  x="737.35" y="927.5" ></text>
+</g>
+<g >
+<title>common_interrupt (2,415,262,896 samples, 0.66%)</title><rect x="890.5" y="853" width="7.7" height="15.0" fill="rgb(239,57,29)" rx="2" ry="2" />
+<text  x="893.47" y="863.5" ></text>
+</g>
+<g >
+<title>drm_syncobj_array_find (55,527,121 samples, 0.02%)</title><rect x="232.6" y="869" width="0.2" height="15.0" fill="rgb(219,3,16)" rx="2" ry="2" />
+<text  x="235.57" y="879.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (51,647,751 samples, 0.01%)</title><rect x="1169.8" y="949" width="0.1" height="15.0" fill="rgb(239,180,13)" rx="2" ry="2" />
+<text  x="1172.76" y="959.5" ></text>
+</g>
+<g >
+<title>[libcairo.so.2.11706.0] (33,341,685 samples, 0.01%)</title><rect x="1170.1" y="949" width="0.1" height="15.0" fill="rgb(234,153,49)" rx="2" ry="2" />
+<text  x="1173.11" y="959.5" ></text>
+</g>
+<g >
+<title>update_get_addr (53,769,115 samples, 0.01%)</title><rect x="94.4" y="933" width="0.2" height="15.0" fill="rgb(209,31,47)" rx="2" ry="2" />
+<text  x="97.43" y="943.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (403,254,794 samples, 0.11%)</title><rect x="323.0" y="677" width="1.3" height="15.0" fill="rgb(223,38,40)" rx="2" ry="2" />
+<text  x="325.99" y="687.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (33,486,875 samples, 0.01%)</title><rect x="815.9" y="837" width="0.1" height="15.0" fill="rgb(212,171,39)" rx="2" ry="2" />
+<text  x="818.87" y="847.5" ></text>
+</g>
+<g >
+<title>node_dirty_ok (189,036,409 samples, 0.05%)</title><rect x="708.5" y="693" width="0.6" height="15.0" fill="rgb(209,26,48)" rx="2" ry="2" />
+<text  x="711.50" y="703.5" ></text>
+</g>
+<g >
+<title>__folio_start_writeback (120,160,375 samples, 0.03%)</title><rect x="502.5" y="741" width="0.4" height="15.0" fill="rgb(254,229,17)" rx="2" ry="2" />
+<text  x="505.50" y="751.5" ></text>
+</g>
+<g >
+<title>mod_lruvec_page_state (60,085,196 samples, 0.02%)</title><rect x="524.1" y="725" width="0.2" height="15.0" fill="rgb(245,97,36)" rx="2" ry="2" />
+<text  x="527.09" y="735.5" ></text>
+</g>
+<g >
+<title>poll_freewait (40,175,625 samples, 0.01%)</title><rect x="650.8" y="645" width="0.2" height="15.0" fill="rgb(237,169,45)" rx="2" ry="2" />
+<text  x="653.84" y="655.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (216,732,047 samples, 0.06%)</title><rect x="1177.8" y="693" width="0.7" height="15.0" fill="rgb(230,206,30)" rx="2" ry="2" />
+<text  x="1180.78" y="703.5" ></text>
+</g>
+<g >
+<title>preempt_count_add (59,313,177 samples, 0.02%)</title><rect x="709.2" y="693" width="0.2" height="15.0" fill="rgb(237,26,14)" rx="2" ry="2" />
+<text  x="712.23" y="703.5" ></text>
+</g>
+<g >
+<title>sched_ttwu_pending (32,545,205 samples, 0.01%)</title><rect x="915.8" y="821" width="0.1" height="15.0" fill="rgb(247,92,30)" rx="2" ry="2" />
+<text  x="918.78" y="831.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (320,432,865 samples, 0.09%)</title><rect x="131.4" y="805" width="1.0" height="15.0" fill="rgb(220,195,46)" rx="2" ry="2" />
+<text  x="134.39" y="815.5" ></text>
+</g>
+<g >
+<title>select_task_rq_fair (71,472,149 samples, 0.02%)</title><rect x="48.1" y="693" width="0.2" height="15.0" fill="rgb(210,11,1)" rx="2" ry="2" />
+<text  x="51.10" y="703.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock_bh (102,714,659 samples, 0.03%)</title><rect x="632.1" y="405" width="0.3" height="15.0" fill="rgb(224,30,27)" rx="2" ry="2" />
+<text  x="635.09" y="415.5" ></text>
+</g>
+<g >
+<title>update_curr (41,845,436 samples, 0.01%)</title><rect x="34.0" y="757" width="0.2" height="15.0" fill="rgb(216,89,9)" rx="2" ry="2" />
+<text  x="37.03" y="767.5" ></text>
+</g>
+<g >
+<title>get_page_from_freelist (71,487,383 samples, 0.02%)</title><rect x="614.2" y="853" width="0.2" height="15.0" fill="rgb(252,67,49)" rx="2" ry="2" />
+<text  x="617.19" y="863.5" ></text>
+</g>
+<g >
+<title>__i2c_smbus_xfer (508,163,189 samples, 0.14%)</title><rect x="339.4" y="837" width="1.6" height="15.0" fill="rgb(247,74,51)" rx="2" ry="2" />
+<text  x="342.39" y="847.5" ></text>
+</g>
+<g >
+<title>___sys_recvmsg (106,861,666 samples, 0.03%)</title><rect x="44.5" y="869" width="0.4" height="15.0" fill="rgb(216,26,46)" rx="2" ry="2" />
+<text  x="47.55" y="879.5" ></text>
+</g>
+<g >
+<title>select_task_rq_fair (103,225,521 samples, 0.03%)</title><rect x="30.1" y="789" width="0.4" height="15.0" fill="rgb(246,149,48)" rx="2" ry="2" />
+<text  x="33.14" y="799.5" ></text>
+</g>
+<g >
+<title>update_blocked_averages (37,192,596 samples, 0.01%)</title><rect x="13.8" y="741" width="0.1" height="15.0" fill="rgb(238,197,27)" rx="2" ry="2" />
+<text  x="16.77" y="751.5" ></text>
+</g>
+<g >
+<title>_int_malloc (72,488,139 samples, 0.02%)</title><rect x="745.9" y="789" width="0.3" height="15.0" fill="rgb(237,191,17)" rx="2" ry="2" />
+<text  x="748.94" y="799.5" ></text>
+</g>
+<g >
+<title>xas_alloc (91,625,317 samples, 0.02%)</title><rect x="700.2" y="677" width="0.3" height="15.0" fill="rgb(225,198,47)" rx="2" ry="2" />
+<text  x="703.20" y="687.5" ></text>
+</g>
+<g >
+<title>[libglib-2.0.so.0.7303.0] (1,700,436,463 samples, 0.46%)</title><rect x="1176.8" y="917" width="5.4" height="15.0" fill="rgb(241,209,53)" rx="2" ry="2" />
+<text  x="1179.76" y="927.5" ></text>
+</g>
+<g >
+<title>[firefox] (50,539,657 samples, 0.01%)</title><rect x="37.2" y="901" width="0.2" height="15.0" fill="rgb(245,220,51)" rx="2" ry="2" />
+<text  x="40.21" y="911.5" ></text>
+</g>
+<g >
+<title>memset_erms (147,694,042 samples, 0.04%)</title><rect x="500.7" y="853" width="0.4" height="15.0" fill="rgb(235,146,13)" rx="2" ry="2" />
+<text  x="503.65" y="863.5" ></text>
+</g>
+<g >
+<title>security_socket_recvmsg (140,116,052 samples, 0.04%)</title><rect x="639.8" y="597" width="0.4" height="15.0" fill="rgb(254,37,11)" rx="2" ry="2" />
+<text  x="642.75" y="607.5" ></text>
+</g>
+<g >
+<title>iwl_mvm_rx_rx_mpdu (706,490,472 samples, 0.19%)</title><rect x="315.9" y="773" width="2.2" height="15.0" fill="rgb(246,11,6)" rx="2" ry="2" />
+<text  x="318.87" y="783.5" ></text>
+</g>
+<g >
+<title>xfs_ilock_for_iomap (36,827,319 samples, 0.01%)</title><rect x="688.4" y="741" width="0.1" height="15.0" fill="rgb(250,184,23)" rx="2" ry="2" />
+<text  x="691.36" y="751.5" ></text>
+</g>
+<g >
+<title>__schedule (146,094,940 samples, 0.04%)</title><rect x="289.8" y="869" width="0.4" height="15.0" fill="rgb(245,26,14)" rx="2" ry="2" />
+<text  x="292.76" y="879.5" ></text>
+</g>
+<g >
+<title>[libxul.so] (78,274,222 samples, 0.02%)</title><rect x="42.3" y="949" width="0.3" height="15.0" fill="rgb(229,2,51)" rx="2" ry="2" />
+<text  x="45.33" y="959.5" ></text>
+</g>
+<g >
+<title>xas_load (32,929,176 samples, 0.01%)</title><rect x="383.9" y="789" width="0.1" height="15.0" fill="rgb(242,195,45)" rx="2" ry="2" />
+<text  x="386.88" y="799.5" ></text>
+</g>
+<g >
+<title>[modesetting_drv.so] (67,861,663 samples, 0.02%)</title><rect x="210.6" y="885" width="0.2" height="15.0" fill="rgb(242,207,22)" rx="2" ry="2" />
+<text  x="213.62" y="895.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (52,650,394 samples, 0.01%)</title><rect x="633.9" y="357" width="0.2" height="15.0" fill="rgb(252,128,14)" rx="2" ry="2" />
+<text  x="636.89" y="367.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (204,975,026 samples, 0.06%)</title><rect x="1177.8" y="645" width="0.7" height="15.0" fill="rgb(253,90,42)" rx="2" ry="2" />
+<text  x="1180.82" y="655.5" ></text>
+</g>
+<g >
+<title>mod_lruvec_page_state (37,329,697 samples, 0.01%)</title><rect x="502.3" y="741" width="0.1" height="15.0" fill="rgb(219,177,34)" rx="2" ry="2" />
+<text  x="505.27" y="751.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (81,747,370 samples, 0.02%)</title><rect x="749.7" y="965" width="0.3" height="15.0" fill="rgb(225,100,49)" rx="2" ry="2" />
+<text  x="752.71" y="975.5" ></text>
+</g>
+<g >
+<title>g_main_loop_run (1,074,179,971 samples, 0.29%)</title><rect x="1171.3" y="933" width="3.5" height="15.0" fill="rgb(206,189,30)" rx="2" ry="2" />
+<text  x="1174.31" y="943.5" ></text>
+</g>
+<g >
+<title>ip6_finish_output (806,495,003 samples, 0.22%)</title><rect x="740.1" y="453" width="2.6" height="15.0" fill="rgb(219,174,14)" rx="2" ry="2" />
+<text  x="743.10" y="463.5" ></text>
+</g>
+<g >
+<title>[ssh] (40,868,336 samples, 0.01%)</title><rect x="830.4" y="805" width="0.2" height="15.0" fill="rgb(241,45,43)" rx="2" ry="2" />
+<text  x="833.44" y="815.5" ></text>
+</g>
+<g >
+<title>__GI___write (424,887,003 samples, 0.12%)</title><rect x="85.6" y="949" width="1.4" height="15.0" fill="rgb(214,39,13)" rx="2" ry="2" />
+<text  x="88.63" y="959.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (85,718,761 samples, 0.02%)</title><rect x="217.5" y="789" width="0.3" height="15.0" fill="rgb(246,186,17)" rx="2" ry="2" />
+<text  x="220.49" y="799.5" ></text>
+</g>
+<g >
+<title>worker_thread (6,394,469,560 samples, 1.74%)</title><rect x="440.1" y="933" width="20.6" height="15.0" fill="rgb(242,35,12)" rx="2" ry="2" />
+<text  x="443.14" y="943.5" ></text>
+</g>
+<g >
+<title>ieee80211_sta_tx_notify (38,282,463 samples, 0.01%)</title><rect x="312.2" y="709" width="0.2" height="15.0" fill="rgb(208,229,18)" rx="2" ry="2" />
+<text  x="315.25" y="719.5" ></text>
+</g>
+<g >
+<title>curl_getenv (46,880,807 samples, 0.01%)</title><rect x="643.4" y="725" width="0.2" height="15.0" fill="rgb(232,210,35)" rx="2" ry="2" />
+<text  x="646.41" y="735.5" ></text>
+</g>
+<g >
+<title>ip_output (138,498,146 samples, 0.04%)</title><rect x="638.0" y="533" width="0.5" height="15.0" fill="rgb(205,52,43)" rx="2" ry="2" />
+<text  x="641.01" y="543.5" ></text>
+</g>
+<g >
+<title>__vdso_clock_gettime (38,522,915 samples, 0.01%)</title><rect x="100.6" y="885" width="0.2" height="15.0" fill="rgb(226,100,49)" rx="2" ry="2" />
+<text  x="103.63" y="895.5" ></text>
+</g>
+<g >
+<title>__dev_queue_xmit (39,504,762 samples, 0.01%)</title><rect x="320.2" y="549" width="0.2" height="15.0" fill="rgb(250,83,2)" rx="2" ry="2" />
+<text  x="323.24" y="559.5" ></text>
+</g>
+<g >
+<title>consume_skb (133,216,015 samples, 0.04%)</title><rect x="39.6" y="805" width="0.4" height="15.0" fill="rgb(236,3,42)" rx="2" ry="2" />
+<text  x="42.58" y="815.5" ></text>
+</g>
+<g >
+<title>tcp_recvmsg_locked (191,868,570 samples, 0.05%)</title><rect x="745.0" y="565" width="0.7" height="15.0" fill="rgb(248,89,32)" rx="2" ry="2" />
+<text  x="748.04" y="575.5" ></text>
+</g>
+<g >
+<title>i915_vma_resource_unbind (39,510,279 samples, 0.01%)</title><rect x="377.8" y="757" width="0.2" height="15.0" fill="rgb(245,117,40)" rx="2" ry="2" />
+<text  x="380.84" y="767.5" ></text>
+</g>
+<g >
+<title>kworker/u16:0-k (6,813,455,833 samples, 1.86%)</title><rect x="398.2" y="981" width="22.0" height="15.0" fill="rgb(205,32,52)" rx="2" ry="2" />
+<text  x="401.24" y="991.5" >k..</text>
+</g>
+<g >
+<title>drm_crtc_get_sequence_ioctl (53,391,093 samples, 0.01%)</title><rect x="231.7" y="885" width="0.2" height="15.0" fill="rgb(221,136,1)" rx="2" ry="2" />
+<text  x="234.75" y="895.5" ></text>
+</g>
+<g >
+<title>shmem_alloc_folio (70,626,370 samples, 0.02%)</title><rect x="237.2" y="773" width="0.2" height="15.0" fill="rgb(234,81,30)" rx="2" ry="2" />
+<text  x="240.22" y="783.5" ></text>
+</g>
+<g >
+<title>kfree (31,303,041 samples, 0.01%)</title><rect x="333.6" y="789" width="0.1" height="15.0" fill="rgb(216,124,38)" rx="2" ry="2" />
+<text  x="336.55" y="799.5" ></text>
+</g>
+<g >
+<title>g_signal_emit (70,985,493 samples, 0.02%)</title><rect x="1179.5" y="645" width="0.3" height="15.0" fill="rgb(216,229,34)" rx="2" ry="2" />
+<text  x="1182.53" y="655.5" ></text>
+</g>
+<g >
+<title>write_cache_pages (556,006,081 samples, 0.15%)</title><rect x="595.3" y="773" width="1.8" height="15.0" fill="rgb(253,80,27)" rx="2" ry="2" />
+<text  x="598.32" y="783.5" ></text>
+</g>
+<g >
+<title>iomap_finish_ioends (886,577,408 samples, 0.24%)</title><rect x="382.8" y="869" width="2.9" height="15.0" fill="rgb(232,15,40)" rx="2" ry="2" />
+<text  x="385.82" y="879.5" ></text>
+</g>
+<g >
+<title>[firefox] (131,677,382 samples, 0.04%)</title><rect x="103.1" y="917" width="0.4" height="15.0" fill="rgb(222,50,29)" rx="2" ry="2" />
+<text  x="106.12" y="927.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (187,583,420 samples, 0.05%)</title><rect x="280.0" y="757" width="0.6" height="15.0" fill="rgb(252,7,54)" rx="2" ry="2" />
+<text  x="283.02" y="767.5" ></text>
+</g>
+<g >
+<title>do_writepages (163,900,072 samples, 0.04%)</title><rect x="533.4" y="821" width="0.5" height="15.0" fill="rgb(244,53,10)" rx="2" ry="2" />
+<text  x="536.40" y="831.5" ></text>
+</g>
+<g >
+<title>__alloc_skb (36,100,704 samples, 0.01%)</title><rect x="93.7" y="789" width="0.2" height="15.0" fill="rgb(222,32,42)" rx="2" ry="2" />
+<text  x="96.74" y="799.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (191,021,197 samples, 0.05%)</title><rect x="742.0" y="293" width="0.6" height="15.0" fill="rgb(250,23,6)" rx="2" ry="2" />
+<text  x="744.96" y="303.5" ></text>
+</g>
+<g >
+<title>crypt_page_alloc (242,663,049 samples, 0.07%)</title><rect x="594.5" y="869" width="0.8" height="15.0" fill="rgb(236,133,9)" rx="2" ry="2" />
+<text  x="597.53" y="879.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (580,454,428 samples, 0.16%)</title><rect x="119.6" y="917" width="1.9" height="15.0" fill="rgb(233,116,27)" rx="2" ry="2" />
+<text  x="122.62" y="927.5" ></text>
+</g>
+<g >
+<title>iomap_file_buffered_write (15,234,089,243 samples, 4.16%)</title><rect x="672.4" y="789" width="49.0" height="15.0" fill="rgb(240,184,29)" rx="2" ry="2" />
+<text  x="675.40" y="799.5" >ioma..</text>
+</g>
+<g >
+<title>__softirqentry_text_start (246,008,450 samples, 0.07%)</title><rect x="896.3" y="821" width="0.8" height="15.0" fill="rgb(238,133,43)" rx="2" ry="2" />
+<text  x="899.32" y="831.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (357,589,644 samples, 0.10%)</title><rect x="85.7" y="933" width="1.2" height="15.0" fill="rgb(222,178,51)" rx="2" ry="2" />
+<text  x="88.72" y="943.5" ></text>
+</g>
+<g >
+<title>[unknown] (153,824,882 samples, 0.04%)</title><rect x="615.9" y="965" width="0.5" height="15.0" fill="rgb(214,67,29)" rx="2" ry="2" />
+<text  x="618.95" y="975.5" ></text>
+</g>
+<g >
+<title>execute_command (48,180,599 samples, 0.01%)</title><rect x="243.4" y="709" width="0.2" height="15.0" fill="rgb(218,130,35)" rx="2" ry="2" />
+<text  x="246.42" y="719.5" ></text>
+</g>
+<g >
+<title>read_tsc (38,544,395 samples, 0.01%)</title><rect x="1154.4" y="869" width="0.1" height="15.0" fill="rgb(242,175,27)" rx="2" ry="2" />
+<text  x="1157.41" y="879.5" ></text>
+</g>
+<g >
+<title>__wake_up_common (76,639,530 samples, 0.02%)</title><rect x="661.7" y="373" width="0.2" height="15.0" fill="rgb(208,39,22)" rx="2" ry="2" />
+<text  x="664.70" y="383.5" ></text>
+</g>
+<g >
+<title>account_idle_time (47,745,629 samples, 0.01%)</title><rect x="908.1" y="741" width="0.2" height="15.0" fill="rgb(247,16,1)" rx="2" ry="2" />
+<text  x="911.11" y="751.5" ></text>
+</g>
+<g >
+<title>load_balance (41,941,822 samples, 0.01%)</title><rect x="22.7" y="693" width="0.2" height="15.0" fill="rgb(254,188,12)" rx="2" ry="2" />
+<text  x="25.73" y="703.5" ></text>
+</g>
+<g >
+<title>kworker/1:2-mm_ (59,310,802 samples, 0.02%)</title><rect x="387.1" y="981" width="0.2" height="15.0" fill="rgb(223,3,15)" rx="2" ry="2" />
+<text  x="390.11" y="991.5" ></text>
+</g>
+<g >
+<title>process_one_work (919,464,448 samples, 0.25%)</title><rect x="382.8" y="917" width="2.9" height="15.0" fill="rgb(216,101,46)" rx="2" ry="2" />
+<text  x="385.75" y="927.5" ></text>
+</g>
+<g >
+<title>curl_maprintf (51,579,283 samples, 0.01%)</title><rect x="643.6" y="725" width="0.1" height="15.0" fill="rgb(252,29,53)" rx="2" ry="2" />
+<text  x="646.56" y="735.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (259,694,437 samples, 0.07%)</title><rect x="200.2" y="885" width="0.8" height="15.0" fill="rgb(244,202,30)" rx="2" ry="2" />
+<text  x="203.16" y="895.5" ></text>
+</g>
+<g >
+<title>regmap_read (62,763,668 samples, 0.02%)</title><rect x="895.8" y="757" width="0.2" height="15.0" fill="rgb(218,79,8)" rx="2" ry="2" />
+<text  x="898.82" y="767.5" ></text>
+</g>
+<g >
+<title>tcp_data_queue (544,952,215 samples, 0.15%)</title><rect x="327.1" y="613" width="1.7" height="15.0" fill="rgb(218,27,4)" rx="2" ry="2" />
+<text  x="330.07" y="623.5" ></text>
+</g>
+<g >
+<title>[Xorg] (32,077,097 samples, 0.01%)</title><rect x="53.9" y="933" width="0.1" height="15.0" fill="rgb(220,216,51)" rx="2" ry="2" />
+<text  x="56.88" y="943.5" ></text>
+</g>
+<g >
+<title>psi_group_change (57,686,515 samples, 0.02%)</title><rect x="817.9" y="709" width="0.2" height="15.0" fill="rgb(252,4,51)" rx="2" ry="2" />
+<text  x="820.91" y="719.5" ></text>
+</g>
+<g >
+<title>prune_icache_sb (39,435,497 samples, 0.01%)</title><rect x="382.2" y="837" width="0.1" height="15.0" fill="rgb(249,7,22)" rx="2" ry="2" />
+<text  x="385.18" y="847.5" ></text>
+</g>
+<g >
+<title>free_pcppages_bulk (62,310,964 samples, 0.02%)</title><rect x="333.3" y="773" width="0.2" height="15.0" fill="rgb(221,42,37)" rx="2" ry="2" />
+<text  x="336.29" y="783.5" ></text>
+</g>
+<g >
+<title>dev_hard_start_xmit (333,318,915 samples, 0.09%)</title><rect x="623.4" y="453" width="1.1" height="15.0" fill="rgb(244,140,2)" rx="2" ry="2" />
+<text  x="626.41" y="463.5" ></text>
+</g>
+<g >
+<title>do_sys_poll (1,849,137,846 samples, 0.50%)</title><rect x="650.0" y="661" width="6.0" height="15.0" fill="rgb(222,154,25)" rx="2" ry="2" />
+<text  x="653.02" y="671.5" ></text>
+</g>
+<g >
+<title>[firefox] (36,284,410 samples, 0.01%)</title><rect x="16.6" y="917" width="0.1" height="15.0" fill="rgb(222,144,39)" rx="2" ry="2" />
+<text  x="19.59" y="927.5" ></text>
+</g>
+<g >
+<title>pollwake (105,904,776 samples, 0.03%)</title><rect x="815.3" y="773" width="0.3" height="15.0" fill="rgb(220,212,32)" rx="2" ry="2" />
+<text  x="818.27" y="783.5" ></text>
+</g>
+<g >
+<title>i915_active_acquire_preallocate_barrier (55,083,176 samples, 0.02%)</title><rect x="138.9" y="741" width="0.1" height="15.0" fill="rgb(250,116,45)" rx="2" ry="2" />
+<text  x="141.85" y="751.5" ></text>
+</g>
+<g >
+<title>__xa_clear_mark (48,403,518 samples, 0.01%)</title><rect x="383.8" y="805" width="0.2" height="15.0" fill="rgb(211,55,41)" rx="2" ry="2" />
+<text  x="386.83" y="815.5" ></text>
+</g>
+<g >
+<title>[libcrypto.so.3.0.5] (65,849,563 samples, 0.02%)</title><rect x="284.8" y="613" width="0.2" height="15.0" fill="rgb(236,88,11)" rx="2" ry="2" />
+<text  x="287.77" y="623.5" ></text>
+</g>
+<g >
+<title>sockfd_lookup_light (51,195,378 samples, 0.01%)</title><rect x="40.6" y="869" width="0.2" height="15.0" fill="rgb(237,80,10)" rx="2" ry="2" />
+<text  x="43.60" y="879.5" ></text>
+</g>
+<g >
+<title>___pthread_cond_timedwait (512,920,906 samples, 0.14%)</title><rect x="157.9" y="917" width="1.6" height="15.0" fill="rgb(253,1,29)" rx="2" ry="2" />
+<text  x="160.87" y="927.5" ></text>
+</g>
+<g >
+<title>pipe_write (142,479,409 samples, 0.04%)</title><rect x="86.0" y="869" width="0.5" height="15.0" fill="rgb(229,111,48)" rx="2" ry="2" />
+<text  x="89.01" y="879.5" ></text>
+</g>
+<g >
+<title>__dev_queue_xmit (389,546,697 samples, 0.11%)</title><rect x="623.4" y="469" width="1.2" height="15.0" fill="rgb(250,65,32)" rx="2" ry="2" />
+<text  x="626.36" y="479.5" ></text>
+</g>
+<g >
+<title>free_unref_page (89,898,106 samples, 0.02%)</title><rect x="344.8" y="869" width="0.3" height="15.0" fill="rgb(226,97,19)" rx="2" ry="2" />
+<text  x="347.80" y="879.5" ></text>
+</g>
+<g >
+<title>release_sock (40,732,063 samples, 0.01%)</title><rect x="628.5" y="581" width="0.1" height="15.0" fill="rgb(211,97,53)" rx="2" ry="2" />
+<text  x="631.50" y="591.5" ></text>
+</g>
+<g >
+<title>copy_page_from_iter_atomic (349,258,672 samples, 0.10%)</title><rect x="751.8" y="757" width="1.1" height="15.0" fill="rgb(229,162,51)" rx="2" ry="2" />
+<text  x="754.75" y="767.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (51,185,883 samples, 0.01%)</title><rect x="695.8" y="661" width="0.2" height="15.0" fill="rgb(230,191,46)" rx="2" ry="2" />
+<text  x="698.83" y="671.5" ></text>
+</g>
+<g >
+<title>kthread (45,168,634 samples, 0.01%)</title><rect x="386.9" y="949" width="0.2" height="15.0" fill="rgb(224,212,44)" rx="2" ry="2" />
+<text  x="389.94" y="959.5" ></text>
+</g>
+<g >
+<title>__fget_light (92,387,169 samples, 0.03%)</title><rect x="650.4" y="645" width="0.3" height="15.0" fill="rgb(220,165,51)" rx="2" ry="2" />
+<text  x="653.44" y="655.5" ></text>
+</g>
+<g >
+<title>tcp_recvmsg (199,164,168 samples, 0.05%)</title><rect x="745.0" y="581" width="0.7" height="15.0" fill="rgb(245,48,37)" rx="2" ry="2" />
+<text  x="748.01" y="591.5" ></text>
+</g>
+<g >
+<title>__alloc_pages_slowpath.constprop.0 (46,971,782 samples, 0.01%)</title><rect x="664.9" y="677" width="0.1" height="15.0" fill="rgb(219,108,16)" rx="2" ry="2" />
+<text  x="667.86" y="687.5" ></text>
+</g>
+<g >
+<title>inet6_csk_route_socket (33,717,146 samples, 0.01%)</title><rect x="659.8" y="661" width="0.1" height="15.0" fill="rgb(223,66,38)" rx="2" ry="2" />
+<text  x="662.81" y="671.5" ></text>
+</g>
+<g >
+<title>iwl_mvm_set_tx_params (157,862,704 samples, 0.04%)</title><rect x="633.6" y="373" width="0.5" height="15.0" fill="rgb(220,99,0)" rx="2" ry="2" />
+<text  x="636.56" y="383.5" ></text>
+</g>
+<g >
+<title>do_sys_poll (42,442,449 samples, 0.01%)</title><rect x="20.5" y="757" width="0.1" height="15.0" fill="rgb(227,2,8)" rx="2" ry="2" />
+<text  x="23.48" y="767.5" ></text>
+</g>
+<g >
+<title>nfs4_xattr_entry_count (153,276,737 samples, 0.04%)</title><rect x="379.0" y="853" width="0.5" height="15.0" fill="rgb(210,155,37)" rx="2" ry="2" />
+<text  x="381.98" y="863.5" ></text>
+</g>
+<g >
+<title>preempt_count_add (46,556,728 samples, 0.01%)</title><rect x="470.6" y="805" width="0.1" height="15.0" fill="rgb(216,29,15)" rx="2" ry="2" />
+<text  x="473.57" y="815.5" ></text>
+</g>
+<g >
+<title>asm_common_interrupt (64,938,676 samples, 0.02%)</title><rect x="900.1" y="805" width="0.2" height="15.0" fill="rgb(226,41,49)" rx="2" ry="2" />
+<text  x="903.13" y="815.5" ></text>
+</g>
+<g >
+<title>do_shrink_slab (49,031,215 samples, 0.01%)</title><rect x="705.5" y="629" width="0.1" height="15.0" fill="rgb(225,58,0)" rx="2" ry="2" />
+<text  x="708.47" y="639.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (78,958,783 samples, 0.02%)</title><rect x="1166.2" y="773" width="0.3" height="15.0" fill="rgb(247,100,36)" rx="2" ry="2" />
+<text  x="1169.20" y="783.5" ></text>
+</g>
+<g >
+<title>syscall_return_via_sysret (54,078,631 samples, 0.01%)</title><rect x="41.1" y="917" width="0.2" height="15.0" fill="rgb(235,11,44)" rx="2" ry="2" />
+<text  x="44.12" y="927.5" ></text>
+</g>
+<g >
+<title>[xfwm4] (196,178,158 samples, 0.05%)</title><rect x="1187.5" y="869" width="0.6" height="15.0" fill="rgb(217,83,23)" rx="2" ry="2" />
+<text  x="1190.50" y="879.5" ></text>
+</g>
+<g >
+<title>xfs_alloc_cur_check (31,415,787 samples, 0.01%)</title><rect x="753.5" y="581" width="0.1" height="15.0" fill="rgb(211,104,44)" rx="2" ry="2" />
+<text  x="756.49" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (16,535,135,243 samples, 4.51%)</title><rect x="670.7" y="869" width="53.2" height="15.0" fill="rgb(235,125,8)" rx="2" ry="2" />
+<text  x="673.72" y="879.5" >entry..</text>
+</g>
+<g >
+<title>worker_thread (5,676,302,212 samples, 1.55%)</title><rect x="460.7" y="933" width="18.3" height="15.0" fill="rgb(246,41,14)" rx="2" ry="2" />
+<text  x="463.73" y="943.5" ></text>
+</g>
+<g >
+<title>load_balance (279,003,699 samples, 0.08%)</title><rect x="901.3" y="789" width="0.9" height="15.0" fill="rgb(209,2,25)" rx="2" ry="2" />
+<text  x="904.25" y="799.5" ></text>
+</g>
+<g >
+<title>schedule (54,196,431 samples, 0.01%)</title><rect x="169.8" y="885" width="0.2" height="15.0" fill="rgb(242,32,10)" rx="2" ry="2" />
+<text  x="172.81" y="895.5" ></text>
+</g>
+<g >
+<title>_nohz_idle_balance.constprop.0.isra.0 (38,902,212 samples, 0.01%)</title><rect x="900.0" y="805" width="0.1" height="15.0" fill="rgb(212,194,17)" rx="2" ry="2" />
+<text  x="903.01" y="815.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (74,343,082 samples, 0.02%)</title><rect x="168.7" y="901" width="0.3" height="15.0" fill="rgb(231,104,54)" rx="2" ry="2" />
+<text  x="171.73" y="911.5" ></text>
+</g>
+<g >
+<title>lapic_next_deadline (90,607,345 samples, 0.02%)</title><rect x="913.1" y="789" width="0.3" height="15.0" fill="rgb(234,157,4)" rx="2" ry="2" />
+<text  x="916.12" y="799.5" ></text>
+</g>
+<g >
+<title>malloc (33,551,756 samples, 0.01%)</title><rect x="277.6" y="773" width="0.1" height="15.0" fill="rgb(251,167,42)" rx="2" ry="2" />
+<text  x="280.57" y="783.5" ></text>
+</g>
+<g >
+<title>native_write_msr (47,744,387 samples, 0.01%)</title><rect x="1159.1" y="837" width="0.2" height="15.0" fill="rgb(243,73,29)" rx="2" ry="2" />
+<text  x="1162.11" y="847.5" ></text>
+</g>
+<g >
+<title>blueman-tray (140,851,531 samples, 0.04%)</title><rect x="244.1" y="981" width="0.4" height="15.0" fill="rgb(238,29,31)" rx="2" ry="2" />
+<text  x="247.06" y="991.5" ></text>
+</g>
+<g >
+<title>xfs_end_io (367,738,533 samples, 0.10%)</title><rect x="389.1" y="901" width="1.2" height="15.0" fill="rgb(247,98,31)" rx="2" ry="2" />
+<text  x="392.09" y="911.5" ></text>
+</g>
+<g >
+<title>sock_write_iter (296,674,324 samples, 0.08%)</title><rect x="19.2" y="709" width="1.0" height="15.0" fill="rgb(238,188,50)" rx="2" ry="2" />
+<text  x="22.24" y="719.5" ></text>
+</g>
+<g >
+<title>xfs_buffered_write_iomap_begin (205,130,290 samples, 0.06%)</title><rect x="687.9" y="757" width="0.7" height="15.0" fill="rgb(243,14,4)" rx="2" ry="2" />
+<text  x="690.89" y="767.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (2,851,115,362 samples, 0.78%)</title><rect x="524.8" y="965" width="9.1" height="15.0" fill="rgb(209,86,25)" rx="2" ry="2" />
+<text  x="527.77" y="975.5" ></text>
+</g>
+<g >
+<title>vma_alloc_folio (61,176,130 samples, 0.02%)</title><rect x="237.2" y="757" width="0.2" height="15.0" fill="rgb(228,189,28)" rx="2" ry="2" />
+<text  x="240.25" y="767.5" ></text>
+</g>
+<g >
+<title>try_charge_memcg (44,559,457 samples, 0.01%)</title><rect x="327.4" y="581" width="0.2" height="15.0" fill="rgb(213,44,42)" rx="2" ry="2" />
+<text  x="330.41" y="591.5" ></text>
+</g>
+<g >
+<title>[unknown] (31,264,085 samples, 0.01%)</title><rect x="182.5" y="965" width="0.1" height="15.0" fill="rgb(237,34,52)" rx="2" ry="2" />
+<text  x="185.50" y="975.5" ></text>
+</g>
+<g >
+<title>gen8_logical_ring_enable_irq (1,354,481,038 samples, 0.37%)</title><rect x="347.3" y="725" width="4.3" height="15.0" fill="rgb(246,68,31)" rx="2" ry="2" />
+<text  x="350.27" y="735.5" ></text>
+</g>
+<g >
+<title>folio_clear_dirty_for_io (205,858,535 samples, 0.06%)</title><rect x="458.1" y="757" width="0.6" height="15.0" fill="rgb(226,9,49)" rx="2" ry="2" />
+<text  x="461.08" y="767.5" ></text>
+</g>
+<g >
+<title>[libxul.so] (195,629,472 samples, 0.05%)</title><rect x="274.4" y="933" width="0.7" height="15.0" fill="rgb(227,118,47)" rx="2" ry="2" />
+<text  x="277.43" y="943.5" ></text>
+</g>
+<g >
+<title>__napi_poll (719,849,230 samples, 0.20%)</title><rect x="660.5" y="549" width="2.3" height="15.0" fill="rgb(251,118,19)" rx="2" ry="2" />
+<text  x="663.50" y="559.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (313,068,689 samples, 0.09%)</title><rect x="211.9" y="837" width="1.0" height="15.0" fill="rgb(214,116,24)" rx="2" ry="2" />
+<text  x="214.87" y="847.5" ></text>
+</g>
+<g >
+<title>[libglamoregl.so] (373,430,167 samples, 0.10%)</title><rect x="217.0" y="885" width="1.2" height="15.0" fill="rgb(245,197,30)" rx="2" ry="2" />
+<text  x="219.96" y="895.5" ></text>
+</g>
+<g >
+<title>unix_stream_recvmsg (76,392,042 samples, 0.02%)</title><rect x="44.6" y="837" width="0.3" height="15.0" fill="rgb(247,54,33)" rx="2" ry="2" />
+<text  x="47.61" y="847.5" ></text>
+</g>
+<g >
+<title>mieqProcessInputEvents (86,356,695 samples, 0.02%)</title><rect x="242.1" y="965" width="0.3" height="15.0" fill="rgb(207,133,17)" rx="2" ry="2" />
+<text  x="245.12" y="975.5" ></text>
+</g>
+<g >
+<title>kcryptd_crypt (6,328,557,615 samples, 1.73%)</title><rect x="398.3" y="901" width="20.4" height="15.0" fill="rgb(218,61,46)" rx="2" ry="2" />
+<text  x="401.29" y="911.5" ></text>
+</g>
+<g >
+<title>update_curr_rt (87,997,112 samples, 0.02%)</title><rect x="336.6" y="869" width="0.3" height="15.0" fill="rgb(218,10,34)" rx="2" ry="2" />
+<text  x="339.58" y="879.5" ></text>
+</g>
+<g >
+<title>iomap_finish_ioends (256,716,708 samples, 0.07%)</title><rect x="388.2" y="869" width="0.8" height="15.0" fill="rgb(248,124,12)" rx="2" ry="2" />
+<text  x="391.20" y="879.5" ></text>
+</g>
+<g >
+<title>__remove_hrtimer (59,434,652 samples, 0.02%)</title><rect x="1158.6" y="869" width="0.2" height="15.0" fill="rgb(233,164,49)" rx="2" ry="2" />
+<text  x="1161.61" y="879.5" ></text>
+</g>
+<g >
+<title>pick_next_task_fair (140,244,393 samples, 0.04%)</title><rect x="822.2" y="757" width="0.4" height="15.0" fill="rgb(212,32,3)" rx="2" ry="2" />
+<text  x="825.16" y="767.5" ></text>
+</g>
+<g >
+<title>intel_idle (6,115,753,606 samples, 1.67%)</title><rect x="918.7" y="869" width="19.7" height="15.0" fill="rgb(243,67,21)" rx="2" ry="2" />
+<text  x="921.67" y="879.5" ></text>
+</g>
+<g >
+<title>futex_wait_queue (210,343,973 samples, 0.06%)</title><rect x="51.0" y="821" width="0.7" height="15.0" fill="rgb(240,67,29)" rx="2" ry="2" />
+<text  x="53.99" y="831.5" ></text>
+</g>
+<g >
+<title>skcipher_walk_done (55,383,591 samples, 0.02%)</title><rect x="547.5" y="821" width="0.2" height="15.0" fill="rgb(217,120,16)" rx="2" ry="2" />
+<text  x="550.54" y="831.5" ></text>
+</g>
+<g >
+<title>aesni_enc (123,919,789 samples, 0.03%)</title><rect x="446.2" y="821" width="0.3" height="15.0" fill="rgb(222,74,16)" rx="2" ry="2" />
+<text  x="449.15" y="831.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (393,144,409 samples, 0.11%)</title><rect x="120.1" y="885" width="1.3" height="15.0" fill="rgb(215,53,30)" rx="2" ry="2" />
+<text  x="123.14" y="895.5" ></text>
+</g>
+<g >
+<title>[libcurl.so.4.8.0] (2,546,556,271 samples, 0.69%)</title><rect x="648.8" y="757" width="8.2" height="15.0" fill="rgb(211,9,21)" rx="2" ry="2" />
+<text  x="651.83" y="767.5" ></text>
+</g>
+<g >
+<title>handle_mm_fault (31,160,102 samples, 0.01%)</title><rect x="813.3" y="789" width="0.1" height="15.0" fill="rgb(206,214,47)" rx="2" ry="2" />
+<text  x="816.32" y="799.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (100,387,196 samples, 0.03%)</title><rect x="1172.3" y="149" width="0.3" height="15.0" fill="rgb(212,130,52)" rx="2" ry="2" />
+<text  x="1175.26" y="159.5" ></text>
+</g>
+<g >
+<title>memset_erms (98,442,718 samples, 0.03%)</title><rect x="535.8" y="853" width="0.3" height="15.0" fill="rgb(253,37,46)" rx="2" ry="2" />
+<text  x="538.80" y="863.5" ></text>
+</g>
+<g >
+<title>kthread (502,537,604 samples, 0.14%)</title><rect x="390.3" y="949" width="1.6" height="15.0" fill="rgb(205,69,45)" rx="2" ry="2" />
+<text  x="393.32" y="959.5" ></text>
+</g>
+<g >
+<title>preempt_count_add (56,742,872 samples, 0.02%)</title><rect x="685.8" y="757" width="0.2" height="15.0" fill="rgb(244,140,2)" rx="2" ry="2" />
+<text  x="688.78" y="767.5" ></text>
+</g>
+<g >
+<title>xfs_reclaim_inodes_count (353,491,149 samples, 0.10%)</title><rect x="380.8" y="837" width="1.1" height="15.0" fill="rgb(222,34,22)" rx="2" ry="2" />
+<text  x="383.79" y="847.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (235,172,818 samples, 0.06%)</title><rect x="215.4" y="821" width="0.8" height="15.0" fill="rgb(251,103,15)" rx="2" ry="2" />
+<text  x="218.41" y="831.5" ></text>
+</g>
+<g >
+<title>dw_reg_read (61,276,954 samples, 0.02%)</title><rect x="895.8" y="725" width="0.2" height="15.0" fill="rgb(217,10,18)" rx="2" ry="2" />
+<text  x="898.83" y="735.5" ></text>
+</g>
+<g >
+<title>[libglib-2.0.so.0.7303.0] (73,567,762 samples, 0.02%)</title><rect x="96.6" y="917" width="0.2" height="15.0" fill="rgb(243,144,52)" rx="2" ry="2" />
+<text  x="99.56" y="927.5" ></text>
+</g>
+<g >
+<title>rmqueue_bulk (35,172,453 samples, 0.01%)</title><rect x="476.6" y="821" width="0.1" height="15.0" fill="rgb(235,57,28)" rx="2" ry="2" />
+<text  x="479.63" y="831.5" ></text>
+</g>
+<g >
+<title>_aesni_enc1 (107,728,845 samples, 0.03%)</title><rect x="446.2" y="805" width="0.3" height="15.0" fill="rgb(217,222,20)" rx="2" ry="2" />
+<text  x="449.20" y="815.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (49,079,823 samples, 0.01%)</title><rect x="244.3" y="965" width="0.2" height="15.0" fill="rgb(243,114,2)" rx="2" ry="2" />
+<text  x="247.34" y="975.5" ></text>
+</g>
+<g >
+<title>try_to_wake_up (68,000,987 samples, 0.02%)</title><rect x="661.7" y="341" width="0.2" height="15.0" fill="rgb(231,203,54)" rx="2" ry="2" />
+<text  x="664.73" y="351.5" ></text>
+</g>
+<g >
+<title>pick_next_task_fair (133,051,022 samples, 0.04%)</title><rect x="13.5" y="773" width="0.4" height="15.0" fill="rgb(232,227,42)" rx="2" ry="2" />
+<text  x="16.47" y="783.5" ></text>
+</g>
+<g >
+<title>compact_zone (1,713,114,423 samples, 0.47%)</title><rect x="341.4" y="901" width="5.5" height="15.0" fill="rgb(240,100,16)" rx="2" ry="2" />
+<text  x="344.38" y="911.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (1,481,065,896 samples, 0.40%)</title><rect x="347.1" y="965" width="4.7" height="15.0" fill="rgb(251,192,20)" rx="2" ry="2" />
+<text  x="350.06" y="975.5" ></text>
+</g>
+<g >
+<title>aesni_xts_encrypt (1,476,702,921 samples, 0.40%)</title><rect x="510.3" y="821" width="4.8" height="15.0" fill="rgb(246,10,54)" rx="2" ry="2" />
+<text  x="513.34" y="831.5" ></text>
+</g>
+<g >
+<title>__sk_mem_reduce_allocated (165,719,812 samples, 0.05%)</title><rect x="628.8" y="565" width="0.6" height="15.0" fill="rgb(210,122,47)" rx="2" ry="2" />
+<text  x="631.85" y="575.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (40,693,807 samples, 0.01%)</title><rect x="198.1" y="869" width="0.1" height="15.0" fill="rgb(234,168,27)" rx="2" ry="2" />
+<text  x="201.05" y="879.5" ></text>
+</g>
+<g >
+<title>compact_zone (67,451,933 samples, 0.02%)</title><rect x="341.2" y="901" width="0.2" height="15.0" fill="rgb(243,87,9)" rx="2" ry="2" />
+<text  x="344.16" y="911.5" ></text>
+</g>
+<g >
+<title>sock_sendmsg (64,125,518 samples, 0.02%)</title><rect x="145.2" y="677" width="0.2" height="15.0" fill="rgb(250,40,19)" rx="2" ry="2" />
+<text  x="148.17" y="687.5" ></text>
+</g>
+<g >
+<title>preempt_count_add (49,996,156 samples, 0.01%)</title><rect x="335.0" y="885" width="0.1" height="15.0" fill="rgb(215,180,10)" rx="2" ry="2" />
+<text  x="337.98" y="895.5" ></text>
+</g>
+<g >
+<title>gtk_main (66,760,770 samples, 0.02%)</title><rect x="1187.1" y="757" width="0.2" height="15.0" fill="rgb(236,140,43)" rx="2" ry="2" />
+<text  x="1190.12" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,588,144 samples, 0.01%)</title><rect x="118.3" y="885" width="0.1" height="15.0" fill="rgb(220,198,54)" rx="2" ry="2" />
+<text  x="121.28" y="895.5" ></text>
+</g>
+<g >
+<title>__folio_end_writeback (264,227,564 samples, 0.07%)</title><rect x="396.7" y="821" width="0.8" height="15.0" fill="rgb(235,212,44)" rx="2" ry="2" />
+<text  x="399.67" y="831.5" ></text>
+</g>
+<g >
+<title>[firefox] (167,820,217 samples, 0.05%)</title><rect x="95.6" y="933" width="0.5" height="15.0" fill="rgb(229,178,48)" rx="2" ry="2" />
+<text  x="98.58" y="943.5" ></text>
+</g>
+<g >
+<title>memcpy_erms (64,349,766 samples, 0.02%)</title><rect x="475.6" y="869" width="0.2" height="15.0" fill="rgb(216,211,30)" rx="2" ry="2" />
+<text  x="478.58" y="879.5" ></text>
+</g>
+<g >
+<title>aesni_enc (153,033,444 samples, 0.04%)</title><rect x="581.5" y="821" width="0.5" height="15.0" fill="rgb(209,2,43)" rx="2" ry="2" />
+<text  x="584.52" y="831.5" ></text>
+</g>
+<g >
+<title>[libcairo.so.2.11706.0] (76,558,931 samples, 0.02%)</title><rect x="1176.3" y="901" width="0.3" height="15.0" fill="rgb(206,167,8)" rx="2" ry="2" />
+<text  x="1179.34" y="911.5" ></text>
+</g>
+<g >
+<title>__fprop_add_percpu (45,063,247 samples, 0.01%)</title><rect x="390.9" y="805" width="0.1" height="15.0" fill="rgb(253,162,10)" rx="2" ry="2" />
+<text  x="393.87" y="815.5" ></text>
+</g>
+<g >
+<title>aesni_xts_encrypt (1,144,739,862 samples, 0.31%)</title><rect x="602.6" y="821" width="3.7" height="15.0" fill="rgb(243,191,48)" rx="2" ry="2" />
+<text  x="605.63" y="831.5" ></text>
+</g>
+<g >
+<title>pick_next_task_fair (142,441,548 samples, 0.04%)</title><rect x="292.1" y="805" width="0.5" height="15.0" fill="rgb(211,10,20)" rx="2" ry="2" />
+<text  x="295.14" y="815.5" ></text>
+</g>
+<g >
+<title>memset_erms (111,035,557 samples, 0.03%)</title><rect x="576.1" y="853" width="0.4" height="15.0" fill="rgb(231,109,19)" rx="2" ry="2" />
+<text  x="579.14" y="863.5" ></text>
+</g>
+<g >
+<title>futex_wait_queue (448,238,397 samples, 0.12%)</title><rect x="816.8" y="773" width="1.4" height="15.0" fill="rgb(245,185,42)" rx="2" ry="2" />
+<text  x="819.78" y="783.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (86,450,988 samples, 0.02%)</title><rect x="215.1" y="853" width="0.3" height="15.0" fill="rgb(254,187,10)" rx="2" ry="2" />
+<text  x="218.07" y="863.5" ></text>
+</g>
+<g >
+<title>g_signal_emit_valist (52,860,770 samples, 0.01%)</title><rect x="1177.3" y="789" width="0.2" height="15.0" fill="rgb(243,96,49)" rx="2" ry="2" />
+<text  x="1180.34" y="799.5" ></text>
+</g>
+<g >
+<title>process_one_work (351,883,516 samples, 0.10%)</title><rect x="385.8" y="917" width="1.1" height="15.0" fill="rgb(243,160,34)" rx="2" ry="2" />
+<text  x="388.76" y="927.5" ></text>
+</g>
+<g >
+<title>[libEGL_mesa.so.0.0.0] (107,765,663 samples, 0.03%)</title><rect x="142.1" y="901" width="0.4" height="15.0" fill="rgb(253,27,18)" rx="2" ry="2" />
+<text  x="145.15" y="911.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (270,904,361 samples, 0.07%)</title><rect x="1163.4" y="709" width="0.8" height="15.0" fill="rgb(241,190,14)" rx="2" ry="2" />
+<text  x="1166.35" y="719.5" ></text>
+</g>
+<g >
+<title>aesni_xts_encrypt (1,321,446,424 samples, 0.36%)</title><rect x="426.3" y="821" width="4.3" height="15.0" fill="rgb(219,116,20)" rx="2" ry="2" />
+<text  x="429.34" y="831.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (198,669,213 samples, 0.05%)</title><rect x="1177.8" y="597" width="0.7" height="15.0" fill="rgb(236,200,31)" rx="2" ry="2" />
+<text  x="1180.82" y="607.5" ></text>
+</g>
+<g >
+<title>eb_validate_vmas (53,692,982 samples, 0.01%)</title><rect x="1164.9" y="613" width="0.1" height="15.0" fill="rgb(238,27,48)" rx="2" ry="2" />
+<text  x="1167.87" y="623.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (53,036,240 samples, 0.01%)</title><rect x="735.7" y="901" width="0.2" height="15.0" fill="rgb(235,173,45)" rx="2" ry="2" />
+<text  x="738.69" y="911.5" ></text>
+</g>
+<g >
+<title>prepare_alloc_pages.constprop.0 (112,137,316 samples, 0.03%)</title><rect x="711.1" y="709" width="0.4" height="15.0" fill="rgb(223,77,44)" rx="2" ry="2" />
+<text  x="714.14" y="719.5" ></text>
+</g>
+<g >
+<title>[perf] (16,928,738,474 samples, 4.62%)</title><rect x="670.1" y="901" width="54.5" height="15.0" fill="rgb(214,222,22)" rx="2" ry="2" />
+<text  x="673.11" y="911.5" >[perf]</text>
+</g>
+<g >
+<title>[firefox] (40,423,403 samples, 0.01%)</title><rect x="160.3" y="965" width="0.2" height="15.0" fill="rgb(206,116,25)" rx="2" ry="2" />
+<text  x="163.34" y="975.5" ></text>
+</g>
+<g >
+<title>xfs_direct_write_iomap_begin (192,038,703 samples, 0.05%)</title><rect x="753.1" y="725" width="0.6" height="15.0" fill="rgb(208,191,3)" rx="2" ry="2" />
+<text  x="756.10" y="735.5" ></text>
+</g>
+<g >
+<title>____sys_recvmsg (65,402,084 samples, 0.02%)</title><rect x="280.1" y="693" width="0.2" height="15.0" fill="rgb(236,58,36)" rx="2" ry="2" />
+<text  x="283.13" y="703.5" ></text>
+</g>
+<g >
+<title>tcp_v4_do_rcv (1,159,253,901 samples, 0.32%)</title><rect x="325.3" y="645" width="3.7" height="15.0" fill="rgb(215,100,47)" rx="2" ry="2" />
+<text  x="328.25" y="655.5" ></text>
+</g>
+<g >
+<title>skb_checksum (245,999,495 samples, 0.07%)</title><rect x="308.1" y="677" width="0.7" height="15.0" fill="rgb(244,170,26)" rx="2" ry="2" />
+<text  x="311.05" y="687.5" ></text>
+</g>
+<g >
+<title>folio_end_writeback (35,084,307 samples, 0.01%)</title><rect x="369.1" y="773" width="0.1" height="15.0" fill="rgb(252,133,6)" rx="2" ry="2" />
+<text  x="372.06" y="783.5" ></text>
+</g>
+<g >
+<title>__vdso_clock_gettime (89,666,042 samples, 0.02%)</title><rect x="116.5" y="965" width="0.3" height="15.0" fill="rgb(221,215,12)" rx="2" ry="2" />
+<text  x="119.48" y="975.5" ></text>
+</g>
+<g >
+<title>flush_smp_call_function_queue (2,205,893,423 samples, 0.60%)</title><rect x="1126.2" y="901" width="7.1" height="15.0" fill="rgb(228,125,39)" rx="2" ry="2" />
+<text  x="1129.17" y="911.5" ></text>
+</g>
+<g >
+<title>simd_skcipher_encrypt (124,479,496 samples, 0.03%)</title><rect x="569.5" y="853" width="0.4" height="15.0" fill="rgb(248,199,26)" rx="2" ry="2" />
+<text  x="572.50" y="863.5" ></text>
+</g>
+<g >
+<title>TaskCon~ller_#6 (45,738,663 samples, 0.01%)</title><rect x="155.5" y="981" width="0.2" height="15.0" fill="rgb(221,161,18)" rx="2" ry="2" />
+<text  x="158.52" y="991.5" ></text>
+</g>
+<g >
+<title>xfs_bmap_btalloc (91,139,679 samples, 0.02%)</title><rect x="753.4" y="661" width="0.3" height="15.0" fill="rgb(229,117,15)" rx="2" ry="2" />
+<text  x="756.40" y="671.5" ></text>
+</g>
+<g >
+<title>ttwu_do_activate (93,328,206 samples, 0.03%)</title><rect x="30.6" y="789" width="0.3" height="15.0" fill="rgb(249,132,50)" rx="2" ry="2" />
+<text  x="33.59" y="799.5" ></text>
+</g>
+<g >
+<title>iwl_trans_pcie_write32 (44,852,927 samples, 0.01%)</title><rect x="892.6" y="757" width="0.1" height="15.0" fill="rgb(223,155,46)" rx="2" ry="2" />
+<text  x="895.56" y="767.5" ></text>
+</g>
+<g >
+<title>gdk_display_get_event (280,310,100 samples, 0.08%)</title><rect x="1186.6" y="869" width="0.9" height="15.0" fill="rgb(250,136,32)" rx="2" ry="2" />
+<text  x="1189.59" y="879.5" ></text>
+</g>
+<g >
+<title>xfs_vn_update_time (181,503,960 samples, 0.05%)</title><rect x="759.8" y="741" width="0.6" height="15.0" fill="rgb(227,157,47)" rx="2" ry="2" />
+<text  x="762.77" y="751.5" ></text>
+</g>
+<g >
+<title>__skb_datagram_iter (107,022,958 samples, 0.03%)</title><rect x="748.2" y="549" width="0.3" height="15.0" fill="rgb(223,80,15)" rx="2" ry="2" />
+<text  x="751.16" y="559.5" ></text>
+</g>
+<g >
+<title>sysvec_call_function_single (38,438,203 samples, 0.01%)</title><rect x="1148.3" y="837" width="0.1" height="15.0" fill="rgb(229,222,41)" rx="2" ry="2" />
+<text  x="1151.26" y="847.5" ></text>
+</g>
+<g >
+<title>_i915_vma_move_to_active (86,189,547 samples, 0.02%)</title><rect x="233.6" y="853" width="0.3" height="15.0" fill="rgb(222,197,22)" rx="2" ry="2" />
+<text  x="236.59" y="863.5" ></text>
+</g>
+<g >
+<title>rcu_needs_cpu (62,794,707 samples, 0.02%)</title><rect x="1144.3" y="853" width="0.2" height="15.0" fill="rgb(249,190,53)" rx="2" ry="2" />
+<text  x="1147.25" y="863.5" ></text>
+</g>
+<g >
+<title>preempt_count_add (51,250,020 samples, 0.01%)</title><rect x="431.0" y="805" width="0.1" height="15.0" fill="rgb(233,209,14)" rx="2" ry="2" />
+<text  x="433.95" y="815.5" ></text>
+</g>
+<g >
+<title>worker_thread (2,851,115,362 samples, 0.78%)</title><rect x="524.8" y="933" width="9.1" height="15.0" fill="rgb(241,157,38)" rx="2" ry="2" />
+<text  x="527.77" y="943.5" ></text>
+</g>
+<g >
+<title>ksys_write (256,150,266 samples, 0.07%)</title><rect x="815.0" y="837" width="0.9" height="15.0" fill="rgb(248,133,27)" rx="2" ry="2" />
+<text  x="818.04" y="847.5" ></text>
+</g>
+<g >
+<title>crypt_convert (6,027,831,195 samples, 1.64%)</title><rect x="398.4" y="885" width="19.4" height="15.0" fill="rgb(209,181,16)" rx="2" ry="2" />
+<text  x="401.41" y="895.5" ></text>
+</g>
+<g >
+<title>elan_smbus_get_report (509,347,828 samples, 0.14%)</title><rect x="339.4" y="885" width="1.6" height="15.0" fill="rgb(207,139,4)" rx="2" ry="2" />
+<text  x="342.39" y="895.5" ></text>
+</g>
+<g >
+<title>__GI___write (42,219,883 samples, 0.01%)</title><rect x="265.3" y="949" width="0.1" height="15.0" fill="rgb(250,92,0)" rx="2" ry="2" />
+<text  x="268.31" y="959.5" ></text>
+</g>
+<g >
+<title>ieee80211_queue_skb (261,923,973 samples, 0.07%)</title><rect x="623.6" y="405" width="0.9" height="15.0" fill="rgb(243,70,39)" rx="2" ry="2" />
+<text  x="626.63" y="415.5" ></text>
+</g>
+<g >
+<title>URL_Classifier (142,385,933 samples, 0.04%)</title><rect x="159.8" y="981" width="0.5" height="15.0" fill="rgb(228,37,54)" rx="2" ry="2" />
+<text  x="162.83" y="991.5" ></text>
+</g>
+<g >
+<title>drm_syncobj_array_wait.constprop.0 (117,920,109 samples, 0.03%)</title><rect x="232.8" y="869" width="0.3" height="15.0" fill="rgb(219,201,53)" rx="2" ry="2" />
+<text  x="235.76" y="879.5" ></text>
+</g>
+<g >
+<title>scheduler_tick (893,932,321 samples, 0.24%)</title><rect x="909.5" y="741" width="2.9" height="15.0" fill="rgb(250,139,45)" rx="2" ry="2" />
+<text  x="912.48" y="751.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (57,065,864 samples, 0.02%)</title><rect x="660.6" y="485" width="0.2" height="15.0" fill="rgb(224,117,25)" rx="2" ry="2" />
+<text  x="663.60" y="495.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (416,561,261 samples, 0.11%)</title><rect x="1171.6" y="277" width="1.3" height="15.0" fill="rgb(225,15,46)" rx="2" ry="2" />
+<text  x="1174.59" y="287.5" ></text>
+</g>
+<g >
+<title>[libpython3.11.so.1.0] (67,754,465 samples, 0.02%)</title><rect x="244.1" y="869" width="0.2" height="15.0" fill="rgb(212,81,8)" rx="2" ry="2" />
+<text  x="247.09" y="879.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (975,828,479 samples, 0.27%)</title><rect x="622.9" y="645" width="3.2" height="15.0" fill="rgb(247,128,16)" rx="2" ry="2" />
+<text  x="625.92" y="655.5" ></text>
+</g>
+<g >
+<title>[libxul.so] (38,328,540 samples, 0.01%)</title><rect x="155.2" y="965" width="0.1" height="15.0" fill="rgb(247,52,17)" rx="2" ry="2" />
+<text  x="158.17" y="975.5" ></text>
+</g>
+<g >
+<title>[unknown] (66,267,682 samples, 0.02%)</title><rect x="183.4" y="965" width="0.3" height="15.0" fill="rgb(253,128,15)" rx="2" ry="2" />
+<text  x="186.44" y="975.5" ></text>
+</g>
+<g >
+<title>run_rebalance_domains (643,651,626 samples, 0.18%)</title><rect x="902.2" y="805" width="2.0" height="15.0" fill="rgb(248,220,5)" rx="2" ry="2" />
+<text  x="905.15" y="815.5" ></text>
+</g>
+<g >
+<title>__libc_start_main_alias_2 (124,008,357 samples, 0.03%)</title><rect x="285.3" y="949" width="0.4" height="15.0" fill="rgb(227,199,20)" rx="2" ry="2" />
+<text  x="288.27" y="959.5" ></text>
+</g>
+<g >
+<title>miSetShape (58,059,948 samples, 0.02%)</title><rect x="214.1" y="917" width="0.2" height="15.0" fill="rgb(216,0,35)" rx="2" ry="2" />
+<text  x="217.07" y="927.5" ></text>
+</g>
+<g >
+<title>do_futex (61,947,760 samples, 0.02%)</title><rect x="15.1" y="885" width="0.2" height="15.0" fill="rgb(253,98,18)" rx="2" ry="2" />
+<text  x="18.09" y="895.5" ></text>
+</g>
+<g >
+<title>__x64_sys_ioctl (131,530,700 samples, 0.04%)</title><rect x="134.3" y="789" width="0.4" height="15.0" fill="rgb(245,150,33)" rx="2" ry="2" />
+<text  x="137.32" y="799.5" ></text>
+</g>
+<g >
+<title>execute_command (46,221,639 samples, 0.01%)</title><rect x="243.4" y="581" width="0.2" height="15.0" fill="rgb(249,163,42)" rx="2" ry="2" />
+<text  x="246.42" y="591.5" ></text>
+</g>
+<g >
+<title>nft_do_chain_inet (164,004,260 samples, 0.04%)</title><rect x="637.4" y="485" width="0.6" height="15.0" fill="rgb(229,194,23)" rx="2" ry="2" />
+<text  x="640.42" y="495.5" ></text>
+</g>
+<g >
+<title>free (42,544,820 samples, 0.01%)</title><rect x="18.8" y="885" width="0.2" height="15.0" fill="rgb(244,228,54)" rx="2" ry="2" />
+<text  x="21.84" y="895.5" ></text>
+</g>
+<g >
+<title>[libgdk-3.so.0.2404.30] (839,809,585 samples, 0.23%)</title><rect x="1171.5" y="773" width="2.7" height="15.0" fill="rgb(244,74,22)" rx="2" ry="2" />
+<text  x="1174.49" y="783.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (36,008,763 samples, 0.01%)</title><rect x="725.6" y="853" width="0.1" height="15.0" fill="rgb(230,97,9)" rx="2" ry="2" />
+<text  x="728.59" y="863.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (308,051,305 samples, 0.08%)</title><rect x="505.5" y="837" width="1.0" height="15.0" fill="rgb(217,180,1)" rx="2" ry="2" />
+<text  x="508.53" y="847.5" ></text>
+</g>
+<g >
+<title>__folio_end_writeback (192,152,192 samples, 0.05%)</title><rect x="392.1" y="821" width="0.6" height="15.0" fill="rgb(243,94,4)" rx="2" ry="2" />
+<text  x="395.08" y="831.5" ></text>
+</g>
+<g >
+<title>[libnss3.so] (35,319,398 samples, 0.01%)</title><rect x="159.9" y="901" width="0.1" height="15.0" fill="rgb(230,28,47)" rx="2" ry="2" />
+<text  x="162.90" y="911.5" ></text>
+</g>
+<g >
+<title>move_to_new_folio (495,174,405 samples, 0.14%)</title><rect x="345.1" y="869" width="1.6" height="15.0" fill="rgb(205,1,9)" rx="2" ry="2" />
+<text  x="348.13" y="879.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (135,848,069 samples, 0.04%)</title><rect x="266.6" y="933" width="0.4" height="15.0" fill="rgb(254,113,29)" rx="2" ry="2" />
+<text  x="269.57" y="943.5" ></text>
+</g>
+<g >
+<title>put_prev_task_fair (34,661,472 samples, 0.01%)</title><rect x="654.7" y="597" width="0.1" height="15.0" fill="rgb(248,76,36)" rx="2" ry="2" />
+<text  x="657.67" y="607.5" ></text>
+</g>
+<g >
+<title>[libxul.so] (668,708,188 samples, 0.18%)</title><rect x="157.4" y="949" width="2.2" height="15.0" fill="rgb(241,43,29)" rx="2" ry="2" />
+<text  x="160.41" y="959.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_irq_work (46,685,071 samples, 0.01%)</title><rect x="232.3" y="741" width="0.1" height="15.0" fill="rgb(227,119,9)" rx="2" ry="2" />
+<text  x="235.27" y="751.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (106,148,856 samples, 0.03%)</title><rect x="1169.7" y="965" width="0.3" height="15.0" fill="rgb(219,64,28)" rx="2" ry="2" />
+<text  x="1172.68" y="975.5" ></text>
+</g>
+<g >
+<title>___pthread_mutex_lock (54,073,879 samples, 0.01%)</title><rect x="14.5" y="933" width="0.2" height="15.0" fill="rgb(247,118,22)" rx="2" ry="2" />
+<text  x="17.50" y="943.5" ></text>
+</g>
+<g >
+<title>ip6_input_finish (392,999,507 samples, 0.11%)</title><rect x="660.8" y="501" width="1.2" height="15.0" fill="rgb(249,10,26)" rx="2" ry="2" />
+<text  x="663.78" y="511.5" ></text>
+</g>
+<g >
+<title>__schedule (103,425,820 samples, 0.03%)</title><rect x="395.4" y="901" width="0.3" height="15.0" fill="rgb(207,146,22)" rx="2" ry="2" />
+<text  x="398.39" y="911.5" ></text>
+</g>
+<g >
+<title>do_sys_poll (245,183,598 samples, 0.07%)</title><rect x="97.8" y="853" width="0.8" height="15.0" fill="rgb(209,89,54)" rx="2" ry="2" />
+<text  x="100.76" y="863.5" ></text>
+</g>
+<g >
+<title>tick_nohz_idle_stop_tick (83,374,478 samples, 0.02%)</title><rect x="885.1" y="869" width="0.2" height="15.0" fill="rgb(221,72,28)" rx="2" ry="2" />
+<text  x="888.06" y="879.5" ></text>
+</g>
+<g >
+<title>sk_reset_timer (72,913,109 samples, 0.02%)</title><rect x="326.1" y="629" width="0.2" height="15.0" fill="rgb(211,114,15)" rx="2" ry="2" />
+<text  x="329.07" y="639.5" ></text>
+</g>
+<g >
+<title>tick_nohz_next_event (119,116,998 samples, 0.03%)</title><rect x="883.2" y="837" width="0.4" height="15.0" fill="rgb(232,126,37)" rx="2" ry="2" />
+<text  x="886.19" y="847.5" ></text>
+</g>
+<g >
+<title>_aesni_enc4 (492,021,898 samples, 0.13%)</title><rect x="528.3" y="805" width="1.6" height="15.0" fill="rgb(244,119,21)" rx="2" ry="2" />
+<text  x="531.34" y="815.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (238,894,722 samples, 0.07%)</title><rect x="742.8" y="453" width="0.8" height="15.0" fill="rgb(214,60,10)" rx="2" ry="2" />
+<text  x="745.85" y="463.5" ></text>
+</g>
+<g >
+<title>mem_cgroup_charge_statistics (302,488,767 samples, 0.08%)</title><rect x="692.5" y="677" width="1.0" height="15.0" fill="rgb(250,41,20)" rx="2" ry="2" />
+<text  x="695.49" y="687.5" ></text>
+</g>
+<g >
+<title>shmem_writepage (490,125,821 samples, 0.13%)</title><rect x="368.7" y="837" width="1.6" height="15.0" fill="rgb(225,127,49)" rx="2" ry="2" />
+<text  x="371.68" y="847.5" ></text>
+</g>
+<g >
+<title>skb_release_head_state (34,343,848 samples, 0.01%)</title><rect x="228.8" y="837" width="0.1" height="15.0" fill="rgb(228,223,13)" rx="2" ry="2" />
+<text  x="231.80" y="847.5" ></text>
+</g>
+<g >
+<title>__x64_sys_epoll_wait (193,512,852 samples, 0.05%)</title><rect x="733.6" y="933" width="0.7" height="15.0" fill="rgb(225,149,34)" rx="2" ry="2" />
+<text  x="736.63" y="943.5" ></text>
+</g>
+<g >
+<title>shmem_get_pages (83,398,992 samples, 0.02%)</title><rect x="134.5" y="709" width="0.2" height="15.0" fill="rgb(252,181,51)" rx="2" ry="2" />
+<text  x="137.46" y="719.5" ></text>
+</g>
+<g >
+<title>thread_pool_submit_aio (208,015,719 samples, 0.06%)</title><rect x="746.9" y="773" width="0.7" height="15.0" fill="rgb(227,210,24)" rx="2" ry="2" />
+<text  x="749.95" y="783.5" ></text>
+</g>
+<g >
+<title>sched_ttwu_pending (1,890,584,901 samples, 0.52%)</title><rect x="1127.2" y="885" width="6.1" height="15.0" fill="rgb(223,174,46)" rx="2" ry="2" />
+<text  x="1130.18" y="895.5" ></text>
+</g>
+<g >
+<title>sed (51,012,588 samples, 0.01%)</title><rect x="830.1" y="981" width="0.2" height="15.0" fill="rgb(223,40,45)" rx="2" ry="2" />
+<text  x="833.13" y="991.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (139,716,671 samples, 0.04%)</title><rect x="525.7" y="837" width="0.5" height="15.0" fill="rgb(245,155,37)" rx="2" ry="2" />
+<text  x="528.74" y="847.5" ></text>
+</g>
+<g >
+<title>shmem_truncate (200,501,840 samples, 0.05%)</title><rect x="378.1" y="821" width="0.6" height="15.0" fill="rgb(224,214,45)" rx="2" ry="2" />
+<text  x="381.06" y="831.5" ></text>
+</g>
+<g >
+<title>shrink_active_list (188,604,781 samples, 0.05%)</title><rect x="355.4" y="869" width="0.6" height="15.0" fill="rgb(210,91,43)" rx="2" ry="2" />
+<text  x="358.42" y="879.5" ></text>
+</g>
+<g >
+<title>perf_event_task_tick (70,425,684 samples, 0.02%)</title><rect x="834.1" y="693" width="0.2" height="15.0" fill="rgb(246,68,43)" rx="2" ry="2" />
+<text  x="837.12" y="703.5" ></text>
+</g>
+<g >
+<title>[libxul.so] (49,461,410 samples, 0.01%)</title><rect x="183.3" y="965" width="0.1" height="15.0" fill="rgb(229,20,47)" rx="2" ry="2" />
+<text  x="186.29" y="975.5" ></text>
+</g>
+<g >
+<title>mod_lruvec_page_state (50,152,220 samples, 0.01%)</title><rect x="388.7" y="805" width="0.2" height="15.0" fill="rgb(231,25,16)" rx="2" ry="2" />
+<text  x="391.69" y="815.5" ></text>
+</g>
+<g >
+<title>malloc (57,209,864 samples, 0.02%)</title><rect x="282.7" y="917" width="0.2" height="15.0" fill="rgb(208,131,49)" rx="2" ry="2" />
+<text  x="285.69" y="927.5" ></text>
+</g>
+<g >
+<title>__folio_start_writeback (228,735,301 samples, 0.06%)</title><rect x="596.0" y="741" width="0.8" height="15.0" fill="rgb(226,218,45)" rx="2" ry="2" />
+<text  x="599.03" y="751.5" ></text>
+</g>
+<g >
+<title>nf_conntrack_in (81,981,975 samples, 0.02%)</title><rect x="743.1" y="437" width="0.3" height="15.0" fill="rgb(231,211,37)" rx="2" ry="2" />
+<text  x="746.15" y="447.5" ></text>
+</g>
+<g >
+<title>[Xorg] (60,651,005 samples, 0.02%)</title><rect x="201.7" y="805" width="0.1" height="15.0" fill="rgb(233,51,8)" rx="2" ry="2" />
+<text  x="204.65" y="815.5" ></text>
+</g>
+<g >
+<title>azx_get_time_info (37,828,675 samples, 0.01%)</title><rect x="734.6" y="869" width="0.1" height="15.0" fill="rgb(212,77,29)" rx="2" ry="2" />
+<text  x="737.58" y="879.5" ></text>
+</g>
+<g >
+<title>[libglamoregl.so] (401,482,366 samples, 0.11%)</title><rect x="215.4" y="853" width="1.2" height="15.0" fill="rgb(244,42,23)" rx="2" ry="2" />
+<text  x="218.35" y="863.5" ></text>
+</g>
+<g >
+<title>mozilla::TimeStamp::Now (40,787,406 samples, 0.01%)</title><rect x="114.7" y="933" width="0.1" height="15.0" fill="rgb(234,132,2)" rx="2" ry="2" />
+<text  x="117.69" y="943.5" ></text>
+</g>
+<g >
+<title>nr_iowait_cpu (34,713,728 samples, 0.01%)</title><rect x="1155.5" y="885" width="0.1" height="15.0" fill="rgb(212,69,26)" rx="2" ry="2" />
+<text  x="1158.45" y="895.5" ></text>
+</g>
+<g >
+<title>irq_work_run (65,137,864 samples, 0.02%)</title><rect x="896.5" y="757" width="0.2" height="15.0" fill="rgb(242,80,17)" rx="2" ry="2" />
+<text  x="899.46" y="767.5" ></text>
+</g>
+<g >
+<title>sock_def_readable (44,129,843 samples, 0.01%)</title><rect x="320.7" y="565" width="0.1" height="15.0" fill="rgb(249,78,23)" rx="2" ry="2" />
+<text  x="323.65" y="575.5" ></text>
+</g>
+<g >
+<title>filemap_dirty_folio (343,209,034 samples, 0.09%)</title><rect x="758.6" y="741" width="1.1" height="15.0" fill="rgb(207,80,5)" rx="2" ry="2" />
+<text  x="761.59" y="751.5" ></text>
+</g>
+<g >
+<title>list_lru_count_one (83,268,148 samples, 0.02%)</title><rect x="373.6" y="837" width="0.2" height="15.0" fill="rgb(239,189,39)" rx="2" ry="2" />
+<text  x="376.57" y="847.5" ></text>
+</g>
+<g >
+<title>shmem_getpage_gfp (208,037,808 samples, 0.06%)</title><rect x="139.8" y="677" width="0.7" height="15.0" fill="rgb(234,40,33)" rx="2" ry="2" />
+<text  x="142.81" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (170,921,417 samples, 0.05%)</title><rect x="1170.4" y="965" width="0.6" height="15.0" fill="rgb(248,83,10)" rx="2" ry="2" />
+<text  x="1173.40" y="975.5" ></text>
+</g>
+<g >
+<title>[unknown] (1,600,969,428 samples, 0.44%)</title><rect x="293.3" y="965" width="5.1" height="15.0" fill="rgb(230,101,27)" rx="2" ry="2" />
+<text  x="296.25" y="975.5" ></text>
+</g>
+<g >
+<title>tcp4_gro_receive (268,957,683 samples, 0.07%)</title><rect x="308.0" y="709" width="0.8" height="15.0" fill="rgb(224,117,54)" rx="2" ry="2" />
+<text  x="310.98" y="719.5" ></text>
+</g>
+<g >
+<title>psi_task_switch (42,324,544 samples, 0.01%)</title><rect x="13.9" y="773" width="0.1" height="15.0" fill="rgb(229,186,22)" rx="2" ry="2" />
+<text  x="16.91" y="783.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (460,865,938 samples, 0.13%)</title><rect x="1171.5" y="405" width="1.5" height="15.0" fill="rgb(232,62,0)" rx="2" ry="2" />
+<text  x="1174.53" y="415.5" ></text>
+</g>
+<g >
+<title>process_one_work (289,954,985 samples, 0.08%)</title><rect x="392.7" y="917" width="1.0" height="15.0" fill="rgb(206,39,22)" rx="2" ry="2" />
+<text  x="395.72" y="927.5" ></text>
+</g>
+<g >
+<title>InputThread (109,269,470 samples, 0.03%)</title><rect x="53.8" y="981" width="0.4" height="15.0" fill="rgb(210,107,1)" rx="2" ry="2" />
+<text  x="56.85" y="991.5" ></text>
+</g>
+<g >
+<title>[unknown] (132,955,325 samples, 0.04%)</title><rect x="184.1" y="965" width="0.4" height="15.0" fill="rgb(217,105,48)" rx="2" ry="2" />
+<text  x="187.11" y="975.5" ></text>
+</g>
+<g >
+<title>try_to_unmap (58,002,053 samples, 0.02%)</title><rect x="370.3" y="853" width="0.1" height="15.0" fill="rgb(220,188,18)" rx="2" ry="2" />
+<text  x="373.26" y="863.5" ></text>
+</g>
+<g >
+<title>selinux_file_permission (35,481,502 samples, 0.01%)</title><rect x="31.5" y="853" width="0.1" height="15.0" fill="rgb(253,2,37)" rx="2" ry="2" />
+<text  x="34.49" y="863.5" ></text>
+</g>
+<g >
+<title>update_curr (61,662,691 samples, 0.02%)</title><rect x="88.8" y="789" width="0.2" height="15.0" fill="rgb(224,193,8)" rx="2" ry="2" />
+<text  x="91.83" y="799.5" ></text>
+</g>
+<g >
+<title>iomap_writepages (297,941,802 samples, 0.08%)</title><rect x="502.1" y="789" width="1.0" height="15.0" fill="rgb(232,117,8)" rx="2" ry="2" />
+<text  x="505.11" y="799.5" ></text>
+</g>
+<g >
+<title>pollwake (116,140,382 samples, 0.03%)</title><rect x="239.7" y="773" width="0.4" height="15.0" fill="rgb(227,200,0)" rx="2" ry="2" />
+<text  x="242.70" y="783.5" ></text>
+</g>
+<g >
+<title>folio_end_writeback (156,175,125 samples, 0.04%)</title><rect x="397.7" y="837" width="0.5" height="15.0" fill="rgb(218,208,21)" rx="2" ry="2" />
+<text  x="400.71" y="847.5" ></text>
+</g>
+<g >
+<title>handle_irq_event (1,366,469,210 samples, 0.37%)</title><rect x="891.1" y="805" width="4.4" height="15.0" fill="rgb(216,35,14)" rx="2" ry="2" />
+<text  x="894.15" y="815.5" ></text>
+</g>
+<g >
+<title>__GI___pthread_mutex_unlock_usercnt (89,805,158 samples, 0.02%)</title><rect x="14.8" y="933" width="0.2" height="15.0" fill="rgb(239,108,0)" rx="2" ry="2" />
+<text  x="17.76" y="943.5" ></text>
+</g>
+<g >
+<title>[Xorg] (1,646,017,822 samples, 0.45%)</title><rect x="205.5" y="917" width="5.3" height="15.0" fill="rgb(239,222,47)" rx="2" ry="2" />
+<text  x="208.55" y="927.5" ></text>
+</g>
+<g >
+<title>nft_do_chain (147,409,216 samples, 0.04%)</title><rect x="637.5" y="469" width="0.5" height="15.0" fill="rgb(209,114,0)" rx="2" ry="2" />
+<text  x="640.48" y="479.5" ></text>
+</g>
+<g >
+<title>psi_task_switch (94,977,566 samples, 0.03%)</title><rect x="90.1" y="821" width="0.3" height="15.0" fill="rgb(213,143,5)" rx="2" ry="2" />
+<text  x="93.06" y="831.5" ></text>
+</g>
+<g >
+<title>cpuidle_enter_state (73,711,034,525 samples, 20.11%)</title><rect x="888.0" y="885" width="237.3" height="15.0" fill="rgb(213,28,0)" rx="2" ry="2" />
+<text  x="890.98" y="895.5" >cpuidle_enter_state</text>
+</g>
+<g >
+<title>__wake_up_common (331,466,524 samples, 0.09%)</title><rect x="29.9" y="837" width="1.1" height="15.0" fill="rgb(212,13,29)" rx="2" ry="2" />
+<text  x="32.92" y="847.5" ></text>
+</g>
+<g >
+<title>process_backlog (58,316,762 samples, 0.02%)</title><rect x="665.8" y="549" width="0.2" height="15.0" fill="rgb(241,72,0)" rx="2" ry="2" />
+<text  x="668.77" y="559.5" ></text>
+</g>
+<g >
+<title>tcp_gro_receive (62,929,210 samples, 0.02%)</title><rect x="308.8" y="709" width="0.2" height="15.0" fill="rgb(251,192,26)" rx="2" ry="2" />
+<text  x="311.84" y="719.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (1,364,898,470 samples, 0.37%)</title><rect x="129.9" y="837" width="4.4" height="15.0" fill="rgb(249,209,41)" rx="2" ry="2" />
+<text  x="132.90" y="847.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (390,494,773 samples, 0.11%)</title><rect x="548.8" y="853" width="1.2" height="15.0" fill="rgb(218,166,49)" rx="2" ry="2" />
+<text  x="551.76" y="863.5" ></text>
+</g>
+<g >
+<title>skb_copy_datagram_iter (107,324,411 samples, 0.03%)</title><rect x="748.2" y="565" width="0.3" height="15.0" fill="rgb(212,33,44)" rx="2" ry="2" />
+<text  x="751.16" y="575.5" ></text>
+</g>
+<g >
+<title>timekeeping_max_deferment (54,255,837 samples, 0.01%)</title><rect x="1144.5" y="853" width="0.1" height="15.0" fill="rgb(219,10,51)" rx="2" ry="2" />
+<text  x="1147.46" y="863.5" ></text>
+</g>
+<g >
+<title>__sys_sendmsg (138,477,115 samples, 0.04%)</title><rect x="93.6" y="901" width="0.4" height="15.0" fill="rgb(242,209,25)" rx="2" ry="2" />
+<text  x="96.58" y="911.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (115,306,790 samples, 0.03%)</title><rect x="1165.6" y="757" width="0.3" height="15.0" fill="rgb(213,104,32)" rx="2" ry="2" />
+<text  x="1168.55" y="767.5" ></text>
+</g>
+<g >
+<title>__GI___libc_malloc (78,820,296 samples, 0.02%)</title><rect x="745.9" y="805" width="0.3" height="15.0" fill="rgb(207,178,1)" rx="2" ry="2" />
+<text  x="748.92" y="815.5" ></text>
+</g>
+<g >
+<title>__i915_gem_object_get_pages (83,652,916 samples, 0.02%)</title><rect x="134.5" y="725" width="0.2" height="15.0" fill="rgb(245,66,3)" rx="2" ry="2" />
+<text  x="137.46" y="735.5" ></text>
+</g>
+<g >
+<title>sock_alloc_send_pskb (39,418,884 samples, 0.01%)</title><rect x="1189.3" y="821" width="0.1" height="15.0" fill="rgb(252,179,47)" rx="2" ry="2" />
+<text  x="1192.30" y="831.5" ></text>
+</g>
+<g >
+<title>__libc_start_call_main (114,353,481 samples, 0.03%)</title><rect x="243.4" y="933" width="0.4" height="15.0" fill="rgb(225,5,29)" rx="2" ry="2" />
+<text  x="246.39" y="943.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (250,355,498 samples, 0.07%)</title><rect x="531.2" y="853" width="0.9" height="15.0" fill="rgb(210,90,15)" rx="2" ry="2" />
+<text  x="534.25" y="863.5" ></text>
+</g>
+<g >
+<title>__sys_recvmsg (116,984,878 samples, 0.03%)</title><rect x="44.5" y="885" width="0.4" height="15.0" fill="rgb(210,151,22)" rx="2" ry="2" />
+<text  x="47.54" y="895.5" ></text>
+</g>
+<g >
+<title>tcp_stream_alloc_skb (52,046,598 samples, 0.01%)</title><rect x="665.4" y="725" width="0.1" height="15.0" fill="rgb(210,166,4)" rx="2" ry="2" />
+<text  x="668.38" y="735.5" ></text>
+</g>
+<g >
+<title>xcb_poll_for_special_event (65,680,125 samples, 0.02%)</title><rect x="1165.7" y="661" width="0.2" height="15.0" fill="rgb(245,48,7)" rx="2" ry="2" />
+<text  x="1168.69" y="671.5" ></text>
+</g>
+<g >
+<title>process_one_work (7,474,285,955 samples, 2.04%)</title><rect x="479.0" y="917" width="24.1" height="15.0" fill="rgb(254,168,26)" rx="2" ry="2" />
+<text  x="482.01" y="927.5" >p..</text>
+</g>
+<g >
+<title>hrtimer_start_range_ns (354,376,825 samples, 0.10%)</title><rect x="1156.9" y="869" width="1.2" height="15.0" fill="rgb(245,111,0)" rx="2" ry="2" />
+<text  x="1159.91" y="879.5" ></text>
+</g>
+<g >
+<title>rate_control_tx_status (34,996,518 samples, 0.01%)</title><rect x="310.9" y="693" width="0.1" height="15.0" fill="rgb(210,184,37)" rx="2" ry="2" />
+<text  x="313.90" y="703.5" ></text>
+</g>
+<g >
+<title>migrate_pages (1,496,679,745 samples, 0.41%)</title><rect x="342.0" y="885" width="4.8" height="15.0" fill="rgb(219,104,30)" rx="2" ry="2" />
+<text  x="345.02" y="895.5" ></text>
+</g>
+<g >
+<title>_start (3,016,851,149 samples, 0.82%)</title><rect x="819.1" y="965" width="9.7" height="15.0" fill="rgb(213,217,22)" rx="2" ry="2" />
+<text  x="822.06" y="975.5" ></text>
+</g>
+<g >
+<title>irqtime_account_irq (39,309,762 samples, 0.01%)</title><rect x="898.1" y="837" width="0.1" height="15.0" fill="rgb(213,93,14)" rx="2" ry="2" />
+<text  x="901.11" y="847.5" ></text>
+</g>
+<g >
+<title>xas_set_mark (78,395,354 samples, 0.02%)</title><rect x="718.7" y="709" width="0.3" height="15.0" fill="rgb(222,145,43)" rx="2" ry="2" />
+<text  x="721.74" y="719.5" ></text>
+</g>
+<g >
+<title>xfce4-terminal (3,224,203,531 samples, 0.88%)</title><rect x="1175.0" y="981" width="10.4" height="15.0" fill="rgb(231,112,36)" rx="2" ry="2" />
+<text  x="1178.03" y="991.5" ></text>
+</g>
+<g >
+<title>[libxul.so] (287,969,655 samples, 0.08%)</title><rect x="192.8" y="949" width="1.0" height="15.0" fill="rgb(225,189,0)" rx="2" ry="2" />
+<text  x="195.83" y="959.5" ></text>
+</g>
+<g >
+<title>[[vdso]] (38,212,681 samples, 0.01%)</title><rect x="281.9" y="853" width="0.1" height="15.0" fill="rgb(213,65,17)" rx="2" ry="2" />
+<text  x="284.90" y="863.5" ></text>
+</g>
+<g >
+<title>[git-remote-http] (89,123,451 samples, 0.02%)</title><rect x="284.8" y="805" width="0.2" height="15.0" fill="rgb(244,43,24)" rx="2" ry="2" />
+<text  x="287.75" y="815.5" ></text>
+</g>
+<g >
+<title>iomap_finish_ioends (47,825,313 samples, 0.01%)</title><rect x="396.2" y="869" width="0.1" height="15.0" fill="rgb(229,100,12)" rx="2" ry="2" />
+<text  x="399.16" y="879.5" ></text>
+</g>
+<g >
+<title>pipewire-pulse (1,125,723,940 samples, 0.31%)</title><rect x="728.9" y="981" width="3.6" height="15.0" fill="rgb(217,17,8)" rx="2" ry="2" />
+<text  x="731.92" y="991.5" ></text>
+</g>
+<g >
+<title>skb_release_head_state (59,298,346 samples, 0.02%)</title><rect x="39.8" y="789" width="0.2" height="15.0" fill="rgb(230,228,38)" rx="2" ry="2" />
+<text  x="42.82" y="799.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (3,156,068,075 samples, 0.86%)</title><rect x="422.1" y="853" width="10.1" height="15.0" fill="rgb(243,154,53)" rx="2" ry="2" />
+<text  x="425.06" y="863.5" ></text>
+</g>
+<g >
+<title>__x64_sys_sched_yield (157,901,872 samples, 0.04%)</title><rect x="295.7" y="869" width="0.6" height="15.0" fill="rgb(232,7,21)" rx="2" ry="2" />
+<text  x="298.75" y="879.5" ></text>
+</g>
+<g >
+<title>dequeue_task_fair (151,137,071 samples, 0.04%)</title><rect x="88.7" y="821" width="0.4" height="15.0" fill="rgb(222,140,53)" rx="2" ry="2" />
+<text  x="91.65" y="831.5" ></text>
+</g>
+<g >
+<title>bdrv_co_preadv_part (2,909,073,739 samples, 0.79%)</title><rect x="736.5" y="821" width="9.4" height="15.0" fill="rgb(221,168,37)" rx="2" ry="2" />
+<text  x="739.49" y="831.5" ></text>
+</g>
+<g >
+<title>update_blocked_averages (81,128,571 samples, 0.02%)</title><rect x="35.1" y="757" width="0.2" height="15.0" fill="rgb(233,195,16)" rx="2" ry="2" />
+<text  x="38.05" y="767.5" ></text>
+</g>
+<g >
+<title>nbd_receive_reply (788,114,627 samples, 0.22%)</title><rect x="736.8" y="741" width="2.5" height="15.0" fill="rgb(238,47,13)" rx="2" ry="2" />
+<text  x="739.77" y="751.5" ></text>
+</g>
+<g >
+<title>nft_do_chain (160,433,827 samples, 0.04%)</title><rect x="742.1" y="261" width="0.5" height="15.0" fill="rgb(217,95,50)" rx="2" ry="2" />
+<text  x="745.06" y="271.5" ></text>
+</g>
+<g >
+<title>__libc_poll (801,018,840 samples, 0.22%)</title><rect x="725.9" y="949" width="2.6" height="15.0" fill="rgb(209,17,29)" rx="2" ry="2" />
+<text  x="728.89" y="959.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (360,033,394 samples, 0.10%)</title><rect x="289.4" y="933" width="1.1" height="15.0" fill="rgb(220,175,1)" rx="2" ry="2" />
+<text  x="292.39" y="943.5" ></text>
+</g>
+<g >
+<title>process_one_work (198,521,733 samples, 0.05%)</title><rect x="397.6" y="917" width="0.6" height="15.0" fill="rgb(231,88,11)" rx="2" ry="2" />
+<text  x="400.59" y="927.5" ></text>
+</g>
+<g >
+<title>__tls_get_addr (62,320,668 samples, 0.02%)</title><rect x="267.1" y="949" width="0.2" height="15.0" fill="rgb(214,147,21)" rx="2" ry="2" />
+<text  x="270.12" y="959.5" ></text>
+</g>
+<g >
+<title>__GI___writev (39,959,267 samples, 0.01%)</title><rect x="1165.3" y="741" width="0.1" height="15.0" fill="rgb(212,28,32)" rx="2" ry="2" />
+<text  x="1168.31" y="751.5" ></text>
+</g>
+<g >
+<title>__libc_recvmsg (289,182,966 samples, 0.08%)</title><rect x="736.9" y="709" width="0.9" height="15.0" fill="rgb(228,175,40)" rx="2" ry="2" />
+<text  x="739.89" y="719.5" ></text>
+</g>
+<g >
+<title>__schedule (312,492,899 samples, 0.09%)</title><rect x="13.1" y="789" width="1.0" height="15.0" fill="rgb(240,148,40)" rx="2" ry="2" />
+<text  x="16.11" y="799.5" ></text>
+</g>
+<g >
+<title>wb_writeback (757,722,318 samples, 0.21%)</title><rect x="571.9" y="885" width="2.4" height="15.0" fill="rgb(214,160,39)" rx="2" ry="2" />
+<text  x="574.86" y="895.5" ></text>
+</g>
+<g >
+<title>__mod_lruvec_page_state (71,991,585 samples, 0.02%)</title><rect x="439.1" y="709" width="0.3" height="15.0" fill="rgb(214,120,33)" rx="2" ry="2" />
+<text  x="442.14" y="719.5" ></text>
+</g>
+<g >
+<title>worker_thread (296,928,550 samples, 0.08%)</title><rect x="392.7" y="933" width="1.0" height="15.0" fill="rgb(211,156,41)" rx="2" ry="2" />
+<text  x="395.72" y="943.5" ></text>
+</g>
+<g >
+<title>dma_map_page_attrs (32,184,223 samples, 0.01%)</title><rect x="634.4" y="357" width="0.1" height="15.0" fill="rgb(208,217,4)" rx="2" ry="2" />
+<text  x="637.43" y="367.5" ></text>
+</g>
+<g >
+<title>systemd-userwor (35,670,217 samples, 0.01%)</title><rect x="1161.9" y="981" width="0.1" height="15.0" fill="rgb(227,71,39)" rx="2" ry="2" />
+<text  x="1164.87" y="991.5" ></text>
+</g>
+<g >
+<title>gdk_window_get_origin (34,197,541 samples, 0.01%)</title><rect x="282.3" y="933" width="0.1" height="15.0" fill="rgb(240,214,0)" rx="2" ry="2" />
+<text  x="285.30" y="943.5" ></text>
+</g>
+<g >
+<title>raw_spin_rq_lock_nested (73,465,657 samples, 0.02%)</title><rect x="1127.4" y="853" width="0.3" height="15.0" fill="rgb(243,207,8)" rx="2" ry="2" />
+<text  x="1130.43" y="863.5" ></text>
+</g>
+<g >
+<title>[libxcb.so.1.1.0] (804,233,022 samples, 0.22%)</title><rect x="20.7" y="869" width="2.6" height="15.0" fill="rgb(221,137,43)" rx="2" ry="2" />
+<text  x="23.75" y="879.5" ></text>
+</g>
+<g >
+<title>__memcpy_avx_unaligned_erms (61,675,035 samples, 0.02%)</title><rect x="170.3" y="949" width="0.2" height="15.0" fill="rgb(222,109,41)" rx="2" ry="2" />
+<text  x="173.35" y="959.5" ></text>
+</g>
+<g >
+<title>[libEGL_mesa.so.0.0.0] (42,779,463 samples, 0.01%)</title><rect x="152.7" y="917" width="0.1" height="15.0" fill="rgb(237,197,0)" rx="2" ry="2" />
+<text  x="155.71" y="927.5" ></text>
+</g>
+<g >
+<title>psi_group_change (85,448,651 samples, 0.02%)</title><rect x="822.7" y="741" width="0.3" height="15.0" fill="rgb(246,165,29)" rx="2" ry="2" />
+<text  x="825.75" y="751.5" ></text>
+</g>
+<g >
+<title>__hrtimer_run_queues (2,327,009,443 samples, 0.63%)</title><rect x="905.4" y="805" width="7.5" height="15.0" fill="rgb(233,12,12)" rx="2" ry="2" />
+<text  x="908.36" y="815.5" ></text>
+</g>
+<g >
+<title>[libcairo.so.2.11706.0] (31,527,216 samples, 0.01%)</title><rect x="1172.1" y="197" width="0.1" height="15.0" fill="rgb(210,156,36)" rx="2" ry="2" />
+<text  x="1175.08" y="207.5" ></text>
+</g>
+<g >
+<title>wake_up_q (37,265,104 samples, 0.01%)</title><rect x="15.2" y="853" width="0.1" height="15.0" fill="rgb(225,215,39)" rx="2" ry="2" />
+<text  x="18.17" y="863.5" ></text>
+</g>
+<g >
+<title>refill_obj_stock (34,773,924 samples, 0.01%)</title><rect x="19.8" y="581" width="0.1" height="15.0" fill="rgb(230,171,53)" rx="2" ry="2" />
+<text  x="22.80" y="591.5" ></text>
+</g>
+<g >
+<title>__folio_start_writeback (189,659,615 samples, 0.05%)</title><rect x="419.2" y="741" width="0.7" height="15.0" fill="rgb(243,24,32)" rx="2" ry="2" />
+<text  x="422.25" y="751.5" ></text>
+</g>
+<g >
+<title>__wake_up_common_lock (34,314,581 samples, 0.01%)</title><rect x="266.8" y="757" width="0.1" height="15.0" fill="rgb(246,169,28)" rx="2" ry="2" />
+<text  x="269.82" y="767.5" ></text>
+</g>
+<g >
+<title>[libcairo.so.2.11706.0] (61,198,081 samples, 0.02%)</title><rect x="1176.4" y="837" width="0.2" height="15.0" fill="rgb(224,91,51)" rx="2" ry="2" />
+<text  x="1179.38" y="847.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (38,740,265 samples, 0.01%)</title><rect x="384.9" y="757" width="0.1" height="15.0" fill="rgb(232,120,46)" rx="2" ry="2" />
+<text  x="387.88" y="767.5" ></text>
+</g>
+<g >
+<title>wake_up_q (39,428,858 samples, 0.01%)</title><rect x="104.4" y="837" width="0.1" height="15.0" fill="rgb(212,223,48)" rx="2" ry="2" />
+<text  x="107.36" y="847.5" ></text>
+</g>
+<g >
+<title>[firefox] (67,670,838 samples, 0.02%)</title><rect x="149.9" y="901" width="0.2" height="15.0" fill="rgb(244,200,5)" rx="2" ry="2" />
+<text  x="152.93" y="911.5" ></text>
+</g>
+<g >
+<title>__intel_pmu_enable_all.constprop.0 (60,476,991 samples, 0.02%)</title><rect x="911.2" y="709" width="0.2" height="15.0" fill="rgb(227,85,14)" rx="2" ry="2" />
+<text  x="914.22" y="719.5" ></text>
+</g>
+<g >
+<title>tcp_ack (123,594,211 samples, 0.03%)</title><rect x="661.2" y="421" width="0.4" height="15.0" fill="rgb(237,59,27)" rx="2" ry="2" />
+<text  x="664.19" y="431.5" ></text>
+</g>
+<g >
+<title>__futex_abstimed_wait_common (746,062,929 samples, 0.20%)</title><rect x="816.4" y="869" width="2.4" height="15.0" fill="rgb(233,150,14)" rx="2" ry="2" />
+<text  x="819.40" y="879.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (1,608,192,221 samples, 0.44%)</title><rect x="136.4" y="885" width="5.2" height="15.0" fill="rgb(216,144,16)" rx="2" ry="2" />
+<text  x="139.43" y="895.5" ></text>
+</g>
+<g >
+<title>zs_shrinker_count (32,627,726 samples, 0.01%)</title><rect x="382.4" y="853" width="0.1" height="15.0" fill="rgb(211,204,53)" rx="2" ry="2" />
+<text  x="385.40" y="863.5" ></text>
+</g>
+<g >
+<title>malloc (49,173,389 samples, 0.01%)</title><rect x="269.3" y="949" width="0.2" height="15.0" fill="rgb(210,164,53)" rx="2" ry="2" />
+<text  x="272.33" y="959.5" ></text>
+</g>
+<g >
+<title>[libglamoregl.so] (97,353,550 samples, 0.03%)</title><rect x="213.2" y="869" width="0.3" height="15.0" fill="rgb(230,112,13)" rx="2" ry="2" />
+<text  x="216.23" y="879.5" ></text>
+</g>
+<g >
+<title>alloc_pages (151,095,539 samples, 0.04%)</title><rect x="711.5" y="725" width="0.5" height="15.0" fill="rgb(220,185,14)" rx="2" ry="2" />
+<text  x="714.50" y="735.5" ></text>
+</g>
+<g >
+<title>[libxfce4panel-2.0.so.4.0.0] (437,989,662 samples, 0.12%)</title><rect x="1171.6" y="341" width="1.4" height="15.0" fill="rgb(212,118,33)" rx="2" ry="2" />
+<text  x="1174.56" y="351.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (45,764,134 samples, 0.01%)</title><rect x="210.7" y="853" width="0.1" height="15.0" fill="rgb(225,45,25)" rx="2" ry="2" />
+<text  x="213.65" y="863.5" ></text>
+</g>
+<g >
+<title>__list_del_entry_valid (75,782,206 samples, 0.02%)</title><rect x="354.8" y="853" width="0.3" height="15.0" fill="rgb(230,229,44)" rx="2" ry="2" />
+<text  x="357.84" y="863.5" ></text>
+</g>
+<g >
+<title>[libxul.so] (31,694,011 samples, 0.01%)</title><rect x="53.3" y="933" width="0.1" height="15.0" fill="rgb(244,4,16)" rx="2" ry="2" />
+<text  x="56.33" y="943.5" ></text>
+</g>
+<g >
+<title>__wake_up_common_lock (81,994,693 samples, 0.02%)</title><rect x="661.7" y="389" width="0.3" height="15.0" fill="rgb(253,23,43)" rx="2" ry="2" />
+<text  x="664.69" y="399.5" ></text>
+</g>
+<g >
+<title>__libc_send (2,384,044,298 samples, 0.65%)</title><rect x="658.8" y="853" width="7.6" height="15.0" fill="rgb(213,177,28)" rx="2" ry="2" />
+<text  x="661.76" y="863.5" ></text>
+</g>
+<g >
+<title>skcipher_walk_done (49,262,823 samples, 0.01%)</title><rect x="515.8" y="821" width="0.2" height="15.0" fill="rgb(229,114,46)" rx="2" ry="2" />
+<text  x="518.80" y="831.5" ></text>
+</g>
+<g >
+<title>[libxcb.so.1.1.0] (51,284,669 samples, 0.01%)</title><rect x="1165.3" y="789" width="0.2" height="15.0" fill="rgb(224,94,53)" rx="2" ry="2" />
+<text  x="1168.31" y="799.5" ></text>
+</g>
+<g >
+<title>bdev_write_page (37,095,526 samples, 0.01%)</title><rect x="368.5" y="821" width="0.2" height="15.0" fill="rgb(219,6,26)" rx="2" ry="2" />
+<text  x="371.53" y="831.5" ></text>
+</g>
+<g >
+<title>[libgdk-3.so.0.2404.30] (278,228,126 samples, 0.08%)</title><rect x="1177.8" y="757" width="0.9" height="15.0" fill="rgb(233,117,3)" rx="2" ry="2" />
+<text  x="1180.77" y="767.5" ></text>
+</g>
+<g >
+<title>____sys_recvmsg (67,339,905 samples, 0.02%)</title><rect x="1188.5" y="901" width="0.2" height="15.0" fill="rgb(233,212,36)" rx="2" ry="2" />
+<text  x="1191.48" y="911.5" ></text>
+</g>
+<g >
+<title>xfs_end_ioend (897,077,301 samples, 0.24%)</title><rect x="382.8" y="885" width="2.9" height="15.0" fill="rgb(239,158,27)" rx="2" ry="2" />
+<text  x="385.82" y="895.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (106,621,915 samples, 0.03%)</title><rect x="1173.1" y="469" width="0.3" height="15.0" fill="rgb(215,175,13)" rx="2" ry="2" />
+<text  x="1176.09" y="479.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (50,785,186 samples, 0.01%)</title><rect x="159.2" y="853" width="0.2" height="15.0" fill="rgb(222,34,28)" rx="2" ry="2" />
+<text  x="162.23" y="863.5" ></text>
+</g>
+<g >
+<title>__GI___lll_lock_wake (44,803,093 samples, 0.01%)</title><rect x="157.2" y="917" width="0.2" height="15.0" fill="rgb(227,163,0)" rx="2" ry="2" />
+<text  x="160.25" y="927.5" ></text>
+</g>
+<g >
+<title>do_writepages (459,318,962 samples, 0.13%)</title><rect x="418.7" y="821" width="1.4" height="15.0" fill="rgb(223,56,9)" rx="2" ry="2" />
+<text  x="421.66" y="831.5" ></text>
+</g>
+<g >
+<title>ieee80211_tx_status_ext (776,219,092 samples, 0.21%)</title><rect x="311.8" y="725" width="2.5" height="15.0" fill="rgb(218,129,14)" rx="2" ry="2" />
+<text  x="314.79" y="735.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (1,072,917,167 samples, 0.29%)</title><rect x="329.0" y="693" width="3.5" height="15.0" fill="rgb(208,178,17)" rx="2" ry="2" />
+<text  x="332.04" y="703.5" ></text>
+</g>
+<g >
+<title>lzo1x_1_do_compress (63,264,196 samples, 0.02%)</title><rect x="369.5" y="725" width="0.2" height="15.0" fill="rgb(212,171,0)" rx="2" ry="2" />
+<text  x="372.51" y="735.5" ></text>
+</g>
+<g >
+<title>xas_descend (125,252,311 samples, 0.03%)</title><rect x="712.4" y="725" width="0.4" height="15.0" fill="rgb(246,18,22)" rx="2" ry="2" />
+<text  x="715.38" y="735.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (581,239,764 samples, 0.16%)</title><rect x="119.6" y="933" width="1.9" height="15.0" fill="rgb(252,64,13)" rx="2" ry="2" />
+<text  x="122.62" y="943.5" ></text>
+</g>
+<g >
+<title>schedule (672,563,241 samples, 0.18%)</title><rect x="88.4" y="853" width="2.1" height="15.0" fill="rgb(223,124,24)" rx="2" ry="2" />
+<text  x="91.37" y="863.5" ></text>
+</g>
+<g >
+<title>i915_vma_pin_ww (611,704,752 samples, 0.17%)</title><rect x="234.1" y="837" width="2.0" height="15.0" fill="rgb(248,54,8)" rx="2" ry="2" />
+<text  x="237.08" y="847.5" ></text>
+</g>
+<g >
+<title>iomap_finish_ioend (313,198,687 samples, 0.09%)</title><rect x="396.5" y="853" width="1.0" height="15.0" fill="rgb(209,85,15)" rx="2" ry="2" />
+<text  x="399.52" y="863.5" ></text>
+</g>
+<g >
+<title>vfs_read (69,330,482 samples, 0.02%)</title><rect x="275.4" y="869" width="0.2" height="15.0" fill="rgb(221,59,46)" rx="2" ry="2" />
+<text  x="278.40" y="879.5" ></text>
+</g>
+<g >
+<title>xfs_end_ioend (257,909,672 samples, 0.07%)</title><rect x="387.3" y="885" width="0.9" height="15.0" fill="rgb(214,184,41)" rx="2" ry="2" />
+<text  x="390.32" y="895.5" ></text>
+</g>
+<g >
+<title>folio_end_writeback (204,132,195 samples, 0.06%)</title><rect x="392.0" y="837" width="0.7" height="15.0" fill="rgb(230,188,19)" rx="2" ry="2" />
+<text  x="395.04" y="847.5" ></text>
+</g>
+<g >
+<title>pagevec_lookup_range_tag (35,344,522 samples, 0.01%)</title><rect x="556.9" y="757" width="0.1" height="15.0" fill="rgb(226,54,46)" rx="2" ry="2" />
+<text  x="559.91" y="767.5" ></text>
+</g>
+<g >
+<title>mod_lruvec_page_state (70,288,650 samples, 0.02%)</title><rect x="596.4" y="725" width="0.2" height="15.0" fill="rgb(249,213,21)" rx="2" ry="2" />
+<text  x="599.35" y="735.5" ></text>
+</g>
+<g >
+<title>ip_local_out (201,753,474 samples, 0.06%)</title><rect x="624.6" y="485" width="0.7" height="15.0" fill="rgb(213,190,8)" rx="2" ry="2" />
+<text  x="627.64" y="495.5" ></text>
+</g>
+<g >
+<title>bad_range (31,094,554 samples, 0.01%)</title><rect x="367.9" y="805" width="0.1" height="15.0" fill="rgb(248,114,48)" rx="2" ry="2" />
+<text  x="370.89" y="815.5" ></text>
+</g>
+<g >
+<title>[libcurl.so.4.8.0] (259,122,011 samples, 0.07%)</title><rect x="615.1" y="965" width="0.8" height="15.0" fill="rgb(225,229,7)" rx="2" ry="2" />
+<text  x="618.11" y="975.5" ></text>
+</g>
+<g >
+<title>[libglib-2.0.so.0.7303.0] (64,938,680 samples, 0.02%)</title><rect x="244.1" y="693" width="0.2" height="15.0" fill="rgb(207,116,54)" rx="2" ry="2" />
+<text  x="247.10" y="703.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (101,617,260 samples, 0.03%)</title><rect x="146.2" y="933" width="0.3" height="15.0" fill="rgb(220,173,27)" rx="2" ry="2" />
+<text  x="149.21" y="943.5" ></text>
+</g>
+<g >
+<title>nft_do_chain_inet (164,497,077 samples, 0.04%)</title><rect x="742.0" y="277" width="0.6" height="15.0" fill="rgb(214,14,35)" rx="2" ry="2" />
+<text  x="745.05" y="287.5" ></text>
+</g>
+<g >
+<title>folio_end_writeback (822,726,622 samples, 0.22%)</title><rect x="383.0" y="837" width="2.7" height="15.0" fill="rgb(207,141,52)" rx="2" ry="2" />
+<text  x="386.02" y="847.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (47,653,575 samples, 0.01%)</title><rect x="1163.5" y="645" width="0.1" height="15.0" fill="rgb(220,189,17)" rx="2" ry="2" />
+<text  x="1166.49" y="655.5" ></text>
+</g>
+<g >
+<title>crypt_page_alloc (285,441,159 samples, 0.08%)</title><rect x="501.2" y="869" width="0.9" height="15.0" fill="rgb(242,123,52)" rx="2" ry="2" />
+<text  x="504.18" y="879.5" ></text>
+</g>
+<g >
+<title>poll_select_set_timeout (42,874,776 samples, 0.01%)</title><rect x="656.0" y="661" width="0.1" height="15.0" fill="rgb(213,98,53)" rx="2" ry="2" />
+<text  x="658.97" y="671.5" ></text>
+</g>
+<g >
+<title>start_thread (335,616,923 samples, 0.09%)</title><rect x="667.8" y="965" width="1.1" height="15.0" fill="rgb(238,213,46)" rx="2" ry="2" />
+<text  x="670.84" y="975.5" ></text>
+</g>
+<g >
+<title>drm_ioctl (86,779,579 samples, 0.02%)</title><rect x="1163.7" y="581" width="0.2" height="15.0" fill="rgb(254,214,28)" rx="2" ry="2" />
+<text  x="1166.65" y="591.5" ></text>
+</g>
+<g >
+<title>qio_channel_writev_full_all (1,584,636,873 samples, 0.43%)</title><rect x="739.4" y="709" width="5.1" height="15.0" fill="rgb(246,156,40)" rx="2" ry="2" />
+<text  x="742.35" y="719.5" ></text>
+</g>
+<g >
+<title>iwl_fw_lookup_notif_ver (35,941,441 samples, 0.01%)</title><rect x="314.7" y="741" width="0.1" height="15.0" fill="rgb(241,144,20)" rx="2" ry="2" />
+<text  x="317.70" y="751.5" ></text>
+</g>
+<g >
+<title>[ssh] (57,700,661 samples, 0.02%)</title><rect x="830.4" y="885" width="0.2" height="15.0" fill="rgb(216,120,18)" rx="2" ry="2" />
+<text  x="833.41" y="895.5" ></text>
+</g>
+<g >
+<title>[Xorg] (7,733,553,872 samples, 2.11%)</title><rect x="198.6" y="965" width="24.9" height="15.0" fill="rgb(207,148,4)" rx="2" ry="2" />
+<text  x="201.57" y="975.5" >[..</text>
+</g>
+<g >
+<title>[Xorg] (286,505,306 samples, 0.08%)</title><rect x="201.5" y="837" width="1.0" height="15.0" fill="rgb(217,79,25)" rx="2" ry="2" />
+<text  x="204.54" y="847.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock_irqsave (63,458,457 samples, 0.02%)</title><rect x="459.2" y="725" width="0.2" height="15.0" fill="rgb(233,147,20)" rx="2" ry="2" />
+<text  x="462.15" y="735.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (297,869,609 samples, 0.08%)</title><rect x="1163.3" y="741" width="1.0" height="15.0" fill="rgb(231,27,53)" rx="2" ry="2" />
+<text  x="1166.31" y="751.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (188,771,957 samples, 0.05%)</title><rect x="1177.8" y="549" width="0.6" height="15.0" fill="rgb(213,170,33)" rx="2" ry="2" />
+<text  x="1180.84" y="559.5" ></text>
+</g>
+<g >
+<title>selinux_socket_sendmsg (47,587,681 samples, 0.01%)</title><rect x="46.9" y="821" width="0.2" height="15.0" fill="rgb(218,130,22)" rx="2" ry="2" />
+<text  x="49.92" y="831.5" ></text>
+</g>
+<g >
+<title>[wget] (92,132,750 samples, 0.03%)</title><rect x="1167.1" y="885" width="0.3" height="15.0" fill="rgb(246,137,1)" rx="2" ry="2" />
+<text  x="1170.10" y="895.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (166,505,793 samples, 0.05%)</title><rect x="215.6" y="741" width="0.6" height="15.0" fill="rgb(223,213,12)" rx="2" ry="2" />
+<text  x="218.63" y="751.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (127,676,482 samples, 0.03%)</title><rect x="827.3" y="821" width="0.4" height="15.0" fill="rgb(228,7,24)" rx="2" ry="2" />
+<text  x="830.27" y="831.5" ></text>
+</g>
+<g >
+<title>__local_bh_enable_ip (858,778,428 samples, 0.23%)</title><rect x="660.3" y="613" width="2.8" height="15.0" fill="rgb(231,143,21)" rx="2" ry="2" />
+<text  x="663.34" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_epoll_wait (178,359,893 samples, 0.05%)</title><rect x="731.3" y="933" width="0.6" height="15.0" fill="rgb(205,142,15)" rx="2" ry="2" />
+<text  x="734.33" y="943.5" ></text>
+</g>
+<g >
+<title>crypt_iv_plain64_gen (117,831,815 samples, 0.03%)</title><rect x="462.0" y="869" width="0.3" height="15.0" fill="rgb(243,16,40)" rx="2" ry="2" />
+<text  x="464.95" y="879.5" ></text>
+</g>
+<g >
+<title>__mod_lruvec_state (136,257,192 samples, 0.04%)</title><rect x="359.5" y="789" width="0.5" height="15.0" fill="rgb(230,99,0)" rx="2" ry="2" />
+<text  x="362.51" y="799.5" ></text>
+</g>
+<g >
+<title>fence_notify (62,869,549 samples, 0.02%)</title><rect x="140.5" y="725" width="0.2" height="15.0" fill="rgb(218,218,13)" rx="2" ry="2" />
+<text  x="143.49" y="735.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_list_core (601,712,954 samples, 0.16%)</title><rect x="319.6" y="725" width="1.9" height="15.0" fill="rgb(216,190,31)" rx="2" ry="2" />
+<text  x="322.55" y="735.5" ></text>
+</g>
+<g >
+<title>process_one_work (381,737,774 samples, 0.10%)</title><rect x="389.1" y="917" width="1.2" height="15.0" fill="rgb(250,2,39)" rx="2" ry="2" />
+<text  x="392.05" y="927.5" ></text>
+</g>
+<g >
+<title>__libc_recvmsg (150,628,371 samples, 0.04%)</title><rect x="748.0" y="709" width="0.5" height="15.0" fill="rgb(226,201,13)" rx="2" ry="2" />
+<text  x="751.04" y="719.5" ></text>
+</g>
+<g >
+<title>__mod_lruvec_page_state (97,430,849 samples, 0.03%)</title><rect x="459.5" y="709" width="0.3" height="15.0" fill="rgb(208,3,44)" rx="2" ry="2" />
+<text  x="462.52" y="719.5" ></text>
+</g>
+<g >
+<title>__sk_mem_schedule (41,980,265 samples, 0.01%)</title><rect x="665.6" y="709" width="0.1" height="15.0" fill="rgb(212,154,18)" rx="2" ry="2" />
+<text  x="668.56" y="719.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (47,284,469 samples, 0.01%)</title><rect x="146.3" y="725" width="0.2" height="15.0" fill="rgb(246,119,10)" rx="2" ry="2" />
+<text  x="149.33" y="735.5" ></text>
+</g>
+<g >
+<title>[libwnck-3.so.0.3.0] (327,148,950 samples, 0.09%)</title><rect x="1173.1" y="485" width="1.0" height="15.0" fill="rgb(242,161,30)" rx="2" ry="2" />
+<text  x="1176.06" y="495.5" ></text>
+</g>
+<g >
+<title>[libevent-2.1.so.7.0.1] (1,387,056,923 samples, 0.38%)</title><rect x="32.2" y="933" width="4.5" height="15.0" fill="rgb(243,88,1)" rx="2" ry="2" />
+<text  x="35.22" y="943.5" ></text>
+</g>
+<g >
+<title>isolate_freepages_block (467,777,119 samples, 0.13%)</title><rect x="342.8" y="853" width="1.5" height="15.0" fill="rgb(254,93,50)" rx="2" ry="2" />
+<text  x="345.75" y="863.5" ></text>
+</g>
+<g >
+<title>crypt_endio (112,247,762 samples, 0.03%)</title><rect x="892.9" y="741" width="0.4" height="15.0" fill="rgb(210,132,4)" rx="2" ry="2" />
+<text  x="895.92" y="751.5" ></text>
+</g>
+<g >
+<title>process_one_work (505,841,765 samples, 0.14%)</title><rect x="393.7" y="917" width="1.7" height="15.0" fill="rgb(227,208,50)" rx="2" ry="2" />
+<text  x="396.75" y="927.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (53,138,419 samples, 0.01%)</title><rect x="744.7" y="677" width="0.2" height="15.0" fill="rgb(222,127,6)" rx="2" ry="2" />
+<text  x="747.70" y="687.5" ></text>
+</g>
+<g >
+<title>___sys_recvmsg (484,196,219 samples, 0.13%)</title><rect x="39.0" y="869" width="1.6" height="15.0" fill="rgb(246,153,22)" rx="2" ry="2" />
+<text  x="42.02" y="879.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (988,119,925 samples, 0.27%)</title><rect x="130.9" y="821" width="3.1" height="15.0" fill="rgb(223,23,27)" rx="2" ry="2" />
+<text  x="133.85" y="831.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (1,377,515,985 samples, 0.38%)</title><rect x="753.9" y="741" width="4.4" height="15.0" fill="rgb(246,135,26)" rx="2" ry="2" />
+<text  x="756.87" y="751.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (54,936,850 samples, 0.01%)</title><rect x="49.0" y="901" width="0.1" height="15.0" fill="rgb(253,46,6)" rx="2" ry="2" />
+<text  x="51.95" y="911.5" ></text>
+</g>
+<g >
+<title>glPrimitiveBoundingBox (1,520,416,038 samples, 0.41%)</title><rect x="18.7" y="901" width="4.9" height="15.0" fill="rgb(218,149,49)" rx="2" ry="2" />
+<text  x="21.69" y="911.5" ></text>
+</g>
+<g >
+<title>[firefox] (62,320,936 samples, 0.02%)</title><rect x="24.6" y="901" width="0.2" height="15.0" fill="rgb(227,172,16)" rx="2" ry="2" />
+<text  x="27.55" y="911.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (58,129,665 samples, 0.02%)</title><rect x="20.5" y="789" width="0.2" height="15.0" fill="rgb(215,187,24)" rx="2" ry="2" />
+<text  x="23.47" y="799.5" ></text>
+</g>
+<g >
+<title>g_main_context_prepare (222,949,784 samples, 0.06%)</title><rect x="101.5" y="917" width="0.7" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
+<text  x="104.46" y="927.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (465,445,248 samples, 0.13%)</title><rect x="143.4" y="821" width="1.5" height="15.0" fill="rgb(219,68,45)" rx="2" ry="2" />
+<text  x="146.44" y="831.5" ></text>
+</g>
+<g >
+<title>get_page_from_freelist (31,263,499 samples, 0.01%)</title><rect x="705.2" y="693" width="0.1" height="15.0" fill="rgb(242,35,32)" rx="2" ry="2" />
+<text  x="708.20" y="703.5" ></text>
+</g>
+<g >
+<title>psi_group_change (35,438,605 samples, 0.01%)</title><rect x="292.7" y="789" width="0.1" height="15.0" fill="rgb(233,31,32)" rx="2" ry="2" />
+<text  x="295.67" y="799.5" ></text>
+</g>
+<g >
+<title>Isolated_Web_Co (19,870,253,574 samples, 5.42%)</title><rect x="54.2" y="981" width="64.0" height="15.0" fill="rgb(250,130,2)" rx="2" ry="2" />
+<text  x="57.20" y="991.5" >Isolate..</text>
+</g>
+<g >
+<title>__memset_avx2_unaligned_erms (91,084,636 samples, 0.02%)</title><rect x="266.3" y="949" width="0.3" height="15.0" fill="rgb(224,189,25)" rx="2" ry="2" />
+<text  x="269.26" y="959.5" ></text>
+</g>
+<g >
+<title>iomap_finish_ioend (886,577,408 samples, 0.24%)</title><rect x="382.8" y="853" width="2.9" height="15.0" fill="rgb(209,159,12)" rx="2" ry="2" />
+<text  x="385.82" y="863.5" ></text>
+</g>
+<g >
+<title>iomap_writepages (148,028,387 samples, 0.04%)</title><rect x="612.5" y="789" width="0.5" height="15.0" fill="rgb(205,199,41)" rx="2" ry="2" />
+<text  x="615.55" y="799.5" ></text>
+</g>
+<g >
+<title>moz_xmalloc (63,213,119 samples, 0.02%)</title><rect x="43.9" y="949" width="0.2" height="15.0" fill="rgb(253,173,43)" rx="2" ry="2" />
+<text  x="46.95" y="959.5" ></text>
+</g>
+<g >
+<title>inet_gro_receive (395,199,008 samples, 0.11%)</title><rect x="307.8" y="725" width="1.2" height="15.0" fill="rgb(241,163,7)" rx="2" ry="2" />
+<text  x="310.77" y="735.5" ></text>
+</g>
+<g >
+<title>__futex_abstimed_wait_common (47,445,840 samples, 0.01%)</title><rect x="118.3" y="901" width="0.1" height="15.0" fill="rgb(217,124,27)" rx="2" ry="2" />
+<text  x="121.26" y="911.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (4,221,324,197 samples, 1.15%)</title><rect x="421.8" y="869" width="13.6" height="15.0" fill="rgb(211,122,0)" rx="2" ry="2" />
+<text  x="424.83" y="879.5" ></text>
+</g>
+<g >
+<title>xfs_end_ioend (317,088,909 samples, 0.09%)</title><rect x="396.5" y="885" width="1.0" height="15.0" fill="rgb(215,215,1)" rx="2" ry="2" />
+<text  x="399.52" y="895.5" ></text>
+</g>
+<g >
+<title>psi_task_change (77,396,574 samples, 0.02%)</title><rect x="881.8" y="805" width="0.2" height="15.0" fill="rgb(219,217,31)" rx="2" ry="2" />
+<text  x="884.75" y="815.5" ></text>
+</g>
+<g >
+<title>sock_def_readable (86,388,530 samples, 0.02%)</title><rect x="661.7" y="405" width="0.3" height="15.0" fill="rgb(215,70,47)" rx="2" ry="2" />
+<text  x="664.68" y="415.5" ></text>
+</g>
+<g >
+<title>[firefox] (87,790,165 samples, 0.02%)</title><rect x="50.4" y="885" width="0.3" height="15.0" fill="rgb(249,221,0)" rx="2" ry="2" />
+<text  x="53.39" y="895.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (198,374,251 samples, 0.05%)</title><rect x="417.9" y="853" width="0.6" height="15.0" fill="rgb(236,123,40)" rx="2" ry="2" />
+<text  x="420.89" y="863.5" ></text>
+</g>
+<g >
+<title>[libcrypto.so.3.0.5] (76,095,565 samples, 0.02%)</title><rect x="284.8" y="677" width="0.2" height="15.0" fill="rgb(248,1,45)" rx="2" ry="2" />
+<text  x="287.77" y="687.5" ></text>
+</g>
+<g >
+<title>__queue_work (36,053,395 samples, 0.01%)</title><rect x="896.8" y="741" width="0.1" height="15.0" fill="rgb(224,172,52)" rx="2" ry="2" />
+<text  x="899.80" y="751.5" ></text>
+</g>
+<g >
+<title>ksys_write (49,210,095 samples, 0.01%)</title><rect x="737.9" y="613" width="0.2" height="15.0" fill="rgb(241,88,49)" rx="2" ry="2" />
+<text  x="740.94" y="623.5" ></text>
+</g>
+<g >
+<title>worker_thread (936,653,780 samples, 0.26%)</title><rect x="382.7" y="933" width="3.1" height="15.0" fill="rgb(213,4,44)" rx="2" ry="2" />
+<text  x="385.74" y="943.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (9,586,910,270 samples, 2.62%)</title><rect x="351.9" y="965" width="30.8" height="15.0" fill="rgb(215,115,0)" rx="2" ry="2" />
+<text  x="354.86" y="975.5" >re..</text>
+</g>
+<g >
+<title>iomap_write_end (421,233,781 samples, 0.11%)</title><rect x="758.4" y="757" width="1.3" height="15.0" fill="rgb(223,148,42)" rx="2" ry="2" />
+<text  x="761.37" y="767.5" ></text>
+</g>
+<g >
+<title>sysvec_apic_timer_interrupt (291,020,479 samples, 0.08%)</title><rect x="813.5" y="821" width="0.9" height="15.0" fill="rgb(232,121,2)" rx="2" ry="2" />
+<text  x="816.49" y="831.5" ></text>
+</g>
+<g >
+<title>drm_ioctl (242,621,686 samples, 0.07%)</title><rect x="144.1" y="741" width="0.7" height="15.0" fill="rgb(209,52,0)" rx="2" ry="2" />
+<text  x="147.06" y="751.5" ></text>
+</g>
+<g >
+<title>_find_next_bit (32,410,262 samples, 0.01%)</title><rect x="1161.2" y="821" width="0.1" height="15.0" fill="rgb(214,71,46)" rx="2" ry="2" />
+<text  x="1164.20" y="831.5" ></text>
+</g>
+<g >
+<title>skcipher_walk_virt (319,571,018 samples, 0.09%)</title><rect x="547.7" y="821" width="1.1" height="15.0" fill="rgb(236,177,40)" rx="2" ry="2" />
+<text  x="550.72" y="831.5" ></text>
+</g>
+<g >
+<title>__skb_datagram_iter (51,002,980 samples, 0.01%)</title><rect x="40.2" y="773" width="0.2" height="15.0" fill="rgb(237,202,12)" rx="2" ry="2" />
+<text  x="43.21" y="783.5" ></text>
+</g>
+<g >
+<title>try_to_unmap_one (41,283,535 samples, 0.01%)</title><rect x="370.3" y="821" width="0.1" height="15.0" fill="rgb(251,104,41)" rx="2" ry="2" />
+<text  x="373.29" y="831.5" ></text>
+</g>
+<g >
+<title>crypt_page_alloc (256,235,874 samples, 0.07%)</title><rect x="554.8" y="869" width="0.8" height="15.0" fill="rgb(213,201,49)" rx="2" ry="2" />
+<text  x="557.78" y="879.5" ></text>
+</g>
+<g >
+<title>xfs_perag_get_tag (300,898,360 samples, 0.08%)</title><rect x="380.8" y="821" width="1.0" height="15.0" fill="rgb(218,207,28)" rx="2" ry="2" />
+<text  x="383.82" y="831.5" ></text>
+</g>
+<g >
+<title>xas_start (36,700,230 samples, 0.01%)</title><rect x="699.1" y="693" width="0.2" height="15.0" fill="rgb(220,224,14)" rx="2" ry="2" />
+<text  x="702.14" y="703.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (55,704,359 samples, 0.02%)</title><rect x="266.3" y="901" width="0.2" height="15.0" fill="rgb(213,162,16)" rx="2" ry="2" />
+<text  x="269.32" y="911.5" ></text>
+</g>
+<g >
+<title>[libpython3.11.so.1.0] (67,754,465 samples, 0.02%)</title><rect x="244.1" y="901" width="0.2" height="15.0" fill="rgb(243,117,3)" rx="2" ry="2" />
+<text  x="247.09" y="911.5" ></text>
+</g>
+<g >
+<title>__schedule (288,895,365 samples, 0.08%)</title><rect x="883.7" y="853" width="1.0" height="15.0" fill="rgb(216,104,25)" rx="2" ry="2" />
+<text  x="886.72" y="863.5" ></text>
+</g>
+<g >
+<title>iomap_do_writepage (176,092,559 samples, 0.05%)</title><rect x="502.4" y="757" width="0.6" height="15.0" fill="rgb(230,152,43)" rx="2" ry="2" />
+<text  x="505.44" y="767.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (440,647,804 samples, 0.12%)</title><rect x="494.6" y="853" width="1.5" height="15.0" fill="rgb(215,161,42)" rx="2" ry="2" />
+<text  x="497.63" y="863.5" ></text>
+</g>
+<g >
+<title>[libvte-2.91.so.0.6992.0] (466,677,804 samples, 0.13%)</title><rect x="1180.1" y="869" width="1.5" height="15.0" fill="rgb(221,146,52)" rx="2" ry="2" />
+<text  x="1183.08" y="879.5" ></text>
+</g>
+<g >
+<title>____sys_recvmsg (325,864,003 samples, 0.09%)</title><rect x="228.2" y="901" width="1.0" height="15.0" fill="rgb(231,2,13)" rx="2" ry="2" />
+<text  x="231.18" y="911.5" ></text>
+</g>
+<g >
+<title>do_sys_poll (156,060,529 samples, 0.04%)</title><rect x="265.6" y="885" width="0.5" height="15.0" fill="rgb(235,50,42)" rx="2" ry="2" />
+<text  x="268.55" y="895.5" ></text>
+</g>
+<g >
+<title>unix_stream_sendmsg (58,602,275 samples, 0.02%)</title><rect x="145.2" y="661" width="0.2" height="15.0" fill="rgb(242,219,28)" rx="2" ry="2" />
+<text  x="148.19" y="671.5" ></text>
+</g>
+<g >
+<title>_i915_vma_move_to_active (51,870,603 samples, 0.01%)</title><rect x="144.4" y="677" width="0.1" height="15.0" fill="rgb(251,228,17)" rx="2" ry="2" />
+<text  x="147.38" y="687.5" ></text>
+</g>
+<g >
+<title>dma_resv_reserve_fences (33,513,037 samples, 0.01%)</title><rect x="139.3" y="757" width="0.1" height="15.0" fill="rgb(220,196,3)" rx="2" ry="2" />
+<text  x="142.33" y="767.5" ></text>
+</g>
+<g >
+<title>update_rq_clock (58,505,619 samples, 0.02%)</title><rect x="339.1" y="885" width="0.2" height="15.0" fill="rgb(212,210,7)" rx="2" ry="2" />
+<text  x="342.08" y="895.5" ></text>
+</g>
+<g >
+<title>__i915_active_fence_set.part.0 (32,310,881 samples, 0.01%)</title><rect x="138.2" y="741" width="0.2" height="15.0" fill="rgb(240,208,54)" rx="2" ry="2" />
+<text  x="141.25" y="751.5" ></text>
+</g>
+<g >
+<title>schedule_hrtimeout_range_clock (390,429,750 samples, 0.11%)</title><rect x="229.9" y="901" width="1.2" height="15.0" fill="rgb(218,227,43)" rx="2" ry="2" />
+<text  x="232.86" y="911.5" ></text>
+</g>
+<g >
+<title>percpu_counter_add_batch (49,625,840 samples, 0.01%)</title><rect x="397.4" y="805" width="0.1" height="15.0" fill="rgb(212,2,39)" rx="2" ry="2" />
+<text  x="400.36" y="815.5" ></text>
+</g>
+<g >
+<title>ttwu_do_activate (35,538,086 samples, 0.01%)</title><rect x="48.4" y="693" width="0.1" height="15.0" fill="rgb(222,159,53)" rx="2" ry="2" />
+<text  x="51.38" y="703.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (455,064,657 samples, 0.12%)</title><rect x="1171.5" y="389" width="1.5" height="15.0" fill="rgb(217,196,44)" rx="2" ry="2" />
+<text  x="1174.53" y="399.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (72,628,449 samples, 0.02%)</title><rect x="617.2" y="741" width="0.3" height="15.0" fill="rgb(248,15,49)" rx="2" ry="2" />
+<text  x="620.23" y="751.5" ></text>
+</g>
+<g >
+<title>__mem_cgroup_uncharge (87,704,311 samples, 0.02%)</title><rect x="342.2" y="853" width="0.3" height="15.0" fill="rgb(210,8,53)" rx="2" ry="2" />
+<text  x="345.22" y="863.5" ></text>
+</g>
+<g >
+<title>malloc (142,518,499 samples, 0.04%)</title><rect x="103.1" y="933" width="0.4" height="15.0" fill="rgb(254,128,1)" rx="2" ry="2" />
+<text  x="106.09" y="943.5" ></text>
+</g>
+<g >
+<title>execute_command (47,110,437 samples, 0.01%)</title><rect x="243.4" y="645" width="0.2" height="15.0" fill="rgb(250,209,47)" rx="2" ry="2" />
+<text  x="246.42" y="655.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (102,273,694 samples, 0.03%)</title><rect x="211.0" y="901" width="0.4" height="15.0" fill="rgb(206,146,31)" rx="2" ry="2" />
+<text  x="214.02" y="911.5" ></text>
+</g>
+<g >
+<title>kworker/u16:1-k (6,198,291,537 samples, 1.69%)</title><rect x="420.2" y="981" width="19.9" height="15.0" fill="rgb(221,11,2)" rx="2" ry="2" />
+<text  x="423.18" y="991.5" ></text>
+</g>
+<g >
+<title>ip6_protocol_deliver_rcu (306,241,463 samples, 0.08%)</title><rect x="740.9" y="293" width="1.0" height="15.0" fill="rgb(216,95,38)" rx="2" ry="2" />
+<text  x="743.88" y="303.5" ></text>
+</g>
+<g >
+<title>iwl_mvm_tx_skb (37,477,638 samples, 0.01%)</title><rect x="325.7" y="485" width="0.1" height="15.0" fill="rgb(229,86,23)" rx="2" ry="2" />
+<text  x="328.73" y="495.5" ></text>
+</g>
+<g >
+<title>sysvec_irq_work (70,084,605 samples, 0.02%)</title><rect x="1163.7" y="453" width="0.2" height="15.0" fill="rgb(212,199,34)" rx="2" ry="2" />
+<text  x="1166.70" y="463.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (36,333,723 samples, 0.01%)</title><rect x="157.3" y="901" width="0.1" height="15.0" fill="rgb(219,73,48)" rx="2" ry="2" />
+<text  x="160.25" y="911.5" ></text>
+</g>
+<g >
+<title>nfs4_xattr_cache_count (79,125,276 samples, 0.02%)</title><rect x="378.7" y="853" width="0.3" height="15.0" fill="rgb(228,129,50)" rx="2" ry="2" />
+<text  x="381.72" y="863.5" ></text>
+</g>
+<g >
+<title>skcipher_walk_virt (206,137,003 samples, 0.06%)</title><rect x="606.9" y="821" width="0.7" height="15.0" fill="rgb(234,48,29)" rx="2" ry="2" />
+<text  x="609.93" y="831.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (177,882,911 samples, 0.05%)</title><rect x="276.3" y="885" width="0.6" height="15.0" fill="rgb(223,149,30)" rx="2" ry="2" />
+<text  x="279.30" y="895.5" ></text>
+</g>
+<g >
+<title>rb_next (65,952,330 samples, 0.02%)</title><rect x="912.6" y="773" width="0.3" height="15.0" fill="rgb(219,138,31)" rx="2" ry="2" />
+<text  x="915.64" y="783.5" ></text>
+</g>
+<g >
+<title>g_signal_emit (981,412,622 samples, 0.27%)</title><rect x="1171.5" y="837" width="3.1" height="15.0" fill="rgb(222,6,22)" rx="2" ry="2" />
+<text  x="1174.48" y="847.5" ></text>
+</g>
+<g >
+<title>worker_thread (5,359,687,657 samples, 1.46%)</title><rect x="557.1" y="933" width="17.2" height="15.0" fill="rgb(205,177,30)" rx="2" ry="2" />
+<text  x="560.08" y="943.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (38,461,562 samples, 0.01%)</title><rect x="1165.3" y="709" width="0.1" height="15.0" fill="rgb(236,197,50)" rx="2" ry="2" />
+<text  x="1168.32" y="719.5" ></text>
+</g>
+<g >
+<title>tasklet_action_common.constprop.0 (120,854,587 samples, 0.03%)</title><rect x="896.7" y="805" width="0.4" height="15.0" fill="rgb(241,119,7)" rx="2" ry="2" />
+<text  x="899.71" y="815.5" ></text>
+</g>
+<g >
+<title>update_curr (112,215,214 samples, 0.03%)</title><rect x="652.6" y="565" width="0.3" height="15.0" fill="rgb(250,66,42)" rx="2" ry="2" />
+<text  x="655.58" y="575.5" ></text>
+</g>
+<g >
+<title>[libglib-2.0.so.0.7303.0] (1,932,316,272 samples, 0.53%)</title><rect x="96.4" y="933" width="6.2" height="15.0" fill="rgb(219,10,5)" rx="2" ry="2" />
+<text  x="99.36" y="943.5" ></text>
+</g>
+<g >
+<title>file_modified_flags (405,635,041 samples, 0.11%)</title><rect x="721.5" y="773" width="1.3" height="15.0" fill="rgb(252,183,48)" rx="2" ry="2" />
+<text  x="724.51" y="783.5" ></text>
+</g>
+<g >
+<title>__x64_sys_setitimer (92,626,872 samples, 0.03%)</title><rect x="237.7" y="933" width="0.3" height="15.0" fill="rgb(246,32,7)" rx="2" ry="2" />
+<text  x="240.71" y="943.5" ></text>
+</g>
+<g >
+<title>[libX11.so.6.4.0] (307,021,345 samples, 0.08%)</title><rect x="279.9" y="837" width="1.0" height="15.0" fill="rgb(219,76,38)" rx="2" ry="2" />
+<text  x="282.87" y="847.5" ></text>
+</g>
+<g >
+<title>[libX11.so.6.4.0] (110,550,840 samples, 0.03%)</title><rect x="277.3" y="821" width="0.4" height="15.0" fill="rgb(234,190,20)" rx="2" ry="2" />
+<text  x="280.33" y="831.5" ></text>
+</g>
+<g >
+<title>nft_do_chain (93,613,637 samples, 0.03%)</title><rect x="321.2" y="629" width="0.3" height="15.0" fill="rgb(247,27,39)" rx="2" ry="2" />
+<text  x="324.19" y="639.5" ></text>
+</g>
+<g >
+<title>__swap_writepage (37,650,076 samples, 0.01%)</title><rect x="368.5" y="837" width="0.2" height="15.0" fill="rgb(223,221,18)" rx="2" ry="2" />
+<text  x="371.53" y="847.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_irq_work (70,226,526 samples, 0.02%)</title><rect x="1163.7" y="469" width="0.2" height="15.0" fill="rgb(240,72,5)" rx="2" ry="2" />
+<text  x="1166.70" y="479.5" ></text>
+</g>
+<g >
+<title>syscall_return_via_sysret (54,715,941 samples, 0.01%)</title><rect x="627.7" y="677" width="0.2" height="15.0" fill="rgb(237,168,4)" rx="2" ry="2" />
+<text  x="630.70" y="687.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (47,318,228 samples, 0.01%)</title><rect x="1174.2" y="629" width="0.2" height="15.0" fill="rgb(208,206,15)" rx="2" ry="2" />
+<text  x="1177.23" y="639.5" ></text>
+</g>
+<g >
+<title>[Xorg] (735,698,084 samples, 0.20%)</title><rect x="214.4" y="917" width="2.4" height="15.0" fill="rgb(236,151,11)" rx="2" ry="2" />
+<text  x="217.39" y="927.5" ></text>
+</g>
+<g >
+<title>process_one_work (6,380,177,874 samples, 1.74%)</title><rect x="440.1" y="917" width="20.6" height="15.0" fill="rgb(213,147,52)" rx="2" ry="2" />
+<text  x="443.14" y="927.5" ></text>
+</g>
+<g >
+<title>ieee80211_subif_start_xmit (107,410,119 samples, 0.03%)</title><rect x="325.5" y="549" width="0.4" height="15.0" fill="rgb(235,89,19)" rx="2" ry="2" />
+<text  x="328.52" y="559.5" ></text>
+</g>
+<g >
+<title>dequeue_entity (60,862,630 samples, 0.02%)</title><rect x="13.2" y="757" width="0.2" height="15.0" fill="rgb(216,196,32)" rx="2" ry="2" />
+<text  x="16.23" y="767.5" ></text>
+</g>
+<g >
+<title>__x64_sys_poll (138,777,023 samples, 0.04%)</title><rect x="1188.8" y="933" width="0.4" height="15.0" fill="rgb(247,95,39)" rx="2" ry="2" />
+<text  x="1191.76" y="943.5" ></text>
+</g>
+<g >
+<title>irq_work_run_list (43,971,016 samples, 0.01%)</title><rect x="232.3" y="677" width="0.1" height="15.0" fill="rgb(239,95,27)" rx="2" ry="2" />
+<text  x="235.27" y="687.5" ></text>
+</g>
+<g >
+<title>schedule (670,375,662 samples, 0.18%)</title><rect x="33.7" y="821" width="2.2" height="15.0" fill="rgb(235,224,7)" rx="2" ry="2" />
+<text  x="36.69" y="831.5" ></text>
+</g>
+<g >
+<title>__sysvec_irq_work (66,157,245 samples, 0.02%)</title><rect x="896.5" y="773" width="0.2" height="15.0" fill="rgb(222,177,16)" rx="2" ry="2" />
+<text  x="899.46" y="783.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (90,884,230 samples, 0.02%)</title><rect x="1177.3" y="837" width="0.3" height="15.0" fill="rgb(237,199,12)" rx="2" ry="2" />
+<text  x="1180.29" y="847.5" ></text>
+</g>
+<g >
+<title>[libxul.so] (140,954,802 samples, 0.04%)</title><rect x="283.0" y="933" width="0.4" height="15.0" fill="rgb(250,58,31)" rx="2" ry="2" />
+<text  x="285.99" y="943.5" ></text>
+</g>
+<g >
+<title>crypt_convert (6,210,411,072 samples, 1.69%)</title><rect x="574.5" y="885" width="20.0" height="15.0" fill="rgb(206,11,19)" rx="2" ry="2" />
+<text  x="577.48" y="895.5" ></text>
+</g>
+<g >
+<title>free_pcppages_bulk (551,378,695 samples, 0.15%)</title><rect x="366.4" y="837" width="1.7" height="15.0" fill="rgb(233,107,13)" rx="2" ry="2" />
+<text  x="369.37" y="847.5" ></text>
+</g>
+<g >
+<title>kthread (1,481,065,896 samples, 0.40%)</title><rect x="347.1" y="949" width="4.7" height="15.0" fill="rgb(249,191,49)" rx="2" ry="2" />
+<text  x="350.06" y="959.5" ></text>
+</g>
+<g >
+<title>start_thread (329,454,028 samples, 0.09%)</title><rect x="667.9" y="949" width="1.0" height="15.0" fill="rgb(225,118,20)" rx="2" ry="2" />
+<text  x="670.86" y="959.5" ></text>
+</g>
+<g >
+<title>folio_end_writeback (234,452,544 samples, 0.06%)</title><rect x="387.4" y="837" width="0.7" height="15.0" fill="rgb(222,201,25)" rx="2" ry="2" />
+<text  x="390.38" y="847.5" ></text>
+</g>
+<g >
+<title>start_thread (15,548,349,079 samples, 4.24%)</title><rect x="616.6" y="933" width="50.0" height="15.0" fill="rgb(208,56,49)" rx="2" ry="2" />
+<text  x="619.58" y="943.5" >start..</text>
+</g>
+<g >
+<title>do_user_addr_fault (40,475,322 samples, 0.01%)</title><rect x="275.8" y="901" width="0.1" height="15.0" fill="rgb(227,188,2)" rx="2" ry="2" />
+<text  x="278.81" y="911.5" ></text>
+</g>
+<g >
+<title>folio_memcg_lock.part.0 (32,736,091 samples, 0.01%)</title><rect x="721.0" y="741" width="0.1" height="15.0" fill="rgb(247,149,12)" rx="2" ry="2" />
+<text  x="723.97" y="751.5" ></text>
+</g>
+<g >
+<title>X509_load_cert_crl_file_ex (76,095,565 samples, 0.02%)</title><rect x="284.8" y="661" width="0.2" height="15.0" fill="rgb(236,64,1)" rx="2" ry="2" />
+<text  x="287.77" y="671.5" ></text>
+</g>
+<g >
+<title>[firefox] (279,497,758 samples, 0.08%)</title><rect x="49.9" y="917" width="0.9" height="15.0" fill="rgb(206,217,14)" rx="2" ry="2" />
+<text  x="52.91" y="927.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rt_sigaction (166,243,923 samples, 0.05%)</title><rect x="644.5" y="693" width="0.5" height="15.0" fill="rgb(245,211,50)" rx="2" ry="2" />
+<text  x="647.49" y="703.5" ></text>
+</g>
+<g >
+<title>__mem_cgroup_charge (1,123,769,982 samples, 0.31%)</title><rect x="691.6" y="709" width="3.7" height="15.0" fill="rgb(231,8,25)" rx="2" ry="2" />
+<text  x="694.64" y="719.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_apic_timer_interrupt (113,313,297 samples, 0.03%)</title><rect x="1147.9" y="853" width="0.3" height="15.0" fill="rgb(227,58,40)" rx="2" ry="2" />
+<text  x="1150.87" y="863.5" ></text>
+</g>
+<g >
+<title>fault_in_iov_iter_readable (60,457,157 samples, 0.02%)</title><rect x="752.9" y="757" width="0.2" height="15.0" fill="rgb(209,180,15)" rx="2" ry="2" />
+<text  x="755.88" y="767.5" ></text>
+</g>
+<g >
+<title>[libpipewire-0.3.so.0.358.0] (620,238,553 samples, 0.17%)</title><rect x="729.1" y="917" width="2.0" height="15.0" fill="rgb(232,159,4)" rx="2" ry="2" />
+<text  x="732.09" y="927.5" ></text>
+</g>
+<g >
+<title>__vdso_clock_gettime (40,647,861 samples, 0.01%)</title><rect x="642.8" y="709" width="0.1" height="15.0" fill="rgb(225,96,28)" rx="2" ry="2" />
+<text  x="645.77" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (80,475,256 samples, 0.02%)</title><rect x="667.3" y="949" width="0.3" height="15.0" fill="rgb(241,13,40)" rx="2" ry="2" />
+<text  x="670.32" y="959.5" ></text>
+</g>
+<g >
+<title>__alloc_pages_slowpath.constprop.0 (72,375,651 samples, 0.02%)</title><rect x="756.8" y="693" width="0.2" height="15.0" fill="rgb(248,213,3)" rx="2" ry="2" />
+<text  x="759.76" y="703.5" ></text>
+</g>
+<g >
+<title>[Xorg] (102,988,470 samples, 0.03%)</title><rect x="220.5" y="885" width="0.3" height="15.0" fill="rgb(236,9,40)" rx="2" ry="2" />
+<text  x="223.46" y="895.5" ></text>
+</g>
+<g >
+<title>xfs_alloc_walk_iter (37,873,013 samples, 0.01%)</title><rect x="753.5" y="597" width="0.1" height="15.0" fill="rgb(229,123,49)" rx="2" ry="2" />
+<text  x="756.49" y="607.5" ></text>
+</g>
+<g >
+<title>fault_in_readable (499,793,156 samples, 0.14%)</title><rect x="686.1" y="757" width="1.6" height="15.0" fill="rgb(210,12,31)" rx="2" ry="2" />
+<text  x="689.13" y="767.5" ></text>
+</g>
+<g >
+<title>native_sched_clock (51,927,626 samples, 0.01%)</title><rect x="351.5" y="661" width="0.1" height="15.0" fill="rgb(206,216,49)" rx="2" ry="2" />
+<text  x="354.46" y="671.5" ></text>
+</g>
+<g >
+<title>[firefox] (138,163,728 samples, 0.04%)</title><rect x="297.9" y="901" width="0.4" height="15.0" fill="rgb(242,36,43)" rx="2" ry="2" />
+<text  x="300.89" y="911.5" ></text>
+</g>
+<g >
+<title>[libxul.so] (3,569,047,211 samples, 0.97%)</title><rect x="26.5" y="965" width="11.4" height="15.0" fill="rgb(205,155,53)" rx="2" ry="2" />
+<text  x="29.45" y="975.5" ></text>
+</g>
+<g >
+<title>blk_mq_end_request_batch (126,382,684 samples, 0.03%)</title><rect x="892.9" y="757" width="0.4" height="15.0" fill="rgb(211,144,35)" rx="2" ry="2" />
+<text  x="895.90" y="767.5" ></text>
+</g>
+<g >
+<title>file://_Content (38,140,916 samples, 0.01%)</title><rect x="246.8" y="981" width="0.2" height="15.0" fill="rgb(217,62,15)" rx="2" ry="2" />
+<text  x="249.84" y="991.5" ></text>
+</g>
+<g >
+<title>tcp_write_xmit (776,717,671 samples, 0.21%)</title><rect x="623.2" y="533" width="2.5" height="15.0" fill="rgb(229,158,27)" rx="2" ry="2" />
+<text  x="626.15" y="543.5" ></text>
+</g>
+<g >
+<title>ksys_read (48,493,972 samples, 0.01%)</title><rect x="825.6" y="821" width="0.1" height="15.0" fill="rgb(213,167,24)" rx="2" ry="2" />
+<text  x="828.59" y="831.5" ></text>
+</g>
+<g >
+<title>update_rq_clock (79,429,994 samples, 0.02%)</title><rect x="1133.0" y="869" width="0.3" height="15.0" fill="rgb(245,167,9)" rx="2" ry="2" />
+<text  x="1136.01" y="879.5" ></text>
+</g>
+<g >
+<title>tick_nohz_tick_stopped (75,621,732 samples, 0.02%)</title><rect x="1144.6" y="885" width="0.3" height="15.0" fill="rgb(212,225,5)" rx="2" ry="2" />
+<text  x="1147.65" y="895.5" ></text>
+</g>
+<g >
+<title>__x64_sys_ioctl (1,994,614,449 samples, 0.54%)</title><rect x="231.2" y="933" width="6.4" height="15.0" fill="rgb(251,103,15)" rx="2" ry="2" />
+<text  x="234.22" y="943.5" ></text>
+</g>
+<g >
+<title>pick_next_task_fair (39,723,894 samples, 0.01%)</title><rect x="395.5" y="885" width="0.1" height="15.0" fill="rgb(215,112,28)" rx="2" ry="2" />
+<text  x="398.52" y="895.5" ></text>
+</g>
+<g >
+<title>ip6_xmit (1,114,871,220 samples, 0.30%)</title><rect x="740.0" y="469" width="3.6" height="15.0" fill="rgb(240,24,34)" rx="2" ry="2" />
+<text  x="743.03" y="479.5" ></text>
+</g>
+<g >
+<title>__GI___libc_sigaction (571,387,980 samples, 0.16%)</title><rect x="644.0" y="741" width="1.8" height="15.0" fill="rgb(208,117,18)" rx="2" ry="2" />
+<text  x="647.00" y="751.5" ></text>
+</g>
+<g >
+<title>gtk_container_propagate_draw (208,485,987 samples, 0.06%)</title><rect x="1177.8" y="677" width="0.7" height="15.0" fill="rgb(235,1,14)" rx="2" ry="2" />
+<text  x="1180.81" y="687.5" ></text>
+</g>
+<g >
+<title>raw_recv (228,789,519 samples, 0.06%)</title><rect x="658.0" y="869" width="0.7" height="15.0" fill="rgb(239,186,46)" rx="2" ry="2" />
+<text  x="660.96" y="879.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (39,553,464 samples, 0.01%)</title><rect x="152.5" y="885" width="0.1" height="15.0" fill="rgb(241,154,4)" rx="2" ry="2" />
+<text  x="155.47" y="895.5" ></text>
+</g>
+<g >
+<title>__fdget_pos (31,584,453 samples, 0.01%)</title><rect x="85.8" y="885" width="0.1" height="15.0" fill="rgb(222,162,8)" rx="2" ry="2" />
+<text  x="88.84" y="895.5" ></text>
+</g>
+<g >
+<title>rebalance_domains (330,259,694 samples, 0.09%)</title><rect x="901.1" y="805" width="1.1" height="15.0" fill="rgb(246,114,49)" rx="2" ry="2" />
+<text  x="904.09" y="815.5" ></text>
+</g>
+<g >
+<title>__clock_gettime_2 (62,224,772 samples, 0.02%)</title><rect x="100.6" y="901" width="0.2" height="15.0" fill="rgb(211,20,6)" rx="2" ry="2" />
+<text  x="103.55" y="911.5" ></text>
+</g>
+<g >
+<title>hrtimer_start_range_ns (36,601,775 samples, 0.01%)</title><rect x="885.1" y="853" width="0.1" height="15.0" fill="rgb(240,71,45)" rx="2" ry="2" />
+<text  x="888.07" y="863.5" ></text>
+</g>
+<g >
+<title>skcipher_walk_next (77,560,556 samples, 0.02%)</title><rect x="566.9" y="805" width="0.2" height="15.0" fill="rgb(232,218,0)" rx="2" ry="2" />
+<text  x="569.88" y="815.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (182,366,982 samples, 0.05%)</title><rect x="1177.8" y="469" width="0.6" height="15.0" fill="rgb(220,31,49)" rx="2" ry="2" />
+<text  x="1180.85" y="479.5" ></text>
+</g>
+<g >
+<title>syscall_return_via_sysret (69,168,064 samples, 0.02%)</title><rect x="648.3" y="741" width="0.3" height="15.0" fill="rgb(239,151,6)" rx="2" ry="2" />
+<text  x="651.35" y="751.5" ></text>
+</g>
+<g >
+<title>[firefox] (57,296,078 samples, 0.02%)</title><rect x="95.8" y="917" width="0.2" height="15.0" fill="rgb(232,82,19)" rx="2" ry="2" />
+<text  x="98.81" y="927.5" ></text>
+</g>
+<g >
+<title>unix_stream_sendmsg (548,889,276 samples, 0.15%)</title><rect x="238.4" y="837" width="1.8" height="15.0" fill="rgb(207,73,54)" rx="2" ry="2" />
+<text  x="241.40" y="847.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (331,688,323 samples, 0.09%)</title><rect x="222.0" y="821" width="1.1" height="15.0" fill="rgb(241,20,44)" rx="2" ry="2" />
+<text  x="225.02" y="831.5" ></text>
+</g>
+<g >
+<title>sock_def_readable (309,963,124 samples, 0.08%)</title><rect x="327.6" y="597" width="1.0" height="15.0" fill="rgb(206,217,22)" rx="2" ry="2" />
+<text  x="330.63" y="607.5" ></text>
+</g>
+<g >
+<title>process_one_work (56,569,804 samples, 0.02%)</title><rect x="387.1" y="917" width="0.2" height="15.0" fill="rgb(238,100,50)" rx="2" ry="2" />
+<text  x="390.11" y="927.5" ></text>
+</g>
+<g >
+<title>ip_local_out (806,644,141 samples, 0.22%)</title><rect x="635.4" y="533" width="2.6" height="15.0" fill="rgb(254,143,2)" rx="2" ry="2" />
+<text  x="638.41" y="543.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (50,813,847 samples, 0.01%)</title><rect x="1173.1" y="453" width="0.2" height="15.0" fill="rgb(212,69,45)" rx="2" ry="2" />
+<text  x="1176.11" y="463.5" ></text>
+</g>
+<g >
+<title>__dev_queue_xmit (75,024,714 samples, 0.02%)</title><rect x="660.1" y="613" width="0.2" height="15.0" fill="rgb(213,172,40)" rx="2" ry="2" />
+<text  x="663.10" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (660,728,630 samples, 0.18%)</title><rect x="39.0" y="901" width="2.1" height="15.0" fill="rgb(240,0,30)" rx="2" ry="2" />
+<text  x="41.98" y="911.5" ></text>
+</g>
+<g >
+<title>[firefox] (47,907,346 samples, 0.01%)</title><rect x="267.8" y="933" width="0.1" height="15.0" fill="rgb(214,11,15)" rx="2" ry="2" />
+<text  x="270.79" y="943.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (177,625,302 samples, 0.05%)</title><rect x="217.2" y="821" width="0.6" height="15.0" fill="rgb(234,170,46)" rx="2" ry="2" />
+<text  x="220.20" y="831.5" ></text>
+</g>
+<g >
+<title>ksys_write (146,118,763 samples, 0.04%)</title><rect x="156.4" y="901" width="0.5" height="15.0" fill="rgb(218,45,52)" rx="2" ry="2" />
+<text  x="159.39" y="911.5" ></text>
+</g>
+<g >
+<title>crypt_page_alloc (205,741,074 samples, 0.06%)</title><rect x="457.2" y="869" width="0.7" height="15.0" fill="rgb(243,35,23)" rx="2" ry="2" />
+<text  x="460.21" y="879.5" ></text>
+</g>
+<g >
+<title>skb_page_frag_refill (108,551,160 samples, 0.03%)</title><rect x="664.8" y="709" width="0.4" height="15.0" fill="rgb(216,160,10)" rx="2" ry="2" />
+<text  x="667.82" y="719.5" ></text>
+</g>
+<g >
+<title>__schedule (661,411,655 samples, 0.18%)</title><rect x="88.4" y="837" width="2.1" height="15.0" fill="rgb(213,76,39)" rx="2" ry="2" />
+<text  x="91.40" y="847.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (57,419,504 samples, 0.02%)</title><rect x="818.5" y="805" width="0.2" height="15.0" fill="rgb(225,159,52)" rx="2" ry="2" />
+<text  x="821.53" y="815.5" ></text>
+</g>
+<g >
+<title>__GI___ioctl (61,359,506 samples, 0.02%)</title><rect x="136.1" y="885" width="0.2" height="15.0" fill="rgb(230,64,48)" rx="2" ry="2" />
+<text  x="139.08" y="895.5" ></text>
+</g>
+<g >
+<title>[libspa-audioconvert.so] (485,991,383 samples, 0.13%)</title><rect x="729.5" y="853" width="1.6" height="15.0" fill="rgb(205,204,41)" rx="2" ry="2" />
+<text  x="732.51" y="863.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (2,621,548,346 samples, 0.72%)</title><rect x="558.7" y="853" width="8.4" height="15.0" fill="rgb(236,80,24)" rx="2" ry="2" />
+<text  x="561.70" y="863.5" ></text>
+</g>
+<g >
+<title>iov_from_buf_full (205,000,893 samples, 0.06%)</title><rect x="746.2" y="821" width="0.6" height="15.0" fill="rgb(206,220,21)" rx="2" ry="2" />
+<text  x="749.17" y="831.5" ></text>
+</g>
+<g >
+<title>obj_cgroup_charge (68,105,558 samples, 0.02%)</title><rect x="19.7" y="597" width="0.2" height="15.0" fill="rgb(226,13,8)" rx="2" ry="2" />
+<text  x="22.71" y="607.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (52,151,702 samples, 0.01%)</title><rect x="232.9" y="821" width="0.2" height="15.0" fill="rgb(214,71,20)" rx="2" ry="2" />
+<text  x="235.91" y="831.5" ></text>
+</g>
+<g >
+<title>__libc_recvmsg (77,495,555 samples, 0.02%)</title><rect x="738.3" y="677" width="0.3" height="15.0" fill="rgb(236,55,11)" rx="2" ry="2" />
+<text  x="741.34" y="687.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (62,407,277 samples, 0.02%)</title><rect x="1166.2" y="741" width="0.2" height="15.0" fill="rgb(214,8,26)" rx="2" ry="2" />
+<text  x="1169.24" y="751.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (821,709,152 samples, 0.22%)</title><rect x="1171.5" y="645" width="2.6" height="15.0" fill="rgb(213,59,53)" rx="2" ry="2" />
+<text  x="1174.50" y="655.5" ></text>
+</g>
+<g >
+<title>[libnspr4.so] (67,242,596 samples, 0.02%)</title><rect x="118.2" y="933" width="0.2" height="15.0" fill="rgb(247,129,35)" rx="2" ry="2" />
+<text  x="121.20" y="943.5" ></text>
+</g>
+<g >
+<title>__x64_sys_poll (937,574,909 samples, 0.26%)</title><rect x="87.5" y="901" width="3.0" height="15.0" fill="rgb(205,32,51)" rx="2" ry="2" />
+<text  x="90.52" y="911.5" ></text>
+</g>
+<g >
+<title>parse_and_execute (79,536,539 samples, 0.02%)</title><rect x="243.4" y="837" width="0.3" height="15.0" fill="rgb(209,164,20)" rx="2" ry="2" />
+<text  x="246.42" y="847.5" ></text>
+</g>
+<g >
+<title>try_to_wake_up (31,079,309 samples, 0.01%)</title><rect x="320.7" y="501" width="0.1" height="15.0" fill="rgb(212,129,14)" rx="2" ry="2" />
+<text  x="323.68" y="511.5" ></text>
+</g>
+<g >
+<title>do_softirq.part.0 (10,362,126,203 samples, 2.83%)</title><rect x="300.6" y="869" width="33.3" height="15.0" fill="rgb(227,10,37)" rx="2" ry="2" />
+<text  x="303.58" y="879.5" >do..</text>
+</g>
+<g >
+<title>__wake_up_common_lock (268,179,143 samples, 0.07%)</title><rect x="47.8" y="805" width="0.9" height="15.0" fill="rgb(233,217,16)" rx="2" ry="2" />
+<text  x="50.83" y="815.5" ></text>
+</g>
+<g >
+<title>aio_co_enter (38,404,128 samples, 0.01%)</title><rect x="827.4" y="805" width="0.1" height="15.0" fill="rgb(235,108,33)" rx="2" ry="2" />
+<text  x="830.35" y="815.5" ></text>
+</g>
+<g >
+<title>arch_call_rest_init (16,597,204,628 samples, 4.53%)</title><rect x="831.9" y="933" width="53.5" height="15.0" fill="rgb(219,85,19)" rx="2" ry="2" />
+<text  x="834.94" y="943.5" >arch_..</text>
+</g>
+<g >
+<title>___pthread_mutex_lock (40,776,116 samples, 0.01%)</title><rect x="96.1" y="933" width="0.2" height="15.0" fill="rgb(225,137,38)" rx="2" ry="2" />
+<text  x="99.13" y="943.5" ></text>
+</g>
+<g >
+<title>i915_gem_do_execbuffer (239,254,660 samples, 0.07%)</title><rect x="1164.3" y="629" width="0.8" height="15.0" fill="rgb(208,84,27)" rx="2" ry="2" />
+<text  x="1167.35" y="639.5" ></text>
+</g>
+<g >
+<title>tcp_recvmsg (40,139,430 samples, 0.01%)</title><rect x="667.4" y="885" width="0.1" height="15.0" fill="rgb(237,119,8)" rx="2" ry="2" />
+<text  x="670.39" y="895.5" ></text>
+</g>
+<g >
+<title>vfs_write (128,889,095 samples, 0.04%)</title><rect x="156.4" y="885" width="0.5" height="15.0" fill="rgb(224,198,16)" rx="2" ry="2" />
+<text  x="159.44" y="895.5" ></text>
+</g>
+<g >
+<title>kthread (270,189,613 samples, 0.07%)</title><rect x="388.2" y="949" width="0.9" height="15.0" fill="rgb(238,160,30)" rx="2" ry="2" />
+<text  x="391.18" y="959.5" ></text>
+</g>
+<g >
+<title>wb_workfn (149,405,777 samples, 0.04%)</title><rect x="612.5" y="901" width="0.5" height="15.0" fill="rgb(242,181,47)" rx="2" ry="2" />
+<text  x="615.55" y="911.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (6,394,469,560 samples, 1.74%)</title><rect x="440.1" y="965" width="20.6" height="15.0" fill="rgb(208,177,27)" rx="2" ry="2" />
+<text  x="443.14" y="975.5" ></text>
+</g>
+<g >
+<title>__blk_flush_plug (74,090,446 samples, 0.02%)</title><rect x="244.6" y="901" width="0.2" height="15.0" fill="rgb(224,19,17)" rx="2" ry="2" />
+<text  x="247.58" y="911.5" ></text>
+</g>
+<g >
+<title>skcipher_walk_virt (124,977,770 samples, 0.03%)</title><rect x="530.3" y="821" width="0.4" height="15.0" fill="rgb(208,193,49)" rx="2" ry="2" />
+<text  x="533.30" y="831.5" ></text>
+</g>
+<g >
+<title>do_sys_poll (676,574,531 samples, 0.18%)</title><rect x="726.1" y="885" width="2.2" height="15.0" fill="rgb(231,119,10)" rx="2" ry="2" />
+<text  x="729.07" y="895.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (31,190,191 samples, 0.01%)</title><rect x="1166.1" y="853" width="0.1" height="15.0" fill="rgb(254,197,18)" rx="2" ry="2" />
+<text  x="1169.07" y="863.5" ></text>
+</g>
+<g >
+<title>run_timer_softirq (120,585,490 samples, 0.03%)</title><rect x="904.2" y="805" width="0.4" height="15.0" fill="rgb(229,228,34)" rx="2" ry="2" />
+<text  x="907.23" y="815.5" ></text>
+</g>
+<g >
+<title>__writeback_inodes_wb (439,395,769 samples, 0.12%)</title><rect x="523.3" y="869" width="1.4" height="15.0" fill="rgb(211,24,31)" rx="2" ry="2" />
+<text  x="526.31" y="879.5" ></text>
+</g>
+<g >
+<title>__clone3 (32,481,452 samples, 0.01%)</title><rect x="1162.0" y="965" width="0.1" height="15.0" fill="rgb(250,179,3)" rx="2" ry="2" />
+<text  x="1165.00" y="975.5" ></text>
+</g>
+<g >
+<title>__folio_end_writeback (36,248,932 samples, 0.01%)</title><rect x="387.0" y="821" width="0.1" height="15.0" fill="rgb(253,149,23)" rx="2" ry="2" />
+<text  x="389.96" y="831.5" ></text>
+</g>
+<g >
+<title>try_to_wake_up (591,640,720 samples, 0.16%)</title><rect x="893.3" y="773" width="1.9" height="15.0" fill="rgb(226,211,54)" rx="2" ry="2" />
+<text  x="896.33" y="783.5" ></text>
+</g>
+<g >
+<title>__getsockname (105,733,328 samples, 0.03%)</title><rect x="641.0" y="709" width="0.3" height="15.0" fill="rgb(205,135,48)" rx="2" ry="2" />
+<text  x="643.96" y="719.5" ></text>
+</g>
+<g >
+<title>try_charge_memcg (55,488,015 samples, 0.02%)</title><rect x="754.6" y="661" width="0.2" height="15.0" fill="rgb(243,74,35)" rx="2" ry="2" />
+<text  x="757.64" y="671.5" ></text>
+</g>
+<g >
+<title>[libpython3.11.so.1.0] (67,754,465 samples, 0.02%)</title><rect x="244.1" y="885" width="0.2" height="15.0" fill="rgb(240,214,11)" rx="2" ry="2" />
+<text  x="247.09" y="895.5" ></text>
+</g>
+<g >
+<title>kworker/u17:0 (223,942,711 samples, 0.06%)</title><rect x="613.1" y="981" width="0.7" height="15.0" fill="rgb(227,146,21)" rx="2" ry="2" />
+<text  x="616.05" y="991.5" ></text>
+</g>
+<g >
+<title>[libglamoregl.so] (529,015,031 samples, 0.14%)</title><rect x="215.0" y="869" width="1.7" height="15.0" fill="rgb(235,34,44)" rx="2" ry="2" />
+<text  x="218.01" y="879.5" ></text>
+</g>
+<g >
+<title>kernel_fpu_begin_mask (168,202,333 samples, 0.05%)</title><rect x="410.4" y="821" width="0.6" height="15.0" fill="rgb(213,119,29)" rx="2" ry="2" />
+<text  x="413.41" y="831.5" ></text>
+</g>
+<g >
+<title>cpupri_set (53,809,550 samples, 0.01%)</title><rect x="336.3" y="853" width="0.2" height="15.0" fill="rgb(208,107,9)" rx="2" ry="2" />
+<text  x="339.32" y="863.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (73,455,200 samples, 0.02%)</title><rect x="693.6" y="661" width="0.3" height="15.0" fill="rgb(246,73,52)" rx="2" ry="2" />
+<text  x="696.64" y="671.5" ></text>
+</g>
+<g >
+<title>dequeue_task_fair (58,223,944 samples, 0.02%)</title><rect x="158.6" y="757" width="0.1" height="15.0" fill="rgb(246,225,30)" rx="2" ry="2" />
+<text  x="161.56" y="767.5" ></text>
+</g>
+<g >
+<title>__wake_up_common_lock (285,352,413 samples, 0.08%)</title><rect x="327.7" y="581" width="0.9" height="15.0" fill="rgb(231,176,0)" rx="2" ry="2" />
+<text  x="330.71" y="591.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (112,328,749 samples, 0.03%)</title><rect x="1172.2" y="229" width="0.4" height="15.0" fill="rgb(254,179,12)" rx="2" ry="2" />
+<text  x="1175.24" y="239.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (241,618,712 samples, 0.07%)</title><rect x="748.8" y="869" width="0.8" height="15.0" fill="rgb(207,1,53)" rx="2" ry="2" />
+<text  x="751.79" y="879.5" ></text>
+</g>
+<g >
+<title>schedule (39,814,474 samples, 0.01%)</title><rect x="244.8" y="917" width="0.2" height="15.0" fill="rgb(247,29,21)" rx="2" ry="2" />
+<text  x="247.85" y="927.5" ></text>
+</g>
+<g >
+<title>__x64_sys_recvfrom (3,767,119,723 samples, 1.03%)</title><rect x="628.1" y="645" width="12.2" height="15.0" fill="rgb(205,213,16)" rx="2" ry="2" />
+<text  x="631.13" y="655.5" ></text>
+</g>
+<g >
+<title>_copy_from_iter (198,967,794 samples, 0.05%)</title><rect x="664.2" y="725" width="0.6" height="15.0" fill="rgb(235,206,10)" rx="2" ry="2" />
+<text  x="667.17" y="735.5" ></text>
+</g>
+<g >
+<title>cpuidle_governor_latency_req (43,525,905 samples, 0.01%)</title><rect x="882.7" y="853" width="0.2" height="15.0" fill="rgb(234,38,51)" rx="2" ry="2" />
+<text  x="885.73" y="863.5" ></text>
+</g>
+<g >
+<title>[libgdk-3.so.0.2404.30] (283,259,089 samples, 0.08%)</title><rect x="1177.8" y="773" width="0.9" height="15.0" fill="rgb(208,189,29)" rx="2" ry="2" />
+<text  x="1180.76" y="783.5" ></text>
+</g>
+<g >
+<title>[libglib-2.0.so.0.7303.0] (35,706,146 samples, 0.01%)</title><rect x="1181.1" y="773" width="0.1" height="15.0" fill="rgb(227,164,34)" rx="2" ry="2" />
+<text  x="1184.06" y="783.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (33,855,940 samples, 0.01%)</title><rect x="142.3" y="821" width="0.1" height="15.0" fill="rgb(238,211,35)" rx="2" ry="2" />
+<text  x="145.29" y="831.5" ></text>
+</g>
+<g >
+<title>vfs_read (41,459,235 samples, 0.01%)</title><rect x="825.6" y="805" width="0.1" height="15.0" fill="rgb(232,207,2)" rx="2" ry="2" />
+<text  x="828.61" y="815.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (466,473,365 samples, 0.13%)</title><rect x="1171.5" y="485" width="1.5" height="15.0" fill="rgb(226,12,26)" rx="2" ry="2" />
+<text  x="1174.52" y="495.5" ></text>
+</g>
+<g >
+<title>iwl_mvm_tx_mpdu (113,859,110 samples, 0.03%)</title><rect x="624.1" y="341" width="0.4" height="15.0" fill="rgb(243,148,54)" rx="2" ry="2" />
+<text  x="627.09" y="351.5" ></text>
+</g>
+<g >
+<title>security_file_permission (86,671,032 samples, 0.02%)</title><rect x="92.5" y="869" width="0.3" height="15.0" fill="rgb(236,217,18)" rx="2" ry="2" />
+<text  x="95.50" y="879.5" ></text>
+</g>
+<g >
+<title>kworker/1:1-eve (45,392,836 samples, 0.01%)</title><rect x="386.9" y="981" width="0.2" height="15.0" fill="rgb(229,185,5)" rx="2" ry="2" />
+<text  x="389.94" y="991.5" ></text>
+</g>
+<g >
+<title>___sys_recvmsg (38,380,594 samples, 0.01%)</title><rect x="738.4" y="613" width="0.1" height="15.0" fill="rgb(250,167,4)" rx="2" ry="2" />
+<text  x="741.39" y="623.5" ></text>
+</g>
+<g >
+<title>___pthread_mutex_lock (49,181,009 samples, 0.01%)</title><rect x="270.6" y="933" width="0.1" height="15.0" fill="rgb(211,54,50)" rx="2" ry="2" />
+<text  x="273.57" y="943.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (156,052,154 samples, 0.04%)</title><rect x="197.7" y="901" width="0.5" height="15.0" fill="rgb(226,64,38)" rx="2" ry="2" />
+<text  x="200.69" y="911.5" ></text>
+</g>
+<g >
+<title>[modesetting_drv.so] (70,761,064 samples, 0.02%)</title><rect x="210.6" y="901" width="0.2" height="15.0" fill="rgb(209,206,42)" rx="2" ry="2" />
+<text  x="213.61" y="911.5" ></text>
+</g>
+<g >
+<title>memcpy_erms (94,750,058 samples, 0.03%)</title><rect x="553.8" y="869" width="0.3" height="15.0" fill="rgb(253,65,37)" rx="2" ry="2" />
+<text  x="556.84" y="879.5" ></text>
+</g>
+<g >
+<title>__schedule (83,313,666 samples, 0.02%)</title><rect x="43.5" y="805" width="0.3" height="15.0" fill="rgb(220,120,0)" rx="2" ry="2" />
+<text  x="46.50" y="815.5" ></text>
+</g>
+<g >
+<title>__clone3 (1,324,635,568 samples, 0.36%)</title><rect x="1162.6" y="965" width="4.3" height="15.0" fill="rgb(225,64,20)" rx="2" ry="2" />
+<text  x="1165.64" y="975.5" ></text>
+</g>
+<g >
+<title>__i915_vma_retire (32,115,225 samples, 0.01%)</title><rect x="394.3" y="837" width="0.1" height="15.0" fill="rgb(252,167,52)" rx="2" ry="2" />
+<text  x="397.33" y="847.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (31,968,202 samples, 0.01%)</title><rect x="243.8" y="949" width="0.1" height="15.0" fill="rgb(250,153,9)" rx="2" ry="2" />
+<text  x="246.78" y="959.5" ></text>
+</g>
+<g >
+<title>__GI_getenv (41,250,503 samples, 0.01%)</title><rect x="643.4" y="709" width="0.2" height="15.0" fill="rgb(236,186,19)" rx="2" ry="2" />
+<text  x="646.42" y="719.5" ></text>
+</g>
+<g >
+<title>[libEGL_mesa.so.0.0.0] (82,208,823 samples, 0.02%)</title><rect x="1165.6" y="693" width="0.3" height="15.0" fill="rgb(254,224,37)" rx="2" ry="2" />
+<text  x="1168.65" y="703.5" ></text>
+</g>
+<g >
+<title>xfs_end_io (43,959,384 samples, 0.01%)</title><rect x="386.9" y="901" width="0.2" height="15.0" fill="rgb(229,147,31)" rx="2" ry="2" />
+<text  x="389.94" y="911.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (137,114,720 samples, 0.04%)</title><rect x="1178.9" y="613" width="0.4" height="15.0" fill="rgb(249,72,42)" rx="2" ry="2" />
+<text  x="1181.87" y="623.5" ></text>
+</g>
+<g >
+<title>[unknown] (61,209,857 samples, 0.02%)</title><rect x="160.1" y="965" width="0.2" height="15.0" fill="rgb(213,96,51)" rx="2" ry="2" />
+<text  x="163.08" y="975.5" ></text>
+</g>
+<g >
+<title>schedule_hrtimeout_range_clock (137,998,652 samples, 0.04%)</title><rect x="733.8" y="901" width="0.5" height="15.0" fill="rgb(211,117,4)" rx="2" ry="2" />
+<text  x="736.81" y="911.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (3,609,836,126 samples, 0.98%)</title><rect x="736.3" y="837" width="11.6" height="15.0" fill="rgb(233,123,14)" rx="2" ry="2" />
+<text  x="739.30" y="847.5" ></text>
+</g>
+<g >
+<title>sysvec_apic_timer_interrupt (42,741,753 samples, 0.01%)</title><rect x="170.7" y="933" width="0.2" height="15.0" fill="rgb(213,177,22)" rx="2" ry="2" />
+<text  x="173.72" y="943.5" ></text>
+</g>
+<g >
+<title>submit_notify (35,606,021 samples, 0.01%)</title><rect x="137.2" y="741" width="0.1" height="15.0" fill="rgb(245,184,26)" rx="2" ry="2" />
+<text  x="140.21" y="751.5" ></text>
+</g>
+<g >
+<title>[libcurl.so.4.8.0] (6,706,438,875 samples, 1.83%)</title><rect x="620.6" y="725" width="21.6" height="15.0" fill="rgb(244,219,11)" rx="2" ry="2" />
+<text  x="623.56" y="735.5" >[..</text>
+</g>
+<g >
+<title>select_estimate_accuracy (33,830,070 samples, 0.01%)</title><rect x="655.0" y="645" width="0.1" height="15.0" fill="rgb(240,28,35)" rx="2" ry="2" />
+<text  x="658.01" y="655.5" ></text>
+</g>
+<g >
+<title>__wake_up_common_lock (144,995,678 samples, 0.04%)</title><rect x="239.7" y="805" width="0.4" height="15.0" fill="rgb(217,91,18)" rx="2" ry="2" />
+<text  x="242.65" y="815.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (258,588,707 samples, 0.07%)</title><rect x="50.9" y="885" width="0.9" height="15.0" fill="rgb(219,134,13)" rx="2" ry="2" />
+<text  x="53.95" y="895.5" ></text>
+</g>
+<g >
+<title>__local_bh_enable_ip (31,380,762 samples, 0.01%)</title><rect x="144.3" y="677" width="0.1" height="15.0" fill="rgb(244,34,31)" rx="2" ry="2" />
+<text  x="147.27" y="687.5" ></text>
+</g>
+<g >
+<title>psi_task_change (67,762,838 samples, 0.02%)</title><rect x="894.5" y="725" width="0.3" height="15.0" fill="rgb(241,55,28)" rx="2" ry="2" />
+<text  x="897.54" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (75,004,617 samples, 0.02%)</title><rect x="641.0" y="677" width="0.2" height="15.0" fill="rgb(215,115,16)" rx="2" ry="2" />
+<text  x="644.01" y="687.5" ></text>
+</g>
+<g >
+<title>__writeback_single_inode (639,404,275 samples, 0.17%)</title><rect x="476.9" y="837" width="2.1" height="15.0" fill="rgb(227,76,33)" rx="2" ry="2" />
+<text  x="479.90" y="847.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (32,049,242 samples, 0.01%)</title><rect x="191.3" y="917" width="0.1" height="15.0" fill="rgb(231,160,33)" rx="2" ry="2" />
+<text  x="194.29" y="927.5" ></text>
+</g>
+<g >
+<title>balance_dirty_pages (149,622,421 samples, 0.04%)</title><rect x="751.2" y="741" width="0.5" height="15.0" fill="rgb(246,63,24)" rx="2" ry="2" />
+<text  x="754.20" y="751.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (51,032,309 samples, 0.01%)</title><rect x="336.9" y="885" width="0.1" height="15.0" fill="rgb(226,189,25)" rx="2" ry="2" />
+<text  x="339.87" y="895.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (101,467,322 samples, 0.03%)</title><rect x="146.2" y="917" width="0.3" height="15.0" fill="rgb(249,75,19)" rx="2" ry="2" />
+<text  x="149.21" y="927.5" ></text>
+</g>
+<g >
+<title>signal_irq_work (43,791,146 samples, 0.01%)</title><rect x="232.3" y="645" width="0.1" height="15.0" fill="rgb(221,13,29)" rx="2" ry="2" />
+<text  x="235.27" y="655.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (37,852,553 samples, 0.01%)</title><rect x="152.7" y="853" width="0.1" height="15.0" fill="rgb(208,102,40)" rx="2" ry="2" />
+<text  x="155.72" y="863.5" ></text>
+</g>
+<g >
+<title>qcow2_co_decompress (244,281,469 samples, 0.07%)</title><rect x="746.8" y="821" width="0.8" height="15.0" fill="rgb(220,167,5)" rx="2" ry="2" />
+<text  x="749.83" y="831.5" ></text>
+</g>
+<g >
+<title>xcb_flush (536,530,684 samples, 0.15%)</title><rect x="19.0" y="885" width="1.7" height="15.0" fill="rgb(236,155,12)" rx="2" ry="2" />
+<text  x="21.98" y="895.5" ></text>
+</g>
+<g >
+<title>futex_wake (124,562,647 samples, 0.03%)</title><rect x="747.1" y="661" width="0.4" height="15.0" fill="rgb(206,55,19)" rx="2" ry="2" />
+<text  x="750.11" y="671.5" ></text>
+</g>
+<g >
+<title>percpu_counter_add_batch (291,432,328 samples, 0.08%)</title><rect x="719.4" y="725" width="1.0" height="15.0" fill="rgb(248,227,51)" rx="2" ry="2" />
+<text  x="722.44" y="735.5" ></text>
+</g>
+<g >
+<title>tcp_ack (113,283,855 samples, 0.03%)</title><rect x="741.3" y="229" width="0.4" height="15.0" fill="rgb(223,144,15)" rx="2" ry="2" />
+<text  x="744.32" y="239.5" ></text>
+</g>
+<g >
+<title>__softirqentry_text_start (42,194,708 samples, 0.01%)</title><rect x="834.9" y="789" width="0.1" height="15.0" fill="rgb(246,133,17)" rx="2" ry="2" />
+<text  x="837.91" y="799.5" ></text>
+</g>
+<g >
+<title>simple_copy_to_iter (94,033,152 samples, 0.03%)</title><rect x="639.2" y="533" width="0.3" height="15.0" fill="rgb(211,157,52)" rx="2" ry="2" />
+<text  x="642.24" y="543.5" ></text>
+</g>
+<g >
+<title>blk_add_rq_to_plug (389,334,224 samples, 0.11%)</title><rect x="245.5" y="869" width="1.3" height="15.0" fill="rgb(245,178,20)" rx="2" ry="2" />
+<text  x="248.53" y="879.5" ></text>
+</g>
+<g >
+<title>pipe_read (229,588,162 samples, 0.06%)</title><rect x="91.7" y="869" width="0.8" height="15.0" fill="rgb(235,147,13)" rx="2" ry="2" />
+<text  x="94.75" y="879.5" ></text>
+</g>
+<g >
+<title>ep_autoremove_wake_function (182,664,341 samples, 0.05%)</title><rect x="48.0" y="725" width="0.6" height="15.0" fill="rgb(226,120,9)" rx="2" ry="2" />
+<text  x="51.01" y="735.5" ></text>
+</g>
+<g >
+<title>psi_group_change (299,929,760 samples, 0.08%)</title><rect x="1131.7" y="821" width="1.0" height="15.0" fill="rgb(249,46,8)" rx="2" ry="2" />
+<text  x="1134.70" y="831.5" ></text>
+</g>
+<g >
+<title>__folio_put (91,790,717 samples, 0.03%)</title><rect x="342.2" y="869" width="0.3" height="15.0" fill="rgb(253,121,49)" rx="2" ry="2" />
+<text  x="345.21" y="879.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (131,425,543 samples, 0.04%)</title><rect x="90.5" y="901" width="0.5" height="15.0" fill="rgb(212,139,27)" rx="2" ry="2" />
+<text  x="93.54" y="911.5" ></text>
+</g>
+<g >
+<title>format_decode (43,168,689 samples, 0.01%)</title><rect x="313.7" y="613" width="0.1" height="15.0" fill="rgb(237,216,48)" rx="2" ry="2" />
+<text  x="316.70" y="623.5" ></text>
+</g>
+<g >
+<title>xcb_poll_for_special_event (77,834,823 samples, 0.02%)</title><rect x="142.2" y="869" width="0.3" height="15.0" fill="rgb(205,218,31)" rx="2" ry="2" />
+<text  x="145.24" y="879.5" ></text>
+</g>
+<g >
+<title>Xorg:gdrv0 (260,605,912 samples, 0.07%)</title><rect x="197.5" y="981" width="0.9" height="15.0" fill="rgb(248,131,25)" rx="2" ry="2" />
+<text  x="200.55" y="991.5" ></text>
+</g>
+<g >
+<title>i915_gem_execbuffer2_ioctl (246,829,146 samples, 0.07%)</title><rect x="1164.3" y="645" width="0.8" height="15.0" fill="rgb(239,190,16)" rx="2" ry="2" />
+<text  x="1167.32" y="655.5" ></text>
+</g>
+<g >
+<title>psi_task_switch (64,016,455 samples, 0.02%)</title><rect x="884.2" y="837" width="0.2" height="15.0" fill="rgb(217,82,16)" rx="2" ry="2" />
+<text  x="887.24" y="847.5" ></text>
+</g>
+<g >
+<title>__free (44,954,676 samples, 0.01%)</title><rect x="736.3" y="821" width="0.2" height="15.0" fill="rgb(227,13,29)" rx="2" ry="2" />
+<text  x="739.34" y="831.5" ></text>
+</g>
+<g >
+<title>___sys_recvmsg (81,889,641 samples, 0.02%)</title><rect x="1188.5" y="917" width="0.2" height="15.0" fill="rgb(215,76,46)" rx="2" ry="2" />
+<text  x="1191.48" y="927.5" ></text>
+</g>
+<g >
+<title>sock_def_readable (154,991,276 samples, 0.04%)</title><rect x="239.6" y="821" width="0.5" height="15.0" fill="rgb(244,57,32)" rx="2" ry="2" />
+<text  x="242.62" y="831.5" ></text>
+</g>
+<g >
+<title>qemu-img (29,259,285,616 samples, 7.98%)</title><rect x="735.4" y="981" width="94.2" height="15.0" fill="rgb(250,117,14)" rx="2" ry="2" />
+<text  x="738.44" y="991.5" >qemu-img</text>
+</g>
+<g >
+<title>page_counter_try_charge (37,440,057 samples, 0.01%)</title><rect x="694.6" y="661" width="0.1" height="15.0" fill="rgb(239,142,32)" rx="2" ry="2" />
+<text  x="697.60" y="671.5" ></text>
+</g>
+<g >
+<title>iomap_finish_ioends (52,637,442 samples, 0.01%)</title><rect x="387.1" y="869" width="0.2" height="15.0" fill="rgb(239,169,10)" rx="2" ry="2" />
+<text  x="390.11" y="879.5" ></text>
+</g>
+<g >
+<title>__x64_sys_poll (285,507,256 samples, 0.08%)</title><rect x="22.3" y="805" width="0.9" height="15.0" fill="rgb(226,2,13)" rx="2" ry="2" />
+<text  x="25.27" y="815.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (694,675,012 samples, 0.19%)</title><rect x="38.9" y="917" width="2.2" height="15.0" fill="rgb(216,11,16)" rx="2" ry="2" />
+<text  x="41.87" y="927.5" ></text>
+</g>
+<g >
+<title>_int_malloc (34,400,426 samples, 0.01%)</title><rect x="626.4" y="677" width="0.2" height="15.0" fill="rgb(228,212,14)" rx="2" ry="2" />
+<text  x="629.45" y="687.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (324,824,627 samples, 0.09%)</title><rect x="576.9" y="837" width="1.1" height="15.0" fill="rgb(232,215,8)" rx="2" ry="2" />
+<text  x="579.93" y="847.5" ></text>
+</g>
+<g >
+<title>preempt_count_add (59,498,423 samples, 0.02%)</title><rect x="493.0" y="805" width="0.2" height="15.0" fill="rgb(213,91,23)" rx="2" ry="2" />
+<text  x="496.02" y="815.5" ></text>
+</g>
+<g >
+<title>syscall_return_via_sysret (80,387,359 samples, 0.02%)</title><rect x="290.6" y="933" width="0.2" height="15.0" fill="rgb(229,78,42)" rx="2" ry="2" />
+<text  x="293.56" y="943.5" ></text>
+</g>
+<g >
+<title>write_cache_pages (756,192,153 samples, 0.21%)</title><rect x="571.9" y="773" width="2.4" height="15.0" fill="rgb(222,184,41)" rx="2" ry="2" />
+<text  x="574.86" y="783.5" ></text>
+</g>
+<g >
+<title>__ip_local_out (37,347,367 samples, 0.01%)</title><rect x="325.9" y="581" width="0.1" height="15.0" fill="rgb(250,125,37)" rx="2" ry="2" />
+<text  x="328.89" y="591.5" ></text>
+</g>
+<g >
+<title>xts_crypt (2,121,696,964 samples, 0.58%)</title><rect x="425.4" y="837" width="6.8" height="15.0" fill="rgb(215,85,11)" rx="2" ry="2" />
+<text  x="428.37" y="847.5" ></text>
+</g>
+<g >
+<title>tcp_sendmsg_locked (2,106,102,127 samples, 0.57%)</title><rect x="659.3" y="741" width="6.8" height="15.0" fill="rgb(250,45,42)" rx="2" ry="2" />
+<text  x="662.31" y="751.5" ></text>
+</g>
+<g >
+<title>aesni_enc (58,675,075 samples, 0.02%)</title><rect x="527.7" y="821" width="0.2" height="15.0" fill="rgb(252,202,46)" rx="2" ry="2" />
+<text  x="530.66" y="831.5" ></text>
+</g>
+<g >
+<title>___sys_recvmsg (188,987,536 samples, 0.05%)</title><rect x="737.0" y="645" width="0.6" height="15.0" fill="rgb(228,56,15)" rx="2" ry="2" />
+<text  x="740.01" y="655.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (159,060,450 samples, 0.04%)</title><rect x="437.1" y="853" width="0.5" height="15.0" fill="rgb(236,8,1)" rx="2" ry="2" />
+<text  x="440.10" y="863.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (203,558,356 samples, 0.06%)</title><rect x="397.6" y="965" width="0.6" height="15.0" fill="rgb(247,184,49)" rx="2" ry="2" />
+<text  x="400.59" y="975.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (149,002,525 samples, 0.04%)</title><rect x="24.9" y="917" width="0.5" height="15.0" fill="rgb(237,212,10)" rx="2" ry="2" />
+<text  x="27.94" y="927.5" ></text>
+</g>
+<g >
+<title>xfs_trans_alloc (57,111,542 samples, 0.02%)</title><rect x="760.1" y="725" width="0.2" height="15.0" fill="rgb(229,92,39)" rx="2" ry="2" />
+<text  x="763.15" y="735.5" ></text>
+</g>
+<g >
+<title>[libcurl.so.4.8.0] (233,753,586 samples, 0.06%)</title><rect x="646.7" y="725" width="0.8" height="15.0" fill="rgb(248,117,38)" rx="2" ry="2" />
+<text  x="649.71" y="735.5" ></text>
+</g>
+<g >
+<title>xcb_wait_for_special_event (894,004,251 samples, 0.24%)</title><rect x="20.7" y="885" width="2.9" height="15.0" fill="rgb(251,112,44)" rx="2" ry="2" />
+<text  x="23.71" y="895.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (48,522,246 samples, 0.01%)</title><rect x="716.9" y="693" width="0.1" height="15.0" fill="rgb(226,84,38)" rx="2" ry="2" />
+<text  x="719.88" y="703.5" ></text>
+</g>
+<g >
+<title>[libxul.so] (1,572,812,361 samples, 0.43%)</title><rect x="293.3" y="949" width="5.0" height="15.0" fill="rgb(209,62,33)" rx="2" ry="2" />
+<text  x="296.27" y="959.5" ></text>
+</g>
+<g >
+<title>[wget] (91,501,816 samples, 0.02%)</title><rect x="1167.1" y="821" width="0.3" height="15.0" fill="rgb(218,176,5)" rx="2" ry="2" />
+<text  x="1170.10" y="831.5" ></text>
+</g>
+<g >
+<title>curl_easy_perform (329,454,028 samples, 0.09%)</title><rect x="667.9" y="805" width="1.0" height="15.0" fill="rgb(233,111,50)" rx="2" ry="2" />
+<text  x="670.86" y="815.5" ></text>
+</g>
+<g >
+<title>__tcp_ack_snd_check (38,870,328 samples, 0.01%)</title><rect x="325.3" y="629" width="0.1" height="15.0" fill="rgb(215,119,45)" rx="2" ry="2" />
+<text  x="328.28" y="639.5" ></text>
+</g>
+<g >
+<title>crypt_convert (5,186,494,974 samples, 1.41%)</title><rect x="420.3" y="885" width="16.7" height="15.0" fill="rgb(214,101,23)" rx="2" ry="2" />
+<text  x="423.33" y="895.5" ></text>
+</g>
+<g >
+<title>futex_wait_queue (131,255,674 samples, 0.04%)</title><rect x="174.5" y="853" width="0.5" height="15.0" fill="rgb(235,96,49)" rx="2" ry="2" />
+<text  x="177.53" y="863.5" ></text>
+</g>
+<g >
+<title>__check_object_size (32,234,563 samples, 0.01%)</title><rect x="40.3" y="741" width="0.1" height="15.0" fill="rgb(246,105,22)" rx="2" ry="2" />
+<text  x="43.27" y="751.5" ></text>
+</g>
+<g >
+<title>[libxul.so] (578,866,549 samples, 0.16%)</title><rect x="167.6" y="949" width="1.9" height="15.0" fill="rgb(246,134,54)" rx="2" ry="2" />
+<text  x="170.64" y="959.5" ></text>
+</g>
+<g >
+<title>fwtable_write32 (45,132,193 samples, 0.01%)</title><rect x="232.9" y="661" width="0.2" height="15.0" fill="rgb(254,221,17)" rx="2" ry="2" />
+<text  x="235.93" y="671.5" ></text>
+</g>
+<g >
+<title>do_writev (755,946,642 samples, 0.21%)</title><rect x="238.0" y="933" width="2.5" height="15.0" fill="rgb(207,1,27)" rx="2" ry="2" />
+<text  x="241.02" y="943.5" ></text>
+</g>
+<g >
+<title>[perf] (17,460,732,866 samples, 4.76%)</title><rect x="669.6" y="917" width="56.2" height="15.0" fill="rgb(227,48,7)" rx="2" ry="2" />
+<text  x="672.64" y="927.5" >[perf]</text>
+</g>
+<g >
+<title>sysprof_collector_mark_vprintf (38,368,798 samples, 0.01%)</title><rect x="101.8" y="885" width="0.1" height="15.0" fill="rgb(224,92,52)" rx="2" ry="2" />
+<text  x="104.76" y="895.5" ></text>
+</g>
+<g >
+<title>schedule (79,148,814 samples, 0.02%)</title><rect x="1188.9" y="885" width="0.2" height="15.0" fill="rgb(218,69,32)" rx="2" ry="2" />
+<text  x="1191.88" y="895.5" ></text>
+</g>
+<g >
+<title>pollwake (33,597,272 samples, 0.01%)</title><rect x="320.7" y="517" width="0.1" height="15.0" fill="rgb(240,212,36)" rx="2" ry="2" />
+<text  x="323.68" y="527.5" ></text>
+</g>
+<g >
+<title>mieqProcessDeviceEvent (35,428,766 samples, 0.01%)</title><rect x="199.4" y="917" width="0.1" height="15.0" fill="rgb(225,56,15)" rx="2" ry="2" />
+<text  x="202.43" y="927.5" ></text>
+</g>
+<g >
+<title>switch_mm_irqs_off (334,102,241 samples, 0.09%)</title><rect x="1124.2" y="853" width="1.1" height="15.0" fill="rgb(249,126,9)" rx="2" ry="2" />
+<text  x="1127.19" y="863.5" ></text>
+</g>
+<g >
+<title>rmqueue_bulk (35,920,907 samples, 0.01%)</title><rect x="612.3" y="821" width="0.1" height="15.0" fill="rgb(223,14,43)" rx="2" ry="2" />
+<text  x="615.31" y="831.5" ></text>
+</g>
+<g >
+<title>alloc_skb_with_frags (261,603,545 samples, 0.07%)</title><rect x="238.8" y="805" width="0.8" height="15.0" fill="rgb(208,37,52)" rx="2" ry="2" />
+<text  x="241.75" y="815.5" ></text>
+</g>
+<g >
+<title>xas_load (58,176,781 samples, 0.02%)</title><rect x="235.4" y="725" width="0.2" height="15.0" fill="rgb(218,206,26)" rx="2" ry="2" />
+<text  x="238.39" y="735.5" ></text>
+</g>
+<g >
+<title>__active_lookup (42,918,531 samples, 0.01%)</title><rect x="138.1" y="741" width="0.1" height="15.0" fill="rgb(230,65,30)" rx="2" ry="2" />
+<text  x="141.11" y="751.5" ></text>
+</g>
+<g >
+<title>__sys_recvmsg (46,649,469 samples, 0.01%)</title><rect x="277.4" y="725" width="0.1" height="15.0" fill="rgb(221,135,40)" rx="2" ry="2" />
+<text  x="280.40" y="735.5" ></text>
+</g>
+<g >
+<title>calc_load_nohz_start (47,892,286 samples, 0.01%)</title><rect x="1160.0" y="869" width="0.1" height="15.0" fill="rgb(231,67,38)" rx="2" ry="2" />
+<text  x="1162.96" y="879.5" ></text>
+</g>
+<g >
+<title>syscall_return_via_sysret (85,718,775 samples, 0.02%)</title><rect x="296.6" y="901" width="0.2" height="15.0" fill="rgb(210,223,46)" rx="2" ry="2" />
+<text  x="299.56" y="911.5" ></text>
+</g>
+<g >
+<title>futex_wait (141,196,590 samples, 0.04%)</title><rect x="174.5" y="869" width="0.5" height="15.0" fill="rgb(208,80,33)" rx="2" ry="2" />
+<text  x="177.52" y="879.5" ></text>
+</g>
+<g >
+<title>iwl_mvm_rx (61,746,293 samples, 0.02%)</title><rect x="310.3" y="773" width="0.2" height="15.0" fill="rgb(230,103,54)" rx="2" ry="2" />
+<text  x="313.35" y="783.5" ></text>
+</g>
+<g >
+<title>g_signal_emit_valist (64,295,904 samples, 0.02%)</title><rect x="1179.5" y="597" width="0.3" height="15.0" fill="rgb(251,82,16)" rx="2" ry="2" />
+<text  x="1182.55" y="607.5" ></text>
+</g>
+<g >
+<title>xa_load (56,168,231 samples, 0.02%)</title><rect x="379.3" y="821" width="0.2" height="15.0" fill="rgb(229,126,27)" rx="2" ry="2" />
+<text  x="382.29" y="831.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (655,581,814 samples, 0.18%)</title><rect x="550.0" y="853" width="2.1" height="15.0" fill="rgb(225,106,45)" rx="2" ry="2" />
+<text  x="553.02" y="863.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (21,288,205,708 samples, 5.81%)</title><rect x="750.3" y="917" width="68.5" height="15.0" fill="rgb(223,8,49)" rx="2" ry="2" />
+<text  x="753.31" y="927.5" >[qemu-i..</text>
+</g>
+<g >
+<title>__alloc_skb (39,720,459 samples, 0.01%)</title><rect x="743.9" y="517" width="0.1" height="15.0" fill="rgb(229,178,32)" rx="2" ry="2" />
+<text  x="746.88" y="527.5" ></text>
+</g>
+<g >
+<title>list_lru_count_one (269,115,693 samples, 0.07%)</title><rect x="379.9" y="837" width="0.8" height="15.0" fill="rgb(247,48,46)" rx="2" ry="2" />
+<text  x="382.86" y="847.5" ></text>
+</g>
+<g >
+<title>[libglamoregl.so] (36,048,101 samples, 0.01%)</title><rect x="209.3" y="853" width="0.1" height="15.0" fill="rgb(222,79,45)" rx="2" ry="2" />
+<text  x="212.31" y="863.5" ></text>
+</g>
+<g >
+<title>[libgdk-3.so.0.2404.30] (95,170,633 samples, 0.03%)</title><rect x="1177.3" y="869" width="0.3" height="15.0" fill="rgb(245,217,6)" rx="2" ry="2" />
+<text  x="1180.28" y="879.5" ></text>
+</g>
+<g >
+<title>tcp_ack (193,273,019 samples, 0.05%)</title><rect x="326.4" y="613" width="0.6" height="15.0" fill="rgb(254,90,3)" rx="2" ry="2" />
+<text  x="329.40" y="623.5" ></text>
+</g>
+<g >
+<title>WRScene~der#617 (118,826,639 samples, 0.03%)</title><rect x="183.3" y="981" width="0.4" height="15.0" fill="rgb(227,135,36)" rx="2" ry="2" />
+<text  x="186.28" y="991.5" ></text>
+</g>
+<g >
+<title>iomap_do_writepage (327,795,791 samples, 0.09%)</title><rect x="595.9" y="757" width="1.1" height="15.0" fill="rgb(253,54,42)" rx="2" ry="2" />
+<text  x="598.91" y="767.5" ></text>
+</g>
+<g >
+<title>__handle_mm_fault (49,814,810 samples, 0.01%)</title><rect x="267.4" y="885" width="0.1" height="15.0" fill="rgb(251,194,49)" rx="2" ry="2" />
+<text  x="270.37" y="895.5" ></text>
+</g>
+<g >
+<title>shmem_sg_alloc_table (358,130,184 samples, 0.10%)</title><rect x="236.3" y="837" width="1.1" height="15.0" fill="rgb(215,209,12)" rx="2" ry="2" />
+<text  x="239.30" y="847.5" ></text>
+</g>
+<g >
+<title>g_main_context_check (154,291,851 samples, 0.04%)</title><rect x="1176.8" y="901" width="0.5" height="15.0" fill="rgb(245,144,38)" rx="2" ry="2" />
+<text  x="1179.78" y="911.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (66,708,979 samples, 0.02%)</title><rect x="825.6" y="837" width="0.2" height="15.0" fill="rgb(227,94,37)" rx="2" ry="2" />
+<text  x="828.58" y="847.5" ></text>
+</g>
+<g >
+<title>futex_wake (53,992,875 samples, 0.01%)</title><rect x="145.8" y="853" width="0.2" height="15.0" fill="rgb(206,102,22)" rx="2" ry="2" />
+<text  x="148.82" y="863.5" ></text>
+</g>
+<g >
+<title>zram_rw_page (231,436,119 samples, 0.06%)</title><rect x="369.0" y="789" width="0.7" height="15.0" fill="rgb(239,229,22)" rx="2" ry="2" />
+<text  x="372.00" y="799.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (72,272,323 samples, 0.02%)</title><rect x="648.1" y="709" width="0.2" height="15.0" fill="rgb(207,227,46)" rx="2" ry="2" />
+<text  x="651.11" y="719.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (54,584,453 samples, 0.01%)</title><rect x="367.7" y="789" width="0.2" height="15.0" fill="rgb(231,129,48)" rx="2" ry="2" />
+<text  x="370.72" y="799.5" ></text>
+</g>
+<g >
+<title>___pthread_mutex_lock (33,443,937 samples, 0.01%)</title><rect x="37.7" y="933" width="0.1" height="15.0" fill="rgb(221,65,52)" rx="2" ry="2" />
+<text  x="40.66" y="943.5" ></text>
+</g>
+<g >
+<title>g_signal_emit (48,127,788 samples, 0.01%)</title><rect x="1174.5" y="789" width="0.1" height="15.0" fill="rgb(242,141,49)" rx="2" ry="2" />
+<text  x="1177.48" y="799.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (98,705,935 samples, 0.03%)</title><rect x="214.7" y="805" width="0.3" height="15.0" fill="rgb(225,124,52)" rx="2" ry="2" />
+<text  x="217.68" y="815.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock_irqsave (124,176,264 samples, 0.03%)</title><rect x="719.0" y="725" width="0.4" height="15.0" fill="rgb(230,194,13)" rx="2" ry="2" />
+<text  x="721.99" y="735.5" ></text>
+</g>
+<g >
+<title>bdrv_co_pwritev_part (247,739,086 samples, 0.07%)</title><rect x="748.8" y="885" width="0.8" height="15.0" fill="rgb(209,145,30)" rx="2" ry="2" />
+<text  x="751.78" y="895.5" ></text>
+</g>
+<g >
+<title>psi_task_switch (89,138,342 samples, 0.02%)</title><rect x="35.4" y="789" width="0.3" height="15.0" fill="rgb(206,105,20)" rx="2" ry="2" />
+<text  x="38.40" y="799.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (190,529,032 samples, 0.05%)</title><rect x="215.6" y="773" width="0.6" height="15.0" fill="rgb(225,18,14)" rx="2" ry="2" />
+<text  x="218.55" y="783.5" ></text>
+</g>
+<g >
+<title>folio_migrate_mapping (79,114,244 samples, 0.02%)</title><rect x="346.1" y="837" width="0.3" height="15.0" fill="rgb(216,24,0)" rx="2" ry="2" />
+<text  x="349.12" y="847.5" ></text>
+</g>
+<g >
+<title>gtk_container_propagate_draw (446,073,004 samples, 0.12%)</title><rect x="1171.6" y="373" width="1.4" height="15.0" fill="rgb(252,83,20)" rx="2" ry="2" />
+<text  x="1174.56" y="383.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (59,950,908 samples, 0.02%)</title><rect x="1174.2" y="645" width="0.2" height="15.0" fill="rgb(246,216,53)" rx="2" ry="2" />
+<text  x="1177.22" y="655.5" ></text>
+</g>
+<g >
+<title>mod_lruvec_page_state (43,339,297 samples, 0.01%)</title><rect x="393.4" y="805" width="0.1" height="15.0" fill="rgb(246,83,4)" rx="2" ry="2" />
+<text  x="396.36" y="815.5" ></text>
+</g>
+<g >
+<title>rcu_do_batch (71,763,207 samples, 0.02%)</title><rect x="900.8" y="789" width="0.2" height="15.0" fill="rgb(240,114,17)" rx="2" ry="2" />
+<text  x="903.80" y="799.5" ></text>
+</g>
+<g >
+<title>get_page_from_freelist (1,702,637,945 samples, 0.46%)</title><rect x="705.7" y="709" width="5.4" height="15.0" fill="rgb(238,208,54)" rx="2" ry="2" />
+<text  x="708.66" y="719.5" ></text>
+</g>
+<g >
+<title>shrink_node (32,229,389 samples, 0.01%)</title><rect x="134.6" y="517" width="0.1" height="15.0" fill="rgb(213,216,2)" rx="2" ry="2" />
+<text  x="137.59" y="527.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (45,983,622 samples, 0.01%)</title><rect x="132.0" y="725" width="0.1" height="15.0" fill="rgb(221,38,48)" rx="2" ry="2" />
+<text  x="135.00" y="735.5" ></text>
+</g>
+<g >
+<title>[git] (124,008,357 samples, 0.03%)</title><rect x="285.3" y="917" width="0.4" height="15.0" fill="rgb(205,13,39)" rx="2" ry="2" />
+<text  x="288.27" y="927.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irq (93,048,844 samples, 0.03%)</title><rect x="364.1" y="837" width="0.3" height="15.0" fill="rgb(233,22,51)" rx="2" ry="2" />
+<text  x="367.14" y="847.5" ></text>
+</g>
+<g >
+<title>gtk_container_propagate_draw (189,364,549 samples, 0.05%)</title><rect x="1177.8" y="565" width="0.6" height="15.0" fill="rgb(235,111,13)" rx="2" ry="2" />
+<text  x="1180.84" y="575.5" ></text>
+</g>
+<g >
+<title>ipt_do_table (41,579,495 samples, 0.01%)</title><rect x="636.3" y="469" width="0.1" height="15.0" fill="rgb(232,65,47)" rx="2" ry="2" />
+<text  x="639.28" y="479.5" ></text>
+</g>
+<g >
+<title>__ieee80211_subif_start_xmit (325,878,189 samples, 0.09%)</title><rect x="623.4" y="421" width="1.1" height="15.0" fill="rgb(236,107,15)" rx="2" ry="2" />
+<text  x="626.44" y="431.5" ></text>
+</g>
+<g >
+<title>[libxul.so] (8,818,603,527 samples, 2.41%)</title><rect x="121.9" y="965" width="28.4" height="15.0" fill="rgb(238,138,49)" rx="2" ry="2" />
+<text  x="124.93" y="975.5" >[l..</text>
+</g>
+<g >
+<title>mozilla::detail::MutexImpl::unlock (114,595,656 samples, 0.03%)</title><rect x="105.1" y="949" width="0.4" height="15.0" fill="rgb(239,182,12)" rx="2" ry="2" />
+<text  x="108.14" y="959.5" ></text>
+</g>
+<g >
+<title>psi_task_switch (53,329,506 samples, 0.01%)</title><rect x="230.8" y="853" width="0.2" height="15.0" fill="rgb(231,206,5)" rx="2" ry="2" />
+<text  x="233.84" y="863.5" ></text>
+</g>
+<g >
+<title>kcryptd_crypt (7,161,516,438 samples, 1.95%)</title><rect x="479.0" y="901" width="23.1" height="15.0" fill="rgb(252,15,45)" rx="2" ry="2" />
+<text  x="482.04" y="911.5" >k..</text>
+</g>
+<g >
+<title>__mod_memcg_lruvec_state (63,793,206 samples, 0.02%)</title><rect x="384.8" y="773" width="0.2" height="15.0" fill="rgb(254,218,11)" rx="2" ry="2" />
+<text  x="387.80" y="783.5" ></text>
+</g>
+<g >
+<title>i915_vma_resource_fence_notify (35,853,794 samples, 0.01%)</title><rect x="377.9" y="725" width="0.1" height="15.0" fill="rgb(232,83,4)" rx="2" ry="2" />
+<text  x="380.85" y="735.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (128,408,460 samples, 0.04%)</title><rect x="216.2" y="757" width="0.4" height="15.0" fill="rgb(252,97,19)" rx="2" ry="2" />
+<text  x="219.23" y="767.5" ></text>
+</g>
+<g >
+<title>lru_note_cost (38,179,320 samples, 0.01%)</title><rect x="355.2" y="869" width="0.2" height="15.0" fill="rgb(207,61,25)" rx="2" ry="2" />
+<text  x="358.24" y="879.5" ></text>
+</g>
+<g >
+<title>unix_stream_recvmsg (135,508,938 samples, 0.04%)</title><rect x="21.0" y="741" width="0.5" height="15.0" fill="rgb(251,14,50)" rx="2" ry="2" />
+<text  x="24.03" y="751.5" ></text>
+</g>
+<g >
+<title>do_softirq.part.0 (856,266,051 samples, 0.23%)</title><rect x="660.4" y="597" width="2.7" height="15.0" fill="rgb(218,102,46)" rx="2" ry="2" />
+<text  x="663.35" y="607.5" ></text>
+</g>
+<g >
+<title>worker_thread (632,702,873 samples, 0.17%)</title><rect x="393.7" y="933" width="2.0" height="15.0" fill="rgb(240,99,7)" rx="2" ry="2" />
+<text  x="396.71" y="943.5" ></text>
+</g>
+<g >
+<title>ktime_get (94,276,890 samples, 0.03%)</title><rect x="1155.2" y="885" width="0.3" height="15.0" fill="rgb(249,113,34)" rx="2" ry="2" />
+<text  x="1158.15" y="895.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (48,224,254 samples, 0.01%)</title><rect x="828.9" y="949" width="0.2" height="15.0" fill="rgb(250,163,18)" rx="2" ry="2" />
+<text  x="831.92" y="959.5" ></text>
+</g>
+<g >
+<title>pagevec_lookup_range_tag (66,779,847 samples, 0.02%)</title><rect x="574.1" y="757" width="0.2" height="15.0" fill="rgb(206,148,9)" rx="2" ry="2" />
+<text  x="577.08" y="767.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (40,731,781 samples, 0.01%)</title><rect x="1171.7" y="213" width="0.2" height="15.0" fill="rgb(240,182,37)" rx="2" ry="2" />
+<text  x="1174.74" y="223.5" ></text>
+</g>
+<g >
+<title>memset_erms (121,814,010 samples, 0.03%)</title><rect x="594.1" y="853" width="0.4" height="15.0" fill="rgb(249,114,33)" rx="2" ry="2" />
+<text  x="597.08" y="863.5" ></text>
+</g>
+<g >
+<title>ip6_output (47,392,879 samples, 0.01%)</title><rect x="742.7" y="453" width="0.1" height="15.0" fill="rgb(247,217,9)" rx="2" ry="2" />
+<text  x="745.70" y="463.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (21,288,899,205 samples, 5.81%)</title><rect x="750.3" y="933" width="68.5" height="15.0" fill="rgb(211,51,47)" rx="2" ry="2" />
+<text  x="753.31" y="943.5" >[qemu-i..</text>
+</g>
+<g >
+<title>__mod_lruvec_page_state (362,855,433 samples, 0.10%)</title><rect x="715.9" y="725" width="1.2" height="15.0" fill="rgb(251,224,40)" rx="2" ry="2" />
+<text  x="718.90" y="735.5" ></text>
+</g>
+<g >
+<title>__sys_recvmsg (36,249,620 samples, 0.01%)</title><rect x="744.7" y="645" width="0.1" height="15.0" fill="rgb(234,109,53)" rx="2" ry="2" />
+<text  x="747.72" y="655.5" ></text>
+</g>
+<g >
+<title>iwl_get_cmd_string (244,213,662 samples, 0.07%)</title><rect x="309.6" y="773" width="0.7" height="15.0" fill="rgb(217,115,43)" rx="2" ry="2" />
+<text  x="312.56" y="783.5" ></text>
+</g>
+<g >
+<title>__GI___sched_yield (487,452,426 samples, 0.13%)</title><rect x="289.2" y="949" width="1.6" height="15.0" fill="rgb(253,214,32)" rx="2" ry="2" />
+<text  x="292.25" y="959.5" ></text>
+</g>
+<g >
+<title>skcipher_walk_next (87,160,457 samples, 0.02%)</title><rect x="452.0" y="805" width="0.3" height="15.0" fill="rgb(244,222,13)" rx="2" ry="2" />
+<text  x="455.03" y="815.5" ></text>
+</g>
+<g >
+<title>ieee80211_rx_napi (1,813,280,882 samples, 0.49%)</title><rect x="303.7" y="773" width="5.9" height="15.0" fill="rgb(230,1,25)" rx="2" ry="2" />
+<text  x="306.72" y="783.5" ></text>
+</g>
+<g >
+<title>__mem_cgroup_uncharge_list (184,336,933 samples, 0.05%)</title><rect x="357.4" y="853" width="0.5" height="15.0" fill="rgb(221,147,1)" rx="2" ry="2" />
+<text  x="360.35" y="863.5" ></text>
+</g>
+<g >
+<title>dequeue_task_rt (247,878,116 samples, 0.07%)</title><rect x="336.1" y="885" width="0.8" height="15.0" fill="rgb(254,174,1)" rx="2" ry="2" />
+<text  x="339.07" y="895.5" ></text>
+</g>
+<g >
+<title>nbdkit (16,749,027,687 samples, 4.57%)</title><rect x="615.0" y="981" width="54.0" height="15.0" fill="rgb(230,198,48)" rx="2" ry="2" />
+<text  x="618.03" y="991.5" >nbdkit</text>
+</g>
+<g >
+<title>select_task_rq_fair (34,573,153 samples, 0.01%)</title><rect x="815.4" y="741" width="0.1" height="15.0" fill="rgb(245,122,13)" rx="2" ry="2" />
+<text  x="818.37" y="751.5" ></text>
+</g>
+<g >
+<title>worker_thread (221,836,430 samples, 0.06%)</title><rect x="613.1" y="933" width="0.7" height="15.0" fill="rgb(231,106,24)" rx="2" ry="2" />
+<text  x="616.06" y="943.5" ></text>
+</g>
+<g >
+<title>__GI___write (16,905,189,041 samples, 4.61%)</title><rect x="670.2" y="885" width="54.4" height="15.0" fill="rgb(225,185,34)" rx="2" ry="2" />
+<text  x="673.16" y="895.5" >__GI_..</text>
+</g>
+<g >
+<title>[libglib-2.0.so.0.7303.0] (33,875,515 samples, 0.01%)</title><rect x="298.6" y="949" width="0.1" height="15.0" fill="rgb(215,28,22)" rx="2" ry="2" />
+<text  x="301.60" y="959.5" ></text>
+</g>
+<g >
+<title>g_malloc0 (43,012,775 samples, 0.01%)</title><rect x="738.8" y="677" width="0.1" height="15.0" fill="rgb(206,47,22)" rx="2" ry="2" />
+<text  x="741.81" y="687.5" ></text>
+</g>
+<g >
+<title>drm_atomic_nonblocking_commit (37,581,210 samples, 0.01%)</title><rect x="232.1" y="853" width="0.1" height="15.0" fill="rgb(241,195,23)" rx="2" ry="2" />
+<text  x="235.12" y="863.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (54,077,443 samples, 0.01%)</title><rect x="819.3" y="885" width="0.2" height="15.0" fill="rgb(252,72,25)" rx="2" ry="2" />
+<text  x="822.28" y="895.5" ></text>
+</g>
+<g >
+<title>__remove_hrtimer (154,473,612 samples, 0.04%)</title><rect x="1155.9" y="837" width="0.5" height="15.0" fill="rgb(235,184,34)" rx="2" ry="2" />
+<text  x="1158.92" y="847.5" ></text>
+</g>
+<g >
+<title>dequeue_entity (249,254,647 samples, 0.07%)</title><rect x="652.4" y="581" width="0.8" height="15.0" fill="rgb(244,86,49)" rx="2" ry="2" />
+<text  x="655.37" y="591.5" ></text>
+</g>
+<g >
+<title>g_signal_emit (31,256,078 samples, 0.01%)</title><rect x="1179.4" y="613" width="0.1" height="15.0" fill="rgb(208,22,34)" rx="2" ry="2" />
+<text  x="1182.36" y="623.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_apic_timer_interrupt (721,852,989 samples, 0.20%)</title><rect x="832.6" y="837" width="2.3" height="15.0" fill="rgb(235,122,20)" rx="2" ry="2" />
+<text  x="835.57" y="847.5" ></text>
+</g>
+<g >
+<title>balance_rt (47,017,886 samples, 0.01%)</title><rect x="338.6" y="869" width="0.2" height="15.0" fill="rgb(250,87,40)" rx="2" ry="2" />
+<text  x="341.60" y="879.5" ></text>
+</g>
+<g >
+<title>tcp_recvmsg_locked (39,461,464 samples, 0.01%)</title><rect x="667.4" y="869" width="0.1" height="15.0" fill="rgb(247,105,5)" rx="2" ry="2" />
+<text  x="670.39" y="879.5" ></text>
+</g>
+<g >
+<title>kthread (296,928,550 samples, 0.08%)</title><rect x="392.7" y="949" width="1.0" height="15.0" fill="rgb(240,201,9)" rx="2" ry="2" />
+<text  x="395.72" y="959.5" ></text>
+</g>
+<g >
+<title>[ssh] (49,491,539 samples, 0.01%)</title><rect x="830.4" y="837" width="0.2" height="15.0" fill="rgb(215,161,9)" rx="2" ry="2" />
+<text  x="833.42" y="847.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock_irqsave (65,264,245 samples, 0.02%)</title><rect x="1143.5" y="821" width="0.2" height="15.0" fill="rgb(247,2,50)" rx="2" ry="2" />
+<text  x="1146.45" y="831.5" ></text>
+</g>
+<g >
+<title>[libpipewire-0.3.so.0.358.0] (136,425,975 samples, 0.04%)</title><rect x="732.7" y="917" width="0.4" height="15.0" fill="rgb(245,7,48)" rx="2" ry="2" />
+<text  x="735.65" y="927.5" ></text>
+</g>
+<g >
+<title>__mod_memcg_lruvec_state (31,854,949 samples, 0.01%)</title><rect x="375.7" y="741" width="0.1" height="15.0" fill="rgb(222,136,10)" rx="2" ry="2" />
+<text  x="378.66" y="751.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (151,862,826 samples, 0.04%)</title><rect x="747.1" y="709" width="0.5" height="15.0" fill="rgb(216,88,43)" rx="2" ry="2" />
+<text  x="750.08" y="719.5" ></text>
+</g>
+<g >
+<title>filter_pread (12,771,353,263 samples, 3.48%)</title><rect x="616.8" y="853" width="41.1" height="15.0" fill="rgb(230,199,17)" rx="2" ry="2" />
+<text  x="619.78" y="863.5" >fil..</text>
+</g>
+<g >
+<title>__libc_read (690,921,798 samples, 0.19%)</title><rect x="91.2" y="949" width="2.2" height="15.0" fill="rgb(251,180,50)" rx="2" ry="2" />
+<text  x="94.15" y="959.5" ></text>
+</g>
+<g >
+<title>security_file_permission (48,804,469 samples, 0.01%)</title><rect x="86.5" y="869" width="0.1" height="15.0" fill="rgb(210,157,46)" rx="2" ry="2" />
+<text  x="89.47" y="879.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc_node (32,533,263 samples, 0.01%)</title><rect x="629.7" y="533" width="0.1" height="15.0" fill="rgb(211,196,6)" rx="2" ry="2" />
+<text  x="632.73" y="543.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (78,043,779 samples, 0.02%)</title><rect x="173.7" y="901" width="0.2" height="15.0" fill="rgb(235,56,3)" rx="2" ry="2" />
+<text  x="176.68" y="911.5" ></text>
+</g>
+<g >
+<title>worker_thread (271,425,872 samples, 0.07%)</title><rect x="387.3" y="933" width="0.9" height="15.0" fill="rgb(227,199,11)" rx="2" ry="2" />
+<text  x="390.30" y="943.5" ></text>
+</g>
+<g >
+<title>[xfwm4] (189,757,653 samples, 0.05%)</title><rect x="1186.7" y="789" width="0.7" height="15.0" fill="rgb(253,174,15)" rx="2" ry="2" />
+<text  x="1189.74" y="799.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (177,215,395 samples, 0.05%)</title><rect x="149.1" y="901" width="0.6" height="15.0" fill="rgb(231,131,19)" rx="2" ry="2" />
+<text  x="152.10" y="911.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (83,456,845 samples, 0.02%)</title><rect x="197.9" y="885" width="0.3" height="15.0" fill="rgb(213,186,9)" rx="2" ry="2" />
+<text  x="200.92" y="895.5" ></text>
+</g>
+<g >
+<title>[libxul.so] (508,861,310 samples, 0.14%)</title><rect x="15.4" y="949" width="1.6" height="15.0" fill="rgb(215,125,41)" rx="2" ry="2" />
+<text  x="18.36" y="959.5" ></text>
+</g>
+<g >
+<title>[wget] (92,132,750 samples, 0.03%)</title><rect x="1167.1" y="853" width="0.3" height="15.0" fill="rgb(236,96,21)" rx="2" ry="2" />
+<text  x="1170.10" y="863.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (3,874,918,920 samples, 1.06%)</title><rect x="628.0" y="677" width="12.5" height="15.0" fill="rgb(215,142,49)" rx="2" ry="2" />
+<text  x="631.01" y="687.5" ></text>
+</g>
+<g >
+<title>__clock_gettime_2 (63,043,849 samples, 0.02%)</title><rect x="281.8" y="885" width="0.2" height="15.0" fill="rgb(205,92,41)" rx="2" ry="2" />
+<text  x="284.82" y="895.5" ></text>
+</g>
+<g >
+<title>[unknown] (1,028,757,535 samples, 0.28%)</title><rect x="150.3" y="965" width="3.3" height="15.0" fill="rgb(213,9,46)" rx="2" ry="2" />
+<text  x="153.31" y="975.5" ></text>
+</g>
+<g >
+<title>submit_bio_noacct_nocheck (572,537,761 samples, 0.16%)</title><rect x="245.0" y="917" width="1.8" height="15.0" fill="rgb(219,225,15)" rx="2" ry="2" />
+<text  x="247.99" y="927.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (33,193,799 samples, 0.01%)</title><rect x="157.3" y="885" width="0.1" height="15.0" fill="rgb(209,141,43)" rx="2" ry="2" />
+<text  x="160.26" y="895.5" ></text>
+</g>
+<g >
+<title>[libxcb.so.1.1.0] (113,350,454 samples, 0.03%)</title><rect x="145.1" y="821" width="0.4" height="15.0" fill="rgb(223,34,15)" rx="2" ry="2" />
+<text  x="148.12" y="831.5" ></text>
+</g>
+<g >
+<title>__i915_sw_fence_complete (36,526,149 samples, 0.01%)</title><rect x="377.9" y="741" width="0.1" height="15.0" fill="rgb(219,167,36)" rx="2" ry="2" />
+<text  x="380.85" y="751.5" ></text>
+</g>
+<g >
+<title>_CallCallbacks (116,969,838 samples, 0.03%)</title><rect x="220.4" y="901" width="0.4" height="15.0" fill="rgb(210,170,53)" rx="2" ry="2" />
+<text  x="223.42" y="911.5" ></text>
+</g>
+<g >
+<title>sock_def_readable (38,798,241 samples, 0.01%)</title><rect x="93.9" y="821" width="0.1" height="15.0" fill="rgb(238,142,35)" rx="2" ry="2" />
+<text  x="96.86" y="831.5" ></text>
+</g>
+<g >
+<title>GLXVsyncThread (2,776,271,365 samples, 0.76%)</title><rect x="17.4" y="981" width="9.0" height="15.0" fill="rgb(230,85,18)" rx="2" ry="2" />
+<text  x="20.43" y="991.5" ></text>
+</g>
+<g >
+<title>IPC_I/O_Child (5,075,647,249 samples, 1.38%)</title><rect x="26.4" y="981" width="16.3" height="15.0" fill="rgb(223,160,10)" rx="2" ry="2" />
+<text  x="29.37" y="991.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (84,654,923 samples, 0.02%)</title><rect x="1174.2" y="741" width="0.3" height="15.0" fill="rgb(217,223,39)" rx="2" ry="2" />
+<text  x="1177.20" y="751.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (39,717,974 samples, 0.01%)</title><rect x="1127.5" y="837" width="0.1" height="15.0" fill="rgb(217,173,2)" rx="2" ry="2" />
+<text  x="1130.48" y="847.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (74,572,638 samples, 0.02%)</title><rect x="222.8" y="741" width="0.3" height="15.0" fill="rgb(206,190,31)" rx="2" ry="2" />
+<text  x="225.82" y="751.5" ></text>
+</g>
+<g >
+<title>get_next_timer_interrupt (60,921,958 samples, 0.02%)</title><rect x="883.3" y="821" width="0.1" height="15.0" fill="rgb(232,69,2)" rx="2" ry="2" />
+<text  x="886.25" y="831.5" ></text>
+</g>
+<g >
+<title>kernel_fpu_begin_mask (204,189,440 samples, 0.06%)</title><rect x="546.8" y="821" width="0.6" height="15.0" fill="rgb(227,57,28)" rx="2" ry="2" />
+<text  x="549.77" y="831.5" ></text>
+</g>
+<g >
+<title>__x64_sys_sched_yield (209,351,513 samples, 0.06%)</title><rect x="289.6" y="901" width="0.7" height="15.0" fill="rgb(246,69,39)" rx="2" ry="2" />
+<text  x="292.58" y="911.5" ></text>
+</g>
+<g >
+<title>[libEGL_mesa.so.0.0.0] (128,278,670 samples, 0.03%)</title><rect x="1165.5" y="821" width="0.4" height="15.0" fill="rgb(231,62,34)" rx="2" ry="2" />
+<text  x="1168.53" y="831.5" ></text>
+</g>
+<g >
+<title>net_rx_action (660,613,973 samples, 0.18%)</title><rect x="740.5" y="373" width="2.2" height="15.0" fill="rgb(211,156,10)" rx="2" ry="2" />
+<text  x="743.54" y="383.5" ></text>
+</g>
+<g >
+<title>selinux_socket_sock_rcv_skb (38,732,658 samples, 0.01%)</title><rect x="325.0" y="613" width="0.2" height="15.0" fill="rgb(224,15,3)" rx="2" ry="2" />
+<text  x="328.03" y="623.5" ></text>
+</g>
+<g >
+<title>WRScene~der#288 (133,740,593 samples, 0.04%)</title><rect x="182.6" y="981" width="0.4" height="15.0" fill="rgb(223,103,21)" rx="2" ry="2" />
+<text  x="185.60" y="991.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (37,000,635 samples, 0.01%)</title><rect x="276.7" y="853" width="0.2" height="15.0" fill="rgb(223,154,9)" rx="2" ry="2" />
+<text  x="279.75" y="863.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (270,189,613 samples, 0.07%)</title><rect x="388.2" y="965" width="0.9" height="15.0" fill="rgb(242,89,25)" rx="2" ry="2" />
+<text  x="391.18" y="975.5" ></text>
+</g>
+<g >
+<title>migrate_folio (40,747,909 samples, 0.01%)</title><rect x="346.6" y="853" width="0.1" height="15.0" fill="rgb(214,223,32)" rx="2" ry="2" />
+<text  x="349.59" y="863.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (190,418,280 samples, 0.05%)</title><rect x="217.2" y="837" width="0.6" height="15.0" fill="rgb(207,175,6)" rx="2" ry="2" />
+<text  x="220.15" y="847.5" ></text>
+</g>
+<g >
+<title>____intel_wakeref_put_last (41,548,342 samples, 0.01%)</title><rect x="395.8" y="901" width="0.1" height="15.0" fill="rgb(208,169,43)" rx="2" ry="2" />
+<text  x="398.79" y="911.5" ></text>
+</g>
+<g >
+<title>__clock_gettime_2 (60,177,259 samples, 0.02%)</title><rect x="648.6" y="757" width="0.2" height="15.0" fill="rgb(238,173,12)" rx="2" ry="2" />
+<text  x="651.58" y="767.5" ></text>
+</g>
+<g >
+<title>[firefox] (37,597,725 samples, 0.01%)</title><rect x="12.6" y="917" width="0.1" height="15.0" fill="rgb(227,99,34)" rx="2" ry="2" />
+<text  x="15.56" y="927.5" ></text>
+</g>
+<g >
+<title>g_main_loop_run (1,701,582,755 samples, 0.46%)</title><rect x="1176.8" y="933" width="5.4" height="15.0" fill="rgb(221,228,20)" rx="2" ry="2" />
+<text  x="1179.75" y="943.5" ></text>
+</g>
+<g >
+<title>__GI___ioctl (1,623,257,472 samples, 0.44%)</title><rect x="136.4" y="901" width="5.2" height="15.0" fill="rgb(224,45,1)" rx="2" ry="2" />
+<text  x="139.40" y="911.5" ></text>
+</g>
+<g >
+<title>[Xorg] (78,957,358 samples, 0.02%)</title><rect x="203.5" y="917" width="0.3" height="15.0" fill="rgb(237,87,33)" rx="2" ry="2" />
+<text  x="206.52" y="927.5" ></text>
+</g>
+<g >
+<title>lzorle_compress (67,856,873 samples, 0.02%)</title><rect x="369.5" y="757" width="0.2" height="15.0" fill="rgb(219,36,7)" rx="2" ry="2" />
+<text  x="372.50" y="767.5" ></text>
+</g>
+<g >
+<title>[libxul.so] (39,829,757 samples, 0.01%)</title><rect x="160.1" y="933" width="0.2" height="15.0" fill="rgb(235,220,50)" rx="2" ry="2" />
+<text  x="163.14" y="943.5" ></text>
+</g>
+<g >
+<title>kcryptd_crypt (5,435,014,695 samples, 1.48%)</title><rect x="420.2" y="901" width="17.5" height="15.0" fill="rgb(224,32,30)" rx="2" ry="2" />
+<text  x="423.23" y="911.5" ></text>
+</g>
+<g >
+<title>__sysvec_irq_work (44,714,445 samples, 0.01%)</title><rect x="232.3" y="709" width="0.1" height="15.0" fill="rgb(253,43,44)" rx="2" ry="2" />
+<text  x="235.27" y="719.5" ></text>
+</g>
+<g >
+<title>ASN1_item_d2i_ex (65,849,563 samples, 0.02%)</title><rect x="284.8" y="629" width="0.2" height="15.0" fill="rgb(231,135,2)" rx="2" ry="2" />
+<text  x="287.77" y="639.5" ></text>
+</g>
+<g >
+<title>skcipher_walk_next (81,679,100 samples, 0.02%)</title><rect x="471.5" y="805" width="0.3" height="15.0" fill="rgb(213,143,1)" rx="2" ry="2" />
+<text  x="474.49" y="815.5" ></text>
+</g>
+<g >
+<title>memcpy_erms (92,895,270 samples, 0.03%)</title><rect x="500.2" y="869" width="0.3" height="15.0" fill="rgb(207,18,33)" rx="2" ry="2" />
+<text  x="503.21" y="879.5" ></text>
+</g>
+<g >
+<title>gtk_container_propagate_draw (460,865,938 samples, 0.13%)</title><rect x="1171.5" y="421" width="1.5" height="15.0" fill="rgb(229,193,39)" rx="2" ry="2" />
+<text  x="1174.53" y="431.5" ></text>
+</g>
+<g >
+<title>asm_common_interrupt (33,013,842 samples, 0.01%)</title><rect x="832.5" y="837" width="0.1" height="15.0" fill="rgb(243,88,21)" rx="2" ry="2" />
+<text  x="835.46" y="847.5" ></text>
+</g>
+<g >
+<title>futex_wait (294,214,930 samples, 0.08%)</title><rect x="158.3" y="821" width="0.9" height="15.0" fill="rgb(217,91,31)" rx="2" ry="2" />
+<text  x="161.25" y="831.5" ></text>
+</g>
+<g >
+<title>writeback_sb_inodes (756,192,153 samples, 0.21%)</title><rect x="571.9" y="853" width="2.4" height="15.0" fill="rgb(210,218,9)" rx="2" ry="2" />
+<text  x="574.86" y="863.5" ></text>
+</g>
+<g >
+<title>__tcp_push_pending_frames (1,242,629,510 samples, 0.34%)</title><rect x="739.8" y="533" width="4.0" height="15.0" fill="rgb(215,62,13)" rx="2" ry="2" />
+<text  x="742.78" y="543.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (65,574,106 samples, 0.02%)</title><rect x="216.4" y="693" width="0.2" height="15.0" fill="rgb(232,155,27)" rx="2" ry="2" />
+<text  x="219.42" y="703.5" ></text>
+</g>
+<g >
+<title>free (61,799,964 samples, 0.02%)</title><rect x="52.9" y="933" width="0.2" height="15.0" fill="rgb(242,54,0)" rx="2" ry="2" />
+<text  x="55.93" y="943.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock_irqsave (55,878,359 samples, 0.02%)</title><rect x="727.0" y="837" width="0.1" height="15.0" fill="rgb(221,38,47)" rx="2" ry="2" />
+<text  x="729.96" y="847.5" ></text>
+</g>
+<g >
+<title>futex_wait_queue (251,271,397 samples, 0.07%)</title><rect x="158.3" y="805" width="0.8" height="15.0" fill="rgb(218,187,12)" rx="2" ry="2" />
+<text  x="161.31" y="815.5" ></text>
+</g>
+<g >
+<title>[libgdk-3.so.0.2404.30] (31,311,023 samples, 0.01%)</title><rect x="1169.5" y="965" width="0.1" height="15.0" fill="rgb(238,116,49)" rx="2" ry="2" />
+<text  x="1172.49" y="975.5" ></text>
+</g>
+<g >
+<title>wb_writeback (438,852,183 samples, 0.12%)</title><rect x="555.6" y="885" width="1.4" height="15.0" fill="rgb(230,84,11)" rx="2" ry="2" />
+<text  x="558.61" y="895.5" ></text>
+</g>
+<g >
+<title>__hrtimer_run_queues (36,178,642 samples, 0.01%)</title><rect x="267.6" y="885" width="0.2" height="15.0" fill="rgb(205,23,16)" rx="2" ry="2" />
+<text  x="270.65" y="895.5" ></text>
+</g>
+<g >
+<title>_aesni_enc1 (86,754,676 samples, 0.02%)</title><rect x="561.9" y="805" width="0.3" height="15.0" fill="rgb(209,130,5)" rx="2" ry="2" />
+<text  x="564.89" y="815.5" ></text>
+</g>
+<g >
+<title>__libc_start_main_alias_2 (114,353,481 samples, 0.03%)</title><rect x="243.4" y="949" width="0.4" height="15.0" fill="rgb(220,190,37)" rx="2" ry="2" />
+<text  x="246.39" y="959.5" ></text>
+</g>
+<g >
+<title>vfs_write (3,066,348,775 samples, 0.84%)</title><rect x="750.6" y="805" width="9.9" height="15.0" fill="rgb(221,81,17)" rx="2" ry="2" />
+<text  x="753.62" y="815.5" ></text>
+</g>
+<g >
+<title>sta_info_get (58,520,672 samples, 0.02%)</title><rect x="631.4" y="437" width="0.2" height="15.0" fill="rgb(221,6,10)" rx="2" ry="2" />
+<text  x="634.43" y="447.5" ></text>
+</g>
+<g >
+<title>iomap_do_writepage (445,191,459 samples, 0.12%)</title><rect x="572.6" y="757" width="1.5" height="15.0" fill="rgb(224,72,29)" rx="2" ry="2" />
+<text  x="575.65" y="767.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (45,122,175 samples, 0.01%)</title><rect x="710.8" y="677" width="0.1" height="15.0" fill="rgb(238,207,27)" rx="2" ry="2" />
+<text  x="713.79" y="687.5" ></text>
+</g>
+<g >
+<title>map_pt_dma_locked (39,330,061 samples, 0.01%)</title><rect x="235.9" y="805" width="0.1" height="15.0" fill="rgb(240,41,20)" rx="2" ry="2" />
+<text  x="238.91" y="815.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (175,526,427 samples, 0.05%)</title><rect x="1177.9" y="373" width="0.5" height="15.0" fill="rgb(229,111,2)" rx="2" ry="2" />
+<text  x="1180.86" y="383.5" ></text>
+</g>
+<g >
+<title>xas_find_conflict (242,167,663 samples, 0.07%)</title><rect x="698.5" y="709" width="0.8" height="15.0" fill="rgb(223,202,53)" rx="2" ry="2" />
+<text  x="701.48" y="719.5" ></text>
+</g>
+<g >
+<title>get_cpu_device (143,076,139 samples, 0.04%)</title><rect x="1138.7" y="869" width="0.5" height="15.0" fill="rgb(232,112,37)" rx="2" ry="2" />
+<text  x="1141.71" y="879.5" ></text>
+</g>
+<g >
+<title>kworker/u16:6-k (7,182,548,418 samples, 1.96%)</title><rect x="533.9" y="981" width="23.2" height="15.0" fill="rgb(241,107,8)" rx="2" ry="2" />
+<text  x="536.94" y="991.5" >k..</text>
+</g>
+<g >
+<title>__softirqentry_text_start (90,427,474 samples, 0.02%)</title><rect x="137.5" y="741" width="0.3" height="15.0" fill="rgb(237,175,39)" rx="2" ry="2" />
+<text  x="140.53" y="751.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (494,336,608 samples, 0.13%)</title><rect x="472.7" y="853" width="1.6" height="15.0" fill="rgb(233,3,23)" rx="2" ry="2" />
+<text  x="475.67" y="863.5" ></text>
+</g>
+<g >
+<title>irq_work_single (68,858,131 samples, 0.02%)</title><rect x="1163.7" y="389" width="0.2" height="15.0" fill="rgb(242,48,49)" rx="2" ry="2" />
+<text  x="1166.70" y="399.5" ></text>
+</g>
+<g >
+<title>unix_stream_read_actor (49,523,767 samples, 0.01%)</title><rect x="229.1" y="853" width="0.1" height="15.0" fill="rgb(211,164,26)" rx="2" ry="2" />
+<text  x="232.07" y="863.5" ></text>
+</g>
+<g >
+<title>consume_skb (108,787,909 samples, 0.03%)</title><rect x="228.6" y="853" width="0.3" height="15.0" fill="rgb(231,219,47)" rx="2" ry="2" />
+<text  x="231.56" y="863.5" ></text>
+</g>
+<g >
+<title>[git-remote-http] (94,107,734 samples, 0.03%)</title><rect x="284.8" y="869" width="0.3" height="15.0" fill="rgb(240,148,9)" rx="2" ry="2" />
+<text  x="287.75" y="879.5" ></text>
+</g>
+<g >
+<title>__clock_gettime_2 (62,381,208 samples, 0.02%)</title><rect x="278.6" y="885" width="0.2" height="15.0" fill="rgb(221,109,42)" rx="2" ry="2" />
+<text  x="281.58" y="895.5" ></text>
+</g>
+<g >
+<title>i915_request_create (34,303,308 samples, 0.01%)</title><rect x="141.3" y="773" width="0.1" height="15.0" fill="rgb(252,107,7)" rx="2" ry="2" />
+<text  x="144.30" y="783.5" ></text>
+</g>
+<g >
+<title>psi_task_change (545,187,789 samples, 0.15%)</title><rect x="1131.0" y="837" width="1.7" height="15.0" fill="rgb(214,163,19)" rx="2" ry="2" />
+<text  x="1133.97" y="847.5" ></text>
+</g>
+<g >
+<title>tasklet_action_common.constprop.0 (81,675,165 samples, 0.02%)</title><rect x="137.6" y="725" width="0.2" height="15.0" fill="rgb(209,175,31)" rx="2" ry="2" />
+<text  x="140.55" y="735.5" ></text>
+</g>
+<g >
+<title>iomap_file_buffered_write (153,141,059 samples, 0.04%)</title><rect x="724.9" y="805" width="0.5" height="15.0" fill="rgb(252,186,37)" rx="2" ry="2" />
+<text  x="727.92" y="815.5" ></text>
+</g>
+<g >
+<title>kworker/5:1-eve (297,111,739 samples, 0.08%)</title><rect x="392.7" y="981" width="1.0" height="15.0" fill="rgb(216,19,1)" rx="2" ry="2" />
+<text  x="395.72" y="991.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (4,242,022,458 samples, 1.16%)</title><rect x="228.1" y="949" width="13.6" height="15.0" fill="rgb(211,3,14)" rx="2" ry="2" />
+<text  x="231.05" y="959.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (217,255,492 samples, 0.06%)</title><rect x="217.1" y="853" width="0.7" height="15.0" fill="rgb(218,211,47)" rx="2" ry="2" />
+<text  x="220.07" y="863.5" ></text>
+</g>
+<g >
+<title>workingset_update_node (50,155,960 samples, 0.01%)</title><rect x="699.9" y="693" width="0.2" height="15.0" fill="rgb(241,67,26)" rx="2" ry="2" />
+<text  x="702.91" y="703.5" ></text>
+</g>
+<g >
+<title>folio_end_writeback (304,406,230 samples, 0.08%)</title><rect x="385.9" y="837" width="1.0" height="15.0" fill="rgb(215,53,21)" rx="2" ry="2" />
+<text  x="388.89" y="847.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (536,466,717 samples, 0.15%)</title><rect x="339.3" y="965" width="1.8" height="15.0" fill="rgb(209,4,48)" rx="2" ry="2" />
+<text  x="342.34" y="975.5" ></text>
+</g>
+<g >
+<title>syscall_return_via_sysret (114,921,393 samples, 0.03%)</title><rect x="645.5" y="725" width="0.3" height="15.0" fill="rgb(206,30,6)" rx="2" ry="2" />
+<text  x="648.47" y="735.5" ></text>
+</g>
+<g >
+<title>[libgdk-3.so.0.2404.30] (388,722,792 samples, 0.11%)</title><rect x="279.8" y="885" width="1.2" height="15.0" fill="rgb(230,56,2)" rx="2" ry="2" />
+<text  x="282.75" y="895.5" ></text>
+</g>
+<g >
+<title>[libglib-2.0.so.0.7303.0] (72,050,676 samples, 0.02%)</title><rect x="277.9" y="869" width="0.2" height="15.0" fill="rgb(208,190,47)" rx="2" ry="2" />
+<text  x="280.87" y="879.5" ></text>
+</g>
+<g >
+<title>__GI___write (766,583,293 samples, 0.21%)</title><rect x="29.4" y="949" width="2.5" height="15.0" fill="rgb(209,144,48)" rx="2" ry="2" />
+<text  x="32.40" y="959.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (306,954,880 samples, 0.08%)</title><rect x="295.6" y="901" width="1.0" height="15.0" fill="rgb(237,119,27)" rx="2" ry="2" />
+<text  x="298.57" y="911.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (3,003,735,562 samples, 0.82%)</title><rect x="819.1" y="917" width="9.6" height="15.0" fill="rgb(246,90,3)" rx="2" ry="2" />
+<text  x="822.07" y="927.5" ></text>
+</g>
+<g >
+<title>__wake_up_common (204,682,002 samples, 0.06%)</title><rect x="47.9" y="741" width="0.7" height="15.0" fill="rgb(213,226,1)" rx="2" ry="2" />
+<text  x="50.94" y="751.5" ></text>
+</g>
+<g >
+<title>free (70,741,347 samples, 0.02%)</title><rect x="12.3" y="949" width="0.2" height="15.0" fill="rgb(248,175,24)" rx="2" ry="2" />
+<text  x="15.26" y="959.5" ></text>
+</g>
+<g >
+<title>firefox (302,332,304 samples, 0.08%)</title><rect x="247.0" y="981" width="0.9" height="15.0" fill="rgb(253,92,42)" rx="2" ry="2" />
+<text  x="249.96" y="991.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (167,243,381 samples, 0.05%)</title><rect x="174.5" y="917" width="0.5" height="15.0" fill="rgb(211,30,25)" rx="2" ry="2" />
+<text  x="177.51" y="927.5" ></text>
+</g>
+<g >
+<title>tick_irq_enter (133,429,001 samples, 0.04%)</title><rect x="897.5" y="821" width="0.4" height="15.0" fill="rgb(221,137,21)" rx="2" ry="2" />
+<text  x="900.48" y="831.5" ></text>
+</g>
+<g >
+<title>__mod_lruvec_page_state (84,690,423 samples, 0.02%)</title><rect x="754.9" y="693" width="0.3" height="15.0" fill="rgb(226,177,50)" rx="2" ry="2" />
+<text  x="757.91" y="703.5" ></text>
+</g>
+<g >
+<title>rmqueue_bulk (34,780,646 samples, 0.01%)</title><rect x="571.6" y="821" width="0.1" height="15.0" fill="rgb(226,130,9)" rx="2" ry="2" />
+<text  x="574.58" y="831.5" ></text>
+</g>
+<g >
+<title>do_writepages (299,662,202 samples, 0.08%)</title><rect x="502.1" y="821" width="1.0" height="15.0" fill="rgb(247,207,54)" rx="2" ry="2" />
+<text  x="505.10" y="831.5" ></text>
+</g>
+<g >
+<title>update_sd_lb_stats.constprop.0 (63,557,435 samples, 0.02%)</title><rect x="34.8" y="725" width="0.2" height="15.0" fill="rgb(250,77,37)" rx="2" ry="2" />
+<text  x="37.78" y="735.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (321,550,698 samples, 0.09%)</title><rect x="432.2" y="853" width="1.1" height="15.0" fill="rgb(244,28,23)" rx="2" ry="2" />
+<text  x="435.22" y="863.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (886,930,256 samples, 0.24%)</title><rect x="537.6" y="837" width="2.8" height="15.0" fill="rgb(231,62,3)" rx="2" ry="2" />
+<text  x="540.56" y="847.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (742,154,699 samples, 0.20%)</title><rect x="46.7" y="933" width="2.4" height="15.0" fill="rgb(254,13,13)" rx="2" ry="2" />
+<text  x="49.74" y="943.5" ></text>
+</g>
+<g >
+<title>__schedule (365,468,173 samples, 0.10%)</title><rect x="817.0" y="741" width="1.2" height="15.0" fill="rgb(222,177,5)" rx="2" ry="2" />
+<text  x="820.04" y="751.5" ></text>
+</g>
+<g >
+<title>__GI_sprintf (58,039,931 samples, 0.02%)</title><rect x="626.2" y="677" width="0.2" height="15.0" fill="rgb(243,102,17)" rx="2" ry="2" />
+<text  x="629.16" y="687.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (105,994,599 samples, 0.03%)</title><rect x="1165.6" y="741" width="0.3" height="15.0" fill="rgb(252,142,37)" rx="2" ry="2" />
+<text  x="1168.57" y="751.5" ></text>
+</g>
+<g >
+<title>skcipher_walk_next (107,680,639 samples, 0.03%)</title><rect x="588.3" y="805" width="0.3" height="15.0" fill="rgb(232,181,14)" rx="2" ry="2" />
+<text  x="591.30" y="815.5" ></text>
+</g>
+<g >
+<title>_aesni_enc1 (134,222,483 samples, 0.04%)</title><rect x="581.6" y="805" width="0.4" height="15.0" fill="rgb(235,93,13)" rx="2" ry="2" />
+<text  x="584.58" y="815.5" ></text>
+</g>
+<g >
+<title>__libc_poll (236,600,489 samples, 0.06%)</title><rect x="276.2" y="901" width="0.8" height="15.0" fill="rgb(236,171,30)" rx="2" ry="2" />
+<text  x="279.22" y="911.5" ></text>
+</g>
+<g >
+<title>add_to_swap_cache (57,642,972 samples, 0.02%)</title><rect x="369.8" y="821" width="0.2" height="15.0" fill="rgb(210,58,22)" rx="2" ry="2" />
+<text  x="372.79" y="831.5" ></text>
+</g>
+<g >
+<title>hrtimer_next_event_without (64,037,932 samples, 0.02%)</title><rect x="883.0" y="837" width="0.2" height="15.0" fill="rgb(238,136,41)" rx="2" ry="2" />
+<text  x="885.98" y="847.5" ></text>
+</g>
+<g >
+<title>newidle_balance (286,077,369 samples, 0.08%)</title><rect x="34.4" y="773" width="0.9" height="15.0" fill="rgb(244,227,45)" rx="2" ry="2" />
+<text  x="37.39" y="783.5" ></text>
+</g>
+<g >
+<title>native_write_msr (618,899,534 samples, 0.17%)</title><rect x="1120.7" y="853" width="2.0" height="15.0" fill="rgb(225,167,2)" rx="2" ry="2" />
+<text  x="1123.69" y="863.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (1,010,770,960 samples, 0.28%)</title><rect x="32.9" y="885" width="3.3" height="15.0" fill="rgb(250,161,10)" rx="2" ry="2" />
+<text  x="35.92" y="895.5" ></text>
+</g>
+<g >
+<title>wake_up_q (49,636,188 samples, 0.01%)</title><rect x="173.7" y="837" width="0.2" height="15.0" fill="rgb(207,80,28)" rx="2" ry="2" />
+<text  x="176.75" y="847.5" ></text>
+</g>
+<g >
+<title>malloc (187,763,610 samples, 0.05%)</title><rect x="269.7" y="933" width="0.6" height="15.0" fill="rgb(216,145,3)" rx="2" ry="2" />
+<text  x="272.69" y="943.5" ></text>
+</g>
+<g >
+<title>unix_stream_sendmsg (273,845,304 samples, 0.07%)</title><rect x="19.3" y="677" width="0.9" height="15.0" fill="rgb(220,188,1)" rx="2" ry="2" />
+<text  x="22.31" y="687.5" ></text>
+</g>
+<g >
+<title>schedule (55,637,827 samples, 0.02%)</title><rect x="613.6" y="917" width="0.2" height="15.0" fill="rgb(213,40,0)" rx="2" ry="2" />
+<text  x="616.58" y="927.5" ></text>
+</g>
+<g >
+<title>[libxcb.so.1.1.0] (413,441,520 samples, 0.11%)</title><rect x="20.8" y="853" width="1.3" height="15.0" fill="rgb(238,171,32)" rx="2" ry="2" />
+<text  x="23.79" y="863.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (221,836,430 samples, 0.06%)</title><rect x="613.1" y="965" width="0.7" height="15.0" fill="rgb(252,225,36)" rx="2" ry="2" />
+<text  x="616.06" y="975.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (44,339,181 samples, 0.01%)</title><rect x="1147.9" y="821" width="0.1" height="15.0" fill="rgb(232,43,53)" rx="2" ry="2" />
+<text  x="1150.89" y="831.5" ></text>
+</g>
+<g >
+<title>__ppoll (1,550,822,169 samples, 0.42%)</title><rect x="819.5" y="885" width="4.9" height="15.0" fill="rgb(244,201,26)" rx="2" ry="2" />
+<text  x="822.45" y="895.5" ></text>
+</g>
+<g >
+<title>xfs_log_reserve (36,331,311 samples, 0.01%)</title><rect x="760.2" y="693" width="0.1" height="15.0" fill="rgb(217,152,6)" rx="2" ry="2" />
+<text  x="763.21" y="703.5" ></text>
+</g>
+<g >
+<title>xts_crypt (2,396,428,791 samples, 0.65%)</title><rect x="509.2" y="837" width="7.7" height="15.0" fill="rgb(237,71,48)" rx="2" ry="2" />
+<text  x="512.19" y="847.5" ></text>
+</g>
+<g >
+<title>isolate_migratepages_block (196,778,149 samples, 0.05%)</title><rect x="341.4" y="885" width="0.6" height="15.0" fill="rgb(225,149,9)" rx="2" ry="2" />
+<text  x="344.39" y="895.5" ></text>
+</g>
+<g >
+<title>raw_recv (231,081,755 samples, 0.06%)</title><rect x="658.0" y="885" width="0.7" height="15.0" fill="rgb(243,228,47)" rx="2" ry="2" />
+<text  x="660.95" y="895.5" ></text>
+</g>
+<g >
+<title>security_file_permission (41,317,591 samples, 0.01%)</title><rect x="658.2" y="773" width="0.1" height="15.0" fill="rgb(253,212,40)" rx="2" ry="2" />
+<text  x="661.18" y="783.5" ></text>
+</g>
+<g >
+<title>curl_msnprintf (41,850,616 samples, 0.01%)</title><rect x="668.1" y="709" width="0.1" height="15.0" fill="rgb(253,111,28)" rx="2" ry="2" />
+<text  x="671.07" y="719.5" ></text>
+</g>
+<g >
+<title>__folio_end_writeback (45,041,777 samples, 0.01%)</title><rect x="396.2" y="821" width="0.1" height="15.0" fill="rgb(221,131,13)" rx="2" ry="2" />
+<text  x="399.17" y="831.5" ></text>
+</g>
+<g >
+<title>__handle_irq_event_percpu (50,234,360 samples, 0.01%)</title><rect x="384.2" y="709" width="0.2" height="15.0" fill="rgb(242,137,41)" rx="2" ry="2" />
+<text  x="387.23" y="719.5" ></text>
+</g>
+<g >
+<title>[libcurl.so.4.8.0] (88,515,249 samples, 0.02%)</title><rect x="284.8" y="757" width="0.2" height="15.0" fill="rgb(217,151,30)" rx="2" ry="2" />
+<text  x="287.75" y="767.5" ></text>
+</g>
+<g >
+<title>__wake_up_common_lock (58,607,106 samples, 0.02%)</title><rect x="156.5" y="853" width="0.2" height="15.0" fill="rgb(215,19,25)" rx="2" ry="2" />
+<text  x="159.50" y="863.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (105,186,345 samples, 0.03%)</title><rect x="1178.9" y="597" width="0.4" height="15.0" fill="rgb(254,167,32)" rx="2" ry="2" />
+<text  x="1181.93" y="607.5" ></text>
+</g>
+<g >
+<title>xscreensaver (57,509,658 samples, 0.02%)</title><rect x="1189.8" y="981" width="0.2" height="15.0" fill="rgb(250,90,5)" rx="2" ry="2" />
+<text  x="1192.78" y="991.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (46,966,043 samples, 0.01%)</title><rect x="275.1" y="901" width="0.2" height="15.0" fill="rgb(241,192,34)" rx="2" ry="2" />
+<text  x="278.14" y="911.5" ></text>
+</g>
+<g >
+<title>__iwl_mvm_rs_tx_status (509,518,138 samples, 0.14%)</title><rect x="312.6" y="677" width="1.6" height="15.0" fill="rgb(228,114,19)" rx="2" ry="2" />
+<text  x="315.61" y="687.5" ></text>
+</g>
+<g >
+<title>ep_poll_callback (50,142,304 samples, 0.01%)</title><rect x="732.1" y="869" width="0.2" height="15.0" fill="rgb(216,13,40)" rx="2" ry="2" />
+<text  x="735.10" y="879.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (181,966,870 samples, 0.05%)</title><rect x="1177.8" y="453" width="0.6" height="15.0" fill="rgb(224,185,12)" rx="2" ry="2" />
+<text  x="1180.85" y="463.5" ></text>
+</g>
+<g >
+<title>process_one_work (263,472,694 samples, 0.07%)</title><rect x="387.3" y="917" width="0.9" height="15.0" fill="rgb(213,105,44)" rx="2" ry="2" />
+<text  x="390.30" y="927.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (51,800,024 samples, 0.01%)</title><rect x="739.0" y="629" width="0.2" height="15.0" fill="rgb(213,217,47)" rx="2" ry="2" />
+<text  x="741.99" y="639.5" ></text>
+</g>
+<g >
+<title>gtk_render_background (47,162,406 samples, 0.01%)</title><rect x="1173.8" y="469" width="0.2" height="15.0" fill="rgb(225,38,52)" rx="2" ry="2" />
+<text  x="1176.81" y="479.5" ></text>
+</g>
+<g >
+<title>__schedule (215,799,452 samples, 0.06%)</title><rect x="727.5" y="837" width="0.7" height="15.0" fill="rgb(247,154,24)" rx="2" ry="2" />
+<text  x="730.55" y="847.5" ></text>
+</g>
+<g >
+<title>qio_channel_readv_all (276,805,098 samples, 0.08%)</title><rect x="744.9" y="741" width="0.9" height="15.0" fill="rgb(253,169,43)" rx="2" ry="2" />
+<text  x="747.92" y="751.5" ></text>
+</g>
+<g >
+<title>__GI___pthread_mutex_unlock_usercnt (36,757,733 samples, 0.01%)</title><rect x="157.9" y="901" width="0.1" height="15.0" fill="rgb(250,93,2)" rx="2" ry="2" />
+<text  x="160.90" y="911.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (321,513,773 samples, 0.09%)</title><rect x="536.5" y="837" width="1.1" height="15.0" fill="rgb(248,169,37)" rx="2" ry="2" />
+<text  x="539.52" y="847.5" ></text>
+</g>
+<g >
+<title>[libglib-2.0.so.0.7303.0] (1,904,941,764 samples, 0.52%)</title><rect x="276.1" y="917" width="6.1" height="15.0" fill="rgb(235,196,38)" rx="2" ry="2" />
+<text  x="279.11" y="927.5" ></text>
+</g>
+<g >
+<title>g_main_context_check (586,664,381 samples, 0.16%)</title><rect x="277.0" y="901" width="1.9" height="15.0" fill="rgb(216,174,35)" rx="2" ry="2" />
+<text  x="280.00" y="911.5" ></text>
+</g>
+<g >
+<title>memset_erms (112,524,474 samples, 0.03%)</title><rect x="475.9" y="853" width="0.4" height="15.0" fill="rgb(245,95,29)" rx="2" ry="2" />
+<text  x="478.89" y="863.5" ></text>
+</g>
+<g >
+<title>xfs_end_ioend (367,474,732 samples, 0.10%)</title><rect x="389.1" y="885" width="1.2" height="15.0" fill="rgb(253,62,45)" rx="2" ry="2" />
+<text  x="392.09" y="895.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (1,351,726,658 samples, 0.37%)</title><rect x="659.7" y="693" width="4.3" height="15.0" fill="rgb(229,9,33)" rx="2" ry="2" />
+<text  x="662.68" y="703.5" ></text>
+</g>
+<g >
+<title>[libxul.so] (43,713,344 samples, 0.01%)</title><rect x="115.5" y="917" width="0.1" height="15.0" fill="rgb(219,5,47)" rx="2" ry="2" />
+<text  x="118.50" y="927.5" ></text>
+</g>
+<g >
+<title>eglMakeCurrent (44,508,058 samples, 0.01%)</title><rect x="152.7" y="933" width="0.2" height="15.0" fill="rgb(254,202,15)" rx="2" ry="2" />
+<text  x="155.71" y="943.5" ></text>
+</g>
+<g >
+<title>kernel_fpu_end (33,031,643 samples, 0.01%)</title><rect x="493.2" y="821" width="0.1" height="15.0" fill="rgb(230,212,52)" rx="2" ry="2" />
+<text  x="496.22" y="831.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (299,557,701 samples, 0.08%)</title><rect x="452.3" y="853" width="1.0" height="15.0" fill="rgb(219,95,30)" rx="2" ry="2" />
+<text  x="455.33" y="863.5" ></text>
+</g>
+<g >
+<title>handle_irq_event (132,792,967 samples, 0.04%)</title><rect x="895.8" y="805" width="0.4" height="15.0" fill="rgb(223,77,12)" rx="2" ry="2" />
+<text  x="898.80" y="815.5" ></text>
+</g>
+<g >
+<title>___pthread_cond_timedwait (64,361,249 samples, 0.02%)</title><rect x="118.2" y="917" width="0.2" height="15.0" fill="rgb(240,203,41)" rx="2" ry="2" />
+<text  x="121.21" y="927.5" ></text>
+</g>
+<g >
+<title>mozilla::detail::MutexImpl::lock (35,116,692 samples, 0.01%)</title><rect x="41.5" y="933" width="0.1" height="15.0" fill="rgb(241,135,45)" rx="2" ry="2" />
+<text  x="44.45" y="943.5" ></text>
+</g>
+<g >
+<title>[libEGL_mesa.so.0.0.0] (42,779,463 samples, 0.01%)</title><rect x="152.7" y="901" width="0.1" height="15.0" fill="rgb(233,37,50)" rx="2" ry="2" />
+<text  x="155.71" y="911.5" ></text>
+</g>
+<g >
+<title>aesni_xts_encrypt (650,658,091 samples, 0.18%)</title><rect x="527.9" y="821" width="2.0" height="15.0" fill="rgb(223,50,4)" rx="2" ry="2" />
+<text  x="530.85" y="831.5" ></text>
+</g>
+<g >
+<title>aesni_xts_encrypt (1,519,282,097 samples, 0.41%)</title><rect x="405.5" y="821" width="4.9" height="15.0" fill="rgb(214,154,0)" rx="2" ry="2" />
+<text  x="408.50" y="831.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (87,010,755 samples, 0.02%)</title><rect x="204.3" y="789" width="0.3" height="15.0" fill="rgb(206,10,25)" rx="2" ry="2" />
+<text  x="207.28" y="799.5" ></text>
+</g>
+<g >
+<title>kthread (7,484,666,583 samples, 2.04%)</title><rect x="479.0" y="949" width="24.1" height="15.0" fill="rgb(205,29,36)" rx="2" ry="2" />
+<text  x="482.01" y="959.5" >k..</text>
+</g>
+<g >
+<title>rcu_preempt_deferred_qs (107,773,434 samples, 0.03%)</title><rect x="918.2" y="853" width="0.4" height="15.0" fill="rgb(242,221,39)" rx="2" ry="2" />
+<text  x="921.21" y="863.5" ></text>
+</g>
+<g >
+<title>___sys_sendmsg (59,849,892 samples, 0.02%)</title><rect x="191.6" y="885" width="0.2" height="15.0" fill="rgb(207,22,39)" rx="2" ry="2" />
+<text  x="194.57" y="895.5" ></text>
+</g>
+<g >
+<title>tcp_sendmsg_locked (908,570,839 samples, 0.25%)</title><rect x="623.1" y="565" width="2.9" height="15.0" fill="rgb(241,85,42)" rx="2" ry="2" />
+<text  x="626.07" y="575.5" ></text>
+</g>
+<g >
+<title>update_load_avg (37,331,339 samples, 0.01%)</title><rect x="881.6" y="773" width="0.1" height="15.0" fill="rgb(246,146,13)" rx="2" ry="2" />
+<text  x="884.59" y="783.5" ></text>
+</g>
+<g >
+<title>do_sys_poll (111,402,807 samples, 0.03%)</title><rect x="276.4" y="837" width="0.3" height="15.0" fill="rgb(225,62,38)" rx="2" ry="2" />
+<text  x="279.38" y="847.5" ></text>
+</g>
+<g >
+<title>enqueue_hrtimer (98,442,684 samples, 0.03%)</title><rect x="651.3" y="613" width="0.3" height="15.0" fill="rgb(225,202,16)" rx="2" ry="2" />
+<text  x="654.25" y="623.5" ></text>
+</g>
+<g >
+<title>_int_memalign (73,244,025 samples, 0.02%)</title><rect x="747.7" y="757" width="0.2" height="15.0" fill="rgb(228,118,50)" rx="2" ry="2" />
+<text  x="750.68" y="767.5" ></text>
+</g>
+<g >
+<title>shmem_undo_range (200,501,840 samples, 0.05%)</title><rect x="378.1" y="789" width="0.6" height="15.0" fill="rgb(211,56,52)" rx="2" ry="2" />
+<text  x="381.06" y="799.5" ></text>
+</g>
+<g >
+<title>__xa_set_mark (315,969,514 samples, 0.09%)</title><rect x="718.0" y="725" width="1.0" height="15.0" fill="rgb(205,122,30)" rx="2" ry="2" />
+<text  x="720.97" y="735.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (44,866,786 samples, 0.01%)</title><rect x="702.7" y="645" width="0.2" height="15.0" fill="rgb(210,11,29)" rx="2" ry="2" />
+<text  x="705.73" y="655.5" ></text>
+</g>
+<g >
+<title>[libcrypto.so.3.0.5] (65,089,327 samples, 0.02%)</title><rect x="284.8" y="549" width="0.2" height="15.0" fill="rgb(236,145,24)" rx="2" ry="2" />
+<text  x="287.77" y="559.5" ></text>
+</g>
+<g >
+<title>dequeue_entity (158,193,150 samples, 0.04%)</title><rect x="821.6" y="741" width="0.5" height="15.0" fill="rgb(251,70,22)" rx="2" ry="2" />
+<text  x="824.56" y="751.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (53,912,365 samples, 0.01%)</title><rect x="204.4" y="773" width="0.2" height="15.0" fill="rgb(222,71,46)" rx="2" ry="2" />
+<text  x="207.38" y="783.5" ></text>
+</g>
+<g >
+<title>unix_stream_read_generic (246,385,003 samples, 0.07%)</title><rect x="228.4" y="869" width="0.8" height="15.0" fill="rgb(226,40,9)" rx="2" ry="2" />
+<text  x="231.44" y="879.5" ></text>
+</g>
+<g >
+<title>aesni_xts_encrypt (1,151,643,421 samples, 0.31%)</title><rect x="466.5" y="821" width="3.7" height="15.0" fill="rgb(213,155,10)" rx="2" ry="2" />
+<text  x="469.53" y="831.5" ></text>
+</g>
+<g >
+<title>[libglamoregl.so] (645,784,018 samples, 0.18%)</title><rect x="221.0" y="917" width="2.1" height="15.0" fill="rgb(227,135,21)" rx="2" ry="2" />
+<text  x="224.02" y="927.5" ></text>
+</g>
+<g >
+<title>bdrv_block_status_above (51,604,325 samples, 0.01%)</title><rect x="735.9" y="901" width="0.1" height="15.0" fill="rgb(225,150,34)" rx="2" ry="2" />
+<text  x="738.87" y="911.5" ></text>
+</g>
+<g >
+<title>ieee80211_deliver_skb (86,042,876 samples, 0.02%)</title><rect x="306.6" y="709" width="0.3" height="15.0" fill="rgb(227,119,42)" rx="2" ry="2" />
+<text  x="309.62" y="719.5" ></text>
+</g>
+<g >
+<title>__tcp_push_pending_frames (778,829,927 samples, 0.21%)</title><rect x="623.1" y="549" width="2.6" height="15.0" fill="rgb(214,58,30)" rx="2" ry="2" />
+<text  x="626.14" y="559.5" ></text>
+</g>
+<g >
+<title>[libglamoregl.so] (148,246,792 samples, 0.04%)</title><rect x="216.2" y="837" width="0.4" height="15.0" fill="rgb(211,152,33)" rx="2" ry="2" />
+<text  x="219.17" y="847.5" ></text>
+</g>
+<g >
+<title>kernel_fpu_begin_mask (147,455,350 samples, 0.04%)</title><rect x="470.2" y="821" width="0.5" height="15.0" fill="rgb(217,3,34)" rx="2" ry="2" />
+<text  x="473.25" y="831.5" ></text>
+</g>
+<g >
+<title>sock_recvmsg (61,488,472 samples, 0.02%)</title><rect x="228.2" y="885" width="0.2" height="15.0" fill="rgb(244,11,21)" rx="2" ry="2" />
+<text  x="231.23" y="895.5" ></text>
+</g>
+<g >
+<title>ipt_do_table (55,310,125 samples, 0.02%)</title><rect x="624.7" y="437" width="0.2" height="15.0" fill="rgb(205,99,32)" rx="2" ry="2" />
+<text  x="627.68" y="447.5" ></text>
+</g>
+<g >
+<title>wb_workfn (164,532,449 samples, 0.04%)</title><rect x="533.4" y="901" width="0.5" height="15.0" fill="rgb(227,3,20)" rx="2" ry="2" />
+<text  x="536.40" y="911.5" ></text>
+</g>
+<g >
+<title>__common_interrupt (50,883,307 samples, 0.01%)</title><rect x="384.2" y="757" width="0.2" height="15.0" fill="rgb(230,138,18)" rx="2" ry="2" />
+<text  x="387.23" y="767.5" ></text>
+</g>
+<g >
+<title>xlog_cil_commit (177,734,352 samples, 0.05%)</title><rect x="721.9" y="725" width="0.5" height="15.0" fill="rgb(208,133,3)" rx="2" ry="2" />
+<text  x="724.87" y="735.5" ></text>
+</g>
+<g >
+<title>kernel_fpu_begin_mask (72,537,927 samples, 0.02%)</title><rect x="529.9" y="821" width="0.3" height="15.0" fill="rgb(242,133,40)" rx="2" ry="2" />
+<text  x="532.95" y="831.5" ></text>
+</g>
+<g >
+<title>memcg_check_events (130,072,157 samples, 0.04%)</title><rect x="693.5" y="677" width="0.4" height="15.0" fill="rgb(211,26,19)" rx="2" ry="2" />
+<text  x="696.46" y="687.5" ></text>
+</g>
+<g >
+<title>[libcurl.so.4.8.0] (257,265,740 samples, 0.07%)</title><rect x="667.9" y="757" width="0.8" height="15.0" fill="rgb(228,48,35)" rx="2" ry="2" />
+<text  x="670.86" y="767.5" ></text>
+</g>
+<g >
+<title>schedule_idle (298,442,837 samples, 0.08%)</title><rect x="883.7" y="869" width="1.0" height="15.0" fill="rgb(225,220,32)" rx="2" ry="2" />
+<text  x="886.69" y="879.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (529,716,901 samples, 0.14%)</title><rect x="91.4" y="917" width="1.7" height="15.0" fill="rgb(209,107,1)" rx="2" ry="2" />
+<text  x="94.43" y="927.5" ></text>
+</g>
+<g >
+<title>__wake_up_common (53,675,473 samples, 0.01%)</title><rect x="732.1" y="885" width="0.2" height="15.0" fill="rgb(211,41,42)" rx="2" ry="2" />
+<text  x="735.09" y="895.5" ></text>
+</g>
+<g >
+<title>drm_mode_page_flip_ioctl (120,265,718 samples, 0.03%)</title><rect x="232.1" y="885" width="0.4" height="15.0" fill="rgb(249,30,9)" rx="2" ry="2" />
+<text  x="235.11" y="895.5" ></text>
+</g>
+<g >
+<title>simd_skcipher_encrypt (142,418,236 samples, 0.04%)</title><rect x="455.1" y="853" width="0.4" height="15.0" fill="rgb(217,116,18)" rx="2" ry="2" />
+<text  x="458.09" y="863.5" ></text>
+</g>
+<g >
+<title>__vdso_clock_gettime (31,567,409 samples, 0.01%)</title><rect x="101.9" y="885" width="0.1" height="15.0" fill="rgb(236,193,3)" rx="2" ry="2" />
+<text  x="104.91" y="895.5" ></text>
+</g>
+<g >
+<title>__writeback_inodes_wb (731,778,993 samples, 0.20%)</title><rect x="437.7" y="869" width="2.4" height="15.0" fill="rgb(209,189,25)" rx="2" ry="2" />
+<text  x="440.73" y="879.5" ></text>
+</g>
+<g >
+<title>mod_memcg_state (64,545,964 samples, 0.02%)</title><rect x="629.1" y="533" width="0.2" height="15.0" fill="rgb(226,113,25)" rx="2" ry="2" />
+<text  x="632.05" y="543.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (171,325,231 samples, 0.05%)</title><rect x="174.5" y="933" width="0.5" height="15.0" fill="rgb(233,163,41)" rx="2" ry="2" />
+<text  x="177.50" y="943.5" ></text>
+</g>
+<g >
+<title>mwait_idle_with_hints.constprop.0 (56,477,230,987 samples, 15.41%)</title><rect x="938.9" y="853" width="181.8" height="15.0" fill="rgb(220,22,54)" rx="2" ry="2" />
+<text  x="941.88" y="863.5" >mwait_idle_with_hints.c..</text>
+</g>
+<g >
+<title>update_sd_lb_stats.constprop.0 (45,260,731 samples, 0.01%)</title><rect x="653.6" y="533" width="0.2" height="15.0" fill="rgb(241,139,4)" rx="2" ry="2" />
+<text  x="656.61" y="543.5" ></text>
+</g>
+<g >
+<title>write_cb (167,954,856 samples, 0.05%)</title><rect x="641.6" y="693" width="0.6" height="15.0" fill="rgb(232,144,6)" rx="2" ry="2" />
+<text  x="644.61" y="703.5" ></text>
+</g>
+<g >
+<title>newidle_balance (124,632,724 samples, 0.03%)</title><rect x="13.5" y="757" width="0.4" height="15.0" fill="rgb(208,79,31)" rx="2" ry="2" />
+<text  x="16.49" y="767.5" ></text>
+</g>
+<g >
+<title>sched_clock_cpu (139,576,694 samples, 0.04%)</title><rect x="1123.3" y="869" width="0.4" height="15.0" fill="rgb(238,96,46)" rx="2" ry="2" />
+<text  x="1126.25" y="879.5" ></text>
+</g>
+<g >
+<title>command_substitute (43,710,601 samples, 0.01%)</title><rect x="243.4" y="485" width="0.2" height="15.0" fill="rgb(244,145,5)" rx="2" ry="2" />
+<text  x="246.42" y="495.5" ></text>
+</g>
+<g >
+<title>__rseq_handle_notify_resume (31,439,785 samples, 0.01%)</title><rect x="656.5" y="645" width="0.1" height="15.0" fill="rgb(244,72,2)" rx="2" ry="2" />
+<text  x="659.45" y="655.5" ></text>
+</g>
+<g >
+<title>simple_copy_to_iter (34,357,305 samples, 0.01%)</title><rect x="40.3" y="757" width="0.1" height="15.0" fill="rgb(235,46,28)" rx="2" ry="2" />
+<text  x="43.26" y="767.5" ></text>
+</g>
+<g >
+<title>inet_recvmsg (3,555,162,626 samples, 0.97%)</title><rect x="628.3" y="613" width="11.4" height="15.0" fill="rgb(248,206,52)" rx="2" ry="2" />
+<text  x="631.29" y="623.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (2,591,053,135 samples, 0.71%)</title><rect x="127.4" y="869" width="8.3" height="15.0" fill="rgb(225,26,44)" rx="2" ry="2" />
+<text  x="130.41" y="879.5" ></text>
+</g>
+<g >
+<title>iomap_finish_ioends (425,117,745 samples, 0.12%)</title><rect x="390.5" y="869" width="1.4" height="15.0" fill="rgb(220,166,29)" rx="2" ry="2" />
+<text  x="393.51" y="879.5" ></text>
+</g>
+<g >
+<title>qio_channel_readv_full_all_eof (126,911,784 samples, 0.03%)</title><rect x="738.3" y="709" width="0.4" height="15.0" fill="rgb(215,137,35)" rx="2" ry="2" />
+<text  x="741.32" y="719.5" ></text>
+</g>
+<g >
+<title>xas_load (189,285,910 samples, 0.05%)</title><rect x="697.9" y="693" width="0.6" height="15.0" fill="rgb(206,148,12)" rx="2" ry="2" />
+<text  x="700.87" y="703.5" ></text>
+</g>
+<g >
+<title>___pthread_mutex_lock (43,097,310 samples, 0.01%)</title><rect x="291.4" y="917" width="0.1" height="15.0" fill="rgb(215,34,47)" rx="2" ry="2" />
+<text  x="294.35" y="927.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (192,520,832 samples, 0.05%)</title><rect x="747.9" y="789" width="0.7" height="15.0" fill="rgb(243,86,29)" rx="2" ry="2" />
+<text  x="750.93" y="799.5" ></text>
+</g>
+<g >
+<title>[firefox] (99,841,483 samples, 0.03%)</title><rect x="171.0" y="933" width="0.3" height="15.0" fill="rgb(238,14,18)" rx="2" ry="2" />
+<text  x="174.02" y="943.5" ></text>
+</g>
+<g >
+<title>__mem_cgroup_flush_stats (1,162,540,145 samples, 0.32%)</title><rect x="674.7" y="725" width="3.7" height="15.0" fill="rgb(216,14,46)" rx="2" ry="2" />
+<text  x="677.69" y="735.5" ></text>
+</g>
+<g >
+<title>rcu_sched_clock_irq (219,214,066 samples, 0.06%)</title><rect x="908.8" y="741" width="0.7" height="15.0" fill="rgb(215,99,34)" rx="2" ry="2" />
+<text  x="911.78" y="751.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (37,181,789 samples, 0.01%)</title><rect x="209.6" y="885" width="0.1" height="15.0" fill="rgb(220,152,0)" rx="2" ry="2" />
+<text  x="212.60" y="895.5" ></text>
+</g>
+<g >
+<title>shrink_slab (3,774,404,248 samples, 1.03%)</title><rect x="370.5" y="885" width="12.1" height="15.0" fill="rgb(245,34,34)" rx="2" ry="2" />
+<text  x="373.47" y="895.5" ></text>
+</g>
+<g >
+<title>_find_next_bit (39,476,866 samples, 0.01%)</title><rect x="678.3" y="661" width="0.1" height="15.0" fill="rgb(225,2,49)" rx="2" ry="2" />
+<text  x="681.30" y="671.5" ></text>
+</g>
+<g >
+<title>__sys_recvmsg (547,236,998 samples, 0.15%)</title><rect x="39.0" y="885" width="1.8" height="15.0" fill="rgb(241,32,35)" rx="2" ry="2" />
+<text  x="42.00" y="895.5" ></text>
+</g>
+<g >
+<title>mem_cgroup_charge_statistics (63,080,269 samples, 0.02%)</title><rect x="754.4" y="661" width="0.2" height="15.0" fill="rgb(241,212,23)" rx="2" ry="2" />
+<text  x="757.36" y="671.5" ></text>
+</g>
+<g >
+<title>[[vdso]] (36,708,422 samples, 0.01%)</title><rect x="278.7" y="853" width="0.1" height="15.0" fill="rgb(230,95,5)" rx="2" ry="2" />
+<text  x="281.66" y="863.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (87,747,035 samples, 0.02%)</title><rect x="667.3" y="965" width="0.3" height="15.0" fill="rgb(208,28,40)" rx="2" ry="2" />
+<text  x="670.29" y="975.5" ></text>
+</g>
+<g >
+<title>release_pages (78,411,093 samples, 0.02%)</title><rect x="374.5" y="757" width="0.3" height="15.0" fill="rgb(207,31,25)" rx="2" ry="2" />
+<text  x="377.52" y="767.5" ></text>
+</g>
+<g >
+<title>[unknown] (38,976,064 samples, 0.01%)</title><rect x="154.7" y="965" width="0.1" height="15.0" fill="rgb(212,158,3)" rx="2" ry="2" />
+<text  x="157.70" y="975.5" ></text>
+</g>
+<g >
+<title>g_application_run (67,754,465 samples, 0.02%)</title><rect x="244.1" y="725" width="0.2" height="15.0" fill="rgb(245,166,5)" rx="2" ry="2" />
+<text  x="247.09" y="735.5" ></text>
+</g>
+<g >
+<title>[libcurl.so.4.8.0] (41,850,616 samples, 0.01%)</title><rect x="668.1" y="677" width="0.1" height="15.0" fill="rgb(234,53,18)" rx="2" ry="2" />
+<text  x="671.07" y="687.5" ></text>
+</g>
+<g >
+<title>load_new_mm_cr3 (162,497,081 samples, 0.04%)</title><rect x="1124.7" y="837" width="0.6" height="15.0" fill="rgb(215,92,23)" rx="2" ry="2" />
+<text  x="1127.74" y="847.5" ></text>
+</g>
+<g >
+<title>native_io_delay (270,927,574 samples, 0.07%)</title><rect x="340.2" y="805" width="0.8" height="15.0" fill="rgb(210,50,38)" rx="2" ry="2" />
+<text  x="343.15" y="815.5" ></text>
+</g>
+<g >
+<title>do_writepages (556,508,561 samples, 0.15%)</title><rect x="595.3" y="821" width="1.8" height="15.0" fill="rgb(241,83,4)" rx="2" ry="2" />
+<text  x="598.32" y="831.5" ></text>
+</g>
+<g >
+<title>[firefox] (39,195,274 samples, 0.01%)</title><rect x="44.0" y="901" width="0.1" height="15.0" fill="rgb(206,65,31)" rx="2" ry="2" />
+<text  x="46.98" y="911.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (81,857,573 samples, 0.02%)</title><rect x="1172.3" y="101" width="0.2" height="15.0" fill="rgb(225,85,19)" rx="2" ry="2" />
+<text  x="1175.27" y="111.5" ></text>
+</g>
+<g >
+<title>vfs_read (154,484,942 samples, 0.04%)</title><rect x="658.1" y="789" width="0.5" height="15.0" fill="rgb(212,212,0)" rx="2" ry="2" />
+<text  x="661.09" y="799.5" ></text>
+</g>
+<g >
+<title>i915_gem_execbuffer2_ioctl (235,238,935 samples, 0.06%)</title><rect x="144.1" y="709" width="0.7" height="15.0" fill="rgb(205,195,22)" rx="2" ry="2" />
+<text  x="147.08" y="719.5" ></text>
+</g>
+<g >
+<title>mozilla::detail::ConditionVariableImpl::wait (554,340,042 samples, 0.15%)</title><rect x="12.7" y="949" width="1.8" height="15.0" fill="rgb(252,88,26)" rx="2" ry="2" />
+<text  x="15.70" y="959.5" ></text>
+</g>
+<g >
+<title>percpu_counter_add_batch (36,578,902 samples, 0.01%)</title><rect x="390.9" y="789" width="0.1" height="15.0" fill="rgb(228,211,33)" rx="2" ry="2" />
+<text  x="393.90" y="799.5" ></text>
+</g>
+<g >
+<title>__GI___sched_yield (122,896,000 samples, 0.03%)</title><rect x="168.6" y="933" width="0.4" height="15.0" fill="rgb(251,81,3)" rx="2" ry="2" />
+<text  x="171.65" y="943.5" ></text>
+</g>
+<g >
+<title>alloc_skb_with_frags (37,818,896 samples, 0.01%)</title><rect x="93.7" y="805" width="0.2" height="15.0" fill="rgb(240,96,20)" rx="2" ry="2" />
+<text  x="96.73" y="815.5" ></text>
+</g>
+<g >
+<title>[firefox] (61,289,054 samples, 0.02%)</title><rect x="43.9" y="917" width="0.2" height="15.0" fill="rgb(221,217,47)" rx="2" ry="2" />
+<text  x="46.95" y="927.5" ></text>
+</g>
+<g >
+<title>malloc (37,790,796 samples, 0.01%)</title><rect x="24.3" y="917" width="0.1" height="15.0" fill="rgb(239,120,15)" rx="2" ry="2" />
+<text  x="27.31" y="927.5" ></text>
+</g>
+<g >
+<title>__dma_map_sg_attrs (192,777,477 samples, 0.05%)</title><rect x="246.0" y="789" width="0.6" height="15.0" fill="rgb(225,100,53)" rx="2" ry="2" />
+<text  x="249.00" y="799.5" ></text>
+</g>
+<g >
+<title>miValidateTree (32,965,459 samples, 0.01%)</title><rect x="214.2" y="901" width="0.1" height="15.0" fill="rgb(219,43,21)" rx="2" ry="2" />
+<text  x="217.15" y="911.5" ></text>
+</g>
+<g >
+<title>[libcurl.so.4.8.0] (152,832,734 samples, 0.04%)</title><rect x="617.1" y="773" width="0.5" height="15.0" fill="rgb(222,115,8)" rx="2" ry="2" />
+<text  x="620.07" y="783.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (50,608,982 samples, 0.01%)</title><rect x="1164.0" y="645" width="0.1" height="15.0" fill="rgb(225,101,17)" rx="2" ry="2" />
+<text  x="1166.98" y="655.5" ></text>
+</g>
+<g >
+<title>__memcpy_avx_unaligned_erms (32,544,754 samples, 0.01%)</title><rect x="266.2" y="949" width="0.1" height="15.0" fill="rgb(219,100,18)" rx="2" ry="2" />
+<text  x="269.16" y="959.5" ></text>
+</g>
+<g >
+<title>__mod_memcg_lruvec_state (38,196,355 samples, 0.01%)</title><rect x="755.1" y="677" width="0.1" height="15.0" fill="rgb(221,91,17)" rx="2" ry="2" />
+<text  x="758.05" y="687.5" ></text>
+</g>
+<g >
+<title>get_page_from_freelist (174,216,605 samples, 0.05%)</title><rect x="501.3" y="837" width="0.6" height="15.0" fill="rgb(211,62,19)" rx="2" ry="2" />
+<text  x="504.33" y="847.5" ></text>
+</g>
+<g >
+<title>crypt_iv_plain64_gen (122,795,302 samples, 0.03%)</title><rect x="441.5" y="869" width="0.4" height="15.0" fill="rgb(221,186,41)" rx="2" ry="2" />
+<text  x="444.52" y="879.5" ></text>
+</g>
+<g >
+<title>[libsoftokn3.so] (34,186,316 samples, 0.01%)</title><rect x="159.9" y="885" width="0.1" height="15.0" fill="rgb(248,135,51)" rx="2" ry="2" />
+<text  x="162.90" y="895.5" ></text>
+</g>
+<g >
+<title>__mod_node_page_state (100,485,767 samples, 0.03%)</title><rect x="716.1" y="693" width="0.3" height="15.0" fill="rgb(210,229,54)" rx="2" ry="2" />
+<text  x="719.07" y="703.5" ></text>
+</g>
+<g >
+<title>mempool_alloc (184,419,419 samples, 0.05%)</title><rect x="571.3" y="885" width="0.6" height="15.0" fill="rgb(242,158,18)" rx="2" ry="2" />
+<text  x="574.26" y="895.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (45,295,341 samples, 0.01%)</title><rect x="210.7" y="837" width="0.1" height="15.0" fill="rgb(252,168,14)" rx="2" ry="2" />
+<text  x="213.65" y="847.5" ></text>
+</g>
+<g >
+<title>___sys_recvmsg (34,253,545 samples, 0.01%)</title><rect x="744.7" y="629" width="0.1" height="15.0" fill="rgb(220,67,30)" rx="2" ry="2" />
+<text  x="747.72" y="639.5" ></text>
+</g>
+<g >
+<title>WRScene~ilder#1 (259,529,555 samples, 0.07%)</title><rect x="183.7" y="981" width="0.9" height="15.0" fill="rgb(216,208,37)" rx="2" ry="2" />
+<text  x="186.72" y="991.5" ></text>
+</g>
+<g >
+<title>do_iter_readv_writev (33,895,233 samples, 0.01%)</title><rect x="1165.3" y="645" width="0.1" height="15.0" fill="rgb(232,158,34)" rx="2" ry="2" />
+<text  x="1168.32" y="655.5" ></text>
+</g>
+<g >
+<title>elan_isr (530,423,290 samples, 0.14%)</title><rect x="339.3" y="901" width="1.7" height="15.0" fill="rgb(229,195,51)" rx="2" ry="2" />
+<text  x="342.34" y="911.5" ></text>
+</g>
+<g >
+<title>_aesni_enc4 (1,196,261,406 samples, 0.33%)</title><rect x="542.8" y="805" width="3.9" height="15.0" fill="rgb(205,31,9)" rx="2" ry="2" />
+<text  x="545.84" y="815.5" ></text>
+</g>
+<g >
+<title>xts_crypt (2,589,277,342 samples, 0.71%)</title><rect x="540.4" y="837" width="8.4" height="15.0" fill="rgb(251,25,36)" rx="2" ry="2" />
+<text  x="543.42" y="847.5" ></text>
+</g>
+<g >
+<title>xcb_send_request_with_fds64 (45,830,846 samples, 0.01%)</title><rect x="23.6" y="869" width="0.2" height="15.0" fill="rgb(238,105,5)" rx="2" ry="2" />
+<text  x="26.62" y="879.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (43,186,838 samples, 0.01%)</title><rect x="834.9" y="805" width="0.1" height="15.0" fill="rgb(225,117,29)" rx="2" ry="2" />
+<text  x="837.90" y="815.5" ></text>
+</g>
+<g >
+<title>kthread (536,466,717 samples, 0.15%)</title><rect x="339.3" y="949" width="1.8" height="15.0" fill="rgb(209,187,13)" rx="2" ry="2" />
+<text  x="342.34" y="959.5" ></text>
+</g>
+<g >
+<title>[libEGL.so.1.1.0] (46,504,440 samples, 0.01%)</title><rect x="146.7" y="933" width="0.1" height="15.0" fill="rgb(227,157,50)" rx="2" ry="2" />
+<text  x="149.69" y="943.5" ></text>
+</g>
+<g >
+<title>do_idle (16,590,031,889 samples, 4.53%)</title><rect x="832.0" y="885" width="53.4" height="15.0" fill="rgb(235,52,18)" rx="2" ry="2" />
+<text  x="834.97" y="895.5" >do_idle</text>
+</g>
+<g >
+<title>free (311,320,162 samples, 0.08%)</title><rect x="95.3" y="949" width="1.0" height="15.0" fill="rgb(249,117,4)" rx="2" ry="2" />
+<text  x="98.31" y="959.5" ></text>
+</g>
+<g >
+<title>xts_crypt (2,107,539,741 samples, 0.57%)</title><rect x="445.5" y="837" width="6.8" height="15.0" fill="rgb(216,46,9)" rx="2" ry="2" />
+<text  x="448.53" y="847.5" ></text>
+</g>
+<g >
+<title>__filemap_add_folio (556,428,310 samples, 0.15%)</title><rect x="754.0" y="709" width="1.8" height="15.0" fill="rgb(229,160,14)" rx="2" ry="2" />
+<text  x="757.03" y="719.5" ></text>
+</g>
+<g >
+<title>[libglib-2.0.so.0.7303.0] (61,737,628 samples, 0.02%)</title><rect x="1180.7" y="757" width="0.2" height="15.0" fill="rgb(250,107,9)" rx="2" ry="2" />
+<text  x="1183.74" y="767.5" ></text>
+</g>
+<g >
+<title>__schedule (37,146,068 samples, 0.01%)</title><rect x="351.7" y="901" width="0.1" height="15.0" fill="rgb(205,158,26)" rx="2" ry="2" />
+<text  x="354.70" y="911.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (144,827,832 samples, 0.04%)</title><rect x="212.4" y="789" width="0.5" height="15.0" fill="rgb(253,114,11)" rx="2" ry="2" />
+<text  x="215.40" y="799.5" ></text>
+</g>
+<g >
+<title>sysvec_call_function_single (86,122,209 samples, 0.02%)</title><rect x="915.6" y="853" width="0.3" height="15.0" fill="rgb(205,170,39)" rx="2" ry="2" />
+<text  x="918.63" y="863.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (634,423,838 samples, 0.17%)</title><rect x="221.1" y="885" width="2.0" height="15.0" fill="rgb(213,48,45)" rx="2" ry="2" />
+<text  x="224.06" y="895.5" ></text>
+</g>
+<g >
+<title>preempt_count_add (41,009,762 samples, 0.01%)</title><rect x="606.6" y="805" width="0.2" height="15.0" fill="rgb(233,220,4)" rx="2" ry="2" />
+<text  x="609.64" y="815.5" ></text>
+</g>
+<g >
+<title>syscall_return_via_sysret (46,606,858 samples, 0.01%)</title><rect x="824.3" y="869" width="0.1" height="15.0" fill="rgb(219,170,22)" rx="2" ry="2" />
+<text  x="827.29" y="879.5" ></text>
+</g>
+<g >
+<title>tcp_v6_rcv (369,211,319 samples, 0.10%)</title><rect x="660.8" y="469" width="1.2" height="15.0" fill="rgb(224,169,25)" rx="2" ry="2" />
+<text  x="663.84" y="479.5" ></text>
+</g>
+<g >
+<title>xts_crypt (1,814,384,388 samples, 0.49%)</title><rect x="601.8" y="837" width="5.8" height="15.0" fill="rgb(215,48,43)" rx="2" ry="2" />
+<text  x="604.76" y="847.5" ></text>
+</g>
+<g >
+<title>hrtimer_active (36,395,521 samples, 0.01%)</title><rect x="1156.8" y="837" width="0.1" height="15.0" fill="rgb(252,144,37)" rx="2" ry="2" />
+<text  x="1159.75" y="847.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (46,496,641 samples, 0.01%)</title><rect x="210.6" y="869" width="0.2" height="15.0" fill="rgb(230,172,54)" rx="2" ry="2" />
+<text  x="213.65" y="879.5" ></text>
+</g>
+<g >
+<title>sock_write_iter (33,188,954 samples, 0.01%)</title><rect x="1165.3" y="629" width="0.1" height="15.0" fill="rgb(253,41,5)" rx="2" ry="2" />
+<text  x="1168.32" y="639.5" ></text>
+</g>
+<g >
+<title>git (206,540,761 samples, 0.06%)</title><rect x="285.2" y="981" width="0.7" height="15.0" fill="rgb(239,137,50)" rx="2" ry="2" />
+<text  x="288.20" y="991.5" ></text>
+</g>
+<g >
+<title>__hrtimer_run_queues (182,443,330 samples, 0.05%)</title><rect x="813.7" y="773" width="0.6" height="15.0" fill="rgb(250,76,30)" rx="2" ry="2" />
+<text  x="816.73" y="783.5" ></text>
+</g>
+<g >
+<title>__clone3 (21,289,425,716 samples, 5.81%)</title><rect x="750.3" y="965" width="68.5" height="15.0" fill="rgb(221,222,30)" rx="2" ry="2" />
+<text  x="753.31" y="975.5" >__clone3</text>
+</g>
+<g >
+<title>percpu_counter_add_batch (69,293,517 samples, 0.02%)</title><rect x="383.6" y="789" width="0.2" height="15.0" fill="rgb(250,176,29)" rx="2" ry="2" />
+<text  x="386.59" y="799.5" ></text>
+</g>
+<g >
+<title>dequeue_task_rt (33,442,426 samples, 0.01%)</title><rect x="733.9" y="853" width="0.1" height="15.0" fill="rgb(218,42,22)" rx="2" ry="2" />
+<text  x="736.87" y="863.5" ></text>
+</g>
+<g >
+<title>gtk_container_propagate_draw (176,465,140 samples, 0.05%)</title><rect x="1177.9" y="389" width="0.5" height="15.0" fill="rgb(234,62,33)" rx="2" ry="2" />
+<text  x="1180.86" y="399.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (1,664,012,058 samples, 0.45%)</title><rect x="899.6" y="837" width="5.3" height="15.0" fill="rgb(244,52,5)" rx="2" ry="2" />
+<text  x="902.57" y="847.5" ></text>
+</g>
+<g >
+<title>xfs_end_ioend (229,790,435 samples, 0.06%)</title><rect x="392.0" y="885" width="0.7" height="15.0" fill="rgb(243,68,2)" rx="2" ry="2" />
+<text  x="394.96" y="895.5" ></text>
+</g>
+<g >
+<title>__sys_sendmsg (665,252,020 samples, 0.18%)</title><rect x="46.8" y="901" width="2.1" height="15.0" fill="rgb(216,139,53)" rx="2" ry="2" />
+<text  x="49.80" y="911.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (132,292,899 samples, 0.04%)</title><rect x="571.3" y="853" width="0.4" height="15.0" fill="rgb(248,169,22)" rx="2" ry="2" />
+<text  x="574.30" y="863.5" ></text>
+</g>
+<g >
+<title>HASH_Create (52,023,253 samples, 0.01%)</title><rect x="159.9" y="949" width="0.1" height="15.0" fill="rgb(216,216,15)" rx="2" ry="2" />
+<text  x="162.86" y="959.5" ></text>
+</g>
+<g >
+<title>__tls_get_addr (124,531,798 samples, 0.03%)</title><rect x="94.2" y="949" width="0.4" height="15.0" fill="rgb(247,59,44)" rx="2" ry="2" />
+<text  x="97.20" y="959.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (69,365,852 samples, 0.02%)</title><rect x="214.8" y="789" width="0.2" height="15.0" fill="rgb(227,82,13)" rx="2" ry="2" />
+<text  x="217.78" y="799.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (422,932,552 samples, 0.12%)</title><rect x="756.7" y="709" width="1.3" height="15.0" fill="rgb(240,111,19)" rx="2" ry="2" />
+<text  x="759.68" y="719.5" ></text>
+</g>
+<g >
+<title>cgroup_rstat_flush_locked (187,558,812 samples, 0.05%)</title><rect x="352.2" y="853" width="0.6" height="15.0" fill="rgb(225,169,23)" rx="2" ry="2" />
+<text  x="355.23" y="863.5" ></text>
+</g>
+<g >
+<title>i915_request_retire.part.0 (64,164,187 samples, 0.02%)</title><rect x="395.9" y="885" width="0.2" height="15.0" fill="rgb(239,93,15)" rx="2" ry="2" />
+<text  x="398.94" y="895.5" ></text>
+</g>
+<g >
+<title>add_wait_queue (63,926,984 samples, 0.02%)</title><rect x="726.9" y="853" width="0.2" height="15.0" fill="rgb(230,138,31)" rx="2" ry="2" />
+<text  x="729.93" y="863.5" ></text>
+</g>
+<g >
+<title>iv_of_dmreq (328,885,640 samples, 0.09%)</title><rect x="415.9" y="869" width="1.0" height="15.0" fill="rgb(238,3,5)" rx="2" ry="2" />
+<text  x="418.87" y="879.5" ></text>
+</g>
+<g >
+<title>[libEGL_mesa.so.0.0.0] (130,410,579 samples, 0.04%)</title><rect x="1165.5" y="837" width="0.4" height="15.0" fill="rgb(252,116,20)" rx="2" ry="2" />
+<text  x="1168.53" y="847.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (296,928,550 samples, 0.08%)</title><rect x="392.7" y="965" width="1.0" height="15.0" fill="rgb(230,100,5)" rx="2" ry="2" />
+<text  x="395.72" y="975.5" ></text>
+</g>
+<g >
+<title>____sys_recvmsg (43,120,710 samples, 0.01%)</title><rect x="277.4" y="693" width="0.1" height="15.0" fill="rgb(246,58,54)" rx="2" ry="2" />
+<text  x="280.40" y="703.5" ></text>
+</g>
+<g >
+<title>lapic_next_deadline (46,165,504 samples, 0.01%)</title><rect x="1156.6" y="821" width="0.2" height="15.0" fill="rgb(249,123,41)" rx="2" ry="2" />
+<text  x="1159.60" y="831.5" ></text>
+</g>
+<g >
+<title>ProcessInputEvents (40,242,044 samples, 0.01%)</title><rect x="199.4" y="949" width="0.1" height="15.0" fill="rgb(239,218,39)" rx="2" ry="2" />
+<text  x="202.42" y="959.5" ></text>
+</g>
+<g >
+<title>g_signal_emit_valist (40,324,338 samples, 0.01%)</title><rect x="1179.9" y="773" width="0.1" height="15.0" fill="rgb(245,98,22)" rx="2" ry="2" />
+<text  x="1182.89" y="783.5" ></text>
+</g>
+<g >
+<title>xcb_flush (51,555,676 samples, 0.01%)</title><rect x="1165.3" y="805" width="0.2" height="15.0" fill="rgb(222,80,0)" rx="2" ry="2" />
+<text  x="1168.31" y="815.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (41,761,845 samples, 0.01%)</title><rect x="25.9" y="901" width="0.1" height="15.0" fill="rgb(226,126,38)" rx="2" ry="2" />
+<text  x="28.90" y="911.5" ></text>
+</g>
+<g >
+<title>tick_check_oneshot_broadcast_this_cpu (39,635,109 samples, 0.01%)</title><rect x="914.8" y="805" width="0.1" height="15.0" fill="rgb(253,157,8)" rx="2" ry="2" />
+<text  x="917.78" y="815.5" ></text>
+</g>
+<g >
+<title>miCopyRegion (33,654,069 samples, 0.01%)</title><rect x="213.7" y="885" width="0.2" height="15.0" fill="rgb(240,12,26)" rx="2" ry="2" />
+<text  x="216.75" y="895.5" ></text>
+</g>
+<g >
+<title>sock_sendmsg (293,078,867 samples, 0.08%)</title><rect x="19.2" y="693" width="1.0" height="15.0" fill="rgb(224,0,13)" rx="2" ry="2" />
+<text  x="22.25" y="703.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rt_sigaction (96,268,130 samples, 0.03%)</title><rect x="647.8" y="709" width="0.3" height="15.0" fill="rgb(244,129,44)" rx="2" ry="2" />
+<text  x="650.78" y="719.5" ></text>
+</g>
+<g >
+<title>execute_command_internal (49,280,152 samples, 0.01%)</title><rect x="243.4" y="725" width="0.2" height="15.0" fill="rgb(252,183,31)" rx="2" ry="2" />
+<text  x="246.42" y="735.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (58,694,117 samples, 0.02%)</title><rect x="717.7" y="709" width="0.2" height="15.0" fill="rgb(215,49,50)" rx="2" ry="2" />
+<text  x="720.71" y="719.5" ></text>
+</g>
+<g >
+<title>syscall (79,580,820 samples, 0.02%)</title><rect x="145.8" y="933" width="0.2" height="15.0" fill="rgb(233,168,50)" rx="2" ry="2" />
+<text  x="148.79" y="943.5" ></text>
+</g>
+<g >
+<title>iwl_mvm_set_tx_cmd (46,061,548 samples, 0.01%)</title><rect x="633.7" y="357" width="0.2" height="15.0" fill="rgb(206,126,41)" rx="2" ry="2" />
+<text  x="636.72" y="367.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (146,349,421 samples, 0.04%)</title><rect x="134.3" y="821" width="0.5" height="15.0" fill="rgb(205,199,0)" rx="2" ry="2" />
+<text  x="137.31" y="831.5" ></text>
+</g>
+<g >
+<title>__softirqentry_text_start (1,502,084,749 samples, 0.41%)</title><rect x="899.8" y="821" width="4.8" height="15.0" fill="rgb(240,38,0)" rx="2" ry="2" />
+<text  x="902.79" y="831.5" ></text>
+</g>
+<g >
+<title>xfs_vm_writepages (148,240,118 samples, 0.04%)</title><rect x="612.5" y="805" width="0.5" height="15.0" fill="rgb(222,220,52)" rx="2" ry="2" />
+<text  x="615.55" y="815.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (615,044,355 samples, 0.17%)</title><rect x="559.4" y="837" width="2.0" height="15.0" fill="rgb(236,202,11)" rx="2" ry="2" />
+<text  x="562.41" y="847.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (38,236,187 samples, 0.01%)</title><rect x="678.5" y="757" width="0.1" height="15.0" fill="rgb(251,55,36)" rx="2" ry="2" />
+<text  x="681.51" y="767.5" ></text>
+</g>
+<g >
+<title>g_main_context_dispatch (39,096,757 samples, 0.01%)</title><rect x="1185.5" y="901" width="0.2" height="15.0" fill="rgb(210,210,18)" rx="2" ry="2" />
+<text  x="1188.55" y="911.5" ></text>
+</g>
+<g >
+<title>iv_of_dmreq (273,186,064 samples, 0.07%)</title><rect x="435.4" y="869" width="0.9" height="15.0" fill="rgb(236,202,38)" rx="2" ry="2" />
+<text  x="438.42" y="879.5" ></text>
+</g>
+<g >
+<title>newidle_balance (34,225,979 samples, 0.01%)</title><rect x="395.5" y="869" width="0.1" height="15.0" fill="rgb(215,108,4)" rx="2" ry="2" />
+<text  x="398.52" y="879.5" ></text>
+</g>
+<g >
+<title>sock_sendmsg (72,955,058 samples, 0.02%)</title><rect x="1189.2" y="853" width="0.3" height="15.0" fill="rgb(228,39,35)" rx="2" ry="2" />
+<text  x="1192.23" y="863.5" ></text>
+</g>
+<g >
+<title>irq_work_needs_cpu (154,102,508 samples, 0.04%)</title><rect x="1143.8" y="853" width="0.5" height="15.0" fill="rgb(236,109,21)" rx="2" ry="2" />
+<text  x="1146.76" y="863.5" ></text>
+</g>
+<g >
+<title>update_blocked_averages (39,627,444 samples, 0.01%)</title><rect x="292.5" y="773" width="0.1" height="15.0" fill="rgb(208,6,7)" rx="2" ry="2" />
+<text  x="295.46" y="783.5" ></text>
+</g>
+<g >
+<title>nohz_run_idle_balance (65,323,436 samples, 0.02%)</title><rect x="1145.1" y="901" width="0.2" height="15.0" fill="rgb(248,92,29)" rx="2" ry="2" />
+<text  x="1148.10" y="911.5" ></text>
+</g>
+<g >
+<title>moz_xmalloc (46,257,459 samples, 0.01%)</title><rect x="42.4" y="933" width="0.2" height="15.0" fill="rgb(246,199,23)" rx="2" ry="2" />
+<text  x="45.44" y="943.5" ></text>
+</g>
+<g >
+<title>___pthread_mutex_lock (32,334,915 samples, 0.01%)</title><rect x="170.2" y="949" width="0.1" height="15.0" fill="rgb(251,160,37)" rx="2" ry="2" />
+<text  x="173.16" y="959.5" ></text>
+</g>
+<g >
+<title>[firefox] (32,711,970 samples, 0.01%)</title><rect x="277.6" y="757" width="0.1" height="15.0" fill="rgb(223,58,52)" rx="2" ry="2" />
+<text  x="280.57" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (266,361,313 samples, 0.07%)</title><rect x="50.9" y="901" width="0.9" height="15.0" fill="rgb(239,202,52)" rx="2" ry="2" />
+<text  x="53.92" y="911.5" ></text>
+</g>
+<g >
+<title>schedule (318,605,734 samples, 0.09%)</title><rect x="230.1" y="885" width="1.0" height="15.0" fill="rgb(248,184,43)" rx="2" ry="2" />
+<text  x="233.09" y="895.5" ></text>
+</g>
+<g >
+<title>futex_wake (68,751,687 samples, 0.02%)</title><rect x="749.2" y="629" width="0.2" height="15.0" fill="rgb(221,67,4)" rx="2" ry="2" />
+<text  x="752.16" y="639.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (37,254,339 samples, 0.01%)</title><rect x="915.6" y="837" width="0.2" height="15.0" fill="rgb(235,5,17)" rx="2" ry="2" />
+<text  x="918.64" y="847.5" ></text>
+</g>
+<g >
+<title>[libgdk-3.so.0.2404.30] (718,810,815 samples, 0.20%)</title><rect x="1177.7" y="853" width="2.3" height="15.0" fill="rgb(221,193,39)" rx="2" ry="2" />
+<text  x="1180.72" y="863.5" ></text>
+</g>
+<g >
+<title>__x64_sys_futex (61,140,752 samples, 0.02%)</title><rect x="104.3" y="885" width="0.2" height="15.0" fill="rgb(212,217,34)" rx="2" ry="2" />
+<text  x="107.29" y="895.5" ></text>
+</g>
+<g >
+<title>__fget_light (47,887,771 samples, 0.01%)</title><rect x="40.6" y="853" width="0.2" height="15.0" fill="rgb(206,106,54)" rx="2" ry="2" />
+<text  x="43.61" y="863.5" ></text>
+</g>
+<g >
+<title>__x64_sys_ioctl (312,716,456 samples, 0.09%)</title><rect x="132.8" y="757" width="1.0" height="15.0" fill="rgb(254,205,20)" rx="2" ry="2" />
+<text  x="135.77" y="767.5" ></text>
+</g>
+<g >
+<title>dequeue_task_fair (35,138,087 samples, 0.01%)</title><rect x="51.1" y="773" width="0.1" height="15.0" fill="rgb(215,161,2)" rx="2" ry="2" />
+<text  x="54.07" y="783.5" ></text>
+</g>
+<g >
+<title>uncharge_batch (70,388,290 samples, 0.02%)</title><rect x="342.2" y="837" width="0.3" height="15.0" fill="rgb(229,113,22)" rx="2" ry="2" />
+<text  x="345.24" y="847.5" ></text>
+</g>
+<g >
+<title>vfs_write (42,730,031 samples, 0.01%)</title><rect x="735.0" y="917" width="0.1" height="15.0" fill="rgb(233,150,35)" rx="2" ry="2" />
+<text  x="737.98" y="927.5" ></text>
+</g>
+<g >
+<title>curl_mvaprintf (50,137,492 samples, 0.01%)</title><rect x="643.6" y="709" width="0.1" height="15.0" fill="rgb(222,96,3)" rx="2" ry="2" />
+<text  x="646.56" y="719.5" ></text>
+</g>
+<g >
+<title>schedule (621,565,031 samples, 0.17%)</title><rect x="821.2" y="789" width="2.0" height="15.0" fill="rgb(218,41,40)" rx="2" ry="2" />
+<text  x="824.20" y="799.5" ></text>
+</g>
+<g >
+<title>balance_dirty_pages (1,206,117,157 samples, 0.33%)</title><rect x="674.6" y="757" width="3.9" height="15.0" fill="rgb(231,74,46)" rx="2" ry="2" />
+<text  x="677.63" y="767.5" ></text>
+</g>
+<g >
+<title>xfs_end_io (47,825,313 samples, 0.01%)</title><rect x="396.2" y="901" width="0.1" height="15.0" fill="rgb(227,204,6)" rx="2" ry="2" />
+<text  x="399.16" y="911.5" ></text>
+</g>
+<g >
+<title>qio_channel_readv_full_all_eof (158,732,080 samples, 0.04%)</title><rect x="748.0" y="741" width="0.6" height="15.0" fill="rgb(221,40,28)" rx="2" ry="2" />
+<text  x="751.04" y="751.5" ></text>
+</g>
+<g >
+<title>__mod_memcg_lruvec_state (43,992,128 samples, 0.01%)</title><rect x="438.2" y="709" width="0.1" height="15.0" fill="rgb(238,207,22)" rx="2" ry="2" />
+<text  x="441.21" y="719.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (104,961,392 samples, 0.03%)</title><rect x="1172.3" y="181" width="0.3" height="15.0" fill="rgb(254,148,9)" rx="2" ry="2" />
+<text  x="1175.25" y="191.5" ></text>
+</g>
+<g >
+<title>unix_stream_sendmsg (69,124,444 samples, 0.02%)</title><rect x="1189.2" y="837" width="0.3" height="15.0" fill="rgb(221,135,52)" rx="2" ry="2" />
+<text  x="1192.25" y="847.5" ></text>
+</g>
+<g >
+<title>__x64_sys_poll (656,974,544 samples, 0.18%)</title><rect x="1182.6" y="933" width="2.1" height="15.0" fill="rgb(253,172,15)" rx="2" ry="2" />
+<text  x="1185.58" y="943.5" ></text>
+</g>
+<g >
+<title>[libdbus-1.so.3.32.0] (55,685,078 samples, 0.02%)</title><rect x="279.4" y="853" width="0.2" height="15.0" fill="rgb(227,191,45)" rx="2" ry="2" />
+<text  x="282.42" y="863.5" ></text>
+</g>
+<g >
+<title>memset_erms (71,987,563 samples, 0.02%)</title><rect x="441.7" y="853" width="0.2" height="15.0" fill="rgb(237,228,31)" rx="2" ry="2" />
+<text  x="444.69" y="863.5" ></text>
+</g>
+<g >
+<title>futex_wake (58,900,351 samples, 0.02%)</title><rect x="104.3" y="853" width="0.2" height="15.0" fill="rgb(233,150,2)" rx="2" ry="2" />
+<text  x="107.30" y="863.5" ></text>
+</g>
+<g >
+<title>[libX11.so.6.4.0] (283,164,231 samples, 0.08%)</title><rect x="279.9" y="821" width="0.9" height="15.0" fill="rgb(206,203,42)" rx="2" ry="2" />
+<text  x="282.90" y="831.5" ></text>
+</g>
+<g >
+<title>pixman_rasterize_edges (168,400,552 samples, 0.05%)</title><rect x="218.6" y="901" width="0.6" height="15.0" fill="rgb(214,165,43)" rx="2" ry="2" />
+<text  x="221.61" y="911.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (475,213,442 samples, 0.13%)</title><rect x="143.4" y="837" width="1.5" height="15.0" fill="rgb(218,84,24)" rx="2" ry="2" />
+<text  x="146.41" y="847.5" ></text>
+</g>
+<g >
+<title>_int_malloc (44,915,497 samples, 0.01%)</title><rect x="643.9" y="725" width="0.1" height="15.0" fill="rgb(241,198,33)" rx="2" ry="2" />
+<text  x="646.85" y="735.5" ></text>
+</g>
+<g >
+<title>process_one_work (6,800,855,885 samples, 1.86%)</title><rect x="398.3" y="917" width="21.8" height="15.0" fill="rgb(234,175,46)" rx="2" ry="2" />
+<text  x="401.26" y="927.5" >p..</text>
+</g>
+<g >
+<title>simd_skcipher_encrypt (123,072,963 samples, 0.03%)</title><rect x="474.3" y="853" width="0.4" height="15.0" fill="rgb(235,17,9)" rx="2" ry="2" />
+<text  x="477.26" y="863.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow_list (196,443,003 samples, 0.05%)</title><rect x="320.9" y="677" width="0.6" height="15.0" fill="rgb(208,45,53)" rx="2" ry="2" />
+<text  x="323.86" y="687.5" ></text>
+</g>
+<g >
+<title>i915_gem_do_execbuffer (228,086,755 samples, 0.06%)</title><rect x="144.1" y="693" width="0.7" height="15.0" fill="rgb(237,64,35)" rx="2" ry="2" />
+<text  x="147.10" y="703.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (142,207,728 samples, 0.04%)</title><rect x="476.3" y="853" width="0.5" height="15.0" fill="rgb(223,58,21)" rx="2" ry="2" />
+<text  x="479.33" y="863.5" ></text>
+</g>
+<g >
+<title>__x64_sys_madvise (32,543,263 samples, 0.01%)</title><rect x="268.7" y="869" width="0.1" height="15.0" fill="rgb(229,9,10)" rx="2" ry="2" />
+<text  x="271.71" y="879.5" ></text>
+</g>
+<g >
+<title>[libxul.so] (120,356,338 samples, 0.03%)</title><rect x="264.4" y="933" width="0.4" height="15.0" fill="rgb(210,63,14)" rx="2" ry="2" />
+<text  x="267.39" y="943.5" ></text>
+</g>
+<g >
+<title>__libc_pwrite64 (3,140,995,910 samples, 0.86%)</title><rect x="750.5" y="869" width="10.1" height="15.0" fill="rgb(246,224,22)" rx="2" ry="2" />
+<text  x="753.50" y="879.5" ></text>
+</g>
+<g >
+<title>__GI___ioctl (37,073,235 samples, 0.01%)</title><rect x="132.3" y="789" width="0.1" height="15.0" fill="rgb(222,204,49)" rx="2" ry="2" />
+<text  x="135.25" y="799.5" ></text>
+</g>
+<g >
+<title>crypt_convert (2,563,854,749 samples, 0.70%)</title><rect x="524.8" y="885" width="8.3" height="15.0" fill="rgb(226,182,36)" rx="2" ry="2" />
+<text  x="527.82" y="895.5" ></text>
+</g>
+<g >
+<title>crypt_page_alloc (245,990,444 samples, 0.07%)</title><rect x="417.9" y="869" width="0.8" height="15.0" fill="rgb(229,92,1)" rx="2" ry="2" />
+<text  x="420.87" y="879.5" ></text>
+</g>
+<g >
+<title>[libglapi.so.0.0.0] (93,029,907 samples, 0.03%)</title><rect x="225.7" y="965" width="0.3" height="15.0" fill="rgb(236,74,9)" rx="2" ry="2" />
+<text  x="228.66" y="975.5" ></text>
+</g>
+<g >
+<title>sock_sendmsg (943,931,326 samples, 0.26%)</title><rect x="623.0" y="597" width="3.0" height="15.0" fill="rgb(240,141,50)" rx="2" ry="2" />
+<text  x="625.95" y="607.5" ></text>
+</g>
+<g >
+<title>obj_cgroup_charge (82,653,099 samples, 0.02%)</title><rect x="239.3" y="757" width="0.3" height="15.0" fill="rgb(215,35,48)" rx="2" ry="2" />
+<text  x="242.31" y="767.5" ></text>
+</g>
+<g >
+<title>__mod_lruvec_page_state (45,955,152 samples, 0.01%)</title><rect x="418.9" y="725" width="0.1" height="15.0" fill="rgb(227,133,51)" rx="2" ry="2" />
+<text  x="421.89" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_poll (680,803,828 samples, 0.19%)</title><rect x="726.1" y="901" width="2.2" height="15.0" fill="rgb(244,109,9)" rx="2" ry="2" />
+<text  x="729.06" y="911.5" ></text>
+</g>
+<g >
+<title>__sys_recvfrom (43,140,534 samples, 0.01%)</title><rect x="667.4" y="917" width="0.1" height="15.0" fill="rgb(228,35,32)" rx="2" ry="2" />
+<text  x="670.39" y="927.5" ></text>
+</g>
+<g >
+<title>__libc_poll (37,230,112 samples, 0.01%)</title><rect x="191.3" y="949" width="0.1" height="15.0" fill="rgb(237,15,33)" rx="2" ry="2" />
+<text  x="194.28" y="959.5" ></text>
+</g>
+<g >
+<title>moz_xmalloc (199,255,941 samples, 0.05%)</title><rect x="36.9" y="949" width="0.6" height="15.0" fill="rgb(243,174,44)" rx="2" ry="2" />
+<text  x="39.87" y="959.5" ></text>
+</g>
+<g >
+<title>WebExtensions (2,031,467,597 samples, 0.55%)</title><rect x="187.5" y="981" width="6.5" height="15.0" fill="rgb(205,82,51)" rx="2" ry="2" />
+<text  x="190.51" y="991.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (2,900,676,753 samples, 0.79%)</title><rect x="736.5" y="805" width="9.3" height="15.0" fill="rgb(206,229,43)" rx="2" ry="2" />
+<text  x="739.50" y="815.5" ></text>
+</g>
+<g >
+<title>xfs_vm_writepages (639,404,275 samples, 0.17%)</title><rect x="476.9" y="805" width="2.1" height="15.0" fill="rgb(237,206,17)" rx="2" ry="2" />
+<text  x="479.90" y="815.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (520,545,064 samples, 0.14%)</title><rect x="119.8" y="901" width="1.7" height="15.0" fill="rgb(211,9,9)" rx="2" ry="2" />
+<text  x="122.80" y="911.5" ></text>
+</g>
+<g >
+<title>[git-remote-http] (93,975,502 samples, 0.03%)</title><rect x="284.8" y="821" width="0.3" height="15.0" fill="rgb(252,222,28)" rx="2" ry="2" />
+<text  x="287.75" y="831.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (65,504,724 samples, 0.02%)</title><rect x="1171.7" y="229" width="0.2" height="15.0" fill="rgb(231,182,47)" rx="2" ry="2" />
+<text  x="1174.71" y="239.5" ></text>
+</g>
+<g >
+<title>irqentry_exit (74,373,242 samples, 0.02%)</title><rect x="899.1" y="853" width="0.3" height="15.0" fill="rgb(210,26,47)" rx="2" ry="2" />
+<text  x="902.12" y="863.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (403,021,571 samples, 0.11%)</title><rect x="1178.7" y="805" width="1.3" height="15.0" fill="rgb(209,96,46)" rx="2" ry="2" />
+<text  x="1181.73" y="815.5" ></text>
+</g>
+<g >
+<title>__entry_text_start (35,026,046 samples, 0.01%)</title><rect x="295.4" y="901" width="0.2" height="15.0" fill="rgb(211,77,25)" rx="2" ry="2" />
+<text  x="298.44" y="911.5" ></text>
+</g>
+<g >
+<title>__libc_start_main_alias_2 (70,403,096 samples, 0.02%)</title><rect x="830.4" y="949" width="0.2" height="15.0" fill="rgb(249,147,18)" rx="2" ry="2" />
+<text  x="833.39" y="959.5" ></text>
+</g>
+<g >
+<title>[libspa-audioconvert.so] (36,151,297 samples, 0.01%)</title><rect x="732.9" y="885" width="0.1" height="15.0" fill="rgb(216,89,31)" rx="2" ry="2" />
+<text  x="735.91" y="895.5" ></text>
+</g>
+<g >
+<title>xas_start (34,248,675 samples, 0.01%)</title><rect x="718.6" y="693" width="0.1" height="15.0" fill="rgb(226,21,32)" rx="2" ry="2" />
+<text  x="721.63" y="703.5" ></text>
+</g>
+<g >
+<title>signal_irq_work (91,885,761 samples, 0.03%)</title><rect x="133.3" y="533" width="0.3" height="15.0" fill="rgb(247,126,53)" rx="2" ry="2" />
+<text  x="136.29" y="543.5" ></text>
+</g>
+<g >
+<title>__folio_alloc (43,073,233 samples, 0.01%)</title><rect x="134.6" y="597" width="0.1" height="15.0" fill="rgb(216,43,43)" rx="2" ry="2" />
+<text  x="137.58" y="607.5" ></text>
+</g>
+<g >
+<title>newidle_balance (66,238,351 samples, 0.02%)</title><rect x="817.6" y="709" width="0.2" height="15.0" fill="rgb(230,18,44)" rx="2" ry="2" />
+<text  x="820.60" y="719.5" ></text>
+</g>
+<g >
+<title>IPC_I/O_Parent (792,786,488 samples, 0.22%)</title><rect x="42.7" y="981" width="2.6" height="15.0" fill="rgb(217,98,38)" rx="2" ry="2" />
+<text  x="45.71" y="991.5" ></text>
+</g>
+<g >
+<title>folio_alloc (460,674,119 samples, 0.13%)</title><rect x="756.7" y="725" width="1.4" height="15.0" fill="rgb(206,136,13)" rx="2" ry="2" />
+<text  x="759.66" y="735.5" ></text>
+</g>
+<g >
+<title>ct_kernel_exit_state (58,965,980 samples, 0.02%)</title><rect x="918.0" y="853" width="0.1" height="15.0" fill="rgb(224,170,5)" rx="2" ry="2" />
+<text  x="920.95" y="863.5" ></text>
+</g>
+<g >
+<title>__sysvec_apic_timer_interrupt (397,949,106 samples, 0.11%)</title><rect x="833.4" y="805" width="1.3" height="15.0" fill="rgb(251,158,0)" rx="2" ry="2" />
+<text  x="836.41" y="815.5" ></text>
+</g>
+<g >
+<title>_raw_spin_rq_lock_irqsave (92,687,676 samples, 0.03%)</title><rect x="1127.4" y="869" width="0.3" height="15.0" fill="rgb(222,142,52)" rx="2" ry="2" />
+<text  x="1130.37" y="879.5" ></text>
+</g>
+<g >
+<title>__libc_poll (316,309,630 samples, 0.09%)</title><rect x="626.9" y="693" width="1.0" height="15.0" fill="rgb(211,118,18)" rx="2" ry="2" />
+<text  x="629.86" y="703.5" ></text>
+</g>
+<g >
+<title>__x64_sys_recvfrom (43,280,376 samples, 0.01%)</title><rect x="667.4" y="933" width="0.1" height="15.0" fill="rgb(216,96,51)" rx="2" ry="2" />
+<text  x="670.39" y="943.5" ></text>
+</g>
+<g >
+<title>syscall_return_via_sysret (36,721,582 samples, 0.01%)</title><rect x="280.6" y="757" width="0.1" height="15.0" fill="rgb(218,80,23)" rx="2" ry="2" />
+<text  x="283.63" y="767.5" ></text>
+</g>
+<g >
+<title>lapic_next_deadline (87,268,471 samples, 0.02%)</title><rect x="1159.0" y="853" width="0.3" height="15.0" fill="rgb(232,191,42)" rx="2" ry="2" />
+<text  x="1161.98" y="863.5" ></text>
+</g>
+<g >
+<title>sysvec_apic_timer_interrupt (32,963,584 samples, 0.01%)</title><rect x="685.7" y="725" width="0.1" height="15.0" fill="rgb(238,174,34)" rx="2" ry="2" />
+<text  x="688.66" y="735.5" ></text>
+</g>
+<g >
+<title>__update_load_avg_se (42,328,200 samples, 0.01%)</title><rect x="903.9" y="757" width="0.2" height="15.0" fill="rgb(231,16,15)" rx="2" ry="2" />
+<text  x="906.92" y="767.5" ></text>
+</g>
+<g >
+<title>[wget] (92,132,750 samples, 0.03%)</title><rect x="1167.1" y="917" width="0.3" height="15.0" fill="rgb(210,78,52)" rx="2" ry="2" />
+<text  x="1170.10" y="927.5" ></text>
+</g>
+<g >
+<title>drm_ioctl_kernel (226,976,756 samples, 0.06%)</title><rect x="132.9" y="725" width="0.8" height="15.0" fill="rgb(243,228,47)" rx="2" ry="2" />
+<text  x="135.93" y="735.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (44,968,897 samples, 0.01%)</title><rect x="666.1" y="805" width="0.2" height="15.0" fill="rgb(243,118,11)" rx="2" ry="2" />
+<text  x="669.15" y="815.5" ></text>
+</g>
+<g >
+<title>__alloc_skb (33,004,615 samples, 0.01%)</title><rect x="665.4" y="709" width="0.1" height="15.0" fill="rgb(237,185,39)" rx="2" ry="2" />
+<text  x="668.39" y="719.5" ></text>
+</g>
+<g >
+<title>i915_gem_execbuffer2_ioctl (939,524,493 samples, 0.26%)</title><rect x="233.2" y="885" width="3.0" height="15.0" fill="rgb(223,175,4)" rx="2" ry="2" />
+<text  x="236.21" y="895.5" ></text>
+</g>
+<g >
+<title>map_pt_dma_locked (50,253,089 samples, 0.01%)</title><rect x="140.9" y="725" width="0.1" height="15.0" fill="rgb(243,77,51)" rx="2" ry="2" />
+<text  x="143.87" y="735.5" ></text>
+</g>
+<g >
+<title>[Xorg] (128,711,155 samples, 0.04%)</title><rect x="204.2" y="869" width="0.4" height="15.0" fill="rgb(236,142,4)" rx="2" ry="2" />
+<text  x="207.15" y="879.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (486,326,533 samples, 0.13%)</title><rect x="143.4" y="853" width="1.6" height="15.0" fill="rgb(235,47,48)" rx="2" ry="2" />
+<text  x="146.40" y="863.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (2,598,775,884 samples, 0.71%)</title><rect x="630.1" y="549" width="8.4" height="15.0" fill="rgb(211,112,15)" rx="2" ry="2" />
+<text  x="633.09" y="559.5" ></text>
+</g>
+<g >
+<title>___pthread_cond_timedwait (63,604,884 samples, 0.02%)</title><rect x="1166.7" y="901" width="0.2" height="15.0" fill="rgb(234,26,49)" rx="2" ry="2" />
+<text  x="1169.69" y="911.5" ></text>
+</g>
+<g >
+<title>llist_reverse_order (66,369,677 samples, 0.02%)</title><rect x="1126.7" y="869" width="0.2" height="15.0" fill="rgb(244,102,2)" rx="2" ry="2" />
+<text  x="1129.67" y="879.5" ></text>
+</g>
+<g >
+<title>tcp_v4_do_rcv (208,722,075 samples, 0.06%)</title><rect x="320.2" y="613" width="0.7" height="15.0" fill="rgb(252,62,4)" rx="2" ry="2" />
+<text  x="323.18" y="623.5" ></text>
+</g>
+<g >
+<title>__writeback_inodes_wb (437,693,937 samples, 0.12%)</title><rect x="555.6" y="869" width="1.4" height="15.0" fill="rgb(252,135,35)" rx="2" ry="2" />
+<text  x="558.61" y="879.5" ></text>
+</g>
+<g >
+<title>[libxul.so] (2,849,863,435 samples, 0.78%)</title><rect x="105.8" y="949" width="9.1" height="15.0" fill="rgb(254,189,37)" rx="2" ry="2" />
+<text  x="108.77" y="959.5" ></text>
+</g>
+<g >
+<title>nf_conntrack_tcp_packet (32,646,219 samples, 0.01%)</title><rect x="625.0" y="421" width="0.1" height="15.0" fill="rgb(208,177,9)" rx="2" ry="2" />
+<text  x="628.02" y="431.5" ></text>
+</g>
+<g >
+<title>_CallCallbacks (35,202,232 samples, 0.01%)</title><rect x="202.6" y="933" width="0.2" height="15.0" fill="rgb(234,14,30)" rx="2" ry="2" />
+<text  x="205.64" y="943.5" ></text>
+</g>
+<g >
+<title>__switch_to_asm (38,908,574 samples, 0.01%)</title><rect x="299.3" y="965" width="0.1" height="15.0" fill="rgb(243,228,50)" rx="2" ry="2" />
+<text  x="302.26" y="975.5" ></text>
+</g>
+<g >
+<title>ieee80211_subif_start_xmit (1,309,906,430 samples, 0.36%)</title><rect x="630.8" y="485" width="4.2" height="15.0" fill="rgb(236,150,24)" rx="2" ry="2" />
+<text  x="633.82" y="495.5" ></text>
+</g>
+<g >
+<title>[perf] (17,500,824,188 samples, 4.77%)</title><rect x="669.5" y="933" width="56.4" height="15.0" fill="rgb(215,136,29)" rx="2" ry="2" />
+<text  x="672.52" y="943.5" >[perf]</text>
+</g>
+<g >
+<title>ep_poll_callback (40,744,114 samples, 0.01%)</title><rect x="266.8" y="773" width="0.1" height="15.0" fill="rgb(250,10,10)" rx="2" ry="2" />
+<text  x="269.81" y="783.5" ></text>
+</g>
+<g >
+<title>shmem_get_pages (361,986,843 samples, 0.10%)</title><rect x="236.3" y="853" width="1.1" height="15.0" fill="rgb(221,46,31)" rx="2" ry="2" />
+<text  x="239.28" y="863.5" ></text>
+</g>
+<g >
+<title>hrtimer_wakeup (110,884,525 samples, 0.03%)</title><rect x="906.5" y="789" width="0.3" height="15.0" fill="rgb(209,209,49)" rx="2" ry="2" />
+<text  x="909.49" y="799.5" ></text>
+</g>
+<g >
+<title>security_file_permission (71,889,049 samples, 0.02%)</title><rect x="31.4" y="869" width="0.2" height="15.0" fill="rgb(211,136,48)" rx="2" ry="2" />
+<text  x="34.37" y="879.5" ></text>
+</g>
+<g >
+<title>__skb_datagram_iter (115,033,848 samples, 0.03%)</title><rect x="745.3" y="533" width="0.3" height="15.0" fill="rgb(246,40,43)" rx="2" ry="2" />
+<text  x="748.27" y="543.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (41,383,369 samples, 0.01%)</title><rect x="742.7" y="437" width="0.1" height="15.0" fill="rgb(209,123,38)" rx="2" ry="2" />
+<text  x="745.71" y="447.5" ></text>
+</g>
+<g >
+<title>[libvte-2.91.so.0.6992.0] (48,109,340 samples, 0.01%)</title><rect x="1178.2" y="117" width="0.1" height="15.0" fill="rgb(228,222,32)" rx="2" ry="2" />
+<text  x="1181.17" y="127.5" ></text>
+</g>
+<g >
+<title>__skb_checksum (236,153,202 samples, 0.06%)</title><rect x="308.1" y="661" width="0.7" height="15.0" fill="rgb(225,135,47)" rx="2" ry="2" />
+<text  x="311.08" y="671.5" ></text>
+</g>
+<g >
+<title>update_process_times (1,402,206,732 samples, 0.38%)</title><rect x="908.0" y="757" width="4.5" height="15.0" fill="rgb(249,78,20)" rx="2" ry="2" />
+<text  x="910.96" y="767.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (7,178,834,401 samples, 1.96%)</title><rect x="534.0" y="965" width="23.1" height="15.0" fill="rgb(253,110,36)" rx="2" ry="2" />
+<text  x="536.96" y="975.5" >r..</text>
+</g>
+<g >
+<title>free (175,635,601 samples, 0.05%)</title><rect x="297.3" y="933" width="0.5" height="15.0" fill="rgb(224,2,27)" rx="2" ry="2" />
+<text  x="300.25" y="943.5" ></text>
+</g>
+<g >
+<title>dixLookupWindow (52,378,667 samples, 0.01%)</title><rect x="220.8" y="933" width="0.2" height="15.0" fill="rgb(217,0,31)" rx="2" ry="2" />
+<text  x="223.82" y="943.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (381,098,872 samples, 0.10%)</title><rect x="158.2" y="885" width="1.2" height="15.0" fill="rgb(239,211,2)" rx="2" ry="2" />
+<text  x="161.17" y="895.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (3,573,696,334 samples, 0.97%)</title><rect x="505.4" y="853" width="11.5" height="15.0" fill="rgb(228,131,34)" rx="2" ry="2" />
+<text  x="508.41" y="863.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock_irqsave (40,206,610 samples, 0.01%)</title><rect x="299.7" y="901" width="0.1" height="15.0" fill="rgb(223,188,5)" rx="2" ry="2" />
+<text  x="302.68" y="911.5" ></text>
+</g>
+<g >
+<title>eventfd_write (38,598,348 samples, 0.01%)</title><rect x="735.0" y="901" width="0.1" height="15.0" fill="rgb(207,195,43)" rx="2" ry="2" />
+<text  x="737.99" y="911.5" ></text>
+</g>
+<g >
+<title>xfs_file_write_checks (209,115,080 samples, 0.06%)</title><rect x="759.7" y="773" width="0.7" height="15.0" fill="rgb(207,20,6)" rx="2" ry="2" />
+<text  x="762.72" y="783.5" ></text>
+</g>
+<g >
+<title>tcp_stream_alloc_skb (68,476,461 samples, 0.02%)</title><rect x="743.9" y="533" width="0.2" height="15.0" fill="rgb(214,74,42)" rx="2" ry="2" />
+<text  x="746.88" y="543.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (34,340,464 samples, 0.01%)</title><rect x="143.7" y="725" width="0.1" height="15.0" fill="rgb(209,66,14)" rx="2" ry="2" />
+<text  x="146.72" y="735.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (595,533,210 samples, 0.16%)</title><rect x="119.6" y="949" width="1.9" height="15.0" fill="rgb(254,202,20)" rx="2" ry="2" />
+<text  x="122.60" y="959.5" ></text>
+</g>
+<g >
+<title>_aesni_enc4 (844,143,881 samples, 0.23%)</title><rect x="563.0" y="805" width="2.7" height="15.0" fill="rgb(226,45,43)" rx="2" ry="2" />
+<text  x="566.03" y="815.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (20,020,880,736 samples, 5.46%)</title><rect x="750.4" y="901" width="64.4" height="15.0" fill="rgb(251,19,13)" rx="2" ry="2" />
+<text  x="753.38" y="911.5" >[qemu-i..</text>
+</g>
+<g >
+<title>mozilla::detail::MutexImpl::lock (51,482,570 samples, 0.01%)</title><rect x="51.8" y="949" width="0.2" height="15.0" fill="rgb(246,106,50)" rx="2" ry="2" />
+<text  x="54.82" y="959.5" ></text>
+</g>
+<g >
+<title>____sys_recvmsg (208,306,381 samples, 0.06%)</title><rect x="745.0" y="613" width="0.7" height="15.0" fill="rgb(221,65,10)" rx="2" ry="2" />
+<text  x="748.00" y="623.5" ></text>
+</g>
+<g >
+<title>FreeResource (223,190,405 samples, 0.06%)</title><rect x="203.9" y="933" width="0.7" height="15.0" fill="rgb(251,138,30)" rx="2" ry="2" />
+<text  x="206.88" y="943.5" ></text>
+</g>
+<g >
+<title>asm_common_interrupt (60,511,120 samples, 0.02%)</title><rect x="813.1" y="837" width="0.2" height="15.0" fill="rgb(253,60,1)" rx="2" ry="2" />
+<text  x="816.11" y="847.5" ></text>
+</g>
+<g >
+<title>[libglib-2.0.so.0.7303.0] (1,205,882,821 samples, 0.33%)</title><rect x="1177.7" y="885" width="3.9" height="15.0" fill="rgb(253,108,46)" rx="2" ry="2" />
+<text  x="1180.71" y="895.5" ></text>
+</g>
+<g >
+<title>[libglib-2.0.so.0.7303.0] (35,330,034 samples, 0.01%)</title><rect x="1175.9" y="965" width="0.1" height="15.0" fill="rgb(208,227,13)" rx="2" ry="2" />
+<text  x="1178.87" y="975.5" ></text>
+</g>
+<g >
+<title>write_cache_pages (148,028,387 samples, 0.04%)</title><rect x="612.5" y="773" width="0.5" height="15.0" fill="rgb(230,150,14)" rx="2" ry="2" />
+<text  x="615.55" y="783.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (570,465,646 samples, 0.16%)</title><rect x="91.3" y="933" width="1.8" height="15.0" fill="rgb(227,116,51)" rx="2" ry="2" />
+<text  x="94.30" y="943.5" ></text>
+</g>
+<g >
+<title>napi_consume_skb (314,716,657 samples, 0.09%)</title><rect x="332.7" y="821" width="1.0" height="15.0" fill="rgb(232,122,38)" rx="2" ry="2" />
+<text  x="335.67" y="831.5" ></text>
+</g>
+<g >
+<title>xfs_inode_item_format (85,409,999 samples, 0.02%)</title><rect x="722.1" y="709" width="0.2" height="15.0" fill="rgb(219,3,51)" rx="2" ry="2" />
+<text  x="725.05" y="719.5" ></text>
+</g>
+<g >
+<title>[ssh] (59,937,516 samples, 0.02%)</title><rect x="830.4" y="901" width="0.2" height="15.0" fill="rgb(233,28,10)" rx="2" ry="2" />
+<text  x="833.41" y="911.5" ></text>
+</g>
+<g >
+<title>[firefox] (40,041,371 samples, 0.01%)</title><rect x="118.7" y="965" width="0.1" height="15.0" fill="rgb(254,217,10)" rx="2" ry="2" />
+<text  x="121.68" y="975.5" ></text>
+</g>
+<g >
+<title>IPDL_Background (2,629,238,257 samples, 0.72%)</title><rect x="45.3" y="981" width="8.4" height="15.0" fill="rgb(229,115,5)" rx="2" ry="2" />
+<text  x="48.26" y="991.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow_list (1,082,066,378 samples, 0.30%)</title><rect x="329.0" y="709" width="3.5" height="15.0" fill="rgb(231,140,15)" rx="2" ry="2" />
+<text  x="332.01" y="719.5" ></text>
+</g>
+<g >
+<title>[libgdk-3.so.0.2404.30] (132,480,402 samples, 0.04%)</title><rect x="1177.3" y="885" width="0.4" height="15.0" fill="rgb(223,88,51)" rx="2" ry="2" />
+<text  x="1180.28" y="895.5" ></text>
+</g>
+<g >
+<title>do_writev (367,257,251 samples, 0.10%)</title><rect x="19.1" y="773" width="1.2" height="15.0" fill="rgb(206,119,41)" rx="2" ry="2" />
+<text  x="22.15" y="783.5" ></text>
+</g>
+<g >
+<title>__dev_queue_xmit (1,484,923,593 samples, 0.41%)</title><rect x="630.5" y="517" width="4.8" height="15.0" fill="rgb(209,190,53)" rx="2" ry="2" />
+<text  x="633.53" y="527.5" ></text>
+</g>
+<g >
+<title>bsearch (194,601,323 samples, 0.05%)</title><rect x="309.7" y="757" width="0.6" height="15.0" fill="rgb(211,207,31)" rx="2" ry="2" />
+<text  x="312.72" y="767.5" ></text>
+</g>
+<g >
+<title>schedule (39,371,041 samples, 0.01%)</title><rect x="351.7" y="917" width="0.1" height="15.0" fill="rgb(210,168,11)" rx="2" ry="2" />
+<text  x="354.70" y="927.5" ></text>
+</g>
+<g >
+<title>schedule (323,657,973 samples, 0.09%)</title><rect x="291.8" y="837" width="1.0" height="15.0" fill="rgb(224,75,15)" rx="2" ry="2" />
+<text  x="294.80" y="847.5" ></text>
+</g>
+<g >
+<title>check_preempt_curr (59,622,445 samples, 0.02%)</title><rect x="1132.8" y="853" width="0.2" height="15.0" fill="rgb(242,204,14)" rx="2" ry="2" />
+<text  x="1135.82" y="863.5" ></text>
+</g>
+<g >
+<title>ip6_protocol_deliver_rcu (383,466,568 samples, 0.10%)</title><rect x="660.8" y="485" width="1.2" height="15.0" fill="rgb(205,219,47)" rx="2" ry="2" />
+<text  x="663.79" y="495.5" ></text>
+</g>
+<g >
+<title>wb_writeback (300,222,367 samples, 0.08%)</title><rect x="502.1" y="885" width="1.0" height="15.0" fill="rgb(239,95,19)" rx="2" ry="2" />
+<text  x="505.10" y="895.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (5,152,639,086 samples, 1.41%)</title><rect x="536.1" y="869" width="16.6" height="15.0" fill="rgb(227,110,2)" rx="2" ry="2" />
+<text  x="539.12" y="879.5" ></text>
+</g>
+<g >
+<title>try_to_wake_up (108,937,802 samples, 0.03%)</title><rect x="906.5" y="773" width="0.3" height="15.0" fill="rgb(214,3,44)" rx="2" ry="2" />
+<text  x="909.49" y="783.5" ></text>
+</g>
+<g >
+<title>start_thread (1,324,635,568 samples, 0.36%)</title><rect x="1162.6" y="949" width="4.3" height="15.0" fill="rgb(244,125,14)" rx="2" ry="2" />
+<text  x="1165.64" y="959.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (331,096,798 samples, 0.09%)</title><rect x="120.3" y="869" width="1.1" height="15.0" fill="rgb(228,202,50)" rx="2" ry="2" />
+<text  x="123.33" y="879.5" ></text>
+</g>
+<g >
+<title>nft_lookup_eval (65,271,789 samples, 0.02%)</title><rect x="324.1" y="629" width="0.2" height="15.0" fill="rgb(250,132,2)" rx="2" ry="2" />
+<text  x="327.08" y="639.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (369,696,668 samples, 0.10%)</title><rect x="526.2" y="837" width="1.2" height="15.0" fill="rgb(224,158,11)" rx="2" ry="2" />
+<text  x="529.19" y="847.5" ></text>
+</g>
+<g >
+<title>[libxcb.so.1.1.0] (37,687,904 samples, 0.01%)</title><rect x="132.5" y="757" width="0.1" height="15.0" fill="rgb(223,174,8)" rx="2" ry="2" />
+<text  x="135.52" y="767.5" ></text>
+</g>
+<g >
+<title>moz_xmalloc (38,114,381 samples, 0.01%)</title><rect x="24.3" y="933" width="0.1" height="15.0" fill="rgb(235,185,19)" rx="2" ry="2" />
+<text  x="27.31" y="943.5" ></text>
+</g>
+<g >
+<title>__folio_end_writeback (354,777,014 samples, 0.10%)</title><rect x="390.7" y="821" width="1.2" height="15.0" fill="rgb(220,184,25)" rx="2" ry="2" />
+<text  x="393.73" y="831.5" ></text>
+</g>
+<g >
+<title>tick_sched_handle (57,762,966 samples, 0.02%)</title><rect x="94.9" y="853" width="0.2" height="15.0" fill="rgb(210,67,27)" rx="2" ry="2" />
+<text  x="97.91" y="863.5" ></text>
+</g>
+<g >
+<title>ttwu_do_wakeup (80,659,419 samples, 0.02%)</title><rect x="894.8" y="757" width="0.2" height="15.0" fill="rgb(212,123,44)" rx="2" ry="2" />
+<text  x="897.76" y="767.5" ></text>
+</g>
+<g >
+<title>net_rx_action (66,991,125 samples, 0.02%)</title><rect x="665.8" y="581" width="0.2" height="15.0" fill="rgb(220,221,29)" rx="2" ry="2" />
+<text  x="668.76" y="591.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (73,534,828 samples, 0.02%)</title><rect x="15.1" y="917" width="0.2" height="15.0" fill="rgb(245,40,46)" rx="2" ry="2" />
+<text  x="18.08" y="927.5" ></text>
+</g>
+<g >
+<title>__schedule (120,505,977 samples, 0.03%)</title><rect x="174.6" y="821" width="0.4" height="15.0" fill="rgb(220,45,23)" rx="2" ry="2" />
+<text  x="177.57" y="831.5" ></text>
+</g>
+<g >
+<title>[libglamoregl.so] (286,078,631 samples, 0.08%)</title><rect x="200.1" y="901" width="0.9" height="15.0" fill="rgb(253,50,20)" rx="2" ry="2" />
+<text  x="203.08" y="911.5" ></text>
+</g>
+<g >
+<title>pick_next_task_fair (474,733,503 samples, 0.13%)</title><rect x="1148.5" y="869" width="1.5" height="15.0" fill="rgb(234,47,23)" rx="2" ry="2" />
+<text  x="1151.48" y="879.5" ></text>
+</g>
+<g >
+<title>git-remote-http (147,352,744 samples, 0.04%)</title><rect x="284.7" y="981" width="0.5" height="15.0" fill="rgb(233,67,5)" rx="2" ry="2" />
+<text  x="287.72" y="991.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (283,002,596 samples, 0.08%)</title><rect x="212.0" y="821" width="0.9" height="15.0" fill="rgb(209,3,23)" rx="2" ry="2" />
+<text  x="214.96" y="831.5" ></text>
+</g>
+<g >
+<title>enqueue_task_fair (37,451,753 samples, 0.01%)</title><rect x="906.6" y="725" width="0.1" height="15.0" fill="rgb(254,104,35)" rx="2" ry="2" />
+<text  x="909.59" y="735.5" ></text>
+</g>
+<g >
+<title>curl_msnprintf (101,510,445 samples, 0.03%)</title><rect x="668.4" y="741" width="0.3" height="15.0" fill="rgb(247,201,41)" rx="2" ry="2" />
+<text  x="671.36" y="751.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (230,568,903 samples, 0.06%)</title><rect x="599.0" y="837" width="0.7" height="15.0" fill="rgb(243,111,8)" rx="2" ry="2" />
+<text  x="601.97" y="847.5" ></text>
+</g>
+<g >
+<title>do_epoll_wait (532,549,577 samples, 0.15%)</title><rect x="229.4" y="917" width="1.8" height="15.0" fill="rgb(242,177,45)" rx="2" ry="2" />
+<text  x="232.44" y="927.5" ></text>
+</g>
+<g >
+<title>irq_work_single (43,971,016 samples, 0.01%)</title><rect x="232.3" y="661" width="0.1" height="15.0" fill="rgb(206,176,38)" rx="2" ry="2" />
+<text  x="235.27" y="671.5" ></text>
+</g>
+<g >
+<title>kcryptd_crypt (6,252,451,251 samples, 1.71%)</title><rect x="503.2" y="901" width="20.1" height="15.0" fill="rgb(216,226,17)" rx="2" ry="2" />
+<text  x="506.17" y="911.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (78,893,581 samples, 0.02%)</title><rect x="818.5" y="821" width="0.2" height="15.0" fill="rgb(231,93,28)" rx="2" ry="2" />
+<text  x="821.46" y="831.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (38,444,521 samples, 0.01%)</title><rect x="284.0" y="965" width="0.1" height="15.0" fill="rgb(233,139,18)" rx="2" ry="2" />
+<text  x="286.96" y="975.5" ></text>
+</g>
+<g >
+<title>drm_syncobj_array_wait_timeout.constprop.0 (109,391,719 samples, 0.03%)</title><rect x="232.8" y="853" width="0.3" height="15.0" fill="rgb(232,11,54)" rx="2" ry="2" />
+<text  x="235.77" y="863.5" ></text>
+</g>
+<g >
+<title>dma_resv_add_fence (31,307,746 samples, 0.01%)</title><rect x="138.0" y="757" width="0.1" height="15.0" fill="rgb(212,70,43)" rx="2" ry="2" />
+<text  x="140.98" y="767.5" ></text>
+</g>
+<g >
+<title>_aesni_enc1 (54,044,243 samples, 0.01%)</title><rect x="527.7" y="805" width="0.2" height="15.0" fill="rgb(209,166,15)" rx="2" ry="2" />
+<text  x="530.68" y="815.5" ></text>
+</g>
+<g >
+<title>pagevec_lookup_range_tag (58,275,733 samples, 0.02%)</title><rect x="439.9" y="757" width="0.2" height="15.0" fill="rgb(228,61,23)" rx="2" ry="2" />
+<text  x="442.90" y="767.5" ></text>
+</g>
+<g >
+<title>[libm.so.6] (39,723,678 samples, 0.01%)</title><rect x="167.5" y="949" width="0.1" height="15.0" fill="rgb(234,184,34)" rx="2" ry="2" />
+<text  x="170.51" y="959.5" ></text>
+</g>
+<g >
+<title>[Xorg] (356,624,286 samples, 0.10%)</title><rect x="208.2" y="853" width="1.1" height="15.0" fill="rgb(224,153,11)" rx="2" ry="2" />
+<text  x="211.16" y="863.5" ></text>
+</g>
+<g >
+<title>__schedule (193,412,901 samples, 0.05%)</title><rect x="158.5" y="773" width="0.6" height="15.0" fill="rgb(249,69,43)" rx="2" ry="2" />
+<text  x="161.49" y="783.5" ></text>
+</g>
+<g >
+<title>__mod_lruvec_page_state (31,862,159 samples, 0.01%)</title><rect x="393.4" y="789" width="0.1" height="15.0" fill="rgb(211,42,33)" rx="2" ry="2" />
+<text  x="396.37" y="799.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (236,945,606 samples, 0.06%)</title><rect x="745.0" y="661" width="0.7" height="15.0" fill="rgb(243,222,40)" rx="2" ry="2" />
+<text  x="747.99" y="671.5" ></text>
+</g>
+<g >
+<title>xfs_iomap_write_direct (135,945,872 samples, 0.04%)</title><rect x="753.3" y="709" width="0.4" height="15.0" fill="rgb(240,170,50)" rx="2" ry="2" />
+<text  x="756.28" y="719.5" ></text>
+</g>
+<g >
+<title>_aesni_enc1 (100,599,590 samples, 0.03%)</title><rect x="602.3" y="805" width="0.3" height="15.0" fill="rgb(209,150,49)" rx="2" ry="2" />
+<text  x="605.31" y="815.5" ></text>
+</g>
+<g >
+<title>__x64_sys_poll (59,469,835 samples, 0.02%)</title><rect x="1170.6" y="933" width="0.2" height="15.0" fill="rgb(239,93,20)" rx="2" ry="2" />
+<text  x="1173.63" y="943.5" ></text>
+</g>
+<g >
+<title>poll_idle (49,877,901 samples, 0.01%)</title><rect x="1123.0" y="869" width="0.2" height="15.0" fill="rgb(219,194,45)" rx="2" ry="2" />
+<text  x="1126.00" y="879.5" ></text>
+</g>
+<g >
+<title>ioctl_has_perm.constprop.0.isra.0 (35,748,776 samples, 0.01%)</title><rect x="237.5" y="901" width="0.1" height="15.0" fill="rgb(234,109,46)" rx="2" ry="2" />
+<text  x="240.51" y="911.5" ></text>
+</g>
+<g >
+<title>[Xorg] (339,343,111 samples, 0.09%)</title><rect x="201.5" y="869" width="1.1" height="15.0" fill="rgb(247,74,21)" rx="2" ry="2" />
+<text  x="204.46" y="879.5" ></text>
+</g>
+<g >
+<title>worker_thread (6,196,881,981 samples, 1.69%)</title><rect x="420.2" y="933" width="19.9" height="15.0" fill="rgb(220,182,3)" rx="2" ry="2" />
+<text  x="423.18" y="943.5" ></text>
+</g>
+<g >
+<title>shmem_sg_alloc_table (78,840,631 samples, 0.02%)</title><rect x="146.2" y="773" width="0.3" height="15.0" fill="rgb(211,5,16)" rx="2" ry="2" />
+<text  x="149.23" y="783.5" ></text>
+</g>
+<g >
+<title>__ksize (33,855,057 samples, 0.01%)</title><rect x="317.2" y="741" width="0.1" height="15.0" fill="rgb(248,144,52)" rx="2" ry="2" />
+<text  x="320.23" y="751.5" ></text>
+</g>
+<g >
+<title>wb_writeback (441,716,721 samples, 0.12%)</title><rect x="523.3" y="885" width="1.4" height="15.0" fill="rgb(229,94,43)" rx="2" ry="2" />
+<text  x="526.31" y="895.5" ></text>
+</g>
+<g >
+<title>ip6_input (66,048,880 samples, 0.02%)</title><rect x="740.7" y="309" width="0.2" height="15.0" fill="rgb(232,123,32)" rx="2" ry="2" />
+<text  x="743.66" y="319.5" ></text>
+</g>
+<g >
+<title>[libspa-support.so] (254,811,228 samples, 0.07%)</title><rect x="732.6" y="949" width="0.8" height="15.0" fill="rgb(245,18,30)" rx="2" ry="2" />
+<text  x="735.59" y="959.5" ></text>
+</g>
+<g >
+<title>miMoveWindow (73,202,681 samples, 0.02%)</title><rect x="203.5" y="901" width="0.3" height="15.0" fill="rgb(216,223,12)" rx="2" ry="2" />
+<text  x="206.53" y="911.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (88,317,364 samples, 0.02%)</title><rect x="1162.9" y="837" width="0.2" height="15.0" fill="rgb(226,142,1)" rx="2" ry="2" />
+<text  x="1165.86" y="847.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (619,119,459 samples, 0.17%)</title><rect x="1163.2" y="757" width="2.0" height="15.0" fill="rgb(221,114,10)" rx="2" ry="2" />
+<text  x="1166.24" y="767.5" ></text>
+</g>
+<g >
+<title>Py_RunMain (67,754,465 samples, 0.02%)</title><rect x="244.1" y="949" width="0.2" height="15.0" fill="rgb(211,229,51)" rx="2" ry="2" />
+<text  x="247.09" y="959.5" ></text>
+</g>
+<g >
+<title>ip_finish_output2 (1,561,358,979 samples, 0.43%)</title><rect x="630.4" y="533" width="5.0" height="15.0" fill="rgb(235,37,11)" rx="2" ry="2" />
+<text  x="633.36" y="543.5" ></text>
+</g>
+<g >
+<title>____sys_sendmsg (590,209,692 samples, 0.16%)</title><rect x="46.8" y="869" width="1.9" height="15.0" fill="rgb(230,140,28)" rx="2" ry="2" />
+<text  x="49.84" y="879.5" ></text>
+</g>
+<g >
+<title>select_task_rq_fair (40,924,542 samples, 0.01%)</title><rect x="239.8" y="741" width="0.1" height="15.0" fill="rgb(220,21,15)" rx="2" ry="2" />
+<text  x="242.80" y="751.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (49,879,454 samples, 0.01%)</title><rect x="1166.7" y="869" width="0.2" height="15.0" fill="rgb(205,119,11)" rx="2" ry="2" />
+<text  x="1169.72" y="879.5" ></text>
+</g>
+<g >
+<title>curl_url_get (194,945,516 samples, 0.05%)</title><rect x="646.0" y="741" width="0.7" height="15.0" fill="rgb(230,147,33)" rx="2" ry="2" />
+<text  x="649.03" y="751.5" ></text>
+</g>
+<g >
+<title>g_main_context_prepare (161,430,665 samples, 0.04%)</title><rect x="1181.6" y="901" width="0.5" height="15.0" fill="rgb(245,189,36)" rx="2" ry="2" />
+<text  x="1184.63" y="911.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (41,760,567 samples, 0.01%)</title><rect x="293.0" y="885" width="0.2" height="15.0" fill="rgb(252,52,42)" rx="2" ry="2" />
+<text  x="296.02" y="895.5" ></text>
+</g>
+<g >
+<title>[firefox] (33,037,047 samples, 0.01%)</title><rect x="135.6" y="837" width="0.1" height="15.0" fill="rgb(228,101,8)" rx="2" ry="2" />
+<text  x="138.58" y="847.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (347,211,127 samples, 0.09%)</title><rect x="396.4" y="965" width="1.2" height="15.0" fill="rgb(221,39,23)" rx="2" ry="2" />
+<text  x="399.45" y="975.5" ></text>
+</g>
+<g >
+<title>[firefox] (98,024,673 samples, 0.03%)</title><rect x="269.8" y="901" width="0.3" height="15.0" fill="rgb(243,123,47)" rx="2" ry="2" />
+<text  x="272.83" y="911.5" ></text>
+</g>
+<g >
+<title>dequeue_task_fair (291,414,384 samples, 0.08%)</title><rect x="652.2" y="597" width="1.0" height="15.0" fill="rgb(236,163,2)" rx="2" ry="2" />
+<text  x="655.23" y="607.5" ></text>
+</g>
+<g >
+<title>backend_pread (12,779,158,176 samples, 3.49%)</title><rect x="616.8" y="869" width="41.1" height="15.0" fill="rgb(231,139,20)" rx="2" ry="2" />
+<text  x="619.76" y="879.5" >bac..</text>
+</g>
+<g >
+<title>__libc_poll (368,378,777 samples, 0.10%)</title><rect x="22.1" y="853" width="1.2" height="15.0" fill="rgb(221,16,10)" rx="2" ry="2" />
+<text  x="25.15" y="863.5" ></text>
+</g>
+<g >
+<title>[ssh] (85,731,763 samples, 0.02%)</title><rect x="830.3" y="965" width="0.3" height="15.0" fill="rgb(243,102,10)" rx="2" ry="2" />
+<text  x="833.34" y="975.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (466,047,420 samples, 0.13%)</title><rect x="568.0" y="853" width="1.5" height="15.0" fill="rgb(209,183,39)" rx="2" ry="2" />
+<text  x="571.00" y="863.5" ></text>
+</g>
+<g >
+<title>__new_sem_wait_slow64.constprop.0 (767,853,058 samples, 0.21%)</title><rect x="816.3" y="885" width="2.5" height="15.0" fill="rgb(213,226,0)" rx="2" ry="2" />
+<text  x="819.34" y="895.5" ></text>
+</g>
+<g >
+<title>ip6_finish_output2 (76,967,766 samples, 0.02%)</title><rect x="665.7" y="645" width="0.3" height="15.0" fill="rgb(228,70,3)" rx="2" ry="2" />
+<text  x="668.73" y="655.5" ></text>
+</g>
+<g >
+<title>kthread (710,432,192 samples, 0.19%)</title><rect x="244.5" y="949" width="2.3" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
+<text  x="247.55" y="959.5" ></text>
+</g>
+<g >
+<title>run_posix_cpu_timers (75,799,965 samples, 0.02%)</title><rect x="907.7" y="757" width="0.3" height="15.0" fill="rgb(239,170,43)" rx="2" ry="2" />
+<text  x="910.72" y="767.5" ></text>
+</g>
+<g >
+<title>__folio_start_writeback (181,355,006 samples, 0.05%)</title><rect x="523.8" y="741" width="0.6" height="15.0" fill="rgb(232,13,11)" rx="2" ry="2" />
+<text  x="526.85" y="751.5" ></text>
+</g>
+<g >
+<title>__wake_up_common (128,342,125 samples, 0.04%)</title><rect x="239.7" y="789" width="0.4" height="15.0" fill="rgb(233,225,38)" rx="2" ry="2" />
+<text  x="242.66" y="799.5" ></text>
+</g>
+<g >
+<title>[bash] (44,517,617 samples, 0.01%)</title><rect x="243.4" y="501" width="0.2" height="15.0" fill="rgb(234,226,40)" rx="2" ry="2" />
+<text  x="246.42" y="511.5" ></text>
+</g>
+<g >
+<title>ip_sublist_rcv_finish (337,724,414 samples, 0.09%)</title><rect x="319.8" y="677" width="1.1" height="15.0" fill="rgb(231,71,32)" rx="2" ry="2" />
+<text  x="322.77" y="687.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (466,473,365 samples, 0.13%)</title><rect x="1171.5" y="453" width="1.5" height="15.0" fill="rgb(228,9,39)" rx="2" ry="2" />
+<text  x="1174.52" y="463.5" ></text>
+</g>
+<g >
+<title>sched_clock_cpu (38,393,185 samples, 0.01%)</title><rect x="1154.5" y="885" width="0.2" height="15.0" fill="rgb(250,138,24)" rx="2" ry="2" />
+<text  x="1157.54" y="895.5" ></text>
+</g>
+<g >
+<title>gdk_display_get_event (32,187,869 samples, 0.01%)</title><rect x="1171.4" y="869" width="0.1" height="15.0" fill="rgb(234,163,54)" rx="2" ry="2" />
+<text  x="1174.37" y="879.5" ></text>
+</g>
+<g >
+<title>g_main_context_iteration (33,630,453 samples, 0.01%)</title><rect x="298.6" y="933" width="0.1" height="15.0" fill="rgb(231,186,44)" rx="2" ry="2" />
+<text  x="301.60" y="943.5" ></text>
+</g>
+<g >
+<title>crypt_iv_plain64_gen (151,132,483 samples, 0.04%)</title><rect x="504.7" y="869" width="0.5" height="15.0" fill="rgb(231,96,54)" rx="2" ry="2" />
+<text  x="507.68" y="879.5" ></text>
+</g>
+<g >
+<title>check_move_unevictable_pages (376,343,551 samples, 0.10%)</title><rect x="374.8" y="773" width="1.2" height="15.0" fill="rgb(228,179,10)" rx="2" ry="2" />
+<text  x="377.78" y="783.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (31,968,202 samples, 0.01%)</title><rect x="243.8" y="965" width="0.1" height="15.0" fill="rgb(254,31,41)" rx="2" ry="2" />
+<text  x="246.78" y="975.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (369,865,779 samples, 0.10%)</title><rect x="731.3" y="965" width="1.2" height="15.0" fill="rgb(224,224,14)" rx="2" ry="2" />
+<text  x="734.27" y="975.5" ></text>
+</g>
+<g >
+<title>consume_skb (52,744,420 samples, 0.01%)</title><rect x="311.6" y="725" width="0.2" height="15.0" fill="rgb(235,148,10)" rx="2" ry="2" />
+<text  x="314.62" y="735.5" ></text>
+</g>
+<g >
+<title>native_queued_spin_lock_slowpath (31,533,577 samples, 0.01%)</title><rect x="459.2" y="709" width="0.1" height="15.0" fill="rgb(233,162,27)" rx="2" ry="2" />
+<text  x="462.21" y="719.5" ></text>
+</g>
+<g >
+<title>__free_one_page (462,147,901 samples, 0.13%)</title><rect x="366.5" y="821" width="1.5" height="15.0" fill="rgb(241,44,7)" rx="2" ry="2" />
+<text  x="369.51" y="831.5" ></text>
+</g>
+<g >
+<title>e1000e_has_link (42,218,776 samples, 0.01%)</title><rect x="390.3" y="885" width="0.2" height="15.0" fill="rgb(253,32,15)" rx="2" ry="2" />
+<text  x="393.35" y="895.5" ></text>
+</g>
+<g >
+<title>shmem_alloc_and_acct_folio (97,480,060 samples, 0.03%)</title><rect x="237.1" y="789" width="0.3" height="15.0" fill="rgb(206,174,19)" rx="2" ry="2" />
+<text  x="240.13" y="799.5" ></text>
+</g>
+<g >
+<title>__queue_work (42,275,985 samples, 0.01%)</title><rect x="904.3" y="757" width="0.1" height="15.0" fill="rgb(248,157,5)" rx="2" ry="2" />
+<text  x="907.30" y="767.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver_finish (260,759,282 samples, 0.07%)</title><rect x="320.0" y="661" width="0.9" height="15.0" fill="rgb(213,57,12)" rx="2" ry="2" />
+<text  x="323.02" y="671.5" ></text>
+</g>
+<g >
+<title>[libxcb.so.1.1.0] (44,235,418 samples, 0.01%)</title><rect x="142.3" y="853" width="0.1" height="15.0" fill="rgb(228,61,28)" rx="2" ry="2" />
+<text  x="145.27" y="863.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (194,304,399 samples, 0.05%)</title><rect x="20.9" y="805" width="0.6" height="15.0" fill="rgb(220,163,47)" rx="2" ry="2" />
+<text  x="23.92" y="815.5" ></text>
+</g>
+<g >
+<title>sysvec_irq_work (46,014,299 samples, 0.01%)</title><rect x="232.3" y="725" width="0.1" height="15.0" fill="rgb(213,153,45)" rx="2" ry="2" />
+<text  x="235.27" y="735.5" ></text>
+</g>
+<g >
+<title>kworker/u16:4-k (6,728,213,782 samples, 1.84%)</title><rect x="503.1" y="981" width="21.7" height="15.0" fill="rgb(209,100,4)" rx="2" ry="2" />
+<text  x="506.10" y="991.5" >k..</text>
+</g>
+<g >
+<title>aesni_enc (142,676,449 samples, 0.04%)</title><rect x="486.7" y="821" width="0.4" height="15.0" fill="rgb(250,57,38)" rx="2" ry="2" />
+<text  x="489.67" y="831.5" ></text>
+</g>
+<g >
+<title>simd_skcipher_encrypt (60,086,391 samples, 0.02%)</title><rect x="532.1" y="853" width="0.1" height="15.0" fill="rgb(219,84,51)" rx="2" ry="2" />
+<text  x="535.05" y="863.5" ></text>
+</g>
+<g >
+<title>native_write_msr (84,081,359 samples, 0.02%)</title><rect x="880.4" y="821" width="0.3" height="15.0" fill="rgb(206,118,46)" rx="2" ry="2" />
+<text  x="883.38" y="831.5" ></text>
+</g>
+<g >
+<title>memcpy_erms (61,626,617 samples, 0.02%)</title><rect x="611.3" y="869" width="0.2" height="15.0" fill="rgb(252,198,53)" rx="2" ry="2" />
+<text  x="614.29" y="879.5" ></text>
+</g>
+<g >
+<title>wb_writeback (164,396,550 samples, 0.04%)</title><rect x="533.4" y="885" width="0.5" height="15.0" fill="rgb(217,81,50)" rx="2" ry="2" />
+<text  x="536.40" y="895.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (5,172,384,731 samples, 1.41%)</title><rect x="125.3" y="917" width="16.6" height="15.0" fill="rgb(249,134,30)" rx="2" ry="2" />
+<text  x="128.29" y="927.5" ></text>
+</g>
+<g >
+<title>WRRende~end#617 (107,518,437 samples, 0.03%)</title><rect x="180.7" y="981" width="0.4" height="15.0" fill="rgb(225,25,35)" rx="2" ry="2" />
+<text  x="183.74" y="991.5" ></text>
+</g>
+<g >
+<title>fw_domains_get_with_fallback (64,452,287 samples, 0.02%)</title><rect x="1163.7" y="309" width="0.2" height="15.0" fill="rgb(217,35,16)" rx="2" ry="2" />
+<text  x="1166.71" y="319.5" ></text>
+</g>
+<g >
+<title>mieqProcessDeviceEvent (86,356,695 samples, 0.02%)</title><rect x="242.1" y="949" width="0.3" height="15.0" fill="rgb(236,24,27)" rx="2" ry="2" />
+<text  x="245.12" y="959.5" ></text>
+</g>
+<g >
+<title>__mod_lruvec_page_state (46,121,745 samples, 0.01%)</title><rect x="555.8" y="725" width="0.2" height="15.0" fill="rgb(208,82,49)" rx="2" ry="2" />
+<text  x="558.83" y="735.5" ></text>
+</g>
+<g >
+<title>__irq_wake_thread (217,485,261 samples, 0.06%)</title><rect x="891.3" y="773" width="0.7" height="15.0" fill="rgb(252,68,54)" rx="2" ry="2" />
+<text  x="894.33" y="783.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (304,108,907 samples, 0.08%)</title><rect x="400.6" y="837" width="1.0" height="15.0" fill="rgb(222,116,7)" rx="2" ry="2" />
+<text  x="403.63" y="847.5" ></text>
+</g>
+<g >
+<title>update_blocked_averages (62,296,660 samples, 0.02%)</title><rect x="653.8" y="565" width="0.2" height="15.0" fill="rgb(242,201,33)" rx="2" ry="2" />
+<text  x="656.79" y="575.5" ></text>
+</g>
+<g >
+<title>[libcurl.so.4.8.0] (108,373,762 samples, 0.03%)</title><rect x="667.9" y="741" width="0.3" height="15.0" fill="rgb(206,83,21)" rx="2" ry="2" />
+<text  x="670.86" y="751.5" ></text>
+</g>
+<g >
+<title>schedule_hrtimeout_range_clock (224,022,035 samples, 0.06%)</title><rect x="727.5" y="869" width="0.8" height="15.0" fill="rgb(229,0,1)" rx="2" ry="2" />
+<text  x="730.53" y="879.5" ></text>
+</g>
+<g >
+<title>tcp_sendmsg (2,141,107,535 samples, 0.58%)</title><rect x="659.2" y="757" width="6.9" height="15.0" fill="rgb(219,43,4)" rx="2" ry="2" />
+<text  x="662.20" y="767.5" ></text>
+</g>
+<g >
+<title>xfs_bmapi_write (111,022,301 samples, 0.03%)</title><rect x="753.3" y="693" width="0.4" height="15.0" fill="rgb(223,176,46)" rx="2" ry="2" />
+<text  x="756.35" y="703.5" ></text>
+</g>
+<g >
+<title>irq_work_run_list (68,858,131 samples, 0.02%)</title><rect x="1163.7" y="405" width="0.2" height="15.0" fill="rgb(209,100,20)" rx="2" ry="2" />
+<text  x="1166.70" y="415.5" ></text>
+</g>
+<g >
+<title>__execlists_schedule_out (46,754,831 samples, 0.01%)</title><rect x="896.8" y="773" width="0.1" height="15.0" fill="rgb(242,149,38)" rx="2" ry="2" />
+<text  x="899.77" y="783.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (41,718,312 samples, 0.01%)</title><rect x="152.5" y="901" width="0.1" height="15.0" fill="rgb(220,3,8)" rx="2" ry="2" />
+<text  x="155.46" y="911.5" ></text>
+</g>
+<g >
+<title>get_next_timer_interrupt (472,436,766 samples, 0.13%)</title><rect x="1142.2" y="853" width="1.6" height="15.0" fill="rgb(252,60,2)" rx="2" ry="2" />
+<text  x="1145.24" y="863.5" ></text>
+</g>
+<g >
+<title>__napi_poll (9,621,222,190 samples, 2.62%)</title><rect x="301.6" y="821" width="31.0" height="15.0" fill="rgb(236,212,47)" rx="2" ry="2" />
+<text  x="304.65" y="831.5" >__..</text>
+</g>
+<g >
+<title>write_cache_pages (730,086,908 samples, 0.20%)</title><rect x="437.7" y="773" width="2.4" height="15.0" fill="rgb(211,148,10)" rx="2" ry="2" />
+<text  x="440.74" y="783.5" ></text>
+</g>
+<g >
+<title>avc_has_perm (38,265,691 samples, 0.01%)</title><rect x="39.3" y="789" width="0.1" height="15.0" fill="rgb(250,133,20)" rx="2" ry="2" />
+<text  x="42.27" y="799.5" ></text>
+</g>
+<g >
+<title>[libxul.so] (37,995,363 samples, 0.01%)</title><rect x="113.7" y="901" width="0.1" height="15.0" fill="rgb(238,49,53)" rx="2" ry="2" />
+<text  x="116.68" y="911.5" ></text>
+</g>
+<g >
+<title>WRScene~der#116 (51,585,229 samples, 0.01%)</title><rect x="182.4" y="981" width="0.2" height="15.0" fill="rgb(244,224,44)" rx="2" ry="2" />
+<text  x="185.44" y="991.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (114,774,040 samples, 0.03%)</title><rect x="1178.0" y="165" width="0.4" height="15.0" fill="rgb(226,133,34)" rx="2" ry="2" />
+<text  x="1181.02" y="175.5" ></text>
+</g>
+<g >
+<title>hrtimer_try_to_cancel (324,952,075 samples, 0.09%)</title><rect x="1155.8" y="853" width="1.1" height="15.0" fill="rgb(233,89,13)" rx="2" ry="2" />
+<text  x="1158.85" y="863.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (63,929,787 samples, 0.02%)</title><rect x="266.3" y="933" width="0.2" height="15.0" fill="rgb(205,42,27)" rx="2" ry="2" />
+<text  x="269.31" y="943.5" ></text>
+</g>
+<g >
+<title>security_file_permission (45,099,788 samples, 0.01%)</title><rect x="826.8" y="725" width="0.2" height="15.0" fill="rgb(234,35,48)" rx="2" ry="2" />
+<text  x="829.84" y="735.5" ></text>
+</g>
+<g >
+<title>load_balance (50,615,599 samples, 0.01%)</title><rect x="230.6" y="821" width="0.1" height="15.0" fill="rgb(254,164,43)" rx="2" ry="2" />
+<text  x="233.55" y="831.5" ></text>
+</g>
+<g >
+<title>sock_write_iter (604,142,675 samples, 0.16%)</title><rect x="238.2" y="869" width="2.0" height="15.0" fill="rgb(245,107,33)" rx="2" ry="2" />
+<text  x="241.23" y="879.5" ></text>
+</g>
+<g >
+<title>[libxcb.so.1.1.0] (114,177,809 samples, 0.03%)</title><rect x="145.1" y="837" width="0.4" height="15.0" fill="rgb(232,68,40)" rx="2" ry="2" />
+<text  x="148.12" y="847.5" ></text>
+</g>
+<g >
+<title>__sysvec_apic_timer_interrupt (215,570,412 samples, 0.06%)</title><rect x="813.7" y="805" width="0.7" height="15.0" fill="rgb(235,229,38)" rx="2" ry="2" />
+<text  x="816.71" y="815.5" ></text>
+</g>
+<g >
+<title>writeback_sb_inodes (148,240,118 samples, 0.04%)</title><rect x="612.5" y="853" width="0.5" height="15.0" fill="rgb(236,179,16)" rx="2" ry="2" />
+<text  x="615.55" y="863.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (239,201,144 samples, 0.07%)</title><rect x="392.0" y="965" width="0.7" height="15.0" fill="rgb(218,163,37)" rx="2" ry="2" />
+<text  x="394.95" y="975.5" ></text>
+</g>
+<g >
+<title>__writeback_inodes_wb (866,940,717 samples, 0.24%)</title><rect x="457.9" y="869" width="2.8" height="15.0" fill="rgb(219,224,26)" rx="2" ry="2" />
+<text  x="460.88" y="879.5" ></text>
+</g>
+<g >
+<title>pipe_write (487,974,618 samples, 0.13%)</title><rect x="29.8" y="869" width="1.6" height="15.0" fill="rgb(240,76,53)" rx="2" ry="2" />
+<text  x="32.80" y="879.5" ></text>
+</g>
+<g >
+<title>___pthread_mutex_lock (32,214,986 samples, 0.01%)</title><rect x="23.5" y="853" width="0.1" height="15.0" fill="rgb(241,71,39)" rx="2" ry="2" />
+<text  x="26.48" y="863.5" ></text>
+</g>
+<g >
+<title>__writeback_single_inode (437,693,937 samples, 0.12%)</title><rect x="555.6" y="837" width="1.4" height="15.0" fill="rgb(249,91,5)" rx="2" ry="2" />
+<text  x="558.61" y="847.5" ></text>
+</g>
+<g >
+<title>mod_lruvec_page_state (98,502,206 samples, 0.03%)</title><rect x="573.3" y="725" width="0.3" height="15.0" fill="rgb(208,97,17)" rx="2" ry="2" />
+<text  x="576.25" y="735.5" ></text>
+</g>
+<g >
+<title>xfs_bmbt_to_iomap (40,246,457 samples, 0.01%)</title><rect x="688.1" y="741" width="0.1" height="15.0" fill="rgb(209,69,28)" rx="2" ry="2" />
+<text  x="691.07" y="751.5" ></text>
+</g>
+<g >
+<title>kfree (32,209,515 samples, 0.01%)</title><rect x="307.3" y="709" width="0.1" height="15.0" fill="rgb(248,9,46)" rx="2" ry="2" />
+<text  x="310.32" y="719.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (120,926,947 samples, 0.03%)</title><rect x="645.1" y="693" width="0.4" height="15.0" fill="rgb(218,208,1)" rx="2" ry="2" />
+<text  x="648.07" y="703.5" ></text>
+</g>
+<g >
+<title>tick_nohz_idle_got_tick (75,116,132 samples, 0.02%)</title><rect x="1133.7" y="885" width="0.2" height="15.0" fill="rgb(223,113,3)" rx="2" ry="2" />
+<text  x="1136.66" y="895.5" ></text>
+</g>
+<g >
+<title>asm_common_interrupt (50,883,307 samples, 0.01%)</title><rect x="384.2" y="789" width="0.2" height="15.0" fill="rgb(220,229,20)" rx="2" ry="2" />
+<text  x="387.23" y="799.5" ></text>
+</g>
+<g >
+<title>__folio_start_writeback (173,605,978 samples, 0.05%)</title><rect x="556.2" y="741" width="0.5" height="15.0" fill="rgb(231,173,43)" rx="2" ry="2" />
+<text  x="559.18" y="751.5" ></text>
+</g>
+<g >
+<title>[libEGL_mesa.so.0.0.0] (127,713,659 samples, 0.03%)</title><rect x="142.1" y="949" width="0.4" height="15.0" fill="rgb(246,159,2)" rx="2" ry="2" />
+<text  x="145.10" y="959.5" ></text>
+</g>
+<g >
+<title>__mod_lruvec_page_state (49,243,313 samples, 0.01%)</title><rect x="386.5" y="789" width="0.2" height="15.0" fill="rgb(243,44,15)" rx="2" ry="2" />
+<text  x="389.50" y="799.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (371,129,070 samples, 0.10%)</title><rect x="158.2" y="869" width="1.2" height="15.0" fill="rgb(254,106,20)" rx="2" ry="2" />
+<text  x="161.21" y="879.5" ></text>
+</g>
+<g >
+<title>folio_end_writeback (193,586,003 samples, 0.05%)</title><rect x="394.7" y="837" width="0.7" height="15.0" fill="rgb(246,86,40)" rx="2" ry="2" />
+<text  x="397.74" y="847.5" ></text>
+</g>
+<g >
+<title>mod_lruvec_page_state (43,116,415 samples, 0.01%)</title><rect x="387.8" y="805" width="0.2" height="15.0" fill="rgb(225,7,40)" rx="2" ry="2" />
+<text  x="390.81" y="815.5" ></text>
+</g>
+<g >
+<title>memset_erms (44,341,754 samples, 0.01%)</title><rect x="525.4" y="853" width="0.2" height="15.0" fill="rgb(206,81,23)" rx="2" ry="2" />
+<text  x="528.45" y="863.5" ></text>
+</g>
+<g >
+<title>__x64_sys_poll (32,240,948 samples, 0.01%)</title><rect x="622.7" y="629" width="0.1" height="15.0" fill="rgb(239,27,45)" rx="2" ry="2" />
+<text  x="625.67" y="639.5" ></text>
+</g>
+<g >
+<title>xfs_end_ioend (216,396,857 samples, 0.06%)</title><rect x="394.7" y="885" width="0.7" height="15.0" fill="rgb(211,179,7)" rx="2" ry="2" />
+<text  x="397.68" y="895.5" ></text>
+</g>
+<g >
+<title>remove_wait_queue (33,737,703 samples, 0.01%)</title><rect x="1183.2" y="885" width="0.2" height="15.0" fill="rgb(238,124,13)" rx="2" ry="2" />
+<text  x="1186.24" y="895.5" ></text>
+</g>
+<g >
+<title>xas_load (32,796,951 samples, 0.01%)</title><rect x="439.5" y="725" width="0.1" height="15.0" fill="rgb(247,0,50)" rx="2" ry="2" />
+<text  x="442.54" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (80,340,031 samples, 0.02%)</title><rect x="104.3" y="901" width="0.2" height="15.0" fill="rgb(229,13,19)" rx="2" ry="2" />
+<text  x="107.29" y="911.5" ></text>
+</g>
+<g >
+<title>atime_needs_update (36,975,327 samples, 0.01%)</title><rect x="92.3" y="837" width="0.2" height="15.0" fill="rgb(252,161,35)" rx="2" ry="2" />
+<text  x="95.34" y="847.5" ></text>
+</g>
+<g >
+<title>rs_rate_from_ucode_rate (36,361,571 samples, 0.01%)</title><rect x="314.1" y="661" width="0.1" height="15.0" fill="rgb(221,112,14)" rx="2" ry="2" />
+<text  x="317.08" y="671.5" ></text>
+</g>
+<g >
+<title>skcipher_walk_next (98,844,674 samples, 0.03%)</title><rect x="411.9" y="805" width="0.3" height="15.0" fill="rgb(249,28,23)" rx="2" ry="2" />
+<text  x="414.85" y="815.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (155,461,417 samples, 0.04%)</title><rect x="214.5" y="869" width="0.5" height="15.0" fill="rgb(230,161,0)" rx="2" ry="2" />
+<text  x="217.51" y="879.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (504,879,572 samples, 0.14%)</title><rect x="221.5" y="853" width="1.6" height="15.0" fill="rgb(244,50,50)" rx="2" ry="2" />
+<text  x="224.47" y="863.5" ></text>
+</g>
+<g >
+<title>tcp_write_xmit (122,568,468 samples, 0.03%)</title><rect x="665.7" y="725" width="0.4" height="15.0" fill="rgb(226,3,1)" rx="2" ry="2" />
+<text  x="668.70" y="735.5" ></text>
+</g>
+<g >
+<title>__hrtimer_run_queues (47,885,593 samples, 0.01%)</title><rect x="1148.0" y="789" width="0.2" height="15.0" fill="rgb(226,76,49)" rx="2" ry="2" />
+<text  x="1151.04" y="799.5" ></text>
+</g>
+<g >
+<title>mozilla::detail::MutexImpl::lock (34,016,408 samples, 0.01%)</title><rect x="174.0" y="949" width="0.1" height="15.0" fill="rgb(251,186,29)" rx="2" ry="2" />
+<text  x="176.96" y="959.5" ></text>
+</g>
+<g >
+<title>[libglib-2.0.so.0.7303.0] (994,409,674 samples, 0.27%)</title><rect x="1171.5" y="885" width="3.2" height="15.0" fill="rgb(226,150,42)" rx="2" ry="2" />
+<text  x="1174.47" y="895.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (626,151,929 samples, 0.17%)</title><rect x="1163.2" y="773" width="2.0" height="15.0" fill="rgb(249,191,22)" rx="2" ry="2" />
+<text  x="1166.23" y="783.5" ></text>
+</g>
+<g >
+<title>_aesni_enc1 (126,203,901 samples, 0.03%)</title><rect x="486.7" y="805" width="0.4" height="15.0" fill="rgb(241,220,39)" rx="2" ry="2" />
+<text  x="489.72" y="815.5" ></text>
+</g>
+<g >
+<title>__libc_recvmsg (165,646,521 samples, 0.05%)</title><rect x="44.5" y="933" width="0.5" height="15.0" fill="rgb(252,66,21)" rx="2" ry="2" />
+<text  x="47.47" y="943.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (184,526,893 samples, 0.05%)</title><rect x="139.9" y="661" width="0.6" height="15.0" fill="rgb(245,190,7)" rx="2" ry="2" />
+<text  x="142.88" y="671.5" ></text>
+</g>
+<g >
+<title>filemap_unaccount_folio (520,930,471 samples, 0.14%)</title><rect x="359.2" y="821" width="1.7" height="15.0" fill="rgb(250,188,27)" rx="2" ry="2" />
+<text  x="362.19" y="831.5" ></text>
+</g>
+<g >
+<title>drm_atomic_check_only (37,581,210 samples, 0.01%)</title><rect x="232.1" y="837" width="0.1" height="15.0" fill="rgb(225,132,51)" rx="2" ry="2" />
+<text  x="235.12" y="847.5" ></text>
+</g>
+<g >
+<title>__nf_conntrack_find_get (65,070,238 samples, 0.02%)</title><rect x="329.8" y="661" width="0.2" height="15.0" fill="rgb(217,202,0)" rx="2" ry="2" />
+<text  x="332.83" y="671.5" ></text>
+</g>
+<g >
+<title>[libglib-2.0.so.0.7303.0] (78,632,149 samples, 0.02%)</title><rect x="739.0" y="661" width="0.2" height="15.0" fill="rgb(237,1,39)" rx="2" ry="2" />
+<text  x="741.96" y="671.5" ></text>
+</g>
+<g >
+<title>hrtimer_interrupt (42,522,486 samples, 0.01%)</title><rect x="267.6" y="901" width="0.2" height="15.0" fill="rgb(226,24,7)" rx="2" ry="2" />
+<text  x="270.64" y="911.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (490,107,878 samples, 0.13%)</title><rect x="143.4" y="869" width="1.6" height="15.0" fill="rgb(250,187,41)" rx="2" ry="2" />
+<text  x="146.39" y="879.5" ></text>
+</g>
+<g >
+<title>gtk_widget_style_get (46,497,102 samples, 0.01%)</title><rect x="1179.6" y="549" width="0.1" height="15.0" fill="rgb(205,53,11)" rx="2" ry="2" />
+<text  x="1182.60" y="559.5" ></text>
+</g>
+<g >
+<title>[firefox] (46,548,205 samples, 0.01%)</title><rect x="182.9" y="933" width="0.1" height="15.0" fill="rgb(217,17,18)" rx="2" ry="2" />
+<text  x="185.87" y="943.5" ></text>
+</g>
+<g >
+<title>drm_ioctl (1,571,779,786 samples, 0.43%)</title><rect x="136.5" y="837" width="5.0" height="15.0" fill="rgb(249,58,22)" rx="2" ry="2" />
+<text  x="139.48" y="847.5" ></text>
+</g>
+<g >
+<title>menu_select (3,413,663,274 samples, 0.93%)</title><rect x="1133.9" y="901" width="11.0" height="15.0" fill="rgb(223,9,1)" rx="2" ry="2" />
+<text  x="1136.90" y="911.5" ></text>
+</g>
+<g >
+<title>mozilla::detail::MutexImpl::unlock (57,044,075 samples, 0.02%)</title><rect x="52.0" y="949" width="0.2" height="15.0" fill="rgb(229,219,34)" rx="2" ry="2" />
+<text  x="54.98" y="959.5" ></text>
+</g>
+<g >
+<title>[firefox] (67,157,576 samples, 0.02%)</title><rect x="298.0" y="869" width="0.2" height="15.0" fill="rgb(220,130,47)" rx="2" ry="2" />
+<text  x="300.96" y="879.5" ></text>
+</g>
+<g >
+<title>worker_thread (59,185,338 samples, 0.02%)</title><rect x="387.1" y="933" width="0.2" height="15.0" fill="rgb(250,66,35)" rx="2" ry="2" />
+<text  x="390.11" y="943.5" ></text>
+</g>
+<g >
+<title>__local_bh_enable_ip (697,755,405 samples, 0.19%)</title><rect x="740.4" y="421" width="2.3" height="15.0" fill="rgb(207,115,26)" rx="2" ry="2" />
+<text  x="743.44" y="431.5" ></text>
+</g>
+<g >
+<title>fence_work (61,843,329 samples, 0.02%)</title><rect x="140.5" y="709" width="0.2" height="15.0" fill="rgb(245,162,15)" rx="2" ry="2" />
+<text  x="143.49" y="719.5" ></text>
+</g>
+<g >
+<title>__wrgsbase_inactive (47,334,391 samples, 0.01%)</title><rect x="831.6" y="965" width="0.2" height="15.0" fill="rgb(238,0,44)" rx="2" ry="2" />
+<text  x="834.64" y="975.5" ></text>
+</g>
+<g >
+<title>[unknown] (151,487,213 samples, 0.04%)</title><rect x="283.0" y="949" width="0.5" height="15.0" fill="rgb(208,34,6)" rx="2" ry="2" />
+<text  x="285.98" y="959.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (161,784,419 samples, 0.04%)</title><rect x="1170.4" y="949" width="0.6" height="15.0" fill="rgb(218,38,48)" rx="2" ry="2" />
+<text  x="1173.43" y="959.5" ></text>
+</g>
+<g >
+<title>XTranslateCoordinates (43,207,466 samples, 0.01%)</title><rect x="269.1" y="917" width="0.2" height="15.0" fill="rgb(228,26,54)" rx="2" ry="2" />
+<text  x="272.14" y="927.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (533,418,307 samples, 0.15%)</title><rect x="733.6" y="949" width="1.7" height="15.0" fill="rgb(215,5,22)" rx="2" ry="2" />
+<text  x="736.60" y="959.5" ></text>
+</g>
+<g >
+<title>[libvte-2.91.so.0.6992.0] (415,274,435 samples, 0.11%)</title><rect x="1180.2" y="837" width="1.3" height="15.0" fill="rgb(227,21,14)" rx="2" ry="2" />
+<text  x="1183.18" y="847.5" ></text>
+</g>
+<g >
+<title>i915_active_acquire (60,485,737 samples, 0.02%)</title><rect x="138.4" y="741" width="0.2" height="15.0" fill="rgb(249,175,23)" rx="2" ry="2" />
+<text  x="141.38" y="751.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (66,495,727 samples, 0.02%)</title><rect x="292.9" y="901" width="0.3" height="15.0" fill="rgb(205,204,0)" rx="2" ry="2" />
+<text  x="295.94" y="911.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (203,935,550 samples, 0.06%)</title><rect x="1177.8" y="613" width="0.7" height="15.0" fill="rgb(244,227,23)" rx="2" ry="2" />
+<text  x="1180.82" y="623.5" ></text>
+</g>
+<g >
+<title>main_loop_wait (2,979,467,999 samples, 0.81%)</title><rect x="819.1" y="901" width="9.6" height="15.0" fill="rgb(216,149,14)" rx="2" ry="2" />
+<text  x="822.14" y="911.5" ></text>
+</g>
+<g >
+<title>[unknown] (324,388,719 samples, 0.09%)</title><rect x="192.8" y="965" width="1.1" height="15.0" fill="rgb(252,197,23)" rx="2" ry="2" />
+<text  x="195.82" y="975.5" ></text>
+</g>
+<g >
+<title>dma_direct_unmap_sg (31,864,724 samples, 0.01%)</title><rect x="374.1" y="789" width="0.1" height="15.0" fill="rgb(222,209,14)" rx="2" ry="2" />
+<text  x="377.12" y="799.5" ></text>
+</g>
+<g >
+<title>skcipher_walk_done (44,176,748 samples, 0.01%)</title><rect x="431.2" y="821" width="0.2" height="15.0" fill="rgb(242,69,14)" rx="2" ry="2" />
+<text  x="434.22" y="831.5" ></text>
+</g>
+<g >
+<title>__alloc_pages_slowpath.constprop.0 (33,445,265 samples, 0.01%)</title><rect x="134.6" y="565" width="0.1" height="15.0" fill="rgb(215,121,15)" rx="2" ry="2" />
+<text  x="137.58" y="575.5" ></text>
+</g>
+<g >
+<title>tick_program_event (36,779,497 samples, 0.01%)</title><rect x="913.9" y="805" width="0.1" height="15.0" fill="rgb(232,175,40)" rx="2" ry="2" />
+<text  x="916.86" y="815.5" ></text>
+</g>
+<g >
+<title>shrink_lruvec (33,214,975 samples, 0.01%)</title><rect x="705.3" y="645" width="0.1" height="15.0" fill="rgb(253,180,28)" rx="2" ry="2" />
+<text  x="708.34" y="655.5" ></text>
+</g>
+<g >
+<title>__memcpy_avx_unaligned_erms (33,647,769 samples, 0.01%)</title><rect x="178.6" y="933" width="0.1" height="15.0" fill="rgb(225,85,47)" rx="2" ry="2" />
+<text  x="181.57" y="943.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (57,880,644 samples, 0.02%)</title><rect x="703.4" y="661" width="0.2" height="15.0" fill="rgb(211,53,9)" rx="2" ry="2" />
+<text  x="706.41" y="671.5" ></text>
+</g>
+<g >
+<title>filemap_add_folio (4,418,917,303 samples, 1.21%)</title><rect x="690.3" y="741" width="14.3" height="15.0" fill="rgb(217,126,26)" rx="2" ry="2" />
+<text  x="693.35" y="751.5" ></text>
+</g>
+<g >
+<title>copy_page (214,552,134 samples, 0.06%)</title><rect x="345.2" y="821" width="0.7" height="15.0" fill="rgb(209,57,36)" rx="2" ry="2" />
+<text  x="348.18" y="831.5" ></text>
+</g>
+<g >
+<title>enqueue_hrtimer (128,838,499 samples, 0.04%)</title><rect x="1159.3" y="869" width="0.4" height="15.0" fill="rgb(217,71,38)" rx="2" ry="2" />
+<text  x="1162.26" y="879.5" ></text>
+</g>
+<g >
+<title>iomap_finish_ioend (279,937,777 samples, 0.08%)</title><rect x="392.7" y="853" width="0.9" height="15.0" fill="rgb(205,161,11)" rx="2" ry="2" />
+<text  x="395.75" y="863.5" ></text>
+</g>
+<g >
+<title>[libEGL_mesa.so.0.0.0] (72,575,858 samples, 0.02%)</title><rect x="132.4" y="805" width="0.3" height="15.0" fill="rgb(226,131,40)" rx="2" ry="2" />
+<text  x="135.42" y="815.5" ></text>
+</g>
+<g >
+<title>miDoCopy (43,145,183 samples, 0.01%)</title><rect x="213.7" y="901" width="0.2" height="15.0" fill="rgb(212,97,35)" rx="2" ry="2" />
+<text  x="216.72" y="911.5" ></text>
+</g>
+<g >
+<title>malloc (184,043,864 samples, 0.05%)</title><rect x="36.9" y="933" width="0.6" height="15.0" fill="rgb(237,49,3)" rx="2" ry="2" />
+<text  x="39.91" y="943.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (471,327,276 samples, 0.13%)</title><rect x="608.5" y="853" width="1.5" height="15.0" fill="rgb(221,32,15)" rx="2" ry="2" />
+<text  x="611.51" y="863.5" ></text>
+</g>
+<g >
+<title>do_iter_write (36,050,528 samples, 0.01%)</title><rect x="1165.3" y="661" width="0.1" height="15.0" fill="rgb(223,131,3)" rx="2" ry="2" />
+<text  x="1168.32" y="671.5" ></text>
+</g>
+<g >
+<title>wget (97,386,360 samples, 0.03%)</title><rect x="1167.1" y="981" width="0.3" height="15.0" fill="rgb(208,48,44)" rx="2" ry="2" />
+<text  x="1170.09" y="991.5" ></text>
+</g>
+<g >
+<title>__rcu_read_unlock (37,459,761 samples, 0.01%)</title><rect x="697.8" y="693" width="0.1" height="15.0" fill="rgb(216,156,28)" rx="2" ry="2" />
+<text  x="700.75" y="703.5" ></text>
+</g>
+<g >
+<title>nft_do_chain (147,091,637 samples, 0.04%)</title><rect x="323.8" y="645" width="0.5" height="15.0" fill="rgb(205,215,1)" rx="2" ry="2" />
+<text  x="326.82" y="655.5" ></text>
+</g>
+<g >
+<title>_PyRun_AnyFileObject (67,754,465 samples, 0.02%)</title><rect x="244.1" y="933" width="0.2" height="15.0" fill="rgb(223,115,3)" rx="2" ry="2" />
+<text  x="247.09" y="943.5" ></text>
+</g>
+<g >
+<title>shrink_lruvec (5,269,913,588 samples, 1.44%)</title><rect x="353.5" y="885" width="17.0" height="15.0" fill="rgb(219,80,8)" rx="2" ry="2" />
+<text  x="356.50" y="895.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (107,144,451 samples, 0.03%)</title><rect x="1172.2" y="197" width="0.4" height="15.0" fill="rgb(214,76,31)" rx="2" ry="2" />
+<text  x="1175.25" y="207.5" ></text>
+</g>
+<g >
+<title>__mod_timer (44,932,287 samples, 0.01%)</title><rect x="634.2" y="357" width="0.2" height="15.0" fill="rgb(244,46,44)" rx="2" ry="2" />
+<text  x="637.23" y="367.5" ></text>
+</g>
+<g >
+<title>fwtable_write32 (41,202,005 samples, 0.01%)</title><rect x="232.3" y="597" width="0.1" height="15.0" fill="rgb(230,80,51)" rx="2" ry="2" />
+<text  x="235.28" y="607.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (39,196,222 samples, 0.01%)</title><rect x="152.7" y="869" width="0.1" height="15.0" fill="rgb(223,212,16)" rx="2" ry="2" />
+<text  x="155.72" y="879.5" ></text>
+</g>
+<g >
+<title>__softirqentry_text_start (1,435,980,834 samples, 0.39%)</title><rect x="347.1" y="901" width="4.6" height="15.0" fill="rgb(244,21,14)" rx="2" ry="2" />
+<text  x="350.08" y="911.5" ></text>
+</g>
+<g >
+<title>hrtimer_interrupt (381,672,708 samples, 0.10%)</title><rect x="833.4" y="789" width="1.3" height="15.0" fill="rgb(221,162,22)" rx="2" ry="2" />
+<text  x="836.44" y="799.5" ></text>
+</g>
+<g >
+<title>intel_atomic_check (36,780,413 samples, 0.01%)</title><rect x="232.1" y="821" width="0.1" height="15.0" fill="rgb(229,168,3)" rx="2" ry="2" />
+<text  x="235.12" y="831.5" ></text>
+</g>
+<g >
+<title>__vdso_clock_gettime (50,838,871 samples, 0.01%)</title><rect x="666.8" y="965" width="0.2" height="15.0" fill="rgb(208,82,24)" rx="2" ry="2" />
+<text  x="669.84" y="975.5" ></text>
+</g>
+<g >
+<title>g_main_context_dispatch (1,030,434,688 samples, 0.28%)</title><rect x="1171.4" y="901" width="3.3" height="15.0" fill="rgb(216,163,53)" rx="2" ry="2" />
+<text  x="1174.36" y="911.5" ></text>
+</g>
+<g >
+<title>[libcurl.so.4.8.0] (2,457,688,123 samples, 0.67%)</title><rect x="649.1" y="741" width="7.9" height="15.0" fill="rgb(228,64,39)" rx="2" ry="2" />
+<text  x="652.11" y="751.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (336,646,208 samples, 0.09%)</title><rect x="85.8" y="917" width="1.1" height="15.0" fill="rgb(247,19,29)" rx="2" ry="2" />
+<text  x="88.79" y="927.5" ></text>
+</g>
+<g >
+<title>get_mem_cgroup_from_mm (153,893,497 samples, 0.04%)</title><rect x="694.8" y="693" width="0.5" height="15.0" fill="rgb(226,19,39)" rx="2" ry="2" />
+<text  x="697.76" y="703.5" ></text>
+</g>
+<g >
+<title>[libgdk-3.so.0.2404.30] (252,658,618 samples, 0.07%)</title><rect x="1186.6" y="837" width="0.8" height="15.0" fill="rgb(242,74,54)" rx="2" ry="2" />
+<text  x="1189.62" y="847.5" ></text>
+</g>
+<g >
+<title>__writeback_inodes_wb (639,677,942 samples, 0.17%)</title><rect x="476.9" y="869" width="2.1" height="15.0" fill="rgb(241,26,12)" rx="2" ry="2" />
+<text  x="479.90" y="879.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc_node (64,240,844 samples, 0.02%)</title><rect x="47.6" y="773" width="0.2" height="15.0" fill="rgb(234,211,38)" rx="2" ry="2" />
+<text  x="50.58" y="783.5" ></text>
+</g>
+<g >
+<title>[firefox] (35,261,951 samples, 0.01%)</title><rect x="53.0" y="901" width="0.1" height="15.0" fill="rgb(217,133,28)" rx="2" ry="2" />
+<text  x="55.98" y="911.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (51,565,403 samples, 0.01%)</title><rect x="277.4" y="757" width="0.2" height="15.0" fill="rgb(253,213,4)" rx="2" ry="2" />
+<text  x="280.39" y="767.5" ></text>
+</g>
+<g >
+<title>[libspa-alsa.so] (46,057,830 samples, 0.01%)</title><rect x="733.2" y="917" width="0.2" height="15.0" fill="rgb(251,202,50)" rx="2" ry="2" />
+<text  x="736.21" y="927.5" ></text>
+</g>
+<g >
+<title>__GI___ioctl (272,341,580 samples, 0.07%)</title><rect x="1164.3" y="741" width="0.8" height="15.0" fill="rgb(223,150,3)" rx="2" ry="2" />
+<text  x="1167.27" y="751.5" ></text>
+</g>
+<g >
+<title>ieee80211_tx_status_ext (45,067,376 samples, 0.01%)</title><rect x="310.9" y="709" width="0.1" height="15.0" fill="rgb(218,173,20)" rx="2" ry="2" />
+<text  x="313.86" y="719.5" ></text>
+</g>
+<g >
+<title>sock_wfree (52,231,108 samples, 0.01%)</title><rect x="39.8" y="757" width="0.2" height="15.0" fill="rgb(245,145,26)" rx="2" ry="2" />
+<text  x="42.85" y="767.5" ></text>
+</g>
+<g >
+<title>iwl_hcmd_names_cmp (105,764,314 samples, 0.03%)</title><rect x="310.0" y="741" width="0.3" height="15.0" fill="rgb(216,90,16)" rx="2" ry="2" />
+<text  x="313.01" y="751.5" ></text>
+</g>
+<g >
+<title>iomap_writepages (438,252,674 samples, 0.12%)</title><rect x="523.3" y="789" width="1.4" height="15.0" fill="rgb(212,78,9)" rx="2" ry="2" />
+<text  x="526.31" y="799.5" ></text>
+</g>
+<g >
+<title>call_timer_fn (98,795,878 samples, 0.03%)</title><rect x="904.3" y="773" width="0.3" height="15.0" fill="rgb(233,17,42)" rx="2" ry="2" />
+<text  x="907.29" y="783.5" ></text>
+</g>
+<g >
+<title>memset_erms (68,766,310 samples, 0.02%)</title><rect x="598.4" y="853" width="0.2" height="15.0" fill="rgb(229,1,10)" rx="2" ry="2" />
+<text  x="601.42" y="863.5" ></text>
+</g>
+<g >
+<title>pick_next_task_fair (56,453,826 samples, 0.02%)</title><rect x="295.9" y="821" width="0.2" height="15.0" fill="rgb(244,14,44)" rx="2" ry="2" />
+<text  x="298.95" y="831.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_irq_work (75,682,873 samples, 0.02%)</title><rect x="896.4" y="805" width="0.3" height="15.0" fill="rgb(211,223,19)" rx="2" ry="2" />
+<text  x="899.44" y="815.5" ></text>
+</g>
+<g >
+<title>[libxcb.so.1.1.0] (523,482,224 samples, 0.14%)</title><rect x="19.0" y="853" width="1.7" height="15.0" fill="rgb(236,65,13)" rx="2" ry="2" />
+<text  x="22.01" y="863.5" ></text>
+</g>
+<g >
+<title>__GI___write (83,646,925 samples, 0.02%)</title><rect x="737.9" y="661" width="0.3" height="15.0" fill="rgb(229,117,37)" rx="2" ry="2" />
+<text  x="740.90" y="671.5" ></text>
+</g>
+<g >
+<title>rmqueue_bulk (37,243,016 samples, 0.01%)</title><rect x="437.5" y="821" width="0.1" height="15.0" fill="rgb(218,103,33)" rx="2" ry="2" />
+<text  x="440.46" y="831.5" ></text>
+</g>
+<g >
+<title>futex_wake (67,487,594 samples, 0.02%)</title><rect x="173.7" y="853" width="0.2" height="15.0" fill="rgb(205,148,35)" rx="2" ry="2" />
+<text  x="176.69" y="863.5" ></text>
+</g>
+<g >
+<title>shmem_read_mapping_page_gfp (343,691,874 samples, 0.09%)</title><rect x="236.3" y="821" width="1.1" height="15.0" fill="rgb(240,31,3)" rx="2" ry="2" />
+<text  x="239.34" y="831.5" ></text>
+</g>
+<g >
+<title>_aesni_enc4 (1,270,210,398 samples, 0.35%)</title><rect x="488.4" y="805" width="4.1" height="15.0" fill="rgb(218,34,13)" rx="2" ry="2" />
+<text  x="491.45" y="815.5" ></text>
+</g>
+<g >
+<title>xts_crypt (2,429,639,679 samples, 0.66%)</title><rect x="404.3" y="837" width="7.9" height="15.0" fill="rgb(230,133,10)" rx="2" ry="2" />
+<text  x="407.35" y="847.5" ></text>
+</g>
+<g >
+<title>i915_gem_shrink (1,498,419,376 samples, 0.41%)</title><rect x="373.9" y="837" width="4.8" height="15.0" fill="rgb(238,11,29)" rx="2" ry="2" />
+<text  x="376.89" y="847.5" ></text>
+</g>
+<g >
+<title>[unknown] (67,223,379 samples, 0.02%)</title><rect x="179.5" y="949" width="0.2" height="15.0" fill="rgb(228,98,48)" rx="2" ry="2" />
+<text  x="182.46" y="959.5" ></text>
+</g>
+<g >
+<title>sysvec_apic_timer_interrupt (123,826,301 samples, 0.03%)</title><rect x="94.8" y="933" width="0.4" height="15.0" fill="rgb(246,207,10)" rx="2" ry="2" />
+<text  x="97.76" y="943.5" ></text>
+</g>
+<g >
+<title>do_softirq.part.0 (94,569,982 samples, 0.03%)</title><rect x="137.5" y="757" width="0.3" height="15.0" fill="rgb(253,204,19)" rx="2" ry="2" />
+<text  x="140.52" y="767.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (53,806,618 samples, 0.01%)</title><rect x="227.2" y="949" width="0.2" height="15.0" fill="rgb(216,30,54)" rx="2" ry="2" />
+<text  x="230.21" y="959.5" ></text>
+</g>
+<g >
+<title>[firefox] (37,690,778 samples, 0.01%)</title><rect x="174.2" y="885" width="0.1" height="15.0" fill="rgb(217,89,23)" rx="2" ry="2" />
+<text  x="177.21" y="895.5" ></text>
+</g>
+<g >
+<title>__sendmsg (145,162,032 samples, 0.04%)</title><rect x="266.6" y="949" width="0.4" height="15.0" fill="rgb(240,97,39)" rx="2" ry="2" />
+<text  x="269.55" y="959.5" ></text>
+</g>
+<g >
+<title>i915_active_add_request (154,990,544 samples, 0.04%)</title><rect x="138.1" y="757" width="0.5" height="15.0" fill="rgb(224,55,16)" rx="2" ry="2" />
+<text  x="141.08" y="767.5" ></text>
+</g>
+<g >
+<title>malloc (82,057,842 samples, 0.02%)</title><rect x="24.5" y="933" width="0.3" height="15.0" fill="rgb(252,200,25)" rx="2" ry="2" />
+<text  x="27.52" y="943.5" ></text>
+</g>
+<g >
+<title>write_cache_pages (436,870,820 samples, 0.12%)</title><rect x="555.6" y="773" width="1.4" height="15.0" fill="rgb(235,144,17)" rx="2" ry="2" />
+<text  x="558.62" y="783.5" ></text>
+</g>
+<g >
+<title>preempt_count_add (38,752,414 samples, 0.01%)</title><rect x="334.1" y="869" width="0.1" height="15.0" fill="rgb(237,12,12)" rx="2" ry="2" />
+<text  x="337.10" y="879.5" ></text>
+</g>
+<g >
+<title>event_base_loop (1,429,575,107 samples, 0.39%)</title><rect x="32.1" y="949" width="4.6" height="15.0" fill="rgb(240,189,32)" rx="2" ry="2" />
+<text  x="35.09" y="959.5" ></text>
+</g>
+<g >
+<title>ksys_write (36,343,058 samples, 0.01%)</title><rect x="275.1" y="885" width="0.2" height="15.0" fill="rgb(225,95,16)" rx="2" ry="2" />
+<text  x="278.14" y="895.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (384,732,530 samples, 0.10%)</title><rect x="221.8" y="837" width="1.3" height="15.0" fill="rgb(215,222,29)" rx="2" ry="2" />
+<text  x="224.85" y="847.5" ></text>
+</g>
+<g >
+<title>[libxul.so] (6,935,293,094 samples, 1.89%)</title><rect x="248.6" y="965" width="22.3" height="15.0" fill="rgb(228,23,14)" rx="2" ry="2" />
+<text  x="251.57" y="975.5" >[..</text>
+</g>
+<g >
+<title>iomap_finish_ioend (357,113,100 samples, 0.10%)</title><rect x="389.1" y="853" width="1.1" height="15.0" fill="rgb(206,146,11)" rx="2" ry="2" />
+<text  x="392.09" y="863.5" ></text>
+</g>
+<g >
+<title>try_to_wake_up (100,759,232 samples, 0.03%)</title><rect x="815.3" y="757" width="0.3" height="15.0" fill="rgb(245,93,53)" rx="2" ry="2" />
+<text  x="818.29" y="767.5" ></text>
+</g>
+<g >
+<title>[xfdesktop] (39,096,757 samples, 0.01%)</title><rect x="1185.5" y="837" width="0.2" height="15.0" fill="rgb(219,180,30)" rx="2" ry="2" />
+<text  x="1188.55" y="847.5" ></text>
+</g>
+<g >
+<title>find_get_pages_range_tag (44,944,441 samples, 0.01%)</title><rect x="597.0" y="741" width="0.1" height="15.0" fill="rgb(210,9,23)" rx="2" ry="2" />
+<text  x="599.96" y="751.5" ></text>
+</g>
+<g >
+<title>shmem_alloc_and_acct_folio (45,311,713 samples, 0.01%)</title><rect x="134.6" y="645" width="0.1" height="15.0" fill="rgb(249,141,14)" rx="2" ry="2" />
+<text  x="137.58" y="655.5" ></text>
+</g>
+<g >
+<title>xfs_vn_update_time (341,353,408 samples, 0.09%)</title><rect x="721.7" y="757" width="1.1" height="15.0" fill="rgb(246,35,14)" rx="2" ry="2" />
+<text  x="724.72" y="767.5" ></text>
+</g>
+<g >
+<title>do_sigaction (67,087,460 samples, 0.02%)</title><rect x="647.9" y="693" width="0.2" height="15.0" fill="rgb(218,159,46)" rx="2" ry="2" />
+<text  x="650.87" y="703.5" ></text>
+</g>
+<g >
+<title>[libglib-2.0.so.0.7303.0] (254,127,346 samples, 0.07%)</title><rect x="281.0" y="885" width="0.8" height="15.0" fill="rgb(207,160,48)" rx="2" ry="2" />
+<text  x="284.00" y="895.5" ></text>
+</g>
+<g >
+<title>preempt_count_add (49,807,402 samples, 0.01%)</title><rect x="566.1" y="805" width="0.2" height="15.0" fill="rgb(245,218,19)" rx="2" ry="2" />
+<text  x="569.09" y="815.5" ></text>
+</g>
+<g >
+<title>kworker/u16:12- (6,396,512,310 samples, 1.75%)</title><rect x="440.1" y="981" width="20.6" height="15.0" fill="rgb(214,229,53)" rx="2" ry="2" />
+<text  x="443.13" y="991.5" ></text>
+</g>
+<g >
+<title>[unknown] (31,706,602 samples, 0.01%)</title><rect x="181.0" y="965" width="0.1" height="15.0" fill="rgb(251,138,36)" rx="2" ry="2" />
+<text  x="183.98" y="975.5" ></text>
+</g>
+<g >
+<title>nft_lookup_eval (51,663,971 samples, 0.01%)</title><rect x="637.8" y="453" width="0.2" height="15.0" fill="rgb(209,154,25)" rx="2" ry="2" />
+<text  x="640.78" y="463.5" ></text>
+</g>
+<g >
+<title>ieee80211_tx_dequeue (443,453,777 samples, 0.12%)</title><rect x="631.9" y="421" width="1.4" height="15.0" fill="rgb(245,225,35)" rx="2" ry="2" />
+<text  x="634.86" y="431.5" ></text>
+</g>
+<g >
+<title>crypt_convert (6,826,169,209 samples, 1.86%)</title><rect x="479.2" y="885" width="21.9" height="15.0" fill="rgb(249,195,12)" rx="2" ry="2" />
+<text  x="482.15" y="895.5" >c..</text>
+</g>
+<g >
+<title>do_writepages (438,511,554 samples, 0.12%)</title><rect x="523.3" y="821" width="1.4" height="15.0" fill="rgb(235,83,32)" rx="2" ry="2" />
+<text  x="526.31" y="831.5" ></text>
+</g>
+<g >
+<title>xas_descend (146,849,519 samples, 0.04%)</title><rect x="362.4" y="789" width="0.5" height="15.0" fill="rgb(249,19,44)" rx="2" ry="2" />
+<text  x="365.45" y="799.5" ></text>
+</g>
+<g >
+<title>[unknown] (32,126,925 samples, 0.01%)</title><rect x="17.0" y="949" width="0.1" height="15.0" fill="rgb(213,28,12)" rx="2" ry="2" />
+<text  x="20.00" y="959.5" ></text>
+</g>
+<g >
+<title>[xfce4-terminal] (1,701,716,203 samples, 0.46%)</title><rect x="1176.8" y="965" width="5.4" height="15.0" fill="rgb(213,192,33)" rx="2" ry="2" />
+<text  x="1179.75" y="975.5" ></text>
+</g>
+<g >
+<title>[ssh] (50,857,524 samples, 0.01%)</title><rect x="830.4" y="853" width="0.2" height="15.0" fill="rgb(231,194,9)" rx="2" ry="2" />
+<text  x="833.42" y="863.5" ></text>
+</g>
+<g >
+<title>start_kernel (16,597,204,628 samples, 4.53%)</title><rect x="831.9" y="949" width="53.5" height="15.0" fill="rgb(224,16,19)" rx="2" ry="2" />
+<text  x="834.94" y="959.5" >start..</text>
+</g>
+<g >
+<title>event_notifier_set (379,068,290 samples, 0.10%)</title><rect x="814.8" y="901" width="1.3" height="15.0" fill="rgb(235,65,18)" rx="2" ry="2" />
+<text  x="817.84" y="911.5" ></text>
+</g>
+<g >
+<title>aio_set_fd_handler (131,810,599 samples, 0.04%)</title><rect x="737.8" y="709" width="0.5" height="15.0" fill="rgb(229,129,49)" rx="2" ry="2" />
+<text  x="740.83" y="719.5" ></text>
+</g>
+<g >
+<title>[libglamoregl.so] (936,557,390 samples, 0.26%)</title><rect x="210.8" y="917" width="3.1" height="15.0" fill="rgb(237,211,2)" rx="2" ry="2" />
+<text  x="213.85" y="927.5" ></text>
+</g>
+<g >
+<title>__folio_mark_dirty (281,217,505 samples, 0.08%)</title><rect x="758.7" y="725" width="0.9" height="15.0" fill="rgb(254,19,12)" rx="2" ry="2" />
+<text  x="761.65" y="735.5" ></text>
+</g>
+<g >
+<title>update_load_avg (129,267,885 samples, 0.04%)</title><rect x="1149.6" y="837" width="0.4" height="15.0" fill="rgb(215,154,11)" rx="2" ry="2" />
+<text  x="1152.59" y="847.5" ></text>
+</g>
+<g >
+<title>tcp_recvmsg_locked (52,523,373 samples, 0.01%)</title><rect x="658.4" y="725" width="0.1" height="15.0" fill="rgb(247,102,37)" rx="2" ry="2" />
+<text  x="661.38" y="735.5" ></text>
+</g>
+<g >
+<title>ct_idle_enter (50,232,525 samples, 0.01%)</title><rect x="916.0" y="869" width="0.1" height="15.0" fill="rgb(235,144,17)" rx="2" ry="2" />
+<text  x="918.96" y="879.5" ></text>
+</g>
+<g >
+<title>perf_poll (240,128,178 samples, 0.07%)</title><rect x="726.5" y="869" width="0.8" height="15.0" fill="rgb(236,136,41)" rx="2" ry="2" />
+<text  x="729.52" y="879.5" ></text>
+</g>
+<g >
+<title>schedule_hrtimeout_range_clock (86,497,955 samples, 0.02%)</title><rect x="265.7" y="869" width="0.3" height="15.0" fill="rgb(238,105,49)" rx="2" ry="2" />
+<text  x="268.70" y="879.5" ></text>
+</g>
+<g >
+<title>__clock_nanosleep (49,161,394 samples, 0.01%)</title><rect x="25.9" y="917" width="0.1" height="15.0" fill="rgb(247,227,41)" rx="2" ry="2" />
+<text  x="28.88" y="927.5" ></text>
+</g>
+<g >
+<title>iwl_pcie_rx_allocator_work (124,025,033 samples, 0.03%)</title><rect x="613.2" y="901" width="0.4" height="15.0" fill="rgb(230,47,9)" rx="2" ry="2" />
+<text  x="616.17" y="911.5" ></text>
+</g>
+<g >
+<title>__schedule (34,939,838 samples, 0.01%)</title><rect x="1183.4" y="869" width="0.1" height="15.0" fill="rgb(218,209,14)" rx="2" ry="2" />
+<text  x="1186.39" y="879.5" ></text>
+</g>
+<g >
+<title>simd_skcipher_encrypt (164,241,986 samples, 0.04%)</title><rect x="415.3" y="853" width="0.6" height="15.0" fill="rgb(222,94,46)" rx="2" ry="2" />
+<text  x="418.34" y="863.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (59,837,884 samples, 0.02%)</title><rect x="40.8" y="885" width="0.2" height="15.0" fill="rgb(221,122,45)" rx="2" ry="2" />
+<text  x="43.79" y="895.5" ></text>
+</g>
+<g >
+<title>iwl_pcie_rx_alloc_page (126,833,213 samples, 0.03%)</title><rect x="614.1" y="885" width="0.4" height="15.0" fill="rgb(208,0,14)" rx="2" ry="2" />
+<text  x="617.07" y="895.5" ></text>
+</g>
+<g >
+<title>epoll_wait (167,572,997 samples, 0.05%)</title><rect x="43.3" y="917" width="0.6" height="15.0" fill="rgb(209,216,22)" rx="2" ry="2" />
+<text  x="46.31" y="927.5" ></text>
+</g>
+<g >
+<title>kernel_fpu_begin_mask (183,434,839 samples, 0.05%)</title><rect x="515.1" y="821" width="0.6" height="15.0" fill="rgb(243,190,54)" rx="2" ry="2" />
+<text  x="518.10" y="831.5" ></text>
+</g>
+<g >
+<title>pick_next_task_fair (82,353,748 samples, 0.02%)</title><rect x="289.9" y="853" width="0.2" height="15.0" fill="rgb(226,88,31)" rx="2" ry="2" />
+<text  x="292.86" y="863.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (58,399,213 samples, 0.02%)</title><rect x="267.4" y="917" width="0.1" height="15.0" fill="rgb(206,197,44)" rx="2" ry="2" />
+<text  x="270.36" y="927.5" ></text>
+</g>
+<g >
+<title>put_prev_task_balance (217,331,529 samples, 0.06%)</title><rect x="338.1" y="885" width="0.7" height="15.0" fill="rgb(230,128,42)" rx="2" ry="2" />
+<text  x="341.05" y="895.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (33,195,621 samples, 0.01%)</title><rect x="31.6" y="901" width="0.1" height="15.0" fill="rgb(237,199,8)" rx="2" ry="2" />
+<text  x="34.61" y="911.5" ></text>
+</g>
+<g >
+<title>list_lru_count_one (54,508,624 samples, 0.01%)</title><rect x="378.8" y="837" width="0.2" height="15.0" fill="rgb(214,27,13)" rx="2" ry="2" />
+<text  x="381.80" y="847.5" ></text>
+</g>
+<g >
+<title>[libcrypto.so.3.0.5] (65,089,327 samples, 0.02%)</title><rect x="284.8" y="565" width="0.2" height="15.0" fill="rgb(241,184,21)" rx="2" ry="2" />
+<text  x="287.77" y="575.5" ></text>
+</g>
+<g >
+<title>_regmap_read (61,747,737 samples, 0.02%)</title><rect x="895.8" y="741" width="0.2" height="15.0" fill="rgb(221,119,24)" rx="2" ry="2" />
+<text  x="898.83" y="751.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (92,153,497 samples, 0.03%)</title><rect x="35.9" y="869" width="0.3" height="15.0" fill="rgb(216,53,54)" rx="2" ry="2" />
+<text  x="38.86" y="879.5" ></text>
+</g>
+<g >
+<title>ip_sublist_rcv (577,433,021 samples, 0.16%)</title><rect x="319.6" y="693" width="1.9" height="15.0" fill="rgb(221,121,24)" rx="2" ry="2" />
+<text  x="322.63" y="703.5" ></text>
+</g>
+<g >
+<title>__softirqentry_text_start (40,275,536 samples, 0.01%)</title><rect x="1147.9" y="805" width="0.1" height="15.0" fill="rgb(227,125,20)" rx="2" ry="2" />
+<text  x="1150.89" y="815.5" ></text>
+</g>
+<g >
+<title>unix_poll (54,666,350 samples, 0.01%)</title><rect x="655.8" y="629" width="0.2" height="15.0" fill="rgb(224,12,27)" rx="2" ry="2" />
+<text  x="658.79" y="639.5" ></text>
+</g>
+<g >
+<title>[libglib-2.0.so.0.7303.0] (32,110,844 samples, 0.01%)</title><rect x="279.0" y="885" width="0.1" height="15.0" fill="rgb(218,115,32)" rx="2" ry="2" />
+<text  x="282.04" y="895.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (153,536,063 samples, 0.04%)</title><rect x="93.6" y="933" width="0.5" height="15.0" fill="rgb(223,122,38)" rx="2" ry="2" />
+<text  x="96.57" y="943.5" ></text>
+</g>
+<g >
+<title>file_modified_flags (31,164,957 samples, 0.01%)</title><rect x="725.4" y="789" width="0.1" height="15.0" fill="rgb(251,194,8)" rx="2" ry="2" />
+<text  x="728.42" y="799.5" ></text>
+</g>
+<g >
+<title>write_cache_pages (639,124,724 samples, 0.17%)</title><rect x="476.9" y="773" width="2.1" height="15.0" fill="rgb(240,205,1)" rx="2" ry="2" />
+<text  x="479.90" y="783.5" ></text>
+</g>
+<g >
+<title>handle_mm_fault (34,823,912 samples, 0.01%)</title><rect x="748.4" y="453" width="0.1" height="15.0" fill="rgb(247,12,42)" rx="2" ry="2" />
+<text  x="751.38" y="463.5" ></text>
+</g>
+<g >
+<title>gdk_window_get_root_origin (45,277,486 samples, 0.01%)</title><rect x="282.4" y="933" width="0.2" height="15.0" fill="rgb(220,59,9)" rx="2" ry="2" />
+<text  x="285.41" y="943.5" ></text>
+</g>
+<g >
+<title>pollwake (311,964,868 samples, 0.09%)</title><rect x="30.0" y="821" width="1.0" height="15.0" fill="rgb(206,140,3)" rx="2" ry="2" />
+<text  x="32.98" y="831.5" ></text>
+</g>
+<g >
+<title>get_page_from_freelist (39,360,767 samples, 0.01%)</title><rect x="237.3" y="709" width="0.1" height="15.0" fill="rgb(207,141,44)" rx="2" ry="2" />
+<text  x="240.30" y="719.5" ></text>
+</g>
+<g >
+<title>get_page_from_freelist (153,772,046 samples, 0.04%)</title><rect x="554.9" y="837" width="0.5" height="15.0" fill="rgb(246,189,43)" rx="2" ry="2" />
+<text  x="557.91" y="847.5" ></text>
+</g>
+<g >
+<title>[libglib-2.0.so.0.7303.0] (39,096,757 samples, 0.01%)</title><rect x="1185.5" y="917" width="0.2" height="15.0" fill="rgb(226,82,43)" rx="2" ry="2" />
+<text  x="1188.55" y="927.5" ></text>
+</g>
+<g >
+<title>moz_xmalloc (149,625,526 samples, 0.04%)</title><rect x="103.1" y="949" width="0.4" height="15.0" fill="rgb(218,50,22)" rx="2" ry="2" />
+<text  x="106.07" y="959.5" ></text>
+</g>
+<g >
+<title>select_task_rq_fair (88,194,445 samples, 0.02%)</title><rect x="328.0" y="517" width="0.3" height="15.0" fill="rgb(222,6,39)" rx="2" ry="2" />
+<text  x="331.03" y="527.5" ></text>
+</g>
+<g >
+<title>_aesni_enc1 (144,931,514 samples, 0.04%)</title><rect x="541.2" y="805" width="0.4" height="15.0" fill="rgb(239,85,33)" rx="2" ry="2" />
+<text  x="544.16" y="815.5" ></text>
+</g>
+<g >
+<title>tcp_recvmsg (65,774,210 samples, 0.02%)</title><rect x="658.3" y="741" width="0.2" height="15.0" fill="rgb(210,206,53)" rx="2" ry="2" />
+<text  x="661.33" y="751.5" ></text>
+</g>
+<g >
+<title>unix_stream_recvmsg (36,372,329 samples, 0.01%)</title><rect x="277.4" y="677" width="0.1" height="15.0" fill="rgb(226,208,25)" rx="2" ry="2" />
+<text  x="280.42" y="687.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (66,893,186 samples, 0.02%)</title><rect x="640.3" y="645" width="0.2" height="15.0" fill="rgb(241,103,14)" rx="2" ry="2" />
+<text  x="643.27" y="655.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_safe_stack (33,677,145 samples, 0.01%)</title><rect x="117.1" y="965" width="0.1" height="15.0" fill="rgb(232,78,5)" rx="2" ry="2" />
+<text  x="120.07" y="975.5" ></text>
+</g>
+<g >
+<title>g_main_context_query (35,729,311 samples, 0.01%)</title><rect x="102.2" y="917" width="0.1" height="15.0" fill="rgb(206,134,23)" rx="2" ry="2" />
+<text  x="105.18" y="927.5" ></text>
+</g>
+<g >
+<title>__folio_end_writeback (217,780,896 samples, 0.06%)</title><rect x="387.4" y="821" width="0.7" height="15.0" fill="rgb(243,78,51)" rx="2" ry="2" />
+<text  x="390.43" y="831.5" ></text>
+</g>
+<g >
+<title>[libgdk-3.so.0.2404.30] (33,893,083 samples, 0.01%)</title><rect x="282.3" y="917" width="0.1" height="15.0" fill="rgb(221,138,38)" rx="2" ry="2" />
+<text  x="285.30" y="927.5" ></text>
+</g>
+<g >
+<title>__schedule (40,298,988 samples, 0.01%)</title><rect x="829.8" y="869" width="0.1" height="15.0" fill="rgb(229,1,33)" rx="2" ry="2" />
+<text  x="832.81" y="879.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (42,845,667 samples, 0.01%)</title><rect x="739.0" y="613" width="0.2" height="15.0" fill="rgb(220,107,19)" rx="2" ry="2" />
+<text  x="742.02" y="623.5" ></text>
+</g>
+<g >
+<title>memcpy_erms (32,287,024 samples, 0.01%)</title><rect x="532.7" y="869" width="0.1" height="15.0" fill="rgb(242,36,15)" rx="2" ry="2" />
+<text  x="535.72" y="879.5" ></text>
+</g>
+<g >
+<title>copy_user_enhanced_fast_string (318,862,233 samples, 0.09%)</title><rect x="751.8" y="741" width="1.0" height="15.0" fill="rgb(208,181,47)" rx="2" ry="2" />
+<text  x="754.82" y="751.5" ></text>
+</g>
+<g >
+<title>do_writepages (731,696,513 samples, 0.20%)</title><rect x="437.7" y="821" width="2.4" height="15.0" fill="rgb(240,124,39)" rx="2" ry="2" />
+<text  x="440.73" y="831.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (195,329,537 samples, 0.05%)</title><rect x="522.5" y="853" width="0.7" height="15.0" fill="rgb(213,155,20)" rx="2" ry="2" />
+<text  x="525.53" y="863.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (114,480,191 samples, 0.03%)</title><rect x="214.6" y="821" width="0.4" height="15.0" fill="rgb(215,56,42)" rx="2" ry="2" />
+<text  x="217.64" y="831.5" ></text>
+</g>
+<g >
+<title>[unknown] (33,954,791 samples, 0.01%)</title><rect x="53.3" y="949" width="0.1" height="15.0" fill="rgb(249,21,49)" rx="2" ry="2" />
+<text  x="56.33" y="959.5" ></text>
+</g>
+<g >
+<title>dev_hard_start_xmit (45,775,479 samples, 0.01%)</title><rect x="740.2" y="405" width="0.2" height="15.0" fill="rgb(252,94,38)" rx="2" ry="2" />
+<text  x="743.23" y="415.5" ></text>
+</g>
+<g >
+<title>__engine_park (36,022,348 samples, 0.01%)</title><rect x="393.8" y="885" width="0.1" height="15.0" fill="rgb(245,140,32)" rx="2" ry="2" />
+<text  x="396.77" y="895.5" ></text>
+</g>
+<g >
+<title>x86_pmu_disable (39,048,624 samples, 0.01%)</title><rect x="911.8" y="709" width="0.1" height="15.0" fill="rgb(252,3,19)" rx="2" ry="2" />
+<text  x="914.81" y="719.5" ></text>
+</g>
+<g >
+<title>[libglib-2.0.so.0.7303.0] (1,074,010,084 samples, 0.29%)</title><rect x="1171.3" y="917" width="3.5" height="15.0" fill="rgb(246,223,45)" rx="2" ry="2" />
+<text  x="1174.31" y="927.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (48,411,522 samples, 0.01%)</title><rect x="717.3" y="709" width="0.2" height="15.0" fill="rgb(220,125,32)" rx="2" ry="2" />
+<text  x="720.30" y="719.5" ></text>
+</g>
+<g >
+<title>xas_create (268,678,831 samples, 0.07%)</title><rect x="362.1" y="805" width="0.8" height="15.0" fill="rgb(228,151,15)" rx="2" ry="2" />
+<text  x="365.05" y="815.5" ></text>
+</g>
+<g >
+<title>[libxul.so] (2,130,040,431 samples, 0.58%)</title><rect x="45.3" y="965" width="6.9" height="15.0" fill="rgb(214,69,38)" rx="2" ry="2" />
+<text  x="48.31" y="975.5" ></text>
+</g>
+<g >
+<title>ct_nmi_exit (64,746,184 samples, 0.02%)</title><rect x="899.2" y="837" width="0.2" height="15.0" fill="rgb(208,168,14)" rx="2" ry="2" />
+<text  x="902.15" y="847.5" ></text>
+</g>
+<g >
+<title>folio_end_writeback (45,417,521 samples, 0.01%)</title><rect x="396.2" y="837" width="0.1" height="15.0" fill="rgb(214,61,36)" rx="2" ry="2" />
+<text  x="399.17" y="847.5" ></text>
+</g>
+<g >
+<title>ip_sublist_rcv_finish (1,904,470,973 samples, 0.52%)</title><rect x="322.9" y="709" width="6.1" height="15.0" fill="rgb(231,180,46)" rx="2" ry="2" />
+<text  x="325.88" y="719.5" ></text>
+</g>
+<g >
+<title>[xfwm4] (232,274,818 samples, 0.06%)</title><rect x="1186.7" y="821" width="0.7" height="15.0" fill="rgb(227,100,2)" rx="2" ry="2" />
+<text  x="1189.66" y="831.5" ></text>
+</g>
+<g >
+<title>__memcpy_avx_unaligned_erms (112,337,964 samples, 0.03%)</title><rect x="146.2" y="949" width="0.3" height="15.0" fill="rgb(252,1,25)" rx="2" ry="2" />
+<text  x="149.18" y="959.5" ></text>
+</g>
+<g >
+<title>mod_lruvec_page_state (88,005,725 samples, 0.02%)</title><rect x="572.2" y="741" width="0.3" height="15.0" fill="rgb(236,158,49)" rx="2" ry="2" />
+<text  x="575.23" y="751.5" ></text>
+</g>
+<g >
+<title>enqueue_task_fair (97,955,531 samples, 0.03%)</title><rect x="881.4" y="805" width="0.3" height="15.0" fill="rgb(219,40,38)" rx="2" ry="2" />
+<text  x="884.40" y="815.5" ></text>
+</g>
+<g >
+<title>kcompactd (1,794,358,851 samples, 0.49%)</title><rect x="341.1" y="933" width="5.8" height="15.0" fill="rgb(220,61,11)" rx="2" ry="2" />
+<text  x="344.13" y="943.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (35,023,005 samples, 0.01%)</title><rect x="625.3" y="469" width="0.1" height="15.0" fill="rgb(219,92,5)" rx="2" ry="2" />
+<text  x="628.31" y="479.5" ></text>
+</g>
+<g >
+<title>hrtimer_interrupt (2,742,097,436 samples, 0.75%)</title><rect x="905.2" y="821" width="8.8" height="15.0" fill="rgb(238,55,50)" rx="2" ry="2" />
+<text  x="908.15" y="831.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (1,559,368,940 samples, 0.43%)</title><rect x="525.7" y="853" width="5.0" height="15.0" fill="rgb(232,134,18)" rx="2" ry="2" />
+<text  x="528.69" y="863.5" ></text>
+</g>
+<g >
+<title>tcp_write_xmit (1,239,838,758 samples, 0.34%)</title><rect x="739.8" y="517" width="4.0" height="15.0" fill="rgb(226,177,44)" rx="2" ry="2" />
+<text  x="742.79" y="527.5" ></text>
+</g>
+<g >
+<title>kthread (12,396,469,477 samples, 3.38%)</title><rect x="299.4" y="949" width="39.9" height="15.0" fill="rgb(233,2,43)" rx="2" ry="2" />
+<text  x="302.43" y="959.5" >kth..</text>
+</g>
+<g >
+<title>__list_del_entry_valid (37,415,291 samples, 0.01%)</title><rect x="368.0" y="821" width="0.1" height="15.0" fill="rgb(216,40,37)" rx="2" ry="2" />
+<text  x="370.99" y="831.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (91,903,631 samples, 0.03%)</title><rect x="1163.6" y="629" width="0.3" height="15.0" fill="rgb(226,165,25)" rx="2" ry="2" />
+<text  x="1166.64" y="639.5" ></text>
+</g>
+<g >
+<title>xcb_flush (116,358,948 samples, 0.03%)</title><rect x="145.1" y="869" width="0.4" height="15.0" fill="rgb(233,90,27)" rx="2" ry="2" />
+<text  x="148.11" y="879.5" ></text>
+</g>
+<g >
+<title>iomap_do_writepage (395,416,570 samples, 0.11%)</title><rect x="477.6" y="757" width="1.2" height="15.0" fill="rgb(231,176,24)" rx="2" ry="2" />
+<text  x="480.56" y="767.5" ></text>
+</g>
+<g >
+<title>__mod_memcg_lruvec_state (36,472,398 samples, 0.01%)</title><rect x="477.3" y="709" width="0.1" height="15.0" fill="rgb(230,174,30)" rx="2" ry="2" />
+<text  x="480.31" y="719.5" ></text>
+</g>
+<g >
+<title>kernel_fpu_begin_mask (189,946,492 samples, 0.05%)</title><rect x="586.8" y="821" width="0.6" height="15.0" fill="rgb(248,217,25)" rx="2" ry="2" />
+<text  x="589.77" y="831.5" ></text>
+</g>
+<g >
+<title>wb_writeback (731,963,360 samples, 0.20%)</title><rect x="437.7" y="885" width="2.4" height="15.0" fill="rgb(216,69,21)" rx="2" ry="2" />
+<text  x="440.73" y="895.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (36,165,606 samples, 0.01%)</title><rect x="1172.3" y="37" width="0.1" height="15.0" fill="rgb(240,45,36)" rx="2" ry="2" />
+<text  x="1175.31" y="47.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (812,088,878 samples, 0.22%)</title><rect x="1171.5" y="565" width="2.6" height="15.0" fill="rgb(241,225,33)" rx="2" ry="2" />
+<text  x="1174.51" y="575.5" ></text>
+</g>
+<g >
+<title>enqueue_task (192,521,234 samples, 0.05%)</title><rect x="881.4" y="821" width="0.6" height="15.0" fill="rgb(245,115,47)" rx="2" ry="2" />
+<text  x="884.38" y="831.5" ></text>
+</g>
+<g >
+<title>xts_crypt (2,711,658,523 samples, 0.74%)</title><rect x="485.9" y="837" width="8.7" height="15.0" fill="rgb(213,183,1)" rx="2" ry="2" />
+<text  x="488.90" y="847.5" ></text>
+</g>
+<g >
+<title>unix_stream_read_actor (52,318,087 samples, 0.01%)</title><rect x="40.2" y="805" width="0.2" height="15.0" fill="rgb(237,110,25)" rx="2" ry="2" />
+<text  x="43.21" y="815.5" ></text>
+</g>
+<g >
+<title>XPending (346,366,292 samples, 0.09%)</title><rect x="279.8" y="869" width="1.1" height="15.0" fill="rgb(224,160,38)" rx="2" ry="2" />
+<text  x="282.78" y="879.5" ></text>
+</g>
+<g >
+<title>nf_conntrack_tcp_packet (148,458,605 samples, 0.04%)</title><rect x="330.2" y="661" width="0.5" height="15.0" fill="rgb(221,61,51)" rx="2" ry="2" />
+<text  x="333.18" y="671.5" ></text>
+</g>
+<g >
+<title>[firefox] (208,709,303 samples, 0.06%)</title><rect x="147.2" y="933" width="0.7" height="15.0" fill="rgb(254,161,46)" rx="2" ry="2" />
+<text  x="150.25" y="943.5" ></text>
+</g>
+<g >
+<title>[libspa-audioconvert.so] (103,649,030 samples, 0.03%)</title><rect x="732.7" y="901" width="0.3" height="15.0" fill="rgb(212,140,6)" rx="2" ry="2" />
+<text  x="735.70" y="911.5" ></text>
+</g>
+<g >
+<title>xfs_trans_reserve (59,604,680 samples, 0.02%)</title><rect x="722.6" y="725" width="0.2" height="15.0" fill="rgb(207,134,40)" rx="2" ry="2" />
+<text  x="725.58" y="735.5" ></text>
+</g>
+<g >
+<title>__mod_lruvec_page_state (31,747,827 samples, 0.01%)</title><rect x="368.7" y="821" width="0.1" height="15.0" fill="rgb(219,201,48)" rx="2" ry="2" />
+<text  x="371.71" y="831.5" ></text>
+</g>
+<g >
+<title>mod_lruvec_page_state (77,996,902 samples, 0.02%)</title><rect x="477.2" y="741" width="0.3" height="15.0" fill="rgb(248,30,31)" rx="2" ry="2" />
+<text  x="480.20" y="751.5" ></text>
+</g>
+<g >
+<title>[firefox] (89,134,681 samples, 0.02%)</title><rect x="49.5" y="917" width="0.3" height="15.0" fill="rgb(233,59,12)" rx="2" ry="2" />
+<text  x="52.46" y="927.5" ></text>
+</g>
+<g >
+<title>__folio_end_writeback (44,575,843 samples, 0.01%)</title><rect x="387.1" y="821" width="0.2" height="15.0" fill="rgb(211,156,27)" rx="2" ry="2" />
+<text  x="390.14" y="831.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (98,241,602 samples, 0.03%)</title><rect x="133.3" y="645" width="0.3" height="15.0" fill="rgb(209,179,6)" rx="2" ry="2" />
+<text  x="136.28" y="655.5" ></text>
+</g>
+<g >
+<title>tick_nohz_irq_exit (40,694,490 samples, 0.01%)</title><rect x="915.5" y="837" width="0.1" height="15.0" fill="rgb(245,62,39)" rx="2" ry="2" />
+<text  x="918.48" y="847.5" ></text>
+</g>
+<g >
+<title>futex_wait_queue (342,677,335 samples, 0.09%)</title><rect x="13.0" y="821" width="1.1" height="15.0" fill="rgb(237,222,24)" rx="2" ry="2" />
+<text  x="16.01" y="831.5" ></text>
+</g>
+<g >
+<title>preempt_count_add (63,596,315 samples, 0.02%)</title><rect x="547.2" y="805" width="0.2" height="15.0" fill="rgb(205,113,27)" rx="2" ry="2" />
+<text  x="550.22" y="815.5" ></text>
+</g>
+<g >
+<title>dev_hard_start_xmit (34,842,502 samples, 0.01%)</title><rect x="320.2" y="533" width="0.2" height="15.0" fill="rgb(214,106,13)" rx="2" ry="2" />
+<text  x="323.24" y="543.5" ></text>
+</g>
+<g >
+<title>crypt_free_buffer_pages (111,380,946 samples, 0.03%)</title><rect x="892.9" y="725" width="0.4" height="15.0" fill="rgb(244,9,50)" rx="2" ry="2" />
+<text  x="895.92" y="735.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (174,237,952 samples, 0.05%)</title><rect x="362.9" y="837" width="0.6" height="15.0" fill="rgb(218,210,34)" rx="2" ry="2" />
+<text  x="365.92" y="847.5" ></text>
+</g>
+<g >
+<title>pick_next_task_fair (319,712,150 samples, 0.09%)</title><rect x="34.3" y="789" width="1.1" height="15.0" fill="rgb(212,35,29)" rx="2" ry="2" />
+<text  x="37.34" y="799.5" ></text>
+</g>
+<g >
+<title>sg_init_table (146,586,291 samples, 0.04%)</title><rect x="456.7" y="869" width="0.5" height="15.0" fill="rgb(248,192,30)" rx="2" ry="2" />
+<text  x="459.68" y="879.5" ></text>
+</g>
+<g >
+<title>tick_sched_timer (62,628,170 samples, 0.02%)</title><rect x="94.9" y="869" width="0.2" height="15.0" fill="rgb(246,56,28)" rx="2" ry="2" />
+<text  x="97.89" y="879.5" ></text>
+</g>
+<g >
+<title>do_futex (295,686,682 samples, 0.08%)</title><rect x="158.2" y="837" width="1.0" height="15.0" fill="rgb(211,19,36)" rx="2" ry="2" />
+<text  x="161.25" y="847.5" ></text>
+</g>
+<g >
+<title>pick_next_task_fair (72,647,383 samples, 0.02%)</title><rect x="817.6" y="725" width="0.2" height="15.0" fill="rgb(208,96,19)" rx="2" ry="2" />
+<text  x="820.59" y="735.5" ></text>
+</g>
+<g >
+<title>xas_init_marks (125,986,755 samples, 0.03%)</title><rect x="360.9" y="821" width="0.4" height="15.0" fill="rgb(240,12,49)" rx="2" ry="2" />
+<text  x="363.86" y="831.5" ></text>
+</g>
+<g >
+<title>drm_syncobj_wait_ioctl (82,799,697 samples, 0.02%)</title><rect x="1163.7" y="549" width="0.2" height="15.0" fill="rgb(247,134,50)" rx="2" ry="2" />
+<text  x="1166.66" y="559.5" ></text>
+</g>
+<g >
+<title>hrtimer_interrupt (210,380,206 samples, 0.06%)</title><rect x="813.7" y="789" width="0.7" height="15.0" fill="rgb(208,208,26)" rx="2" ry="2" />
+<text  x="816.72" y="799.5" ></text>
+</g>
+<g >
+<title>curl_pread (329,454,028 samples, 0.09%)</title><rect x="667.9" y="821" width="1.0" height="15.0" fill="rgb(218,157,36)" rx="2" ry="2" />
+<text  x="670.86" y="831.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (60,463,889 samples, 0.02%)</title><rect x="740.7" y="293" width="0.2" height="15.0" fill="rgb(240,69,5)" rx="2" ry="2" />
+<text  x="743.68" y="303.5" ></text>
+</g>
+<g >
+<title>g_main_loop_run (39,096,757 samples, 0.01%)</title><rect x="1185.5" y="805" width="0.2" height="15.0" fill="rgb(237,8,1)" rx="2" ry="2" />
+<text  x="1188.55" y="815.5" ></text>
+</g>
+<g >
+<title>schedule (85,209,992 samples, 0.02%)</title><rect x="265.7" y="853" width="0.3" height="15.0" fill="rgb(243,37,39)" rx="2" ry="2" />
+<text  x="268.70" y="863.5" ></text>
+</g>
+<g >
+<title>wake_up_q (59,849,994 samples, 0.02%)</title><rect x="148.8" y="837" width="0.2" height="15.0" fill="rgb(221,171,10)" rx="2" ry="2" />
+<text  x="151.78" y="847.5" ></text>
+</g>
+<g >
+<title>__GI___libc_sigaction (341,246,643 samples, 0.09%)</title><rect x="647.5" y="757" width="1.1" height="15.0" fill="rgb(209,140,25)" rx="2" ry="2" />
+<text  x="650.47" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (47,446,605 samples, 0.01%)</title><rect x="198.2" y="965" width="0.2" height="15.0" fill="rgb(223,53,10)" rx="2" ry="2" />
+<text  x="201.22" y="975.5" ></text>
+</g>
+<g >
+<title>__ieee80211_subif_start_xmit (1,295,465,114 samples, 0.35%)</title><rect x="630.9" y="469" width="4.1" height="15.0" fill="rgb(236,41,0)" rx="2" ry="2" />
+<text  x="633.87" y="479.5" ></text>
+</g>
+<g >
+<title>[firefox] (81,244,990 samples, 0.02%)</title><rect x="24.5" y="917" width="0.3" height="15.0" fill="rgb(219,185,47)" rx="2" ry="2" />
+<text  x="27.52" y="927.5" ></text>
+</g>
+<g >
+<title>__writeback_single_inode (731,696,513 samples, 0.20%)</title><rect x="437.7" y="837" width="2.4" height="15.0" fill="rgb(244,188,6)" rx="2" ry="2" />
+<text  x="440.73" y="847.5" ></text>
+</g>
+<g >
+<title>iv_of_dmreq (350,009,624 samples, 0.10%)</title><rect x="552.7" y="869" width="1.1" height="15.0" fill="rgb(246,122,44)" rx="2" ry="2" />
+<text  x="555.71" y="879.5" ></text>
+</g>
+<g >
+<title>[libGLX_mesa.so.0.0.0] (1,599,607,840 samples, 0.44%)</title><rect x="18.6" y="917" width="5.2" height="15.0" fill="rgb(232,28,51)" rx="2" ry="2" />
+<text  x="21.62" y="927.5" ></text>
+</g>
+<g >
+<title>update_process_times (137,844,245 samples, 0.04%)</title><rect x="813.9" y="725" width="0.4" height="15.0" fill="rgb(252,65,33)" rx="2" ry="2" />
+<text  x="816.86" y="735.5" ></text>
+</g>
+<g >
+<title>__tls_get_addr (50,826,821 samples, 0.01%)</title><rect x="25.9" y="965" width="0.1" height="15.0" fill="rgb(207,161,28)" rx="2" ry="2" />
+<text  x="28.88" y="975.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (55,932,449 samples, 0.02%)</title><rect x="200.8" y="789" width="0.2" height="15.0" fill="rgb(242,167,7)" rx="2" ry="2" />
+<text  x="203.80" y="799.5" ></text>
+</g>
+<g >
+<title>__x64_sys_ioctl (56,768,014 samples, 0.02%)</title><rect x="135.1" y="805" width="0.2" height="15.0" fill="rgb(230,11,7)" rx="2" ry="2" />
+<text  x="138.11" y="815.5" ></text>
+</g>
+<g >
+<title>psi_group_change (128,767,134 samples, 0.04%)</title><rect x="654.2" y="581" width="0.5" height="15.0" fill="rgb(228,108,0)" rx="2" ry="2" />
+<text  x="657.24" y="591.5" ></text>
+</g>
+<g >
+<title>__GI___write (383,117,780 samples, 0.10%)</title><rect x="724.6" y="901" width="1.2" height="15.0" fill="rgb(239,67,24)" rx="2" ry="2" />
+<text  x="727.60" y="911.5" ></text>
+</g>
+<g >
+<title>curl_url_set (249,093,966 samples, 0.07%)</title><rect x="646.7" y="741" width="0.8" height="15.0" fill="rgb(218,0,52)" rx="2" ry="2" />
+<text  x="649.66" y="751.5" ></text>
+</g>
+<g >
+<title>unlock_request (33,995,461 samples, 0.01%)</title><rect x="666.5" y="885" width="0.1" height="15.0" fill="rgb(244,137,21)" rx="2" ry="2" />
+<text  x="669.46" y="895.5" ></text>
+</g>
+<g >
+<title>__local_bh_enable_ip (96,588,568 samples, 0.03%)</title><rect x="137.5" y="773" width="0.3" height="15.0" fill="rgb(252,136,39)" rx="2" ry="2" />
+<text  x="140.51" y="783.5" ></text>
+</g>
+<g >
+<title>__GI___ioctl (156,306,663 samples, 0.04%)</title><rect x="134.3" y="837" width="0.5" height="15.0" fill="rgb(222,113,17)" rx="2" ry="2" />
+<text  x="137.30" y="847.5" ></text>
+</g>
+<g >
+<title>poll_freewait (58,057,235 samples, 0.02%)</title><rect x="821.0" y="805" width="0.2" height="15.0" fill="rgb(221,76,53)" rx="2" ry="2" />
+<text  x="823.98" y="815.5" ></text>
+</g>
+<g >
+<title>xfs_buffered_write_iomap_begin (195,682,078 samples, 0.05%)</title><rect x="753.1" y="741" width="0.6" height="15.0" fill="rgb(213,186,16)" rx="2" ry="2" />
+<text  x="756.09" y="751.5" ></text>
+</g>
+<g >
+<title>execute_command_internal (77,229,650 samples, 0.02%)</title><rect x="243.4" y="757" width="0.3" height="15.0" fill="rgb(221,109,38)" rx="2" ry="2" />
+<text  x="246.42" y="767.5" ></text>
+</g>
+<g >
+<title>leave_mm (51,427,437 samples, 0.01%)</title><rect x="1122.8" y="869" width="0.2" height="15.0" fill="rgb(213,193,6)" rx="2" ry="2" />
+<text  x="1125.84" y="879.5" ></text>
+</g>
+<g >
+<title>timerqueue_del (116,052,565 samples, 0.03%)</title><rect x="912.5" y="789" width="0.4" height="15.0" fill="rgb(246,130,15)" rx="2" ry="2" />
+<text  x="915.48" y="799.5" ></text>
+</g>
+<g >
+<title>__napi_poll (627,984,530 samples, 0.17%)</title><rect x="740.6" y="357" width="2.0" height="15.0" fill="rgb(231,176,40)" rx="2" ry="2" />
+<text  x="743.57" y="367.5" ></text>
+</g>
+<g >
+<title>[libxul.so] (66,813,845 samples, 0.02%)</title><rect x="16.2" y="933" width="0.2" height="15.0" fill="rgb(237,166,19)" rx="2" ry="2" />
+<text  x="19.22" y="943.5" ></text>
+</g>
+<g >
+<title>fw_domains_get_with_fallback (42,413,303 samples, 0.01%)</title><rect x="232.9" y="645" width="0.2" height="15.0" fill="rgb(220,52,22)" rx="2" ry="2" />
+<text  x="235.94" y="655.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (191,340,003 samples, 0.05%)</title><rect x="1177.8" y="581" width="0.6" height="15.0" fill="rgb(210,164,11)" rx="2" ry="2" />
+<text  x="1180.83" y="591.5" ></text>
+</g>
+<g >
+<title>[libpipewire-0.3.so.0.358.0] (43,705,141 samples, 0.01%)</title><rect x="729.2" y="885" width="0.1" height="15.0" fill="rgb(230,121,30)" rx="2" ry="2" />
+<text  x="732.20" y="895.5" ></text>
+</g>
+<g >
+<title>mozilla::detail::MutexImpl::unlock (87,047,168 samples, 0.02%)</title><rect x="42.3" y="965" width="0.3" height="15.0" fill="rgb(232,79,0)" rx="2" ry="2" />
+<text  x="45.32" y="975.5" ></text>
+</g>
+<g >
+<title>folio_mark_accessed (163,871,428 samples, 0.04%)</title><rect x="376.0" y="773" width="0.5" height="15.0" fill="rgb(217,37,11)" rx="2" ry="2" />
+<text  x="379.00" y="783.5" ></text>
+</g>
+<g >
+<title>timerqueue_add (151,598,637 samples, 0.04%)</title><rect x="1157.4" y="837" width="0.5" height="15.0" fill="rgb(225,86,47)" rx="2" ry="2" />
+<text  x="1160.45" y="847.5" ></text>
+</g>
+<g >
+<title>filemap_migrate_folio (445,052,606 samples, 0.12%)</title><rect x="345.2" y="853" width="1.4" height="15.0" fill="rgb(205,91,29)" rx="2" ry="2" />
+<text  x="348.16" y="863.5" ></text>
+</g>
+<g >
+<title>timerlistgroup_run_timers (32,447,958 samples, 0.01%)</title><rect x="827.7" y="853" width="0.1" height="15.0" fill="rgb(236,64,22)" rx="2" ry="2" />
+<text  x="830.72" y="863.5" ></text>
+</g>
+<g >
+<title>switch_mm_irqs_off (296,951,359 samples, 0.08%)</title><rect x="1152.7" y="869" width="0.9" height="15.0" fill="rgb(246,73,1)" rx="2" ry="2" />
+<text  x="1155.66" y="879.5" ></text>
+</g>
+<g >
+<title>ip6_input_finish (315,866,906 samples, 0.09%)</title><rect x="740.9" y="309" width="1.0" height="15.0" fill="rgb(237,215,38)" rx="2" ry="2" />
+<text  x="743.87" y="319.5" ></text>
+</g>
+<g >
+<title>[libxul.so] (242,385,918 samples, 0.07%)</title><rect x="44.3" y="949" width="0.8" height="15.0" fill="rgb(234,218,49)" rx="2" ry="2" />
+<text  x="47.32" y="959.5" ></text>
+</g>
+<g >
+<title>sysvec_irq_work (49,901,495 samples, 0.01%)</title><rect x="232.9" y="789" width="0.2" height="15.0" fill="rgb(217,14,15)" rx="2" ry="2" />
+<text  x="235.92" y="799.5" ></text>
+</g>
+<g >
+<title>[libEGL_mesa.so.0.0.0] (106,831,687 samples, 0.03%)</title><rect x="1166.2" y="837" width="0.3" height="15.0" fill="rgb(208,84,33)" rx="2" ry="2" />
+<text  x="1169.17" y="847.5" ></text>
+</g>
+<g >
+<title>curl_multi_perform (9,615,555,481 samples, 2.62%)</title><rect x="617.8" y="773" width="31.0" height="15.0" fill="rgb(245,225,52)" rx="2" ry="2" />
+<text  x="620.83" y="783.5" >cu..</text>
+</g>
+<g >
+<title>try_to_wake_up (110,206,577 samples, 0.03%)</title><rect x="239.7" y="757" width="0.4" height="15.0" fill="rgb(246,170,1)" rx="2" ry="2" />
+<text  x="242.72" y="767.5" ></text>
+</g>
+<g >
+<title>_int_free (56,823,625 samples, 0.02%)</title><rect x="643.0" y="709" width="0.2" height="15.0" fill="rgb(232,102,22)" rx="2" ry="2" />
+<text  x="646.05" y="719.5" ></text>
+</g>
+<g >
+<title>memcpy_erms (84,114,619 samples, 0.02%)</title><rect x="416.9" y="869" width="0.3" height="15.0" fill="rgb(227,45,54)" rx="2" ry="2" />
+<text  x="419.94" y="879.5" ></text>
+</g>
+<g >
+<title>mem_cgroup_wb_stats (1,188,440,742 samples, 0.32%)</title><rect x="674.7" y="741" width="3.8" height="15.0" fill="rgb(232,106,43)" rx="2" ry="2" />
+<text  x="677.68" y="751.5" ></text>
+</g>
+<g >
+<title>[libcurl.so.4.8.0] (87,335,978 samples, 0.02%)</title><rect x="284.8" y="725" width="0.2" height="15.0" fill="rgb(237,0,48)" rx="2" ry="2" />
+<text  x="287.75" y="735.5" ></text>
+</g>
+<g >
+<title>psi_group_change (61,001,081 samples, 0.02%)</title><rect x="90.2" y="805" width="0.2" height="15.0" fill="rgb(228,92,22)" rx="2" ry="2" />
+<text  x="93.17" y="815.5" ></text>
+</g>
+<g >
+<title>___pthread_mutex_lock (74,406,552 samples, 0.02%)</title><rect x="173.2" y="917" width="0.3" height="15.0" fill="rgb(225,39,51)" rx="2" ry="2" />
+<text  x="176.21" y="927.5" ></text>
+</g>
+<g >
+<title>[libxul.so] (57,693,542 samples, 0.02%)</title><rect x="179.5" y="933" width="0.2" height="15.0" fill="rgb(223,154,49)" rx="2" ry="2" />
+<text  x="182.47" y="943.5" ></text>
+</g>
+<g >
+<title>__kfree_skb_defer (62,637,361 samples, 0.02%)</title><rect x="307.3" y="741" width="0.2" height="15.0" fill="rgb(225,136,54)" rx="2" ry="2" />
+<text  x="310.25" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_futex (69,116,498 samples, 0.02%)</title><rect x="173.7" y="885" width="0.2" height="15.0" fill="rgb(222,38,6)" rx="2" ry="2" />
+<text  x="176.69" y="895.5" ></text>
+</g>
+<g >
+<title>worker_thread (4,936,720,583 samples, 1.35%)</title><rect x="597.2" y="933" width="15.9" height="15.0" fill="rgb(230,52,16)" rx="2" ry="2" />
+<text  x="600.16" y="943.5" ></text>
+</g>
+<g >
+<title>[xfwm4] (174,449,295 samples, 0.05%)</title><rect x="1186.8" y="773" width="0.5" height="15.0" fill="rgb(254,116,48)" rx="2" ry="2" />
+<text  x="1189.78" y="783.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (140,698,767 samples, 0.04%)</title><rect x="151.8" y="853" width="0.4" height="15.0" fill="rgb(244,122,20)" rx="2" ry="2" />
+<text  x="154.76" y="863.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (1,503,112,857 samples, 0.41%)</title><rect x="739.4" y="661" width="4.9" height="15.0" fill="rgb(233,7,48)" rx="2" ry="2" />
+<text  x="742.43" y="671.5" ></text>
+</g>
+<g >
+<title>xfs_file_write_checks (39,735,070 samples, 0.01%)</title><rect x="725.4" y="805" width="0.1" height="15.0" fill="rgb(222,162,1)" rx="2" ry="2" />
+<text  x="728.41" y="815.5" ></text>
+</g>
+<g >
+<title>update_get_addr (34,528,870 samples, 0.01%)</title><rect x="267.2" y="933" width="0.1" height="15.0" fill="rgb(224,161,10)" rx="2" ry="2" />
+<text  x="270.21" y="943.5" ></text>
+</g>
+<g >
+<title>check_preempt_curr (42,053,582 samples, 0.01%)</title><rect x="894.8" y="741" width="0.2" height="15.0" fill="rgb(222,21,52)" rx="2" ry="2" />
+<text  x="897.82" y="751.5" ></text>
+</g>
+<g >
+<title>__mod_memcg_state (58,336,057 samples, 0.02%)</title><rect x="629.1" y="517" width="0.2" height="15.0" fill="rgb(205,229,28)" rx="2" ry="2" />
+<text  x="632.06" y="527.5" ></text>
+</g>
+<g >
+<title>irq_work_run (1,366,936,278 samples, 0.37%)</title><rect x="347.2" y="805" width="4.4" height="15.0" fill="rgb(237,115,17)" rx="2" ry="2" />
+<text  x="350.24" y="815.5" ></text>
+</g>
+<g >
+<title>__GI___nanosleep (50,033,632 samples, 0.01%)</title><rect x="25.9" y="933" width="0.1" height="15.0" fill="rgb(223,73,49)" rx="2" ry="2" />
+<text  x="28.88" y="943.5" ></text>
+</g>
+<g >
+<title>simd_skcipher_encrypt (178,926,805 samples, 0.05%)</title><rect x="552.1" y="853" width="0.6" height="15.0" fill="rgb(208,24,48)" rx="2" ry="2" />
+<text  x="555.13" y="863.5" ></text>
+</g>
+<g >
+<title>[git] (77,496,367 samples, 0.02%)</title><rect x="285.3" y="837" width="0.2" height="15.0" fill="rgb(214,104,43)" rx="2" ry="2" />
+<text  x="288.28" y="847.5" ></text>
+</g>
+<g >
+<title>iwl_txq_reclaim (181,310,962 samples, 0.05%)</title><rect x="315.1" y="741" width="0.6" height="15.0" fill="rgb(244,57,38)" rx="2" ry="2" />
+<text  x="318.08" y="751.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (3,847,504,251 samples, 1.05%)</title><rect x="536.4" y="853" width="12.4" height="15.0" fill="rgb(238,118,51)" rx="2" ry="2" />
+<text  x="539.38" y="863.5" ></text>
+</g>
+<g >
+<title>menu_select (455,445,117 samples, 0.12%)</title><rect x="882.1" y="869" width="1.5" height="15.0" fill="rgb(234,228,35)" rx="2" ry="2" />
+<text  x="885.14" y="879.5" ></text>
+</g>
+<g >
+<title>local_touch_nmi (35,464,593 samples, 0.01%)</title><rect x="1133.3" y="901" width="0.1" height="15.0" fill="rgb(209,212,47)" rx="2" ry="2" />
+<text  x="1136.27" y="911.5" ></text>
+</g>
+<g >
+<title>nft_meta_get_eval (33,726,533 samples, 0.01%)</title><rect x="332.3" y="645" width="0.1" height="15.0" fill="rgb(237,102,41)" rx="2" ry="2" />
+<text  x="335.30" y="655.5" ></text>
+</g>
+<g >
+<title>ttwu_do_activate (70,766,225 samples, 0.02%)</title><rect x="906.6" y="757" width="0.2" height="15.0" fill="rgb(221,51,53)" rx="2" ry="2" />
+<text  x="909.58" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (150,232,539 samples, 0.04%)</title><rect x="43.3" y="901" width="0.5" height="15.0" fill="rgb(235,137,16)" rx="2" ry="2" />
+<text  x="46.35" y="911.5" ></text>
+</g>
+<g >
+<title>__mod_lruvec_page_state (41,735,826 samples, 0.01%)</title><rect x="523.5" y="725" width="0.2" height="15.0" fill="rgb(211,125,51)" rx="2" ry="2" />
+<text  x="526.52" y="735.5" ></text>
+</g>
+<g >
+<title>___snprintf_chk (117,116,539 samples, 0.03%)</title><rect x="657.4" y="773" width="0.4" height="15.0" fill="rgb(209,130,14)" rx="2" ry="2" />
+<text  x="660.38" y="783.5" ></text>
+</g>
+<g >
+<title>__GI___pthread_mutex_unlock_usercnt (38,370,769 samples, 0.01%)</title><rect x="169.5" y="949" width="0.1" height="15.0" fill="rgb(229,64,53)" rx="2" ry="2" />
+<text  x="172.51" y="959.5" ></text>
+</g>
+<g >
+<title>zram_bvec_rw.constprop.0.isra.0 (32,016,653 samples, 0.01%)</title><rect x="368.6" y="789" width="0.1" height="15.0" fill="rgb(253,20,11)" rx="2" ry="2" />
+<text  x="371.55" y="799.5" ></text>
+</g>
+<g >
+<title>PEM_X509_INFO_read_bio_ex (73,591,237 samples, 0.02%)</title><rect x="284.8" y="645" width="0.2" height="15.0" fill="rgb(251,69,39)" rx="2" ry="2" />
+<text  x="287.77" y="655.5" ></text>
+</g>
+<g >
+<title>__pollwait (49,876,122 samples, 0.01%)</title><rect x="726.7" y="853" width="0.2" height="15.0" fill="rgb(223,218,23)" rx="2" ry="2" />
+<text  x="729.75" y="863.5" ></text>
+</g>
+<g >
+<title>shmem_sg_free_table (1,015,651,084 samples, 0.28%)</title><rect x="374.2" y="789" width="3.3" height="15.0" fill="rgb(241,175,4)" rx="2" ry="2" />
+<text  x="377.24" y="799.5" ></text>
+</g>
+<g >
+<title>g_source_ref (115,963,376 samples, 0.03%)</title><rect x="281.4" y="869" width="0.3" height="15.0" fill="rgb(206,30,12)" rx="2" ry="2" />
+<text  x="284.36" y="879.5" ></text>
+</g>
+<g >
+<title>__handle_irq_event_percpu (1,265,360,293 samples, 0.35%)</title><rect x="891.2" y="789" width="4.0" height="15.0" fill="rgb(206,197,25)" rx="2" ry="2" />
+<text  x="894.17" y="799.5" ></text>
+</g>
+<g >
+<title>do_futex (151,793,889 samples, 0.04%)</title><rect x="149.1" y="853" width="0.5" height="15.0" fill="rgb(250,2,22)" rx="2" ry="2" />
+<text  x="152.11" y="863.5" ></text>
+</g>
+<g >
+<title>[git-remote-http] (93,975,502 samples, 0.03%)</title><rect x="284.8" y="837" width="0.3" height="15.0" fill="rgb(251,32,33)" rx="2" ry="2" />
+<text  x="287.75" y="847.5" ></text>
+</g>
+<g >
+<title>tick_nohz_idle_enter (218,306,826 samples, 0.06%)</title><rect x="1154.0" y="901" width="0.7" height="15.0" fill="rgb(233,111,18)" rx="2" ry="2" />
+<text  x="1157.04" y="911.5" ></text>
+</g>
+<g >
+<title>kthread (6,196,881,981 samples, 1.69%)</title><rect x="420.2" y="949" width="19.9" height="15.0" fill="rgb(223,78,28)" rx="2" ry="2" />
+<text  x="423.18" y="959.5" ></text>
+</g>
+<g >
+<title>__GI___ioctl (36,916,505 samples, 0.01%)</title><rect x="143.6" y="709" width="0.1" height="15.0" fill="rgb(216,6,53)" rx="2" ry="2" />
+<text  x="146.60" y="719.5" ></text>
+</g>
+<g >
+<title>vfs_writev (87,439,444 samples, 0.02%)</title><rect x="1189.2" y="917" width="0.3" height="15.0" fill="rgb(254,14,49)" rx="2" ry="2" />
+<text  x="1192.22" y="927.5" ></text>
+</g>
+<g >
+<title>worker_thread (347,211,127 samples, 0.09%)</title><rect x="396.4" y="933" width="1.2" height="15.0" fill="rgb(238,126,46)" rx="2" ry="2" />
+<text  x="399.45" y="943.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (90,878,030 samples, 0.02%)</title><rect x="664.8" y="693" width="0.3" height="15.0" fill="rgb(205,20,49)" rx="2" ry="2" />
+<text  x="667.85" y="703.5" ></text>
+</g>
+<g >
+<title>__libc_poll (828,984,991 samples, 0.23%)</title><rect x="97.0" y="917" width="2.7" height="15.0" fill="rgb(219,214,46)" rx="2" ry="2" />
+<text  x="100.03" y="927.5" ></text>
+</g>
+<g >
+<title>irq_work_single (48,258,505 samples, 0.01%)</title><rect x="232.9" y="725" width="0.2" height="15.0" fill="rgb(242,155,34)" rx="2" ry="2" />
+<text  x="235.92" y="735.5" ></text>
+</g>
+<g >
+<title>__folio_end_writeback (182,154,483 samples, 0.05%)</title><rect x="394.8" y="821" width="0.6" height="15.0" fill="rgb(227,179,49)" rx="2" ry="2" />
+<text  x="397.78" y="831.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (652,529,084 samples, 0.18%)</title><rect x="816.6" y="837" width="2.1" height="15.0" fill="rgb(208,174,3)" rx="2" ry="2" />
+<text  x="819.61" y="847.5" ></text>
+</g>
+<g >
+<title>g_signal_emit_valist (981,146,702 samples, 0.27%)</title><rect x="1171.5" y="821" width="3.1" height="15.0" fill="rgb(228,13,33)" rx="2" ry="2" />
+<text  x="1174.48" y="831.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (173,099,810 samples, 0.05%)</title><rect x="1163.4" y="677" width="0.6" height="15.0" fill="rgb(222,77,46)" rx="2" ry="2" />
+<text  x="1166.42" y="687.5" ></text>
+</g>
+<g >
+<title>gtk_main_do_event (94,873,365 samples, 0.03%)</title><rect x="1177.3" y="853" width="0.3" height="15.0" fill="rgb(212,18,13)" rx="2" ry="2" />
+<text  x="1180.28" y="863.5" ></text>
+</g>
+<g >
+<title>__update_load_avg_cfs_rq (69,430,629 samples, 0.02%)</title><rect x="1130.3" y="789" width="0.2" height="15.0" fill="rgb(242,169,2)" rx="2" ry="2" />
+<text  x="1133.25" y="799.5" ></text>
+</g>
+<g >
+<title>schedule (1,271,473,576 samples, 0.35%)</title><rect x="335.2" y="917" width="4.1" height="15.0" fill="rgb(207,160,16)" rx="2" ry="2" />
+<text  x="338.24" y="927.5" ></text>
+</g>
+<g >
+<title>load_balance (37,680,066 samples, 0.01%)</title><rect x="833.0" y="757" width="0.1" height="15.0" fill="rgb(223,18,49)" rx="2" ry="2" />
+<text  x="836.01" y="767.5" ></text>
+</g>
+<g >
+<title>____sys_recvmsg (163,324,186 samples, 0.04%)</title><rect x="20.9" y="757" width="0.6" height="15.0" fill="rgb(232,51,11)" rx="2" ry="2" />
+<text  x="23.94" y="767.5" ></text>
+</g>
+<g >
+<title>memcpy_erms (68,756,359 samples, 0.02%)</title><rect x="456.5" y="869" width="0.2" height="15.0" fill="rgb(219,221,44)" rx="2" ry="2" />
+<text  x="459.46" y="879.5" ></text>
+</g>
+<g >
+<title>dequeue_entity (51,014,131 samples, 0.01%)</title><rect x="158.6" y="741" width="0.1" height="15.0" fill="rgb(248,217,19)" rx="2" ry="2" />
+<text  x="161.58" y="751.5" ></text>
+</g>
+<g >
+<title>process_one_work (264,911,962 samples, 0.07%)</title><rect x="388.2" y="917" width="0.8" height="15.0" fill="rgb(218,219,30)" rx="2" ry="2" />
+<text  x="391.19" y="927.5" ></text>
+</g>
+<g >
+<title>__mod_node_page_state (116,215,957 samples, 0.03%)</title><rect x="359.6" y="773" width="0.4" height="15.0" fill="rgb(230,61,2)" rx="2" ry="2" />
+<text  x="362.58" y="783.5" ></text>
+</g>
+<g >
+<title>rcu_nocb_flush_deferred_wakeup (109,843,481 samples, 0.03%)</title><rect x="1145.3" y="901" width="0.4" height="15.0" fill="rgb(238,180,30)" rx="2" ry="2" />
+<text  x="1148.31" y="911.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (41,857,063 samples, 0.01%)</title><rect x="14.9" y="885" width="0.1" height="15.0" fill="rgb(234,30,7)" rx="2" ry="2" />
+<text  x="17.86" y="895.5" ></text>
+</g>
+<g >
+<title>iomap_file_buffered_write (2,771,508,091 samples, 0.76%)</title><rect x="750.8" y="773" width="8.9" height="15.0" fill="rgb(207,172,39)" rx="2" ry="2" />
+<text  x="753.80" y="783.5" ></text>
+</g>
+<g >
+<title>___sys_recvmsg (145,252,863 samples, 0.04%)</title><rect x="748.1" y="645" width="0.4" height="15.0" fill="rgb(232,169,37)" rx="2" ry="2" />
+<text  x="751.05" y="655.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (809,455,336 samples, 0.22%)</title><rect x="1171.5" y="517" width="2.6" height="15.0" fill="rgb(210,188,1)" rx="2" ry="2" />
+<text  x="1174.52" y="527.5" ></text>
+</g>
+<g >
+<title>[git-remote-http] (93,975,502 samples, 0.03%)</title><rect x="284.8" y="853" width="0.3" height="15.0" fill="rgb(254,228,29)" rx="2" ry="2" />
+<text  x="287.75" y="863.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (39,918,433 samples, 0.01%)</title><rect x="118.3" y="869" width="0.1" height="15.0" fill="rgb(208,67,26)" rx="2" ry="2" />
+<text  x="121.28" y="879.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (184,728,744 samples, 0.05%)</title><rect x="325.5" y="613" width="0.5" height="15.0" fill="rgb(250,48,40)" rx="2" ry="2" />
+<text  x="328.45" y="623.5" ></text>
+</g>
+<g >
+<title>g_main_context_check (392,544,873 samples, 0.11%)</title><rect x="824.7" y="885" width="1.2" height="15.0" fill="rgb(240,91,52)" rx="2" ry="2" />
+<text  x="827.67" y="895.5" ></text>
+</g>
+<g >
+<title>ct_idle_exit (39,127,025 samples, 0.01%)</title><rect x="835.1" y="837" width="0.1" height="15.0" fill="rgb(226,40,45)" rx="2" ry="2" />
+<text  x="838.09" y="847.5" ></text>
+</g>
+<g >
+<title>hrtimer_update_next_event (53,601,059 samples, 0.01%)</title><rect x="1156.0" y="821" width="0.1" height="15.0" fill="rgb(248,173,3)" rx="2" ry="2" />
+<text  x="1158.97" y="831.5" ></text>
+</g>
+<g >
+<title>__GI___sched_yield (440,898,799 samples, 0.12%)</title><rect x="295.4" y="917" width="1.4" height="15.0" fill="rgb(206,98,40)" rx="2" ry="2" />
+<text  x="298.41" y="927.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (635,970,443 samples, 0.17%)</title><rect x="599.7" y="837" width="2.1" height="15.0" fill="rgb(231,32,47)" rx="2" ry="2" />
+<text  x="602.71" y="847.5" ></text>
+</g>
+<g >
+<title>[firefox] (158,869,443 samples, 0.04%)</title><rect x="21.6" y="821" width="0.5" height="15.0" fill="rgb(243,151,53)" rx="2" ry="2" />
+<text  x="24.61" y="831.5" ></text>
+</g>
+<g >
+<title>ieee80211_tx_h_rate_ctrl (189,315,824 samples, 0.05%)</title><rect x="632.7" y="389" width="0.6" height="15.0" fill="rgb(209,22,7)" rx="2" ry="2" />
+<text  x="635.66" y="399.5" ></text>
+</g>
+<g >
+<title>iwl_mvm_mac_itxq_xmit (974,871,611 samples, 0.27%)</title><rect x="631.8" y="437" width="3.1" height="15.0" fill="rgb(220,105,28)" rx="2" ry="2" />
+<text  x="634.81" y="447.5" ></text>
+</g>
+<g >
+<title>__wake_up_common_lock (62,814,276 samples, 0.02%)</title><rect x="20.0" y="645" width="0.2" height="15.0" fill="rgb(243,146,41)" rx="2" ry="2" />
+<text  x="22.97" y="655.5" ></text>
+</g>
+<g >
+<title>[libxul.so] (762,187,561 samples, 0.21%)</title><rect x="150.7" y="949" width="2.4" height="15.0" fill="rgb(228,65,8)" rx="2" ry="2" />
+<text  x="153.66" y="959.5" ></text>
+</g>
+<g >
+<title>crypt_convert (4,784,355,098 samples, 1.31%)</title><rect x="460.9" y="885" width="15.4" height="15.0" fill="rgb(238,183,52)" rx="2" ry="2" />
+<text  x="463.86" y="895.5" ></text>
+</g>
+<g >
+<title>g_closure_invoke (115,926,543 samples, 0.03%)</title><rect x="1178.0" y="197" width="0.4" height="15.0" fill="rgb(226,200,42)" rx="2" ry="2" />
+<text  x="1181.02" y="207.5" ></text>
+</g>
+<g >
+<title>inet6_recvmsg (142,013,717 samples, 0.04%)</title><rect x="748.1" y="613" width="0.4" height="15.0" fill="rgb(243,55,8)" rx="2" ry="2" />
+<text  x="751.06" y="623.5" ></text>
+</g>
+<g >
+<title>folio_memcg_unlock (38,741,076 samples, 0.01%)</title><rect x="721.1" y="741" width="0.1" height="15.0" fill="rgb(205,206,23)" rx="2" ry="2" />
+<text  x="724.11" y="751.5" ></text>
+</g>
+<g >
+<title>syscall (529,479,413 samples, 0.14%)</title><rect x="291.5" y="949" width="1.8" height="15.0" fill="rgb(208,152,37)" rx="2" ry="2" />
+<text  x="294.55" y="959.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (32,204,945 samples, 0.01%)</title><rect x="735.9" y="853" width="0.1" height="15.0" fill="rgb(250,116,16)" rx="2" ry="2" />
+<text  x="738.91" y="863.5" ></text>
+</g>
+<g >
+<title>crypt_endio (47,206,347 samples, 0.01%)</title><rect x="384.2" y="661" width="0.2" height="15.0" fill="rgb(238,213,17)" rx="2" ry="2" />
+<text  x="387.23" y="671.5" ></text>
+</g>
+<g >
+<title>__local_bh_enable_ip (10,409,049,270 samples, 2.84%)</title><rect x="300.5" y="885" width="33.5" height="15.0" fill="rgb(216,39,18)" rx="2" ry="2" />
+<text  x="303.45" y="895.5" >__..</text>
+</g>
+<g >
+<title>__pagevec_release (80,149,228 samples, 0.02%)</title><rect x="374.5" y="773" width="0.3" height="15.0" fill="rgb(247,28,49)" rx="2" ry="2" />
+<text  x="377.52" y="783.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (50,505,132 samples, 0.01%)</title><rect x="277.4" y="741" width="0.2" height="15.0" fill="rgb(211,156,47)" rx="2" ry="2" />
+<text  x="280.40" y="751.5" ></text>
+</g>
+<g >
+<title>__sys_sendmsg (61,797,647 samples, 0.02%)</title><rect x="191.6" y="901" width="0.2" height="15.0" fill="rgb(214,82,13)" rx="2" ry="2" />
+<text  x="194.57" y="911.5" ></text>
+</g>
+<g >
+<title>napi_consume_skb (72,661,093 samples, 0.02%)</title><rect x="662.9" y="549" width="0.2" height="15.0" fill="rgb(241,136,40)" rx="2" ry="2" />
+<text  x="665.86" y="559.5" ></text>
+</g>
+<g >
+<title>__i915_sw_fence_complete (63,742,392 samples, 0.02%)</title><rect x="140.5" y="741" width="0.2" height="15.0" fill="rgb(219,177,22)" rx="2" ry="2" />
+<text  x="143.49" y="751.5" ></text>
+</g>
+<g >
+<title>__mod_memcg_lruvec_state (225,910,768 samples, 0.06%)</title><rect x="702.9" y="677" width="0.7" height="15.0" fill="rgb(217,155,23)" rx="2" ry="2" />
+<text  x="705.88" y="687.5" ></text>
+</g>
+<g >
+<title>update_curr (37,537,005 samples, 0.01%)</title><rect x="817.3" y="693" width="0.1" height="15.0" fill="rgb(218,115,43)" rx="2" ry="2" />
+<text  x="820.33" y="703.5" ></text>
+</g>
+<g >
+<title>unix_stream_sendmsg (94,499,948 samples, 0.03%)</title><rect x="266.6" y="837" width="0.3" height="15.0" fill="rgb(248,117,10)" rx="2" ry="2" />
+<text  x="269.64" y="847.5" ></text>
+</g>
+<g >
+<title>[libEGL_mesa.so.0.0.0] (81,862,414 samples, 0.02%)</title><rect x="1165.6" y="677" width="0.3" height="15.0" fill="rgb(228,183,19)" rx="2" ry="2" />
+<text  x="1168.65" y="687.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (85,875,828 samples, 0.02%)</title><rect x="1165.6" y="709" width="0.3" height="15.0" fill="rgb(226,73,17)" rx="2" ry="2" />
+<text  x="1168.63" y="719.5" ></text>
+</g>
+<g >
+<title>__mod_lruvec_page_state (130,805,673 samples, 0.04%)</title><rect x="384.6" y="789" width="0.4" height="15.0" fill="rgb(233,105,27)" rx="2" ry="2" />
+<text  x="387.59" y="799.5" ></text>
+</g>
+<g >
+<title>__writeback_inodes_wb (557,120,986 samples, 0.15%)</title><rect x="595.3" y="869" width="1.8" height="15.0" fill="rgb(241,21,21)" rx="2" ry="2" />
+<text  x="598.31" y="879.5" ></text>
+</g>
+<g >
+<title>spec_ctrl_current (46,663,938 samples, 0.01%)</title><rect x="1122.7" y="853" width="0.1" height="15.0" fill="rgb(209,162,44)" rx="2" ry="2" />
+<text  x="1125.69" y="863.5" ></text>
+</g>
+<g >
+<title>__do_fault (51,474,600 samples, 0.01%)</title><rect x="227.2" y="869" width="0.2" height="15.0" fill="rgb(253,164,17)" rx="2" ry="2" />
+<text  x="230.22" y="879.5" ></text>
+</g>
+<g >
+<title>ip6t_do_table (57,099,090 samples, 0.02%)</title><rect x="742.9" y="437" width="0.1" height="15.0" fill="rgb(250,33,11)" rx="2" ry="2" />
+<text  x="745.86" y="447.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (3,690,867,376 samples, 1.01%)</title><rect x="576.8" y="853" width="11.9" height="15.0" fill="rgb(230,92,17)" rx="2" ry="2" />
+<text  x="579.78" y="863.5" ></text>
+</g>
+<g >
+<title>crypt_page_free (86,800,047 samples, 0.02%)</title><rect x="892.9" y="709" width="0.3" height="15.0" fill="rgb(241,123,27)" rx="2" ry="2" />
+<text  x="895.95" y="719.5" ></text>
+</g>
+<g >
+<title>syscall_trace_enter.constprop.0 (33,749,697 samples, 0.01%)</title><rect x="99.1" y="869" width="0.1" height="15.0" fill="rgb(238,3,10)" rx="2" ry="2" />
+<text  x="102.11" y="879.5" ></text>
+</g>
+<g >
+<title>rmqueue_bulk (48,628,623 samples, 0.01%)</title><rect x="555.3" y="821" width="0.1" height="15.0" fill="rgb(250,184,45)" rx="2" ry="2" />
+<text  x="558.25" y="831.5" ></text>
+</g>
+<g >
+<title>xfs_end_io (317,271,104 samples, 0.09%)</title><rect x="396.5" y="901" width="1.0" height="15.0" fill="rgb(207,228,18)" rx="2" ry="2" />
+<text  x="399.52" y="911.5" ></text>
+</g>
+<g >
+<title>unix_stream_recvmsg (38,746,777 samples, 0.01%)</title><rect x="1170.5" y="885" width="0.1" height="15.0" fill="rgb(242,57,12)" rx="2" ry="2" />
+<text  x="1173.48" y="895.5" ></text>
+</g>
+<g >
+<title>__mod_zone_page_state (32,434,565 samples, 0.01%)</title><rect x="710.7" y="677" width="0.1" height="15.0" fill="rgb(213,178,29)" rx="2" ry="2" />
+<text  x="713.69" y="687.5" ></text>
+</g>
+<g >
+<title>find_busiest_group (70,029,613 samples, 0.02%)</title><rect x="34.8" y="741" width="0.2" height="15.0" fill="rgb(214,106,41)" rx="2" ry="2" />
+<text  x="37.76" y="751.5" ></text>
+</g>
+<g >
+<title>__sk_mem_reduce_allocated (38,499,786 samples, 0.01%)</title><rect x="326.7" y="597" width="0.1" height="15.0" fill="rgb(223,148,24)" rx="2" ry="2" />
+<text  x="329.69" y="607.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (173,159,694 samples, 0.05%)</title><rect x="265.5" y="917" width="0.6" height="15.0" fill="rgb(210,67,44)" rx="2" ry="2" />
+<text  x="268.54" y="927.5" ></text>
+</g>
+<g >
+<title>[libgdk-3.so.0.2404.30] (280,627,165 samples, 0.08%)</title><rect x="1186.6" y="885" width="0.9" height="15.0" fill="rgb(253,181,50)" rx="2" ry="2" />
+<text  x="1189.59" y="895.5" ></text>
+</g>
+<g >
+<title>vsnprintf (176,541,936 samples, 0.05%)</title><rect x="313.5" y="629" width="0.6" height="15.0" fill="rgb(251,165,12)" rx="2" ry="2" />
+<text  x="316.52" y="639.5" ></text>
+</g>
+<g >
+<title>[git] (118,624,643 samples, 0.03%)</title><rect x="285.3" y="901" width="0.4" height="15.0" fill="rgb(250,201,45)" rx="2" ry="2" />
+<text  x="288.27" y="911.5" ></text>
+</g>
+<g >
+<title>inflateInit2_ (49,539,459 samples, 0.01%)</title><rect x="814.6" y="869" width="0.2" height="15.0" fill="rgb(218,226,23)" rx="2" ry="2" />
+<text  x="817.65" y="879.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (3,103,682,374 samples, 0.85%)</title><rect x="750.6" y="837" width="10.0" height="15.0" fill="rgb(243,170,23)" rx="2" ry="2" />
+<text  x="753.57" y="847.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (58,659,934 samples, 0.02%)</title><rect x="1162.9" y="805" width="0.2" height="15.0" fill="rgb(220,116,12)" rx="2" ry="2" />
+<text  x="1165.95" y="815.5" ></text>
+</g>
+<g >
+<title>g_main_context_iteration (1,925,110,380 samples, 0.53%)</title><rect x="276.1" y="933" width="6.2" height="15.0" fill="rgb(228,68,51)" rx="2" ry="2" />
+<text  x="279.10" y="943.5" ></text>
+</g>
+<g >
+<title>memset_erms (102,595,526 samples, 0.03%)</title><rect x="456.8" y="853" width="0.4" height="15.0" fill="rgb(249,92,0)" rx="2" ry="2" />
+<text  x="459.83" y="863.5" ></text>
+</g>
+<g >
+<title>unix_write_space (43,455,627 samples, 0.01%)</title><rect x="39.9" y="741" width="0.1" height="15.0" fill="rgb(237,34,46)" rx="2" ry="2" />
+<text  x="42.87" y="751.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc_node (163,215,652 samples, 0.04%)</title><rect x="239.1" y="773" width="0.5" height="15.0" fill="rgb(213,126,18)" rx="2" ry="2" />
+<text  x="242.05" y="783.5" ></text>
+</g>
+<g >
+<title>g_main_context_dispatch (159,266,028 samples, 0.04%)</title><rect x="100.9" y="917" width="0.6" height="15.0" fill="rgb(240,36,28)" rx="2" ry="2" />
+<text  x="103.95" y="927.5" ></text>
+</g>
+<g >
+<title>gtk_container_propagate_draw (819,076,009 samples, 0.22%)</title><rect x="1171.5" y="597" width="2.6" height="15.0" fill="rgb(211,142,35)" rx="2" ry="2" />
+<text  x="1174.51" y="607.5" ></text>
+</g>
+<g >
+<title>iwl_mvm_bt_coex_is_mimo_allowed (31,785,440 samples, 0.01%)</title><rect x="313.2" y="661" width="0.1" height="15.0" fill="rgb(205,198,38)" rx="2" ry="2" />
+<text  x="316.23" y="671.5" ></text>
+</g>
+<g >
+<title>[libGLX_mesa.so.0.0.0] (1,881,432,605 samples, 0.51%)</title><rect x="18.2" y="949" width="6.0" height="15.0" fill="rgb(232,207,37)" rx="2" ry="2" />
+<text  x="21.19" y="959.5" ></text>
+</g>
+<g >
+<title>schedule_hrtimeout_range_clock (631,214,294 samples, 0.17%)</title><rect x="821.2" y="805" width="2.0" height="15.0" fill="rgb(218,61,18)" rx="2" ry="2" />
+<text  x="824.17" y="815.5" ></text>
+</g>
+<g >
+<title>XPending (127,274,559 samples, 0.03%)</title><rect x="277.3" y="869" width="0.4" height="15.0" fill="rgb(240,9,34)" rx="2" ry="2" />
+<text  x="280.30" y="879.5" ></text>
+</g>
+<g >
+<title>mod_lruvec_page_state (62,216,929 samples, 0.02%)</title><rect x="386.5" y="805" width="0.2" height="15.0" fill="rgb(220,204,25)" rx="2" ry="2" />
+<text  x="389.48" y="815.5" ></text>
+</g>
+<g >
+<title>curl_multi_perform (88,515,249 samples, 0.02%)</title><rect x="284.8" y="789" width="0.2" height="15.0" fill="rgb(236,221,15)" rx="2" ry="2" />
+<text  x="287.75" y="799.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (16,419,764,789 samples, 4.48%)</title><rect x="671.1" y="853" width="52.8" height="15.0" fill="rgb(218,206,40)" rx="2" ry="2" />
+<text  x="674.09" y="863.5" >do_sy..</text>
+</g>
+<g >
+<title>[qemu-img] (3,828,168,233 samples, 1.04%)</title><rect x="736.3" y="853" width="12.3" height="15.0" fill="rgb(222,108,30)" rx="2" ry="2" />
+<text  x="739.26" y="863.5" ></text>
+</g>
+<g >
+<title>xfs_end_ioend (257,699,142 samples, 0.07%)</title><rect x="388.2" y="885" width="0.8" height="15.0" fill="rgb(244,158,16)" rx="2" ry="2" />
+<text  x="391.20" y="895.5" ></text>
+</g>
+<g >
+<title>percpu_counter_add_batch (31,126,406 samples, 0.01%)</title><rect x="386.1" y="789" width="0.1" height="15.0" fill="rgb(242,148,46)" rx="2" ry="2" />
+<text  x="389.11" y="799.5" ></text>
+</g>
+<g >
+<title>process_one_work (2,847,096,641 samples, 0.78%)</title><rect x="524.8" y="917" width="9.1" height="15.0" fill="rgb(224,100,26)" rx="2" ry="2" />
+<text  x="527.77" y="927.5" ></text>
+</g>
+<g >
+<title>try_to_free_pages (60,239,956 samples, 0.02%)</title><rect x="756.8" y="677" width="0.2" height="15.0" fill="rgb(206,95,6)" rx="2" ry="2" />
+<text  x="759.80" y="687.5" ></text>
+</g>
+<g >
+<title>drm_syncobj_array_wait_timeout.constprop.0 (75,519,142 samples, 0.02%)</title><rect x="1163.7" y="517" width="0.2" height="15.0" fill="rgb(208,144,23)" rx="2" ry="2" />
+<text  x="1166.68" y="527.5" ></text>
+</g>
+<g >
+<title>g_main_context_prepare (913,267,535 samples, 0.25%)</title><rect x="279.2" y="901" width="2.9" height="15.0" fill="rgb(254,217,16)" rx="2" ry="2" />
+<text  x="282.20" y="911.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (51,610,704 samples, 0.01%)</title><rect x="360.5" y="773" width="0.2" height="15.0" fill="rgb(229,5,54)" rx="2" ry="2" />
+<text  x="363.53" y="783.5" ></text>
+</g>
+<g >
+<title>kswapd (9,586,910,270 samples, 2.62%)</title><rect x="351.9" y="933" width="30.8" height="15.0" fill="rgb(205,143,35)" rx="2" ry="2" />
+<text  x="354.86" y="943.5" >ks..</text>
+</g>
+<g >
+<title>[libffi.so.8.1.0] (67,754,465 samples, 0.02%)</title><rect x="244.1" y="741" width="0.2" height="15.0" fill="rgb(216,219,24)" rx="2" ry="2" />
+<text  x="247.09" y="751.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (35,008,042 samples, 0.01%)</title><rect x="212.7" y="725" width="0.2" height="15.0" fill="rgb(242,120,24)" rx="2" ry="2" />
+<text  x="215.74" y="735.5" ></text>
+</g>
+<g >
+<title>load_balance (68,034,048 samples, 0.02%)</title><rect x="51.2" y="741" width="0.3" height="15.0" fill="rgb(219,70,9)" rx="2" ry="2" />
+<text  x="54.23" y="751.5" ></text>
+</g>
+<g >
+<title>[libxul.so] (82,876,940 samples, 0.02%)</title><rect x="113.6" y="917" width="0.2" height="15.0" fill="rgb(205,188,15)" rx="2" ry="2" />
+<text  x="116.57" y="927.5" ></text>
+</g>
+<g >
+<title>vfs_write (225,537,702 samples, 0.06%)</title><rect x="815.1" y="821" width="0.8" height="15.0" fill="rgb(252,71,34)" rx="2" ry="2" />
+<text  x="818.14" y="831.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (383,280,902 samples, 0.10%)</title><rect x="1188.4" y="965" width="1.2" height="15.0" fill="rgb(252,134,48)" rx="2" ry="2" />
+<text  x="1191.41" y="975.5" ></text>
+</g>
+<g >
+<title>selinux_socket_recvmsg (118,815,980 samples, 0.03%)</title><rect x="639.8" y="581" width="0.4" height="15.0" fill="rgb(209,81,43)" rx="2" ry="2" />
+<text  x="642.82" y="591.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (46,498,107 samples, 0.01%)</title><rect x="215.2" y="821" width="0.1" height="15.0" fill="rgb(218,109,47)" rx="2" ry="2" />
+<text  x="218.20" y="831.5" ></text>
+</g>
+<g >
+<title>__libc_recvmsg (211,421,606 samples, 0.06%)</title><rect x="20.9" y="837" width="0.7" height="15.0" fill="rgb(249,177,47)" rx="2" ry="2" />
+<text  x="23.89" y="847.5" ></text>
+</g>
+<g >
+<title>folio_add_lru (42,357,340 samples, 0.01%)</title><rect x="236.6" y="789" width="0.2" height="15.0" fill="rgb(236,127,52)" rx="2" ry="2" />
+<text  x="239.62" y="799.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (393,268,969 samples, 0.11%)</title><rect x="19.1" y="805" width="1.3" height="15.0" fill="rgb(250,211,21)" rx="2" ry="2" />
+<text  x="22.11" y="815.5" ></text>
+</g>
+<g >
+<title>[unknown] (1,192,815,707 samples, 0.33%)</title><rect x="37.9" y="965" width="3.9" height="15.0" fill="rgb(233,89,21)" rx="2" ry="2" />
+<text  x="40.94" y="975.5" ></text>
+</g>
+<g >
+<title>futex_wait (39,909,811 samples, 0.01%)</title><rect x="1166.7" y="805" width="0.2" height="15.0" fill="rgb(215,183,29)" rx="2" ry="2" />
+<text  x="1169.73" y="815.5" ></text>
+</g>
+<g >
+<title>g_source_ref (107,120,770 samples, 0.03%)</title><rect x="278.1" y="869" width="0.4" height="15.0" fill="rgb(229,203,30)" rx="2" ry="2" />
+<text  x="281.13" y="879.5" ></text>
+</g>
+<g >
+<title>gen8_de_irq_handler.isra.0 (69,767,973 samples, 0.02%)</title><rect x="892.1" y="757" width="0.3" height="15.0" fill="rgb(252,132,54)" rx="2" ry="2" />
+<text  x="895.13" y="767.5" ></text>
+</g>
+<g >
+<title>g_source_remove_poll (117,793,787 samples, 0.03%)</title><rect x="737.9" y="693" width="0.3" height="15.0" fill="rgb(248,207,24)" rx="2" ry="2" />
+<text  x="740.86" y="703.5" ></text>
+</g>
+<g >
+<title>ip6_xmit (110,421,916 samples, 0.03%)</title><rect x="665.7" y="677" width="0.4" height="15.0" fill="rgb(224,198,16)" rx="2" ry="2" />
+<text  x="668.72" y="687.5" ></text>
+</g>
+<g >
+<title>writeback_sb_inodes (459,498,837 samples, 0.13%)</title><rect x="418.7" y="853" width="1.4" height="15.0" fill="rgb(223,4,24)" rx="2" ry="2" />
+<text  x="421.66" y="863.5" ></text>
+</g>
+<g >
+<title>tick_check_broadcast_expired (122,392,316 samples, 0.03%)</title><rect x="1153.7" y="901" width="0.3" height="15.0" fill="rgb(237,144,22)" rx="2" ry="2" />
+<text  x="1156.65" y="911.5" ></text>
+</g>
+<g >
+<title>ieee80211_crypto_ccmp_decrypt (186,618,236 samples, 0.05%)</title><rect x="305.8" y="709" width="0.6" height="15.0" fill="rgb(238,19,54)" rx="2" ry="2" />
+<text  x="308.76" y="719.5" ></text>
+</g>
+<g >
+<title>schedule_timeout (55,116,963 samples, 0.02%)</title><rect x="829.8" y="901" width="0.1" height="15.0" fill="rgb(235,206,30)" rx="2" ry="2" />
+<text  x="832.76" y="911.5" ></text>
+</g>
+<g >
+<title>___sys_recvmsg (357,915,669 samples, 0.10%)</title><rect x="228.2" y="917" width="1.1" height="15.0" fill="rgb(209,132,19)" rx="2" ry="2" />
+<text  x="231.17" y="927.5" ></text>
+</g>
+<g >
+<title>nvme_irq (32,727,617 samples, 0.01%)</title><rect x="832.5" y="741" width="0.1" height="15.0" fill="rgb(238,108,48)" rx="2" ry="2" />
+<text  x="835.46" y="751.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_established (119,623,405 samples, 0.03%)</title><rect x="320.5" y="597" width="0.4" height="15.0" fill="rgb(238,66,32)" rx="2" ry="2" />
+<text  x="323.47" y="607.5" ></text>
+</g>
+<g >
+<title>sysvec_apic_timer_interrupt (109,047,114 samples, 0.03%)</title><rect x="1147.9" y="837" width="0.3" height="15.0" fill="rgb(232,204,23)" rx="2" ry="2" />
+<text  x="1150.88" y="847.5" ></text>
+</g>
+<g >
+<title>pick_next_task_fair (58,474,055 samples, 0.02%)</title><rect x="884.0" y="837" width="0.2" height="15.0" fill="rgb(211,153,29)" rx="2" ry="2" />
+<text  x="887.04" y="847.5" ></text>
+</g>
+<g >
+<title>wb_writeback (868,118,461 samples, 0.24%)</title><rect x="457.9" y="885" width="2.8" height="15.0" fill="rgb(210,62,29)" rx="2" ry="2" />
+<text  x="460.88" y="895.5" ></text>
+</g>
+<g >
+<title>g_main_context_iteration (39,096,757 samples, 0.01%)</title><rect x="1185.5" y="933" width="0.2" height="15.0" fill="rgb(225,216,18)" rx="2" ry="2" />
+<text  x="1188.55" y="943.5" ></text>
+</g>
+<g >
+<title>mieqProcessInputEvents (38,639,390 samples, 0.01%)</title><rect x="199.4" y="933" width="0.1" height="15.0" fill="rgb(247,187,29)" rx="2" ry="2" />
+<text  x="202.42" y="943.5" ></text>
+</g>
+<g >
+<title>refresh_cpu_vm_stats (60,065,340 samples, 0.02%)</title><rect x="1161.3" y="869" width="0.2" height="15.0" fill="rgb(236,37,40)" rx="2" ry="2" />
+<text  x="1164.30" y="879.5" ></text>
+</g>
+<g >
+<title>dequeue_task_fair (74,112,773 samples, 0.02%)</title><rect x="13.2" y="773" width="0.2" height="15.0" fill="rgb(246,136,5)" rx="2" ry="2" />
+<text  x="16.19" y="783.5" ></text>
+</g>
+<g >
+<title>newidle_balance (230,108,246 samples, 0.06%)</title><rect x="89.3" y="805" width="0.7" height="15.0" fill="rgb(211,26,31)" rx="2" ry="2" />
+<text  x="92.26" y="815.5" ></text>
+</g>
+<g >
+<title>kernel_fpu_end (35,842,922 samples, 0.01%)</title><rect x="547.4" y="821" width="0.1" height="15.0" fill="rgb(218,28,46)" rx="2" ry="2" />
+<text  x="550.43" y="831.5" ></text>
+</g>
+<g >
+<title>xfs_end_io (434,647,456 samples, 0.12%)</title><rect x="390.5" y="901" width="1.4" height="15.0" fill="rgb(254,38,44)" rx="2" ry="2" />
+<text  x="393.51" y="911.5" ></text>
+</g>
+<g >
+<title>[libEGL_mesa.so.0.0.0] (41,901,747 samples, 0.01%)</title><rect x="145.0" y="853" width="0.1" height="15.0" fill="rgb(250,40,26)" rx="2" ry="2" />
+<text  x="147.98" y="863.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (45,461,542 samples, 0.01%)</title><rect x="213.3" y="837" width="0.1" height="15.0" fill="rgb(219,81,45)" rx="2" ry="2" />
+<text  x="216.30" y="847.5" ></text>
+</g>
+<g >
+<title>ip_list_rcv (584,642,660 samples, 0.16%)</title><rect x="319.6" y="709" width="1.9" height="15.0" fill="rgb(226,217,34)" rx="2" ry="2" />
+<text  x="322.61" y="719.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (42,822,450 samples, 0.01%)</title><rect x="134.6" y="581" width="0.1" height="15.0" fill="rgb(222,147,40)" rx="2" ry="2" />
+<text  x="137.58" y="591.5" ></text>
+</g>
+<g >
+<title>__GI___pthread_mutex_unlock_usercnt (42,474,054 samples, 0.01%)</title><rect x="52.0" y="933" width="0.2" height="15.0" fill="rgb(208,229,29)" rx="2" ry="2" />
+<text  x="55.02" y="943.5" ></text>
+</g>
+<g >
+<title>worker_thread (365,912,767 samples, 0.10%)</title><rect x="385.8" y="933" width="1.1" height="15.0" fill="rgb(232,186,1)" rx="2" ry="2" />
+<text  x="388.76" y="943.5" ></text>
+</g>
+<g >
+<title>sysvec_irq_work (70,027,009 samples, 0.02%)</title><rect x="896.5" y="789" width="0.2" height="15.0" fill="rgb(243,141,19)" rx="2" ry="2" />
+<text  x="899.45" y="799.5" ></text>
+</g>
+<g >
+<title>rcu_core (145,893,723 samples, 0.04%)</title><rect x="900.6" y="805" width="0.5" height="15.0" fill="rgb(231,73,29)" rx="2" ry="2" />
+<text  x="903.61" y="815.5" ></text>
+</g>
+<g >
+<title>asm_common_interrupt (34,755,143 samples, 0.01%)</title><rect x="94.6" y="949" width="0.1" height="15.0" fill="rgb(253,150,41)" rx="2" ry="2" />
+<text  x="97.61" y="959.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (549,988,134 samples, 0.15%)</title><rect x="733.5" y="965" width="1.8" height="15.0" fill="rgb(220,138,3)" rx="2" ry="2" />
+<text  x="736.55" y="975.5" ></text>
+</g>
+<g >
+<title>tcp_recvmsg (141,740,127 samples, 0.04%)</title><rect x="748.1" y="597" width="0.4" height="15.0" fill="rgb(253,31,21)" rx="2" ry="2" />
+<text  x="751.06" y="607.5" ></text>
+</g>
+<g >
+<title>avc_has_perm (68,543,940 samples, 0.02%)</title><rect x="640.0" y="565" width="0.2" height="15.0" fill="rgb(239,35,18)" rx="2" ry="2" />
+<text  x="642.98" y="575.5" ></text>
+</g>
+<g >
+<title>__mod_node_page_state (124,413,228 samples, 0.03%)</title><rect x="695.6" y="677" width="0.4" height="15.0" fill="rgb(253,146,0)" rx="2" ry="2" />
+<text  x="698.59" y="687.5" ></text>
+</g>
+<g >
+<title>__GI___pthread_mutex_unlock_usercnt (65,907,617 samples, 0.02%)</title><rect x="105.2" y="933" width="0.2" height="15.0" fill="rgb(252,210,24)" rx="2" ry="2" />
+<text  x="108.22" y="943.5" ></text>
+</g>
+<g >
+<title>__alloc_skb (127,439,131 samples, 0.03%)</title><rect x="47.4" y="789" width="0.4" height="15.0" fill="rgb(219,202,50)" rx="2" ry="2" />
+<text  x="50.38" y="799.5" ></text>
+</g>
+<g >
+<title>qemu_aio_coroutine_enter (37,090,913 samples, 0.01%)</title><rect x="826.3" y="805" width="0.1" height="15.0" fill="rgb(238,140,23)" rx="2" ry="2" />
+<text  x="829.30" y="815.5" ></text>
+</g>
+<g >
+<title>xfs_end_ioend (282,508,577 samples, 0.08%)</title><rect x="392.7" y="885" width="1.0" height="15.0" fill="rgb(231,174,19)" rx="2" ry="2" />
+<text  x="395.75" y="895.5" ></text>
+</g>
+<g >
+<title>__GI___pthread_cond_signal (31,337,938 samples, 0.01%)</title><rect x="44.2" y="933" width="0.1" height="15.0" fill="rgb(220,102,45)" rx="2" ry="2" />
+<text  x="47.16" y="943.5" ></text>
+</g>
+<g >
+<title>[git-remote-http] (110,344,350 samples, 0.03%)</title><rect x="284.7" y="965" width="0.4" height="15.0" fill="rgb(210,74,18)" rx="2" ry="2" />
+<text  x="287.73" y="975.5" ></text>
+</g>
+<g >
+<title>security_sock_rcv_skb (76,785,463 samples, 0.02%)</title><rect x="324.9" y="629" width="0.3" height="15.0" fill="rgb(234,73,43)" rx="2" ry="2" />
+<text  x="327.91" y="639.5" ></text>
+</g>
+<g >
+<title>[libvlccore.so.9.0.1] (1,235,791,676 samples, 0.34%)</title><rect x="1162.7" y="917" width="4.0" height="15.0" fill="rgb(225,164,8)" rx="2" ry="2" />
+<text  x="1165.67" y="927.5" ></text>
+</g>
+<g >
+<title>__GI___libc_malloc (48,356,143 samples, 0.01%)</title><rect x="643.8" y="741" width="0.2" height="15.0" fill="rgb(211,136,45)" rx="2" ry="2" />
+<text  x="646.84" y="751.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (161,252,898 samples, 0.04%)</title><rect x="457.2" y="853" width="0.5" height="15.0" fill="rgb(254,190,7)" rx="2" ry="2" />
+<text  x="460.23" y="863.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (69,924,160 samples, 0.02%)</title><rect x="737.9" y="645" width="0.2" height="15.0" fill="rgb(234,87,8)" rx="2" ry="2" />
+<text  x="740.91" y="655.5" ></text>
+</g>
+<g >
+<title>gtk_main (1,074,179,971 samples, 0.29%)</title><rect x="1171.3" y="949" width="3.5" height="15.0" fill="rgb(229,97,30)" rx="2" ry="2" />
+<text  x="1174.31" y="959.5" ></text>
+</g>
+<g >
+<title>__softirqentry_text_start (682,402,160 samples, 0.19%)</title><rect x="740.5" y="389" width="2.2" height="15.0" fill="rgb(235,14,4)" rx="2" ry="2" />
+<text  x="743.48" y="399.5" ></text>
+</g>
+<g >
+<title>__i915_gem_object_get_pages (34,959,219 samples, 0.01%)</title><rect x="227.2" y="837" width="0.1" height="15.0" fill="rgb(211,48,5)" rx="2" ry="2" />
+<text  x="230.22" y="847.5" ></text>
+</g>
+<g >
+<title>iwl_write32 (58,849,018 samples, 0.02%)</title><rect x="892.7" y="757" width="0.2" height="15.0" fill="rgb(242,87,18)" rx="2" ry="2" />
+<text  x="895.70" y="767.5" ></text>
+</g>
+<g >
+<title>crypt_convert (4,368,043,629 samples, 1.19%)</title><rect x="557.2" y="885" width="14.0" height="15.0" fill="rgb(235,90,16)" rx="2" ry="2" />
+<text  x="560.18" y="895.5" ></text>
+</g>
+<g >
+<title>handle_edge_irq (31,833,825 samples, 0.01%)</title><rect x="813.1" y="789" width="0.1" height="15.0" fill="rgb(249,173,8)" rx="2" ry="2" />
+<text  x="816.12" y="799.5" ></text>
+</g>
+<g >
+<title>[libpipewire-0.3.so.0.358.0] (644,980,346 samples, 0.18%)</title><rect x="729.0" y="965" width="2.1" height="15.0" fill="rgb(229,18,21)" rx="2" ry="2" />
+<text  x="732.02" y="975.5" ></text>
+</g>
+<g >
+<title>[libxul.so] (32,733,176 samples, 0.01%)</title><rect x="38.5" y="933" width="0.1" height="15.0" fill="rgb(207,128,13)" rx="2" ry="2" />
+<text  x="41.49" y="943.5" ></text>
+</g>
+<g >
+<title>filemap_unaccount_folio (47,029,670 samples, 0.01%)</title><rect x="378.4" y="725" width="0.2" height="15.0" fill="rgb(221,103,47)" rx="2" ry="2" />
+<text  x="381.42" y="735.5" ></text>
+</g>
+<g >
+<title>curl_mvaprintf (47,381,533 samples, 0.01%)</title><rect x="668.2" y="725" width="0.2" height="15.0" fill="rgb(249,8,47)" rx="2" ry="2" />
+<text  x="671.21" y="735.5" ></text>
+</g>
+<g >
+<title>__submit_bio (570,828,134 samples, 0.16%)</title><rect x="245.0" y="901" width="1.8" height="15.0" fill="rgb(219,48,43)" rx="2" ry="2" />
+<text  x="248.00" y="911.5" ></text>
+</g>
+<g >
+<title>sock_alloc_send_pskb (275,969,951 samples, 0.08%)</title><rect x="238.7" y="821" width="0.9" height="15.0" fill="rgb(244,42,38)" rx="2" ry="2" />
+<text  x="241.73" y="831.5" ></text>
+</g>
+<g >
+<title>shmem_getpage_gfp (54,617,420 samples, 0.01%)</title><rect x="146.3" y="741" width="0.2" height="15.0" fill="rgb(227,42,10)" rx="2" ry="2" />
+<text  x="149.31" y="751.5" ></text>
+</g>
+<g >
+<title>newidle_balance (93,129,873 samples, 0.03%)</title><rect x="230.5" y="837" width="0.3" height="15.0" fill="rgb(248,5,24)" rx="2" ry="2" />
+<text  x="233.51" y="847.5" ></text>
+</g>
+<g >
+<title>update_load_avg (96,882,696 samples, 0.03%)</title><rect x="903.7" y="773" width="0.4" height="15.0" fill="rgb(242,76,2)" rx="2" ry="2" />
+<text  x="906.74" y="783.5" ></text>
+</g>
+<g >
+<title>xas_store (511,950,755 samples, 0.14%)</title><rect x="361.3" y="821" width="1.6" height="15.0" fill="rgb(253,218,17)" rx="2" ry="2" />
+<text  x="364.27" y="831.5" ></text>
+</g>
+<g >
+<title>unix_stream_read_generic (38,609,821 samples, 0.01%)</title><rect x="1170.5" y="869" width="0.1" height="15.0" fill="rgb(228,69,42)" rx="2" ry="2" />
+<text  x="1173.48" y="879.5" ></text>
+</g>
+<g >
+<title>syscall_return_via_sysret (35,226,639 samples, 0.01%)</title><rect x="91.0" y="933" width="0.2" height="15.0" fill="rgb(248,154,12)" rx="2" ry="2" />
+<text  x="94.04" y="943.5" ></text>
+</g>
+<g >
+<title>WRScene~lder#28 (34,380,829 samples, 0.01%)</title><rect x="186.2" y="981" width="0.1" height="15.0" fill="rgb(216,63,49)" rx="2" ry="2" />
+<text  x="189.16" y="991.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (2,702,203,875 samples, 0.74%)</title><rect x="629.9" y="565" width="8.7" height="15.0" fill="rgb(227,175,22)" rx="2" ry="2" />
+<text  x="632.86" y="575.5" ></text>
+</g>
+<g >
+<title>[libcurl.so.4.8.0] (85,198,681 samples, 0.02%)</title><rect x="646.3" y="693" width="0.3" height="15.0" fill="rgb(227,152,19)" rx="2" ry="2" />
+<text  x="649.29" y="703.5" ></text>
+</g>
+<g >
+<title>rmap_walk_file (53,834,589 samples, 0.01%)</title><rect x="370.3" y="837" width="0.1" height="15.0" fill="rgb(226,214,16)" rx="2" ry="2" />
+<text  x="373.28" y="847.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (329,724,438 samples, 0.09%)</title><rect x="1178.8" y="693" width="1.0" height="15.0" fill="rgb(243,101,18)" rx="2" ry="2" />
+<text  x="1181.76" y="703.5" ></text>
+</g>
+<g >
+<title>_XEventsQueued (120,807,970 samples, 0.03%)</title><rect x="277.3" y="853" width="0.4" height="15.0" fill="rgb(227,24,28)" rx="2" ry="2" />
+<text  x="280.32" y="863.5" ></text>
+</g>
+<g >
+<title>[modesetting_drv.so] (59,316,284 samples, 0.02%)</title><rect x="213.9" y="917" width="0.2" height="15.0" fill="rgb(217,46,28)" rx="2" ry="2" />
+<text  x="216.86" y="927.5" ></text>
+</g>
+<g >
+<title>iomap_adjust_read_range.isra.0 (63,251,653 samples, 0.02%)</title><rect x="712.9" y="757" width="0.2" height="15.0" fill="rgb(226,27,38)" rx="2" ry="2" />
+<text  x="715.93" y="767.5" ></text>
+</g>
+<g >
+<title>_copy_to_iter (104,545,502 samples, 0.03%)</title><rect x="748.2" y="533" width="0.3" height="15.0" fill="rgb(253,117,0)" rx="2" ry="2" />
+<text  x="751.17" y="543.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (61,384,494 samples, 0.02%)</title><rect x="320.2" y="581" width="0.2" height="15.0" fill="rgb(223,160,22)" rx="2" ry="2" />
+<text  x="323.22" y="591.5" ></text>
+</g>
+<g >
+<title>[libxul.so] (1,595,676,931 samples, 0.44%)</title><rect x="10.2" y="965" width="5.1" height="15.0" fill="rgb(231,39,39)" rx="2" ry="2" />
+<text  x="13.21" y="975.5" ></text>
+</g>
+<g >
+<title>iomap_writepages (436,870,820 samples, 0.12%)</title><rect x="555.6" y="789" width="1.4" height="15.0" fill="rgb(205,143,23)" rx="2" ry="2" />
+<text  x="558.62" y="799.5" ></text>
+</g>
+<g >
+<title>wake_up_q (78,231,702 samples, 0.02%)</title><rect x="747.3" y="645" width="0.2" height="15.0" fill="rgb(241,27,45)" rx="2" ry="2" />
+<text  x="750.26" y="655.5" ></text>
+</g>
+<g >
+<title>pick_next_task_fair (69,115,015 samples, 0.02%)</title><rect x="174.7" y="805" width="0.2" height="15.0" fill="rgb(218,116,48)" rx="2" ry="2" />
+<text  x="177.66" y="815.5" ></text>
+</g>
+<g >
+<title>irq/141-elan_i2 (536,732,537 samples, 0.15%)</title><rect x="339.3" y="981" width="1.8" height="15.0" fill="rgb(235,182,29)" rx="2" ry="2" />
+<text  x="342.34" y="991.5" ></text>
+</g>
+<g >
+<title>tasklet_action_common.constprop.0 (1,426,827,107 samples, 0.39%)</title><rect x="347.1" y="885" width="4.6" height="15.0" fill="rgb(212,85,49)" rx="2" ry="2" />
+<text  x="350.11" y="895.5" ></text>
+</g>
+<g >
+<title>ip_protocol_deliver_rcu (1,448,001,661 samples, 0.40%)</title><rect x="324.3" y="677" width="4.7" height="15.0" fill="rgb(239,117,4)" rx="2" ry="2" />
+<text  x="327.35" y="687.5" ></text>
+</g>
+<g >
+<title>ct_kernel_enter.constprop.0 (299,704,485 samples, 0.08%)</title><rect x="916.4" y="853" width="0.9" height="15.0" fill="rgb(206,152,4)" rx="2" ry="2" />
+<text  x="919.38" y="863.5" ></text>
+</g>
+<g >
+<title>balance_dirty_pages_ratelimited_flags (1,858,389,206 samples, 0.51%)</title><rect x="673.0" y="773" width="6.0" height="15.0" fill="rgb(253,163,3)" rx="2" ry="2" />
+<text  x="675.98" y="783.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (3,532,128,868 samples, 0.96%)</title><rect x="558.5" y="869" width="11.4" height="15.0" fill="rgb(245,104,36)" rx="2" ry="2" />
+<text  x="561.53" y="879.5" ></text>
+</g>
+<g >
+<title>qemu_sem_post (188,138,264 samples, 0.05%)</title><rect x="747.0" y="757" width="0.6" height="15.0" fill="rgb(220,220,30)" rx="2" ry="2" />
+<text  x="750.01" y="767.5" ></text>
+</g>
+<g >
+<title>find_get_pages_range_tag (66,779,847 samples, 0.02%)</title><rect x="574.1" y="741" width="0.2" height="15.0" fill="rgb(214,4,48)" rx="2" ry="2" />
+<text  x="577.08" y="751.5" ></text>
+</g>
+<g >
+<title>balance_dirty_pages_ratelimited_flags (41,689,601 samples, 0.01%)</title><rect x="725.0" y="789" width="0.1" height="15.0" fill="rgb(247,49,38)" rx="2" ry="2" />
+<text  x="727.96" y="799.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (173,146,386 samples, 0.05%)</title><rect x="1177.9" y="325" width="0.5" height="15.0" fill="rgb(215,78,10)" rx="2" ry="2" />
+<text  x="1180.87" y="335.5" ></text>
+</g>
+<g >
+<title>[libcurl.so.4.8.0] (34,980,076 samples, 0.01%)</title><rect x="657.2" y="773" width="0.2" height="15.0" fill="rgb(208,80,30)" rx="2" ry="2" />
+<text  x="660.25" y="783.5" ></text>
+</g>
+<g >
+<title>unix_stream_sendmsg (31,474,108 samples, 0.01%)</title><rect x="1165.3" y="597" width="0.1" height="15.0" fill="rgb(219,58,18)" rx="2" ry="2" />
+<text  x="1168.33" y="607.5" ></text>
+</g>
+<g >
+<title>dbus_connection_get_dispatch_status (114,308,876 samples, 0.03%)</title><rect x="279.4" y="869" width="0.4" height="15.0" fill="rgb(248,129,39)" rx="2" ry="2" />
+<text  x="282.38" y="879.5" ></text>
+</g>
+<g >
+<title>asm_common_interrupt (2,486,593,542 samples, 0.68%)</title><rect x="890.4" y="869" width="8.0" height="15.0" fill="rgb(210,155,29)" rx="2" ry="2" />
+<text  x="893.42" y="879.5" ></text>
+</g>
+<g >
+<title>crypt_iv_plain64_gen (185,702,973 samples, 0.05%)</title><rect x="480.6" y="869" width="0.6" height="15.0" fill="rgb(235,31,52)" rx="2" ry="2" />
+<text  x="483.59" y="879.5" ></text>
+</g>
+<g >
+<title>folio_unlock (77,533,378 samples, 0.02%)</title><rect x="365.4" y="853" width="0.2" height="15.0" fill="rgb(245,202,0)" rx="2" ry="2" />
+<text  x="368.36" y="863.5" ></text>
+</g>
+<g >
+<title>simd_skcipher_encrypt (157,377,959 samples, 0.04%)</title><rect x="520.2" y="853" width="0.5" height="15.0" fill="rgb(244,117,49)" rx="2" ry="2" />
+<text  x="523.15" y="863.5" ></text>
+</g>
+<g >
+<title>iwl_mvm_check_ratid_empty (46,376,835 samples, 0.01%)</title><rect x="314.8" y="741" width="0.2" height="15.0" fill="rgb(229,157,15)" rx="2" ry="2" />
+<text  x="317.81" y="751.5" ></text>
+</g>
+<g >
+<title>qio_channel_read_all (129,469,170 samples, 0.04%)</title><rect x="738.3" y="725" width="0.4" height="15.0" fill="rgb(205,219,19)" rx="2" ry="2" />
+<text  x="741.31" y="735.5" ></text>
+</g>
+<g >
+<title>memset_erms (137,205,612 samples, 0.04%)</title><rect x="417.4" y="853" width="0.4" height="15.0" fill="rgb(207,224,36)" rx="2" ry="2" />
+<text  x="420.37" y="863.5" ></text>
+</g>
+<g >
+<title>security_socket_sendmsg (35,071,981 samples, 0.01%)</title><rect x="238.3" y="837" width="0.1" height="15.0" fill="rgb(209,161,49)" rx="2" ry="2" />
+<text  x="241.29" y="847.5" ></text>
+</g>
+<g >
+<title>qio_channel_yield (175,252,655 samples, 0.05%)</title><rect x="738.7" y="725" width="0.6" height="15.0" fill="rgb(208,119,36)" rx="2" ry="2" />
+<text  x="741.75" y="735.5" ></text>
+</g>
+<g >
+<title>intel_atomic_commit (72,914,350 samples, 0.02%)</title><rect x="232.2" y="853" width="0.3" height="15.0" fill="rgb(242,227,49)" rx="2" ry="2" />
+<text  x="235.24" y="863.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (115,382,945 samples, 0.03%)</title><rect x="1178.0" y="181" width="0.4" height="15.0" fill="rgb(251,24,35)" rx="2" ry="2" />
+<text  x="1181.02" y="191.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (192,104,405 samples, 0.05%)</title><rect x="658.0" y="837" width="0.6" height="15.0" fill="rgb(245,4,3)" rx="2" ry="2" />
+<text  x="661.01" y="847.5" ></text>
+</g>
+<g >
+<title>xa_load (73,135,937 samples, 0.02%)</title><rect x="380.5" y="821" width="0.2" height="15.0" fill="rgb(235,64,28)" rx="2" ry="2" />
+<text  x="383.50" y="831.5" ></text>
+</g>
+<g >
+<title>__alloc_skb (257,503,933 samples, 0.07%)</title><rect x="238.8" y="789" width="0.8" height="15.0" fill="rgb(230,24,39)" rx="2" ry="2" />
+<text  x="241.77" y="799.5" ></text>
+</g>
+<g >
+<title>malloc (47,499,832 samples, 0.01%)</title><rect x="179.0" y="933" width="0.2" height="15.0" fill="rgb(232,100,7)" rx="2" ry="2" />
+<text  x="182.00" y="943.5" ></text>
+</g>
+<g >
+<title>wb_workfn (301,153,685 samples, 0.08%)</title><rect x="502.1" y="901" width="1.0" height="15.0" fill="rgb(249,155,20)" rx="2" ry="2" />
+<text  x="505.10" y="911.5" ></text>
+</g>
+<g >
+<title>i915_sw_fence_await_reservation (51,509,772 samples, 0.01%)</title><rect x="232.3" y="805" width="0.1" height="15.0" fill="rgb(228,139,42)" rx="2" ry="2" />
+<text  x="235.25" y="815.5" ></text>
+</g>
+<g >
+<title>[libglamoregl.so] (33,113,818 samples, 0.01%)</title><rect x="213.8" y="869" width="0.1" height="15.0" fill="rgb(235,166,26)" rx="2" ry="2" />
+<text  x="216.75" y="879.5" ></text>
+</g>
+<g >
+<title>schedule (221,411,134 samples, 0.06%)</title><rect x="727.5" y="853" width="0.8" height="15.0" fill="rgb(237,198,33)" rx="2" ry="2" />
+<text  x="730.54" y="863.5" ></text>
+</g>
+<g >
+<title>__writeback_single_inode (459,318,962 samples, 0.13%)</title><rect x="418.7" y="837" width="1.4" height="15.0" fill="rgb(215,133,36)" rx="2" ry="2" />
+<text  x="421.66" y="847.5" ></text>
+</g>
+<g >
+<title>__fget_light (57,229,359 samples, 0.02%)</title><rect x="87.8" y="869" width="0.1" height="15.0" fill="rgb(206,98,1)" rx="2" ry="2" />
+<text  x="90.75" y="879.5" ></text>
+</g>
+<g >
+<title>find_get_pages_range_tag (31,333,123 samples, 0.01%)</title><rect x="420.0" y="741" width="0.1" height="15.0" fill="rgb(223,213,3)" rx="2" ry="2" />
+<text  x="423.04" y="751.5" ></text>
+</g>
+<g >
+<title>rs_drv_mac80211_tx_status (31,860,447 samples, 0.01%)</title><rect x="310.9" y="677" width="0.1" height="15.0" fill="rgb(225,194,33)" rx="2" ry="2" />
+<text  x="313.91" y="687.5" ></text>
+</g>
+<g >
+<title>ieee80211_xmit_fast_finish (215,595,191 samples, 0.06%)</title><rect x="632.6" y="405" width="0.7" height="15.0" fill="rgb(249,101,35)" rx="2" ry="2" />
+<text  x="635.58" y="415.5" ></text>
+</g>
+<g >
+<title>__futex_abstimed_wait_common (441,087,512 samples, 0.12%)</title><rect x="158.0" y="901" width="1.5" height="15.0" fill="rgb(248,175,48)" rx="2" ry="2" />
+<text  x="161.05" y="911.5" ></text>
+</g>
+<g >
+<title>memset_erms (90,113,907 samples, 0.02%)</title><rect x="504.9" y="853" width="0.3" height="15.0" fill="rgb(210,32,36)" rx="2" ry="2" />
+<text  x="507.88" y="863.5" ></text>
+</g>
+<g >
+<title>vfs_write (211,774,057 samples, 0.06%)</title><rect x="85.9" y="885" width="0.7" height="15.0" fill="rgb(211,130,30)" rx="2" ry="2" />
+<text  x="88.95" y="895.5" ></text>
+</g>
+<g >
+<title>__x64_sys_futex (380,917,112 samples, 0.10%)</title><rect x="13.0" y="869" width="1.2" height="15.0" fill="rgb(210,113,38)" rx="2" ry="2" />
+<text  x="15.95" y="879.5" ></text>
+</g>
+<g >
+<title>kthread (221,836,430 samples, 0.06%)</title><rect x="613.1" y="949" width="0.7" height="15.0" fill="rgb(228,41,7)" rx="2" ry="2" />
+<text  x="616.06" y="959.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (176,270,323 samples, 0.05%)</title><rect x="265.5" y="933" width="0.6" height="15.0" fill="rgb(209,213,28)" rx="2" ry="2" />
+<text  x="268.53" y="943.5" ></text>
+</g>
+<g >
+<title>__skb_gro_checksum_complete (256,542,140 samples, 0.07%)</title><rect x="308.0" y="693" width="0.8" height="15.0" fill="rgb(243,155,31)" rx="2" ry="2" />
+<text  x="311.02" y="703.5" ></text>
+</g>
+<g >
+<title>schedule (136,346,021 samples, 0.04%)</title><rect x="733.8" y="885" width="0.5" height="15.0" fill="rgb(206,52,9)" rx="2" ry="2" />
+<text  x="736.81" y="895.5" ></text>
+</g>
+<g >
+<title>kthread (9,586,910,270 samples, 2.62%)</title><rect x="351.9" y="949" width="30.8" height="15.0" fill="rgb(231,206,39)" rx="2" ry="2" />
+<text  x="354.86" y="959.5" >kt..</text>
+</g>
+<g >
+<title>__x64_sys_poll (44,909,330 samples, 0.01%)</title><rect x="20.5" y="773" width="0.1" height="15.0" fill="rgb(254,20,33)" rx="2" ry="2" />
+<text  x="23.47" y="783.5" ></text>
+</g>
+<g >
+<title>shmem_get_pages (34,428,372 samples, 0.01%)</title><rect x="227.2" y="821" width="0.1" height="15.0" fill="rgb(214,100,49)" rx="2" ry="2" />
+<text  x="230.22" y="831.5" ></text>
+</g>
+<g >
+<title>sched_idle_set_state (71,025,103 samples, 0.02%)</title><rect x="1123.7" y="869" width="0.3" height="15.0" fill="rgb(254,74,36)" rx="2" ry="2" />
+<text  x="1126.75" y="879.5" ></text>
+</g>
+<g >
+<title>__x64_sys_futex (56,030,342 samples, 0.02%)</title><rect x="145.8" y="885" width="0.2" height="15.0" fill="rgb(253,71,29)" rx="2" ry="2" />
+<text  x="148.81" y="895.5" ></text>
+</g>
+<g >
+<title>[libpulsecommon-16.1.so] (32,481,452 samples, 0.01%)</title><rect x="1162.0" y="933" width="0.1" height="15.0" fill="rgb(238,198,28)" rx="2" ry="2" />
+<text  x="1165.00" y="943.5" ></text>
+</g>
+<g >
+<title>[libglib-2.0.so.0.7303.0] (39,096,757 samples, 0.01%)</title><rect x="1185.5" y="789" width="0.2" height="15.0" fill="rgb(236,189,36)" rx="2" ry="2" />
+<text  x="1188.55" y="799.5" ></text>
+</g>
+<g >
+<title>dma_map_sgtable (192,963,693 samples, 0.05%)</title><rect x="246.0" y="805" width="0.6" height="15.0" fill="rgb(251,164,22)" rx="2" ry="2" />
+<text  x="249.00" y="815.5" ></text>
+</g>
+<g >
+<title>[libcurl.so.4.8.0] (9,155,130,640 samples, 2.50%)</title><rect x="618.0" y="757" width="29.5" height="15.0" fill="rgb(236,129,21)" rx="2" ry="2" />
+<text  x="620.99" y="767.5" >[l..</text>
+</g>
+<g >
+<title>ip6t_do_table (70,576,094 samples, 0.02%)</title><rect x="663.3" y="629" width="0.2" height="15.0" fill="rgb(236,112,2)" rx="2" ry="2" />
+<text  x="666.27" y="639.5" ></text>
+</g>
+<g >
+<title>do_sys_poll (283,643,830 samples, 0.08%)</title><rect x="22.3" y="789" width="0.9" height="15.0" fill="rgb(238,210,44)" rx="2" ry="2" />
+<text  x="25.28" y="799.5" ></text>
+</g>
+<g >
+<title>JS_Watchdog (91,536,120 samples, 0.02%)</title><rect x="118.2" y="981" width="0.3" height="15.0" fill="rgb(241,25,21)" rx="2" ry="2" />
+<text  x="121.16" y="991.5" ></text>
+</g>
+<g >
+<title>put_prev_task_rt (56,702,111 samples, 0.02%)</title><rect x="338.8" y="885" width="0.1" height="15.0" fill="rgb(251,149,41)" rx="2" ry="2" />
+<text  x="341.75" y="895.5" ></text>
+</g>
+<g >
+<title>main (114,353,481 samples, 0.03%)</title><rect x="243.4" y="917" width="0.4" height="15.0" fill="rgb(221,160,9)" rx="2" ry="2" />
+<text  x="246.39" y="927.5" ></text>
+</g>
+<g >
+<title>netif_receive_skb_list_internal (3,440,215,176 samples, 0.94%)</title><rect x="321.5" y="773" width="11.1" height="15.0" fill="rgb(254,153,32)" rx="2" ry="2" />
+<text  x="324.55" y="783.5" ></text>
+</g>
+<g >
+<title>[libcurl.so.4.8.0] (329,454,028 samples, 0.09%)</title><rect x="667.9" y="773" width="1.0" height="15.0" fill="rgb(216,102,19)" rx="2" ry="2" />
+<text  x="670.86" y="783.5" ></text>
+</g>
+<g >
+<title>__i915_gem_object_get_pages (462,087,290 samples, 0.13%)</title><rect x="234.1" y="821" width="1.5" height="15.0" fill="rgb(220,106,1)" rx="2" ry="2" />
+<text  x="237.10" y="831.5" ></text>
+</g>
+<g >
+<title>do_futex (89,382,272 samples, 0.02%)</title><rect x="148.7" y="869" width="0.3" height="15.0" fill="rgb(233,110,11)" rx="2" ry="2" />
+<text  x="151.68" y="879.5" ></text>
+</g>
+<g >
+<title>parse_command (105,373,923 samples, 0.03%)</title><rect x="243.4" y="869" width="0.4" height="15.0" fill="rgb(228,195,20)" rx="2" ry="2" />
+<text  x="246.42" y="879.5" ></text>
+</g>
+<g >
+<title>_aesni_enc4 (989,341,609 samples, 0.27%)</title><rect x="427.4" y="805" width="3.1" height="15.0" fill="rgb(235,181,18)" rx="2" ry="2" />
+<text  x="430.35" y="815.5" ></text>
+</g>
+<g >
+<title>skcipher_walk_next (108,598,101 samples, 0.03%)</title><rect x="548.4" y="805" width="0.4" height="15.0" fill="rgb(251,126,7)" rx="2" ry="2" />
+<text  x="551.40" y="815.5" ></text>
+</g>
+<g >
+<title>gtk_container_propagate_draw (113,393,078 samples, 0.03%)</title><rect x="1172.2" y="245" width="0.4" height="15.0" fill="rgb(212,174,19)" rx="2" ry="2" />
+<text  x="1175.24" y="255.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (241,888,398 samples, 0.07%)</title><rect x="217.0" y="869" width="0.8" height="15.0" fill="rgb(236,119,50)" rx="2" ry="2" />
+<text  x="219.99" y="879.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (191,769,894 samples, 0.05%)</title><rect x="624.7" y="453" width="0.6" height="15.0" fill="rgb(243,192,20)" rx="2" ry="2" />
+<text  x="627.67" y="463.5" ></text>
+</g>
+<g >
+<title>sock_sendmsg (2,197,394,459 samples, 0.60%)</title><rect x="659.0" y="773" width="7.1" height="15.0" fill="rgb(213,6,18)" rx="2" ry="2" />
+<text  x="662.02" y="783.5" ></text>
+</g>
+<g >
+<title>blk_co_pwritev (297,364,464 samples, 0.08%)</title><rect x="748.6" y="917" width="1.0" height="15.0" fill="rgb(215,209,35)" rx="2" ry="2" />
+<text  x="751.62" y="927.5" ></text>
+</g>
+<g >
+<title>consume_skb (65,549,819 samples, 0.02%)</title><rect x="21.1" y="709" width="0.2" height="15.0" fill="rgb(214,77,14)" rx="2" ry="2" />
+<text  x="24.08" y="719.5" ></text>
+</g>
+<g >
+<title>[_gi.cpython-311-x86_64-linux-gnu.so] (67,754,465 samples, 0.02%)</title><rect x="244.1" y="773" width="0.2" height="15.0" fill="rgb(212,54,0)" rx="2" ry="2" />
+<text  x="247.09" y="783.5" ></text>
+</g>
+<g >
+<title>__libc_read (33,640,997 samples, 0.01%)</title><rect x="191.4" y="949" width="0.1" height="15.0" fill="rgb(232,90,23)" rx="2" ry="2" />
+<text  x="194.40" y="959.5" ></text>
+</g>
+<g >
+<title>rb_next (119,350,653 samples, 0.03%)</title><rect x="1141.0" y="837" width="0.3" height="15.0" fill="rgb(249,196,44)" rx="2" ry="2" />
+<text  x="1143.96" y="847.5" ></text>
+</g>
+<g >
+<title>ip6_finish_output2 (795,692,813 samples, 0.22%)</title><rect x="740.1" y="437" width="2.6" height="15.0" fill="rgb(245,74,24)" rx="2" ry="2" />
+<text  x="743.13" y="447.5" ></text>
+</g>
+<g >
+<title>tick_nohz_idle_exit (1,077,059,379 samples, 0.29%)</title><rect x="1154.7" y="901" width="3.5" height="15.0" fill="rgb(213,5,10)" rx="2" ry="2" />
+<text  x="1157.75" y="911.5" ></text>
+</g>
+<g >
+<title>pick_next_task_fair (57,734,680 samples, 0.02%)</title><rect x="337.1" y="885" width="0.2" height="15.0" fill="rgb(250,161,38)" rx="2" ry="2" />
+<text  x="340.07" y="895.5" ></text>
+</g>
+<g >
+<title>__x64_sys_epoll_wait (126,017,942 samples, 0.03%)</title><rect x="43.4" y="869" width="0.4" height="15.0" fill="rgb(211,207,18)" rx="2" ry="2" />
+<text  x="46.36" y="879.5" ></text>
+</g>
+<g >
+<title>rb_next (36,303,822 samples, 0.01%)</title><rect x="1156.3" y="805" width="0.1" height="15.0" fill="rgb(251,18,43)" rx="2" ry="2" />
+<text  x="1159.30" y="815.5" ></text>
+</g>
+<g >
+<title>ct_kernel_exit.constprop.0 (377,933,578 samples, 0.10%)</title><rect x="917.3" y="869" width="1.3" height="15.0" fill="rgb(251,227,16)" rx="2" ry="2" />
+<text  x="920.34" y="879.5" ></text>
+</g>
+<g >
+<title>__mod_memcg_state (41,288,686 samples, 0.01%)</title><rect x="327.3" y="565" width="0.1" height="15.0" fill="rgb(251,38,18)" rx="2" ry="2" />
+<text  x="330.28" y="575.5" ></text>
+</g>
+<g >
+<title>first_online_pgdat (42,400,122 samples, 0.01%)</title><rect x="1160.7" y="837" width="0.1" height="15.0" fill="rgb(241,172,46)" rx="2" ry="2" />
+<text  x="1163.66" y="847.5" ></text>
+</g>
+<g >
+<title>mod_lruvec_page_state (86,189,708 samples, 0.02%)</title><rect x="439.1" y="725" width="0.3" height="15.0" fill="rgb(208,15,38)" rx="2" ry="2" />
+<text  x="442.12" y="735.5" ></text>
+</g>
+<g >
+<title>schedule (35,985,083 samples, 0.01%)</title><rect x="1183.4" y="885" width="0.1" height="15.0" fill="rgb(225,65,54)" rx="2" ry="2" />
+<text  x="1186.38" y="895.5" ></text>
+</g>
+<g >
+<title>__common_interrupt (33,013,842 samples, 0.01%)</title><rect x="832.5" y="805" width="0.1" height="15.0" fill="rgb(242,111,11)" rx="2" ry="2" />
+<text  x="835.46" y="815.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (169,140,952 samples, 0.05%)</title><rect x="1177.9" y="293" width="0.5" height="15.0" fill="rgb(243,111,11)" rx="2" ry="2" />
+<text  x="1180.87" y="303.5" ></text>
+</g>
+<g >
+<title>[libEGL_mesa.so.0.0.0] (711,699,521 samples, 0.19%)</title><rect x="143.4" y="885" width="2.3" height="15.0" fill="rgb(244,152,4)" rx="2" ry="2" />
+<text  x="146.38" y="895.5" ></text>
+</g>
+<g >
+<title>[libcrypto.so.3.0.5] (65,089,327 samples, 0.02%)</title><rect x="284.8" y="581" width="0.2" height="15.0" fill="rgb(238,57,46)" rx="2" ry="2" />
+<text  x="287.77" y="591.5" ></text>
+</g>
+<g >
+<title>set_page_dirty (170,602,756 samples, 0.05%)</title><rect x="376.9" y="773" width="0.6" height="15.0" fill="rgb(240,225,35)" rx="2" ry="2" />
+<text  x="379.93" y="783.5" ></text>
+</g>
+<g >
+<title>fault_in_readable (54,028,565 samples, 0.01%)</title><rect x="752.9" y="741" width="0.2" height="15.0" fill="rgb(219,138,33)" rx="2" ry="2" />
+<text  x="755.90" y="751.5" ></text>
+</g>
+<g >
+<title>__mem_cgroup_try_charge_swap (32,891,139 samples, 0.01%)</title><rect x="370.0" y="805" width="0.1" height="15.0" fill="rgb(238,30,14)" rx="2" ry="2" />
+<text  x="372.99" y="815.5" ></text>
+</g>
+<g >
+<title>i915_gem_object_get_pages_internal (42,639,567 samples, 0.01%)</title><rect x="140.9" y="693" width="0.1" height="15.0" fill="rgb(234,222,8)" rx="2" ry="2" />
+<text  x="143.89" y="703.5" ></text>
+</g>
+<g >
+<title>__xfs_trans_commit (108,779,112 samples, 0.03%)</title><rect x="759.8" y="725" width="0.3" height="15.0" fill="rgb(220,155,32)" rx="2" ry="2" />
+<text  x="762.78" y="735.5" ></text>
+</g>
+<g >
+<title>update_process_times (56,826,553 samples, 0.02%)</title><rect x="94.9" y="837" width="0.2" height="15.0" fill="rgb(230,125,7)" rx="2" ry="2" />
+<text  x="97.91" y="847.5" ></text>
+</g>
+<g >
+<title>[libxcb.so.1.1.0] (521,291,738 samples, 0.14%)</title><rect x="19.0" y="837" width="1.7" height="15.0" fill="rgb(222,83,5)" rx="2" ry="2" />
+<text  x="22.02" y="847.5" ></text>
+</g>
+<g >
+<title>eventfd_write (62,096,700 samples, 0.02%)</title><rect x="732.1" y="901" width="0.2" height="15.0" fill="rgb(238,173,22)" rx="2" ry="2" />
+<text  x="735.09" y="911.5" ></text>
+</g>
+<g >
+<title>sysvec_apic_timer_interrupt (54,068,466 samples, 0.01%)</title><rect x="267.6" y="933" width="0.2" height="15.0" fill="rgb(229,147,16)" rx="2" ry="2" />
+<text  x="270.61" y="943.5" ></text>
+</g>
+<g >
+<title>raw_spin_rq_lock_nested (48,169,753 samples, 0.01%)</title><rect x="1152.0" y="869" width="0.2" height="15.0" fill="rgb(220,93,15)" rx="2" ry="2" />
+<text  x="1155.04" y="879.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (117,001,447 samples, 0.03%)</title><rect x="1165.5" y="773" width="0.4" height="15.0" fill="rgb(226,210,54)" rx="2" ry="2" />
+<text  x="1168.55" y="783.5" ></text>
+</g>
+<g >
+<title>blk_finish_plug (74,274,070 samples, 0.02%)</title><rect x="244.6" y="917" width="0.2" height="15.0" fill="rgb(236,117,27)" rx="2" ry="2" />
+<text  x="247.58" y="927.5" ></text>
+</g>
+<g >
+<title>aesni_enc (113,689,397 samples, 0.03%)</title><rect x="426.0" y="821" width="0.3" height="15.0" fill="rgb(213,128,43)" rx="2" ry="2" />
+<text  x="428.97" y="831.5" ></text>
+</g>
+<g >
+<title>[firefox] (55,278,162 samples, 0.02%)</title><rect x="282.7" y="901" width="0.2" height="15.0" fill="rgb(208,68,9)" rx="2" ry="2" />
+<text  x="285.69" y="911.5" ></text>
+</g>
+<g >
+<title>cairo_mask (32,956,338 samples, 0.01%)</title><rect x="1172.1" y="245" width="0.1" height="15.0" fill="rgb(214,55,9)" rx="2" ry="2" />
+<text  x="1175.07" y="255.5" ></text>
+</g>
+<g >
+<title>do_try_to_free_pages (59,698,596 samples, 0.02%)</title><rect x="756.8" y="661" width="0.2" height="15.0" fill="rgb(242,175,26)" rx="2" ry="2" />
+<text  x="759.80" y="671.5" ></text>
+</g>
+<g >
+<title>hrtimer_next_event_without (498,332,272 samples, 0.14%)</title><rect x="1140.1" y="869" width="1.6" height="15.0" fill="rgb(234,32,51)" rx="2" ry="2" />
+<text  x="1143.10" y="879.5" ></text>
+</g>
+<g >
+<title>PickPointer (35,730,418 samples, 0.01%)</title><rect x="201.7" y="773" width="0.1" height="15.0" fill="rgb(210,73,30)" rx="2" ry="2" />
+<text  x="204.71" y="783.5" ></text>
+</g>
+<g >
+<title>shmem_truncate_range (200,501,840 samples, 0.05%)</title><rect x="378.1" y="805" width="0.6" height="15.0" fill="rgb(239,28,16)" rx="2" ry="2" />
+<text  x="381.06" y="815.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (120,965,564 samples, 0.03%)</title><rect x="638.1" y="517" width="0.4" height="15.0" fill="rgb(240,106,48)" rx="2" ry="2" />
+<text  x="641.06" y="527.5" ></text>
+</g>
+<g >
+<title>__writeback_single_inode (163,900,072 samples, 0.04%)</title><rect x="533.4" y="837" width="0.5" height="15.0" fill="rgb(207,43,23)" rx="2" ry="2" />
+<text  x="536.40" y="847.5" ></text>
+</g>
+<g >
+<title>free (45,977,925 samples, 0.01%)</title><rect x="169.1" y="933" width="0.2" height="15.0" fill="rgb(216,76,39)" rx="2" ry="2" />
+<text  x="172.12" y="943.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (92,593,672 samples, 0.03%)</title><rect x="90.7" y="885" width="0.3" height="15.0" fill="rgb(216,195,3)" rx="2" ry="2" />
+<text  x="93.67" y="895.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (849,935,857 samples, 0.23%)</title><rect x="401.6" y="837" width="2.7" height="15.0" fill="rgb(213,145,22)" rx="2" ry="2" />
+<text  x="404.61" y="847.5" ></text>
+</g>
+<g >
+<title>Socket_Thread (144,707,493 samples, 0.04%)</title><rect x="154.4" y="981" width="0.4" height="15.0" fill="rgb(254,228,6)" rx="2" ry="2" />
+<text  x="157.37" y="991.5" ></text>
+</g>
+<g >
+<title>shmem_get_pages (83,678,762 samples, 0.02%)</title><rect x="146.2" y="789" width="0.3" height="15.0" fill="rgb(251,186,54)" rx="2" ry="2" />
+<text  x="149.22" y="799.5" ></text>
+</g>
+<g >
+<title>load_balance (84,793,356 samples, 0.02%)</title><rect x="653.5" y="565" width="0.3" height="15.0" fill="rgb(217,191,30)" rx="2" ry="2" />
+<text  x="656.50" y="575.5" ></text>
+</g>
+<g >
+<title>poll_freewait (61,328,217 samples, 0.02%)</title><rect x="1183.2" y="901" width="0.2" height="15.0" fill="rgb(253,68,14)" rx="2" ry="2" />
+<text  x="1186.15" y="911.5" ></text>
+</g>
+<g >
+<title>psi_group_change (268,158,986 samples, 0.07%)</title><rect x="1151.0" y="853" width="0.9" height="15.0" fill="rgb(223,44,27)" rx="2" ry="2" />
+<text  x="1154.00" y="863.5" ></text>
+</g>
+<g >
+<title>__GI___write (72,455,185 samples, 0.02%)</title><rect x="739.0" y="645" width="0.2" height="15.0" fill="rgb(244,25,48)" rx="2" ry="2" />
+<text  x="741.97" y="655.5" ></text>
+</g>
+<g >
+<title>native_sched_clock (106,421,754 samples, 0.03%)</title><rect x="1123.4" y="853" width="0.3" height="15.0" fill="rgb(224,99,12)" rx="2" ry="2" />
+<text  x="1126.35" y="863.5" ></text>
+</g>
+<g >
+<title>fwtable_write32 (90,553,237 samples, 0.02%)</title><rect x="133.3" y="485" width="0.3" height="15.0" fill="rgb(245,67,21)" rx="2" ry="2" />
+<text  x="136.30" y="495.5" ></text>
+</g>
+<g >
+<title>syscall_return_via_sysret (36,170,413 samples, 0.01%)</title><rect x="133.9" y="789" width="0.1" height="15.0" fill="rgb(206,49,28)" rx="2" ry="2" />
+<text  x="136.88" y="799.5" ></text>
+</g>
+<g >
+<title>folio_end_writeback (46,176,986 samples, 0.01%)</title><rect x="387.1" y="837" width="0.2" height="15.0" fill="rgb(241,70,37)" rx="2" ry="2" />
+<text  x="390.14" y="847.5" ></text>
+</g>
+<g >
+<title>[libxul.so] (39,596,335 samples, 0.01%)</title><rect x="26.2" y="949" width="0.1" height="15.0" fill="rgb(227,201,6)" rx="2" ry="2" />
+<text  x="29.22" y="959.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (354,679,584 samples, 0.10%)</title><rect x="481.7" y="837" width="1.1" height="15.0" fill="rgb(224,80,30)" rx="2" ry="2" />
+<text  x="484.69" y="847.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (19,997,131,716 samples, 5.46%)</title><rect x="750.4" y="885" width="64.4" height="15.0" fill="rgb(241,152,52)" rx="2" ry="2" />
+<text  x="753.44" y="895.5" >[qemu-i..</text>
+</g>
+<g >
+<title>wb_workfn (640,992,045 samples, 0.17%)</title><rect x="476.9" y="901" width="2.1" height="15.0" fill="rgb(236,32,11)" rx="2" ry="2" />
+<text  x="479.90" y="911.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (54,362,574 samples, 0.01%)</title><rect x="211.2" y="837" width="0.2" height="15.0" fill="rgb(237,140,20)" rx="2" ry="2" />
+<text  x="214.18" y="847.5" ></text>
+</g>
+<g >
+<title>_aesni_enc1 (124,319,494 samples, 0.03%)</title><rect x="405.1" y="805" width="0.4" height="15.0" fill="rgb(206,64,10)" rx="2" ry="2" />
+<text  x="408.10" y="815.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (66,117,695 samples, 0.02%)</title><rect x="301.9" y="789" width="0.2" height="15.0" fill="rgb(212,131,25)" rx="2" ry="2" />
+<text  x="304.87" y="799.5" ></text>
+</g>
+<g >
+<title>__hrtimer_next_event_base (371,828,423 samples, 0.10%)</title><rect x="1140.3" y="853" width="1.2" height="15.0" fill="rgb(229,116,31)" rx="2" ry="2" />
+<text  x="1143.26" y="863.5" ></text>
+</g>
+<g >
+<title>ipt_do_table (37,161,265 samples, 0.01%)</title><rect x="638.1" y="501" width="0.1" height="15.0" fill="rgb(252,26,8)" rx="2" ry="2" />
+<text  x="641.12" y="511.5" ></text>
+</g>
+<g >
+<title>handle_mm_fault (53,144,930 samples, 0.01%)</title><rect x="227.2" y="917" width="0.2" height="15.0" fill="rgb(222,52,10)" rx="2" ry="2" />
+<text  x="230.21" y="927.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (220,983,452 samples, 0.06%)</title><rect x="627.0" y="677" width="0.7" height="15.0" fill="rgb(246,47,39)" rx="2" ry="2" />
+<text  x="629.99" y="687.5" ></text>
+</g>
+<g >
+<title>native_write_msr (50,730,430 samples, 0.01%)</title><rect x="913.2" y="773" width="0.2" height="15.0" fill="rgb(224,151,22)" rx="2" ry="2" />
+<text  x="916.25" y="783.5" ></text>
+</g>
+<g >
+<title>vfs_writev (722,851,618 samples, 0.20%)</title><rect x="238.1" y="917" width="2.4" height="15.0" fill="rgb(226,109,8)" rx="2" ry="2" />
+<text  x="241.13" y="927.5" ></text>
+</g>
+<g >
+<title>__writeback_inodes_wb (163,900,072 samples, 0.04%)</title><rect x="533.4" y="869" width="0.5" height="15.0" fill="rgb(238,23,27)" rx="2" ry="2" />
+<text  x="536.40" y="879.5" ></text>
+</g>
+<g >
+<title>nft_immediate_eval (54,887,352 samples, 0.01%)</title><rect x="332.1" y="645" width="0.2" height="15.0" fill="rgb(218,151,54)" rx="2" ry="2" />
+<text  x="335.12" y="655.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (74,888,619 samples, 0.02%)</title><rect x="533.1" y="853" width="0.3" height="15.0" fill="rgb(227,25,9)" rx="2" ry="2" />
+<text  x="536.11" y="863.5" ></text>
+</g>
+<g >
+<title>__schedule (83,128,609 samples, 0.02%)</title><rect x="265.7" y="837" width="0.3" height="15.0" fill="rgb(238,63,1)" rx="2" ry="2" />
+<text  x="268.70" y="847.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (7,484,666,583 samples, 2.04%)</title><rect x="479.0" y="965" width="24.1" height="15.0" fill="rgb(222,189,53)" rx="2" ry="2" />
+<text  x="482.01" y="975.5" >r..</text>
+</g>
+<g >
+<title>malloc (169,558,189 samples, 0.05%)</title><rect x="21.6" y="837" width="0.5" height="15.0" fill="rgb(209,12,16)" rx="2" ry="2" />
+<text  x="24.57" y="847.5" ></text>
+</g>
+<g >
+<title>cpuidle_get_cpu_driver (32,517,036 samples, 0.01%)</title><rect x="1125.3" y="901" width="0.1" height="15.0" fill="rgb(213,159,33)" rx="2" ry="2" />
+<text  x="1128.32" y="911.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (517,426,156 samples, 0.14%)</title><rect x="826.2" y="869" width="1.6" height="15.0" fill="rgb(232,106,18)" rx="2" ry="2" />
+<text  x="829.16" y="879.5" ></text>
+</g>
+<g >
+<title>xas_find_conflict (37,936,004 samples, 0.01%)</title><rect x="755.5" y="693" width="0.1" height="15.0" fill="rgb(218,46,10)" rx="2" ry="2" />
+<text  x="758.47" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (35,452,142 samples, 0.01%)</title><rect x="1189.8" y="965" width="0.2" height="15.0" fill="rgb(212,15,42)" rx="2" ry="2" />
+<text  x="1192.84" y="975.5" ></text>
+</g>
+<g >
+<title>__schedule (89,226,852 samples, 0.02%)</title><rect x="614.5" y="901" width="0.3" height="15.0" fill="rgb(229,200,36)" rx="2" ry="2" />
+<text  x="617.50" y="911.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (204,194,060 samples, 0.06%)</title><rect x="151.7" y="885" width="0.7" height="15.0" fill="rgb(228,74,34)" rx="2" ry="2" />
+<text  x="154.69" y="895.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (48,032,346 samples, 0.01%)</title><rect x="131.8" y="757" width="0.2" height="15.0" fill="rgb(234,40,10)" rx="2" ry="2" />
+<text  x="134.82" y="767.5" ></text>
+</g>
+<g >
+<title>can_stop_idle_tick (74,821,172 samples, 0.02%)</title><rect x="1139.8" y="869" width="0.2" height="15.0" fill="rgb(232,45,32)" rx="2" ry="2" />
+<text  x="1142.79" y="879.5" ></text>
+</g>
+<g >
+<title>__sys_sendmsg (1,468,552,688 samples, 0.40%)</title><rect x="739.5" y="629" width="4.7" height="15.0" fill="rgb(246,143,9)" rx="2" ry="2" />
+<text  x="742.47" y="639.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (151,645,863 samples, 0.04%)</title><rect x="151.7" y="869" width="0.5" height="15.0" fill="rgb(248,223,17)" rx="2" ry="2" />
+<text  x="154.73" y="879.5" ></text>
+</g>
+<g >
+<title>TaskCon~ller_#5 (32,370,164 samples, 0.01%)</title><rect x="155.4" y="981" width="0.1" height="15.0" fill="rgb(219,17,25)" rx="2" ry="2" />
+<text  x="158.42" y="991.5" ></text>
+</g>
+<g >
+<title>ct_idle_exit (378,130,324 samples, 0.10%)</title><rect x="916.1" y="869" width="1.2" height="15.0" fill="rgb(223,174,45)" rx="2" ry="2" />
+<text  x="919.12" y="879.5" ></text>
+</g>
+<g >
+<title>curl_easy_perform (12,501,266,312 samples, 3.41%)</title><rect x="616.9" y="789" width="40.3" height="15.0" fill="rgb(229,18,53)" rx="2" ry="2" />
+<text  x="619.93" y="799.5" >cur..</text>
+</g>
+<g >
+<title>handle_irq_event (43,476,076 samples, 0.01%)</title><rect x="900.2" y="741" width="0.1" height="15.0" fill="rgb(236,206,45)" rx="2" ry="2" />
+<text  x="903.15" y="751.5" ></text>
+</g>
+<g >
+<title>[libgdk-3.so.0.2404.30] (301,254,375 samples, 0.08%)</title><rect x="1177.8" y="805" width="0.9" height="15.0" fill="rgb(251,111,29)" rx="2" ry="2" />
+<text  x="1180.75" y="815.5" ></text>
+</g>
+<g >
+<title>schedule_hrtimeout_range_clock (223,821,361 samples, 0.06%)</title><rect x="22.4" y="773" width="0.7" height="15.0" fill="rgb(223,67,31)" rx="2" ry="2" />
+<text  x="25.42" y="783.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (54,911,828 samples, 0.01%)</title><rect x="213.1" y="853" width="0.1" height="15.0" fill="rgb(248,37,25)" rx="2" ry="2" />
+<text  x="216.05" y="863.5" ></text>
+</g>
+<g >
+<title>[libxul.so] (4,535,883,491 samples, 1.24%)</title><rect x="160.5" y="965" width="14.6" height="15.0" fill="rgb(253,91,26)" rx="2" ry="2" />
+<text  x="163.47" y="975.5" ></text>
+</g>
+<g >
+<title>crypt_page_alloc (185,282,607 samples, 0.05%)</title><rect x="476.3" y="869" width="0.6" height="15.0" fill="rgb(228,189,37)" rx="2" ry="2" />
+<text  x="479.30" y="879.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (53,913,617 samples, 0.01%)</title><rect x="738.4" y="645" width="0.2" height="15.0" fill="rgb(206,119,2)" rx="2" ry="2" />
+<text  x="741.38" y="655.5" ></text>
+</g>
+<g >
+<title>nft_do_chain_inet (530,757,422 samples, 0.14%)</title><rect x="330.8" y="677" width="1.7" height="15.0" fill="rgb(243,124,45)" rx="2" ry="2" />
+<text  x="333.78" y="687.5" ></text>
+</g>
+<g >
+<title>nf_conntrack_tcp_packet (33,798,150 samples, 0.01%)</title><rect x="743.3" y="421" width="0.1" height="15.0" fill="rgb(238,34,22)" rx="2" ry="2" />
+<text  x="746.29" y="431.5" ></text>
+</g>
+<g >
+<title>xas_descend (96,807,026 samples, 0.03%)</title><rect x="698.1" y="677" width="0.3" height="15.0" fill="rgb(241,206,18)" rx="2" ry="2" />
+<text  x="701.10" y="687.5" ></text>
+</g>
+<g >
+<title>handle_irq_event (50,701,533 samples, 0.01%)</title><rect x="384.2" y="725" width="0.2" height="15.0" fill="rgb(220,215,47)" rx="2" ry="2" />
+<text  x="387.23" y="735.5" ></text>
+</g>
+<g >
+<title>ip6_output (43,881,690 samples, 0.01%)</title><rect x="663.1" y="645" width="0.2" height="15.0" fill="rgb(234,113,8)" rx="2" ry="2" />
+<text  x="666.12" y="655.5" ></text>
+</g>
+<g >
+<title>folio_end_writeback (38,008,998 samples, 0.01%)</title><rect x="387.0" y="837" width="0.1" height="15.0" fill="rgb(209,65,47)" rx="2" ry="2" />
+<text  x="389.95" y="847.5" ></text>
+</g>
+<g >
+<title>__libc_start_main_alias_2 (103,738,733 samples, 0.03%)</title><rect x="284.8" y="949" width="0.3" height="15.0" fill="rgb(212,192,54)" rx="2" ry="2" />
+<text  x="287.75" y="959.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (825,330,734 samples, 0.23%)</title><rect x="1171.5" y="709" width="2.7" height="15.0" fill="rgb(242,219,31)" rx="2" ry="2" />
+<text  x="1174.50" y="719.5" ></text>
+</g>
+<g >
+<title>__folio_start_writeback (70,921,470 samples, 0.02%)</title><rect x="533.6" y="741" width="0.2" height="15.0" fill="rgb(216,205,42)" rx="2" ry="2" />
+<text  x="536.62" y="751.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (179,344,208 samples, 0.05%)</title><rect x="224.6" y="885" width="0.6" height="15.0" fill="rgb(240,59,33)" rx="2" ry="2" />
+<text  x="227.64" y="895.5" ></text>
+</g>
+<g >
+<title>security_socket_sendmsg (51,112,007 samples, 0.01%)</title><rect x="46.9" y="837" width="0.2" height="15.0" fill="rgb(211,185,10)" rx="2" ry="2" />
+<text  x="49.91" y="847.5" ></text>
+</g>
+<g >
+<title>__libc_start_call_main (70,403,096 samples, 0.02%)</title><rect x="830.4" y="933" width="0.2" height="15.0" fill="rgb(214,211,3)" rx="2" ry="2" />
+<text  x="833.39" y="943.5" ></text>
+</g>
+<g >
+<title>evutil_gettime_monotonic_ (42,035,183 samples, 0.01%)</title><rect x="36.6" y="917" width="0.1" height="15.0" fill="rgb(250,213,21)" rx="2" ry="2" />
+<text  x="39.55" y="927.5" ></text>
+</g>
+<g >
+<title>update_blocked_averages (625,845,446 samples, 0.17%)</title><rect x="902.2" y="789" width="2.0" height="15.0" fill="rgb(238,138,24)" rx="2" ry="2" />
+<text  x="905.21" y="799.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (44,977,557 samples, 0.01%)</title><rect x="217.8" y="853" width="0.2" height="15.0" fill="rgb(228,59,34)" rx="2" ry="2" />
+<text  x="220.82" y="863.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (86,563,401 samples, 0.02%)</title><rect x="1174.2" y="773" width="0.3" height="15.0" fill="rgb(207,88,50)" rx="2" ry="2" />
+<text  x="1177.20" y="783.5" ></text>
+</g>
+<g >
+<title>xts_crypt (1,891,861,530 samples, 0.52%)</title><rect x="465.7" y="837" width="6.1" height="15.0" fill="rgb(226,193,41)" rx="2" ry="2" />
+<text  x="468.66" y="847.5" ></text>
+</g>
+<g >
+<title>writeback_sb_inodes (439,395,769 samples, 0.12%)</title><rect x="523.3" y="853" width="1.4" height="15.0" fill="rgb(252,34,0)" rx="2" ry="2" />
+<text  x="526.31" y="863.5" ></text>
+</g>
+<g >
+<title>__mod_memcg_lruvec_state (40,437,418 samples, 0.01%)</title><rect x="756.3" y="661" width="0.1" height="15.0" fill="rgb(232,13,29)" rx="2" ry="2" />
+<text  x="759.30" y="671.5" ></text>
+</g>
+<g >
+<title>load_balance (182,851,451 samples, 0.05%)</title><rect x="34.4" y="757" width="0.6" height="15.0" fill="rgb(246,114,9)" rx="2" ry="2" />
+<text  x="37.45" y="767.5" ></text>
+</g>
+<g >
+<title>__GI___pthread_cond_signal (176,782,742 samples, 0.05%)</title><rect x="24.9" y="933" width="0.6" height="15.0" fill="rgb(240,199,13)" rx="2" ry="2" />
+<text  x="27.89" y="943.5" ></text>
+</g>
+<g >
+<title>nvme_prep_rq.part.0 (70,724,895 samples, 0.02%)</title><rect x="244.6" y="853" width="0.2" height="15.0" fill="rgb(229,103,48)" rx="2" ry="2" />
+<text  x="247.59" y="863.5" ></text>
+</g>
+<g >
+<title>[unknown] (78,805,702 samples, 0.02%)</title><rect x="182.8" y="965" width="0.2" height="15.0" fill="rgb(221,119,52)" rx="2" ry="2" />
+<text  x="185.78" y="975.5" ></text>
+</g>
+<g >
+<title>shrink_dentry_list (64,554,448 samples, 0.02%)</title><rect x="382.0" y="821" width="0.2" height="15.0" fill="rgb(205,98,34)" rx="2" ry="2" />
+<text  x="384.97" y="831.5" ></text>
+</g>
+<g >
+<title>do_idle (85,789,310,806 samples, 23.40%)</title><rect x="885.5" y="917" width="276.2" height="15.0" fill="rgb(227,54,15)" rx="2" ry="2" />
+<text  x="888.53" y="927.5" >do_idle</text>
+</g>
+<g >
+<title>[qemu-img] (167,484,002 samples, 0.05%)</title><rect x="748.9" y="773" width="0.6" height="15.0" fill="rgb(237,75,6)" rx="2" ry="2" />
+<text  x="751.93" y="783.5" ></text>
+</g>
+<g >
+<title>[libxul.so] (1,125,599,162 samples, 0.31%)</title><rect x="37.9" y="949" width="3.7" height="15.0" fill="rgb(235,146,19)" rx="2" ry="2" />
+<text  x="40.95" y="959.5" ></text>
+</g>
+<g >
+<title>nvme_irq (50,234,360 samples, 0.01%)</title><rect x="384.2" y="693" width="0.2" height="15.0" fill="rgb(247,213,4)" rx="2" ry="2" />
+<text  x="387.23" y="703.5" ></text>
+</g>
+<g >
+<title>[libxcb.so.1.1.0] (274,623,735 samples, 0.07%)</title><rect x="279.9" y="805" width="0.9" height="15.0" fill="rgb(241,29,2)" rx="2" ry="2" />
+<text  x="282.91" y="815.5" ></text>
+</g>
+<g >
+<title>tick_nohz_idle_stop_tick (986,738,679 samples, 0.27%)</title><rect x="1158.3" y="901" width="3.2" height="15.0" fill="rgb(252,66,26)" rx="2" ry="2" />
+<text  x="1161.32" y="911.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (74,218,854 samples, 0.02%)</title><rect x="1177.3" y="821" width="0.2" height="15.0" fill="rgb(244,56,32)" rx="2" ry="2" />
+<text  x="1180.29" y="831.5" ></text>
+</g>
+<g >
+<title>tick_sched_handle (139,687,840 samples, 0.04%)</title><rect x="813.9" y="741" width="0.4" height="15.0" fill="rgb(224,201,18)" rx="2" ry="2" />
+<text  x="816.86" y="751.5" ></text>
+</g>
+<g >
+<title>crypt_iv_plain64_gen (112,034,655 samples, 0.03%)</title><rect x="598.3" y="869" width="0.3" height="15.0" fill="rgb(227,115,50)" rx="2" ry="2" />
+<text  x="601.28" y="879.5" ></text>
+</g>
+<g >
+<title>wake_up_q (77,931,473 samples, 0.02%)</title><rect x="25.1" y="837" width="0.3" height="15.0" fill="rgb(237,104,26)" rx="2" ry="2" />
+<text  x="28.12" y="847.5" ></text>
+</g>
+<g >
+<title>thread_pool_submit_aio (143,628,289 samples, 0.04%)</title><rect x="749.0" y="741" width="0.5" height="15.0" fill="rgb(238,81,22)" rx="2" ry="2" />
+<text  x="752.01" y="751.5" ></text>
+</g>
+<g >
+<title>set_task_cpu (34,913,584 samples, 0.01%)</title><rect x="30.5" y="789" width="0.1" height="15.0" fill="rgb(236,193,42)" rx="2" ry="2" />
+<text  x="33.48" y="799.5" ></text>
+</g>
+<g >
+<title>__i915_sw_fence_complete (40,385,354 samples, 0.01%)</title><rect x="137.2" y="757" width="0.1" height="15.0" fill="rgb(211,218,42)" rx="2" ry="2" />
+<text  x="140.20" y="767.5" ></text>
+</g>
+<g >
+<title>qemu_co_mutex_lock (33,230,700 samples, 0.01%)</title><rect x="744.5" y="741" width="0.1" height="15.0" fill="rgb(205,132,18)" rx="2" ry="2" />
+<text  x="747.46" y="751.5" ></text>
+</g>
+<g >
+<title>PR_GetCurrentThread (94,438,756 samples, 0.03%)</title><rect x="112.4" y="933" width="0.3" height="15.0" fill="rgb(221,193,51)" rx="2" ry="2" />
+<text  x="115.37" y="943.5" ></text>
+</g>
+<g >
+<title>xfs_inode_item_format_data_fork (43,932,391 samples, 0.01%)</title><rect x="722.2" y="693" width="0.1" height="15.0" fill="rgb(218,199,16)" rx="2" ry="2" />
+<text  x="725.18" y="703.5" ></text>
+</g>
+<g >
+<title>iomap_writepages (459,086,619 samples, 0.13%)</title><rect x="418.7" y="789" width="1.4" height="15.0" fill="rgb(205,194,19)" rx="2" ry="2" />
+<text  x="421.67" y="799.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (51,681,495 samples, 0.01%)</title><rect x="135.8" y="837" width="0.1" height="15.0" fill="rgb(210,5,47)" rx="2" ry="2" />
+<text  x="138.77" y="847.5" ></text>
+</g>
+<g >
+<title>g_array_set_size (39,682,533 samples, 0.01%)</title><rect x="824.5" y="885" width="0.1" height="15.0" fill="rgb(217,86,2)" rx="2" ry="2" />
+<text  x="827.45" y="895.5" ></text>
+</g>
+<g >
+<title>[libglib-2.0.so.0.7303.0] (34,418,573 samples, 0.01%)</title><rect x="101.0" y="901" width="0.1" height="15.0" fill="rgb(214,2,41)" rx="2" ry="2" />
+<text  x="104.02" y="911.5" ></text>
+</g>
+<g >
+<title>kthread (239,201,144 samples, 0.07%)</title><rect x="392.0" y="949" width="0.7" height="15.0" fill="rgb(217,188,46)" rx="2" ry="2" />
+<text  x="394.95" y="959.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (727,062,534 samples, 0.20%)</title><rect x="46.8" y="917" width="2.3" height="15.0" fill="rgb(254,201,49)" rx="2" ry="2" />
+<text  x="49.79" y="927.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (33,613,385 samples, 0.01%)</title><rect x="912.0" y="709" width="0.1" height="15.0" fill="rgb(254,20,0)" rx="2" ry="2" />
+<text  x="914.97" y="719.5" ></text>
+</g>
+<g >
+<title>skcipher_walk_virt (294,472,923 samples, 0.08%)</title><rect x="516.0" y="821" width="0.9" height="15.0" fill="rgb(225,34,31)" rx="2" ry="2" />
+<text  x="518.96" y="831.5" ></text>
+</g>
+<g >
+<title>wb_workfn (439,178,080 samples, 0.12%)</title><rect x="555.6" y="901" width="1.4" height="15.0" fill="rgb(220,220,50)" rx="2" ry="2" />
+<text  x="558.61" y="911.5" ></text>
+</g>
+<g >
+<title>i915_sw_fence_await_dma_fence (50,901,722 samples, 0.01%)</title><rect x="232.3" y="789" width="0.1" height="15.0" fill="rgb(225,177,44)" rx="2" ry="2" />
+<text  x="235.26" y="799.5" ></text>
+</g>
+<g >
+<title>__futex_abstimed_wait_common (284,308,569 samples, 0.08%)</title><rect x="50.9" y="917" width="0.9" height="15.0" fill="rgb(222,120,5)" rx="2" ry="2" />
+<text  x="53.89" y="927.5" ></text>
+</g>
+<g >
+<title>send_structured_reply_read (2,399,196,036 samples, 0.65%)</title><rect x="658.7" y="885" width="7.7" height="15.0" fill="rgb(209,135,17)" rx="2" ry="2" />
+<text  x="661.72" y="895.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (69,858,091 samples, 0.02%)</title><rect x="319.8" y="645" width="0.2" height="15.0" fill="rgb(246,50,31)" rx="2" ry="2" />
+<text  x="322.79" y="655.5" ></text>
+</g>
+<g >
+<title>xfs_iextents_copy (38,717,491 samples, 0.01%)</title><rect x="722.2" y="677" width="0.1" height="15.0" fill="rgb(250,168,4)" rx="2" ry="2" />
+<text  x="725.19" y="687.5" ></text>
+</g>
+<g >
+<title>___pskb_trim (50,904,898 samples, 0.01%)</title><rect x="306.1" y="693" width="0.1" height="15.0" fill="rgb(213,95,15)" rx="2" ry="2" />
+<text  x="309.06" y="703.5" ></text>
+</g>
+<g >
+<title>free (51,172,558 samples, 0.01%)</title><rect x="141.7" y="901" width="0.2" height="15.0" fill="rgb(229,119,29)" rx="2" ry="2" />
+<text  x="144.73" y="911.5" ></text>
+</g>
+<g >
+<title>[libgdk-3.so.0.2404.30] (34,582,359 samples, 0.01%)</title><rect x="1177.6" y="853" width="0.1" height="15.0" fill="rgb(233,130,24)" rx="2" ry="2" />
+<text  x="1180.59" y="863.5" ></text>
+</g>
+<g >
+<title>ip6_xmit (1,263,249,182 samples, 0.34%)</title><rect x="659.9" y="661" width="4.1" height="15.0" fill="rgb(241,130,6)" rx="2" ry="2" />
+<text  x="662.91" y="671.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (2,872,701,322 samples, 0.78%)</title><rect x="736.6" y="773" width="9.2" height="15.0" fill="rgb(223,200,29)" rx="2" ry="2" />
+<text  x="739.57" y="783.5" ></text>
+</g>
+<g >
+<title>run_rebalance_domains (37,405,178 samples, 0.01%)</title><rect x="813.6" y="773" width="0.1" height="15.0" fill="rgb(220,142,31)" rx="2" ry="2" />
+<text  x="816.56" y="783.5" ></text>
+</g>
+<g >
+<title>do_fault (98,242,601 samples, 0.03%)</title><rect x="146.2" y="853" width="0.3" height="15.0" fill="rgb(212,229,43)" rx="2" ry="2" />
+<text  x="149.22" y="863.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (107,641,824 samples, 0.03%)</title><rect x="142.9" y="885" width="0.3" height="15.0" fill="rgb(240,52,33)" rx="2" ry="2" />
+<text  x="145.88" y="895.5" ></text>
+</g>
+<g >
+<title>g_array_append_vals (73,855,975 samples, 0.02%)</title><rect x="1180.7" y="773" width="0.2" height="15.0" fill="rgb(230,146,22)" rx="2" ry="2" />
+<text  x="1183.71" y="783.5" ></text>
+</g>
+<g >
+<title>malloc (63,069,529 samples, 0.02%)</title><rect x="43.9" y="933" width="0.2" height="15.0" fill="rgb(208,33,44)" rx="2" ry="2" />
+<text  x="46.95" y="943.5" ></text>
+</g>
+<g >
+<title>irq_enter_rcu (171,723,933 samples, 0.05%)</title><rect x="897.4" y="837" width="0.5" height="15.0" fill="rgb(212,25,40)" rx="2" ry="2" />
+<text  x="900.37" y="847.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (869,670,969 samples, 0.24%)</title><rect x="118.8" y="965" width="2.8" height="15.0" fill="rgb(215,40,48)" rx="2" ry="2" />
+<text  x="121.81" y="975.5" ></text>
+</g>
+<g >
+<title>xts_crypt (2,445,491,788 samples, 0.67%)</title><rect x="580.8" y="837" width="7.8" height="15.0" fill="rgb(248,91,0)" rx="2" ry="2" />
+<text  x="583.78" y="847.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (46,958,168 samples, 0.01%)</title><rect x="244.4" y="949" width="0.1" height="15.0" fill="rgb(242,24,35)" rx="2" ry="2" />
+<text  x="247.35" y="959.5" ></text>
+</g>
+<g >
+<title>__libc_poll (1,258,413,839 samples, 0.34%)</title><rect x="87.1" y="949" width="4.1" height="15.0" fill="rgb(222,136,10)" rx="2" ry="2" />
+<text  x="90.10" y="959.5" ></text>
+</g>
+<g >
+<title>ksys_read (37,553,255 samples, 0.01%)</title><rect x="734.8" y="933" width="0.2" height="15.0" fill="rgb(237,182,10)" rx="2" ry="2" />
+<text  x="737.84" y="943.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_established (265,467,421 samples, 0.07%)</title><rect x="661.2" y="437" width="0.8" height="15.0" fill="rgb(208,109,4)" rx="2" ry="2" />
+<text  x="664.15" y="447.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (668,432,910 samples, 0.18%)</title><rect x="816.6" y="853" width="2.1" height="15.0" fill="rgb(230,3,0)" rx="2" ry="2" />
+<text  x="819.56" y="863.5" ></text>
+</g>
+<g >
+<title>xas_descend (89,497,518 samples, 0.02%)</title><rect x="718.3" y="693" width="0.3" height="15.0" fill="rgb(241,53,8)" rx="2" ry="2" />
+<text  x="721.34" y="703.5" ></text>
+</g>
+<g >
+<title>___sys_sendmsg (1,455,382,737 samples, 0.40%)</title><rect x="739.5" y="613" width="4.7" height="15.0" fill="rgb(249,219,25)" rx="2" ry="2" />
+<text  x="742.48" y="623.5" ></text>
+</g>
+<g >
+<title>[wget] (92,132,750 samples, 0.03%)</title><rect x="1167.1" y="901" width="0.3" height="15.0" fill="rgb(236,47,51)" rx="2" ry="2" />
+<text  x="1170.10" y="911.5" ></text>
+</g>
+<g >
+<title>__handle_irq_event_percpu (40,105,637 samples, 0.01%)</title><rect x="900.2" y="725" width="0.1" height="15.0" fill="rgb(228,156,30)" rx="2" ry="2" />
+<text  x="903.15" y="735.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (674,920,613 samples, 0.18%)</title><rect x="623.3" y="501" width="2.1" height="15.0" fill="rgb(215,174,7)" rx="2" ry="2" />
+<text  x="626.25" y="511.5" ></text>
+</g>
+<g >
+<title>shmem_read_mapping_page_gfp (65,134,537 samples, 0.02%)</title><rect x="146.3" y="757" width="0.2" height="15.0" fill="rgb(208,221,33)" rx="2" ry="2" />
+<text  x="149.28" y="767.5" ></text>
+</g>
+<g >
+<title>do_writepages (148,240,118 samples, 0.04%)</title><rect x="612.5" y="821" width="0.5" height="15.0" fill="rgb(239,135,38)" rx="2" ry="2" />
+<text  x="615.55" y="831.5" ></text>
+</g>
+<g >
+<title>clockevents_program_event (126,949,396 samples, 0.03%)</title><rect x="1158.9" y="869" width="0.4" height="15.0" fill="rgb(228,227,39)" rx="2" ry="2" />
+<text  x="1161.85" y="879.5" ></text>
+</g>
+<g >
+<title>drm_syncobj_wait_ioctl (180,387,010 samples, 0.05%)</title><rect x="232.6" y="885" width="0.5" height="15.0" fill="rgb(250,75,14)" rx="2" ry="2" />
+<text  x="235.56" y="895.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (5,582,631,266 samples, 1.52%)</title><rect x="124.1" y="949" width="18.0" height="15.0" fill="rgb(253,132,19)" rx="2" ry="2" />
+<text  x="127.13" y="959.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc_node (110,520,679 samples, 0.03%)</title><rect x="19.6" y="613" width="0.3" height="15.0" fill="rgb(246,72,28)" rx="2" ry="2" />
+<text  x="22.58" y="623.5" ></text>
+</g>
+<g >
+<title>glXGetCurrentContext (120,883,334 samples, 0.03%)</title><rect x="23.9" y="933" width="0.3" height="15.0" fill="rgb(246,60,22)" rx="2" ry="2" />
+<text  x="26.86" y="943.5" ></text>
+</g>
+<g >
+<title>[libglamoregl.so] (140,739,198 samples, 0.04%)</title><rect x="216.2" y="821" width="0.4" height="15.0" fill="rgb(211,120,45)" rx="2" ry="2" />
+<text  x="219.19" y="831.5" ></text>
+</g>
+<g >
+<title>__writeback_single_inode (148,240,118 samples, 0.04%)</title><rect x="612.5" y="837" width="0.5" height="15.0" fill="rgb(249,177,27)" rx="2" ry="2" />
+<text  x="615.55" y="847.5" ></text>
+</g>
+<g >
+<title>_aesni_enc1 (99,459,143 samples, 0.03%)</title><rect x="426.0" y="805" width="0.3" height="15.0" fill="rgb(209,91,27)" rx="2" ry="2" />
+<text  x="429.01" y="815.5" ></text>
+</g>
+<g >
+<title>shrink_node (9,551,187,847 samples, 2.61%)</title><rect x="351.9" y="901" width="30.8" height="15.0" fill="rgb(248,119,12)" rx="2" ry="2" />
+<text  x="354.92" y="911.5" >sh..</text>
+</g>
+<g >
+<title>[libglib-2.0.so.0.7303.0] (99,734,375 samples, 0.03%)</title><rect x="101.6" y="901" width="0.3" height="15.0" fill="rgb(230,96,8)" rx="2" ry="2" />
+<text  x="104.56" y="911.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (287,314,518 samples, 0.08%)</title><rect x="222.2" y="805" width="0.9" height="15.0" fill="rgb(238,211,29)" rx="2" ry="2" />
+<text  x="225.16" y="815.5" ></text>
+</g>
+<g >
+<title>blk_co_preadv (3,875,273,006 samples, 1.06%)</title><rect x="736.1" y="917" width="12.5" height="15.0" fill="rgb(209,207,7)" rx="2" ry="2" />
+<text  x="739.15" y="927.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (627,629,466 samples, 0.17%)</title><rect x="518.1" y="853" width="2.1" height="15.0" fill="rgb(227,182,12)" rx="2" ry="2" />
+<text  x="521.13" y="863.5" ></text>
+</g>
+<g >
+<title>__sys_getsockname (54,512,983 samples, 0.01%)</title><rect x="641.0" y="645" width="0.2" height="15.0" fill="rgb(253,70,31)" rx="2" ry="2" />
+<text  x="644.02" y="655.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (2,867,347,700 samples, 0.78%)</title><rect x="462.5" y="853" width="9.3" height="15.0" fill="rgb(227,18,36)" rx="2" ry="2" />
+<text  x="465.53" y="863.5" ></text>
+</g>
+<g >
+<title>__handle_mm_fault (98,625,803 samples, 0.03%)</title><rect x="146.2" y="869" width="0.3" height="15.0" fill="rgb(210,157,27)" rx="2" ry="2" />
+<text  x="149.22" y="879.5" ></text>
+</g>
+<g >
+<title>try_to_wake_up (59,543,439 samples, 0.02%)</title><rect x="148.8" y="821" width="0.2" height="15.0" fill="rgb(233,90,8)" rx="2" ry="2" />
+<text  x="151.78" y="831.5" ></text>
+</g>
+<g >
+<title>kcryptd_crypt (6,494,743,497 samples, 1.77%)</title><rect x="574.4" y="901" width="20.9" height="15.0" fill="rgb(229,9,43)" rx="2" ry="2" />
+<text  x="577.40" y="911.5" ></text>
+</g>
+<g >
+<title>writeback_sb_inodes (163,900,072 samples, 0.04%)</title><rect x="533.4" y="853" width="0.5" height="15.0" fill="rgb(251,196,33)" rx="2" ry="2" />
+<text  x="536.40" y="863.5" ></text>
+</g>
+<g >
+<title>__pagevec_release (78,380,131 samples, 0.02%)</title><rect x="378.1" y="773" width="0.2" height="15.0" fill="rgb(252,126,37)" rx="2" ry="2" />
+<text  x="381.07" y="783.5" ></text>
+</g>
+<g >
+<title>worker_thread (502,537,604 samples, 0.14%)</title><rect x="390.3" y="933" width="1.6" height="15.0" fill="rgb(244,99,49)" rx="2" ry="2" />
+<text  x="393.32" y="943.5" ></text>
+</g>
+<g >
+<title>[libglib-2.0.so.0.7303.0] (39,096,757 samples, 0.01%)</title><rect x="1185.5" y="869" width="0.2" height="15.0" fill="rgb(254,199,54)" rx="2" ry="2" />
+<text  x="1188.55" y="879.5" ></text>
+</g>
+<g >
+<title>schedule_hrtimeout_range_clock (677,872,432 samples, 0.18%)</title><rect x="33.7" y="837" width="2.2" height="15.0" fill="rgb(231,140,10)" rx="2" ry="2" />
+<text  x="36.67" y="847.5" ></text>
+</g>
+<g >
+<title>mwait_idle_with_hints.constprop.0 (12,913,365,003 samples, 3.52%)</title><rect x="838.8" y="821" width="41.6" height="15.0" fill="rgb(226,167,15)" rx="2" ry="2" />
+<text  x="841.81" y="831.5" >mwa..</text>
+</g>
+<g >
+<title>perf_event_task_tick (550,699,622 samples, 0.15%)</title><rect x="910.2" y="725" width="1.7" height="15.0" fill="rgb(228,41,14)" rx="2" ry="2" />
+<text  x="913.16" y="735.5" ></text>
+</g>
+<g >
+<title>eb_validate_vmas (45,973,950 samples, 0.01%)</title><rect x="144.6" y="677" width="0.1" height="15.0" fill="rgb(254,93,36)" rx="2" ry="2" />
+<text  x="147.59" y="687.5" ></text>
+</g>
+<g >
+<title>vfs_writev (74,937,706 samples, 0.02%)</title><rect x="145.2" y="741" width="0.2" height="15.0" fill="rgb(251,16,0)" rx="2" ry="2" />
+<text  x="148.15" y="751.5" ></text>
+</g>
+<g >
+<title>load_balance (70,884,883 samples, 0.02%)</title><rect x="13.5" y="741" width="0.3" height="15.0" fill="rgb(219,58,19)" rx="2" ry="2" />
+<text  x="16.53" y="751.5" ></text>
+</g>
+<g >
+<title>iwl_pcie_rxq_restock (97,471,291 samples, 0.03%)</title><rect x="318.3" y="773" width="0.3" height="15.0" fill="rgb(245,53,40)" rx="2" ry="2" />
+<text  x="321.31" y="783.5" ></text>
+</g>
+<g >
+<title>newidle_balance (206,285,712 samples, 0.06%)</title><rect x="653.3" y="581" width="0.7" height="15.0" fill="rgb(241,149,24)" rx="2" ry="2" />
+<text  x="656.33" y="591.5" ></text>
+</g>
+<g >
+<title>copy_msghdr_from_user (59,904,943 samples, 0.02%)</title><rect x="40.4" y="853" width="0.2" height="15.0" fill="rgb(216,94,13)" rx="2" ry="2" />
+<text  x="43.38" y="863.5" ></text>
+</g>
+<g >
+<title>__folio_end_writeback (774,880,775 samples, 0.21%)</title><rect x="383.2" y="821" width="2.5" height="15.0" fill="rgb(216,120,12)" rx="2" ry="2" />
+<text  x="386.16" y="831.5" ></text>
+</g>
+<g >
+<title>worker_thread (45,168,634 samples, 0.01%)</title><rect x="386.9" y="933" width="0.2" height="15.0" fill="rgb(230,103,8)" rx="2" ry="2" />
+<text  x="389.94" y="943.5" ></text>
+</g>
+<g >
+<title>_fbGetWindowPixmap (204,962,638 samples, 0.06%)</title><rect x="209.9" y="885" width="0.7" height="15.0" fill="rgb(218,54,37)" rx="2" ry="2" />
+<text  x="212.90" y="895.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (197,981,210 samples, 0.05%)</title><rect x="20.9" y="821" width="0.6" height="15.0" fill="rgb(206,8,39)" rx="2" ry="2" />
+<text  x="23.91" y="831.5" ></text>
+</g>
+<g >
+<title>plugin_pread (329,454,028 samples, 0.09%)</title><rect x="667.9" y="837" width="1.0" height="15.0" fill="rgb(221,126,49)" rx="2" ry="2" />
+<text  x="670.86" y="847.5" ></text>
+</g>
+<g >
+<title>[libgdk-3.so.0.2404.30] (288,173,586 samples, 0.08%)</title><rect x="1177.8" y="789" width="0.9" height="15.0" fill="rgb(207,129,43)" rx="2" ry="2" />
+<text  x="1180.76" y="799.5" ></text>
+</g>
+<g >
+<title>skcipher_walk_next (43,607,905 samples, 0.01%)</title><rect x="530.6" y="805" width="0.1" height="15.0" fill="rgb(239,109,34)" rx="2" ry="2" />
+<text  x="533.56" y="815.5" ></text>
+</g>
+<g >
+<title>do_futex (230,002,713 samples, 0.06%)</title><rect x="51.0" y="853" width="0.7" height="15.0" fill="rgb(252,108,42)" rx="2" ry="2" />
+<text  x="53.96" y="863.5" ></text>
+</g>
+<g >
+<title>vfs_read (98,493,598 samples, 0.03%)</title><rect x="826.7" y="741" width="0.3" height="15.0" fill="rgb(252,142,38)" rx="2" ry="2" />
+<text  x="829.67" y="751.5" ></text>
+</g>
+<g >
+<title>protocol_recv_request_send_reply.isra.0 (15,536,146,568 samples, 4.24%)</title><rect x="616.6" y="901" width="50.0" height="15.0" fill="rgb(205,229,26)" rx="2" ry="2" />
+<text  x="619.61" y="911.5" >proto..</text>
+</g>
+<g >
+<title>schedule (95,915,874 samples, 0.03%)</title><rect x="614.5" y="917" width="0.3" height="15.0" fill="rgb(250,219,7)" rx="2" ry="2" />
+<text  x="617.49" y="927.5" ></text>
+</g>
+<g >
+<title>[Xorg] (33,969,608 samples, 0.01%)</title><rect x="53.9" y="965" width="0.1" height="15.0" fill="rgb(222,51,0)" rx="2" ry="2" />
+<text  x="56.87" y="975.5" ></text>
+</g>
+<g >
+<title>tick_sched_timer (234,256,965 samples, 0.06%)</title><rect x="833.7" y="757" width="0.7" height="15.0" fill="rgb(207,177,42)" rx="2" ry="2" />
+<text  x="836.67" y="767.5" ></text>
+</g>
+<g >
+<title>ksys_write (48,451,404 samples, 0.01%)</title><rect x="735.0" y="933" width="0.1" height="15.0" fill="rgb(207,26,50)" rx="2" ry="2" />
+<text  x="737.96" y="943.5" ></text>
+</g>
+<g >
+<title>gtk_container_propagate_draw (809,455,336 samples, 0.22%)</title><rect x="1171.5" y="533" width="2.6" height="15.0" fill="rgb(213,39,2)" rx="2" ry="2" />
+<text  x="1174.52" y="543.5" ></text>
+</g>
+<g >
+<title>simd_skcipher_encrypt (167,488,758 samples, 0.05%)</title><rect x="498.4" y="853" width="0.5" height="15.0" fill="rgb(253,136,38)" rx="2" ry="2" />
+<text  x="501.40" y="863.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (43,298,425 samples, 0.01%)</title><rect x="152.0" y="789" width="0.1" height="15.0" fill="rgb(219,34,13)" rx="2" ry="2" />
+<text  x="155.01" y="799.5" ></text>
+</g>
+<g >
+<title>[libglamoregl.so] (66,566,398 samples, 0.02%)</title><rect x="225.4" y="965" width="0.3" height="15.0" fill="rgb(209,154,28)" rx="2" ry="2" />
+<text  x="228.45" y="975.5" ></text>
+</g>
+<g >
+<title>__x64_sys_sched_yield (76,093,405 samples, 0.02%)</title><rect x="169.7" y="901" width="0.3" height="15.0" fill="rgb(253,159,2)" rx="2" ry="2" />
+<text  x="172.74" y="911.5" ></text>
+</g>
+<g >
+<title>[bash] (45,694,100 samples, 0.01%)</title><rect x="243.4" y="533" width="0.2" height="15.0" fill="rgb(217,226,50)" rx="2" ry="2" />
+<text  x="246.42" y="543.5" ></text>
+</g>
+<g >
+<title>__hrtimer_run_queues (76,061,995 samples, 0.02%)</title><rect x="94.9" y="885" width="0.2" height="15.0" fill="rgb(253,27,19)" rx="2" ry="2" />
+<text  x="97.86" y="895.5" ></text>
+</g>
+<g >
+<title>folio_clear_dirty_for_io (160,213,788 samples, 0.04%)</title><rect x="477.0" y="757" width="0.6" height="15.0" fill="rgb(233,101,10)" rx="2" ry="2" />
+<text  x="480.04" y="767.5" ></text>
+</g>
+<g >
+<title>dequeue_entity (128,511,157 samples, 0.04%)</title><rect x="88.7" y="805" width="0.4" height="15.0" fill="rgb(217,183,24)" rx="2" ry="2" />
+<text  x="91.72" y="815.5" ></text>
+</g>
+<g >
+<title>[libgdk-3.so.0.2404.30] (278,661,147 samples, 0.08%)</title><rect x="1186.6" y="853" width="0.9" height="15.0" fill="rgb(205,213,33)" rx="2" ry="2" />
+<text  x="1189.59" y="863.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (215,392,150 samples, 0.06%)</title><rect x="215.5" y="805" width="0.7" height="15.0" fill="rgb(240,184,47)" rx="2" ry="2" />
+<text  x="218.47" y="815.5" ></text>
+</g>
+<g >
+<title>ieee80211_rx_handlers (668,956,223 samples, 0.18%)</title><rect x="305.0" y="725" width="2.2" height="15.0" fill="rgb(215,122,23)" rx="2" ry="2" />
+<text  x="308.02" y="735.5" ></text>
+</g>
+<g >
+<title>eb_pin_engine (154,308,023 samples, 0.04%)</title><rect x="138.7" y="773" width="0.5" height="15.0" fill="rgb(247,152,54)" rx="2" ry="2" />
+<text  x="141.71" y="783.5" ></text>
+</g>
+<g >
+<title>security_socket_sendmsg (37,274,063 samples, 0.01%)</title><rect x="659.1" y="757" width="0.1" height="15.0" fill="rgb(246,218,35)" rx="2" ry="2" />
+<text  x="662.08" y="767.5" ></text>
+</g>
+<g >
+<title>__x64_sys_ioctl (155,862,250 samples, 0.04%)</title><rect x="734.3" y="933" width="0.5" height="15.0" fill="rgb(230,223,36)" rx="2" ry="2" />
+<text  x="737.25" y="943.5" ></text>
+</g>
+<g >
+<title>kthread (2,851,115,362 samples, 0.78%)</title><rect x="524.8" y="949" width="9.1" height="15.0" fill="rgb(230,136,9)" rx="2" ry="2" />
+<text  x="527.77" y="959.5" ></text>
+</g>
+<g >
+<title>[libgdk-3.so.0.2404.30] (35,373,632 samples, 0.01%)</title><rect x="1171.4" y="885" width="0.1" height="15.0" fill="rgb(213,89,45)" rx="2" ry="2" />
+<text  x="1174.36" y="895.5" ></text>
+</g>
+<g >
+<title>clockevents_program_event (96,779,517 samples, 0.03%)</title><rect x="1157.1" y="853" width="0.3" height="15.0" fill="rgb(237,146,42)" rx="2" ry="2" />
+<text  x="1160.11" y="863.5" ></text>
+</g>
+<g >
+<title>load_new_mm_cr3 (153,070,776 samples, 0.04%)</title><rect x="1153.1" y="853" width="0.5" height="15.0" fill="rgb(242,130,21)" rx="2" ry="2" />
+<text  x="1156.11" y="863.5" ></text>
+</g>
+<g >
+<title>dequeue_task_fair (62,028,244 samples, 0.02%)</title><rect x="291.9" y="805" width="0.2" height="15.0" fill="rgb(221,65,18)" rx="2" ry="2" />
+<text  x="294.89" y="815.5" ></text>
+</g>
+<g >
+<title>_int_free (40,450,072 samples, 0.01%)</title><rect x="736.4" y="805" width="0.1" height="15.0" fill="rgb(250,173,12)" rx="2" ry="2" />
+<text  x="739.35" y="815.5" ></text>
+</g>
+<g >
+<title>[firefox] (172,494,885 samples, 0.05%)</title><rect x="36.9" y="917" width="0.6" height="15.0" fill="rgb(227,118,7)" rx="2" ry="2" />
+<text  x="39.95" y="927.5" ></text>
+</g>
+<g >
+<title>__mod_lruvec_page_state (38,177,997 samples, 0.01%)</title><rect x="395.1" y="789" width="0.1" height="15.0" fill="rgb(215,216,45)" rx="2" ry="2" />
+<text  x="398.11" y="799.5" ></text>
+</g>
+<g >
+<title>[libxul.so] (46,548,205 samples, 0.01%)</title><rect x="182.9" y="917" width="0.1" height="15.0" fill="rgb(228,105,26)" rx="2" ry="2" />
+<text  x="185.87" y="927.5" ></text>
+</g>
+<g >
+<title>xas_create (135,110,138 samples, 0.04%)</title><rect x="700.1" y="693" width="0.4" height="15.0" fill="rgb(234,229,6)" rx="2" ry="2" />
+<text  x="703.07" y="703.5" ></text>
+</g>
+<g >
+<title>find_get_pages_range_tag (39,444,451 samples, 0.01%)</title><rect x="478.8" y="741" width="0.2" height="15.0" fill="rgb(222,155,2)" rx="2" ry="2" />
+<text  x="481.83" y="751.5" ></text>
+</g>
+<g >
+<title>kthread (347,211,127 samples, 0.09%)</title><rect x="396.4" y="949" width="1.2" height="15.0" fill="rgb(251,140,19)" rx="2" ry="2" />
+<text  x="399.45" y="959.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (41,046,447 samples, 0.01%)</title><rect x="25.9" y="885" width="0.1" height="15.0" fill="rgb(239,21,30)" rx="2" ry="2" />
+<text  x="28.90" y="895.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (108,529,357 samples, 0.03%)</title><rect x="169.7" y="917" width="0.4" height="15.0" fill="rgb(209,9,22)" rx="2" ry="2" />
+<text  x="172.73" y="927.5" ></text>
+</g>
+<g >
+<title>_start (114,353,481 samples, 0.03%)</title><rect x="243.4" y="965" width="0.4" height="15.0" fill="rgb(241,222,13)" rx="2" ry="2" />
+<text  x="246.39" y="975.5" ></text>
+</g>
+<g >
+<title>[Xorg] (6,422,006,327 samples, 1.75%)</title><rect x="202.8" y="949" width="20.6" height="15.0" fill="rgb(225,222,1)" rx="2" ry="2" />
+<text  x="205.76" y="959.5" ></text>
+</g>
+<g >
+<title>hrtimer_start_range_ns (133,866,606 samples, 0.04%)</title><rect x="651.2" y="629" width="0.4" height="15.0" fill="rgb(232,196,12)" rx="2" ry="2" />
+<text  x="654.18" y="639.5" ></text>
+</g>
+<g >
+<title>__sk_dst_check (35,903,642 samples, 0.01%)</title><rect x="630.2" y="533" width="0.2" height="15.0" fill="rgb(250,145,22)" rx="2" ry="2" />
+<text  x="633.24" y="543.5" ></text>
+</g>
+<g >
+<title>[libcurl.so.4.8.0] (38,263,385 samples, 0.01%)</title><rect x="667.9" y="693" width="0.2" height="15.0" fill="rgb(208,61,39)" rx="2" ry="2" />
+<text  x="670.94" y="703.5" ></text>
+</g>
+<g >
+<title>_XReply (33,281,114 samples, 0.01%)</title><rect x="282.3" y="885" width="0.1" height="15.0" fill="rgb(238,200,47)" rx="2" ry="2" />
+<text  x="285.30" y="895.5" ></text>
+</g>
+<g >
+<title>hrtimer_try_to_cancel (64,667,368 samples, 0.02%)</title><rect x="651.6" y="629" width="0.2" height="15.0" fill="rgb(216,3,12)" rx="2" ry="2" />
+<text  x="654.61" y="639.5" ></text>
+</g>
+<g >
+<title>__wake_up_common (33,622,758 samples, 0.01%)</title><rect x="266.8" y="741" width="0.1" height="15.0" fill="rgb(232,229,36)" rx="2" ry="2" />
+<text  x="269.82" y="751.5" ></text>
+</g>
+<g >
+<title>__GI_madvise (34,134,746 samples, 0.01%)</title><rect x="268.7" y="917" width="0.1" height="15.0" fill="rgb(213,205,36)" rx="2" ry="2" />
+<text  x="271.71" y="927.5" ></text>
+</g>
+<g >
+<title>update_curr (66,589,917 samples, 0.02%)</title><rect x="821.7" y="725" width="0.2" height="15.0" fill="rgb(219,221,46)" rx="2" ry="2" />
+<text  x="824.70" y="735.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (76,122,903 samples, 0.02%)</title><rect x="825.6" y="853" width="0.2" height="15.0" fill="rgb(218,113,2)" rx="2" ry="2" />
+<text  x="828.55" y="863.5" ></text>
+</g>
+<g >
+<title>eventfd_poll (51,877,953 samples, 0.01%)</title><rect x="88.0" y="869" width="0.1" height="15.0" fill="rgb(238,88,29)" rx="2" ry="2" />
+<text  x="90.96" y="879.5" ></text>
+</g>
+<g >
+<title>[unknown] (49,068,072 samples, 0.01%)</title><rect x="182.9" y="949" width="0.1" height="15.0" fill="rgb(214,149,46)" rx="2" ry="2" />
+<text  x="185.87" y="959.5" ></text>
+</g>
+<g >
+<title>update_cfs_group (54,649,010 samples, 0.01%)</title><rect x="1129.5" y="805" width="0.2" height="15.0" fill="rgb(216,140,37)" rx="2" ry="2" />
+<text  x="1132.49" y="815.5" ></text>
+</g>
+<g >
+<title>__fget_light (71,708,068 samples, 0.02%)</title><rect x="726.2" y="869" width="0.2" height="15.0" fill="rgb(206,67,39)" rx="2" ry="2" />
+<text  x="729.20" y="879.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (36,433,092 samples, 0.01%)</title><rect x="211.2" y="821" width="0.2" height="15.0" fill="rgb(238,130,40)" rx="2" ry="2" />
+<text  x="214.23" y="831.5" ></text>
+</g>
+<g >
+<title>shmem_sg_alloc_table (81,218,654 samples, 0.02%)</title><rect x="134.5" y="693" width="0.2" height="15.0" fill="rgb(242,204,26)" rx="2" ry="2" />
+<text  x="137.46" y="703.5" ></text>
+</g>
+<g >
+<title>__i915_gem_object_get_pages (83,678,762 samples, 0.02%)</title><rect x="146.2" y="805" width="0.3" height="15.0" fill="rgb(245,148,50)" rx="2" ry="2" />
+<text  x="149.22" y="815.5" ></text>
+</g>
+<g >
+<title>[libglamoregl.so] (120,436,894 samples, 0.03%)</title><rect x="204.2" y="853" width="0.4" height="15.0" fill="rgb(225,74,17)" rx="2" ry="2" />
+<text  x="207.18" y="863.5" ></text>
+</g>
+<g >
+<title>[modesetting_drv.so] (380,096,697 samples, 0.10%)</title><rect x="201.4" y="901" width="1.2" height="15.0" fill="rgb(205,100,32)" rx="2" ry="2" />
+<text  x="204.37" y="911.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (268,700,454 samples, 0.07%)</title><rect x="1164.3" y="725" width="0.8" height="15.0" fill="rgb(215,132,34)" rx="2" ry="2" />
+<text  x="1167.28" y="735.5" ></text>
+</g>
+<g >
+<title>iomap_finish_ioend (425,117,745 samples, 0.12%)</title><rect x="390.5" y="853" width="1.4" height="15.0" fill="rgb(252,151,46)" rx="2" ry="2" />
+<text  x="393.51" y="863.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (166,372,692 samples, 0.05%)</title><rect x="197.7" y="933" width="0.5" height="15.0" fill="rgb(254,225,25)" rx="2" ry="2" />
+<text  x="200.66" y="943.5" ></text>
+</g>
+<g >
+<title>skb_copy_datagram_iter (282,415,591 samples, 0.08%)</title><rect x="638.6" y="565" width="0.9" height="15.0" fill="rgb(214,26,1)" rx="2" ry="2" />
+<text  x="641.64" y="575.5" ></text>
+</g>
+<g >
+<title>tick_nohz_get_sleep_length (208,493,122 samples, 0.06%)</title><rect x="882.9" y="853" width="0.7" height="15.0" fill="rgb(235,31,41)" rx="2" ry="2" />
+<text  x="885.90" y="863.5" ></text>
+</g>
+<g >
+<title>__GI___libc_sigaction (115,028,058 samples, 0.03%)</title><rect x="617.2" y="757" width="0.4" height="15.0" fill="rgb(218,125,25)" rx="2" ry="2" />
+<text  x="620.18" y="767.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (172,654,468 samples, 0.05%)</title><rect x="200.4" y="853" width="0.6" height="15.0" fill="rgb(224,168,16)" rx="2" ry="2" />
+<text  x="203.43" y="863.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (99,793,593 samples, 0.03%)</title><rect x="749.1" y="693" width="0.3" height="15.0" fill="rgb(212,17,7)" rx="2" ry="2" />
+<text  x="752.11" y="703.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (52,384,487 samples, 0.01%)</title><rect x="1179.0" y="565" width="0.2" height="15.0" fill="rgb(243,147,9)" rx="2" ry="2" />
+<text  x="1182.04" y="575.5" ></text>
+</g>
+<g >
+<title>crypt_iv_plain64_gen (67,716,630 samples, 0.02%)</title><rect x="525.4" y="869" width="0.2" height="15.0" fill="rgb(242,192,48)" rx="2" ry="2" />
+<text  x="528.37" y="879.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (203,823,947 samples, 0.06%)</title><rect x="215.5" y="789" width="0.7" height="15.0" fill="rgb(247,41,17)" rx="2" ry="2" />
+<text  x="218.51" y="799.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (51,395,576 samples, 0.01%)</title><rect x="275.1" y="917" width="0.2" height="15.0" fill="rgb(229,79,46)" rx="2" ry="2" />
+<text  x="278.12" y="927.5" ></text>
+</g>
+<g >
+<title>iomap_do_writepage (97,720,187 samples, 0.03%)</title><rect x="533.6" y="757" width="0.3" height="15.0" fill="rgb(226,86,14)" rx="2" ry="2" />
+<text  x="536.59" y="767.5" ></text>
+</g>
+<g >
+<title>__schedule (198,682,944 samples, 0.05%)</title><rect x="51.0" y="789" width="0.7" height="15.0" fill="rgb(243,81,31)" rx="2" ry="2" />
+<text  x="54.02" y="799.5" ></text>
+</g>
+<g >
+<title>__alloc_skb (119,657,701 samples, 0.03%)</title><rect x="629.5" y="549" width="0.4" height="15.0" fill="rgb(227,89,24)" rx="2" ry="2" />
+<text  x="632.47" y="559.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (163,791,582 samples, 0.04%)</title><rect x="156.4" y="933" width="0.5" height="15.0" fill="rgb(223,196,25)" rx="2" ry="2" />
+<text  x="159.37" y="943.5" ></text>
+</g>
+<g >
+<title>sock_def_readable (45,767,281 samples, 0.01%)</title><rect x="266.8" y="821" width="0.1" height="15.0" fill="rgb(205,161,42)" rx="2" ry="2" />
+<text  x="269.80" y="831.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (154,928,157 samples, 0.04%)</title><rect x="826.6" y="773" width="0.5" height="15.0" fill="rgb(224,196,41)" rx="2" ry="2" />
+<text  x="829.57" y="783.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_one_core (57,030,166 samples, 0.02%)</title><rect x="665.8" y="533" width="0.2" height="15.0" fill="rgb(235,90,41)" rx="2" ry="2" />
+<text  x="668.77" y="543.5" ></text>
+</g>
+<g >
+<title>__GI___pthread_cond_signal (93,740,390 samples, 0.03%)</title><rect x="173.7" y="933" width="0.3" height="15.0" fill="rgb(231,177,3)" rx="2" ry="2" />
+<text  x="176.65" y="943.5" ></text>
+</g>
+<g >
+<title>__i915_sw_fence_complete (61,572,979 samples, 0.02%)</title><rect x="235.6" y="821" width="0.2" height="15.0" fill="rgb(233,122,50)" rx="2" ry="2" />
+<text  x="238.59" y="831.5" ></text>
+</g>
+<g >
+<title>tick_nohz_restart_sched_tick (48,028,799 samples, 0.01%)</title><rect x="884.9" y="853" width="0.1" height="15.0" fill="rgb(254,123,13)" rx="2" ry="2" />
+<text  x="887.89" y="863.5" ></text>
+</g>
+<g >
+<title>lapic_next_deadline (72,156,550 samples, 0.02%)</title><rect x="1157.2" y="837" width="0.2" height="15.0" fill="rgb(232,117,4)" rx="2" ry="2" />
+<text  x="1160.19" y="847.5" ></text>
+</g>
+<g >
+<title>[Xorg] (900,982,313 samples, 0.25%)</title><rect x="206.7" y="869" width="2.9" height="15.0" fill="rgb(219,62,9)" rx="2" ry="2" />
+<text  x="209.70" y="879.5" ></text>
+</g>
+<g >
+<title>iomap_finish_ioend (227,228,430 samples, 0.06%)</title><rect x="392.0" y="853" width="0.7" height="15.0" fill="rgb(230,182,42)" rx="2" ry="2" />
+<text  x="394.96" y="863.5" ></text>
+</g>
+<g >
+<title>__mod_memcg_lruvec_state (47,892,719 samples, 0.01%)</title><rect x="458.5" y="709" width="0.1" height="15.0" fill="rgb(227,175,14)" rx="2" ry="2" />
+<text  x="461.47" y="719.5" ></text>
+</g>
+<g >
+<title>kworker/7:3-mm_ (203,558,356 samples, 0.06%)</title><rect x="397.6" y="981" width="0.6" height="15.0" fill="rgb(238,61,44)" rx="2" ry="2" />
+<text  x="400.59" y="991.5" ></text>
+</g>
+<g >
+<title>get_page_from_freelist (48,261,239 samples, 0.01%)</title><rect x="613.4" y="853" width="0.1" height="15.0" fill="rgb(234,36,17)" rx="2" ry="2" />
+<text  x="616.38" y="863.5" ></text>
+</g>
+<g >
+<title>xcb_send_request (54,115,762 samples, 0.01%)</title><rect x="23.6" y="885" width="0.2" height="15.0" fill="rgb(237,188,34)" rx="2" ry="2" />
+<text  x="26.60" y="895.5" ></text>
+</g>
+<g >
+<title>syscall_return_via_sysret (73,856,990 samples, 0.02%)</title><rect x="93.1" y="933" width="0.3" height="15.0" fill="rgb(235,82,15)" rx="2" ry="2" />
+<text  x="96.14" y="943.5" ></text>
+</g>
+<g >
+<title>[firefox] (75,151,264 samples, 0.02%)</title><rect x="297.3" y="917" width="0.3" height="15.0" fill="rgb(220,104,31)" rx="2" ry="2" />
+<text  x="300.33" y="927.5" ></text>
+</g>
+<g >
+<title>mod_lruvec_page_state (62,042,844 samples, 0.02%)</title><rect x="419.5" y="725" width="0.2" height="15.0" fill="rgb(216,3,49)" rx="2" ry="2" />
+<text  x="422.50" y="735.5" ></text>
+</g>
+<g >
+<title>memset_erms (65,045,694 samples, 0.02%)</title><rect x="558.3" y="853" width="0.2" height="15.0" fill="rgb(212,126,1)" rx="2" ry="2" />
+<text  x="561.32" y="863.5" ></text>
+</g>
+<g >
+<title>get_page_from_freelist (121,390,084 samples, 0.03%)</title><rect x="457.3" y="837" width="0.4" height="15.0" fill="rgb(240,44,42)" rx="2" ry="2" />
+<text  x="460.31" y="847.5" ></text>
+</g>
+<g >
+<title>[libcurl.so.4.8.0] (47,695,083 samples, 0.01%)</title><rect x="643.6" y="693" width="0.1" height="15.0" fill="rgb(218,20,37)" rx="2" ry="2" />
+<text  x="646.57" y="703.5" ></text>
+</g>
+<g >
+<title>preempt_count_add (46,040,960 samples, 0.01%)</title><rect x="451.1" y="805" width="0.1" height="15.0" fill="rgb(243,92,19)" rx="2" ry="2" />
+<text  x="454.07" y="815.5" ></text>
+</g>
+<g >
+<title>hrtimer_cancel (333,794,376 samples, 0.09%)</title><rect x="1155.8" y="869" width="1.1" height="15.0" fill="rgb(206,77,12)" rx="2" ry="2" />
+<text  x="1158.82" y="879.5" ></text>
+</g>
+<g >
+<title>ktime_get (79,033,791 samples, 0.02%)</title><rect x="914.4" y="805" width="0.3" height="15.0" fill="rgb(236,108,53)" rx="2" ry="2" />
+<text  x="917.45" y="815.5" ></text>
+</g>
+<g >
+<title>__alloc_pages_slowpath.constprop.0 (159,423,717 samples, 0.04%)</title><rect x="705.1" y="709" width="0.5" height="15.0" fill="rgb(250,129,12)" rx="2" ry="2" />
+<text  x="708.13" y="719.5" ></text>
+</g>
+<g >
+<title>xfs_perag_put (43,520,309 samples, 0.01%)</title><rect x="381.8" y="821" width="0.1" height="15.0" fill="rgb(231,131,17)" rx="2" ry="2" />
+<text  x="384.79" y="831.5" ></text>
+</g>
+<g >
+<title>[libvlccore.so.9.0.1] (1,227,461,591 samples, 0.33%)</title><rect x="1162.7" y="901" width="3.9" height="15.0" fill="rgb(230,142,35)" rx="2" ry="2" />
+<text  x="1165.69" y="911.5" ></text>
+</g>
+<g >
+<title>__tls_get_addr (44,260,205 samples, 0.01%)</title><rect x="41.3" y="933" width="0.1" height="15.0" fill="rgb(207,101,11)" rx="2" ry="2" />
+<text  x="44.29" y="943.5" ></text>
+</g>
+<g >
+<title>selinux_file_permission (57,225,916 samples, 0.02%)</title><rect x="672.0" y="789" width="0.2" height="15.0" fill="rgb(225,39,37)" rx="2" ry="2" />
+<text  x="675.03" y="799.5" ></text>
+</g>
+<g >
+<title>cpu_startup_entry (85,837,370,835 samples, 23.42%)</title><rect x="885.4" y="933" width="276.3" height="15.0" fill="rgb(229,6,46)" rx="2" ry="2" />
+<text  x="888.37" y="943.5" >cpu_startup_entry</text>
+</g>
+<g >
+<title>do_syscall_64 (31,353,410 samples, 0.01%)</title><rect x="142.3" y="805" width="0.1" height="15.0" fill="rgb(232,3,28)" rx="2" ry="2" />
+<text  x="145.30" y="815.5" ></text>
+</g>
+<g >
+<title>irqtime_account_irq (45,902,193 samples, 0.01%)</title><rect x="904.8" y="821" width="0.1" height="15.0" fill="rgb(237,124,33)" rx="2" ry="2" />
+<text  x="907.76" y="831.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (299,937,057 samples, 0.08%)</title><rect x="1178.8" y="661" width="1.0" height="15.0" fill="rgb(235,58,54)" rx="2" ry="2" />
+<text  x="1181.80" y="671.5" ></text>
+</g>
+<g >
+<title>string (49,557,036 samples, 0.01%)</title><rect x="313.9" y="613" width="0.2" height="15.0" fill="rgb(211,149,28)" rx="2" ry="2" />
+<text  x="316.91" y="623.5" ></text>
+</g>
+<g >
+<title>__GI___write (60,798,052 samples, 0.02%)</title><rect x="275.1" y="933" width="0.2" height="15.0" fill="rgb(246,185,47)" rx="2" ry="2" />
+<text  x="278.11" y="943.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (241,928,830 samples, 0.07%)</title><rect x="215.4" y="837" width="0.8" height="15.0" fill="rgb(219,211,12)" rx="2" ry="2" />
+<text  x="218.39" y="847.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (44,122,564 samples, 0.01%)</title><rect x="728.3" y="901" width="0.1" height="15.0" fill="rgb(212,58,11)" rx="2" ry="2" />
+<text  x="731.26" y="911.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (186,036,482 samples, 0.05%)</title><rect x="1177.8" y="501" width="0.6" height="15.0" fill="rgb(248,18,46)" rx="2" ry="2" />
+<text  x="1180.84" y="511.5" ></text>
+</g>
+<g >
+<title>ieee80211_tx_status (974,302,291 samples, 0.27%)</title><rect x="311.6" y="741" width="3.1" height="15.0" fill="rgb(247,137,47)" rx="2" ry="2" />
+<text  x="314.56" y="751.5" ></text>
+</g>
+<g >
+<title>nft_do_chain (510,096,486 samples, 0.14%)</title><rect x="330.9" y="661" width="1.6" height="15.0" fill="rgb(228,160,18)" rx="2" ry="2" />
+<text  x="333.85" y="671.5" ></text>
+</g>
+<g >
+<title>execute_command_internal (46,221,639 samples, 0.01%)</title><rect x="243.4" y="565" width="0.2" height="15.0" fill="rgb(231,47,43)" rx="2" ry="2" />
+<text  x="246.42" y="575.5" ></text>
+</g>
+<g >
+<title>ieee80211_get_tx_rates (78,402,587 samples, 0.02%)</title><rect x="632.8" y="373" width="0.2" height="15.0" fill="rgb(252,23,7)" rx="2" ry="2" />
+<text  x="635.76" y="383.5" ></text>
+</g>
+<g >
+<title>kernel_fpu_end (31,281,857 samples, 0.01%)</title><rect x="431.1" y="821" width="0.1" height="15.0" fill="rgb(215,86,31)" rx="2" ry="2" />
+<text  x="434.12" y="831.5" ></text>
+</g>
+<g >
+<title>snd_pcm_delay (65,897,085 samples, 0.02%)</title><rect x="734.5" y="901" width="0.3" height="15.0" fill="rgb(252,104,29)" rx="2" ry="2" />
+<text  x="737.54" y="911.5" ></text>
+</g>
+<g >
+<title>tick_sched_handle (1,487,541,568 samples, 0.41%)</title><rect x="907.7" y="773" width="4.8" height="15.0" fill="rgb(244,177,20)" rx="2" ry="2" />
+<text  x="910.69" y="783.5" ></text>
+</g>
+<g >
+<title>fence_notify (60,061,493 samples, 0.02%)</title><rect x="235.6" y="805" width="0.2" height="15.0" fill="rgb(254,128,38)" rx="2" ry="2" />
+<text  x="238.60" y="815.5" ></text>
+</g>
+<g >
+<title>gen8_logical_ring_enable_irq (42,788,270 samples, 0.01%)</title><rect x="232.3" y="613" width="0.1" height="15.0" fill="rgb(238,107,10)" rx="2" ry="2" />
+<text  x="235.28" y="623.5" ></text>
+</g>
+<g >
+<title>process_one_work (6,713,283,850 samples, 1.83%)</title><rect x="503.1" y="917" width="21.6" height="15.0" fill="rgb(243,18,20)" rx="2" ry="2" />
+<text  x="506.12" y="927.5" >p..</text>
+</g>
+<g >
+<title>__i915_gem_object_put_pages (1,188,606,668 samples, 0.32%)</title><rect x="373.9" y="821" width="3.8" height="15.0" fill="rgb(218,146,7)" rx="2" ry="2" />
+<text  x="376.91" y="831.5" ></text>
+</g>
+<g >
+<title>tcp_sendmsg (1,386,831,095 samples, 0.38%)</title><rect x="739.6" y="565" width="4.5" height="15.0" fill="rgb(212,83,2)" rx="2" ry="2" />
+<text  x="742.64" y="575.5" ></text>
+</g>
+<g >
+<title>crypt_page_alloc (245,964,723 samples, 0.07%)</title><rect x="522.5" y="869" width="0.8" height="15.0" fill="rgb(219,170,2)" rx="2" ry="2" />
+<text  x="525.51" y="879.5" ></text>
+</g>
+<g >
+<title>unmap_mapping_range (66,762,999 samples, 0.02%)</title><rect x="377.5" y="789" width="0.2" height="15.0" fill="rgb(211,116,46)" rx="2" ry="2" />
+<text  x="380.52" y="799.5" ></text>
+</g>
+<g >
+<title>__getsockname (68,748,631 samples, 0.02%)</title><rect x="626.6" y="693" width="0.2" height="15.0" fill="rgb(233,178,19)" rx="2" ry="2" />
+<text  x="629.58" y="703.5" ></text>
+</g>
+<g >
+<title>malloc (613,841,367 samples, 0.17%)</title><rect x="171.6" y="949" width="2.0" height="15.0" fill="rgb(232,228,11)" rx="2" ry="2" />
+<text  x="174.61" y="959.5" ></text>
+</g>
+<g >
+<title>all (366,556,682,535 samples, 100%)</title><rect x="10.0" y="997" width="1180.0" height="15.0" fill="rgb(238,106,33)" rx="2" ry="2" />
+<text  x="13.00" y="1007.5" ></text>
+</g>
+<g >
+<title>folio_referenced_one (50,532,030 samples, 0.01%)</title><rect x="365.2" y="821" width="0.1" height="15.0" fill="rgb(227,28,41)" rx="2" ry="2" />
+<text  x="368.17" y="831.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (38,432,638 samples, 0.01%)</title><rect x="1179.6" y="501" width="0.1" height="15.0" fill="rgb(243,77,14)" rx="2" ry="2" />
+<text  x="1182.61" y="511.5" ></text>
+</g>
+<g >
+<title>[libcurl.so.4.8.0] (33,401,477 samples, 0.01%)</title><rect x="668.2" y="677" width="0.2" height="15.0" fill="rgb(246,118,50)" rx="2" ry="2" />
+<text  x="671.25" y="687.5" ></text>
+</g>
+<g >
+<title>futex_wait (374,108,164 samples, 0.10%)</title><rect x="13.0" y="837" width="1.2" height="15.0" fill="rgb(226,218,26)" rx="2" ry="2" />
+<text  x="15.97" y="847.5" ></text>
+</g>
+<g >
+<title>Timer (1,258,978,359 samples, 0.34%)</title><rect x="155.8" y="981" width="4.0" height="15.0" fill="rgb(226,152,35)" rx="2" ry="2" />
+<text  x="158.78" y="991.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (2,066,093,220 samples, 0.56%)</title><rect x="525.6" y="869" width="6.6" height="15.0" fill="rgb(223,219,33)" rx="2" ry="2" />
+<text  x="528.59" y="879.5" ></text>
+</g>
+<g >
+<title>iwl_trans_pcie_tx (269,906,421 samples, 0.07%)</title><rect x="634.1" y="373" width="0.8" height="15.0" fill="rgb(253,152,19)" rx="2" ry="2" />
+<text  x="637.08" y="383.5" ></text>
+</g>
+<g >
+<title>syscall_return_via_sysret (38,737,000 samples, 0.01%)</title><rect x="666.3" y="837" width="0.1" height="15.0" fill="rgb(227,82,2)" rx="2" ry="2" />
+<text  x="669.31" y="847.5" ></text>
+</g>
+<g >
+<title>ip_rcv_finish_core.constprop.0 (40,373,496 samples, 0.01%)</title><rect x="319.6" y="677" width="0.2" height="15.0" fill="rgb(214,19,11)" rx="2" ry="2" />
+<text  x="322.64" y="687.5" ></text>
+</g>
+<g >
+<title>do_sched_yield (37,997,102 samples, 0.01%)</title><rect x="295.8" y="853" width="0.1" height="15.0" fill="rgb(215,68,42)" rx="2" ry="2" />
+<text  x="298.75" y="863.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (310,413,859 samples, 0.08%)</title><rect x="289.6" y="917" width="0.9" height="15.0" fill="rgb(234,204,45)" rx="2" ry="2" />
+<text  x="292.55" y="927.5" ></text>
+</g>
+<g >
+<title>ksys_write (81,701,404 samples, 0.02%)</title><rect x="732.0" y="933" width="0.3" height="15.0" fill="rgb(240,112,26)" rx="2" ry="2" />
+<text  x="735.04" y="943.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (301,376,452 samples, 0.08%)</title><rect x="1171.6" y="261" width="1.0" height="15.0" fill="rgb(209,96,42)" rx="2" ry="2" />
+<text  x="1174.63" y="271.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver (74,868,528 samples, 0.02%)</title><rect x="319.8" y="661" width="0.2" height="15.0" fill="rgb(223,7,6)" rx="2" ry="2" />
+<text  x="322.78" y="671.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (871,419,634 samples, 0.24%)</title><rect x="578.0" y="837" width="2.8" height="15.0" fill="rgb(205,34,52)" rx="2" ry="2" />
+<text  x="580.97" y="847.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (49,311,727 samples, 0.01%)</title><rect x="1166.7" y="853" width="0.2" height="15.0" fill="rgb(251,121,6)" rx="2" ry="2" />
+<text  x="1169.72" y="863.5" ></text>
+</g>
+<g >
+<title>[libgtk-3.so.0.2404.30] (173,795,013 samples, 0.05%)</title><rect x="1177.9" y="341" width="0.5" height="15.0" fill="rgb(244,175,38)" rx="2" ry="2" />
+<text  x="1180.86" y="351.5" ></text>
+</g>
+<g >
+<title>dequeue_entity (52,109,433 samples, 0.01%)</title><rect x="291.9" y="789" width="0.2" height="15.0" fill="rgb(229,75,44)" rx="2" ry="2" />
+<text  x="294.92" y="799.5" ></text>
+</g>
+<g >
+<title>kswapd0 (9,589,988,978 samples, 2.62%)</title><rect x="351.8" y="981" width="30.9" height="15.0" fill="rgb(238,17,23)" rx="2" ry="2" />
+<text  x="354.85" y="991.5" >ks..</text>
+</g>
+<g >
+<title>schedule (38,097,766 samples, 0.01%)</title><rect x="396.3" y="917" width="0.1" height="15.0" fill="rgb(234,138,5)" rx="2" ry="2" />
+<text  x="399.32" y="927.5" ></text>
+</g>
+<g >
+<title>[firefox] (101,708,451 samples, 0.03%)</title><rect x="149.9" y="917" width="0.4" height="15.0" fill="rgb(245,186,40)" rx="2" ry="2" />
+<text  x="152.93" y="927.5" ></text>
+</g>
+<g >
+<title>iomap_writepages (866,236,874 samples, 0.24%)</title><rect x="457.9" y="789" width="2.8" height="15.0" fill="rgb(227,110,6)" rx="2" ry="2" />
+<text  x="460.88" y="799.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (111,250,792 samples, 0.03%)</title><rect x="614.1" y="869" width="0.4" height="15.0" fill="rgb(236,119,35)" rx="2" ry="2" />
+<text  x="617.09" y="879.5" ></text>
+</g>
+<g >
+<title>[xfwm4] (578,304,966 samples, 0.16%)</title><rect x="1186.4" y="965" width="1.9" height="15.0" fill="rgb(208,48,36)" rx="2" ry="2" />
+<text  x="1189.43" y="975.5" ></text>
+</g>
+<g >
+<title>__delete_from_swap_cache (33,432,778 samples, 0.01%)</title><rect x="358.6" y="837" width="0.1" height="15.0" fill="rgb(253,91,15)" rx="2" ry="2" />
+<text  x="361.56" y="847.5" ></text>
+</g>
+<g >
+<title>free_unref_page (172,094,154 samples, 0.05%)</title><rect x="333.0" y="789" width="0.6" height="15.0" fill="rgb(211,38,13)" rx="2" ry="2" />
+<text  x="336.00" y="799.5" ></text>
+</g>
+<g >
+<title>xfce4-panel (2,284,548,053 samples, 0.62%)</title><rect x="1167.5" y="981" width="7.3" height="15.0" fill="rgb(244,146,40)" rx="2" ry="2" />
+<text  x="1170.46" y="991.5" ></text>
+</g>
+<g >
+<title>menu_reflect (161,354,391 samples, 0.04%)</title><rect x="1133.4" y="901" width="0.5" height="15.0" fill="rgb(205,210,37)" rx="2" ry="2" />
+<text  x="1136.38" y="911.5" ></text>
+</g>
+<g >
+<title>i801_isr (46,510,090 samples, 0.01%)</title><rect x="896.0" y="773" width="0.2" height="15.0" fill="rgb(207,49,20)" rx="2" ry="2" />
+<text  x="899.02" y="783.5" ></text>
+</g>
+<g >
+<title>[libglamoregl.so] (706,251,455 samples, 0.19%)</title><rect x="214.4" y="885" width="2.3" height="15.0" fill="rgb(227,44,25)" rx="2" ry="2" />
+<text  x="217.44" y="895.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (90,295,086 samples, 0.02%)</title><rect x="216.3" y="725" width="0.3" height="15.0" fill="rgb(228,71,4)" rx="2" ry="2" />
+<text  x="219.35" y="735.5" ></text>
+</g>
+<g >
+<title>skb_copy_datagram_from_iter (37,225,166 samples, 0.01%)</title><rect x="238.6" y="821" width="0.1" height="15.0" fill="rgb(241,5,12)" rx="2" ry="2" />
+<text  x="241.58" y="831.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (159,570,375 samples, 0.04%)</title><rect x="738.8" y="709" width="0.5" height="15.0" fill="rgb(209,103,24)" rx="2" ry="2" />
+<text  x="741.77" y="719.5" ></text>
+</g>
+<g >
+<title>aio_co_enter (49,477,063 samples, 0.01%)</title><rect x="826.3" y="821" width="0.2" height="15.0" fill="rgb(230,32,19)" rx="2" ry="2" />
+<text  x="829.30" y="831.5" ></text>
+</g>
+<g >
+<title>_aesni_enc4 (861,075,244 samples, 0.23%)</title><rect x="603.5" y="805" width="2.8" height="15.0" fill="rgb(225,82,18)" rx="2" ry="2" />
+<text  x="606.53" y="815.5" ></text>
+</g>
+<g >
+<title>do_writev (89,837,069 samples, 0.02%)</title><rect x="1189.2" y="933" width="0.3" height="15.0" fill="rgb(215,48,36)" rx="2" ry="2" />
+<text  x="1192.21" y="943.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (72,957,830 samples, 0.02%)</title><rect x="212.6" y="757" width="0.3" height="15.0" fill="rgb(228,115,32)" rx="2" ry="2" />
+<text  x="215.62" y="767.5" ></text>
+</g>
+<g >
+<title>pagevec_lookup_range_tag (44,944,441 samples, 0.01%)</title><rect x="597.0" y="757" width="0.1" height="15.0" fill="rgb(234,111,35)" rx="2" ry="2" />
+<text  x="599.96" y="767.5" ></text>
+</g>
+<g >
+<title>do_epoll_wait (898,698,325 samples, 0.25%)</title><rect x="33.0" y="853" width="2.9" height="15.0" fill="rgb(216,176,52)" rx="2" ry="2" />
+<text  x="35.96" y="863.5" ></text>
+</g>
+<g >
+<title>__kmalloc_node_track_caller (45,740,277 samples, 0.01%)</title><rect x="629.5" y="533" width="0.2" height="15.0" fill="rgb(237,197,33)" rx="2" ry="2" />
+<text  x="632.51" y="543.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (35,360,873 samples, 0.01%)</title><rect x="265.3" y="933" width="0.1" height="15.0" fill="rgb(238,22,43)" rx="2" ry="2" />
+<text  x="268.32" y="943.5" ></text>
+</g>
+<g >
+<title>tcp_v6_do_rcv (292,282,134 samples, 0.08%)</title><rect x="661.1" y="453" width="0.9" height="15.0" fill="rgb(206,94,0)" rx="2" ry="2" />
+<text  x="664.07" y="463.5" ></text>
+</g>
+<g >
+<title>syscall_trace_enter.constprop.0 (38,095,487 samples, 0.01%)</title><rect x="41.0" y="885" width="0.1" height="15.0" fill="rgb(249,51,44)" rx="2" ry="2" />
+<text  x="43.98" y="895.5" ></text>
+</g>
+<g >
+<title>aesni_xts_encrypt (1,300,544,322 samples, 0.35%)</title><rect x="446.5" y="821" width="4.2" height="15.0" fill="rgb(217,50,39)" rx="2" ry="2" />
+<text  x="449.55" y="831.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (112,042,068 samples, 0.03%)</title><rect x="151.8" y="837" width="0.4" height="15.0" fill="rgb(244,123,44)" rx="2" ry="2" />
+<text  x="154.83" y="847.5" ></text>
+</g>
+<g >
+<title>file_update_time (48,993,224 samples, 0.01%)</title><rect x="31.1" y="853" width="0.2" height="15.0" fill="rgb(214,46,35)" rx="2" ry="2" />
+<text  x="34.12" y="863.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (368,128,956 samples, 0.10%)</title><rect x="412.2" y="853" width="1.2" height="15.0" fill="rgb(211,75,43)" rx="2" ry="2" />
+<text  x="415.19" y="863.5" ></text>
+</g>
+<g >
+<title>[git-remote-http] (103,738,733 samples, 0.03%)</title><rect x="284.8" y="917" width="0.3" height="15.0" fill="rgb(240,202,24)" rx="2" ry="2" />
+<text  x="287.75" y="927.5" ></text>
+</g>
+<g >
+<title>mempool_alloc (251,805,239 samples, 0.07%)</title><rect x="594.5" y="885" width="0.8" height="15.0" fill="rgb(208,64,5)" rx="2" ry="2" />
+<text  x="597.50" y="895.5" ></text>
+</g>
+<g >
+<title>tick_sched_do_timer (146,867,914 samples, 0.04%)</title><rect x="907.2" y="773" width="0.5" height="15.0" fill="rgb(222,69,51)" rx="2" ry="2" />
+<text  x="910.22" y="783.5" ></text>
+</g>
+<g >
+<title>[libglib-2.0.so.0.7303.0] (45,942,124 samples, 0.01%)</title><rect x="1182.0" y="885" width="0.1" height="15.0" fill="rgb(208,70,11)" rx="2" ry="2" />
+<text  x="1184.95" y="895.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_apic_timer_interrupt (31,080,667 samples, 0.01%)</title><rect x="720.8" y="725" width="0.1" height="15.0" fill="rgb(220,199,35)" rx="2" ry="2" />
+<text  x="723.79" y="735.5" ></text>
+</g>
+<g >
+<title>[libcurl.so.4.8.0] (47,381,533 samples, 0.01%)</title><rect x="668.2" y="693" width="0.2" height="15.0" fill="rgb(244,39,47)" rx="2" ry="2" />
+<text  x="671.21" y="703.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (41,009,909 samples, 0.01%)</title><rect x="152.0" y="757" width="0.1" height="15.0" fill="rgb(208,145,51)" rx="2" ry="2" />
+<text  x="155.01" y="767.5" ></text>
+</g>
+<g >
+<title>[libglamoregl.so] (33,113,818 samples, 0.01%)</title><rect x="213.8" y="853" width="0.1" height="15.0" fill="rgb(242,81,24)" rx="2" ry="2" />
+<text  x="216.75" y="863.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (729,131,099 samples, 0.20%)</title><rect x="443.2" y="837" width="2.3" height="15.0" fill="rgb(205,50,16)" rx="2" ry="2" />
+<text  x="446.18" y="847.5" ></text>
+</g>
+<g >
+<title>execute_command (46,988,181 samples, 0.01%)</title><rect x="243.4" y="613" width="0.2" height="15.0" fill="rgb(236,83,33)" rx="2" ry="2" />
+<text  x="246.42" y="623.5" ></text>
+</g>
+<g >
+<title>free (103,135,764 samples, 0.03%)</title><rect x="16.5" y="933" width="0.4" height="15.0" fill="rgb(205,67,50)" rx="2" ry="2" />
+<text  x="19.54" y="943.5" ></text>
+</g>
+<g >
+<title>__fprop_add_percpu (32,880,807 samples, 0.01%)</title><rect x="389.4" y="805" width="0.1" height="15.0" fill="rgb(238,196,12)" rx="2" ry="2" />
+<text  x="392.38" y="815.5" ></text>
+</g>
+<g >
+<title>sock_write_iter (73,721,380 samples, 0.02%)</title><rect x="1189.2" y="869" width="0.3" height="15.0" fill="rgb(205,180,40)" rx="2" ry="2" />
+<text  x="1192.23" y="879.5" ></text>
+</g>
+<g >
+<title>[libxcb.so.1.1.0] (115,466,908 samples, 0.03%)</title><rect x="145.1" y="853" width="0.4" height="15.0" fill="rgb(210,186,49)" rx="2" ry="2" />
+<text  x="148.11" y="863.5" ></text>
+</g>
+<g >
+<title>systemd-journal (32,225,700 samples, 0.01%)</title><rect x="1161.7" y="981" width="0.1" height="15.0" fill="rgb(238,22,14)" rx="2" ry="2" />
+<text  x="1164.70" y="991.5" ></text>
+</g>
+<g >
+<title>[iris_dri.so] (145,916,606 samples, 0.04%)</title><rect x="222.6" y="757" width="0.5" height="15.0" fill="rgb(243,79,10)" rx="2" ry="2" />
+<text  x="225.60" y="767.5" ></text>
+</g>
+<g >
+<title>unix_stream_sendmsg (49,004,532 samples, 0.01%)</title><rect x="191.6" y="837" width="0.2" height="15.0" fill="rgb(226,10,38)" rx="2" ry="2" />
+<text  x="194.60" y="847.5" ></text>
+</g>
+<g >
+<title>process_one_work (4,927,241,093 samples, 1.34%)</title><rect x="597.2" y="917" width="15.8" height="15.0" fill="rgb(218,155,21)" rx="2" ry="2" />
+<text  x="600.17" y="927.5" ></text>
+</g>
+<g >
+<title>[Xorg] (933,538,687 samples, 0.25%)</title><rect x="206.6" y="885" width="3.0" height="15.0" fill="rgb(221,109,47)" rx="2" ry="2" />
+<text  x="209.60" y="895.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_apic_timer_interrupt (59,076,993 samples, 0.02%)</title><rect x="267.6" y="949" width="0.2" height="15.0" fill="rgb(238,162,28)" rx="2" ry="2" />
+<text  x="270.59" y="959.5" ></text>
+</g>
+<g >
+<title>dequeue_rt_stack (35,952,367 samples, 0.01%)</title><rect x="894.2" y="709" width="0.1" height="15.0" fill="rgb(225,217,32)" rx="2" ry="2" />
+<text  x="897.15" y="719.5" ></text>
+</g>
+<g >
+<title>[libxul.so] (50,723,015 samples, 0.01%)</title><rect x="25.9" y="949" width="0.1" height="15.0" fill="rgb(226,228,38)" rx="2" ry="2" />
+<text  x="28.88" y="959.5" ></text>
+</g>
+<g >
+<title>curl_maprintf (94,146,105 samples, 0.03%)</title><rect x="646.3" y="725" width="0.3" height="15.0" fill="rgb(241,2,51)" rx="2" ry="2" />
+<text  x="649.26" y="735.5" ></text>
+</g>
+<g >
+<title>thread_pool_submit_co (156,357,126 samples, 0.04%)</title><rect x="749.0" y="757" width="0.5" height="15.0" fill="rgb(242,118,11)" rx="2" ry="2" />
+<text  x="751.97" y="767.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (1,794,358,851 samples, 0.49%)</title><rect x="341.1" y="965" width="5.8" height="15.0" fill="rgb(231,229,38)" rx="2" ry="2" />
+<text  x="344.13" y="975.5" ></text>
+</g>
+<g >
+<title>_find_next_bit (82,877,577 samples, 0.02%)</title><rect x="371.2" y="869" width="0.3" height="15.0" fill="rgb(217,168,26)" rx="2" ry="2" />
+<text  x="374.25" y="879.5" ></text>
+</g>
+<g >
+<title>gtk_main (574,021,709 samples, 0.16%)</title><rect x="1186.4" y="949" width="1.9" height="15.0" fill="rgb(252,73,51)" rx="2" ry="2" />
+<text  x="1189.44" y="959.5" ></text>
+</g>
+<g >
+<title>unix_destruct_scm (33,409,702 samples, 0.01%)</title><rect x="228.8" y="821" width="0.1" height="15.0" fill="rgb(245,154,39)" rx="2" ry="2" />
+<text  x="231.80" y="831.5" ></text>
+</g>
+<g >
+<title>OSSL_DECODER_CTX_new_for_pkey (52,048,466 samples, 0.01%)</title><rect x="284.8" y="517" width="0.1" height="15.0" fill="rgb(239,18,10)" rx="2" ry="2" />
+<text  x="287.77" y="527.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (141,312,654 samples, 0.04%)</title><rect x="134.3" y="805" width="0.5" height="15.0" fill="rgb(227,141,52)" rx="2" ry="2" />
+<text  x="137.32" y="815.5" ></text>
+</g>
+<g >
+<title>[Xorg] (176,335,589 samples, 0.05%)</title><rect x="201.9" y="805" width="0.5" height="15.0" fill="rgb(247,78,1)" rx="2" ry="2" />
+<text  x="204.86" y="815.5" ></text>
+</g>
+<g >
+<title>enqueue_task_rt (154,843,222 samples, 0.04%)</title><rect x="893.8" y="725" width="0.5" height="15.0" fill="rgb(239,127,28)" rx="2" ry="2" />
+<text  x="896.84" y="735.5" ></text>
+</g>
+<g >
+<title>worker_thread (209,091,316 samples, 0.06%)</title><rect x="395.8" y="933" width="0.6" height="15.0" fill="rgb(249,121,34)" rx="2" ry="2" />
+<text  x="398.77" y="943.5" ></text>
+</g>
+<g >
+<title>ieee80211_tx_status (55,513,658 samples, 0.02%)</title><rect x="310.8" y="725" width="0.2" height="15.0" fill="rgb(231,29,18)" rx="2" ry="2" />
+<text  x="313.85" y="735.5" ></text>
+</g>
+<g >
+<title>find_busiest_group (62,190,382 samples, 0.02%)</title><rect x="89.5" y="773" width="0.2" height="15.0" fill="rgb(241,201,22)" rx="2" ry="2" />
+<text  x="92.55" y="783.5" ></text>
+</g>
+<g >
+<title>xas_store (65,574,082 samples, 0.02%)</title><rect x="755.6" y="693" width="0.2" height="15.0" fill="rgb(214,67,7)" rx="2" ry="2" />
+<text  x="758.61" y="703.5" ></text>
+</g>
+<g >
+<title>thread_pool_submit_co (218,820,462 samples, 0.06%)</title><rect x="746.9" y="789" width="0.7" height="15.0" fill="rgb(208,11,32)" rx="2" ry="2" />
+<text  x="749.91" y="799.5" ></text>
+</g>
+<g >
+<title>writeback_sb_inodes (299,662,202 samples, 0.08%)</title><rect x="502.1" y="853" width="1.0" height="15.0" fill="rgb(243,191,16)" rx="2" ry="2" />
+<text  x="505.10" y="863.5" ></text>
+</g>
+<g >
+<title>snd_pcm_update_hw_ptr0 (58,507,785 samples, 0.02%)</title><rect x="734.6" y="885" width="0.1" height="15.0" fill="rgb(212,37,21)" rx="2" ry="2" />
+<text  x="737.56" y="895.5" ></text>
+</g>
+<g >
+<title>[libEGL.so.1.1.0] (138,391,497 samples, 0.04%)</title><rect x="1165.5" y="853" width="0.5" height="15.0" fill="rgb(243,181,50)" rx="2" ry="2" />
+<text  x="1168.52" y="863.5" ></text>
+</g>
+<g >
+<title>filter_pread (329,454,028 samples, 0.09%)</title><rect x="667.9" y="869" width="1.0" height="15.0" fill="rgb(205,71,3)" rx="2" ry="2" />
+<text  x="670.86" y="879.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (609,276,742 samples, 0.17%)</title><rect x="413.4" y="853" width="1.9" height="15.0" fill="rgb(252,223,0)" rx="2" ry="2" />
+<text  x="416.38" y="863.5" ></text>
+</g>
+</g>
+</svg>