<?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="1400" height="880" onload="init(evt)" viewBox="0 0 1400 880" 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:14px; 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:19px}
	#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 * 14 * 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;
		if (currentSearchTerm === null) return;

		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="1400.0" height="880.0" fill="url(#background)"  />
<text id="title" x="700.00" y="28" >Flame Graph</text>
<text id="details" x="10.00" y="861" > </text>
<text id="unzoom" x="10.00" y="28" class="hide">Reset Zoom</text>
<text id="search" x="1290.00" y="28" >Search</text>
<text id="ignorecase" x="1374.00" y="28" >ic</text>
<text id="matched" x="1290.00" y="861" > </text>
<g id="frames">
<g >
<title>UnpinBufferNoOwner (309 samples, 0.26%)</title><rect x="1073.3" y="379" width="3.5" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text  x="1076.27" y="389.5" ></text>
</g>
<g >
<title>GetSnapshotData (41 samples, 0.03%)</title><rect x="1318.0" y="779" width="0.5" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text  x="1320.98" y="789.5" ></text>
</g>
<g >
<title>s_lock (8,787 samples, 7.37%)</title><rect x="732.5" y="603" width="101.7" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="735.49" y="613.5" >s_lock</text>
</g>
<g >
<title>_bt_compare (322 samples, 0.27%)</title><rect x="1065.3" y="411" width="3.7" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text  x="1068.26" y="421.5" ></text>
</g>
<g >
<title>ProcessUtility (11 samples, 0.01%)</title><rect x="20.7" y="619" width="0.1" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="23.66" y="629.5" ></text>
</g>
<g >
<title>pfree (48 samples, 0.04%)</title><rect x="1123.4" y="699" width="0.6" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1126.44" y="709.5" ></text>
</g>
<g >
<title>start_xact_command (11 samples, 0.01%)</title><rect x="1126.9" y="715" width="0.1" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="1129.89" y="725.5" ></text>
</g>
<g >
<title>PinBufferForBlock (23 samples, 0.02%)</title><rect x="1332.4" y="779" width="0.2" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="1335.38" y="789.5" ></text>
</g>
<g >
<title>_bt_binsrch (3,092 samples, 2.59%)</title><rect x="1023.0" y="427" width="35.8" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="1025.99" y="437.5" >_b..</text>
</g>
<g >
<title>pgss_ProcessUtility (65 samples, 0.05%)</title><rect x="79.7" y="411" width="0.8" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="82.71" y="421.5" ></text>
</g>
<g >
<title>ExecScan (17,071 samples, 14.31%)</title><rect x="893.5" y="571" width="197.6" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text  x="896.54" y="581.5" >ExecScan</text>
</g>
<g >
<title>GetMemoryChunkMethodID (18 samples, 0.02%)</title><rect x="1111.4" y="603" width="0.2" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text  x="1114.43" y="613.5" ></text>
</g>
<g >
<title>ExecutorRun (85 samples, 0.07%)</title><rect x="1387.1" y="715" width="1.0" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text  x="1390.13" y="725.5" ></text>
</g>
<g >
<title>ExecScan (4,568 samples, 3.83%)</title><rect x="26.8" y="587" width="52.9" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text  x="29.85" y="597.5" >Exec..</text>
</g>
<g >
<title>FullTransactionIdFromEpochAndXid (11 samples, 0.01%)</title><rect x="1314.4" y="779" width="0.1" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="1317.41" y="789.5" ></text>
</g>
<g >
<title>smgrDoPendingSyncs (30 samples, 0.03%)</title><rect x="1379.9" y="779" width="0.4" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text  x="1382.93" y="789.5" ></text>
</g>
<g >
<title>__slab_free (198 samples, 0.17%)</title><rect x="361.4" y="171" width="2.3" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="364.39" y="181.5" ></text>
</g>
<g >
<title>SnapshotResetXmin (44 samples, 0.04%)</title><rect x="691.6" y="683" width="0.5" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text  x="694.64" y="693.5" ></text>
</g>
<g >
<title>performMultipleDeletions (11 samples, 0.01%)</title><rect x="23.7" y="427" width="0.1" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="26.67" y="437.5" ></text>
</g>
<g >
<title>DefineIndex (40 samples, 0.03%)</title><rect x="17.9" y="811" width="0.5" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="20.95" y="821.5" ></text>
</g>
<g >
<title>pq_sendint16 (27 samples, 0.02%)</title><rect x="1101.9" y="603" width="0.4" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text  x="1104.94" y="613.5" ></text>
</g>
<g >
<title>ExecScanFetch (22 samples, 0.02%)</title><rect x="1090.8" y="555" width="0.3" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text  x="1093.82" y="565.5" ></text>
</g>
<g >
<title>LWLockDisownInternal (15 samples, 0.01%)</title><rect x="1232.5" y="587" width="0.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="1235.46" y="597.5" ></text>
</g>
<g >
<title>CatalogTuplesMultiInsertWithInfo (15 samples, 0.01%)</title><rect x="1283.0" y="443" width="0.2" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text  x="1286.03" y="453.5" ></text>
</g>
<g >
<title>ProcessInvalidationMessages (44 samples, 0.04%)</title><rect x="1276.0" y="427" width="0.5" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="1278.99" y="437.5" ></text>
</g>
<g >
<title>nf_hook_slow (40 samples, 0.03%)</title><rect x="399.7" y="427" width="0.5" height="15.0" fill="rgb(243,175,42)" rx="2" ry="2" />
<text  x="402.74" y="437.5" ></text>
</g>
<g >
<title>PageGetMaxOffsetNumber (14 samples, 0.01%)</title><rect x="1331.9" y="779" width="0.1" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text  x="1334.87" y="789.5" ></text>
</g>
<g >
<title>RelationBuildDesc (9 samples, 0.01%)</title><rect x="1274.1" y="699" width="0.1" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="1277.05" y="709.5" ></text>
</g>
<g >
<title>hash_initial_lookup (23 samples, 0.02%)</title><rect x="667.8" y="507" width="0.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="670.76" y="517.5" ></text>
</g>
<g >
<title>ProcessUtility (25 samples, 0.02%)</title><rect x="1285.3" y="587" width="0.3" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="1288.32" y="597.5" ></text>
</g>
<g >
<title>__strlen_evex (29 samples, 0.02%)</title><rect x="714.0" y="699" width="0.4" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="717.04" y="709.5" ></text>
</g>
<g >
<title>exec_toplevel_block (15 samples, 0.01%)</title><rect x="19.2" y="731" width="0.1" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="22.15" y="741.5" ></text>
</g>
<g >
<title>exec_stmt_fori (211 samples, 0.18%)</title><rect x="20.9" y="587" width="2.4" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text  x="23.90" y="597.5" ></text>
</g>
<g >
<title>_SPI_execute_plan (211 samples, 0.18%)</title><rect x="20.9" y="523" width="2.4" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="23.90" y="533.5" ></text>
</g>
<g >
<title>AllocSetAlloc (55 samples, 0.05%)</title><rect x="634.0" y="523" width="0.7" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="637.02" y="533.5" ></text>
</g>
<g >
<title>ItemPointerSetInvalid (20 samples, 0.02%)</title><rect x="877.8" y="523" width="0.3" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text  x="880.84" y="533.5" ></text>
</g>
<g >
<title>rb_insert_color (28 samples, 0.02%)</title><rect x="409.3" y="459" width="0.3" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text  x="412.25" y="469.5" ></text>
</g>
<g >
<title>LocalExecuteInvalidationMessage (23 samples, 0.02%)</title><rect x="24.5" y="699" width="0.2" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="27.48" y="709.5" ></text>
</g>
<g >
<title>ExecProcNodeFirst (17,822 samples, 14.94%)</title><rect x="885.1" y="603" width="206.2" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="888.07" y="613.5" >ExecProcNodeFirst</text>
</g>
<g >
<title>_bt_getroot (49 samples, 0.04%)</title><rect x="1387.5" y="459" width="0.6" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text  x="1390.55" y="469.5" ></text>
</g>
<g >
<title>palloc0 (85 samples, 0.07%)</title><rect x="679.4" y="619" width="0.9" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="682.36" y="629.5" ></text>
</g>
<g >
<title>smgrdounlinkall (132 samples, 0.11%)</title><rect x="1127.4" y="347" width="1.6" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="1130.43" y="357.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (222 samples, 0.19%)</title><rect x="1157.2" y="539" width="2.6" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="1160.22" y="549.5" ></text>
</g>
<g >
<title>CheckExprStillValid (83 samples, 0.07%)</title><rect x="896.5" y="475" width="0.9" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="899.47" y="485.5" ></text>
</g>
<g >
<title>SIInsertDataEntries (91 samples, 0.08%)</title><rect x="1127.4" y="299" width="1.1" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text  x="1130.43" y="309.5" ></text>
</g>
<g >
<title>switch_fpu_return (10 samples, 0.01%)</title><rect x="192.5" y="539" width="0.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="195.45" y="549.5" ></text>
</g>
<g >
<title>ExecutePlan (4,568 samples, 3.83%)</title><rect x="26.8" y="651" width="52.9" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text  x="29.85" y="661.5" >Exec..</text>
</g>
<g >
<title>ResourceOwnerForgetRelationRef (31 samples, 0.03%)</title><rect x="1176.3" y="475" width="0.4" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text  x="1179.30" y="485.5" ></text>
</g>
<g >
<title>LWLockRelease (40 samples, 0.03%)</title><rect x="22.0" y="363" width="0.5" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="25.05" y="373.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (221 samples, 0.19%)</title><rect x="1160.1" y="539" width="2.5" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="1163.08" y="549.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (67 samples, 0.06%)</title><rect x="496.5" y="619" width="0.8" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="499.53" y="629.5" ></text>
</g>
<g >
<title>__libc_send (36 samples, 0.03%)</title><rect x="1388.4" y="795" width="0.5" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="1391.45" y="805.5" ></text>
</g>
<g >
<title>MemoryContextSwitchTo (12 samples, 0.01%)</title><rect x="1201.1" y="571" width="0.1" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text  x="1204.08" y="581.5" ></text>
</g>
<g >
<title>LockReleaseAll (2,421 samples, 2.03%)</title><rect x="1221.7" y="619" width="28.0" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="1224.65" y="629.5" >L..</text>
</g>
<g >
<title>RelationBuildDesc (42 samples, 0.04%)</title><rect x="1276.0" y="347" width="0.5" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="1278.99" y="357.5" ></text>
</g>
<g >
<title>hash_initial_lookup (29 samples, 0.02%)</title><rect x="849.8" y="667" width="0.3" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="852.77" y="677.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (34 samples, 0.03%)</title><rect x="883.9" y="411" width="0.4" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text  x="886.91" y="421.5" ></text>
</g>
<g >
<title>DefineIndex (173 samples, 0.15%)</title><rect x="20.9" y="443" width="2.0" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="23.91" y="453.5" ></text>
</g>
<g >
<title>finish_xact_command (11,020 samples, 9.24%)</title><rect x="1129.3" y="731" width="127.5" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text  x="1132.29" y="741.5" >finish_xact_c..</text>
</g>
<g >
<title>list_free (35 samples, 0.03%)</title><rect x="1193.4" y="491" width="0.4" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text  x="1196.38" y="501.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (71 samples, 0.06%)</title><rect x="520.2" y="699" width="0.8" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="523.21" y="709.5" ></text>
</g>
<g >
<title>disable_statement_timeout (25 samples, 0.02%)</title><rect x="1120.6" y="715" width="0.3" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text  x="1123.63" y="725.5" ></text>
</g>
<g >
<title>native_sched_clock (48 samples, 0.04%)</title><rect x="186.3" y="443" width="0.6" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text  x="189.33" y="453.5" ></text>
</g>
<g >
<title>__fget_light (133 samples, 0.11%)</title><rect x="235.9" y="539" width="1.5" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="238.86" y="549.5" ></text>
</g>
<g >
<title>AllocSetReset (101 samples, 0.08%)</title><rect x="1135.3" y="619" width="1.1" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="1138.27" y="629.5" ></text>
</g>
<g >
<title>standard_ExecutorEnd (2,107 samples, 1.77%)</title><rect x="1174.8" y="587" width="24.3" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="1177.75" y="597.5" ></text>
</g>
<g >
<title>__copy_skb_header (39 samples, 0.03%)</title><rect x="400.6" y="443" width="0.5" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text  x="403.64" y="453.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (98 samples, 0.08%)</title><rect x="497.8" y="603" width="1.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="500.80" y="613.5" ></text>
</g>
<g >
<title>memset_erms (31 samples, 0.03%)</title><rect x="431.5" y="459" width="0.3" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text  x="434.47" y="469.5" ></text>
</g>
<g >
<title>MemoryContextSetIdentifier (11 samples, 0.01%)</title><rect x="453.8" y="699" width="0.2" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text  x="456.83" y="709.5" ></text>
</g>
<g >
<title>PredicateLockTID (9 samples, 0.01%)</title><rect x="1336.0" y="779" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="1338.97" y="789.5" ></text>
</g>
<g >
<title>__memcpy_evex_unaligned_erms (9 samples, 0.01%)</title><rect x="563.8" y="491" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="566.78" y="501.5" ></text>
</g>
<g >
<title>appendBinaryStringInfoNT (52 samples, 0.04%)</title><rect x="1100.5" y="587" width="0.6" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text  x="1103.46" y="597.5" ></text>
</g>
<g >
<title>AllocSetAlloc (38 samples, 0.03%)</title><rect x="632.7" y="539" width="0.4" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="635.70" y="549.5" ></text>
</g>
<g >
<title>btint4cmp (317 samples, 0.27%)</title><rect x="1046.4" y="379" width="3.7" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1049.44" y="389.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (432 samples, 0.36%)</title><rect x="683.9" y="651" width="5.0" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="686.91" y="661.5" ></text>
</g>
<g >
<title>socket_set_nonblocking (23 samples, 0.02%)</title><rect x="439.9" y="699" width="0.3" height="15.0" fill="rgb(228,105,25)" rx="2" ry="2" />
<text  x="442.91" y="709.5" ></text>
</g>
<g >
<title>pg_verify_mbstr (13 samples, 0.01%)</title><rect x="1371.5" y="779" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="1374.53" y="789.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (11 samples, 0.01%)</title><rect x="540.4" y="587" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="543.43" y="597.5" ></text>
</g>
<g >
<title>ExecIndexScan (72 samples, 0.06%)</title><rect x="11.1" y="635" width="0.8" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="14.10" y="645.5" ></text>
</g>
<g >
<title>hash_initial_lookup (34 samples, 0.03%)</title><rect x="498.5" y="587" width="0.4" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="501.54" y="597.5" ></text>
</g>
<g >
<title>MemoryContextAllocZero (209 samples, 0.18%)</title><rect x="451.4" y="699" width="2.4" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="454.41" y="709.5" ></text>
</g>
<g >
<title>is_log_level_output (10 samples, 0.01%)</title><rect x="698.0" y="683" width="0.1" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text  x="700.96" y="693.5" ></text>
</g>
<g >
<title>MemoryContextCreate (36 samples, 0.03%)</title><rect x="448.7" y="683" width="0.4" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text  x="451.68" y="693.5" ></text>
</g>
<g >
<title>StartTransactionCommand (10,922 samples, 9.16%)</title><rect x="721.1" y="699" width="126.4" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="724.14" y="709.5" >StartTransact..</text>
</g>
<g >
<title>pg_atomic_read_u32_impl (11 samples, 0.01%)</title><rect x="662.3" y="491" width="0.1" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="665.28" y="501.5" ></text>
</g>
<g >
<title>ReceiveSharedInvalidMessages (12 samples, 0.01%)</title><rect x="1268.6" y="635" width="0.2" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text  x="1271.62" y="645.5" ></text>
</g>
<g >
<title>gettimeofday@plt (20 samples, 0.02%)</title><rect x="442.5" y="699" width="0.2" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text  x="445.49" y="709.5" ></text>
</g>
<g >
<title>LWLockAcquire (94 samples, 0.08%)</title><rect x="1241.2" y="587" width="1.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="1244.20" y="597.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (441 samples, 0.37%)</title><rect x="1277.4" y="283" width="5.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="1280.36" y="293.5" ></text>
</g>
<g >
<title>generic_perform_write (438 samples, 0.37%)</title><rect x="1277.4" y="187" width="5.0" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text  x="1280.37" y="197.5" ></text>
</g>
<g >
<title>AllocSetAlloc (28 samples, 0.02%)</title><rect x="912.7" y="443" width="0.3" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="915.66" y="453.5" ></text>
</g>
<g >
<title>ResourceOwnerCreate (662 samples, 0.56%)</title><rect x="837.2" y="651" width="7.7" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text  x="840.22" y="661.5" ></text>
</g>
<g >
<title>_bt_getbuf (165 samples, 0.14%)</title><rect x="1059.5" y="411" width="2.0" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="1062.54" y="421.5" ></text>
</g>
<g >
<title>standard_ExecutorRun (85 samples, 0.07%)</title><rect x="1387.1" y="683" width="1.0" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text  x="1390.13" y="693.5" ></text>
</g>
<g >
<title>__libc_pwrite64 (25 samples, 0.02%)</title><rect x="25.5" y="523" width="0.3" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text  x="28.52" y="533.5" ></text>
</g>
<g >
<title>shmem_alloc_and_acct_folio (11 samples, 0.01%)</title><rect x="1272.8" y="203" width="0.1" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text  x="1275.81" y="213.5" ></text>
</g>
<g >
<title>index_getnext_slot (19 samples, 0.02%)</title><rect x="1284.4" y="667" width="0.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="1287.42" y="677.5" ></text>
</g>
<g >
<title>__put_user_nocheck_4 (24 samples, 0.02%)</title><rect x="113.4" y="539" width="0.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text  x="116.37" y="549.5" ></text>
</g>
<g >
<title>__x64_sys_sendto (15,436 samples, 12.94%)</title><rect x="258.4" y="587" width="178.7" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text  x="261.45" y="597.5" >__x64_sys_sendto</text>
</g>
<g >
<title>InsertPgAttributeTuples (15 samples, 0.01%)</title><rect x="1283.0" y="459" width="0.2" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text  x="1286.03" y="469.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (17 samples, 0.01%)</title><rect x="21.8" y="315" width="0.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="24.78" y="325.5" ></text>
</g>
<g >
<title>CatCacheInvalidate (65 samples, 0.05%)</title><rect x="725.4" y="587" width="0.7" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="728.36" y="597.5" ></text>
</g>
<g >
<title>pfree (38 samples, 0.03%)</title><rect x="1217.9" y="635" width="0.4" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1220.88" y="645.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (15 samples, 0.01%)</title><rect x="181.3" y="427" width="0.2" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text  x="184.30" y="437.5" ></text>
</g>
<g >
<title>hash_seq_init (37 samples, 0.03%)</title><rect x="1361.2" y="779" width="0.4" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text  x="1364.17" y="789.5" ></text>
</g>
<g >
<title>hash_initial_lookup (25 samples, 0.02%)</title><rect x="469.7" y="603" width="0.3" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="472.74" y="613.5" ></text>
</g>
<g >
<title>standard_ExecutorRun (4,568 samples, 3.83%)</title><rect x="26.8" y="667" width="52.9" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text  x="29.85" y="677.5" >stan..</text>
</g>
<g >
<title>ResourceOwnerRemember (28 samples, 0.02%)</title><rect x="681.8" y="603" width="0.4" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="684.85" y="613.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (133 samples, 0.11%)</title><rect x="37.2" y="267" width="1.5" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="40.21" y="277.5" ></text>
</g>
<g >
<title>RelationBuildTupleDesc (28 samples, 0.02%)</title><rect x="1276.0" y="331" width="0.3" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="1279.01" y="341.5" ></text>
</g>
<g >
<title>refill_stock (27 samples, 0.02%)</title><rect x="213.1" y="491" width="0.3" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text  x="216.07" y="501.5" ></text>
</g>
<g >
<title>_bt_leafbuild (451 samples, 0.38%)</title><rect x="1277.2" y="443" width="5.3" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="1280.24" y="453.5" ></text>
</g>
<g >
<title>SIGetDataEntries (1,034 samples, 0.87%)</title><rect x="474.9" y="603" width="12.0" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text  x="477.95" y="613.5" ></text>
</g>
<g >
<title>exec_toplevel_block (697 samples, 0.58%)</title><rect x="1275.9" y="699" width="8.0" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="1278.86" y="709.5" ></text>
</g>
<g >
<title>_SPI_execute_plan (47 samples, 0.04%)</title><rect x="1272.7" y="715" width="0.6" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="1275.71" y="725.5" ></text>
</g>
<g >
<title>hash_initial_lookup (23 samples, 0.02%)</title><rect x="927.4" y="283" width="0.3" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="930.39" y="293.5" ></text>
</g>
<g >
<title>BackendRun (4,634 samples, 3.89%)</title><rect x="26.8" y="779" width="53.7" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text  x="29.85" y="789.5" >Back..</text>
</g>
<g >
<title>BufferIsValid (26 samples, 0.02%)</title><rect x="1302.7" y="779" width="0.3" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="1305.69" y="789.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (73 samples, 0.06%)</title><rect x="438.1" y="571" width="0.8" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="441.07" y="581.5" ></text>
</g>
<g >
<title>exec_execute_message (4,568 samples, 3.83%)</title><rect x="26.8" y="747" width="52.9" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="29.85" y="757.5" >exec..</text>
</g>
<g >
<title>pg_atomic_read_u32 (34 samples, 0.03%)</title><rect x="731.6" y="571" width="0.4" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="734.62" y="581.5" ></text>
</g>
<g >
<title>LWLockRelease (36 samples, 0.03%)</title><rect x="931.7" y="315" width="0.4" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="934.70" y="325.5" ></text>
</g>
<g >
<title>MemoryContextResetOnly (133 samples, 0.11%)</title><rect x="1094.3" y="587" width="1.6" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text  x="1097.33" y="597.5" ></text>
</g>
<g >
<title>table_open (22 samples, 0.02%)</title><rect x="1383.4" y="779" width="0.2" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text  x="1386.37" y="789.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberCatCacheRef (47 samples, 0.04%)</title><rect x="702.9" y="651" width="0.6" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text  x="705.91" y="661.5" ></text>
</g>
<g >
<title>StartReadBuffersImpl (1,817 samples, 1.52%)</title><rect x="28.0" y="347" width="21.0" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text  x="30.98" y="357.5" ></text>
</g>
<g >
<title>newNode (427 samples, 0.36%)</title><rect x="672.8" y="603" width="5.0" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="675.85" y="613.5" ></text>
</g>
<g >
<title>BufferGetBlock (29 samples, 0.02%)</title><rect x="1302.0" y="779" width="0.4" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="1305.03" y="789.5" ></text>
</g>
<g >
<title>ReScanExprContext (31 samples, 0.03%)</title><rect x="893.1" y="555" width="0.4" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text  x="896.14" y="565.5" ></text>
</g>
<g >
<title>GetMemoryChunkMethodID (16 samples, 0.01%)</title><rect x="519.0" y="683" width="0.2" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text  x="522.00" y="693.5" ></text>
</g>
<g >
<title>exec_simple_query (196 samples, 0.16%)</title><rect x="1127.0" y="731" width="2.3" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text  x="1130.02" y="741.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (19 samples, 0.02%)</title><rect x="880.4" y="443" width="0.2" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="883.39" y="453.5" ></text>
</g>
<g >
<title>pg_client_to_server (99 samples, 0.08%)</title><rect x="706.0" y="715" width="1.2" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text  x="709.03" y="725.5" ></text>
</g>
<g >
<title>pq_getmsgstring (26 samples, 0.02%)</title><rect x="1375.2" y="779" width="0.3" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text  x="1378.25" y="789.5" ></text>
</g>
<g >
<title>ExecInitIndexScan (24 samples, 0.02%)</title><rect x="1308.8" y="779" width="0.2" height="15.0" fill="rgb(222,79,18)" rx="2" ry="2" />
<text  x="1311.75" y="789.5" ></text>
</g>
<g >
<title>get_hash_value (152 samples, 0.13%)</title><rect x="494.8" y="603" width="1.7" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text  x="497.77" y="613.5" ></text>
</g>
<g >
<title>BTreeTupleIsPosting (20 samples, 0.02%)</title><rect x="962.4" y="395" width="0.3" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text  x="965.43" y="405.5" ></text>
</g>
<g >
<title>FunctionCall1Coll (81 samples, 0.07%)</title><rect x="1271.8" y="667" width="0.9" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="1274.77" y="677.5" ></text>
</g>
<g >
<title>makeParamList (106 samples, 0.09%)</title><rect x="704.2" y="715" width="1.2" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text  x="707.22" y="725.5" ></text>
</g>
<g >
<title>LWLockQueueSelf (22 samples, 0.02%)</title><rect x="662.4" y="523" width="0.3" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text  x="665.43" y="533.5" ></text>
</g>
<g >
<title>_bt_relandgetbuf (1,463 samples, 1.23%)</title><rect x="1069.0" y="427" width="16.9" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text  x="1072.00" y="437.5" ></text>
</g>
<g >
<title>ItemPointerGetBlockNumberNoCheck (15 samples, 0.01%)</title><rect x="946.6" y="411" width="0.2" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text  x="949.64" y="421.5" ></text>
</g>
<g >
<title>index_create (13 samples, 0.01%)</title><rect x="19.2" y="523" width="0.1" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="22.15" y="533.5" ></text>
</g>
<g >
<title>ProcessUtility (81 samples, 0.07%)</title><rect x="1271.8" y="491" width="0.9" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="1274.77" y="501.5" ></text>
</g>
<g >
<title>ReadBuffer_common (49 samples, 0.04%)</title><rect x="1387.5" y="395" width="0.6" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text  x="1390.55" y="405.5" ></text>
</g>
<g >
<title>object_aclcheck_ext (18 samples, 0.02%)</title><rect x="609.8" y="539" width="0.2" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text  x="612.76" y="549.5" ></text>
</g>
<g >
<title>blkcg_maybe_throttle_current (33 samples, 0.03%)</title><rect x="191.7" y="539" width="0.4" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="194.74" y="549.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (697 samples, 0.58%)</title><rect x="1275.9" y="539" width="8.0" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="1278.86" y="549.5" ></text>
</g>
<g >
<title>_bt_unlockbuf (88 samples, 0.07%)</title><rect x="1009.7" y="395" width="1.0" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" />
<text  x="1012.71" y="405.5" ></text>
</g>
<g >
<title>ReadBuffer_common (1,819 samples, 1.53%)</title><rect x="28.0" y="379" width="21.0" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text  x="30.96" y="389.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (20 samples, 0.02%)</title><rect x="1115.6" y="539" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="1118.61" y="549.5" ></text>
</g>
<g >
<title>__folio_alloc (11 samples, 0.01%)</title><rect x="1272.8" y="155" width="0.1" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text  x="1275.81" y="165.5" ></text>
</g>
<g >
<title>BlockIdSet (10 samples, 0.01%)</title><rect x="878.0" y="507" width="0.1" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="880.96" y="517.5" ></text>
</g>
<g >
<title>getRelationDescription (10 samples, 0.01%)</title><rect x="1283.6" y="427" width="0.1" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text  x="1286.56" y="437.5" ></text>
</g>
<g >
<title>ip_local_deliver_finish (6,376 samples, 5.35%)</title><rect x="305.5" y="299" width="73.8" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text  x="308.48" y="309.5" >ip_loc..</text>
</g>
<g >
<title>ExecInitExprRec (80 samples, 0.07%)</title><rect x="608.0" y="555" width="0.9" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text  x="610.99" y="565.5" ></text>
</g>
<g >
<title>PortalCleanup (23 samples, 0.02%)</title><rect x="1334.0" y="779" width="0.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="1337.02" y="789.5" ></text>
</g>
<g >
<title>PageIsNew (294 samples, 0.25%)</title><rect x="1077.6" y="395" width="3.4" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="1080.62" y="405.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (25 samples, 0.02%)</title><rect x="1087.0" y="395" width="0.3" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="1089.98" y="405.5" ></text>
</g>
<g >
<title>exec_stmt_execsql (697 samples, 0.58%)</title><rect x="1275.9" y="619" width="8.0" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="1278.86" y="629.5" ></text>
</g>
<g >
<title>printtup_prepare_info (531 samples, 0.45%)</title><rect x="1102.3" y="603" width="6.1" height="15.0" fill="rgb(243,175,41)" rx="2" ry="2" />
<text  x="1105.28" y="613.5" ></text>
</g>
<g >
<title>do_syscall_64 (14 samples, 0.01%)</title><rect x="1128.8" y="267" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="1131.80" y="277.5" ></text>
</g>
<g >
<title>_bt_preprocess_keys (16 samples, 0.01%)</title><rect x="1351.1" y="779" width="0.1" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text  x="1354.06" y="789.5" ></text>
</g>
<g >
<title>palloc (31 samples, 0.03%)</title><rect x="594.9" y="587" width="0.4" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="597.92" y="597.5" ></text>
</g>
<g >
<title>xactGetCommittedInvalidationMessages (12 samples, 0.01%)</title><rect x="1217.2" y="651" width="0.2" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text  x="1220.23" y="661.5" ></text>
</g>
<g >
<title>LWLockDisownInternal (10 samples, 0.01%)</title><rect x="918.3" y="411" width="0.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="921.29" y="421.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (119 samples, 0.10%)</title><rect x="603.8" y="523" width="1.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="606.75" y="533.5" ></text>
</g>
<g >
<title>ExecScanFetch (85 samples, 0.07%)</title><rect x="1387.1" y="571" width="1.0" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text  x="1390.13" y="581.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (46 samples, 0.04%)</title><rect x="1389.1" y="539" width="0.5" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="1392.10" y="549.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetTupleDesc (41 samples, 0.03%)</title><rect x="1187.3" y="523" width="0.5" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="1190.28" y="533.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (140 samples, 0.12%)</title><rect x="511.5" y="651" width="1.6" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="514.48" y="661.5" ></text>
</g>
<g >
<title>__generic_file_write_iter (438 samples, 0.37%)</title><rect x="1277.4" y="203" width="5.0" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text  x="1280.37" y="213.5" ></text>
</g>
<g >
<title>FileWrite (442 samples, 0.37%)</title><rect x="1277.3" y="347" width="5.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="1280.35" y="357.5" ></text>
</g>
<g >
<title>ExecReadyInterpretedExpr (66 samples, 0.06%)</title><rect x="581.9" y="555" width="0.7" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text  x="584.88" y="565.5" ></text>
</g>
<g >
<title>epoll_wait (10 samples, 0.01%)</title><rect x="1271.6" y="811" width="0.2" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text  x="1274.64" y="821.5" ></text>
</g>
<g >
<title>FetchStatementTargetList (21 samples, 0.02%)</title><rect x="848.2" y="699" width="0.3" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text  x="851.22" y="709.5" ></text>
</g>
<g >
<title>LWLockRelease (70 samples, 0.06%)</title><rect x="1232.4" y="603" width="0.8" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="1235.41" y="613.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (65 samples, 0.05%)</title><rect x="79.7" y="667" width="0.8" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="82.71" y="677.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (33 samples, 0.03%)</title><rect x="1242.4" y="571" width="0.4" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="1245.44" y="581.5" ></text>
</g>
<g >
<title>MemoryContextDelete (17 samples, 0.01%)</title><rect x="1327.6" y="779" width="0.2" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text  x="1330.60" y="789.5" ></text>
</g>
<g >
<title>get_timeout_active (22 samples, 0.02%)</title><rect x="1257.0" y="731" width="0.3" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" />
<text  x="1260.04" y="741.5" ></text>
</g>
<g >
<title>ObjectIdGetDatum (11 samples, 0.01%)</title><rect x="698.8" y="699" width="0.1" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text  x="701.77" y="709.5" ></text>
</g>
<g >
<title>printtup_startup (513 samples, 0.43%)</title><rect x="1111.7" y="635" width="5.9" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text  x="1114.65" y="645.5" ></text>
</g>
<g >
<title>tag_hash (143 samples, 0.12%)</title><rect x="498.9" y="603" width="1.7" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="501.93" y="613.5" ></text>
</g>
<g >
<title>deleteObjectsInList (26 samples, 0.02%)</title><rect x="25.1" y="747" width="0.3" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="28.14" y="757.5" ></text>
</g>
<g >
<title>PostgresMain (102,617 samples, 86.05%)</title><rect x="80.7" y="747" width="1187.4" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text  x="83.66" y="757.5" >PostgresMain</text>
</g>
<g >
<title>AtEOXact_LogicalRepWorkers (9 samples, 0.01%)</title><rect x="1138.2" y="667" width="0.1" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text  x="1141.17" y="677.5" ></text>
</g>
<g >
<title>ExecReadyInterpretedExpr (27 samples, 0.02%)</title><rect x="1312.4" y="779" width="0.3" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text  x="1315.40" y="789.5" ></text>
</g>
<g >
<title>__libc_recv (38 samples, 0.03%)</title><rect x="1269.9" y="811" width="0.4" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text  x="1272.87" y="821.5" ></text>
</g>
<g >
<title>SetCurrentStatementStartTimestamp (28 samples, 0.02%)</title><rect x="1345.3" y="779" width="0.3" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text  x="1348.31" y="789.5" ></text>
</g>
<g >
<title>hash_bytes (273 samples, 0.23%)</title><rect x="1235.7" y="555" width="3.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="1238.70" y="565.5" ></text>
</g>
<g >
<title>ReleaseBuffer (136 samples, 0.11%)</title><rect x="879.1" y="491" width="1.6" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text  x="882.11" y="501.5" ></text>
</g>
<g >
<title>HistoricSnapshotActive (10 samples, 0.01%)</title><rect x="513.2" y="699" width="0.2" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="516.25" y="709.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (25 samples, 0.02%)</title><rect x="1285.3" y="571" width="0.3" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="1288.32" y="581.5" ></text>
</g>
<g >
<title>ReadBuffer (2,653 samples, 2.22%)</title><rect x="49.0" y="411" width="30.7" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="52.01" y="421.5" >R..</text>
</g>
<g >
<title>mod_memcg_state (96 samples, 0.08%)</title><rect x="432.2" y="475" width="1.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="435.20" y="485.5" ></text>
</g>
<g >
<title>exec_stmt_execsql (25 samples, 0.02%)</title><rect x="1129.0" y="459" width="0.3" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="1132.00" y="469.5" ></text>
</g>
<g >
<title>lappend_int (110 samples, 0.09%)</title><rect x="614.6" y="587" width="1.3" height="15.0" fill="rgb(231,121,28)" rx="2" ry="2" />
<text  x="617.58" y="597.5" ></text>
</g>
<g >
<title>index_getnext_slot (10 samples, 0.01%)</title><rect x="1276.2" y="299" width="0.1" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="1279.18" y="309.5" ></text>
</g>
<g >
<title>int4out (119 samples, 0.10%)</title><rect x="1097.0" y="571" width="1.3" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text  x="1099.95" y="581.5" ></text>
</g>
<g >
<title>ReleaseCatCache (37 samples, 0.03%)</title><rect x="587.3" y="555" width="0.4" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="590.32" y="565.5" ></text>
</g>
<g >
<title>ReleaseCatCache (41 samples, 0.03%)</title><rect x="1104.6" y="555" width="0.5" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="1107.60" y="565.5" ></text>
</g>
<g >
<title>GETSTRUCT (15 samples, 0.01%)</title><rect x="703.8" y="683" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="706.78" y="693.5" ></text>
</g>
<g >
<title>check_spread.isra.0 (22 samples, 0.02%)</title><rect x="187.6" y="459" width="0.3" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="190.64" y="469.5" ></text>
</g>
<g >
<title>PreCommit_Notify (29 samples, 0.02%)</title><rect x="1334.8" y="779" width="0.3" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text  x="1337.80" y="789.5" ></text>
</g>
<g >
<title>PageValidateSpecialPointer (13 samples, 0.01%)</title><rect x="1053.1" y="395" width="0.2" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text  x="1056.13" y="405.5" ></text>
</g>
<g >
<title>hash_bytes (124 samples, 0.10%)</title><rect x="495.1" y="571" width="1.4" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="498.09" y="581.5" ></text>
</g>
<g >
<title>initStringInfo (373 samples, 0.31%)</title><rect x="1113.2" y="619" width="4.3" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="1116.20" y="629.5" ></text>
</g>
<g >
<title>tcp_rbtree_insert (19 samples, 0.02%)</title><rect x="410.7" y="459" width="0.2" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="413.70" y="469.5" ></text>
</g>
<g >
<title>pgstat_report_activity (327 samples, 0.27%)</title><rect x="707.2" y="715" width="3.8" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text  x="710.18" y="725.5" ></text>
</g>
<g >
<title>getTypeIOParam (32 samples, 0.03%)</title><rect x="703.6" y="699" width="0.4" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text  x="706.58" y="709.5" ></text>
</g>
<g >
<title>index_beginscan (878 samples, 0.74%)</title><rect x="902.8" y="507" width="10.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="905.83" y="517.5" ></text>
</g>
<g >
<title>dclist_init (10 samples, 0.01%)</title><rect x="1354.3" y="779" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="1357.34" y="789.5" ></text>
</g>
<g >
<title>LWLockRelease (22 samples, 0.02%)</title><rect x="1325.1" y="779" width="0.2" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="1328.09" y="789.5" ></text>
</g>
<g >
<title>new_head_cell (34 samples, 0.03%)</title><rect x="554.4" y="539" width="0.4" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="557.40" y="549.5" ></text>
</g>
<g >
<title>inet_sendmsg (46 samples, 0.04%)</title><rect x="261.5" y="539" width="0.6" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text  x="264.53" y="549.5" ></text>
</g>
<g >
<title>_bt_check_compare (140 samples, 0.12%)</title><rect x="1014.1" y="395" width="1.6" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="1017.11" y="405.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetSnapshot (30 samples, 0.03%)</title><rect x="1341.6" y="779" width="0.4" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text  x="1344.63" y="789.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (25 samples, 0.02%)</title><rect x="25.5" y="763" width="0.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="28.52" y="773.5" ></text>
</g>
<g >
<title>ItemPointerGetBlockNumberNoCheck (29 samples, 0.02%)</title><rect x="1017.8" y="411" width="0.4" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text  x="1020.85" y="421.5" ></text>
</g>
<g >
<title>LockRelationOid (11 samples, 0.01%)</title><rect x="1326.1" y="779" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="1329.09" y="789.5" ></text>
</g>
<g >
<title>_bt_lockbuf (55 samples, 0.05%)</title><rect x="1060.8" y="395" width="0.7" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text  x="1063.82" y="405.5" ></text>
</g>
<g >
<title>record_times (33 samples, 0.03%)</title><rect x="185.8" y="459" width="0.4" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text  x="188.83" y="469.5" ></text>
</g>
<g >
<title>deregister_seq_scan (10 samples, 0.01%)</title><rect x="1214.5" y="619" width="0.1" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text  x="1217.49" y="629.5" ></text>
</g>
<g >
<title>pfree (95 samples, 0.08%)</title><rect x="1178.9" y="491" width="1.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1181.94" y="501.5" ></text>
</g>
<g >
<title>FileWriteV (27 samples, 0.02%)</title><rect x="1272.8" y="395" width="0.3" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text  x="1275.81" y="405.5" ></text>
</g>
<g >
<title>AtEOXact_Aio (25 samples, 0.02%)</title><rect x="1136.5" y="667" width="0.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="1139.52" y="677.5" ></text>
</g>
<g >
<title>ExecuteDoStmt (46 samples, 0.04%)</title><rect x="1389.1" y="795" width="0.5" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text  x="1392.10" y="805.5" ></text>
</g>
<g >
<title>GetSnapshotDataReuse (12 samples, 0.01%)</title><rect x="683.4" y="667" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="686.43" y="677.5" ></text>
</g>
<g >
<title>pg_strtoint32_safe (72 samples, 0.06%)</title><rect x="515.4" y="667" width="0.8" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="518.40" y="677.5" ></text>
</g>
<g >
<title>GetCommandTagNameAndLen (11 samples, 0.01%)</title><rect x="1315.7" y="779" width="0.1" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text  x="1318.66" y="789.5" ></text>
</g>
<g >
<title>_bt_first (12 samples, 0.01%)</title><rect x="24.5" y="539" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="27.50" y="549.5" ></text>
</g>
<g >
<title>ExecEndIndexScan (770 samples, 0.65%)</title><rect x="1177.0" y="539" width="8.9" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="1180.00" y="549.5" ></text>
</g>
<g >
<title>table_index_fetch_reset (144 samples, 0.12%)</title><rect x="883.0" y="491" width="1.7" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="885.99" y="501.5" ></text>
</g>
<g >
<title>initStringInfoInternal (368 samples, 0.31%)</title><rect x="1257.5" y="715" width="4.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="1260.46" y="725.5" ></text>
</g>
<g >
<title>SocketBackend (13,287 samples, 11.14%)</title><rect x="92.6" y="715" width="153.7" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="95.57" y="725.5" >SocketBackend</text>
</g>
<g >
<title>LWLockReleaseInternal (142 samples, 0.12%)</title><rect x="493.1" y="603" width="1.7" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="496.12" y="613.5" ></text>
</g>
<g >
<title>plpgsql_exec_function (23 samples, 0.02%)</title><rect x="24.0" y="699" width="0.3" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text  x="27.01" y="709.5" ></text>
</g>
<g >
<title>IndexInfoFindDataOffset (26 samples, 0.02%)</title><rect x="1055.9" y="379" width="0.3" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text  x="1058.90" y="389.5" ></text>
</g>
<g >
<title>ProcessUtility (697 samples, 0.58%)</title><rect x="1275.9" y="571" width="8.0" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="1278.86" y="581.5" ></text>
</g>
<g >
<title>BackendMain (77 samples, 0.06%)</title><rect x="11.1" y="811" width="0.9" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text  x="14.10" y="821.5" ></text>
</g>
<g >
<title>xactGetCommittedChildren (20 samples, 0.02%)</title><rect x="1217.0" y="651" width="0.2" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text  x="1220.00" y="661.5" ></text>
</g>
<g >
<title>exec_stmt_block (46 samples, 0.04%)</title><rect x="1389.1" y="699" width="0.5" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="1392.10" y="709.5" ></text>
</g>
<g >
<title>CacheInvalidateHeapTuple (10 samples, 0.01%)</title><rect x="1274.4" y="795" width="0.1" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text  x="1277.41" y="805.5" ></text>
</g>
<g >
<title>index_create (595 samples, 0.50%)</title><rect x="1275.9" y="491" width="6.9" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="1278.95" y="501.5" ></text>
</g>
<g >
<title>plpgsql_exec_function (11 samples, 0.01%)</title><rect x="19.4" y="779" width="0.1" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text  x="22.38" y="789.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (23 samples, 0.02%)</title><rect x="1232.9" y="555" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="1235.91" y="565.5" ></text>
</g>
<g >
<title>AfterTriggerBeginXact (23 samples, 0.02%)</title><rect x="1291.0" y="779" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="1293.98" y="789.5" ></text>
</g>
<g >
<title>psi_task_switch (406 samples, 0.34%)</title><rect x="182.2" y="491" width="4.7" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="185.20" y="501.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (33 samples, 0.03%)</title><rect x="593.9" y="523" width="0.4" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="596.93" y="533.5" ></text>
</g>
<g >
<title>RegisterSnapshotOnOwner (48 samples, 0.04%)</title><rect x="681.6" y="635" width="0.6" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text  x="684.62" y="645.5" ></text>
</g>
<g >
<title>GetCurrentTimestamp (53 samples, 0.04%)</title><rect x="1122.4" y="699" width="0.6" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="1125.35" y="709.5" ></text>
</g>
<g >
<title>MemoryContextAllocZero (23 samples, 0.02%)</title><rect x="1327.2" y="779" width="0.3" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="1330.22" y="789.5" ></text>
</g>
<g >
<title>murmurhash32 (32 samples, 0.03%)</title><rect x="702.0" y="619" width="0.3" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="704.97" y="629.5" ></text>
</g>
<g >
<title>BufferGetBlockNumber (323 samples, 0.27%)</title><rect x="1018.2" y="427" width="3.7" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text  x="1021.19" y="437.5" ></text>
</g>
<g >
<title>AllocSetFreeIndex (9 samples, 0.01%)</title><rect x="602.8" y="507" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="605.85" y="517.5" ></text>
</g>
<g >
<title>ExecProcNodeFirst (469 samples, 0.39%)</title><rect x="12.0" y="619" width="5.4" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="14.99" y="629.5" ></text>
</g>
<g >
<title>palloc (67 samples, 0.06%)</title><rect x="563.9" y="491" width="0.8" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="566.90" y="501.5" ></text>
</g>
<g >
<title>tcp_rearm_rto (39 samples, 0.03%)</title><rect x="410.9" y="459" width="0.5" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text  x="413.92" y="469.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (20 samples, 0.02%)</title><rect x="1283.7" y="475" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="1286.68" y="485.5" ></text>
</g>
<g >
<title>exec_toplevel_block (39 samples, 0.03%)</title><rect x="23.3" y="651" width="0.5" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="26.34" y="661.5" ></text>
</g>
<g >
<title>LockTagHashCode (152 samples, 0.13%)</title><rect x="494.8" y="619" width="1.7" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="497.77" y="629.5" ></text>
</g>
<g >
<title>fmgr_info_cxt_security (49 samples, 0.04%)</title><rect x="609.0" y="539" width="0.5" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="611.97" y="549.5" ></text>
</g>
<g >
<title>tts_buffer_heap_getsomeattrs (11 samples, 0.01%)</title><rect x="1384.0" y="779" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="1387.03" y="789.5" ></text>
</g>
<g >
<title>__sigsetjmp@plt (9 samples, 0.01%)</title><rect x="694.7" y="699" width="0.1" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text  x="697.67" y="709.5" ></text>
</g>
<g >
<title>FreeExprContext (450 samples, 0.38%)</title><rect x="1189.6" y="555" width="5.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="1192.58" y="565.5" ></text>
</g>
<g >
<title>list_length (10 samples, 0.01%)</title><rect x="609.5" y="555" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text  x="612.55" y="565.5" ></text>
</g>
<g >
<title>ExecClearTuple (218 samples, 0.18%)</title><rect x="878.2" y="523" width="2.5" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="881.18" y="533.5" ></text>
</g>
<g >
<title>AllocSetAlloc (42 samples, 0.04%)</title><rect x="540.1" y="603" width="0.5" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="543.14" y="613.5" ></text>
</g>
<g >
<title>FunctionCall1Coll (11 samples, 0.01%)</title><rect x="20.7" y="795" width="0.1" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="23.66" y="805.5" ></text>
</g>
<g >
<title>expr_setup_walker (14 samples, 0.01%)</title><rect x="1356.4" y="779" width="0.1" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="1359.38" y="789.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetBuffer (22 samples, 0.02%)</title><rect x="1008.7" y="363" width="0.2" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text  x="1011.68" y="373.5" ></text>
</g>
<g >
<title>clear_page_erms (26 samples, 0.02%)</title><rect x="416.9" y="443" width="0.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="419.94" y="453.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (25 samples, 0.02%)</title><rect x="439.6" y="619" width="0.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="442.58" y="629.5" ></text>
</g>
<g >
<title>Int32GetDatum (31 samples, 0.03%)</title><rect x="1058.4" y="363" width="0.4" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text  x="1061.41" y="373.5" ></text>
</g>
<g >
<title>UnpinBuffer (395 samples, 0.33%)</title><rect x="1072.3" y="395" width="4.6" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text  x="1075.31" y="405.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (40 samples, 0.03%)</title><rect x="719.5" y="651" width="0.5" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="722.54" y="661.5" ></text>
</g>
<g >
<title>__kmem_cache_free (24 samples, 0.02%)</title><rect x="388.4" y="315" width="0.2" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text  x="391.35" y="325.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (13 samples, 0.01%)</title><rect x="1269.6" y="779" width="0.2" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="1272.61" y="789.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (37 samples, 0.03%)</title><rect x="693.7" y="651" width="0.4" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="696.68" y="661.5" ></text>
</g>
<g >
<title>ResourceOwnerSort (28 samples, 0.02%)</title><rect x="1252.5" y="619" width="0.3" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="1255.46" y="629.5" ></text>
</g>
<g >
<title>RelationClose (69 samples, 0.06%)</title><rect x="1175.9" y="507" width="0.8" height="15.0" fill="rgb(208,18,4)" rx="2" ry="2" />
<text  x="1178.90" y="517.5" ></text>
</g>
<g >
<title>BufferDescriptorGetBuffer (11 samples, 0.01%)</title><rect x="883.7" y="427" width="0.1" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="886.71" y="437.5" ></text>
</g>
<g >
<title>RelationCacheInvalidateEntry (9 samples, 0.01%)</title><rect x="1389.1" y="411" width="0.1" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="1392.10" y="421.5" ></text>
</g>
<g >
<title>LWLockDisownInternal (21 samples, 0.02%)</title><rect x="492.9" y="603" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="495.88" y="613.5" ></text>
</g>
<g >
<title>__memcpy_evex_unaligned_erms (13 samples, 0.01%)</title><rect x="859.4" y="683" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="862.44" y="693.5" ></text>
</g>
<g >
<title>SaveTransactionCharacteristics (17 samples, 0.01%)</title><rect x="1256.4" y="683" width="0.2" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
<text  x="1259.37" y="693.5" ></text>
</g>
<g >
<title>fill_seq_fork_with_data (25 samples, 0.02%)</title><rect x="25.5" y="699" width="0.3" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="28.52" y="709.5" ></text>
</g>
<g >
<title>secure_raw_write (16,058 samples, 13.47%)</title><rect x="254.1" y="651" width="185.8" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="257.06" y="661.5" >secure_raw_write</text>
</g>
<g >
<title>AllocSetAllocFromNewBlock (279 samples, 0.23%)</title><rect x="1114.0" y="555" width="3.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="1117.05" y="565.5" ></text>
</g>
<g >
<title>ExecScanFetch (582 samples, 0.49%)</title><rect x="878.1" y="555" width="6.7" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text  x="881.07" y="565.5" ></text>
</g>
<g >
<title>LWLockAcquire (135 samples, 0.11%)</title><rect x="1081.4" y="379" width="1.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="1084.37" y="389.5" ></text>
</g>
<g >
<title>index_getnext_tid (4,568 samples, 3.83%)</title><rect x="26.8" y="507" width="52.9" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="29.85" y="517.5" >inde..</text>
</g>
<g >
<title>ProcessUtility (21 samples, 0.02%)</title><rect x="1129.0" y="411" width="0.3" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="1132.04" y="421.5" ></text>
</g>
<g >
<title>GetTopTransactionIdIfAny (14 samples, 0.01%)</title><rect x="1318.5" y="779" width="0.1" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text  x="1321.46" y="789.5" ></text>
</g>
<g >
<title>__refill_stock (9 samples, 0.01%)</title><rect x="213.3" y="475" width="0.1" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text  x="216.28" y="485.5" ></text>
</g>
<g >
<title>ConditionalCatalogCacheInitializeCache (15 samples, 0.01%)</title><rect x="623.7" y="491" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="626.74" y="501.5" ></text>
</g>
<g >
<title>table_close (12 samples, 0.01%)</title><rect x="1383.2" y="779" width="0.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="1386.22" y="789.5" ></text>
</g>
<g >
<title>AllocSetFree (23 samples, 0.02%)</title><rect x="1218.0" y="619" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="1220.98" y="629.5" ></text>
</g>
<g >
<title>PortalRunSelect (469 samples, 0.39%)</title><rect x="12.0" y="715" width="5.4" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text  x="14.99" y="725.5" ></text>
</g>
<g >
<title>GetCurrentTransactionNestLevel (10 samples, 0.01%)</title><rect x="1119.1" y="667" width="0.1" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text  x="1122.13" y="677.5" ></text>
</g>
<g >
<title>MemoryContextSwitchTo (17 samples, 0.01%)</title><rect x="691.2" y="699" width="0.2" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text  x="694.18" y="709.5" ></text>
</g>
<g >
<title>pgstat_get_transactional_drops (18 samples, 0.02%)</title><rect x="1216.6" y="651" width="0.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text  x="1219.56" y="661.5" ></text>
</g>
<g >
<title>PortalRunMulti (81 samples, 0.07%)</title><rect x="1271.8" y="779" width="0.9" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="1274.77" y="789.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (11 samples, 0.01%)</title><rect x="19.4" y="603" width="0.1" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="22.38" y="613.5" ></text>
</g>
<g >
<title>AllocSetFreeIndex (12 samples, 0.01%)</title><rect x="10.7" y="811" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="13.67" y="821.5" ></text>
</g>
<g >
<title>InitBufferTag (30 samples, 0.03%)</title><rect x="927.7" y="315" width="0.3" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text  x="930.66" y="325.5" ></text>
</g>
<g >
<title>__vdso_gettimeofday (47 samples, 0.04%)</title><rect x="1263.9" y="683" width="0.6" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="1266.94" y="693.5" ></text>
</g>
<g >
<title>LWLockDisownInternal (9 samples, 0.01%)</title><rect x="1010.1" y="347" width="0.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="1013.07" y="357.5" ></text>
</g>
<g >
<title>BufTableLookup (351 samples, 0.29%)</title><rect x="53.2" y="299" width="4.1" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text  x="56.21" y="309.5" ></text>
</g>
<g >
<title>_bt_getroot (1,819 samples, 1.53%)</title><rect x="28.0" y="443" width="21.0" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text  x="30.96" y="453.5" ></text>
</g>
<g >
<title>ExecDropStmt (11 samples, 0.01%)</title><rect x="23.7" y="459" width="0.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="26.67" y="469.5" ></text>
</g>
<g >
<title>exec_stmt_fori (23 samples, 0.02%)</title><rect x="24.0" y="635" width="0.3" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text  x="27.01" y="645.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (33 samples, 0.03%)</title><rect x="1177.9" y="459" width="0.4" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text  x="1180.88" y="469.5" ></text>
</g>
<g >
<title>set_ps_display (119 samples, 0.10%)</title><rect x="1266.7" y="731" width="1.3" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="1269.66" y="741.5" ></text>
</g>
<g >
<title>index_create (41 samples, 0.03%)</title><rect x="1272.7" y="555" width="0.5" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="1275.73" y="565.5" ></text>
</g>
<g >
<title>UnpinBuffer (124 samples, 0.10%)</title><rect x="879.2" y="475" width="1.5" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text  x="882.24" y="485.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (11 samples, 0.01%)</title><rect x="696.3" y="635" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="699.27" y="645.5" ></text>
</g>
<g >
<title>AllocSetAlloc (29 samples, 0.02%)</title><rect x="1097.6" y="539" width="0.4" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1100.65" y="549.5" ></text>
</g>
<g >
<title>SPI_execute_plan_with_paramlist (37 samples, 0.03%)</title><rect x="1285.2" y="683" width="0.4" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="1288.18" y="693.5" ></text>
</g>
<g >
<title>GETSTRUCT (17 samples, 0.01%)</title><rect x="698.6" y="699" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="701.57" y="709.5" ></text>
</g>
<g >
<title>ReleaseSysCache (22 samples, 0.02%)</title><rect x="1340.0" y="779" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="1342.95" y="789.5" ></text>
</g>
<g >
<title>palloc0 (174 samples, 0.15%)</title><rect x="570.9" y="523" width="2.1" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="573.95" y="533.5" ></text>
</g>
<g >
<title>_int_free (111 samples, 0.09%)</title><rect x="1183.0" y="443" width="1.3" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text  x="1186.01" y="453.5" ></text>
</g>
<g >
<title>InitPlan (12,160 samples, 10.20%)</title><rect x="540.7" y="651" width="140.7" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="543.70" y="661.5" >InitPlan</text>
</g>
<g >
<title>__sys_sendto (15,356 samples, 12.88%)</title><rect x="259.4" y="571" width="177.7" height="15.0" fill="rgb(236,146,34)" rx="2" ry="2" />
<text  x="262.37" y="581.5" >__sys_sendto</text>
</g>
<g >
<title>GetCurrentSubTransactionId (14 samples, 0.01%)</title><rect x="871.8" y="683" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="874.81" y="693.5" ></text>
</g>
<g >
<title>memset_erms (290 samples, 0.24%)</title><rect x="425.8" y="427" width="3.4" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text  x="428.81" y="437.5" ></text>
</g>
<g >
<title>pairingheap_remove (23 samples, 0.02%)</title><rect x="1203.4" y="555" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="1206.37" y="565.5" ></text>
</g>
<g >
<title>tts_buffer_heap_clear (19 samples, 0.02%)</title><rect x="1383.8" y="779" width="0.2" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text  x="1386.81" y="789.5" ></text>
</g>
<g >
<title>RevalidateCachedQuery (2,659 samples, 2.23%)</title><rect x="472.2" y="699" width="30.8" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="475.24" y="709.5" >R..</text>
</g>
<g >
<title>_raw_spin_lock (19 samples, 0.02%)</title><rect x="315.4" y="251" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="318.38" y="261.5" ></text>
</g>
<g >
<title>ProcessUtility (211 samples, 0.18%)</title><rect x="20.9" y="763" width="2.4" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="23.90" y="773.5" ></text>
</g>
<g >
<title>RelationIdGetRelation (23 samples, 0.02%)</title><rect x="1339.0" y="779" width="0.2" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text  x="1341.97" y="789.5" ></text>
</g>
<g >
<title>AtCCI_LocalCache (9 samples, 0.01%)</title><rect x="1389.1" y="475" width="0.1" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text  x="1392.10" y="485.5" ></text>
</g>
<g >
<title>GetMemoryChunkMethodID (18 samples, 0.02%)</title><rect x="599.4" y="571" width="0.2" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text  x="602.37" y="581.5" ></text>
</g>
<g >
<title>shmem_alloc_and_acct_folio (287 samples, 0.24%)</title><rect x="1277.4" y="139" width="3.4" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text  x="1280.43" y="149.5" ></text>
</g>
<g >
<title>int4hashfast (32 samples, 0.03%)</title><rect x="1364.2" y="779" width="0.4" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text  x="1367.23" y="789.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberBuffer (16 samples, 0.01%)</title><rect x="43.0" y="283" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="45.97" y="293.5" ></text>
</g>
<g >
<title>pgstat_report_stat (124 samples, 0.10%)</title><rect x="1263.5" y="731" width="1.5" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="1266.53" y="741.5" ></text>
</g>
<g >
<title>pgstat_report_query_id (15 samples, 0.01%)</title><rect x="1373.3" y="779" width="0.2" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="1376.32" y="789.5" ></text>
</g>
<g >
<title>resetStringInfo (24 samples, 0.02%)</title><rect x="1098.8" y="587" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="1101.77" y="597.5" ></text>
</g>
<g >
<title>tag_hash (279 samples, 0.23%)</title><rect x="1235.6" y="571" width="3.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="1238.64" y="581.5" ></text>
</g>
<g >
<title>index_drop (14 samples, 0.01%)</title><rect x="1272.5" y="331" width="0.2" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text  x="1275.50" y="341.5" ></text>
</g>
<g >
<title>index_getnext_slot (9 samples, 0.01%)</title><rect x="24.6" y="587" width="0.1" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="27.64" y="597.5" ></text>
</g>
<g >
<title>__new_sem_wait_slow64 (10 samples, 0.01%)</title><rect x="492.7" y="587" width="0.1" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text  x="495.66" y="597.5" ></text>
</g>
<g >
<title>palloc (329 samples, 0.28%)</title><rect x="1113.5" y="587" width="3.8" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="1116.49" y="597.5" ></text>
</g>
<g >
<title>ProcessUtility (11 samples, 0.01%)</title><rect x="19.4" y="635" width="0.1" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="22.38" y="645.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberCatCacheRef (19 samples, 0.02%)</title><rect x="594.6" y="523" width="0.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text  x="597.59" y="533.5" ></text>
</g>
<g >
<title>list_head (17 samples, 0.01%)</title><rect x="1365.7" y="779" width="0.2" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text  x="1368.69" y="789.5" ></text>
</g>
<g >
<title>MemoryContextReset (13 samples, 0.01%)</title><rect x="893.2" y="539" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="896.21" y="549.5" ></text>
</g>
<g >
<title>ComputeIndexAttrs (11 samples, 0.01%)</title><rect x="1271.8" y="411" width="0.1" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text  x="1274.79" y="421.5" ></text>
</g>
<g >
<title>LWLockRelease (188 samples, 0.16%)</title><rect x="688.9" y="667" width="2.2" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="691.93" y="677.5" ></text>
</g>
<g >
<title>sockfd_lookup_light (156 samples, 0.13%)</title><rect x="235.6" y="555" width="1.8" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text  x="238.59" y="565.5" ></text>
</g>
<g >
<title>list_member_oid (19 samples, 0.02%)</title><rect x="1366.2" y="779" width="0.2" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text  x="1369.17" y="789.5" ></text>
</g>
<g >
<title>RelationFlushRelation (10 samples, 0.01%)</title><rect x="1389.2" y="379" width="0.2" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="1392.25" y="389.5" ></text>
</g>
<g >
<title>systable_getnext (9 samples, 0.01%)</title><rect x="24.6" y="603" width="0.1" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="27.64" y="613.5" ></text>
</g>
<g >
<title>MarkPortalActive (29 samples, 0.02%)</title><rect x="871.6" y="699" width="0.4" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text  x="874.64" y="709.5" ></text>
</g>
<g >
<title>pq_writeint16 (9 samples, 0.01%)</title><rect x="1102.2" y="587" width="0.1" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="1105.15" y="597.5" ></text>
</g>
<g >
<title>_int_malloc (59 samples, 0.05%)</title><rect x="1116.5" y="523" width="0.7" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text  x="1119.52" y="533.5" ></text>
</g>
<g >
<title>ModifyWaitEvent (48 samples, 0.04%)</title><rect x="96.4" y="651" width="0.6" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text  x="99.42" y="661.5" ></text>
</g>
<g >
<title>ExecProcNode (28 samples, 0.02%)</title><rect x="875.3" y="635" width="0.3" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="878.26" y="645.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (72 samples, 0.06%)</title><rect x="216.8" y="491" width="0.9" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text  x="219.84" y="501.5" ></text>
</g>
<g >
<title>exec_stmt_fori (15 samples, 0.01%)</title><rect x="23.8" y="619" width="0.2" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text  x="26.79" y="629.5" ></text>
</g>
<g >
<title>shmem_write_begin (11 samples, 0.01%)</title><rect x="1272.8" y="235" width="0.1" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="1275.81" y="245.5" ></text>
</g>
<g >
<title>CatalogTupleInsert (17 samples, 0.01%)</title><rect x="1276.7" y="459" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="1279.75" y="469.5" ></text>
</g>
<g >
<title>__rcu_read_lock (11 samples, 0.01%)</title><rect x="397.8" y="427" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="400.76" y="437.5" ></text>
</g>
<g >
<title>do_syscall_64 (7,670 samples, 6.43%)</title><rect x="104.2" y="587" width="88.7" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="107.16" y="597.5" >do_sysca..</text>
</g>
<g >
<title>tag_hash (130 samples, 0.11%)</title><rect x="495.0" y="587" width="1.5" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="498.02" y="597.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (57 samples, 0.05%)</title><rect x="663.3" y="507" width="0.7" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="666.33" y="517.5" ></text>
</g>
<g >
<title>LockBufHdr (108 samples, 0.09%)</title><rect x="1006.1" y="395" width="1.2" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="1009.06" y="405.5" ></text>
</g>
<g >
<title>skb_csum_hwoffload_help (28 samples, 0.02%)</title><rect x="397.1" y="395" width="0.3" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text  x="400.12" y="405.5" ></text>
</g>
<g >
<title>skb_clone (18 samples, 0.02%)</title><rect x="403.1" y="459" width="0.2" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text  x="406.11" y="469.5" ></text>
</g>
<g >
<title>string_hash (96 samples, 0.08%)</title><rect x="461.7" y="683" width="1.1" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="464.67" y="693.5" ></text>
</g>
<g >
<title>__memcpy_evex_unaligned_erms (16 samples, 0.01%)</title><rect x="614.4" y="571" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="617.36" y="581.5" ></text>
</g>
<g >
<title>LWLockDisownInternal (10 samples, 0.01%)</title><rect x="663.0" y="523" width="0.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="665.98" y="533.5" ></text>
</g>
<g >
<title>DatumGetInt32 (9 samples, 0.01%)</title><rect x="1387.4" y="379" width="0.1" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text  x="1390.44" y="389.5" ></text>
</g>
<g >
<title>hash_initial_lookup (44 samples, 0.04%)</title><rect x="56.8" y="267" width="0.5" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="59.76" y="277.5" ></text>
</g>
<g >
<title>ExecProcNode (72 samples, 0.06%)</title><rect x="11.1" y="667" width="0.8" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="14.10" y="677.5" ></text>
</g>
<g >
<title>BufferGetPage (31 samples, 0.03%)</title><rect x="1021.9" y="427" width="0.4" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="1024.92" y="437.5" ></text>
</g>
<g >
<title>FastPathUnGrantRelationLock (417 samples, 0.35%)</title><rect x="1226.1" y="603" width="4.8" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="1229.10" y="613.5" ></text>
</g>
<g >
<title>slot_deform_heap_tuple (243 samples, 0.20%)</title><rect x="898.9" y="379" width="2.8" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text  x="901.94" y="389.5" ></text>
</g>
<g >
<title>_bt_getbuf (1,819 samples, 1.53%)</title><rect x="28.0" y="427" width="21.0" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="30.96" y="437.5" ></text>
</g>
<g >
<title>ExecProject (648 samples, 0.54%)</title><rect x="894.6" y="539" width="7.5" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text  x="897.59" y="549.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (30 samples, 0.03%)</title><rect x="846.1" y="603" width="0.3" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="849.07" y="613.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (169 samples, 0.14%)</title><rect x="689.1" y="651" width="2.0" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="692.14" y="661.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (18 samples, 0.02%)</title><rect x="194.4" y="603" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="197.42" y="613.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (33 samples, 0.03%)</title><rect x="917.8" y="379" width="0.4" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="920.80" y="389.5" ></text>
</g>
<g >
<title>ExecPushExprSetupSteps (173 samples, 0.15%)</title><rect x="601.0" y="571" width="2.0" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="603.96" y="581.5" ></text>
</g>
<g >
<title>clear_page_erms (281 samples, 0.24%)</title><rect x="1277.5" y="43" width="3.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="1280.50" y="53.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (91 samples, 0.08%)</title><rect x="1204.9" y="619" width="1.0" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="1207.87" y="629.5" ></text>
</g>
<g >
<title>ExecProcNode (85 samples, 0.07%)</title><rect x="1387.1" y="651" width="1.0" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="1390.13" y="661.5" ></text>
</g>
<g >
<title>LockRelationOid (2,443 samples, 2.05%)</title><rect x="641.9" y="571" width="28.3" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="644.92" y="581.5" >L..</text>
</g>
<g >
<title>pgstat_report_xact_timestamp (106 samples, 0.09%)</title><rect x="1254.4" y="667" width="1.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text  x="1257.38" y="677.5" ></text>
</g>
<g >
<title>ExecuteDoStmt (39 samples, 0.03%)</title><rect x="23.3" y="731" width="0.5" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text  x="26.34" y="741.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (217 samples, 0.18%)</title><rect x="1157.3" y="523" width="2.5" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="1160.28" y="533.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (48 samples, 0.04%)</title><rect x="1082.2" y="331" width="0.5" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="1085.19" y="341.5" ></text>
</g>
<g >
<title>tcp_write_xmit (11,912 samples, 9.99%)</title><rect x="275.1" y="491" width="137.9" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="278.13" y="501.5" >tcp_write_xmit</text>
</g>
<g >
<title>RelationBuildDesc (9 samples, 0.01%)</title><rect x="1389.2" y="347" width="0.2" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="1392.25" y="357.5" ></text>
</g>
<g >
<title>hash_search (216 samples, 0.18%)</title><rect x="666.8" y="539" width="2.5" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="669.76" y="549.5" ></text>
</g>
<g >
<title>ReindexIsProcessingIndex (26 samples, 0.02%)</title><rect x="1338.3" y="779" width="0.3" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text  x="1341.33" y="789.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (24 samples, 0.02%)</title><rect x="22.2" y="347" width="0.3" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="25.22" y="357.5" ></text>
</g>
<g >
<title>hash_search (246 samples, 0.21%)</title><rect x="463.2" y="699" width="2.8" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="466.16" y="709.5" ></text>
</g>
<g >
<title>strlen@plt (26 samples, 0.02%)</title><rect x="715.8" y="699" width="0.3" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="718.84" y="709.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (10 samples, 0.01%)</title><rect x="909.8" y="427" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="912.81" y="437.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (36 samples, 0.03%)</title><rect x="491.9" y="587" width="0.4" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="494.87" y="597.5" ></text>
</g>
<g >
<title>index_create (137 samples, 0.11%)</title><rect x="21.3" y="427" width="1.6" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="24.33" y="437.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetBuffer (40 samples, 0.03%)</title><rect x="883.8" y="427" width="0.5" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text  x="886.84" y="437.5" ></text>
</g>
<g >
<title>copy_user_enhanced_fast_string (57 samples, 0.05%)</title><rect x="413.2" y="491" width="0.7" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="416.23" y="501.5" ></text>
</g>
<g >
<title>index_create (25 samples, 0.02%)</title><rect x="1271.9" y="411" width="0.3" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="1274.92" y="421.5" ></text>
</g>
<g >
<title>string_hash (84 samples, 0.07%)</title><rect x="450.4" y="667" width="1.0" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="453.44" y="677.5" ></text>
</g>
<g >
<title>btint4cmp (160 samples, 0.13%)</title><rect x="982.9" y="395" width="1.9" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="985.95" y="405.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberTupleDesc (38 samples, 0.03%)</title><rect x="630.9" y="539" width="0.4" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text  x="633.85" y="549.5" ></text>
</g>
<g >
<title>palloc (127 samples, 0.11%)</title><rect x="1086.0" y="427" width="1.5" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="1089.00" y="437.5" ></text>
</g>
<g >
<title>AllocSetAlloc (79 samples, 0.07%)</title><rect x="1086.5" y="411" width="0.9" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1089.51" y="421.5" ></text>
</g>
<g >
<title>palloc0 (179 samples, 0.15%)</title><rect x="595.3" y="587" width="2.1" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="598.28" y="597.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (32 samples, 0.03%)</title><rect x="1242.4" y="555" width="0.4" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="1245.45" y="565.5" ></text>
</g>
<g >
<title>__memcpy_evex_unaligned_erms (13 samples, 0.01%)</title><rect x="1100.7" y="571" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="1103.72" y="581.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (211 samples, 0.18%)</title><rect x="20.9" y="459" width="2.4" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="23.90" y="469.5" ></text>
</g>
<g >
<title>CatalogCacheCompareTuple (15 samples, 0.01%)</title><rect x="544.9" y="523" width="0.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="547.85" y="533.5" ></text>
</g>
<g >
<title>ReadBuffer_common (2,653 samples, 2.22%)</title><rect x="49.0" y="379" width="30.7" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text  x="52.01" y="389.5" >R..</text>
</g>
<g >
<title>ScanQueryForLocks (2,477 samples, 2.08%)</title><rect x="473.2" y="667" width="28.7" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text  x="476.22" y="677.5" >S..</text>
</g>
<g >
<title>_SPI_execute_plan (13 samples, 0.01%)</title><rect x="1269.6" y="811" width="0.2" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="1272.61" y="821.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (14 samples, 0.01%)</title><rect x="726.1" y="571" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="729.11" y="581.5" ></text>
</g>
<g >
<title>get_hash_entry (19 samples, 0.02%)</title><rect x="667.5" y="507" width="0.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="670.54" y="517.5" ></text>
</g>
<g >
<title>SearchCatCache1 (171 samples, 0.14%)</title><rect x="1105.4" y="555" width="2.0" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="1108.40" y="565.5" ></text>
</g>
<g >
<title>secure_raw_read (3,808 samples, 3.19%)</title><rect x="195.4" y="651" width="44.1" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="198.42" y="661.5" >sec..</text>
</g>
<g >
<title>GetCurrentTransactionStopTimestamp (64 samples, 0.05%)</title><rect x="1263.8" y="715" width="0.7" height="15.0" fill="rgb(248,200,48)" rx="2" ry="2" />
<text  x="1266.81" y="725.5" ></text>
</g>
<g >
<title>ExecInitInterpreter (13 samples, 0.01%)</title><rect x="569.4" y="507" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="572.39" y="517.5" ></text>
</g>
<g >
<title>_bt_compare (3,625 samples, 3.04%)</title><rect x="958.2" y="427" width="42.0" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text  x="961.22" y="437.5" >_bt..</text>
</g>
<g >
<title>internal_putbytes (106 samples, 0.09%)</title><rect x="716.6" y="683" width="1.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="719.60" y="693.5" ></text>
</g>
<g >
<title>PGSemaphoreUnlock (10 samples, 0.01%)</title><rect x="1232.8" y="555" width="0.1" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="1235.78" y="565.5" ></text>
</g>
<g >
<title>simple_copy_to_iter (287 samples, 0.24%)</title><rect x="225.4" y="475" width="3.4" height="15.0" fill="rgb(228,110,26)" rx="2" ry="2" />
<text  x="228.44" y="485.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (129 samples, 0.11%)</title><rect x="460.2" y="683" width="1.5" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="463.18" y="693.5" ></text>
</g>
<g >
<title>int4in (109 samples, 0.09%)</title><rect x="515.0" y="683" width="1.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="517.97" y="693.5" ></text>
</g>
<g >
<title>SearchCatCache1 (24 samples, 0.02%)</title><rect x="1343.4" y="779" width="0.3" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="1346.39" y="789.5" ></text>
</g>
<g >
<title>tcp_cleanup_rbuf (21 samples, 0.02%)</title><rect x="229.7" y="507" width="0.3" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text  x="232.71" y="517.5" ></text>
</g>
<g >
<title>generic_perform_write (27 samples, 0.02%)</title><rect x="1272.8" y="251" width="0.3" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text  x="1275.81" y="261.5" ></text>
</g>
<g >
<title>MemoryContextDeleteOnly (73 samples, 0.06%)</title><rect x="1109.7" y="603" width="0.8" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="1112.70" y="613.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (10 samples, 0.01%)</title><rect x="617.5" y="539" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="620.54" y="549.5" ></text>
</g>
<g >
<title>inet_ehashfn (43 samples, 0.04%)</title><rect x="314.9" y="235" width="0.5" height="15.0" fill="rgb(224,87,20)" rx="2" ry="2" />
<text  x="317.88" y="245.5" ></text>
</g>
<g >
<title>IsAbortedTransactionBlockState (21 samples, 0.02%)</title><rect x="851.5" y="715" width="0.3" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="854.54" y="725.5" ></text>
</g>
<g >
<title>HeapTupleIsHeapOnly (249 samples, 0.21%)</title><rect x="943.4" y="427" width="2.9" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text  x="946.41" y="437.5" ></text>
</g>
<g >
<title>kfree_skbmem (50 samples, 0.04%)</title><rect x="368.0" y="203" width="0.6" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="371.04" y="213.5" ></text>
</g>
<g >
<title>DefineRelation (18 samples, 0.02%)</title><rect x="1285.0" y="523" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="1287.97" y="533.5" ></text>
</g>
<g >
<title>pfree (36 samples, 0.03%)</title><rect x="1207.0" y="635" width="0.4" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1210.01" y="645.5" ></text>
</g>
<g >
<title>btint4cmp (9 samples, 0.01%)</title><rect x="1053.3" y="395" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1056.31" y="405.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (125 samples, 0.10%)</title><rect x="589.6" y="523" width="1.4" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="592.60" y="533.5" ></text>
</g>
<g >
<title>_bt_doinsert (11 samples, 0.01%)</title><rect x="1283.1" y="379" width="0.1" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text  x="1286.06" y="389.5" ></text>
</g>
<g >
<title>index_getnext_tid (72 samples, 0.06%)</title><rect x="11.1" y="539" width="0.8" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="14.10" y="549.5" ></text>
</g>
<g >
<title>printtup (1,336 samples, 1.12%)</title><rect x="1093.1" y="619" width="15.5" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text  x="1096.15" y="629.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (19 samples, 0.02%)</title><rect x="21.8" y="331" width="0.2" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="24.76" y="341.5" ></text>
</g>
<g >
<title>index_insert (15 samples, 0.01%)</title><rect x="1282.7" y="411" width="0.1" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text  x="1285.66" y="421.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (53 samples, 0.04%)</title><rect x="66.7" y="267" width="0.7" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="69.74" y="277.5" ></text>
</g>
<g >
<title>ExecScan (469 samples, 0.39%)</title><rect x="12.0" y="587" width="5.4" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text  x="14.99" y="597.5" ></text>
</g>
<g >
<title>heapam_index_fetch_reset (17 samples, 0.01%)</title><rect x="1185.1" y="475" width="0.2" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text  x="1188.07" y="485.5" ></text>
</g>
<g >
<title>__generic_file_write_iter (27 samples, 0.02%)</title><rect x="1272.8" y="267" width="0.3" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text  x="1275.81" y="277.5" ></text>
</g>
<g >
<title>ExecScanFetch (469 samples, 0.39%)</title><rect x="12.0" y="555" width="5.4" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text  x="14.99" y="565.5" ></text>
</g>
<g >
<title>__strlen_evex (13 samples, 0.01%)</title><rect x="1098.4" y="603" width="0.1" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="1101.37" y="613.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (443 samples, 0.37%)</title><rect x="922.5" y="299" width="5.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="925.53" y="309.5" ></text>
</g>
<g >
<title>clear_page_erms (11 samples, 0.01%)</title><rect x="1272.8" y="107" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="1275.81" y="117.5" ></text>
</g>
<g >
<title>SearchSysCache1 (156 samples, 0.13%)</title><rect x="593.0" y="571" width="1.9" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="596.05" y="581.5" ></text>
</g>
<g >
<title>BufTableHashCode (270 samples, 0.23%)</title><rect x="50.1" y="299" width="3.1" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text  x="53.08" y="309.5" ></text>
</g>
<g >
<title>shmem_get_folio_gfp (11 samples, 0.01%)</title><rect x="1272.8" y="219" width="0.1" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text  x="1275.81" y="229.5" ></text>
</g>
<g >
<title>shmem_write_end (16 samples, 0.01%)</title><rect x="1272.9" y="235" width="0.2" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="1275.94" y="245.5" ></text>
</g>
<g >
<title>strncpy@plt (32 samples, 0.03%)</title><rect x="626.1" y="523" width="0.4" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="629.11" y="533.5" ></text>
</g>
<g >
<title>should_output_to_server (16 samples, 0.01%)</title><rect x="1379.1" y="779" width="0.1" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="1382.06" y="789.5" ></text>
</g>
<g >
<title>__memcpy_evex_unaligned_erms (9 samples, 0.01%)</title><rect x="554.7" y="523" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="557.66" y="533.5" ></text>
</g>
<g >
<title>StartTransaction (10,876 samples, 9.12%)</title><rect x="721.7" y="683" width="125.8" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="724.66" y="693.5" >StartTransact..</text>
</g>
<g >
<title>exec_stmt_execsql (46 samples, 0.04%)</title><rect x="1389.1" y="635" width="0.5" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="1392.10" y="645.5" ></text>
</g>
<g >
<title>exec_stmts (46 samples, 0.04%)</title><rect x="1389.1" y="683" width="0.5" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="1392.10" y="693.5" ></text>
</g>
<g >
<title>btgettuple (12 samples, 0.01%)</title><rect x="24.5" y="555" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="27.50" y="565.5" ></text>
</g>
<g >
<title>perform_spin_delay (116 samples, 0.10%)</title><rect x="1171.9" y="555" width="1.4" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text  x="1174.92" y="565.5" ></text>
</g>
<g >
<title>DecrTupleDescRefCount (63 samples, 0.05%)</title><rect x="1187.0" y="539" width="0.8" height="15.0" fill="rgb(243,174,41)" rx="2" ry="2" />
<text  x="1190.03" y="549.5" ></text>
</g>
<g >
<title>CreateTemplateTupleDesc (102 samples, 0.09%)</title><rect x="619.0" y="555" width="1.2" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text  x="621.99" y="565.5" ></text>
</g>
<g >
<title>DefineIndex (30 samples, 0.03%)</title><rect x="1389.1" y="523" width="0.3" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="1392.10" y="533.5" ></text>
</g>
<g >
<title>AllocSetReset (105 samples, 0.09%)</title><rect x="1094.6" y="571" width="1.2" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="1097.57" y="581.5" ></text>
</g>
<g >
<title>IncrTupleDescRefCount (46 samples, 0.04%)</title><rect x="630.8" y="555" width="0.5" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="633.76" y="565.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (30 samples, 0.03%)</title><rect x="732.1" y="587" width="0.3" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="735.06" y="597.5" ></text>
</g>
<g >
<title>[[vdso]] (77 samples, 0.06%)</title><rect x="441.6" y="683" width="0.9" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="444.59" y="693.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (13 samples, 0.01%)</title><rect x="1269.6" y="699" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="1272.61" y="709.5" ></text>
</g>
<g >
<title>relation_open (34 samples, 0.03%)</title><rect x="1377.7" y="779" width="0.4" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="1380.71" y="789.5" ></text>
</g>
<g >
<title>DefineIndex (60 samples, 0.05%)</title><rect x="24.3" y="795" width="0.7" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="27.34" y="805.5" ></text>
</g>
<g >
<title>pfree (125 samples, 0.10%)</title><rect x="1238.9" y="587" width="1.4" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1241.87" y="597.5" ></text>
</g>
<g >
<title>PredicateLockTID (10 samples, 0.01%)</title><rect x="947.4" y="427" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="950.40" y="437.5" ></text>
</g>
<g >
<title>_SPI_execute_plan (37 samples, 0.03%)</title><rect x="1285.2" y="667" width="0.4" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="1288.18" y="677.5" ></text>
</g>
<g >
<title>RegisterSnapshot (115 samples, 0.10%)</title><rect x="524.1" y="683" width="1.3" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="527.08" y="693.5" ></text>
</g>
<g >
<title>exec_stmt_fori (65 samples, 0.05%)</title><rect x="79.7" y="507" width="0.8" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text  x="82.71" y="517.5" ></text>
</g>
<g >
<title>_bt_search (6,148 samples, 5.16%)</title><rect x="1016.3" y="443" width="71.2" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text  x="1019.32" y="453.5" >_bt_se..</text>
</g>
<g >
<title>ReleaseBuffer (98 samples, 0.08%)</title><rect x="883.5" y="459" width="1.1" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text  x="886.51" y="469.5" ></text>
</g>
<g >
<title>murmurhash32 (12 samples, 0.01%)</title><rect x="623.6" y="459" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="626.60" y="469.5" ></text>
</g>
<g >
<title>MemoryChunkSetHdrMask (10 samples, 0.01%)</title><rect x="1087.1" y="379" width="0.2" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="1090.14" y="389.5" ></text>
</g>
<g >
<title>shmem_get_folio_gfp (290 samples, 0.24%)</title><rect x="1277.4" y="155" width="3.4" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text  x="1280.39" y="165.5" ></text>
</g>
<g >
<title>index_getnext_slot (21 samples, 0.02%)</title><rect x="21.1" y="363" width="0.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="24.06" y="373.5" ></text>
</g>
<g >
<title>LockAcquireExtended (1,022 samples, 0.86%)</title><rect x="657.5" y="555" width="11.8" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="660.46" y="565.5" ></text>
</g>
<g >
<title>pq_endmessage_reuse (100 samples, 0.08%)</title><rect x="1099.0" y="603" width="1.2" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text  x="1102.05" y="613.5" ></text>
</g>
<g >
<title>ProcArrayEndTransaction (26 samples, 0.02%)</title><rect x="1336.1" y="779" width="0.3" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="1339.08" y="789.5" ></text>
</g>
<g >
<title>StartReadBuffer (35 samples, 0.03%)</title><rect x="11.5" y="395" width="0.4" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="14.53" y="405.5" ></text>
</g>
<g >
<title>pfree (13 samples, 0.01%)</title><rect x="1184.7" y="507" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1187.72" y="517.5" ></text>
</g>
<g >
<title>AllocSetReset (365 samples, 0.31%)</title><rect x="87.2" y="699" width="4.2" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="90.22" y="709.5" ></text>
</g>
<g >
<title>AcquirePlannerLocks (39 samples, 0.03%)</title><rect x="1290.5" y="779" width="0.5" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text  x="1293.53" y="789.5" ></text>
</g>
<g >
<title>LWLockRelease (176 samples, 0.15%)</title><rect x="511.2" y="683" width="2.0" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="514.19" y="693.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (26 samples, 0.02%)</title><rect x="24.0" y="779" width="0.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="27.01" y="789.5" ></text>
</g>
<g >
<title>message_level_is_interesting (21 samples, 0.02%)</title><rect x="1366.7" y="779" width="0.2" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text  x="1369.69" y="789.5" ></text>
</g>
<g >
<title>SPI_inside_nonatomic_context (31 samples, 0.03%)</title><rect x="1343.0" y="779" width="0.3" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text  x="1345.96" y="789.5" ></text>
</g>
<g >
<title>LockRelationOid (316 samples, 0.26%)</title><rect x="468.6" y="667" width="3.6" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="471.56" y="677.5" ></text>
</g>
<g >
<title>pq_writestring (9 samples, 0.01%)</title><rect x="860.1" y="715" width="0.1" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text  x="863.06" y="725.5" ></text>
</g>
<g >
<title>IndexInfoFindDataOffset (25 samples, 0.02%)</title><rect x="1320.7" y="779" width="0.3" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text  x="1323.66" y="789.5" ></text>
</g>
<g >
<title>AbortStrongLockAcquire (28 samples, 0.02%)</title><rect x="1289.5" y="779" width="0.3" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="1292.48" y="789.5" ></text>
</g>
<g >
<title>CatalogIndexInsert (15 samples, 0.01%)</title><rect x="1282.7" y="427" width="0.1" height="15.0" fill="rgb(229,110,26)" rx="2" ry="2" />
<text  x="1285.66" y="437.5" ></text>
</g>
<g >
<title>_bt_relandgetbuf (2,653 samples, 2.22%)</title><rect x="49.0" y="443" width="30.7" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text  x="52.01" y="453.5" >_..</text>
</g>
<g >
<title>UnpinBufferNoOwner (77 samples, 0.06%)</title><rect x="879.8" y="459" width="0.9" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text  x="882.77" y="469.5" ></text>
</g>
<g >
<title>MemoryChunkSetHdrMask (9 samples, 0.01%)</title><rect x="559.7" y="491" width="0.1" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="562.67" y="501.5" ></text>
</g>
<g >
<title>ResourceOwnerRemember (13 samples, 0.01%)</title><rect x="43.0" y="267" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="46.00" y="277.5" ></text>
</g>
<g >
<title>BTreeTupleIsPivot (1,408 samples, 1.18%)</title><rect x="962.7" y="411" width="16.3" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="965.66" y="421.5" ></text>
</g>
<g >
<title>tcp_inbound_md5_hash (14 samples, 0.01%)</title><rect x="317.9" y="251" width="0.1" height="15.0" fill="rgb(253,221,52)" rx="2" ry="2" />
<text  x="320.88" y="261.5" ></text>
</g>
<g >
<title>__vdso_gettimeofday (36 samples, 0.03%)</title><rect x="1348.7" y="779" width="0.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="1351.71" y="789.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (137 samples, 0.11%)</title><rect x="511.5" y="619" width="1.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="514.51" y="629.5" ></text>
</g>
<g >
<title>_bt_preprocess_array_keys (96 samples, 0.08%)</title><rect x="26.8" y="443" width="1.2" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text  x="29.85" y="453.5" ></text>
</g>
<g >
<title>PageGetItemId (29 samples, 0.02%)</title><rect x="1331.3" y="779" width="0.4" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text  x="1334.34" y="789.5" ></text>
</g>
<g >
<title>exec_rt_fetch (34 samples, 0.03%)</title><rect x="635.9" y="571" width="0.4" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text  x="638.89" y="581.5" ></text>
</g>
<g >
<title>hash_bytes (71 samples, 0.06%)</title><rect x="462.0" y="667" width="0.8" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="464.96" y="677.5" ></text>
</g>
<g >
<title>AllocSetAlloc (51 samples, 0.04%)</title><rect x="525.6" y="667" width="0.6" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="528.57" y="677.5" ></text>
</g>
<g >
<title>secure_write (16,194 samples, 13.58%)</title><rect x="252.5" y="667" width="187.4" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="255.49" y="677.5" >secure_write</text>
</g>
<g >
<title>errstart (32 samples, 0.03%)</title><rect x="697.7" y="715" width="0.4" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="700.70" y="725.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (9 samples, 0.01%)</title><rect x="615.4" y="523" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="618.42" y="533.5" ></text>
</g>
<g >
<title>palloc (106 samples, 0.09%)</title><rect x="597.4" y="587" width="1.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="600.35" y="597.5" ></text>
</g>
<g >
<title>loopback_xmit (447 samples, 0.37%)</title><rect x="389.4" y="395" width="5.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text  x="392.42" y="405.5" ></text>
</g>
<g >
<title>__rcu_read_lock (290 samples, 0.24%)</title><rect x="283.8" y="443" width="3.4" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="286.85" y="453.5" ></text>
</g>
<g >
<title>ExecAssignScanProjectionInfo (1,453 samples, 1.22%)</title><rect x="559.9" y="603" width="16.9" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text  x="562.94" y="613.5" ></text>
</g>
<g >
<title>palloc0 (341 samples, 0.29%)</title><rect x="556.0" y="539" width="3.9" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="558.97" y="549.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (9 samples, 0.01%)</title><rect x="681.2" y="587" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="684.20" y="597.5" ></text>
</g>
<g >
<title>__ip_local_out (75 samples, 0.06%)</title><rect x="398.1" y="427" width="0.9" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="401.14" y="437.5" ></text>
</g>
<g >
<title>Int32GetDatum (13 samples, 0.01%)</title><rect x="1000.0" y="379" width="0.2" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text  x="1003.02" y="389.5" ></text>
</g>
<g >
<title>ExecClearTuple (81 samples, 0.07%)</title><rect x="892.0" y="523" width="0.9" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="895.01" y="533.5" ></text>
</g>
<g >
<title>exec_stmt_block (211 samples, 0.18%)</title><rect x="20.9" y="619" width="2.4" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="23.90" y="629.5" ></text>
</g>
<g >
<title>update_curr (411 samples, 0.34%)</title><rect x="142.0" y="459" width="4.8" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="145.01" y="469.5" ></text>
</g>
<g >
<title>PortalDrop (5,488 samples, 4.60%)</title><rect x="1143.9" y="651" width="63.5" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text  x="1146.92" y="661.5" >Porta..</text>
</g>
<g >
<title>fmgr_info_cxt_security (68 samples, 0.06%)</title><rect x="1103.2" y="571" width="0.8" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="1106.25" y="581.5" ></text>
</g>
<g >
<title>BoolGetDatum (14 samples, 0.01%)</title><rect x="1387.3" y="379" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="1390.28" y="389.5" ></text>
</g>
<g >
<title>ProcessAutoVacLauncherInterrupts (12 samples, 0.01%)</title><rect x="1268.6" y="731" width="0.2" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text  x="1271.62" y="741.5" ></text>
</g>
<g >
<title>tcp_current_mss (166 samples, 0.14%)</title><rect x="419.3" y="491" width="1.9" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text  x="422.32" y="501.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (36 samples, 0.03%)</title><rect x="1388.4" y="779" width="0.5" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text  x="1391.45" y="789.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (28 samples, 0.02%)</title><rect x="1010.4" y="315" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="1013.36" y="325.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (60 samples, 0.05%)</title><rect x="868.2" y="683" width="0.7" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="871.19" y="693.5" ></text>
</g>
<g >
<title>MemoryContextResetOnly (124 samples, 0.10%)</title><rect x="1145.6" y="587" width="1.4" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text  x="1148.56" y="597.5" ></text>
</g>
<g >
<title>ProcessInvalidationMessages (10 samples, 0.01%)</title><rect x="1389.2" y="427" width="0.2" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="1392.25" y="437.5" ></text>
</g>
<g >
<title>ExecReadyExpr (15 samples, 0.01%)</title><rect x="1312.2" y="779" width="0.2" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text  x="1315.23" y="789.5" ></text>
</g>
<g >
<title>_bt_compare (2,809 samples, 2.36%)</title><rect x="1026.3" y="411" width="32.5" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text  x="1029.26" y="421.5" >_..</text>
</g>
<g >
<title>ResourceOwnerReleaseInternal (228 samples, 0.19%)</title><rect x="1250.6" y="635" width="2.6" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text  x="1253.56" y="645.5" ></text>
</g>
<g >
<title>pfree (86 samples, 0.07%)</title><rect x="598.6" y="587" width="1.0" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="601.58" y="597.5" ></text>
</g>
<g >
<title>__strlen_evex (11 samples, 0.01%)</title><rect x="1206.1" y="603" width="0.1" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="1209.05" y="613.5" ></text>
</g>
<g >
<title>newNode (166 samples, 0.14%)</title><rect x="583.1" y="571" width="1.9" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="586.06" y="581.5" ></text>
</g>
<g >
<title>update_load_avg (332 samples, 0.28%)</title><rect x="146.8" y="459" width="3.8" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text  x="149.77" y="469.5" ></text>
</g>
<g >
<title>AllocSetContextCreateInternal (131 samples, 0.11%)</title><rect x="535.1" y="635" width="1.5" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text  x="538.08" y="645.5" ></text>
</g>
<g >
<title>palloc (69 samples, 0.06%)</title><rect x="680.6" y="619" width="0.8" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="683.60" y="629.5" ></text>
</g>
<g >
<title>mdextend (27 samples, 0.02%)</title><rect x="1272.8" y="427" width="0.3" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text  x="1275.81" y="437.5" ></text>
</g>
<g >
<title>performMultipleDeletions (23 samples, 0.02%)</title><rect x="23.1" y="411" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="26.08" y="421.5" ></text>
</g>
<g >
<title>tcp_mstamp_refresh (51 samples, 0.04%)</title><rect x="230.9" y="491" width="0.6" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text  x="233.88" y="501.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetRelationRef (42 samples, 0.04%)</title><rect x="1177.8" y="475" width="0.5" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text  x="1180.77" y="485.5" ></text>
</g>
<g >
<title>expr_setup_walker (46 samples, 0.04%)</title><rect x="604.6" y="491" width="0.5" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="607.58" y="501.5" ></text>
</g>
<g >
<title>ResourceOwnerRemember (10 samples, 0.01%)</title><rect x="637.2" y="491" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="640.22" y="501.5" ></text>
</g>
<g >
<title>__memcmp_evex_movbe (32 samples, 0.03%)</title><rect x="927.0" y="283" width="0.4" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="930.02" y="293.5" ></text>
</g>
<g >
<title>AllocSetAlloc (69 samples, 0.06%)</title><rect x="611.4" y="539" width="0.8" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="614.42" y="549.5" ></text>
</g>
<g >
<title>plpgsql_exec_function (15 samples, 0.01%)</title><rect x="23.8" y="683" width="0.2" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text  x="26.79" y="693.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (548 samples, 0.46%)</title><rect x="504.8" y="667" width="6.4" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="507.81" y="677.5" ></text>
</g>
<g >
<title>__strlen_evex (12 samples, 0.01%)</title><rect x="461.8" y="667" width="0.2" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="464.82" y="677.5" ></text>
</g>
<g >
<title>index_getnext_tid (9 samples, 0.01%)</title><rect x="24.6" y="571" width="0.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="27.64" y="581.5" ></text>
</g>
<g >
<title>exec_stmts (47 samples, 0.04%)</title><rect x="1272.7" y="795" width="0.6" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="1275.71" y="805.5" ></text>
</g>
<g >
<title>exec_simple_query (81 samples, 0.07%)</title><rect x="1271.8" y="811" width="0.9" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text  x="1274.77" y="821.5" ></text>
</g>
<g >
<title>flush_ps_display (9 samples, 0.01%)</title><rect x="1126.7" y="699" width="0.1" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" />
<text  x="1129.71" y="709.5" ></text>
</g>
<g >
<title>ResourceOwnerRemember (10 samples, 0.01%)</title><rect x="623.9" y="475" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="626.94" y="485.5" ></text>
</g>
<g >
<title>s_lock (422 samples, 0.35%)</title><rect x="1168.9" y="571" width="4.9" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="1171.93" y="581.5" ></text>
</g>
<g >
<title>AllocSetAlloc (32 samples, 0.03%)</title><rect x="1108.0" y="571" width="0.4" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1111.03" y="581.5" ></text>
</g>
<g >
<title>pick_next_task_fair (2,638 samples, 2.21%)</title><rect x="151.5" y="491" width="30.6" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text  x="154.52" y="501.5" >p..</text>
</g>
<g >
<title>index_create (39 samples, 0.03%)</title><rect x="18.0" y="795" width="0.4" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="20.96" y="805.5" ></text>
</g>
<g >
<title>SearchSysCache1 (69 samples, 0.06%)</title><rect x="1344.1" y="779" width="0.8" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="1347.13" y="789.5" ></text>
</g>
<g >
<title>UnregisterSnapshot (91 samples, 0.08%)</title><rect x="1198.1" y="571" width="1.0" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="1201.08" y="581.5" ></text>
</g>
<g >
<title>ProcessUtility (15 samples, 0.01%)</title><rect x="23.8" y="539" width="0.2" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="26.79" y="549.5" ></text>
</g>
<g >
<title>check_log_duration (16 samples, 0.01%)</title><rect x="697.5" y="715" width="0.2" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text  x="700.51" y="725.5" ></text>
</g>
<g >
<title>heapam_index_fetch_reset (120 samples, 0.10%)</title><rect x="883.3" y="475" width="1.4" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text  x="886.27" y="485.5" ></text>
</g>
<g >
<title>BufTableHashCode (147 samples, 0.12%)</title><rect x="29.6" y="299" width="1.7" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text  x="32.57" y="309.5" ></text>
</g>
<g >
<title>__napi_poll (6,992 samples, 5.86%)</title><rect x="302.2" y="347" width="80.9" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text  x="305.21" y="357.5" >__napi_..</text>
</g>
<g >
<title>fmgr_info (43 samples, 0.04%)</title><rect x="585.5" y="571" width="0.5" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="588.55" y="581.5" ></text>
</g>
<g >
<title>ProcessClientReadInterrupt (17 samples, 0.01%)</title><rect x="1336.6" y="779" width="0.2" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text  x="1339.61" y="789.5" ></text>
</g>
<g >
<title>hash_bytes (236 samples, 0.20%)</title><rect x="50.5" y="251" width="2.7" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="53.47" y="261.5" ></text>
</g>
<g >
<title>btgettuple (10 samples, 0.01%)</title><rect x="1284.3" y="635" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="1287.29" y="645.5" ></text>
</g>
<g >
<title>ProcessUtility (196 samples, 0.16%)</title><rect x="1127.0" y="667" width="2.3" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="1130.02" y="677.5" ></text>
</g>
<g >
<title>LWLockAcquire (567 samples, 0.48%)</title><rect x="504.6" y="683" width="6.6" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="507.59" y="693.5" ></text>
</g>
<g >
<title>palloc0 (160 samples, 0.13%)</title><rect x="863.4" y="683" width="1.9" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="866.42" y="693.5" ></text>
</g>
<g >
<title>ItemPointerSetInvalid (31 samples, 0.03%)</title><rect x="895.7" y="491" width="0.4" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text  x="898.74" y="501.5" ></text>
</g>
<g >
<title>AllocSetAlloc (58 samples, 0.05%)</title><rect x="677.1" y="571" width="0.7" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="680.12" y="581.5" ></text>
</g>
<g >
<title>PortalRunSelect (72 samples, 0.06%)</title><rect x="11.1" y="747" width="0.8" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text  x="14.10" y="757.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (11 samples, 0.01%)</title><rect x="19.4" y="587" width="0.1" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="22.38" y="597.5" ></text>
</g>
<g >
<title>ExecEvalExpr (404 samples, 0.34%)</title><rect x="886.9" y="523" width="4.7" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text  x="889.95" y="533.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberLock (13 samples, 0.01%)</title><rect x="661.4" y="523" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="664.43" y="533.5" ></text>
</g>
<g >
<title>exec_execute_message (72 samples, 0.06%)</title><rect x="11.1" y="779" width="0.8" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="14.10" y="789.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (51 samples, 0.04%)</title><rect x="491.8" y="603" width="0.6" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="494.81" y="613.5" ></text>
</g>
<g >
<title>bpf_skops_write_hdr_opt.isra.0 (30 samples, 0.03%)</title><rect x="402.1" y="459" width="0.3" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text  x="405.08" y="469.5" ></text>
</g>
<g >
<title>pgstat_count_io_op (83 samples, 0.07%)</title><rect x="48.0" y="315" width="1.0" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="51.05" y="325.5" ></text>
</g>
<g >
<title>__tcp_select_window (27 samples, 0.02%)</title><rect x="213.5" y="491" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="216.51" y="501.5" ></text>
</g>
<g >
<title>BTreeTupleIsPivot (43 samples, 0.04%)</title><rect x="1066.0" y="395" width="0.5" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="1069.01" y="405.5" ></text>
</g>
<g >
<title>GETSTRUCT (11 samples, 0.01%)</title><rect x="621.8" y="539" width="0.1" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="624.79" y="549.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (129 samples, 0.11%)</title><rect x="24.3" y="811" width="1.5" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="27.31" y="821.5" ></text>
</g>
<g >
<title>resetStringInfo (19 samples, 0.02%)</title><rect x="248.6" y="667" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="251.62" y="677.5" ></text>
</g>
<g >
<title>SearchSysCache1 (129 samples, 0.11%)</title><rect x="622.6" y="539" width="1.5" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="625.60" y="549.5" ></text>
</g>
<g >
<title>shmem_write_end (13 samples, 0.01%)</title><rect x="25.7" y="395" width="0.1" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="28.66" y="405.5" ></text>
</g>
<g >
<title>standard_ExecutorStart (12,973 samples, 10.88%)</title><rect x="532.1" y="667" width="150.1" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text  x="535.10" y="677.5" >standard_Executo..</text>
</g>
<g >
<title>heapam_index_fetch_tuple (19 samples, 0.02%)</title><rect x="21.1" y="315" width="0.2" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text  x="24.07" y="325.5" ></text>
</g>
<g >
<title>UnregisterSnapshotNoOwner (117 samples, 0.10%)</title><rect x="1202.3" y="571" width="1.4" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="1205.33" y="581.5" ></text>
</g>
<g >
<title>bms_is_member (22 samples, 0.02%)</title><rect x="635.6" y="571" width="0.3" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
<text  x="638.63" y="581.5" ></text>
</g>
<g >
<title>pg_verify_mbstr (74 samples, 0.06%)</title><rect x="714.9" y="667" width="0.9" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="717.95" y="677.5" ></text>
</g>
<g >
<title>CommitTransaction (168 samples, 0.14%)</title><rect x="1127.0" y="379" width="2.0" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text  x="1130.02" y="389.5" ></text>
</g>
<g >
<title>deleteOneObject (26 samples, 0.02%)</title><rect x="25.1" y="731" width="0.3" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text  x="28.14" y="741.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (33 samples, 0.03%)</title><rect x="922.1" y="251" width="0.4" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="925.12" y="261.5" ></text>
</g>
<g >
<title>RelationCacheInvalidateEntry (44 samples, 0.04%)</title><rect x="1276.0" y="395" width="0.5" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="1278.99" y="405.5" ></text>
</g>
<g >
<title>_raw_spin_lock_bh (99 samples, 0.08%)</title><rect x="265.7" y="507" width="1.1" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="268.70" y="517.5" ></text>
</g>
<g >
<title>ReceiveSharedInvalidMessages (1,318 samples, 1.11%)</title><rect x="642.2" y="539" width="15.2" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text  x="645.19" y="549.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (380 samples, 0.32%)</title><rect x="32.5" y="283" width="4.4" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="35.46" y="293.5" ></text>
</g>
<g >
<title>new_list (112 samples, 0.09%)</title><rect x="633.5" y="555" width="1.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="636.46" y="565.5" ></text>
</g>
<g >
<title>exec_toplevel_block (11 samples, 0.01%)</title><rect x="20.7" y="747" width="0.1" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="23.66" y="757.5" ></text>
</g>
<g >
<title>MemoryContextSetParent (13 samples, 0.01%)</title><rect x="1197.3" y="523" width="0.1" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="1200.29" y="533.5" ></text>
</g>
<g >
<title>string_hash (100 samples, 0.08%)</title><rect x="868.9" y="683" width="1.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="871.92" y="693.5" ></text>
</g>
<g >
<title>AtEOXact_Files (25 samples, 0.02%)</title><rect x="1137.2" y="667" width="0.3" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text  x="1140.20" y="677.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (375 samples, 0.31%)</title><rect x="1155.5" y="555" width="4.3" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="1158.45" y="565.5" ></text>
</g>
<g >
<title>CommandCounterIncrement (10 samples, 0.01%)</title><rect x="1389.2" y="475" width="0.2" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="1392.25" y="485.5" ></text>
</g>
<g >
<title>memcpy@plt (9 samples, 0.01%)</title><rect x="1267.9" y="699" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="1270.88" y="709.5" ></text>
</g>
<g >
<title>relation_close (13 samples, 0.01%)</title><rect x="1377.6" y="779" width="0.1" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="1380.56" y="789.5" ></text>
</g>
<g >
<title>GetCurrentTimestamp (61 samples, 0.05%)</title><rect x="1263.8" y="699" width="0.7" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="1266.84" y="709.5" ></text>
</g>
<g >
<title>CatalogCacheCompareTuple (13 samples, 0.01%)</title><rect x="623.2" y="491" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="626.25" y="501.5" ></text>
</g>
<g >
<title>_SPI_execute_plan (25 samples, 0.02%)</title><rect x="1129.0" y="427" width="0.3" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="1132.00" y="437.5" ></text>
</g>
<g >
<title>start_xact_command (29 samples, 0.02%)</title><rect x="860.2" y="715" width="0.3" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="863.16" y="725.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (9 samples, 0.01%)</title><rect x="725.1" y="539" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="728.08" y="549.5" ></text>
</g>
<g >
<title>vma_alloc_folio (11 samples, 0.01%)</title><rect x="25.5" y="331" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="28.53" y="341.5" ></text>
</g>
<g >
<title>pick_next_task_idle (13 samples, 0.01%)</title><rect x="182.1" y="491" width="0.1" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text  x="185.05" y="501.5" ></text>
</g>
<g >
<title>slot_getsomeattrs_int (305 samples, 0.26%)</title><rect x="898.2" y="411" width="3.5" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text  x="901.22" y="421.5" ></text>
</g>
<g >
<title>_bt_preprocess_array_keys (25 samples, 0.02%)</title><rect x="11.1" y="475" width="0.3" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text  x="14.11" y="485.5" ></text>
</g>
<g >
<title>tcp_release_cb (19 samples, 0.02%)</title><rect x="268.0" y="507" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="270.96" y="517.5" ></text>
</g>
<g >
<title>PushActiveSnapshotWithLevel (197 samples, 0.17%)</title><rect x="695.1" y="699" width="2.3" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text  x="698.15" y="709.5" ></text>
</g>
<g >
<title>clear_page_erms (13 samples, 0.01%)</title><rect x="25.7" y="379" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="28.66" y="389.5" ></text>
</g>
<g >
<title>heap_create_with_catalog (13 samples, 0.01%)</title><rect x="22.9" y="427" width="0.2" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" />
<text  x="25.93" y="437.5" ></text>
</g>
<g >
<title>dlist_init (10 samples, 0.01%)</title><rect x="844.8" y="635" width="0.1" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text  x="847.77" y="645.5" ></text>
</g>
<g >
<title>__new_sem_wait_slow64 (15 samples, 0.01%)</title><rect x="662.7" y="507" width="0.2" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text  x="665.69" y="517.5" ></text>
</g>
<g >
<title>PreCommit_on_commit_actions (23 samples, 0.02%)</title><rect x="1335.7" y="779" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text  x="1338.67" y="789.5" ></text>
</g>
<g >
<title>__mod_timer (10 samples, 0.01%)</title><rect x="411.9" y="443" width="0.1" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="414.88" y="453.5" ></text>
</g>
<g >
<title>PortalGetPrimaryStmt (43 samples, 0.04%)</title><rect x="848.5" y="699" width="0.5" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="851.46" y="709.5" ></text>
</g>
<g >
<title>tts_buffer_heap_clear (58 samples, 0.05%)</title><rect x="1188.3" y="523" width="0.7" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text  x="1191.29" y="533.5" ></text>
</g>
<g >
<title>enlargeStringInfo (65 samples, 0.05%)</title><rect x="241.9" y="683" width="0.7" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text  x="244.89" y="693.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (18 samples, 0.02%)</title><rect x="1206.8" y="587" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="1209.81" y="597.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (191 samples, 0.16%)</title><rect x="929.5" y="267" width="2.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="932.45" y="277.5" ></text>
</g>
<g >
<title>new_list (90 samples, 0.08%)</title><rect x="614.8" y="571" width="1.0" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="617.80" y="581.5" ></text>
</g>
<g >
<title>ReadBuffer_common (10 samples, 0.01%)</title><rect x="1337.5" y="779" width="0.1" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text  x="1340.45" y="789.5" ></text>
</g>
<g >
<title>EndImplicitTransactionBlock (18 samples, 0.02%)</title><rect x="85.5" y="731" width="0.2" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text  x="88.49" y="741.5" ></text>
</g>
<g >
<title>findDependentObjects (20 samples, 0.02%)</title><rect x="1284.4" y="715" width="0.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text  x="1287.41" y="725.5" ></text>
</g>
<g >
<title>AllocSetFree (30 samples, 0.03%)</title><rect x="1179.3" y="475" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="1182.28" y="485.5" ></text>
</g>
<g >
<title>spin_delay (106 samples, 0.09%)</title><rect x="1172.0" y="539" width="1.3" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="1175.03" y="549.5" ></text>
</g>
<g >
<title>ExprEvalPushStep (107 samples, 0.09%)</title><rect x="601.7" y="555" width="1.3" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="604.73" y="565.5" ></text>
</g>
<g >
<title>exec_stmt_block (65 samples, 0.05%)</title><rect x="79.7" y="539" width="0.8" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="82.71" y="549.5" ></text>
</g>
<g >
<title>TupleDescCompactAttr (14 samples, 0.01%)</title><rect x="999.4" y="395" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text  x="1002.39" y="405.5" ></text>
</g>
<g >
<title>DropRelationsAllBuffers (19 samples, 0.02%)</title><rect x="1128.5" y="331" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="1131.49" y="341.5" ></text>
</g>
<g >
<title>ReleaseSysCache (43 samples, 0.04%)</title><rect x="1104.6" y="571" width="0.5" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="1107.58" y="581.5" ></text>
</g>
<g >
<title>ReleaseSysCache (40 samples, 0.03%)</title><rect x="587.3" y="571" width="0.4" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="590.28" y="581.5" ></text>
</g>
<g >
<title>LWLockDisownInternal (12 samples, 0.01%)</title><rect x="1159.9" y="555" width="0.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="1162.91" y="565.5" ></text>
</g>
<g >
<title>__libc_pwrite64 (27 samples, 0.02%)</title><rect x="1272.8" y="363" width="0.3" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text  x="1275.81" y="373.5" ></text>
</g>
<g >
<title>AtEOXact_Namespace (15 samples, 0.01%)</title><rect x="1297.4" y="779" width="0.2" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="1300.40" y="789.5" ></text>
</g>
<g >
<title>ReleaseCatCache (72 samples, 0.06%)</title><rect x="542.9" y="555" width="0.8" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="545.86" y="565.5" ></text>
</g>
<g >
<title>standard_ExecutorRun (469 samples, 0.39%)</title><rect x="12.0" y="667" width="5.4" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text  x="14.99" y="677.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (33 samples, 0.03%)</title><rect x="918.5" y="363" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="921.46" y="373.5" ></text>
</g>
<g >
<title>AllocSetFreeIndex (9 samples, 0.01%)</title><rect x="597.2" y="555" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="600.20" y="565.5" ></text>
</g>
<g >
<title>cache_from_obj (17 samples, 0.01%)</title><rect x="384.7" y="331" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text  x="387.72" y="341.5" ></text>
</g>
<g >
<title>_SPI_execute_plan (27 samples, 0.02%)</title><rect x="1284.9" y="683" width="0.3" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="1287.87" y="693.5" ></text>
</g>
<g >
<title>aa_sk_perm (86 samples, 0.07%)</title><rect x="262.3" y="523" width="1.0" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text  x="265.30" y="533.5" ></text>
</g>
<g >
<title>LWLockRelease (169 samples, 0.14%)</title><rect x="492.8" y="619" width="2.0" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="495.81" y="629.5" ></text>
</g>
<g >
<title>string_compare (24 samples, 0.02%)</title><rect x="1205.6" y="603" width="0.3" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text  x="1208.65" y="613.5" ></text>
</g>
<g >
<title>LaunchMissingBackgroundProcesses (40 samples, 0.03%)</title><rect x="1268.6" y="795" width="0.5" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text  x="1271.62" y="805.5" ></text>
</g>
<g >
<title>index_open (2,734 samples, 2.29%)</title><rect x="641.2" y="603" width="31.6" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="644.21" y="613.5" >i..</text>
</g>
<g >
<title>DecrTupleDescRefCount (13 samples, 0.01%)</title><rect x="1306.6" y="779" width="0.1" height="15.0" fill="rgb(243,174,41)" rx="2" ry="2" />
<text  x="1309.57" y="789.5" ></text>
</g>
<g >
<title>SearchCatCache1 (15 samples, 0.01%)</title><rect x="26.5" y="811" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="29.51" y="821.5" ></text>
</g>
<g >
<title>CleanupTempFiles (12 samples, 0.01%)</title><rect x="1137.4" y="651" width="0.1" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text  x="1140.35" y="661.5" ></text>
</g>
<g >
<title>chareqfast (10 samples, 0.01%)</title><rect x="589.3" y="507" width="0.2" height="15.0" fill="rgb(228,110,26)" rx="2" ry="2" />
<text  x="592.34" y="517.5" ></text>
</g>
<g >
<title>AllocSetAlloc (93 samples, 0.08%)</title><rect x="596.2" y="571" width="1.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="599.23" y="581.5" ></text>
</g>
<g >
<title>FunctionCall1Coll (39 samples, 0.03%)</title><rect x="23.3" y="699" width="0.5" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="26.34" y="709.5" ></text>
</g>
<g >
<title>RelationClose (73 samples, 0.06%)</title><rect x="1177.4" y="507" width="0.9" height="15.0" fill="rgb(208,18,4)" rx="2" ry="2" />
<text  x="1180.45" y="517.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (45 samples, 0.04%)</title><rect x="16.3" y="347" width="0.5" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="19.27" y="357.5" ></text>
</g>
<g >
<title>int4hashfast (39 samples, 0.03%)</title><rect x="855.2" y="619" width="0.5" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text  x="858.21" y="629.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (53 samples, 0.04%)</title><rect x="237.9" y="571" width="0.6" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="240.87" y="581.5" ></text>
</g>
<g >
<title>_bt_preprocess_keys (26 samples, 0.02%)</title><rect x="11.1" y="491" width="0.3" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text  x="14.10" y="501.5" ></text>
</g>
<g >
<title>init_spin_delay (12 samples, 0.01%)</title><rect x="1364.0" y="779" width="0.1" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="1367.01" y="789.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (22 samples, 0.02%)</title><rect x="639.9" y="475" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="642.89" y="485.5" ></text>
</g>
<g >
<title>hash_seq_term (33 samples, 0.03%)</title><rect x="1214.6" y="651" width="0.4" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="1217.61" y="661.5" ></text>
</g>
<g >
<title>ExecInitExprRec (98 samples, 0.08%)</title><rect x="580.7" y="571" width="1.1" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text  x="583.68" y="581.5" ></text>
</g>
<g >
<title>__strlen_evex (43 samples, 0.04%)</title><rect x="1125.8" y="683" width="0.5" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="1128.83" y="693.5" ></text>
</g>
<g >
<title>StmtPlanRequiresRevalidation (19 samples, 0.02%)</title><rect x="1346.8" y="779" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="1349.79" y="789.5" ></text>
</g>
<g >
<title>_bt_checkpage (356 samples, 0.30%)</title><rect x="1076.9" y="411" width="4.1" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="1079.90" y="421.5" ></text>
</g>
<g >
<title>StartTransactionCommand (14 samples, 0.01%)</title><rect x="1268.9" y="683" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="1271.91" y="693.5" ></text>
</g>
<g >
<title>ShowTransactionState (35 samples, 0.03%)</title><rect x="845.2" y="667" width="0.4" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="848.21" y="677.5" ></text>
</g>
<g >
<title>AllocSetFree (26 samples, 0.02%)</title><rect x="692.3" y="667" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="695.25" y="677.5" ></text>
</g>
<g >
<title>fmgr_info (84 samples, 0.07%)</title><rect x="516.5" y="699" width="0.9" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="519.46" y="709.5" ></text>
</g>
<g >
<title>EndImplicitTransactionBlock (28 samples, 0.02%)</title><rect x="1306.8" y="779" width="0.3" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text  x="1309.82" y="789.5" ></text>
</g>
<g >
<title>update_sd_lb_stats.constprop.0 (1,922 samples, 1.61%)</title><rect x="156.9" y="427" width="22.3" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text  x="159.94" y="437.5" ></text>
</g>
<g >
<title>ExecutePlan (469 samples, 0.39%)</title><rect x="12.0" y="651" width="5.4" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text  x="14.99" y="661.5" ></text>
</g>
<g >
<title>AllocSetAlloc (34 samples, 0.03%)</title><rect x="555.2" y="507" width="0.4" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="558.16" y="517.5" ></text>
</g>
<g >
<title>RemoveRelations (35 samples, 0.03%)</title><rect x="1283.3" y="491" width="0.4" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text  x="1286.27" y="501.5" ></text>
</g>
<g >
<title>FreeExecutorState (13 samples, 0.01%)</title><rect x="1314.1" y="779" width="0.2" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="1317.15" y="789.5" ></text>
</g>
<g >
<title>__alloc_pages (286 samples, 0.24%)</title><rect x="1277.4" y="75" width="3.4" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text  x="1280.44" y="85.5" ></text>
</g>
<g >
<title>ReadBuffer (1,780 samples, 1.49%)</title><rect x="919.1" y="427" width="20.6" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="922.12" y="437.5" ></text>
</g>
<g >
<title>AtEOXact_Files (29 samples, 0.02%)</title><rect x="1295.2" y="779" width="0.3" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text  x="1298.17" y="789.5" ></text>
</g>
<g >
<title>[[vdso]] (26 samples, 0.02%)</title><rect x="1122.6" y="667" width="0.3" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="1125.64" y="677.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (27 samples, 0.02%)</title><rect x="847.0" y="619" width="0.4" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="850.04" y="629.5" ></text>
</g>
<g >
<title>heapam_index_fetch_end (23 samples, 0.02%)</title><rect x="1362.1" y="779" width="0.2" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text  x="1365.07" y="789.5" ></text>
</g>
<g >
<title>IndexNext (577 samples, 0.48%)</title><rect x="878.1" y="539" width="6.7" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="881.11" y="549.5" ></text>
</g>
<g >
<title>__tcp_cleanup_rbuf (38 samples, 0.03%)</title><rect x="213.4" y="507" width="0.4" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text  x="216.39" y="517.5" ></text>
</g>
<g >
<title>LWLockWakeup (18 samples, 0.02%)</title><rect x="1232.7" y="571" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="1235.69" y="581.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (132 samples, 0.11%)</title><rect x="14.7" y="331" width="1.6" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="17.74" y="341.5" ></text>
</g>
<g >
<title>idle_cpu (241 samples, 0.20%)</title><rect x="176.4" y="411" width="2.8" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text  x="179.39" y="421.5" ></text>
</g>
<g >
<title>MemoryChunkSetHdrMask (16 samples, 0.01%)</title><rect x="598.2" y="539" width="0.2" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="601.19" y="549.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (46 samples, 0.04%)</title><rect x="1389.1" y="555" width="0.5" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="1392.10" y="565.5" ></text>
</g>
<g >
<title>LWLockAcquire (690 samples, 0.58%)</title><rect x="58.2" y="299" width="7.9" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="61.16" y="309.5" ></text>
</g>
<g >
<title>hash_bytes (141 samples, 0.12%)</title><rect x="499.0" y="587" width="1.6" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="501.96" y="597.5" ></text>
</g>
<g >
<title>list_nth_cell (11 samples, 0.01%)</title><rect x="554.3" y="539" width="0.1" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text  x="557.27" y="549.5" ></text>
</g>
<g >
<title>AllocSetAllocLarge (169 samples, 0.14%)</title><rect x="909.9" y="427" width="2.0" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="912.93" y="437.5" ></text>
</g>
<g >
<title>standard_ExecutorFinish (80 samples, 0.07%)</title><rect x="1200.3" y="587" width="0.9" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="1203.30" y="597.5" ></text>
</g>
<g >
<title>tcp_update_skb_after_send (77 samples, 0.06%)</title><rect x="404.5" y="459" width="0.9" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="407.52" y="469.5" ></text>
</g>
<g >
<title>LockAcquireExtended (90 samples, 0.08%)</title><rect x="21.5" y="395" width="1.0" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="24.49" y="405.5" ></text>
</g>
<g >
<title>ReadBuffer (54 samples, 0.05%)</title><rect x="16.8" y="411" width="0.6" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="19.79" y="421.5" ></text>
</g>
<g >
<title>jit_compile_expr (13 samples, 0.01%)</title><rect x="582.6" y="555" width="0.2" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="585.64" y="565.5" ></text>
</g>
<g >
<title>ReadBuffer (40 samples, 0.03%)</title><rect x="1059.7" y="395" width="0.5" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="1062.74" y="405.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (81 samples, 0.07%)</title><rect x="1271.8" y="443" width="0.9" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="1274.77" y="453.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (196 samples, 0.16%)</title><rect x="505.2" y="635" width="2.3" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="508.22" y="645.5" ></text>
</g>
<g >
<title>__x64_sys_epoll_wait (7,297 samples, 6.12%)</title><rect x="104.5" y="571" width="84.4" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text  x="107.50" y="581.5" >__x64_sy..</text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (112 samples, 0.09%)</title><rect x="32.7" y="267" width="1.3" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="35.68" y="277.5" ></text>
</g>
<g >
<title>SPI_execute_plan_with_paramlist (39 samples, 0.03%)</title><rect x="23.3" y="555" width="0.5" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="26.34" y="565.5" ></text>
</g>
<g >
<title>copy_user_enhanced_fast_string (21 samples, 0.02%)</title><rect x="221.8" y="459" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="224.78" y="469.5" ></text>
</g>
<g >
<title>_bt_getbuf (11 samples, 0.01%)</title><rect x="11.4" y="459" width="0.1" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="14.40" y="469.5" ></text>
</g>
<g >
<title>CStringGetDatum (11 samples, 0.01%)</title><rect x="1303.1" y="779" width="0.2" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text  x="1306.14" y="789.5" ></text>
</g>
<g >
<title>pgstat_count_backend_io_op (54 samples, 0.05%)</title><rect x="48.4" y="299" width="0.6" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text  x="51.36" y="309.5" ></text>
</g>
<g >
<title>load_balance (2,024 samples, 1.70%)</title><rect x="155.8" y="459" width="23.4" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text  x="158.76" y="469.5" ></text>
</g>
<g >
<title>sched_clock_cpu (59 samples, 0.05%)</title><rect x="186.2" y="459" width="0.7" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="189.22" y="469.5" ></text>
</g>
<g >
<title>standard_ExecutorRun (21,015 samples, 17.62%)</title><rect x="874.4" y="651" width="243.2" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text  x="877.41" y="661.5" >standard_ExecutorRun</text>
</g>
<g >
<title>AllocSetAlloc (305 samples, 0.26%)</title><rect x="1113.8" y="571" width="3.5" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1116.76" y="581.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (25 samples, 0.02%)</title><rect x="25.5" y="507" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="28.52" y="517.5" ></text>
</g>
<g >
<title>LocalExecuteInvalidationMessage (44 samples, 0.04%)</title><rect x="1276.0" y="411" width="0.5" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="1278.99" y="421.5" ></text>
</g>
<g >
<title>SPI_execute_plan_with_paramlist (211 samples, 0.18%)</title><rect x="20.9" y="539" width="2.4" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="23.90" y="549.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (156 samples, 0.13%)</title><rect x="718.3" y="683" width="1.8" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="721.34" y="693.5" ></text>
</g>
<g >
<title>PageGetPageSize (11 samples, 0.01%)</title><rect x="1060.5" y="363" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="1063.51" y="373.5" ></text>
</g>
<g >
<title>IndexNext (85 samples, 0.07%)</title><rect x="1387.1" y="555" width="1.0" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="1390.13" y="565.5" ></text>
</g>
<g >
<title>_raw_write_lock_irq (49 samples, 0.04%)</title><rect x="116.0" y="523" width="0.5" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="118.96" y="533.5" ></text>
</g>
<g >
<title>systable_getnext (19 samples, 0.02%)</title><rect x="1284.4" y="683" width="0.2" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="1287.42" y="693.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (11 samples, 0.01%)</title><rect x="1348.6" y="779" width="0.1" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text  x="1351.58" y="789.5" ></text>
</g>
<g >
<title>murmurhash32 (33 samples, 0.03%)</title><rect x="855.3" y="603" width="0.4" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="858.28" y="613.5" ></text>
</g>
<g >
<title>GetMemoryChunkMethodID (17 samples, 0.01%)</title><rect x="1123.8" y="683" width="0.2" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text  x="1126.80" y="693.5" ></text>
</g>
<g >
<title>BufferGetBlock (12 samples, 0.01%)</title><rect x="1065.1" y="395" width="0.1" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="1068.06" y="405.5" ></text>
</g>
<g >
<title>smgr_bulk_flush (451 samples, 0.38%)</title><rect x="1277.2" y="395" width="5.3" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text  x="1280.24" y="405.5" ></text>
</g>
<g >
<title>expr_setup_walker (21 samples, 0.02%)</title><rect x="568.0" y="459" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="570.96" y="469.5" ></text>
</g>
<g >
<title>PageIsNew (15 samples, 0.01%)</title><rect x="1060.6" y="379" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="1063.64" y="389.5" ></text>
</g>
<g >
<title>ReadBufferExtended (2,653 samples, 2.22%)</title><rect x="49.0" y="395" width="30.7" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text  x="52.01" y="405.5" >R..</text>
</g>
<g >
<title>__libc_recv (3,764 samples, 3.16%)</title><rect x="195.8" y="635" width="43.5" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text  x="198.77" y="645.5" >__l..</text>
</g>
<g >
<title>ResourceOwnerNewParent (16 samples, 0.01%)</title><rect x="1217.7" y="635" width="0.2" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text  x="1220.70" y="645.5" ></text>
</g>
<g >
<title>tcp_options_write (36 samples, 0.03%)</title><rect x="403.7" y="459" width="0.4" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="406.65" y="469.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (46 samples, 0.04%)</title><rect x="846.8" y="635" width="0.6" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="849.82" y="645.5" ></text>
</g>
<g >
<title>standard_ExecutorRun@plt (19 samples, 0.02%)</title><rect x="1117.6" y="651" width="0.2" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text  x="1120.59" y="661.5" ></text>
</g>
<g >
<title>palloc0 (194 samples, 0.16%)</title><rect x="610.0" y="555" width="2.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="613.01" y="565.5" ></text>
</g>
<g >
<title>CatalogCacheCompareTuple (13 samples, 0.01%)</title><rect x="1106.1" y="523" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="1109.14" y="533.5" ></text>
</g>
<g >
<title>tcp_event_new_data_sent (359 samples, 0.30%)</title><rect x="407.2" y="475" width="4.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="410.22" y="485.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (10 samples, 0.01%)</title><rect x="1283.6" y="379" width="0.1" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="1286.56" y="389.5" ></text>
</g>
<g >
<title>UnregisterSnapshotFromOwner (80 samples, 0.07%)</title><rect x="1198.2" y="555" width="0.9" height="15.0" fill="rgb(223,87,20)" rx="2" ry="2" />
<text  x="1201.20" y="565.5" ></text>
</g>
<g >
<title>get_rightop (17 samples, 0.01%)</title><rect x="592.0" y="587" width="0.2" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text  x="594.96" y="597.5" ></text>
</g>
<g >
<title>pg_utf8_verifystr (44 samples, 0.04%)</title><rect x="715.3" y="651" width="0.5" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text  x="718.29" y="661.5" ></text>
</g>
<g >
<title>AtEOXact_ApplyLauncher (13 samples, 0.01%)</title><rect x="1136.8" y="667" width="0.2" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="1139.81" y="677.5" ></text>
</g>
<g >
<title>_bt_search (11 samples, 0.01%)</title><rect x="1284.5" y="603" width="0.1" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text  x="1287.51" y="613.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (14 samples, 0.01%)</title><rect x="705.2" y="667" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="708.22" y="677.5" ></text>
</g>
<g >
<title>TupleDescInitEntry (587 samples, 0.49%)</title><rect x="620.4" y="555" width="6.8" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="623.40" y="565.5" ></text>
</g>
<g >
<title>register_seq_scan (12 samples, 0.01%)</title><rect x="1245.2" y="587" width="0.1" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text  x="1248.19" y="597.5" ></text>
</g>
<g >
<title>hash_search (447 samples, 0.37%)</title><rect x="1233.7" y="587" width="5.2" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="1236.70" y="597.5" ></text>
</g>
<g >
<title>ExecCreateExprSetupSteps (547 samples, 0.46%)</title><rect x="562.3" y="539" width="6.3" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text  x="565.31" y="549.5" ></text>
</g>
<g >
<title>MemoryContextReset (124 samples, 0.10%)</title><rect x="1135.0" y="651" width="1.4" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="1138.01" y="661.5" ></text>
</g>
<g >
<title>deregister_seq_scan (15 samples, 0.01%)</title><rect x="1249.4" y="571" width="0.2" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text  x="1252.38" y="581.5" ></text>
</g>
<g >
<title>FunctionCall2Coll (46 samples, 0.04%)</title><rect x="1314.6" y="779" width="0.6" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="1317.63" y="789.5" ></text>
</g>
<g >
<title>_bt_freestack (96 samples, 0.08%)</title><rect x="1000.3" y="443" width="1.1" height="15.0" fill="rgb(253,225,53)" rx="2" ry="2" />
<text  x="1003.31" y="453.5" ></text>
</g>
<g >
<title>MemoryContextCallResetCallbacks (20 samples, 0.02%)</title><rect x="1191.6" y="507" width="0.2" height="15.0" fill="rgb(218,59,14)" rx="2" ry="2" />
<text  x="1194.59" y="517.5" ></text>
</g>
<g >
<title>tts_buffer_heap_store_tuple (131 samples, 0.11%)</title><rect x="915.2" y="427" width="1.6" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text  x="918.24" y="437.5" ></text>
</g>
<g >
<title>__sigsetjmp@plt (17 samples, 0.01%)</title><rect x="874.2" y="651" width="0.2" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text  x="877.20" y="661.5" ></text>
</g>
<g >
<title>exec_describe_portal_message (1,092 samples, 0.92%)</title><rect x="847.9" y="731" width="12.6" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text  x="850.86" y="741.5" ></text>
</g>
<g >
<title>RelationFlushRelation (12 samples, 0.01%)</title><rect x="18.3" y="667" width="0.1" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="21.26" y="677.5" ></text>
</g>
<g >
<title>bms_copy (26 samples, 0.02%)</title><rect x="1352.1" y="779" width="0.3" height="15.0" fill="rgb(208,13,3)" rx="2" ry="2" />
<text  x="1355.09" y="789.5" ></text>
</g>
<g >
<title>smgrGetPendingDeletes (20 samples, 0.02%)</title><rect x="1216.8" y="651" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text  x="1219.77" y="661.5" ></text>
</g>
<g >
<title>deleteOneObject (14 samples, 0.01%)</title><rect x="23.1" y="379" width="0.1" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text  x="26.08" y="389.5" ></text>
</g>
<g >
<title>MakeTupleTableSlot (295 samples, 0.25%)</title><rect x="629.8" y="571" width="3.4" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text  x="632.75" y="581.5" ></text>
</g>
<g >
<title>PortalRun (81 samples, 0.07%)</title><rect x="1271.8" y="795" width="0.9" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="1274.77" y="805.5" ></text>
</g>
<g >
<title>sk_reset_timer (130 samples, 0.11%)</title><rect x="323.6" y="219" width="1.5" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text  x="326.64" y="229.5" ></text>
</g>
<g >
<title>ktime_get (38 samples, 0.03%)</title><rect x="405.8" y="475" width="0.4" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="408.78" y="485.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (35 samples, 0.03%)</title><rect x="918.4" y="379" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="921.44" y="389.5" ></text>
</g>
<g >
<title>_SPI_execute_plan (81 samples, 0.07%)</title><rect x="1271.8" y="507" width="0.9" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="1274.77" y="517.5" ></text>
</g>
<g >
<title>__tcp_transmit_skb (11,142 samples, 9.34%)</title><rect x="276.8" y="475" width="129.0" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="279.84" y="485.5" >__tcp_transmi..</text>
</g>
<g >
<title>CreateQueryDesc (275 samples, 0.23%)</title><rect x="523.0" y="699" width="3.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="525.98" y="709.5" ></text>
</g>
<g >
<title>plpgsql_inline_handler (15 samples, 0.01%)</title><rect x="23.8" y="699" width="0.2" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="26.79" y="709.5" ></text>
</g>
<g >
<title>socket_putmessage (74 samples, 0.06%)</title><rect x="867.0" y="699" width="0.8" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text  x="869.96" y="709.5" ></text>
</g>
<g >
<title>skb_release_data (264 samples, 0.22%)</title><rect x="385.7" y="331" width="3.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="388.71" y="341.5" ></text>
</g>
<g >
<title>pgss_ExecutorRun (4,568 samples, 3.83%)</title><rect x="26.8" y="683" width="52.9" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="29.85" y="693.5" >pgss..</text>
</g>
<g >
<title>postmaster_child_launch (89 samples, 0.07%)</title><rect x="1387.1" y="811" width="1.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="1390.13" y="821.5" ></text>
</g>
<g >
<title>_bt_getroot (225 samples, 0.19%)</title><rect x="1058.8" y="427" width="2.7" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text  x="1061.85" y="437.5" ></text>
</g>
<g >
<title>should_output_to_server (13 samples, 0.01%)</title><rect x="845.5" y="635" width="0.1" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="848.46" y="645.5" ></text>
</g>
<g >
<title>GetPrivateRefCountEntry (22 samples, 0.02%)</title><rect x="1074.5" y="363" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="1077.48" y="373.5" ></text>
</g>
<g >
<title>ReadBufferExtended (34 samples, 0.03%)</title><rect x="1071.9" y="379" width="0.4" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text  x="1074.87" y="389.5" ></text>
</g>
<g >
<title>AtEOXact_SPI (20 samples, 0.02%)</title><rect x="1141.8" y="667" width="0.2" height="15.0" fill="rgb(216,50,12)" rx="2" ry="2" />
<text  x="1144.76" y="677.5" ></text>
</g>
<g >
<title>pq_recvbuf (12,527 samples, 10.50%)</title><rect x="94.7" y="683" width="144.9" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text  x="97.66" y="693.5" >pq_recvbuf</text>
</g>
<g >
<title>tcp_small_queue_check.isra.0 (34 samples, 0.03%)</title><rect x="412.0" y="475" width="0.4" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text  x="415.01" y="485.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (46 samples, 0.04%)</title><rect x="1389.1" y="571" width="0.5" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="1392.10" y="581.5" ></text>
</g>
<g >
<title>AtEOXact_ComboCid (26 samples, 0.02%)</title><rect x="1294.5" y="779" width="0.3" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text  x="1297.45" y="789.5" ></text>
</g>
<g >
<title>list_last_cell (10 samples, 0.01%)</title><rect x="633.3" y="555" width="0.2" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text  x="636.34" y="565.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (93 samples, 0.08%)</title><rect x="928.4" y="283" width="1.0" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="931.36" y="293.5" ></text>
</g>
<g >
<title>shmem_alloc_and_acct_folio (11 samples, 0.01%)</title><rect x="25.5" y="363" width="0.2" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text  x="28.53" y="373.5" ></text>
</g>
<g >
<title>hash_initial_lookup (37 samples, 0.03%)</title><rect x="450.0" y="651" width="0.4" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="453.01" y="661.5" ></text>
</g>
<g >
<title>AllocSetContextCreateInternal (165 samples, 0.14%)</title><rect x="551.8" y="555" width="1.9" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text  x="554.84" y="565.5" ></text>
</g>
<g >
<title>shmem_alloc_hugefolio (287 samples, 0.24%)</title><rect x="1277.4" y="123" width="3.4" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text  x="1280.43" y="133.5" ></text>
</g>
<g >
<title>ReadBufferExtended (36 samples, 0.03%)</title><rect x="1059.8" y="379" width="0.4" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text  x="1062.79" y="389.5" ></text>
</g>
<g >
<title>GetPortalByName (31 samples, 0.03%)</title><rect x="1317.6" y="779" width="0.4" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text  x="1320.61" y="789.5" ></text>
</g>
<g >
<title>RelationCacheInvalidateEntry (23 samples, 0.02%)</title><rect x="24.5" y="683" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="27.48" y="693.5" ></text>
</g>
<g >
<title>pgstat_count_io_op (84 samples, 0.07%)</title><rect x="78.7" y="315" width="1.0" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="81.69" y="325.5" ></text>
</g>
<g >
<title>CommandEndInvalidationMessages (18 samples, 0.02%)</title><rect x="25.1" y="683" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="28.14" y="693.5" ></text>
</g>
<g >
<title>stack_is_too_deep (17 samples, 0.01%)</title><rect x="1381.6" y="779" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="1384.55" y="789.5" ></text>
</g>
<g >
<title>_int_free (27 samples, 0.02%)</title><rect x="1385.6" y="779" width="0.3" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text  x="1388.58" y="789.5" ></text>
</g>
<g >
<title>pgstat_report_wait_start (18 samples, 0.02%)</title><rect x="1373.6" y="779" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="1376.57" y="789.5" ></text>
</g>
<g >
<title>GetMemoryChunkMethodID (55 samples, 0.05%)</title><rect x="1316.9" y="779" width="0.7" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text  x="1319.95" y="789.5" ></text>
</g>
<g >
<title>CommandCounterIncrement (44 samples, 0.04%)</title><rect x="1276.0" y="475" width="0.5" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="1278.99" y="485.5" ></text>
</g>
<g >
<title>exec_stmt_fori (39 samples, 0.03%)</title><rect x="23.3" y="603" width="0.5" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text  x="26.34" y="613.5" ></text>
</g>
<g >
<title>GetCurrentTransactionNestLevel (9 samples, 0.01%)</title><rect x="695.0" y="699" width="0.1" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text  x="698.03" y="709.5" ></text>
</g>
<g >
<title>_int_free (9 samples, 0.01%)</title><rect x="1351.7" y="779" width="0.1" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text  x="1354.74" y="789.5" ></text>
</g>
<g >
<title>DefineIndex (16 samples, 0.01%)</title><rect x="24.0" y="491" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="27.04" y="501.5" ></text>
</g>
<g >
<title>dispatch_compare_ptr (11 samples, 0.01%)</title><rect x="1386.1" y="795" width="0.1" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text  x="1389.07" y="805.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (18 samples, 0.02%)</title><rect x="1242.0" y="539" width="0.3" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="1245.04" y="549.5" ></text>
</g>
<g >
<title>bpf_lsm_socket_sendmsg (20 samples, 0.02%)</title><rect x="263.4" y="523" width="0.2" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text  x="266.35" y="533.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (10 samples, 0.01%)</title><rect x="564.5" y="459" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="567.51" y="469.5" ></text>
</g>
<g >
<title>set_task_cpu (175 samples, 0.15%)</title><rect x="336.7" y="139" width="2.0" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="339.71" y="149.5" ></text>
</g>
<g >
<title>SPI_execute_plan_with_paramlist (47 samples, 0.04%)</title><rect x="1272.7" y="731" width="0.6" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="1275.71" y="741.5" ></text>
</g>
<g >
<title>IncrBufferRefCount (71 samples, 0.06%)</title><rect x="915.9" y="411" width="0.8" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="918.90" y="421.5" ></text>
</g>
<g >
<title>GetDatabaseEncoding@plt (10 samples, 0.01%)</title><rect x="1154.8" y="571" width="0.1" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text  x="1157.83" y="581.5" ></text>
</g>
<g >
<title>PageGetLSN (17 samples, 0.01%)</title><rect x="1331.7" y="779" width="0.2" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text  x="1334.68" y="789.5" ></text>
</g>
<g >
<title>BackendMain (477 samples, 0.40%)</title><rect x="12.0" y="779" width="5.5" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text  x="14.99" y="789.5" ></text>
</g>
<g >
<title>ReleaseCatCacheWithOwner (64 samples, 0.05%)</title><rect x="542.9" y="539" width="0.8" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text  x="545.94" y="549.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (25 samples, 0.02%)</title><rect x="475.4" y="555" width="0.3" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="478.37" y="565.5" ></text>
</g>
<g >
<title>heapam_index_fetch_reset (23 samples, 0.02%)</title><rect x="1362.3" y="779" width="0.3" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text  x="1365.33" y="789.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (129 samples, 0.11%)</title><rect x="37.3" y="251" width="1.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="40.25" y="261.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (29 samples, 0.02%)</title><rect x="931.8" y="299" width="0.3" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="934.77" y="309.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (17 samples, 0.01%)</title><rect x="525.9" y="651" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="528.91" y="661.5" ></text>
</g>
<g >
<title>internal_putbytes (66 samples, 0.06%)</title><rect x="1099.4" y="571" width="0.8" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="1102.44" y="581.5" ></text>
</g>
<g >
<title>_bt_getbuf (49 samples, 0.04%)</title><rect x="1387.5" y="443" width="0.6" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="1390.55" y="453.5" ></text>
</g>
<g >
<title>AutoVacLauncherMain (12 samples, 0.01%)</title><rect x="1268.6" y="747" width="0.2" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text  x="1271.62" y="757.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (196 samples, 0.16%)</title><rect x="1127.0" y="635" width="2.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="1130.02" y="645.5" ></text>
</g>
<g >
<title>ExecutePlan (72 samples, 0.06%)</title><rect x="11.1" y="683" width="0.8" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text  x="14.10" y="693.5" ></text>
</g>
<g >
<title>newidle_balance (2,591 samples, 2.17%)</title><rect x="152.1" y="475" width="30.0" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="155.07" y="485.5" >n..</text>
</g>
<g >
<title>ProcessUtilitySlow (15 samples, 0.01%)</title><rect x="23.8" y="491" width="0.2" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="26.79" y="501.5" ></text>
</g>
<g >
<title>RelationIncrementReferenceCount (54 samples, 0.05%)</title><rect x="904.7" y="475" width="0.6" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="907.65" y="485.5" ></text>
</g>
<g >
<title>all (119,255 samples, 100%)</title><rect x="10.0" y="827" width="1380.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text  x="13.00" y="837.5" ></text>
</g>
<g >
<title>SPI_execute_plan_with_paramlist (15 samples, 0.01%)</title><rect x="19.2" y="635" width="0.1" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="22.15" y="645.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (35 samples, 0.03%)</title><rect x="568.2" y="491" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="571.20" y="501.5" ></text>
</g>
<g >
<title>ExecutorRun (21,144 samples, 17.73%)</title><rect x="873.1" y="683" width="244.7" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text  x="876.14" y="693.5" >ExecutorRun</text>
</g>
<g >
<title>AtCCI_LocalCache (18 samples, 0.02%)</title><rect x="25.1" y="699" width="0.2" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text  x="28.14" y="709.5" ></text>
</g>
<g >
<title>btendscan (336 samples, 0.28%)</title><rect x="1180.8" y="507" width="3.9" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="1183.79" y="517.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (18 samples, 0.02%)</title><rect x="203.3" y="523" width="0.2" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text  x="206.32" y="533.5" ></text>
</g>
<g >
<title>btbeginscan (578 samples, 0.48%)</title><rect x="905.3" y="475" width="6.7" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text  x="908.29" y="485.5" ></text>
</g>
<g >
<title>finish_task_switch.isra.0 (40 samples, 0.03%)</title><rect x="150.9" y="491" width="0.5" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text  x="153.93" y="501.5" ></text>
</g>
<g >
<title>AtCCI_LocalCache (12 samples, 0.01%)</title><rect x="18.3" y="747" width="0.1" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text  x="21.26" y="757.5" ></text>
</g>
<g >
<title>AllocSetFree (51 samples, 0.04%)</title><rect x="1110.8" y="603" width="0.6" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="1113.84" y="613.5" ></text>
</g>
<g >
<title>do_syscall_64 (9 samples, 0.01%)</title><rect x="492.7" y="539" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="495.66" y="549.5" ></text>
</g>
<g >
<title>AllocSetAlloc (41 samples, 0.03%)</title><rect x="531.4" y="635" width="0.5" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="534.39" y="645.5" ></text>
</g>
<g >
<title>__memcpy_evex_unaligned_erms (16 samples, 0.01%)</title><rect x="1003.0" y="427" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="1005.97" y="437.5" ></text>
</g>
<g >
<title>ReadBuffer (35 samples, 0.03%)</title><rect x="11.5" y="443" width="0.4" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="14.53" y="453.5" ></text>
</g>
<g >
<title>ExecAllocTableSlot (236 samples, 0.20%)</title><rect x="573.5" y="555" width="2.8" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text  x="576.53" y="565.5" ></text>
</g>
<g >
<title>InitBufferTag (75 samples, 0.06%)</title><rect x="57.3" y="299" width="0.9" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text  x="60.29" y="309.5" ></text>
</g>
<g >
<title>resetStringInfo (19 samples, 0.02%)</title><rect x="1117.3" y="587" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="1120.30" y="597.5" ></text>
</g>
<g >
<title>ExecDropStmt (37 samples, 0.03%)</title><rect x="1272.3" y="427" width="0.4" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="1275.27" y="437.5" ></text>
</g>
<g >
<title>mdextend (442 samples, 0.37%)</title><rect x="1277.3" y="363" width="5.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text  x="1280.35" y="373.5" ></text>
</g>
<g >
<title>memset@plt (28 samples, 0.02%)</title><rect x="500.6" y="619" width="0.3" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="503.59" y="629.5" ></text>
</g>
<g >
<title>exec_stmt_block (15 samples, 0.01%)</title><rect x="19.2" y="715" width="0.1" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="22.15" y="725.5" ></text>
</g>
<g >
<title>AllocSetAlloc (20 samples, 0.02%)</title><rect x="694.2" y="651" width="0.3" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="697.24" y="661.5" ></text>
</g>
<g >
<title>vfs_write (440 samples, 0.37%)</title><rect x="1277.4" y="235" width="5.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="1280.36" y="245.5" ></text>
</g>
<g >
<title>errstart (22 samples, 0.02%)</title><rect x="1355.8" y="779" width="0.3" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="1358.81" y="789.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (23 samples, 0.02%)</title><rect x="451.1" y="635" width="0.3" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="454.10" y="645.5" ></text>
</g>
<g >
<title>ExecInitRangeTable (142 samples, 0.12%)</title><rect x="678.7" y="635" width="1.6" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="681.70" y="645.5" ></text>
</g>
<g >
<title>ReleaseCatCacheWithOwner (30 samples, 0.03%)</title><rect x="592.7" y="539" width="0.3" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text  x="595.65" y="549.5" ></text>
</g>
<g >
<title>__new_sem_post (10 samples, 0.01%)</title><rect x="1232.8" y="539" width="0.1" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text  x="1235.78" y="549.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (5,061 samples, 4.24%)</title><rect x="130.3" y="539" width="58.6" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="133.35" y="549.5" >sched..</text>
</g>
<g >
<title>PGSemaphoreLock (18 samples, 0.02%)</title><rect x="1232.1" y="587" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text  x="1235.09" y="597.5" ></text>
</g>
<g >
<title>PageGetItemId (40 samples, 0.03%)</title><rect x="1052.7" y="395" width="0.4" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text  x="1055.67" y="405.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (23 samples, 0.02%)</title><rect x="24.0" y="507" width="0.3" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="27.01" y="517.5" ></text>
</g>
<g >
<title>validate_xmit_skb (241 samples, 0.20%)</title><rect x="394.7" y="411" width="2.7" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text  x="397.66" y="421.5" ></text>
</g>
<g >
<title>__inet_lookup_established (376 samples, 0.32%)</title><rect x="311.0" y="251" width="4.4" height="15.0" fill="rgb(222,79,19)" rx="2" ry="2" />
<text  x="314.03" y="261.5" ></text>
</g>
<g >
<title>RelationFlushRelation (21 samples, 0.02%)</title><rect x="1274.1" y="731" width="0.2" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="1277.05" y="741.5" ></text>
</g>
<g >
<title>ExecReadyExpr (83 samples, 0.07%)</title><rect x="581.8" y="571" width="1.0" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text  x="584.83" y="581.5" ></text>
</g>
<g >
<title>enable_statement_timeout (20 samples, 0.02%)</title><rect x="860.3" y="699" width="0.2" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="863.26" y="709.5" ></text>
</g>
<g >
<title>PortalRunUtility (15 samples, 0.01%)</title><rect x="23.8" y="811" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="26.79" y="821.5" ></text>
</g>
<g >
<title>plpgsql_exec_function (39 samples, 0.03%)</title><rect x="23.3" y="667" width="0.5" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text  x="26.34" y="677.5" ></text>
</g>
<g >
<title>BackendStartup (477 samples, 0.40%)</title><rect x="12.0" y="811" width="5.5" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="14.99" y="821.5" ></text>
</g>
<g >
<title>LockBuffer (26 samples, 0.02%)</title><rect x="1325.4" y="779" width="0.3" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text  x="1328.43" y="789.5" ></text>
</g>
<g >
<title>ExecDropStmt (23 samples, 0.02%)</title><rect x="23.1" y="443" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="26.08" y="453.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (83 samples, 0.07%)</title><rect x="910.9" y="411" width="1.0" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="913.91" y="421.5" ></text>
</g>
<g >
<title>int4hashfast (12 samples, 0.01%)</title><rect x="545.2" y="507" width="0.1" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text  x="548.17" y="517.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (23 samples, 0.02%)</title><rect x="1061.2" y="347" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="1064.16" y="357.5" ></text>
</g>
<g >
<title>__raise_softirq_irqoff (15 samples, 0.01%)</title><rect x="391.4" y="331" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="394.42" y="341.5" ></text>
</g>
<g >
<title>ExecInitNode (20 samples, 0.02%)</title><rect x="1309.5" y="779" width="0.2" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="1312.52" y="789.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (166 samples, 0.14%)</title><rect x="330.7" y="139" width="1.9" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text  x="333.73" y="149.5" ></text>
</g>
<g >
<title>__memcpy_evex_unaligned_erms (24 samples, 0.02%)</title><rect x="717.5" y="667" width="0.3" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="720.50" y="677.5" ></text>
</g>
<g >
<title>exec_toplevel_block (11 samples, 0.01%)</title><rect x="19.4" y="763" width="0.1" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="22.38" y="773.5" ></text>
</g>
<g >
<title>RelationRebuildRelation (22 samples, 0.02%)</title><rect x="1277.0" y="347" width="0.2" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text  x="1279.99" y="357.5" ></text>
</g>
<g >
<title>LWLockRelease (162 samples, 0.14%)</title><rect x="36.9" y="299" width="1.8" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="39.87" y="309.5" ></text>
</g>
<g >
<title>RecordTransactionCommit (131 samples, 0.11%)</title><rect x="1215.9" y="667" width="1.5" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text  x="1218.86" y="677.5" ></text>
</g>
<g >
<title>AllocSetFree (22 samples, 0.02%)</title><rect x="1203.9" y="587" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="1206.92" y="597.5" ></text>
</g>
<g >
<title>ProcessUtility (39 samples, 0.03%)</title><rect x="23.3" y="779" width="0.5" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="26.34" y="789.5" ></text>
</g>
<g >
<title>tcp_ack (2,486 samples, 2.08%)</title><rect x="344.5" y="219" width="28.8" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text  x="347.51" y="229.5" >t..</text>
</g>
<g >
<title>InsertPgClassTuple (19 samples, 0.02%)</title><rect x="1276.5" y="475" width="0.2" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text  x="1279.53" y="485.5" ></text>
</g>
<g >
<title>SPI_execute_plan_with_paramlist (23 samples, 0.02%)</title><rect x="24.0" y="587" width="0.3" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="27.01" y="597.5" ></text>
</g>
<g >
<title>skb_release_data (544 samples, 0.46%)</title><rect x="357.6" y="187" width="6.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="360.62" y="197.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (65 samples, 0.05%)</title><rect x="696.7" y="683" width="0.7" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="699.67" y="693.5" ></text>
</g>
<g >
<title>tcp_v4_do_rcv (5,270 samples, 4.42%)</title><rect x="318.0" y="251" width="61.0" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="321.04" y="261.5" >tcp_v..</text>
</g>
<g >
<title>GetMemoryChunkMethodID (14 samples, 0.01%)</title><rect x="1204.2" y="587" width="0.1" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text  x="1207.18" y="597.5" ></text>
</g>
<g >
<title>MakeTupleTableSlot (21 samples, 0.02%)</title><rect x="1326.5" y="779" width="0.3" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text  x="1329.53" y="789.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (20 samples, 0.02%)</title><rect x="1303.3" y="779" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="1306.30" y="789.5" ></text>
</g>
<g >
<title>deleteOneObject (34 samples, 0.03%)</title><rect x="1284.0" y="699" width="0.4" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text  x="1287.01" y="709.5" ></text>
</g>
<g >
<title>TransactionBlockStatusCode (35 samples, 0.03%)</title><rect x="246.7" y="715" width="0.5" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text  x="249.75" y="725.5" ></text>
</g>
<g >
<title>StartReadBuffer (10 samples, 0.01%)</title><rect x="11.4" y="395" width="0.1" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="14.40" y="405.5" ></text>
</g>
<g >
<title>hash_seq_search (473 samples, 0.40%)</title><rect x="1209.1" y="651" width="5.5" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="1212.13" y="661.5" ></text>
</g>
<g >
<title>hash_search (269 samples, 0.23%)</title><rect x="497.5" y="619" width="3.1" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="500.48" y="629.5" ></text>
</g>
<g >
<title>ReleaseAndReadBuffer (2,653 samples, 2.22%)</title><rect x="49.0" y="427" width="30.7" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text  x="52.01" y="437.5" >R..</text>
</g>
<g >
<title>FreeSnapshot (55 samples, 0.05%)</title><rect x="517.9" y="699" width="0.6" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text  x="520.85" y="709.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (28 samples, 0.02%)</title><rect x="256.9" y="619" width="0.3" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text  x="259.90" y="629.5" ></text>
</g>
<g >
<title>plpgsql_exec_function (65 samples, 0.05%)</title><rect x="79.7" y="571" width="0.8" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text  x="82.71" y="581.5" ></text>
</g>
<g >
<title>ExecDropStmt (33 samples, 0.03%)</title><rect x="25.1" y="795" width="0.4" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="28.14" y="805.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (65 samples, 0.05%)</title><rect x="79.7" y="395" width="0.8" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="82.71" y="405.5" ></text>
</g>
<g >
<title>DefineIndex (603 samples, 0.51%)</title><rect x="1275.9" y="507" width="6.9" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="1278.86" y="517.5" ></text>
</g>
<g >
<title>_bt_readpage (236 samples, 0.20%)</title><rect x="12.0" y="443" width="2.7" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="14.99" y="453.5" ></text>
</g>
<g >
<title>get_hash_value (18 samples, 0.02%)</title><rect x="1359.1" y="779" width="0.2" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text  x="1362.08" y="789.5" ></text>
</g>
<g >
<title>MemoryContextStrdup (196 samples, 0.16%)</title><rect x="1124.1" y="699" width="2.3" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="1127.10" y="709.5" ></text>
</g>
<g >
<title>index_fetch_heap (3,313 samples, 2.78%)</title><rect x="913.4" y="491" width="38.3" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="916.39" y="501.5" >in..</text>
</g>
<g >
<title>kmem_cache_free (71 samples, 0.06%)</title><rect x="368.6" y="203" width="0.8" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text  x="371.62" y="213.5" ></text>
</g>
<g >
<title>AllocSetAlloc (27 samples, 0.02%)</title><rect x="1119.7" y="635" width="0.3" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1122.72" y="645.5" ></text>
</g>
<g >
<title>LWLockAcquire (32 samples, 0.03%)</title><rect x="643.0" y="507" width="0.4" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="646.05" y="517.5" ></text>
</g>
<g >
<title>AtEOXact_RelationCache (21 samples, 0.02%)</title><rect x="1140.9" y="667" width="0.3" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="1143.92" y="677.5" ></text>
</g>
<g >
<title>_SPI_execute_plan (11 samples, 0.01%)</title><rect x="20.7" y="635" width="0.1" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="23.66" y="645.5" ></text>
</g>
<g >
<title>btgettuple (19 samples, 0.02%)</title><rect x="1284.4" y="635" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="1287.42" y="645.5" ></text>
</g>
<g >
<title>ExecEvalStepOp (202 samples, 0.17%)</title><rect x="887.8" y="475" width="2.4" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text  x="890.84" y="485.5" ></text>
</g>
<g >
<title>tcp_ack_update_rtt (52 samples, 0.04%)</title><rect x="370.0" y="203" width="0.6" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" />
<text  x="372.95" y="213.5" ></text>
</g>
<g >
<title>CreateExecutorState (17 samples, 0.01%)</title><rect x="1304.6" y="779" width="0.2" height="15.0" fill="rgb(228,105,25)" rx="2" ry="2" />
<text  x="1307.59" y="789.5" ></text>
</g>
<g >
<title>disable_statement_timeout (12 samples, 0.01%)</title><rect x="1354.6" y="779" width="0.2" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text  x="1357.62" y="789.5" ></text>
</g>
<g >
<title>_raw_write_unlock_irq (28 samples, 0.02%)</title><rect x="114.9" y="539" width="0.3" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text  x="117.85" y="549.5" ></text>
</g>
<g >
<title>AllocSetDelete (30 samples, 0.03%)</title><rect x="1292.8" y="779" width="0.4" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="1295.84" y="789.5" ></text>
</g>
<g >
<title>GetMemoryChunkMethodID (31 samples, 0.03%)</title><rect x="1184.3" y="475" width="0.4" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text  x="1187.32" y="485.5" ></text>
</g>
<g >
<title>hash_seq_search (14 samples, 0.01%)</title><rect x="1361.6" y="779" width="0.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="1364.60" y="789.5" ></text>
</g>
<g >
<title>ExecInitResultTypeTL (981 samples, 0.82%)</title><rect x="617.7" y="603" width="11.4" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text  x="620.73" y="613.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (253 samples, 0.21%)</title><rect x="935.6" y="283" width="3.0" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="938.64" y="293.5" ></text>
</g>
<g >
<title>FunctionCall1Coll (15 samples, 0.01%)</title><rect x="19.2" y="779" width="0.1" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="22.15" y="789.5" ></text>
</g>
<g >
<title>AllocSetAlloc (41 samples, 0.03%)</title><rect x="705.0" y="683" width="0.4" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="707.97" y="693.5" ></text>
</g>
<g >
<title>hash_initial_lookup (10 samples, 0.01%)</title><rect x="724.7" y="555" width="0.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="727.71" y="565.5" ></text>
</g>
<g >
<title>__memcpy_evex_unaligned_erms (17 samples, 0.01%)</title><rect x="956.3" y="411" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="959.31" y="421.5" ></text>
</g>
<g >
<title>__mod_timer (122 samples, 0.10%)</title><rect x="323.7" y="203" width="1.4" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="326.71" y="213.5" ></text>
</g>
<g >
<title>ExecInitResultSlot (268 samples, 0.22%)</title><rect x="573.2" y="571" width="3.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="576.16" y="581.5" ></text>
</g>
<g >
<title>pg_ulltoa_n (58 samples, 0.05%)</title><rect x="866.3" y="683" width="0.6" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="869.26" y="693.5" ></text>
</g>
<g >
<title>skb_push (15 samples, 0.01%)</title><rect x="403.3" y="459" width="0.2" height="15.0" fill="rgb(238,154,37)" rx="2" ry="2" />
<text  x="406.32" y="469.5" ></text>
</g>
<g >
<title>__memcpy_evex_unaligned_erms (15 samples, 0.01%)</title><rect x="612.4" y="555" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="615.42" y="565.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (156 samples, 0.13%)</title><rect x="603.3" y="555" width="1.9" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="606.35" y="565.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (46 samples, 0.04%)</title><rect x="1272.7" y="619" width="0.6" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="1275.72" y="629.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (26 samples, 0.02%)</title><rect x="559.5" y="507" width="0.3" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="562.48" y="517.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (13 samples, 0.01%)</title><rect x="492.5" y="571" width="0.1" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="495.46" y="581.5" ></text>
</g>
<g >
<title>BufferAlloc (1,574 samples, 1.32%)</title><rect x="920.6" y="331" width="18.2" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text  x="923.55" y="341.5" ></text>
</g>
<g >
<title>AllocSetDelete (169 samples, 0.14%)</title><rect x="1195.2" y="523" width="2.0" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="1198.23" y="533.5" ></text>
</g>
<g >
<title>murmurhash32 (19 samples, 0.02%)</title><rect x="594.1" y="491" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="597.09" y="501.5" ></text>
</g>
<g >
<title>MemoryChunkSetHdrMask (11 samples, 0.01%)</title><rect x="1116.1" y="539" width="0.1" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="1119.12" y="549.5" ></text>
</g>
<g >
<title>IsSharedRelation (41 samples, 0.03%)</title><rect x="471.7" y="635" width="0.5" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text  x="474.74" y="645.5" ></text>
</g>
<g >
<title>RelationRebuildRelation (22 samples, 0.02%)</title><rect x="1283.3" y="315" width="0.2" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text  x="1286.27" y="325.5" ></text>
</g>
<g >
<title>exprType (28 samples, 0.02%)</title><rect x="628.2" y="555" width="0.3" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text  x="631.23" y="565.5" ></text>
</g>
<g >
<title>hash_search (47 samples, 0.04%)</title><rect x="1360.5" y="779" width="0.6" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="1363.54" y="789.5" ></text>
</g>
<g >
<title>PageGetItemId (13 samples, 0.01%)</title><rect x="1013.3" y="411" width="0.1" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text  x="1016.29" y="421.5" ></text>
</g>
<g >
<title>pg_client_to_server (20 samples, 0.02%)</title><rect x="1370.2" y="779" width="0.3" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text  x="1373.24" y="789.5" ></text>
</g>
<g >
<title>ScanKeyEntryInitializeWithInfo (52 samples, 0.04%)</title><rect x="955.9" y="443" width="0.6" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="958.91" y="453.5" ></text>
</g>
<g >
<title>index_open (21 samples, 0.02%)</title><rect x="1363.4" y="779" width="0.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="1366.43" y="789.5" ></text>
</g>
<g >
<title>kmem_cache_free (48 samples, 0.04%)</title><rect x="384.4" y="347" width="0.5" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text  x="387.36" y="357.5" ></text>
</g>
<g >
<title>__memcpy_evex_unaligned_erms (12 samples, 0.01%)</title><rect x="250.5" y="667" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="253.53" y="677.5" ></text>
</g>
<g >
<title>SearchSysCache3 (10 samples, 0.01%)</title><rect x="1344.9" y="779" width="0.1" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text  x="1347.93" y="789.5" ></text>
</g>
<g >
<title>pfree (38 samples, 0.03%)</title><rect x="1369.1" y="779" width="0.4" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1372.09" y="789.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (24 samples, 0.02%)</title><rect x="1284.9" y="555" width="0.3" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="1287.90" y="565.5" ></text>
</g>
<g >
<title>BufferDescriptorGetBuffer (14 samples, 0.01%)</title><rect x="938.8" y="331" width="0.1" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="941.77" y="341.5" ></text>
</g>
<g >
<title>PGSemaphoreLock (15 samples, 0.01%)</title><rect x="662.7" y="523" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text  x="665.69" y="533.5" ></text>
</g>
<g >
<title>hash_search (241 samples, 0.20%)</title><rect x="637.4" y="523" width="2.7" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="640.36" y="533.5" ></text>
</g>
<g >
<title>ReservePrivateRefCountEntry (17 samples, 0.01%)</title><rect x="45.0" y="299" width="0.2" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text  x="48.00" y="309.5" ></text>
</g>
<g >
<title>ServerLoop (107,355 samples, 90.02%)</title><rect x="26.8" y="811" width="1242.3" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="29.85" y="821.5" >ServerLoop</text>
</g>
<g >
<title>ExecIndexScan (690 samples, 0.58%)</title><rect x="877.1" y="603" width="8.0" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="880.09" y="613.5" ></text>
</g>
<g >
<title>SIInsertDataEntries (29 samples, 0.02%)</title><rect x="1127.0" y="315" width="0.4" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text  x="1130.02" y="325.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (11 samples, 0.01%)</title><rect x="531.7" y="619" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="534.70" y="629.5" ></text>
</g>
<g >
<title>exec_stmts (37 samples, 0.03%)</title><rect x="1285.2" y="747" width="0.4" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="1288.18" y="757.5" ></text>
</g>
<g >
<title>PortalRunSelect (21,428 samples, 17.97%)</title><rect x="872.1" y="699" width="248.0" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text  x="875.10" y="709.5" >PortalRunSelect</text>
</g>
<g >
<title>AdvanceXLInsertBuffer (11 samples, 0.01%)</title><rect x="1268.8" y="715" width="0.1" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text  x="1271.76" y="725.5" ></text>
</g>
<g >
<title>PlanCacheRelCallback (36 samples, 0.03%)</title><rect x="723.9" y="603" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text  x="726.88" y="613.5" ></text>
</g>
<g >
<title>FunctionCall1Coll (15 samples, 0.01%)</title><rect x="23.8" y="715" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="26.79" y="725.5" ></text>
</g>
<g >
<title>string_compare (26 samples, 0.02%)</title><rect x="464.7" y="667" width="0.3" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text  x="467.67" y="677.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (12 samples, 0.01%)</title><rect x="22.4" y="299" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="25.36" y="309.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (55 samples, 0.05%)</title><rect x="1082.1" y="347" width="0.6" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="1085.11" y="357.5" ></text>
</g>
<g >
<title>sched_clock_cpu (38 samples, 0.03%)</title><rect x="188.5" y="475" width="0.4" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="191.47" y="485.5" ></text>
</g>
<g >
<title>CatalogIndexInsert (16 samples, 0.01%)</title><rect x="1276.5" y="443" width="0.2" height="15.0" fill="rgb(229,110,26)" rx="2" ry="2" />
<text  x="1279.53" y="453.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (81 samples, 0.07%)</title><rect x="1271.8" y="475" width="0.9" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="1274.77" y="485.5" ></text>
</g>
<g >
<title>ip_finish_output2 (9,499 samples, 7.97%)</title><rect x="288.1" y="443" width="110.0" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="291.14" y="453.5" >ip_finish_o..</text>
</g>
<g >
<title>AtEOXact_LocalBuffers (23 samples, 0.02%)</title><rect x="1296.6" y="779" width="0.2" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text  x="1299.57" y="789.5" ></text>
</g>
<g >
<title>AtEOXact_RelationMap (29 samples, 0.02%)</title><rect x="1141.2" y="667" width="0.3" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text  x="1144.16" y="677.5" ></text>
</g>
<g >
<title>Int32GetDatum (19 samples, 0.02%)</title><rect x="19.7" y="811" width="0.2" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text  x="22.71" y="821.5" ></text>
</g>
<g >
<title>PortalRunMulti (211 samples, 0.18%)</title><rect x="20.9" y="795" width="2.4" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="23.90" y="805.5" ></text>
</g>
<g >
<title>SetLocktagRelationOid (21 samples, 0.02%)</title><rect x="1345.6" y="779" width="0.3" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text  x="1348.63" y="789.5" ></text>
</g>
<g >
<title>GetCommandTagNameAndLen (14 samples, 0.01%)</title><rect x="867.8" y="715" width="0.2" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text  x="870.82" y="725.5" ></text>
</g>
<g >
<title>smgr_bulk_finish (27 samples, 0.02%)</title><rect x="1272.8" y="475" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="1275.81" y="485.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (70 samples, 0.06%)</title><rect x="1283.9" y="779" width="0.8" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="1286.92" y="789.5" ></text>
</g>
<g >
<title>LWLockAcquire (55 samples, 0.05%)</title><rect x="1324.3" y="779" width="0.7" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="1327.34" y="789.5" ></text>
</g>
<g >
<title>InputFunctionCall (223 samples, 0.19%)</title><rect x="513.9" y="699" width="2.6" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="516.88" y="709.5" ></text>
</g>
<g >
<title>RelationCacheInvalidateEntry (22 samples, 0.02%)</title><rect x="1277.0" y="379" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="1279.99" y="389.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (9 samples, 0.01%)</title><rect x="912.8" y="427" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="915.85" y="437.5" ></text>
</g>
<g >
<title>TupleDescAttr (9 samples, 0.01%)</title><rect x="853.1" y="699" width="0.1" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="856.12" y="709.5" ></text>
</g>
<g >
<title>index_build (490 samples, 0.41%)</title><rect x="1277.0" y="475" width="5.7" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text  x="1279.99" y="485.5" ></text>
</g>
<g >
<title>_SPI_execute_plan (697 samples, 0.58%)</title><rect x="1275.9" y="587" width="8.0" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="1278.86" y="597.5" ></text>
</g>
<g >
<title>AllocSetAlloc (37 samples, 0.03%)</title><rect x="696.1" y="651" width="0.4" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="699.09" y="661.5" ></text>
</g>
<g >
<title>ItemPointerSetInvalid (15 samples, 0.01%)</title><rect x="1188.8" y="507" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text  x="1191.79" y="517.5" ></text>
</g>
<g >
<title>tts_heap_materialize (10 samples, 0.01%)</title><rect x="1274.5" y="779" width="0.1" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text  x="1277.52" y="789.5" ></text>
</g>
<g >
<title>MemoryChunkSetHdrMask (17 samples, 0.01%)</title><rect x="1260.3" y="651" width="0.2" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="1263.30" y="661.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberCatCacheRef (13 samples, 0.01%)</title><rect x="545.7" y="523" width="0.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text  x="548.72" y="533.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (31 samples, 0.03%)</title><rect x="1242.5" y="539" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="1245.46" y="549.5" ></text>
</g>
<g >
<title>plpgsql_inline_handler (15 samples, 0.01%)</title><rect x="19.2" y="763" width="0.1" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="22.15" y="773.5" ></text>
</g>
<g >
<title>ExecPostprocessPlan (26 samples, 0.02%)</title><rect x="1200.8" y="571" width="0.3" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="1203.78" y="581.5" ></text>
</g>
<g >
<title>expr_setup_walker (189 samples, 0.16%)</title><rect x="603.0" y="571" width="2.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="605.96" y="581.5" ></text>
</g>
<g >
<title>tcp_schedule_loss_probe.part.0 (20 samples, 0.02%)</title><rect x="372.7" y="203" width="0.3" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text  x="375.72" y="213.5" ></text>
</g>
<g >
<title>PageGetMaxOffsetNumber (18 samples, 0.02%)</title><rect x="1013.4" y="411" width="0.2" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text  x="1016.44" y="421.5" ></text>
</g>
<g >
<title>_bt_search (4,472 samples, 3.75%)</title><rect x="28.0" y="459" width="51.7" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text  x="30.96" y="469.5" >_bt_..</text>
</g>
<g >
<title>PortalRun (196 samples, 0.16%)</title><rect x="1127.0" y="715" width="2.3" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="1130.02" y="725.5" ></text>
</g>
<g >
<title>charhashfast (16 samples, 0.01%)</title><rect x="1353.2" y="779" width="0.2" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text  x="1356.24" y="789.5" ></text>
</g>
<g >
<title>ExecScan (85 samples, 0.07%)</title><rect x="1387.1" y="603" width="1.0" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text  x="1390.13" y="613.5" ></text>
</g>
<g >
<title>ProcessUtility (27 samples, 0.02%)</title><rect x="1284.9" y="667" width="0.3" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="1287.87" y="677.5" ></text>
</g>
<g >
<title>PreCommit_Portals (46 samples, 0.04%)</title><rect x="1335.1" y="779" width="0.6" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text  x="1338.14" y="789.5" ></text>
</g>
<g >
<title>printtup_create_DR (225 samples, 0.19%)</title><rect x="862.7" y="699" width="2.6" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="865.67" y="709.5" ></text>
</g>
<g >
<title>check_log_duration (20 samples, 0.02%)</title><rect x="1120.4" y="715" width="0.2" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text  x="1123.36" y="725.5" ></text>
</g>
<g >
<title>ReadBufferExtended (35 samples, 0.03%)</title><rect x="11.5" y="427" width="0.4" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text  x="14.53" y="437.5" ></text>
</g>
<g >
<title>fmgr_info (34 samples, 0.03%)</title><rect x="1358.1" y="779" width="0.4" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="1361.13" y="789.5" ></text>
</g>
<g >
<title>__strlen_evex (16 samples, 0.01%)</title><rect x="1123.0" y="699" width="0.2" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="1126.00" y="709.5" ></text>
</g>
<g >
<title>table_index_fetch_end (88 samples, 0.07%)</title><rect x="1184.9" y="507" width="1.0" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="1187.87" y="517.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (27 samples, 0.02%)</title><rect x="732.1" y="539" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="735.09" y="549.5" ></text>
</g>
<g >
<title>smgrDoPendingSyncs (18 samples, 0.02%)</title><rect x="1255.9" y="667" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text  x="1258.88" y="677.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (55 samples, 0.05%)</title><rect x="845.9" y="635" width="0.6" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="848.86" y="645.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (18 samples, 0.02%)</title><rect x="462.6" y="651" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="465.57" y="661.5" ></text>
</g>
<g >
<title>plpgsql_inline_handler (81 samples, 0.07%)</title><rect x="1271.8" y="651" width="0.9" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="1274.77" y="661.5" ></text>
</g>
<g >
<title>ExecReScan (13 samples, 0.01%)</title><rect x="1312.1" y="779" width="0.1" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text  x="1315.08" y="789.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (10 samples, 0.01%)</title><rect x="605.0" y="475" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="608.00" y="485.5" ></text>
</g>
<g >
<title>ExprEvalPushStep (101 samples, 0.08%)</title><rect x="563.5" y="507" width="1.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="566.50" y="517.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (107 samples, 0.09%)</title><rect x="32.7" y="251" width="1.3" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="35.74" y="261.5" ></text>
</g>
<g >
<title>AllocSetAlloc (33 samples, 0.03%)</title><rect x="615.3" y="539" width="0.4" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="618.29" y="549.5" ></text>
</g>
<g >
<title>hash_initial_lookup (18 samples, 0.02%)</title><rect x="1205.4" y="603" width="0.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="1208.44" y="613.5" ></text>
</g>
<g >
<title>raw_spin_rq_lock_nested (20 samples, 0.02%)</title><rect x="180.6" y="427" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="183.60" y="437.5" ></text>
</g>
<g >
<title>DefineIndex (38 samples, 0.03%)</title><rect x="1271.8" y="427" width="0.4" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="1274.77" y="437.5" ></text>
</g>
<g >
<title>CheckCachedPlan (488 samples, 0.41%)</title><rect x="466.6" y="699" width="5.6" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text  x="469.59" y="709.5" ></text>
</g>
<g >
<title>systable_getnext (12 samples, 0.01%)</title><rect x="24.5" y="603" width="0.1" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="27.50" y="613.5" ></text>
</g>
<g >
<title>newNode (372 samples, 0.31%)</title><rect x="555.6" y="555" width="4.3" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="558.61" y="565.5" ></text>
</g>
<g >
<title>_bt_mark_scankey_required (34 samples, 0.03%)</title><rect x="1003.7" y="427" width="0.4" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text  x="1006.73" y="437.5" ></text>
</g>
<g >
<title>LocalExecuteInvalidationMessage (10 samples, 0.01%)</title><rect x="1389.2" y="411" width="0.2" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="1392.25" y="421.5" ></text>
</g>
<g >
<title>BufferGetPage (10 samples, 0.01%)</title><rect x="1059.4" y="411" width="0.1" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="1062.38" y="421.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (11 samples, 0.01%)</title><rect x="1231.9" y="539" width="0.1" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="1234.89" y="549.5" ></text>
</g>
<g >
<title>pg_pwritev (442 samples, 0.37%)</title><rect x="1277.3" y="315" width="5.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1280.35" y="325.5" ></text>
</g>
<g >
<title>epoll_wait (8,158 samples, 6.84%)</title><rect x="100.3" y="619" width="94.4" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text  x="103.28" y="629.5" >epoll_wait</text>
</g>
<g >
<title>_int_malloc (70 samples, 0.06%)</title><rect x="911.0" y="395" width="0.8" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text  x="914.03" y="405.5" ></text>
</g>
<g >
<title>tcp_tso_segs (50 samples, 0.04%)</title><rect x="412.4" y="475" width="0.6" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text  x="415.40" y="485.5" ></text>
</g>
<g >
<title>hash_seq_init (56 samples, 0.05%)</title><rect x="1244.7" y="603" width="0.6" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text  x="1247.68" y="613.5" ></text>
</g>
<g >
<title>exec_stmts (211 samples, 0.18%)</title><rect x="20.9" y="603" width="2.4" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="23.90" y="613.5" ></text>
</g>
<g >
<title>ExecScanExtended (469 samples, 0.39%)</title><rect x="12.0" y="571" width="5.4" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="14.99" y="581.5" ></text>
</g>
<g >
<title>ReleaseAndReadBuffer (12 samples, 0.01%)</title><rect x="1339.3" y="779" width="0.1" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text  x="1342.27" y="789.5" ></text>
</g>
<g >
<title>__memcpy_evex_unaligned_erms (10 samples, 0.01%)</title><rect x="608.7" y="523" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="611.68" y="533.5" ></text>
</g>
<g >
<title>AllocSetContextCreateInternal (73 samples, 0.06%)</title><rect x="448.2" y="699" width="0.9" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text  x="451.25" y="709.5" ></text>
</g>
<g >
<title>doDeletion (10 samples, 0.01%)</title><rect x="1284.2" y="683" width="0.1" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text  x="1287.18" y="693.5" ></text>
</g>
<g >
<title>GetPrivateRefCountEntry (50 samples, 0.04%)</title><rect x="73.4" y="283" width="0.6" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="76.40" y="293.5" ></text>
</g>
<g >
<title>__strlen_evex (14 samples, 0.01%)</title><rect x="720.6" y="699" width="0.2" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="723.65" y="709.5" ></text>
</g>
<g >
<title>fetch_att (64 samples, 0.05%)</title><rect x="1356.8" y="779" width="0.8" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="1359.82" y="789.5" ></text>
</g>
<g >
<title>init_spin_delay (9 samples, 0.01%)</title><rect x="1171.8" y="555" width="0.1" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="1174.81" y="565.5" ></text>
</g>
<g >
<title>tcp_chrono_stop (12 samples, 0.01%)</title><rect x="370.6" y="203" width="0.1" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text  x="373.56" y="213.5" ></text>
</g>
<g >
<title>_bt_readfirstpage (1,025 samples, 0.86%)</title><rect x="1004.2" y="443" width="11.9" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text  x="1007.21" y="453.5" ></text>
</g>
<g >
<title>ReScanExprContext (15 samples, 0.01%)</title><rect x="1336.9" y="779" width="0.2" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text  x="1339.94" y="789.5" ></text>
</g>
<g >
<title>skb_page_frag_refill (274 samples, 0.23%)</title><rect x="414.1" y="491" width="3.1" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text  x="417.07" y="501.5" ></text>
</g>
<g >
<title>PredicateLockTID (10 samples, 0.01%)</title><rect x="918.9" y="443" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="921.90" y="453.5" ></text>
</g>
<g >
<title>CommandEndInvalidationMessages (10 samples, 0.01%)</title><rect x="1389.2" y="443" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="1392.25" y="453.5" ></text>
</g>
<g >
<title>ProcessInvalidationMessages (22 samples, 0.02%)</title><rect x="1277.0" y="411" width="0.2" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="1279.99" y="421.5" ></text>
</g>
<g >
<title>LWLockRelease (34 samples, 0.03%)</title><rect x="732.0" y="603" width="0.4" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="735.03" y="613.5" ></text>
</g>
<g >
<title>tcp_stream_alloc_skb (1,071 samples, 0.90%)</title><rect x="422.9" y="507" width="12.4" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="425.91" y="517.5" ></text>
</g>
<g >
<title>tts_buffer_heap_clear (61 samples, 0.05%)</title><rect x="892.2" y="507" width="0.7" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text  x="895.24" y="517.5" ></text>
</g>
<g >
<title>update_load_avg (33 samples, 0.03%)</title><rect x="181.2" y="443" width="0.4" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text  x="184.23" y="453.5" ></text>
</g>
<g >
<title>MemoryContextCallResetCallbacks (23 samples, 0.02%)</title><rect x="91.4" y="699" width="0.3" height="15.0" fill="rgb(218,59,14)" rx="2" ry="2" />
<text  x="94.44" y="709.5" ></text>
</g>
<g >
<title>RelationBuildTupleDesc (14 samples, 0.01%)</title><rect x="24.5" y="619" width="0.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="27.48" y="629.5" ></text>
</g>
<g >
<title>__generic_file_write_iter (25 samples, 0.02%)</title><rect x="25.5" y="427" width="0.3" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text  x="28.52" y="437.5" ></text>
</g>
<g >
<title>index_create (15 samples, 0.01%)</title><rect x="1285.4" y="507" width="0.2" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="1288.41" y="517.5" ></text>
</g>
<g >
<title>ExecScan (72 samples, 0.06%)</title><rect x="11.1" y="619" width="0.8" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text  x="14.10" y="629.5" ></text>
</g>
<g >
<title>pgstat_report_xact_timestamp (14 samples, 0.01%)</title><rect x="847.4" y="667" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text  x="850.35" y="677.5" ></text>
</g>
<g >
<title>tcp_rate_skb_delivered (79 samples, 0.07%)</title><rect x="371.3" y="203" width="0.9" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" />
<text  x="374.31" y="213.5" ></text>
</g>
<g >
<title>heap_create_with_catalog (18 samples, 0.02%)</title><rect x="1285.0" y="507" width="0.2" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" />
<text  x="1287.97" y="517.5" ></text>
</g>
<g >
<title>AtEOXact_SMgr (23 samples, 0.02%)</title><rect x="1141.5" y="667" width="0.3" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="1144.49" y="677.5" ></text>
</g>
<g >
<title>GetMemoryChunkMethodID (35 samples, 0.03%)</title><rect x="1179.6" y="475" width="0.4" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text  x="1182.62" y="485.5" ></text>
</g>
<g >
<title>table_open (368 samples, 0.31%)</title><rect x="636.3" y="571" width="4.2" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text  x="639.29" y="581.5" ></text>
</g>
<g >
<title>__GI___errno_location (35 samples, 0.03%)</title><rect x="97.4" y="635" width="0.4" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text  x="100.38" y="645.5" ></text>
</g>
<g >
<title>ReadBuffer (11 samples, 0.01%)</title><rect x="11.4" y="443" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="14.40" y="453.5" ></text>
</g>
<g >
<title>__x64_sys_pwrite64 (27 samples, 0.02%)</title><rect x="1272.8" y="315" width="0.3" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="1275.81" y="325.5" ></text>
</g>
<g >
<title>[[stack]] (8,239 samples, 6.91%)</title><rect x="1289.5" y="795" width="95.3" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text  x="1292.48" y="805.5" >[[stack]]</text>
</g>
<g >
<title>postmaster_child_launch (17 samples, 0.01%)</title><rect x="1268.9" y="747" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="1271.89" y="757.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (9 samples, 0.01%)</title><rect x="672.6" y="507" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="675.57" y="517.5" ></text>
</g>
<g >
<title>_bt_readnextpage (12 samples, 0.01%)</title><rect x="1351.4" y="779" width="0.1" height="15.0" fill="rgb(236,146,34)" rx="2" ry="2" />
<text  x="1354.38" y="789.5" ></text>
</g>
<g >
<title>AtEOXact_RelationCache (15 samples, 0.01%)</title><rect x="1298.2" y="779" width="0.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="1301.21" y="789.5" ></text>
</g>
<g >
<title>index_build (13 samples, 0.01%)</title><rect x="1389.2" y="491" width="0.2" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text  x="1392.25" y="501.5" ></text>
</g>
<g >
<title>CommandEndInvalidationMessages (24 samples, 0.02%)</title><rect x="18.0" y="747" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="20.96" y="757.5" ></text>
</g>
<g >
<title>__strncmp_evex (23 samples, 0.02%)</title><rect x="464.7" y="651" width="0.3" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text  x="467.69" y="661.5" ></text>
</g>
<g >
<title>_bt_load (451 samples, 0.38%)</title><rect x="1277.2" y="427" width="5.3" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="1280.24" y="437.5" ></text>
</g>
<g >
<title>StartTransaction (12 samples, 0.01%)</title><rect x="1268.6" y="683" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="1271.62" y="693.5" ></text>
</g>
<g >
<title>exec_stmts (27 samples, 0.02%)</title><rect x="1284.9" y="763" width="0.3" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="1287.87" y="773.5" ></text>
</g>
<g >
<title>btgettuple (4,568 samples, 3.83%)</title><rect x="26.8" y="491" width="52.9" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="29.85" y="501.5" >btge..</text>
</g>
<g >
<title>shmem_write_end (146 samples, 0.12%)</title><rect x="1280.8" y="171" width="1.6" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="1283.75" y="181.5" ></text>
</g>
<g >
<title>SearchSysCache1 (192 samples, 0.16%)</title><rect x="543.7" y="571" width="2.2" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="546.70" y="581.5" ></text>
</g>
<g >
<title>PortalRunMulti (65 samples, 0.05%)</title><rect x="79.7" y="715" width="0.8" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="82.71" y="725.5" ></text>
</g>
<g >
<title>tts_buffer_heap_getsomeattrs (264 samples, 0.22%)</title><rect x="898.7" y="395" width="3.0" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="901.69" y="405.5" ></text>
</g>
<g >
<title>LWLockQueueSelf (22 samples, 0.02%)</title><rect x="492.4" y="603" width="0.3" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text  x="495.41" y="613.5" ></text>
</g>
<g >
<title>generic_file_write_iter (440 samples, 0.37%)</title><rect x="1277.4" y="219" width="5.1" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text  x="1280.36" y="229.5" ></text>
</g>
<g >
<title>tcp_recvmsg (2,516 samples, 2.11%)</title><rect x="202.4" y="539" width="29.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text  x="205.36" y="549.5" >t..</text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (36 samples, 0.03%)</title><rect x="918.4" y="395" width="0.4" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="921.42" y="405.5" ></text>
</g>
<g >
<title>ExecShutdownNode_walker (117 samples, 0.10%)</title><rect x="1091.6" y="603" width="1.3" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text  x="1094.57" y="613.5" ></text>
</g>
<g >
<title>pq_recvbuf (11 samples, 0.01%)</title><rect x="246.1" y="699" width="0.1" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text  x="249.07" y="709.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (17 samples, 0.01%)</title><rect x="10.3" y="811" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="13.34" y="821.5" ></text>
</g>
<g >
<title>ReadBufferExtended (11 samples, 0.01%)</title><rect x="11.4" y="427" width="0.1" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text  x="14.40" y="437.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (11 samples, 0.01%)</title><rect x="818.7" y="587" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="821.69" y="597.5" ></text>
</g>
<g >
<title>exprType (11 samples, 0.01%)</title><rect x="1356.2" y="779" width="0.2" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text  x="1359.24" y="789.5" ></text>
</g>
<g >
<title>__list_add_valid (11 samples, 0.01%)</title><rect x="391.3" y="331" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text  x="394.29" y="341.5" ></text>
</g>
<g >
<title>__put_user_nocheck_8 (24 samples, 0.02%)</title><rect x="191.4" y="523" width="0.3" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text  x="194.43" y="533.5" ></text>
</g>
<g >
<title>exec_stmt_fori (27 samples, 0.02%)</title><rect x="1284.9" y="747" width="0.3" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text  x="1287.87" y="757.5" ></text>
</g>
<g >
<title>ExecAssignProjectionInfo (1,099 samples, 0.92%)</title><rect x="560.4" y="571" width="12.7" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text  x="563.41" y="581.5" ></text>
</g>
<g >
<title>LocalExecuteInvalidationMessage (12 samples, 0.01%)</title><rect x="18.3" y="699" width="0.1" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="21.26" y="709.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (33 samples, 0.03%)</title><rect x="917.8" y="395" width="0.4" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="920.80" y="405.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (21 samples, 0.02%)</title><rect x="31.0" y="235" width="0.3" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="34.03" y="245.5" ></text>
</g>
<g >
<title>PortalRunSelect (4,568 samples, 3.83%)</title><rect x="26.8" y="715" width="52.9" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text  x="29.85" y="725.5" >Port..</text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (18 samples, 0.02%)</title><rect x="847.1" y="587" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="850.14" y="597.5" ></text>
</g>
<g >
<title>__GI_bsearch (12 samples, 0.01%)</title><rect x="890.2" y="459" width="0.1" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text  x="893.18" y="469.5" ></text>
</g>
<g >
<title>AtEOXact_LargeObject (17 samples, 0.01%)</title><rect x="1137.9" y="667" width="0.2" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text  x="1140.90" y="677.5" ></text>
</g>
<g >
<title>tcp_rcv_space_adjust (131 samples, 0.11%)</title><rect x="230.0" y="507" width="1.5" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text  x="232.96" y="517.5" ></text>
</g>
<g >
<title>printtup (14 samples, 0.01%)</title><rect x="1376.6" y="779" width="0.1" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text  x="1379.58" y="789.5" ></text>
</g>
<g >
<title>_bt_checkpage (53 samples, 0.04%)</title><rect x="1060.2" y="395" width="0.6" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="1063.20" y="405.5" ></text>
</g>
<g >
<title>RelationBuildDesc (18 samples, 0.02%)</title><rect x="1277.0" y="331" width="0.2" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="1279.99" y="341.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetCatCacheRef (28 samples, 0.02%)</title><rect x="587.4" y="523" width="0.3" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text  x="590.40" y="533.5" ></text>
</g>
<g >
<title>ExecInitQual (1,564 samples, 1.31%)</title><rect x="599.6" y="603" width="18.1" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text  x="602.63" y="613.5" ></text>
</g>
<g >
<title>ConditionalCatalogCacheInitializeCache (29 samples, 0.02%)</title><rect x="702.3" y="651" width="0.4" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="705.34" y="661.5" ></text>
</g>
<g >
<title>inet_recvmsg (2,563 samples, 2.15%)</title><rect x="201.8" y="555" width="29.7" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="204.81" y="565.5" >i..</text>
</g>
<g >
<title>pq_getmsgint (16 samples, 0.01%)</title><rect x="1265.4" y="731" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="1268.41" y="741.5" ></text>
</g>
<g >
<title>RelationDecrementReferenceCount (55 samples, 0.05%)</title><rect x="1177.6" y="491" width="0.7" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text  x="1180.62" y="501.5" ></text>
</g>
<g >
<title>get_typstorage (233 samples, 0.20%)</title><rect x="592.2" y="587" width="2.7" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="595.16" y="597.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (27 samples, 0.02%)</title><rect x="1284.9" y="619" width="0.3" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="1287.87" y="629.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (252 samples, 0.21%)</title><rect x="686.0" y="635" width="2.9" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="688.99" y="645.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (320 samples, 0.27%)</title><rect x="189.1" y="571" width="3.7" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text  x="192.07" y="581.5" ></text>
</g>
<g >
<title>SPI_execute_plan_with_paramlist (27 samples, 0.02%)</title><rect x="1284.9" y="699" width="0.3" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="1287.87" y="709.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (10 samples, 0.01%)</title><rect x="513.1" y="667" width="0.1" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="516.11" y="677.5" ></text>
</g>
<g >
<title>init_spin_delay (39 samples, 0.03%)</title><rect x="1006.5" y="379" width="0.4" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="1009.45" y="389.5" ></text>
</g>
<g >
<title>native_sched_clock (33 samples, 0.03%)</title><rect x="188.5" y="459" width="0.4" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text  x="191.53" y="469.5" ></text>
</g>
<g >
<title>ExecEvalExprNoReturnSwitchContext (513 samples, 0.43%)</title><rect x="896.1" y="523" width="5.9" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="899.10" y="533.5" ></text>
</g>
<g >
<title>CatalogTupleInsert (19 samples, 0.02%)</title><rect x="1276.5" y="459" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="1279.53" y="469.5" ></text>
</g>
<g >
<title>__smp_call_single_queue (204 samples, 0.17%)</title><rect x="339.2" y="123" width="2.4" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text  x="342.21" y="133.5" ></text>
</g>
<g >
<title>ExecEvalParamExtern (58 samples, 0.05%)</title><rect x="891.0" y="475" width="0.6" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="893.95" y="485.5" ></text>
</g>
<g >
<title>__sigsetjmp@plt (25 samples, 0.02%)</title><rect x="1200.0" y="587" width="0.3" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text  x="1203.00" y="597.5" ></text>
</g>
<g >
<title>[[vdso]] (33 samples, 0.03%)</title><rect x="709.7" y="667" width="0.4" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="712.74" y="677.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberSnapshot (33 samples, 0.03%)</title><rect x="524.4" y="651" width="0.4" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text  x="527.41" y="661.5" ></text>
</g>
<g >
<title>list_delete_ptr (107 samples, 0.09%)</title><rect x="1192.7" y="539" width="1.2" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text  x="1195.70" y="549.5" ></text>
</g>
<g >
<title>AtEOXact_on_commit_actions (14 samples, 0.01%)</title><rect x="1142.8" y="667" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text  x="1145.83" y="677.5" ></text>
</g>
<g >
<title>pg_leftmost_one_pos64 (11 samples, 0.01%)</title><rect x="1370.7" y="779" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text  x="1373.65" y="789.5" ></text>
</g>
<g >
<title>__rseq_handle_notify_resume (156 samples, 0.13%)</title><rect x="189.9" y="539" width="1.8" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text  x="192.93" y="549.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberRelationRef (39 samples, 0.03%)</title><rect x="904.8" y="459" width="0.5" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="907.83" y="469.5" ></text>
</g>
<g >
<title>index_getnext_tid (11,794 samples, 9.89%)</title><rect x="951.7" y="491" width="136.5" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="954.73" y="501.5" >index_getnext_..</text>
</g>
<g >
<title>LWLockRelease (244 samples, 0.20%)</title><rect x="1159.8" y="571" width="2.9" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="1162.84" y="581.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (127 samples, 0.11%)</title><rect x="43.2" y="267" width="1.4" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="46.16" y="277.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (40 samples, 0.03%)</title><rect x="1076.4" y="347" width="0.4" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="1079.37" y="357.5" ></text>
</g>
<g >
<title>BTreeTupleIsPivot (11 samples, 0.01%)</title><rect x="962.3" y="395" width="0.1" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="965.30" y="405.5" ></text>
</g>
<g >
<title>pq_beginmessage (23 samples, 0.02%)</title><rect x="1374.5" y="779" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="1377.46" y="789.5" ></text>
</g>
<g >
<title>start_xact_command (25 samples, 0.02%)</title><rect x="1381.8" y="779" width="0.3" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="1384.84" y="789.5" ></text>
</g>
<g >
<title>ReadBuffer_common (11 samples, 0.01%)</title><rect x="11.4" y="411" width="0.1" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text  x="14.40" y="421.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (211 samples, 0.18%)</title><rect x="20.9" y="731" width="2.4" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="23.90" y="741.5" ></text>
</g>
<g >
<title>sk_reset_timer (13 samples, 0.01%)</title><rect x="411.9" y="459" width="0.1" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text  x="414.86" y="469.5" ></text>
</g>
<g >
<title>ProcArrayEndTransaction (51 samples, 0.04%)</title><rect x="1215.3" y="667" width="0.6" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="1218.27" y="677.5" ></text>
</g>
<g >
<title>PageGetSpecialSize (13 samples, 0.01%)</title><rect x="1060.5" y="379" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="1063.49" y="389.5" ></text>
</g>
<g >
<title>DefineIndex (41 samples, 0.03%)</title><rect x="1272.7" y="571" width="0.5" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="1275.73" y="581.5" ></text>
</g>
<g >
<title>RelationRebuildRelation (23 samples, 0.02%)</title><rect x="24.5" y="651" width="0.2" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text  x="27.48" y="661.5" ></text>
</g>
<g >
<title>palloc (51 samples, 0.04%)</title><rect x="581.1" y="539" width="0.6" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="584.14" y="549.5" ></text>
</g>
<g >
<title>tcp_check_space (82 samples, 0.07%)</title><rect x="406.2" y="475" width="1.0" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text  x="409.22" y="485.5" ></text>
</g>
<g >
<title>palloc (62 samples, 0.05%)</title><rect x="247.9" y="667" width="0.7" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="250.91" y="677.5" ></text>
</g>
<g >
<title>vfs_write (25 samples, 0.02%)</title><rect x="25.5" y="459" width="0.3" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="28.52" y="469.5" ></text>
</g>
<g >
<title>ReportChangedGUCOptions (12 samples, 0.01%)</title><rect x="1340.4" y="779" width="0.1" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="1343.40" y="789.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (11 samples, 0.01%)</title><rect x="20.7" y="587" width="0.1" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="23.66" y="597.5" ></text>
</g>
<g >
<title>pfree (49 samples, 0.04%)</title><rect x="249.1" y="699" width="0.6" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="252.14" y="709.5" ></text>
</g>
<g >
<title>PostgresMain (77 samples, 0.06%)</title><rect x="11.1" y="795" width="0.9" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text  x="14.10" y="805.5" ></text>
</g>
<g >
<title>net_rx_action (8,141 samples, 6.83%)</title><rect x="294.6" y="363" width="94.2" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="297.57" y="373.5" >net_rx_ac..</text>
</g>
<g >
<title>ExecClearTuple (120 samples, 0.10%)</title><rect x="1187.8" y="539" width="1.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="1190.76" y="549.5" ></text>
</g>
<g >
<title>BufferUsageAccumDiff (11 samples, 0.01%)</title><rect x="1303.0" y="779" width="0.1" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text  x="1305.99" y="789.5" ></text>
</g>
<g >
<title>findDependentObjects (20 samples, 0.02%)</title><rect x="1284.4" y="699" width="0.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text  x="1287.41" y="709.5" ></text>
</g>
<g >
<title>mem_cgroup_uncharge_skmem (83 samples, 0.07%)</title><rect x="212.1" y="491" width="1.0" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text  x="215.11" y="501.5" ></text>
</g>
<g >
<title>ExecCloseResultRelations (12 samples, 0.01%)</title><rect x="1176.7" y="555" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="1179.71" y="565.5" ></text>
</g>
<g >
<title>namestrcpy (181 samples, 0.15%)</title><rect x="624.4" y="539" width="2.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text  x="627.38" y="549.5" ></text>
</g>
<g >
<title>clear_page_erms (16 samples, 0.01%)</title><rect x="1272.9" y="219" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="1275.94" y="229.5" ></text>
</g>
<g >
<title>LWLockDisownInternal (29 samples, 0.02%)</title><rect x="66.3" y="283" width="0.3" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="69.30" y="293.5" ></text>
</g>
<g >
<title>AtEOXact_MultiXact (59 samples, 0.05%)</title><rect x="1138.3" y="667" width="0.7" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text  x="1141.28" y="677.5" ></text>
</g>
<g >
<title>get_page_from_freelist (30 samples, 0.03%)</title><rect x="416.9" y="459" width="0.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="419.89" y="469.5" ></text>
</g>
<g >
<title>LockBuffer (83 samples, 0.07%)</title><rect x="1009.8" y="379" width="0.9" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text  x="1012.77" y="389.5" ></text>
</g>
<g >
<title>sk_reset_timer (97 samples, 0.08%)</title><rect x="409.6" y="459" width="1.1" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text  x="412.58" y="469.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (9 samples, 0.01%)</title><rect x="1369.9" y="779" width="0.1" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="1372.90" y="789.5" ></text>
</g>
<g >
<title>_bt_doinsert (11 samples, 0.01%)</title><rect x="1276.8" y="395" width="0.1" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text  x="1279.77" y="405.5" ></text>
</g>
<g >
<title>fpregs_assert_state_consistent (28 samples, 0.02%)</title><rect x="438.6" y="555" width="0.3" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text  x="441.56" y="565.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (72 samples, 0.06%)</title><rect x="343.6" y="187" width="0.8" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text  x="346.60" y="197.5" ></text>
</g>
<g >
<title>CStringGetDatum (13 samples, 0.01%)</title><rect x="1097.2" y="555" width="0.1" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text  x="1100.16" y="565.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (21 samples, 0.02%)</title><rect x="1129.0" y="379" width="0.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="1132.04" y="389.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (108 samples, 0.09%)</title><rect x="1124.5" y="683" width="1.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="1127.46" y="693.5" ></text>
</g>
<g >
<title>ScanKeyEntryInitialize (82 samples, 0.07%)</title><rect x="585.1" y="587" width="0.9" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text  x="588.10" y="597.5" ></text>
</g>
<g >
<title>ProcessClientReadInterrupt (85 samples, 0.07%)</title><rect x="97.0" y="651" width="1.0" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text  x="99.97" y="661.5" ></text>
</g>
<g >
<title>pgstat_report_activity (189 samples, 0.16%)</title><rect x="1121.0" y="715" width="2.2" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text  x="1124.02" y="725.5" ></text>
</g>
<g >
<title>pq_recvbuf (23 samples, 0.02%)</title><rect x="1375.6" y="779" width="0.3" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text  x="1378.62" y="789.5" ></text>
</g>
<g >
<title>__GI___sigsetjmp (59 samples, 0.05%)</title><rect x="241.1" y="683" width="0.7" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text  x="244.10" y="693.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (14 samples, 0.01%)</title><rect x="622.4" y="475" width="0.1" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text  x="625.38" y="485.5" ></text>
</g>
<g >
<title>ExecProcNodeFirst (21 samples, 0.02%)</title><rect x="1091.3" y="619" width="0.3" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="1094.32" y="629.5" ></text>
</g>
<g >
<title>ReadBuffer_common (54 samples, 0.05%)</title><rect x="16.8" y="379" width="0.6" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text  x="19.79" y="389.5" ></text>
</g>
<g >
<title>ExecSetExecProcNode (12 samples, 0.01%)</title><rect x="678.3" y="619" width="0.2" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text  x="681.33" y="629.5" ></text>
</g>
<g >
<title>syscall_enter_from_user_mode (12 samples, 0.01%)</title><rect x="188.9" y="571" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text  x="191.94" y="581.5" ></text>
</g>
<g >
<title>GetTransactionSnapshot (818 samples, 0.69%)</title><rect x="504.0" y="715" width="9.5" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text  x="507.00" y="725.5" ></text>
</g>
<g >
<title>BufMappingPartitionLock (12 samples, 0.01%)</title><rect x="29.4" y="299" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="32.43" y="309.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irq (17 samples, 0.01%)</title><rect x="382.9" y="315" width="0.2" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text  x="385.89" y="325.5" ></text>
</g>
<g >
<title>cubictcp_cwnd_event (58 samples, 0.05%)</title><rect x="402.4" y="459" width="0.7" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="405.42" y="469.5" ></text>
</g>
<g >
<title>CacheInvalidateHeapTupleCommon (10 samples, 0.01%)</title><rect x="1274.4" y="779" width="0.1" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text  x="1277.41" y="789.5" ></text>
</g>
<g >
<title>ItemPointerGetOffsetNumberNoCheck (36 samples, 0.03%)</title><rect x="1050.1" y="395" width="0.4" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text  x="1053.11" y="405.5" ></text>
</g>
<g >
<title>x64_sys_call (12 samples, 0.01%)</title><rect x="192.8" y="571" width="0.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text  x="195.78" y="581.5" ></text>
</g>
<g >
<title>_bt_moveright (645 samples, 0.54%)</title><rect x="1061.5" y="427" width="7.5" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text  x="1064.53" y="437.5" ></text>
</g>
<g >
<title>UnpinBufferNoOwner (29 samples, 0.02%)</title><rect x="884.3" y="427" width="0.3" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text  x="887.30" y="437.5" ></text>
</g>
<g >
<title>should_output_to_client (10 samples, 0.01%)</title><rect x="1378.9" y="779" width="0.2" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text  x="1381.95" y="789.5" ></text>
</g>
<g >
<title>GETSTRUCT (20 samples, 0.02%)</title><rect x="587.0" y="571" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="590.00" y="581.5" ></text>
</g>
<g >
<title>PortalReleaseCachedPlan (31 samples, 0.03%)</title><rect x="1204.4" y="635" width="0.4" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text  x="1207.41" y="645.5" ></text>
</g>
<g >
<title>tcp_update_pacing_rate (27 samples, 0.02%)</title><rect x="373.0" y="203" width="0.3" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text  x="375.95" y="213.5" ></text>
</g>
<g >
<title>__mod_memcg_state (62 samples, 0.05%)</title><rect x="212.3" y="459" width="0.8" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="215.35" y="469.5" ></text>
</g>
<g >
<title>plpgsql_exec_function (81 samples, 0.07%)</title><rect x="1271.8" y="635" width="0.9" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text  x="1274.77" y="645.5" ></text>
</g>
<g >
<title>TupleDescAttr (20 samples, 0.02%)</title><rect x="576.4" y="555" width="0.3" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="579.44" y="565.5" ></text>
</g>
<g >
<title>AtStart_Cache (10 samples, 0.01%)</title><rect x="1300.1" y="779" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="1303.10" y="789.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberBuffer (28 samples, 0.02%)</title><rect x="916.4" y="395" width="0.3" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="919.40" y="405.5" ></text>
</g>
<g >
<title>LWLockAcquire (391 samples, 0.33%)</title><rect x="1155.3" y="571" width="4.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="1158.28" y="581.5" ></text>
</g>
<g >
<title>CreatePortal (13 samples, 0.01%)</title><rect x="1304.8" y="779" width="0.2" height="15.0" fill="rgb(219,66,16)" rx="2" ry="2" />
<text  x="1307.83" y="789.5" ></text>
</g>
<g >
<title>sched_clock_cpu (20 samples, 0.02%)</title><rect x="179.5" y="459" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="182.49" y="469.5" ></text>
</g>
<g >
<title>heapam_index_fetch_tuple (3,248 samples, 2.72%)</title><rect x="914.1" y="459" width="37.6" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text  x="917.14" y="469.5" >he..</text>
</g>
<g >
<title>hash_bytes (110 samples, 0.09%)</title><rect x="30.0" y="251" width="1.3" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="33.00" y="261.5" ></text>
</g>
<g >
<title>AtEOXact_HashTables (12 samples, 0.01%)</title><rect x="1137.7" y="667" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="1140.75" y="677.5" ></text>
</g>
<g >
<title>hash_bytes (87 samples, 0.07%)</title><rect x="850.5" y="667" width="1.0" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="853.51" y="677.5" ></text>
</g>
<g >
<title>ExecInitFunc (538 samples, 0.45%)</title><rect x="606.0" y="571" width="6.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="609.03" y="581.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (216 samples, 0.18%)</title><rect x="1160.1" y="507" width="2.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="1163.14" y="517.5" ></text>
</g>
<g >
<title>Int32GetDatum (13 samples, 0.01%)</title><rect x="515.2" y="667" width="0.2" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text  x="518.25" y="677.5" ></text>
</g>
<g >
<title>_bt_binsrch (3,773 samples, 3.16%)</title><rect x="956.5" y="443" width="43.7" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="959.51" y="453.5" >_bt..</text>
</g>
<g >
<title>cmpxchg_double_slab.constprop.0.isra.0 (38 samples, 0.03%)</title><rect x="363.2" y="155" width="0.5" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="366.22" y="165.5" ></text>
</g>
<g >
<title>AllocSetFreeIndex (21 samples, 0.02%)</title><rect x="1293.2" y="779" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="1296.25" y="789.5" ></text>
</g>
<g >
<title>hash_initial_lookup (16 samples, 0.01%)</title><rect x="31.5" y="267" width="0.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="34.49" y="277.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (125 samples, 0.10%)</title><rect x="493.3" y="587" width="1.5" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="496.31" y="597.5" ></text>
</g>
<g >
<title>ResourceOwnerRemember (32 samples, 0.03%)</title><rect x="904.9" y="443" width="0.4" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="907.91" y="453.5" ></text>
</g>
<g >
<title>ExecFetchSlotHeapTuple (10 samples, 0.01%)</title><rect x="1274.5" y="795" width="0.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="1277.52" y="805.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (15 samples, 0.01%)</title><rect x="23.8" y="763" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="26.79" y="773.5" ></text>
</g>
<g >
<title>__check_object_size (284 samples, 0.24%)</title><rect x="225.5" y="459" width="3.3" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text  x="228.48" y="469.5" ></text>
</g>
<g >
<title>ExecIndexScan (85 samples, 0.07%)</title><rect x="1387.1" y="619" width="1.0" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1390.13" y="629.5" ></text>
</g>
<g >
<title>AllocSetAlloc (38 samples, 0.03%)</title><rect x="248.2" y="651" width="0.4" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="251.17" y="661.5" ></text>
</g>
<g >
<title>PageValidateSpecialPointer (10 samples, 0.01%)</title><rect x="1026.1" y="411" width="0.2" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text  x="1029.15" y="421.5" ></text>
</g>
<g >
<title>int4in (22 samples, 0.02%)</title><rect x="1364.6" y="779" width="0.3" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="1367.60" y="789.5" ></text>
</g>
<g >
<title>GetSnapshotData (681 samples, 0.57%)</title><rect x="683.2" y="683" width="7.9" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text  x="686.23" y="693.5" ></text>
</g>
<g >
<title>RelationBuildDesc (10 samples, 0.01%)</title><rect x="18.3" y="635" width="0.1" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="21.26" y="645.5" ></text>
</g>
<g >
<title>read_tsc (15 samples, 0.01%)</title><rect x="377.3" y="187" width="0.2" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text  x="380.28" y="197.5" ></text>
</g>
<g >
<title>GetPrivateRefCountEntry (27 samples, 0.02%)</title><rect x="916.0" y="395" width="0.3" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="919.01" y="405.5" ></text>
</g>
<g >
<title>PortalRun (65 samples, 0.05%)</title><rect x="79.7" y="731" width="0.8" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="82.71" y="741.5" ></text>
</g>
<g >
<title>decimalLength64 (14 samples, 0.01%)</title><rect x="1354.5" y="779" width="0.1" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="1357.45" y="789.5" ></text>
</g>
<g >
<title>initReadOnlyStringInfo (17 samples, 0.01%)</title><rect x="704.0" y="715" width="0.2" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text  x="707.02" y="725.5" ></text>
</g>
<g >
<title>pgss_ExecutorStart (13,474 samples, 11.30%)</title><rect x="526.3" y="683" width="155.9" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="529.32" y="693.5" >pgss_ExecutorStart</text>
</g>
<g >
<title>CopySnapshot (89 samples, 0.07%)</title><rect x="693.1" y="667" width="1.1" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="696.14" y="677.5" ></text>
</g>
<g >
<title>__strlen_evex (24 samples, 0.02%)</title><rect x="720.3" y="683" width="0.3" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="723.31" y="693.5" ></text>
</g>
<g >
<title>plpgsql_inline_handler (211 samples, 0.18%)</title><rect x="20.9" y="667" width="2.4" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="23.90" y="677.5" ></text>
</g>
<g >
<title>plpgsql_exec_function (37 samples, 0.03%)</title><rect x="1285.2" y="795" width="0.4" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text  x="1288.18" y="805.5" ></text>
</g>
<g >
<title>StartChildProcess (18 samples, 0.02%)</title><rect x="1269.2" y="811" width="0.2" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text  x="1272.22" y="821.5" ></text>
</g>
<g >
<title>_bt_preprocess_keys (96 samples, 0.08%)</title><rect x="26.8" y="459" width="1.2" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text  x="29.85" y="469.5" ></text>
</g>
<g >
<title>choose_custom_plan (83 samples, 0.07%)</title><rect x="503.0" y="699" width="1.0" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text  x="506.02" y="709.5" ></text>
</g>
<g >
<title>recomputeNamespacePath (20 samples, 0.02%)</title><rect x="502.3" y="667" width="0.2" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text  x="505.29" y="677.5" ></text>
</g>
<g >
<title>__slab_free (293 samples, 0.25%)</title><rect x="364.0" y="203" width="3.4" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="367.01" y="213.5" ></text>
</g>
<g >
<title>PageGetItem (185 samples, 0.16%)</title><rect x="1050.5" y="395" width="2.2" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text  x="1053.53" y="405.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (321 samples, 0.27%)</title><rect x="1163.2" y="555" width="3.8" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="1166.25" y="565.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode_prepare (21 samples, 0.02%)</title><rect x="238.5" y="571" width="0.3" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text  x="241.53" y="581.5" ></text>
</g>
<g >
<title>LockBuffer (179 samples, 0.15%)</title><rect x="14.7" y="395" width="2.1" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text  x="17.72" y="405.5" ></text>
</g>
<g >
<title>cmpxchg_double_slab.constprop.0.isra.0 (36 samples, 0.03%)</title><rect x="367.0" y="187" width="0.4" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="369.96" y="197.5" ></text>
</g>
<g >
<title>hash_initial_lookup (33 samples, 0.03%)</title><rect x="638.9" y="491" width="0.3" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="641.86" y="501.5" ></text>
</g>
<g >
<title>superuser_arg (21 samples, 0.02%)</title><rect x="1383.0" y="779" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="1385.98" y="789.5" ></text>
</g>
<g >
<title>list_length (10 samples, 0.01%)</title><rect x="620.2" y="539" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text  x="623.18" y="549.5" ></text>
</g>
<g >
<title>generic_file_write_iter (25 samples, 0.02%)</title><rect x="25.5" y="443" width="0.3" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text  x="28.52" y="453.5" ></text>
</g>
<g >
<title>__alloc_pages (30 samples, 0.03%)</title><rect x="416.9" y="475" width="0.3" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text  x="419.89" y="485.5" ></text>
</g>
<g >
<title>exec_stmts (211 samples, 0.18%)</title><rect x="20.9" y="571" width="2.4" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="23.90" y="581.5" ></text>
</g>
<g >
<title>is_log_level_output (11 samples, 0.01%)</title><rect x="1253.9" y="619" width="0.1" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text  x="1256.90" y="629.5" ></text>
</g>
<g >
<title>_bt_parallel_done (16 samples, 0.01%)</title><rect x="882.7" y="427" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="885.71" y="437.5" ></text>
</g>
<g >
<title>AllocSetDelete (27 samples, 0.02%)</title><rect x="1109.9" y="587" width="0.3" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="1112.89" y="597.5" ></text>
</g>
<g >
<title>TupleDescAttr (12 samples, 0.01%)</title><rect x="1347.1" y="779" width="0.2" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="1350.11" y="789.5" ></text>
</g>
<g >
<title>OidFunctionCall1Coll (39 samples, 0.03%)</title><rect x="23.3" y="715" width="0.5" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text  x="26.34" y="725.5" ></text>
</g>
<g >
<title>_bt_readfirstpage (36 samples, 0.03%)</title><rect x="1387.1" y="475" width="0.4" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text  x="1390.13" y="485.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (26 samples, 0.02%)</title><rect x="24.0" y="795" width="0.3" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="27.01" y="805.5" ></text>
</g>
<g >
<title>InvalidateCatalogSnapshot (10 samples, 0.01%)</title><rect x="1322.9" y="779" width="0.1" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text  x="1325.88" y="789.5" ></text>
</g>
<g >
<title>ExecProcNode (18,522 samples, 15.53%)</title><rect x="877.0" y="619" width="214.3" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="879.99" y="629.5" >ExecProcNode</text>
</g>
<g >
<title>pq_getmsgint (12 samples, 0.01%)</title><rect x="1375.1" y="779" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="1378.11" y="789.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (11 samples, 0.01%)</title><rect x="475.7" y="539" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="478.67" y="549.5" ></text>
</g>
<g >
<title>uint32_hash (78 samples, 0.07%)</title><rect x="639.2" y="507" width="0.9" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="642.24" y="517.5" ></text>
</g>
<g >
<title>CatalogIndexInsert (12 samples, 0.01%)</title><rect x="1276.8" y="443" width="0.1" height="15.0" fill="rgb(229,110,26)" rx="2" ry="2" />
<text  x="1279.76" y="453.5" ></text>
</g>
<g >
<title>CatalogIndexInsert (15 samples, 0.01%)</title><rect x="1283.0" y="427" width="0.2" height="15.0" fill="rgb(229,110,26)" rx="2" ry="2" />
<text  x="1286.03" y="437.5" ></text>
</g>
<g >
<title>ItemPointerGetBlockNumber (26 samples, 0.02%)</title><rect x="916.8" y="443" width="0.3" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text  x="919.77" y="453.5" ></text>
</g>
<g >
<title>LockAcquireExtended (13 samples, 0.01%)</title><rect x="474.1" y="651" width="0.1" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="477.08" y="661.5" ></text>
</g>
<g >
<title>__errno_location@plt (18 samples, 0.02%)</title><rect x="253.9" y="635" width="0.2" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text  x="256.85" y="645.5" ></text>
</g>
<g >
<title>ReleaseSysCache (88 samples, 0.07%)</title><rect x="698.9" y="699" width="1.0" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="701.93" y="709.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (9 samples, 0.01%)</title><rect x="581.5" y="507" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="584.54" y="517.5" ></text>
</g>
<g >
<title>pgss_ExecutorRun (469 samples, 0.39%)</title><rect x="12.0" y="683" width="5.4" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="14.99" y="693.5" ></text>
</g>
<g >
<title>LWLockRelease (10 samples, 0.01%)</title><rect x="643.4" y="507" width="0.1" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="646.42" y="517.5" ></text>
</g>
<g >
<title>do_syscall_64 (13 samples, 0.01%)</title><rect x="662.7" y="459" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="665.70" y="469.5" ></text>
</g>
<g >
<title>disable_statement_timeout (10 samples, 0.01%)</title><rect x="1256.7" y="715" width="0.1" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text  x="1259.69" y="725.5" ></text>
</g>
<g >
<title>dlist_is_empty (15 samples, 0.01%)</title><rect x="1139.3" y="651" width="0.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="1142.27" y="661.5" ></text>
</g>
<g >
<title>AtEOXact_HashTables (16 samples, 0.01%)</title><rect x="1295.9" y="779" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="1298.92" y="789.5" ></text>
</g>
<g >
<title>ExecutorRun (4,568 samples, 3.83%)</title><rect x="26.8" y="699" width="52.9" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text  x="29.85" y="709.5" >Exec..</text>
</g>
<g >
<title>memset@plt (10 samples, 0.01%)</title><rect x="1168.8" y="571" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="1171.82" y="581.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberCatCacheRef (12 samples, 0.01%)</title><rect x="623.9" y="491" width="0.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text  x="626.92" y="501.5" ></text>
</g>
<g >
<title>__wrgsbase_inactive (30 samples, 0.03%)</title><rect x="101.8" y="603" width="0.4" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text  x="104.82" y="613.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (121 samples, 0.10%)</title><rect x="493.4" y="571" width="1.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="496.36" y="581.5" ></text>
</g>
<g >
<title>ResourceOwnerCreate (530 samples, 0.44%)</title><rect x="454.0" y="699" width="6.1" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text  x="456.95" y="709.5" ></text>
</g>
<g >
<title>x64_sys_call (38 samples, 0.03%)</title><rect x="439.1" y="587" width="0.5" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text  x="442.13" y="597.5" ></text>
</g>
<g >
<title>RelationDecrementReferenceCount (62 samples, 0.05%)</title><rect x="1180.0" y="507" width="0.8" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text  x="1183.04" y="517.5" ></text>
</g>
<g >
<title>ResourceOwnerDelete (157 samples, 0.13%)</title><rect x="1217.4" y="667" width="1.8" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text  x="1220.37" y="677.5" ></text>
</g>
<g >
<title>pg_verify_mbstr (76 samples, 0.06%)</title><rect x="706.3" y="683" width="0.9" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="709.29" y="693.5" ></text>
</g>
<g >
<title>pgstat_tracks_backend_bktype (11 samples, 0.01%)</title><rect x="48.9" y="283" width="0.1" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text  x="51.86" y="293.5" ></text>
</g>
<g >
<title>GetPortalByName (187 samples, 0.16%)</title><rect x="449.2" y="699" width="2.2" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text  x="452.24" y="709.5" ></text>
</g>
<g >
<title>SPI_execute_plan_with_paramlist (25 samples, 0.02%)</title><rect x="1129.0" y="443" width="0.3" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="1132.00" y="453.5" ></text>
</g>
<g >
<title>_bt_steppage (105 samples, 0.09%)</title><rect x="881.7" y="459" width="1.2" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="884.68" y="469.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (21 samples, 0.02%)</title><rect x="662.0" y="491" width="0.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="665.00" y="501.5" ></text>
</g>
<g >
<title>BufferDescriptorGetBuffer (23 samples, 0.02%)</title><rect x="1072.4" y="379" width="0.2" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="1075.36" y="389.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (27 samples, 0.02%)</title><rect x="1202.0" y="555" width="0.3" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text  x="1205.00" y="565.5" ></text>
</g>
<g >
<title>palloc (46 samples, 0.04%)</title><rect x="705.4" y="715" width="0.6" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="708.44" y="725.5" ></text>
</g>
<g >
<title>__x64_sys_recvfrom (3,256 samples, 2.73%)</title><rect x="199.7" y="587" width="37.7" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="202.72" y="597.5" >__..</text>
</g>
<g >
<title>ktime_get (46 samples, 0.04%)</title><rect x="230.9" y="475" width="0.6" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="233.94" y="485.5" ></text>
</g>
<g >
<title>lock_sock_nested (54 samples, 0.05%)</title><rect x="203.6" y="523" width="0.6" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text  x="206.59" y="533.5" ></text>
</g>
<g >
<title>ExecShutdownNode (121 samples, 0.10%)</title><rect x="1091.6" y="619" width="1.4" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text  x="1094.56" y="629.5" ></text>
</g>
<g >
<title>BufferDescriptorGetBuffer (485 samples, 0.41%)</title><rect x="67.8" y="283" width="5.6" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="70.79" y="293.5" ></text>
</g>
<g >
<title>_GLOBAL_OFFSET_TABLE_ (31 samples, 0.03%)</title><rect x="1385.6" y="795" width="0.3" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text  x="1388.58" y="805.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (87 samples, 0.07%)</title><rect x="1116.2" y="539" width="1.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="1119.24" y="549.5" ></text>
</g>
<g >
<title>pq_writeint8 (9 samples, 0.01%)</title><rect x="1376.4" y="779" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text  x="1379.45" y="789.5" ></text>
</g>
<g >
<title>CatalogTuplesMultiInsertWithInfo (15 samples, 0.01%)</title><rect x="1282.7" y="443" width="0.1" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text  x="1285.66" y="453.5" ></text>
</g>
<g >
<title>RelationFlushRelation (44 samples, 0.04%)</title><rect x="1276.0" y="379" width="0.5" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="1278.99" y="389.5" ></text>
</g>
<g >
<title>tas (200 samples, 0.17%)</title><rect x="834.2" y="603" width="2.3" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text  x="837.17" y="613.5" ></text>
</g>
<g >
<title>VirtualXactLockTableCleanup (14 samples, 0.01%)</title><rect x="1348.1" y="779" width="0.1" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text  x="1351.09" y="789.5" ></text>
</g>
<g >
<title>__folio_alloc (11 samples, 0.01%)</title><rect x="25.5" y="315" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text  x="28.53" y="325.5" ></text>
</g>
<g >
<title>MemoryChunkSetHdrMask (13 samples, 0.01%)</title><rect x="1125.4" y="635" width="0.2" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="1128.44" y="645.5" ></text>
</g>
<g >
<title>exec_stmts (15 samples, 0.01%)</title><rect x="23.8" y="635" width="0.2" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="26.79" y="645.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (24 samples, 0.02%)</title><rect x="931.8" y="283" width="0.3" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="934.82" y="293.5" ></text>
</g>
<g >
<title>UpdateIndexRelation (17 samples, 0.01%)</title><rect x="1276.7" y="475" width="0.2" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text  x="1279.75" y="485.5" ></text>
</g>
<g >
<title>SearchCatCache1 (125 samples, 0.10%)</title><rect x="622.6" y="523" width="1.5" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="625.65" y="533.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (22 samples, 0.02%)</title><rect x="1386.2" y="795" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="1389.19" y="805.5" ></text>
</g>
<g >
<title>AllocSetAlloc (85 samples, 0.07%)</title><rect x="1291.7" y="779" width="1.0" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1294.69" y="789.5" ></text>
</g>
<g >
<title>_bt_mark_scankey_required (9 samples, 0.01%)</title><rect x="1001.4" y="443" width="0.1" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text  x="1004.44" y="453.5" ></text>
</g>
<g >
<title>__virt_addr_valid (20 samples, 0.02%)</title><rect x="274.6" y="491" width="0.2" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text  x="277.60" y="501.5" ></text>
</g>
<g >
<title>enlargeStringInfo (9 samples, 0.01%)</title><rect x="853.2" y="699" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text  x="856.24" y="709.5" ></text>
</g>
<g >
<title>InputFunctionCall (17 samples, 0.01%)</title><rect x="1321.4" y="779" width="0.2" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="1324.43" y="789.5" ></text>
</g>
<g >
<title>ExecutePlan (20,132 samples, 16.88%)</title><rect x="875.7" y="635" width="232.9" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text  x="878.65" y="645.5" >ExecutePlan</text>
</g>
<g >
<title>spin_delay (70 samples, 0.06%)</title><rect x="485.3" y="555" width="0.8" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="488.34" y="565.5" ></text>
</g>
<g >
<title>pg_class_aclmask_ext (312 samples, 0.26%)</title><rect x="542.4" y="587" width="3.7" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text  x="545.44" y="597.5" ></text>
</g>
<g >
<title>PredicateLockPage (11 samples, 0.01%)</title><rect x="1013.6" y="411" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="1016.65" y="421.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (9 samples, 0.01%)</title><rect x="492.7" y="555" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="495.66" y="565.5" ></text>
</g>
<g >
<title>BufMappingPartitionLock (16 samples, 0.01%)</title><rect x="49.9" y="299" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="52.90" y="309.5" ></text>
</g>
<g >
<title>_bt_first (10 samples, 0.01%)</title><rect x="1284.3" y="619" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="1287.29" y="629.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_or_u32 (35 samples, 0.03%)</title><rect x="1006.9" y="379" width="0.4" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text  x="1009.90" y="389.5" ></text>
</g>
<g >
<title>ReadyForQuery (16,748 samples, 14.04%)</title><rect x="246.4" y="731" width="193.8" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text  x="249.39" y="741.5" >ReadyForQuery</text>
</g>
<g >
<title>pg_atomic_read_u32 (14 samples, 0.01%)</title><rect x="662.2" y="507" width="0.2" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="665.25" y="517.5" ></text>
</g>
<g >
<title>dlist_init (14 samples, 0.01%)</title><rect x="1138.8" y="635" width="0.2" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text  x="1141.80" y="645.5" ></text>
</g>
<g >
<title>lappend (137 samples, 0.11%)</title><rect x="633.2" y="571" width="1.6" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text  x="636.17" y="581.5" ></text>
</g>
<g >
<title>__GI___errno_location (25 samples, 0.02%)</title><rect x="253.6" y="635" width="0.3" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text  x="256.56" y="645.5" ></text>
</g>
<g >
<title>ProcessUtility (13 samples, 0.01%)</title><rect x="1269.6" y="731" width="0.2" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="1272.61" y="741.5" ></text>
</g>
<g >
<title>RelationGetIndexScan (205 samples, 0.17%)</title><rect x="906.6" y="459" width="2.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="909.59" y="469.5" ></text>
</g>
<g >
<title>futex_wait (13 samples, 0.01%)</title><rect x="662.7" y="411" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="665.70" y="421.5" ></text>
</g>
<g >
<title>__usecs_to_jiffies (24 samples, 0.02%)</title><rect x="383.1" y="347" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="386.12" y="357.5" ></text>
</g>
<g >
<title>LWLockAcquire (28 samples, 0.02%)</title><rect x="475.4" y="587" width="0.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="478.35" y="597.5" ></text>
</g>
<g >
<title>select_task_rq_fair (347 samples, 0.29%)</title><rect x="332.7" y="139" width="4.0" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="335.69" y="149.5" ></text>
</g>
<g >
<title>MemoryChunkSetHdrMask (16 samples, 0.01%)</title><rect x="1327.0" y="779" width="0.2" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="1329.98" y="789.5" ></text>
</g>
<g >
<title>LWLockRelease (65 samples, 0.05%)</title><rect x="1010.0" y="363" width="0.7" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="1012.96" y="373.5" ></text>
</g>
<g >
<title>exec_stmt_commit (171 samples, 0.14%)</title><rect x="1127.0" y="459" width="2.0" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text  x="1130.02" y="469.5" ></text>
</g>
<g >
<title>tas (22 samples, 0.02%)</title><rect x="486.7" y="587" width="0.2" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text  x="489.66" y="597.5" ></text>
</g>
<g >
<title>ExecInitInterpreter (42 samples, 0.04%)</title><rect x="1309.0" y="779" width="0.5" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="1312.03" y="789.5" ></text>
</g>
<g >
<title>hash_seq_term (27 samples, 0.02%)</title><rect x="1249.2" y="587" width="0.4" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="1252.24" y="597.5" ></text>
</g>
<g >
<title>AtStart_Cache (14 samples, 0.01%)</title><rect x="1268.9" y="651" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="1271.91" y="661.5" ></text>
</g>
<g >
<title>finalize_in_progress_typentries (34 samples, 0.03%)</title><rect x="1357.6" y="779" width="0.4" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text  x="1360.56" y="789.5" ></text>
</g>
<g >
<title>index_create (30 samples, 0.03%)</title><rect x="1389.1" y="507" width="0.3" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="1392.10" y="517.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (211 samples, 0.18%)</title><rect x="20.9" y="491" width="2.4" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="23.90" y="501.5" ></text>
</g>
<g >
<title>AllocSetAlloc (32 samples, 0.03%)</title><rect x="581.4" y="523" width="0.3" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="584.36" y="533.5" ></text>
</g>
<g >
<title>RemoveRelations (37 samples, 0.03%)</title><rect x="1272.3" y="411" width="0.4" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text  x="1275.27" y="421.5" ></text>
</g>
<g >
<title>s_lock (938 samples, 0.79%)</title><rect x="475.8" y="587" width="10.9" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="478.80" y="597.5" ></text>
</g>
<g >
<title>SearchCatCache1 (183 samples, 0.15%)</title><rect x="543.8" y="555" width="2.1" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="546.81" y="565.5" ></text>
</g>
<g >
<title>ExecuteDoStmt (697 samples, 0.58%)</title><rect x="1275.9" y="779" width="8.0" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text  x="1278.86" y="789.5" ></text>
</g>
<g >
<title>ExecJustAssignScanVar (379 samples, 0.32%)</title><rect x="897.4" y="475" width="4.4" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text  x="900.43" y="485.5" ></text>
</g>
<g >
<title>AtEOXact_on_commit_actions (11 samples, 0.01%)</title><rect x="1300.0" y="779" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text  x="1302.97" y="789.5" ></text>
</g>
<g >
<title>string_compare (18 samples, 0.02%)</title><rect x="850.1" y="667" width="0.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text  x="853.10" y="677.5" ></text>
</g>
<g >
<title>CleanQuerytext (19 samples, 0.02%)</title><rect x="1303.8" y="779" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text  x="1306.79" y="789.5" ></text>
</g>
<g >
<title>ProcessInvalidationMessages (24 samples, 0.02%)</title><rect x="18.0" y="731" width="0.2" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="20.96" y="741.5" ></text>
</g>
<g >
<title>InstrAlloc (427 samples, 0.36%)</title><rect x="526.9" y="667" width="5.0" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text  x="529.95" y="677.5" ></text>
</g>
<g >
<title>InitBufferTag (51 samples, 0.04%)</title><rect x="31.8" y="299" width="0.6" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text  x="34.77" y="309.5" ></text>
</g>
<g >
<title>__x64_sys_unlink (14 samples, 0.01%)</title><rect x="1128.8" y="251" width="0.2" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text  x="1131.80" y="261.5" ></text>
</g>
<g >
<title>forbidden_in_wal_sender (17 samples, 0.01%)</title><rect x="1256.8" y="731" width="0.2" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text  x="1259.81" y="741.5" ></text>
</g>
<g >
<title>calc_bucket (9 samples, 0.01%)</title><rect x="450.3" y="635" width="0.1" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text  x="453.33" y="645.5" ></text>
</g>
<g >
<title>ttwu_queue_wakelist (421 samples, 0.35%)</title><rect x="338.7" y="139" width="4.9" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text  x="341.73" y="149.5" ></text>
</g>
<g >
<title>exec_toplevel_block (37 samples, 0.03%)</title><rect x="1285.2" y="779" width="0.4" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="1288.18" y="789.5" ></text>
</g>
<g >
<title>ExecutorRun (469 samples, 0.39%)</title><rect x="12.0" y="699" width="5.4" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text  x="14.99" y="709.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (22 samples, 0.02%)</title><rect x="662.0" y="507" width="0.2" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="664.99" y="517.5" ></text>
</g>
<g >
<title>BufferAlloc (34 samples, 0.03%)</title><rect x="1301.5" y="779" width="0.4" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text  x="1304.52" y="789.5" ></text>
</g>
<g >
<title>RelationBuildDesc (18 samples, 0.02%)</title><rect x="25.1" y="587" width="0.2" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="28.14" y="597.5" ></text>
</g>
<g >
<title>ResourceOwnerEnlarge (10 samples, 0.01%)</title><rect x="938.6" y="315" width="0.1" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text  x="941.62" y="325.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (10 samples, 0.01%)</title><rect x="1369.6" y="779" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="1372.62" y="789.5" ></text>
</g>
<g >
<title>LWLockWaitListLock (19 samples, 0.02%)</title><rect x="662.4" y="507" width="0.3" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="665.43" y="517.5" ></text>
</g>
<g >
<title>FunctionCall2Coll (129 samples, 0.11%)</title><rect x="1066.5" y="395" width="1.5" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="1069.53" y="405.5" ></text>
</g>
<g >
<title>tcp_established_options (31 samples, 0.03%)</title><rect x="420.9" y="475" width="0.3" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="423.88" y="485.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (56 samples, 0.05%)</title><rect x="663.3" y="491" width="0.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="666.35" y="501.5" ></text>
</g>
<g >
<title>exec_stmts (65 samples, 0.05%)</title><rect x="79.7" y="523" width="0.8" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="82.71" y="533.5" ></text>
</g>
<g >
<title>SPI_execute_plan_with_paramlist (81 samples, 0.07%)</title><rect x="1271.8" y="523" width="0.9" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="1274.77" y="533.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (11 samples, 0.01%)</title><rect x="475.7" y="555" width="0.1" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="478.67" y="565.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (21 samples, 0.02%)</title><rect x="1129.0" y="395" width="0.3" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="1132.04" y="405.5" ></text>
</g>
<g >
<title>spin_delay (101 samples, 0.08%)</title><rect x="655.1" y="475" width="1.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="658.12" y="485.5" ></text>
</g>
<g >
<title>UnpinBuffer (107 samples, 0.09%)</title><rect x="1008.5" y="379" width="1.2" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text  x="1011.48" y="389.5" ></text>
</g>
<g >
<title>AtCCI_LocalCache (24 samples, 0.02%)</title><rect x="18.0" y="763" width="0.2" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text  x="20.96" y="773.5" ></text>
</g>
<g >
<title>LWLockAcquire (462 samples, 0.39%)</title><rect x="683.6" y="667" width="5.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="686.57" y="677.5" ></text>
</g>
<g >
<title>_find_next_and_bit (120 samples, 0.10%)</title><rect x="175.0" y="411" width="1.4" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="178.00" y="421.5" ></text>
</g>
<g >
<title>message_level_is_interesting (30 samples, 0.03%)</title><rect x="845.3" y="651" width="0.3" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text  x="848.27" y="661.5" ></text>
</g>
<g >
<title>fmgr_info_cxt_security (74 samples, 0.06%)</title><rect x="516.6" y="683" width="0.8" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="519.58" y="693.5" ></text>
</g>
<g >
<title>CommandCounterIncrement (24 samples, 0.02%)</title><rect x="18.0" y="779" width="0.2" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="20.96" y="789.5" ></text>
</g>
<g >
<title>string_hash (101 samples, 0.08%)</title><rect x="850.3" y="683" width="1.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="853.35" y="693.5" ></text>
</g>
<g >
<title>tas (70 samples, 0.06%)</title><rect x="656.3" y="491" width="0.9" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text  x="659.35" y="501.5" ></text>
</g>
<g >
<title>pgss_ExecutorRun (21,135 samples, 17.72%)</title><rect x="873.2" y="667" width="244.6" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="876.24" y="677.5" >pgss_ExecutorRun</text>
</g>
<g >
<title>ProcessUtility (46 samples, 0.04%)</title><rect x="1389.1" y="587" width="0.5" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="1392.10" y="597.5" ></text>
</g>
<g >
<title>exec_stmt_fori (47 samples, 0.04%)</title><rect x="1272.7" y="779" width="0.6" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text  x="1275.71" y="789.5" ></text>
</g>
<g >
<title>index_getnext_slot (469 samples, 0.39%)</title><rect x="12.0" y="523" width="5.4" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="14.99" y="533.5" ></text>
</g>
<g >
<title>AllocSetAlloc (162 samples, 0.14%)</title><rect x="1258.9" y="683" width="1.9" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1261.88" y="693.5" ></text>
</g>
<g >
<title>CommitTransactionCommand (168 samples, 0.14%)</title><rect x="1127.0" y="411" width="2.0" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" />
<text  x="1130.02" y="421.5" ></text>
</g>
<g >
<title>ExprEvalPushStep (41 samples, 0.03%)</title><rect x="614.1" y="587" width="0.5" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="617.10" y="597.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (280 samples, 0.23%)</title><rect x="700.3" y="667" width="3.3" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="703.33" y="677.5" ></text>
</g>
<g >
<title>AtEOXact_MultiXact (29 samples, 0.02%)</title><rect x="1297.1" y="779" width="0.3" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text  x="1300.07" y="789.5" ></text>
</g>
<g >
<title>ExecIndexScan (469 samples, 0.39%)</title><rect x="12.0" y="603" width="5.4" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="14.99" y="613.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (767 samples, 0.64%)</title><rect x="1275.9" y="811" width="8.8" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="1278.86" y="821.5" ></text>
</g>
<g >
<title>_raw_spin_lock (26 samples, 0.02%)</title><rect x="179.2" y="443" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="182.19" y="453.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (24 samples, 0.02%)</title><rect x="1284.9" y="587" width="0.3" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="1287.90" y="597.5" ></text>
</g>
<g >
<title>UnlockBufHdr (31 samples, 0.03%)</title><rect x="1007.5" y="395" width="0.4" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="1010.50" y="405.5" ></text>
</g>
<g >
<title>LocalExecuteInvalidationMessage (9 samples, 0.01%)</title><rect x="1389.1" y="427" width="0.1" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="1392.10" y="437.5" ></text>
</g>
<g >
<title>PortalRunMulti (39 samples, 0.03%)</title><rect x="23.3" y="811" width="0.5" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="26.34" y="821.5" ></text>
</g>
<g >
<title>enlargeStringInfo (15 samples, 0.01%)</title><rect x="1102.0" y="587" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text  x="1104.98" y="597.5" ></text>
</g>
<g >
<title>__netif_rx (218 samples, 0.18%)</title><rect x="390.1" y="379" width="2.5" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text  x="393.07" y="389.5" ></text>
</g>
<g >
<title>AtEOXact_Namespace (10 samples, 0.01%)</title><rect x="1139.0" y="667" width="0.1" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="1141.96" y="677.5" ></text>
</g>
<g >
<title>plpgsql_inline_handler (65 samples, 0.05%)</title><rect x="79.7" y="587" width="0.8" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="82.71" y="597.5" ></text>
</g>
<g >
<title>MemoryContextSetParent (28 samples, 0.02%)</title><rect x="1191.8" y="507" width="0.3" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="1194.82" y="517.5" ></text>
</g>
<g >
<title>pfree (11 samples, 0.01%)</title><rect x="1288.9" y="779" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1291.92" y="789.5" ></text>
</g>
<g >
<title>clear_bhb_loop (77 samples, 0.06%)</title><rect x="102.2" y="603" width="0.9" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="105.18" y="613.5" ></text>
</g>
<g >
<title>ExecScanExtended (85 samples, 0.07%)</title><rect x="1387.1" y="587" width="1.0" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="1390.13" y="597.5" ></text>
</g>
<g >
<title>pfree (257 samples, 0.22%)</title><rect x="1181.7" y="491" width="3.0" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1184.71" y="501.5" ></text>
</g>
<g >
<title>FileZero (25 samples, 0.02%)</title><rect x="25.5" y="587" width="0.3" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text  x="28.52" y="597.5" ></text>
</g>
<g >
<title>pgss_store (2,260 samples, 1.90%)</title><rect x="1148.6" y="587" width="26.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text  x="1151.60" y="597.5" >p..</text>
</g>
<g >
<title>update_blocked_averages (201 samples, 0.17%)</title><rect x="179.7" y="459" width="2.4" height="15.0" fill="rgb(240,163,38)" rx="2" ry="2" />
<text  x="182.72" y="469.5" ></text>
</g>
<g >
<title>exec_stmts (39 samples, 0.03%)</title><rect x="23.3" y="619" width="0.5" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="26.34" y="629.5" ></text>
</g>
<g >
<title>LWLockWaitListLock (18 samples, 0.02%)</title><rect x="492.4" y="587" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="495.41" y="597.5" ></text>
</g>
<g >
<title>ktime_get (29 samples, 0.02%)</title><rect x="377.1" y="203" width="0.4" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="380.12" y="213.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (153 samples, 0.13%)</title><rect x="689.3" y="603" width="1.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="692.31" y="613.5" ></text>
</g>
<g >
<title>MemoryContextReset (10 samples, 0.01%)</title><rect x="1090.7" y="539" width="0.1" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="1093.71" y="549.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (6,780 samples, 5.69%)</title><rect x="303.5" y="315" width="78.4" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text  x="306.46" y="325.5" >__netif..</text>
</g>
<g >
<title>shmem_alloc_hugefolio (11 samples, 0.01%)</title><rect x="1272.8" y="187" width="0.1" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text  x="1275.81" y="197.5" ></text>
</g>
<g >
<title>RelationBuildTupleDesc (13 samples, 0.01%)</title><rect x="18.0" y="635" width="0.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="20.96" y="645.5" ></text>
</g>
<g >
<title>ItemPointerGetBlockNumberNoCheck (15 samples, 0.01%)</title><rect x="1323.9" y="779" width="0.1" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text  x="1326.86" y="789.5" ></text>
</g>
<g >
<title>RelationDecrementReferenceCount (12 samples, 0.01%)</title><rect x="1338.7" y="779" width="0.1" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text  x="1341.68" y="789.5" ></text>
</g>
<g >
<title>__dev_queue_xmit (9,296 samples, 7.80%)</title><rect x="290.2" y="427" width="107.6" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text  x="293.19" y="437.5" >__dev_queue..</text>
</g>
<g >
<title>LockBuffer (149 samples, 0.12%)</title><rect x="917.2" y="443" width="1.7" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text  x="920.17" y="453.5" ></text>
</g>
<g >
<title>apparmor_ip_postroute (25 samples, 0.02%)</title><rect x="399.9" y="411" width="0.3" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text  x="402.91" y="421.5" ></text>
</g>
<g >
<title>InstrEndLoop (20 samples, 0.02%)</title><rect x="1148.3" y="587" width="0.3" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text  x="1151.33" y="597.5" ></text>
</g>
<g >
<title>BufferDescriptorGetBuffer (221 samples, 0.19%)</title><rect x="45.3" y="315" width="2.6" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="48.32" y="325.5" ></text>
</g>
<g >
<title>__mod_memcg_state (72 samples, 0.06%)</title><rect x="432.5" y="459" width="0.8" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="435.45" y="469.5" ></text>
</g>
<g >
<title>do_epoll_wait (9 samples, 0.01%)</title><rect x="1269.3" y="651" width="0.1" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text  x="1272.33" y="661.5" ></text>
</g>
<g >
<title>should_output_to_server (16 samples, 0.01%)</title><rect x="1253.8" y="635" width="0.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="1256.85" y="645.5" ></text>
</g>
<g >
<title>__memset_evex_unaligned_erms (38 samples, 0.03%)</title><rect x="1162.7" y="571" width="0.4" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="1165.71" y="581.5" ></text>
</g>
<g >
<title>BufferGetBlock (11 samples, 0.01%)</title><rect x="1077.3" y="379" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="1080.33" y="389.5" ></text>
</g>
<g >
<title>AtEOXact_Inval (29 samples, 0.02%)</title><rect x="1127.0" y="363" width="0.4" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text  x="1130.02" y="373.5" ></text>
</g>
<g >
<title>pgstat_tracks_backend_bktype (12 samples, 0.01%)</title><rect x="1374.1" y="779" width="0.2" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text  x="1377.11" y="789.5" ></text>
</g>
<g >
<title>list_member_oid (11 samples, 0.01%)</title><rect x="724.2" y="587" width="0.1" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text  x="727.17" y="597.5" ></text>
</g>
<g >
<title>AllocSetFreeIndex (9 samples, 0.01%)</title><rect x="694.0" y="619" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="697.00" y="629.5" ></text>
</g>
<g >
<title>afterTriggerMarkEvents (20 samples, 0.02%)</title><rect x="1351.8" y="779" width="0.3" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text  x="1354.85" y="789.5" ></text>
</g>
<g >
<title>index_build (31 samples, 0.03%)</title><rect x="1272.8" y="539" width="0.3" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text  x="1275.78" y="549.5" ></text>
</g>
<g >
<title>ExecScanFetch (72 samples, 0.06%)</title><rect x="11.1" y="587" width="0.8" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text  x="14.10" y="597.5" ></text>
</g>
<g >
<title>object_aclcheck (39 samples, 0.03%)</title><rect x="1367.9" y="779" width="0.4" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text  x="1370.86" y="789.5" ></text>
</g>
<g >
<title>__list_del_entry_valid (19 samples, 0.02%)</title><rect x="405.2" y="443" width="0.2" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text  x="408.19" y="453.5" ></text>
</g>
<g >
<title>ResourceOwnerRemember (30 samples, 0.03%)</title><rect x="630.9" y="523" width="0.4" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="633.95" y="533.5" ></text>
</g>
<g >
<title>exec_toplevel_block (27 samples, 0.02%)</title><rect x="1284.9" y="795" width="0.3" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="1287.87" y="805.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (20 samples, 0.02%)</title><rect x="1125.4" y="651" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="1128.36" y="661.5" ></text>
</g>
<g >
<title>LWLockDisownInternal (12 samples, 0.01%)</title><rect x="1083.4" y="363" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="1086.43" y="373.5" ></text>
</g>
<g >
<title>pq_startmsgread (10 samples, 0.01%)</title><rect x="1376.2" y="779" width="0.1" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text  x="1379.23" y="789.5" ></text>
</g>
<g >
<title>exec_stmts (23 samples, 0.02%)</title><rect x="24.0" y="619" width="0.3" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="27.01" y="629.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (124 samples, 0.10%)</title><rect x="37.3" y="235" width="1.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="40.31" y="245.5" ></text>
</g>
<g >
<title>ReleasePredicateLocks (10 samples, 0.01%)</title><rect x="1219.4" y="651" width="0.1" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text  x="1222.42" y="661.5" ></text>
</g>
<g >
<title>LockRelationOid (2,387 samples, 2.00%)</title><rect x="474.2" y="651" width="27.6" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="477.23" y="661.5" >L..</text>
</g>
<g >
<title>__kmalloc_node_track_caller (463 samples, 0.39%)</title><rect x="424.0" y="459" width="5.3" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="426.98" y="469.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberSnapshot (30 samples, 0.03%)</title><rect x="681.8" y="619" width="0.4" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text  x="684.83" y="629.5" ></text>
</g>
<g >
<title>int4hashfast (21 samples, 0.02%)</title><rect x="594.1" y="507" width="0.2" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text  x="597.07" y="517.5" ></text>
</g>
<g >
<title>ExprEvalPushStep (23 samples, 0.02%)</title><rect x="582.8" y="571" width="0.3" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="585.79" y="581.5" ></text>
</g>
<g >
<title>ExecDropStmt (9 samples, 0.01%)</title><rect x="1389.7" y="779" width="0.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="1392.75" y="789.5" ></text>
</g>
<g >
<title>RemoveLocalLock (9 samples, 0.01%)</title><rect x="1249.7" y="619" width="0.1" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text  x="1252.67" y="629.5" ></text>
</g>
<g >
<title>WaitLatch (10 samples, 0.01%)</title><rect x="1269.3" y="763" width="0.1" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text  x="1272.32" y="773.5" ></text>
</g>
<g >
<title>internal_putbytes (68 samples, 0.06%)</title><rect x="249.9" y="683" width="0.8" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="252.90" y="693.5" ></text>
</g>
<g >
<title>ExtendBufferedRelCommon (25 samples, 0.02%)</title><rect x="25.5" y="651" width="0.3" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text  x="28.52" y="661.5" ></text>
</g>
<g >
<title>tcp_established_options (14 samples, 0.01%)</title><rect x="403.5" y="459" width="0.2" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="406.49" y="469.5" ></text>
</g>
<g >
<title>tts_virtual_clear (30 samples, 0.03%)</title><rect x="877.7" y="539" width="0.4" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="880.73" y="549.5" ></text>
</g>
<g >
<title>MemoryContextReset (152 samples, 0.13%)</title><rect x="1094.1" y="603" width="1.8" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="1097.11" y="613.5" ></text>
</g>
<g >
<title>StartReadBuffer (1,819 samples, 1.53%)</title><rect x="28.0" y="363" width="21.0" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="30.96" y="373.5" ></text>
</g>
<g >
<title>AfterTriggerFireDeferred (12 samples, 0.01%)</title><rect x="1130.8" y="683" width="0.2" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text  x="1133.85" y="693.5" ></text>
</g>
<g >
<title>btgettuple (85 samples, 0.07%)</title><rect x="1387.1" y="507" width="1.0" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="1390.13" y="517.5" ></text>
</g>
<g >
<title>perform_spin_delay (114 samples, 0.10%)</title><rect x="655.0" y="491" width="1.3" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text  x="657.97" y="501.5" ></text>
</g>
<g >
<title>[anon] (35 samples, 0.03%)</title><rect x="1384.8" y="795" width="0.4" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="1387.82" y="805.5" ></text>
</g>
<g >
<title>update_dl_rq_load_avg (32 samples, 0.03%)</title><rect x="180.9" y="443" width="0.3" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text  x="183.86" y="453.5" ></text>
</g>
<g >
<title>pq_beginmessage_reuse (32 samples, 0.03%)</title><rect x="856.4" y="699" width="0.4" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text  x="859.43" y="709.5" ></text>
</g>
<g >
<title>getTypeInputInfo (507 samples, 0.43%)</title><rect x="698.1" y="715" width="5.9" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="701.08" y="725.5" ></text>
</g>
<g >
<title>ItemPointerGetOffsetNumberNoCheck (17 samples, 0.01%)</title><rect x="1037.0" y="379" width="0.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text  x="1040.01" y="389.5" ></text>
</g>
<g >
<title>RemoveRelations (58 samples, 0.05%)</title><rect x="79.8" y="347" width="0.7" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text  x="82.79" y="357.5" ></text>
</g>
<g >
<title>AllocSetAlloc (39 samples, 0.03%)</title><rect x="572.5" y="507" width="0.4" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="575.50" y="517.5" ></text>
</g>
<g >
<title>resetStringInfo (79 samples, 0.07%)</title><rect x="245.2" y="683" width="0.9" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="248.15" y="693.5" ></text>
</g>
<g >
<title>printtup_destroy (56 samples, 0.05%)</title><rect x="1123.4" y="715" width="0.6" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text  x="1126.35" y="725.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (71 samples, 0.06%)</title><rect x="391.6" y="331" width="0.8" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text  x="394.59" y="341.5" ></text>
</g>
<g >
<title>PortalRun (85 samples, 0.07%)</title><rect x="1387.1" y="747" width="1.0" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="1390.13" y="757.5" ></text>
</g>
<g >
<title>CommandEndInvalidationMessages (23 samples, 0.02%)</title><rect x="24.5" y="731" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="27.48" y="741.5" ></text>
</g>
<g >
<title>MemoryContextAllocZero (476 samples, 0.40%)</title><rect x="454.5" y="683" width="5.5" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="457.47" y="693.5" ></text>
</g>
<g >
<title>AllocSetAlloc (32 samples, 0.03%)</title><rect x="693.7" y="635" width="0.4" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="696.73" y="645.5" ></text>
</g>
<g >
<title>RelationBuildTupleDesc (21 samples, 0.02%)</title><rect x="1283.3" y="283" width="0.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="1286.27" y="293.5" ></text>
</g>
<g >
<title>AllocSetFree (22 samples, 0.02%)</title><rect x="1185.5" y="459" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="1188.47" y="469.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (16 samples, 0.01%)</title><rect x="680.1" y="587" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="683.07" y="597.5" ></text>
</g>
<g >
<title>exec_stmts (11 samples, 0.01%)</title><rect x="19.4" y="731" width="0.1" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="22.38" y="741.5" ></text>
</g>
<g >
<title>ExecCloseRangeTableRelations (108 samples, 0.09%)</title><rect x="1175.5" y="555" width="1.2" height="15.0" fill="rgb(216,50,12)" rx="2" ry="2" />
<text  x="1178.46" y="565.5" ></text>
</g>
<g >
<title>index_getnext_tid (10 samples, 0.01%)</title><rect x="1284.3" y="651" width="0.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="1287.29" y="661.5" ></text>
</g>
<g >
<title>__x64_sys_futex (13 samples, 0.01%)</title><rect x="662.7" y="443" width="0.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="665.70" y="453.5" ></text>
</g>
<g >
<title>ResourceOwnerReleaseAll (24 samples, 0.02%)</title><rect x="1250.3" y="635" width="0.3" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text  x="1253.28" y="645.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (14 samples, 0.01%)</title><rect x="865.0" y="651" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="868.01" y="661.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (12 samples, 0.01%)</title><rect x="602.7" y="507" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="605.71" y="517.5" ></text>
</g>
<g >
<title>pq_getbyte (12,575 samples, 10.54%)</title><rect x="94.1" y="699" width="145.5" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="97.12" y="709.5" >pq_getbyte</text>
</g>
<g >
<title>dlist_is_empty (156 samples, 0.13%)</title><rect x="1242.9" y="603" width="1.8" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="1245.86" y="613.5" ></text>
</g>
<g >
<title>deleteObjectsInList (14 samples, 0.01%)</title><rect x="23.1" y="395" width="0.1" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="26.08" y="405.5" ></text>
</g>
<g >
<title>RemoveRelations (54 samples, 0.05%)</title><rect x="1284.0" y="747" width="0.6" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text  x="1287.01" y="757.5" ></text>
</g>
<g >
<title>AllocSetAlloc (40 samples, 0.03%)</title><rect x="584.5" y="539" width="0.4" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="587.48" y="549.5" ></text>
</g>
<g >
<title>GetPortalByName (181 samples, 0.15%)</title><rect x="868.0" y="715" width="2.1" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text  x="870.98" y="725.5" ></text>
</g>
<g >
<title>index_beginscan_internal (744 samples, 0.62%)</title><rect x="903.4" y="491" width="8.6" height="15.0" fill="rgb(252,217,52)" rx="2" ry="2" />
<text  x="906.38" y="501.5" ></text>
</g>
<g >
<title>GetPrivateRefCountEntry (21 samples, 0.02%)</title><rect x="935.2" y="299" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="938.18" y="309.5" ></text>
</g>
<g >
<title>index_create (48 samples, 0.04%)</title><rect x="24.5" y="779" width="0.5" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="27.48" y="789.5" ></text>
</g>
<g >
<title>EndCommand (220 samples, 0.18%)</title><rect x="865.3" y="715" width="2.5" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="868.27" y="725.5" ></text>
</g>
<g >
<title>ExecuteDoStmt (211 samples, 0.18%)</title><rect x="20.9" y="715" width="2.4" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text  x="23.90" y="725.5" ></text>
</g>
<g >
<title>hash_seq_init (146 samples, 0.12%)</title><rect x="1207.4" y="651" width="1.7" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text  x="1210.44" y="661.5" ></text>
</g>
<g >
<title>ProcessUtility (13 samples, 0.01%)</title><rect x="1269.6" y="795" width="0.2" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="1272.61" y="805.5" ></text>
</g>
<g >
<title>TupleDescAttr (17 samples, 0.01%)</title><rect x="626.6" y="523" width="0.2" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="629.58" y="533.5" ></text>
</g>
<g >
<title>do_futex (11 samples, 0.01%)</title><rect x="1232.1" y="491" width="0.2" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="1235.15" y="501.5" ></text>
</g>
<g >
<title>LockBuffer (159 samples, 0.13%)</title><rect x="1081.1" y="395" width="1.8" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text  x="1084.10" y="405.5" ></text>
</g>
<g >
<title>tcp_release_cb (10 samples, 0.01%)</title><rect x="204.8" y="507" width="0.1" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="207.80" y="517.5" ></text>
</g>
<g >
<title>ProcessUtility (46 samples, 0.04%)</title><rect x="1272.7" y="635" width="0.6" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="1275.72" y="645.5" ></text>
</g>
<g >
<title>SysCacheInvalidate (10 samples, 0.01%)</title><rect x="642.4" y="507" width="0.1" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text  x="645.40" y="517.5" ></text>
</g>
<g >
<title>ReadBufferExtended (1,773 samples, 1.49%)</title><rect x="919.2" y="411" width="20.5" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text  x="922.19" y="421.5" ></text>
</g>
<g >
<title>plpgsql_inline_handler (23 samples, 0.02%)</title><rect x="24.0" y="715" width="0.3" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="27.01" y="725.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (9 samples, 0.01%)</title><rect x="292.9" y="379" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text  x="295.93" y="389.5" ></text>
</g>
<g >
<title>perform_spin_delay (12 samples, 0.01%)</title><rect x="1128.3" y="267" width="0.1" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text  x="1131.28" y="277.5" ></text>
</g>
<g >
<title>RelationBuildDesc (23 samples, 0.02%)</title><rect x="24.5" y="635" width="0.2" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="27.48" y="645.5" ></text>
</g>
<g >
<title>_SPI_execute_plan (39 samples, 0.03%)</title><rect x="23.3" y="539" width="0.5" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="26.34" y="549.5" ></text>
</g>
<g >
<title>LockAcquireExtended (1,203 samples, 1.01%)</title><rect x="487.0" y="635" width="13.9" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="489.99" y="645.5" ></text>
</g>
<g >
<title>AcceptInvalidationMessages (9,787 samples, 8.21%)</title><rect x="723.2" y="651" width="113.3" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text  x="726.23" y="661.5" >AcceptInval..</text>
</g>
<g >
<title>do_faccessat (9 samples, 0.01%)</title><rect x="1272.0" y="331" width="0.1" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text  x="1274.98" y="341.5" ></text>
</g>
<g >
<title>DefineRelation (38 samples, 0.03%)</title><rect x="1282.8" y="507" width="0.5" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="1285.83" y="517.5" ></text>
</g>
<g >
<title>exec_toplevel_block (46 samples, 0.04%)</title><rect x="1389.1" y="715" width="0.5" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="1392.10" y="725.5" ></text>
</g>
<g >
<title>AcceptInvalidationMessages (24 samples, 0.02%)</title><rect x="1274.1" y="795" width="0.2" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text  x="1277.05" y="805.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (186 samples, 0.16%)</title><rect x="1083.7" y="331" width="2.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="1086.73" y="341.5" ></text>
</g>
<g >
<title>mod_memcg_state (78 samples, 0.07%)</title><rect x="212.2" y="475" width="0.9" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="215.17" y="485.5" ></text>
</g>
<g >
<title>smgrdestroyall (22 samples, 0.02%)</title><rect x="1141.5" y="651" width="0.3" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="1144.51" y="661.5" ></text>
</g>
<g >
<title>ProcessInvalidationMessages (12 samples, 0.01%)</title><rect x="18.3" y="715" width="0.1" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="21.26" y="725.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (10 samples, 0.01%)</title><rect x="705.8" y="683" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="708.84" y="693.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (697 samples, 0.58%)</title><rect x="1275.9" y="555" width="8.0" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="1278.86" y="565.5" ></text>
</g>
<g >
<title>systable_getnext (10 samples, 0.01%)</title><rect x="1276.2" y="315" width="0.1" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="1279.18" y="325.5" ></text>
</g>
<g >
<title>exec_stmt_execsql (23 samples, 0.02%)</title><rect x="24.0" y="603" width="0.3" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="27.01" y="613.5" ></text>
</g>
<g >
<title>AllocSetFree (38 samples, 0.03%)</title><rect x="1000.8" y="411" width="0.4" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="1003.77" y="421.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (14 samples, 0.01%)</title><rect x="634.4" y="507" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="637.41" y="517.5" ></text>
</g>
<g >
<title>should_output_to_client (9 samples, 0.01%)</title><rect x="697.8" y="699" width="0.1" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text  x="700.83" y="709.5" ></text>
</g>
<g >
<title>ReleaseBuffer (127 samples, 0.11%)</title><rect x="1008.2" y="395" width="1.5" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text  x="1011.24" y="405.5" ></text>
</g>
<g >
<title>BufferDescriptorGetBuffer (9 samples, 0.01%)</title><rect x="1008.6" y="363" width="0.1" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="1011.57" y="373.5" ></text>
</g>
<g >
<title>pfree (51 samples, 0.04%)</title><rect x="517.9" y="683" width="0.6" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="520.90" y="693.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (24 samples, 0.02%)</title><rect x="1284.9" y="571" width="0.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="1287.90" y="581.5" ></text>
</g>
<g >
<title>AllocSetAlloc (44 samples, 0.04%)</title><rect x="453.3" y="683" width="0.5" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="456.28" y="693.5" ></text>
</g>
<g >
<title>RemoveRelations (33 samples, 0.03%)</title><rect x="25.1" y="779" width="0.4" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text  x="28.14" y="789.5" ></text>
</g>
<g >
<title>do_epoll_wait (7,202 samples, 6.04%)</title><rect x="105.6" y="555" width="83.3" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text  x="108.57" y="565.5" >do_epoll..</text>
</g>
<g >
<title>put_prev_task_fair (86 samples, 0.07%)</title><rect x="186.9" y="491" width="1.0" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text  x="189.90" y="501.5" ></text>
</g>
<g >
<title>pq_writeint32 (54 samples, 0.05%)</title><rect x="858.6" y="699" width="0.6" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text  x="861.56" y="709.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (32 samples, 0.03%)</title><rect x="496.2" y="555" width="0.3" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="499.16" y="565.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberRelationRef (20 samples, 0.02%)</title><rect x="670.5" y="539" width="0.3" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="673.54" y="549.5" ></text>
</g>
<g >
<title>__fget_light (50 samples, 0.04%)</title><rect x="112.6" y="539" width="0.5" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="115.56" y="549.5" ></text>
</g>
<g >
<title>AllocSetFree (36 samples, 0.03%)</title><rect x="598.9" y="571" width="0.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="601.95" y="581.5" ></text>
</g>
<g >
<title>BufTagSetRelForkDetails (27 samples, 0.02%)</title><rect x="57.8" y="283" width="0.4" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text  x="60.85" y="293.5" ></text>
</g>
<g >
<title>hash_seq_term (12 samples, 0.01%)</title><rect x="1361.8" y="779" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="1364.76" y="789.5" ></text>
</g>
<g >
<title>generic_perform_write (25 samples, 0.02%)</title><rect x="25.5" y="411" width="0.3" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text  x="28.52" y="421.5" ></text>
</g>
<g >
<title>exprTypmod (32 samples, 0.03%)</title><rect x="628.5" y="555" width="0.4" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text  x="631.55" y="565.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (11 samples, 0.01%)</title><rect x="1292.7" y="779" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="1295.67" y="789.5" ></text>
</g>
<g >
<title>ProcessInvalidationMessages (9 samples, 0.01%)</title><rect x="1389.1" y="443" width="0.1" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="1392.10" y="453.5" ></text>
</g>
<g >
<title>tcp_poll (287 samples, 0.24%)</title><rect x="124.1" y="507" width="3.3" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="127.10" y="517.5" ></text>
</g>
<g >
<title>GetMemoryChunkMethodID (24 samples, 0.02%)</title><rect x="1194.5" y="523" width="0.3" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text  x="1197.51" y="533.5" ></text>
</g>
<g >
<title>exec_stmts (11 samples, 0.01%)</title><rect x="20.7" y="715" width="0.1" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="23.66" y="725.5" ></text>
</g>
<g >
<title>_bt_relandgetbuf (35 samples, 0.03%)</title><rect x="11.5" y="475" width="0.4" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text  x="14.53" y="485.5" ></text>
</g>
<g >
<title>fetch_att (30 samples, 0.03%)</title><rect x="14.3" y="379" width="0.4" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="17.30" y="389.5" ></text>
</g>
<g >
<title>LWLockRelease (103 samples, 0.09%)</title><rect x="66.2" y="299" width="1.2" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="69.18" y="309.5" ></text>
</g>
<g >
<title>__futex_abstimed_wait_common (14 samples, 0.01%)</title><rect x="662.7" y="491" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="665.70" y="501.5" ></text>
</g>
<g >
<title>__sys_recvfrom (3,246 samples, 2.72%)</title><rect x="199.8" y="571" width="37.6" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text  x="202.84" y="581.5" >__..</text>
</g>
<g >
<title>heap_inplace_update_and_unlock (31 samples, 0.03%)</title><rect x="1274.1" y="811" width="0.3" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text  x="1277.05" y="821.5" ></text>
</g>
<g >
<title>postmaster_child_launch (477 samples, 0.40%)</title><rect x="12.0" y="795" width="5.5" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="14.99" y="805.5" ></text>
</g>
<g >
<title>__fget_light (113 samples, 0.09%)</title><rect x="435.8" y="539" width="1.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="438.76" y="549.5" ></text>
</g>
<g >
<title>_bt_search (233 samples, 0.20%)</title><rect x="14.7" y="459" width="2.7" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text  x="17.72" y="469.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (81 samples, 0.07%)</title><rect x="849.4" y="683" width="0.9" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="852.38" y="693.5" ></text>
</g>
<g >
<title>do_syscall_64 (27 samples, 0.02%)</title><rect x="1272.8" y="331" width="0.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="1275.81" y="341.5" ></text>
</g>
<g >
<title>__folio_alloc (286 samples, 0.24%)</title><rect x="1277.4" y="91" width="3.4" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text  x="1280.44" y="101.5" ></text>
</g>
<g >
<title>dlist_is_empty (12 samples, 0.01%)</title><rect x="1271.4" y="811" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="1274.43" y="821.5" ></text>
</g>
<g >
<title>PortalRunUtility (196 samples, 0.16%)</title><rect x="1127.0" y="683" width="2.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1130.02" y="693.5" ></text>
</g>
<g >
<title>tcp_v4_fill_cb (19 samples, 0.02%)</title><rect x="379.0" y="251" width="0.2" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" />
<text  x="382.03" y="261.5" ></text>
</g>
<g >
<title>SysCacheInvalidate (80 samples, 0.07%)</title><rect x="725.2" y="603" width="0.9" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text  x="728.19" y="613.5" ></text>
</g>
<g >
<title>tag_hash (113 samples, 0.09%)</title><rect x="30.0" y="267" width="1.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="32.96" y="277.5" ></text>
</g>
<g >
<title>ResolveOpClass (28 samples, 0.02%)</title><rect x="21.0" y="411" width="0.3" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text  x="23.98" y="421.5" ></text>
</g>
<g >
<title>AtStart_GUC (19 samples, 0.02%)</title><rect x="1300.2" y="779" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text  x="1303.21" y="789.5" ></text>
</g>
<g >
<title>AcceptInvalidationMessages (58 samples, 0.05%)</title><rect x="1289.8" y="779" width="0.7" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text  x="1292.80" y="789.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (25 samples, 0.02%)</title><rect x="475.4" y="539" width="0.3" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="478.37" y="549.5" ></text>
</g>
<g >
<title>ProcessClientWriteInterrupt (73 samples, 0.06%)</title><rect x="253.2" y="651" width="0.9" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text  x="256.22" y="661.5" ></text>
</g>
<g >
<title>IsAbortedTransactionBlockState (11 samples, 0.01%)</title><rect x="513.5" y="715" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="516.48" y="725.5" ></text>
</g>
<g >
<title>RelationCacheInvalidateEntry (10 samples, 0.01%)</title><rect x="1389.2" y="395" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="1392.25" y="405.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (43 samples, 0.04%)</title><rect x="1076.3" y="363" width="0.5" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="1079.33" y="373.5" ></text>
</g>
<g >
<title>ExprEvalPushStep (30 samples, 0.03%)</title><rect x="612.3" y="571" width="0.3" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="615.26" y="581.5" ></text>
</g>
<g >
<title>PageGetMaxOffsetNumber (26 samples, 0.02%)</title><rect x="1025.8" y="411" width="0.3" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text  x="1028.85" y="421.5" ></text>
</g>
<g >
<title>TupleDescAttr (12 samples, 0.01%)</title><rect x="570.6" y="539" width="0.1" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="573.60" y="549.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (33 samples, 0.03%)</title><rect x="668.9" y="491" width="0.4" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="671.88" y="501.5" ></text>
</g>
<g >
<title>__strlen_evex (63 samples, 0.05%)</title><rect x="710.1" y="699" width="0.8" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="713.14" y="709.5" ></text>
</g>
<g >
<title>DefineIndex (21 samples, 0.02%)</title><rect x="1285.3" y="523" width="0.3" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="1288.34" y="533.5" ></text>
</g>
<g >
<title>put_prev_entity (56 samples, 0.05%)</title><rect x="187.2" y="475" width="0.7" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text  x="190.25" y="485.5" ></text>
</g>
<g >
<title>exec_stmt_execsql (11 samples, 0.01%)</title><rect x="19.4" y="683" width="0.1" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="22.38" y="693.5" ></text>
</g>
<g >
<title>_SPI_execute_plan (15 samples, 0.01%)</title><rect x="19.2" y="619" width="0.1" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="22.15" y="629.5" ></text>
</g>
<g >
<title>AtEOXact_LogicalRepWorkers (20 samples, 0.02%)</title><rect x="1296.8" y="779" width="0.3" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text  x="1299.84" y="789.5" ></text>
</g>
<g >
<title>btgettuple (469 samples, 0.39%)</title><rect x="12.0" y="491" width="5.4" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="14.99" y="501.5" ></text>
</g>
<g >
<title>BackgroundWriterMain (18 samples, 0.02%)</title><rect x="1269.2" y="779" width="0.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text  x="1272.22" y="789.5" ></text>
</g>
<g >
<title>smgrDoPendingDeletes (24 samples, 0.02%)</title><rect x="1255.6" y="667" width="0.3" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text  x="1258.60" y="677.5" ></text>
</g>
<g >
<title>__ip_finish_output (96 samples, 0.08%)</title><rect x="282.7" y="443" width="1.1" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text  x="285.74" y="453.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (17 samples, 0.01%)</title><rect x="592.8" y="507" width="0.2" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text  x="595.80" y="517.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (8,410 samples, 7.05%)</title><rect x="291.5" y="411" width="97.4" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text  x="294.54" y="421.5" >__local_b..</text>
</g>
<g >
<title>AllocSetAlloc (28 samples, 0.02%)</title><rect x="705.6" y="699" width="0.4" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="708.64" y="709.5" ></text>
</g>
<g >
<title>ReleaseCatCache (49 samples, 0.04%)</title><rect x="622.0" y="523" width="0.5" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="624.98" y="533.5" ></text>
</g>
<g >
<title>index_fetch_heap (20 samples, 0.02%)</title><rect x="21.1" y="347" width="0.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="24.06" y="357.5" ></text>
</g>
<g >
<title>ResourceOwnerEnlarge (12 samples, 0.01%)</title><rect x="78.1" y="299" width="0.1" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text  x="81.08" y="309.5" ></text>
</g>
<g >
<title>LocalExecuteInvalidationMessage (241 samples, 0.20%)</title><rect x="723.6" y="619" width="2.7" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="726.55" y="629.5" ></text>
</g>
<g >
<title>copy_user_short_string (295 samples, 0.25%)</title><rect x="222.0" y="459" width="3.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="225.02" y="469.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (438 samples, 0.37%)</title><rect x="61.1" y="267" width="5.0" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="64.07" y="277.5" ></text>
</g>
<g >
<title>__vdso_gettimeofday (51 samples, 0.04%)</title><rect x="709.5" y="683" width="0.6" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="712.53" y="693.5" ></text>
</g>
<g >
<title>pg_strtoint32_safe (23 samples, 0.02%)</title><rect x="1371.1" y="779" width="0.3" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="1374.15" y="789.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (249 samples, 0.21%)</title><rect x="686.0" y="619" width="2.9" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="689.03" y="629.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (26 samples, 0.02%)</title><rect x="1009.4" y="331" width="0.3" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="1012.36" y="341.5" ></text>
</g>
<g >
<title>AtStart_Cache (12 samples, 0.01%)</title><rect x="1268.6" y="667" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="1271.62" y="677.5" ></text>
</g>
<g >
<title>TupleDescAttr (15 samples, 0.01%)</title><rect x="627.3" y="539" width="0.2" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="630.35" y="549.5" ></text>
</g>
<g >
<title>FetchPreparedStatement (273 samples, 0.23%)</title><rect x="462.9" y="715" width="3.1" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text  x="465.85" y="725.5" ></text>
</g>
<g >
<title>__x64_sys_futex (12 samples, 0.01%)</title><rect x="1232.1" y="507" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="1235.14" y="517.5" ></text>
</g>
<g >
<title>GetUserId@plt (23 samples, 0.02%)</title><rect x="1155.0" y="571" width="0.3" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text  x="1158.01" y="581.5" ></text>
</g>
<g >
<title>update_cfs_group (42 samples, 0.04%)</title><rect x="141.5" y="459" width="0.5" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="144.53" y="469.5" ></text>
</g>
<g >
<title>eth_type_trans (60 samples, 0.05%)</title><rect x="392.6" y="379" width="0.7" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="395.60" y="389.5" ></text>
</g>
<g >
<title>StartReadBuffer (1,714 samples, 1.44%)</title><rect x="919.9" y="379" width="19.8" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="922.86" y="389.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (15 samples, 0.01%)</title><rect x="880.4" y="427" width="0.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="883.43" y="437.5" ></text>
</g>
<g >
<title>LocalExecuteInvalidationMessage (24 samples, 0.02%)</title><rect x="18.0" y="715" width="0.2" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="20.96" y="725.5" ></text>
</g>
<g >
<title>_GLOBAL_OFFSET_TABLE_ (12 samples, 0.01%)</title><rect x="890.2" y="475" width="0.1" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text  x="893.18" y="485.5" ></text>
</g>
<g >
<title>ProcessUtility (37 samples, 0.03%)</title><rect x="1285.2" y="651" width="0.4" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="1288.18" y="661.5" ></text>
</g>
<g >
<title>WaitEventSetWait (8,417 samples, 7.06%)</title><rect x="98.0" y="651" width="97.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="100.96" y="661.5" >WaitEvent..</text>
</g>
<g >
<title>merge (10 samples, 0.01%)</title><rect x="525.2" y="635" width="0.1" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text  x="528.22" y="645.5" ></text>
</g>
<g >
<title>AllocSetAlloc (23 samples, 0.02%)</title><rect x="10.1" y="811" width="0.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="13.07" y="821.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (31 samples, 0.03%)</title><rect x="1187.4" y="507" width="0.3" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text  x="1190.39" y="517.5" ></text>
</g>
<g >
<title>BufferIsValid (12 samples, 0.01%)</title><rect x="1022.3" y="427" width="0.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="1025.28" y="437.5" ></text>
</g>
<g >
<title>AtEOXact_SPI (10 samples, 0.01%)</title><rect x="1131.3" y="683" width="0.1" height="15.0" fill="rgb(216,50,12)" rx="2" ry="2" />
<text  x="1134.32" y="693.5" ></text>
</g>
<g >
<title>GetCurrentTransactionNestLevel (9 samples, 0.01%)</title><rect x="1255.8" y="651" width="0.1" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text  x="1258.78" y="661.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (156 samples, 0.13%)</title><rect x="689.3" y="619" width="1.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="692.28" y="629.5" ></text>
</g>
<g >
<title>tcp_send_mss (265 samples, 0.22%)</title><rect x="418.2" y="507" width="3.0" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="421.17" y="517.5" ></text>
</g>
<g >
<title>_raw_spin_lock_bh (40 samples, 0.03%)</title><rect x="203.7" y="507" width="0.5" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="206.74" y="517.5" ></text>
</g>
<g >
<title>socket_set_nonblocking (12 samples, 0.01%)</title><rect x="239.5" y="667" width="0.1" height="15.0" fill="rgb(228,105,25)" rx="2" ry="2" />
<text  x="242.48" y="677.5" ></text>
</g>
<g >
<title>_bt_checkkeys (20 samples, 0.02%)</title><rect x="1349.3" y="779" width="0.2" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text  x="1352.29" y="789.5" ></text>
</g>
<g >
<title>__tcp_push_pending_frames (11,931 samples, 10.00%)</title><rect x="274.9" y="507" width="138.1" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="277.91" y="517.5" >__tcp_push_pen..</text>
</g>
<g >
<title>AllocSetFree (26 samples, 0.02%)</title><rect x="518.7" y="683" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="521.70" y="693.5" ></text>
</g>
<g >
<title>ProcessUtility (24 samples, 0.02%)</title><rect x="1284.9" y="603" width="0.3" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="1287.90" y="613.5" ></text>
</g>
<g >
<title>MemoryContextDelete (166 samples, 0.14%)</title><rect x="1190.2" y="539" width="2.0" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text  x="1193.24" y="549.5" ></text>
</g>
<g >
<title>shmem_write_begin (12 samples, 0.01%)</title><rect x="25.5" y="395" width="0.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="28.52" y="405.5" ></text>
</g>
<g >
<title>btrescan (9 samples, 0.01%)</title><rect x="1353.0" y="779" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="1356.04" y="789.5" ></text>
</g>
<g >
<title>table_index_fetch_tuple (20 samples, 0.02%)</title><rect x="21.1" y="331" width="0.2" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="24.06" y="341.5" ></text>
</g>
<g >
<title>StartChildProcess (23 samples, 0.02%)</title><rect x="1268.6" y="779" width="0.3" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text  x="1271.62" y="789.5" ></text>
</g>
<g >
<title>_bt_check_compare (236 samples, 0.20%)</title><rect x="12.0" y="411" width="2.7" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="14.99" y="421.5" ></text>
</g>
<g >
<title>sock_rfree (80 samples, 0.07%)</title><rect x="228.8" y="507" width="0.9" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text  x="231.79" y="517.5" ></text>
</g>
<g >
<title>performMultipleDeletions (9 samples, 0.01%)</title><rect x="1389.7" y="747" width="0.1" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="1392.75" y="757.5" ></text>
</g>
<g >
<title>calc_bucket (10 samples, 0.01%)</title><rect x="57.2" y="251" width="0.1" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text  x="60.16" y="261.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode_prepare (18 samples, 0.02%)</title><rect x="192.6" y="555" width="0.2" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text  x="195.57" y="565.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (11 samples, 0.01%)</title><rect x="248.4" y="635" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="251.39" y="645.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (767 samples, 0.64%)</title><rect x="1275.9" y="795" width="8.8" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="1278.86" y="805.5" ></text>
</g>
<g >
<title>FastPathGrantRelationLock (185 samples, 0.16%)</title><rect x="658.9" y="539" width="2.1" height="15.0" fill="rgb(245,188,44)" rx="2" ry="2" />
<text  x="661.87" y="549.5" ></text>
</g>
<g >
<title>AcceptInvalidationMessages (1,067 samples, 0.89%)</title><rect x="474.6" y="635" width="12.3" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text  x="477.57" y="645.5" ></text>
</g>
<g >
<title>security_socket_recvmsg (322 samples, 0.27%)</title><rect x="231.9" y="539" width="3.7" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text  x="234.87" y="549.5" ></text>
</g>
<g >
<title>__memcpy_evex_unaligned_erms (10 samples, 0.01%)</title><rect x="1270.4" y="811" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="1273.36" y="821.5" ></text>
</g>
<g >
<title>MemoryContextDeleteOnly (206 samples, 0.17%)</title><rect x="1144.9" y="619" width="2.4" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="1147.87" y="629.5" ></text>
</g>
<g >
<title>LockBuffer (47 samples, 0.04%)</title><rect x="1060.9" y="379" width="0.6" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text  x="1063.91" y="389.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (20 samples, 0.02%)</title><rect x="612.0" y="523" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="614.97" y="533.5" ></text>
</g>
<g >
<title>SendRowDescriptionMessage (697 samples, 0.58%)</title><rect x="851.9" y="715" width="8.0" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="854.85" y="725.5" ></text>
</g>
<g >
<title>SIGetDataEntries (11 samples, 0.01%)</title><rect x="1268.9" y="603" width="0.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text  x="1271.95" y="613.5" ></text>
</g>
<g >
<title>AtEOXact_GUC (22 samples, 0.02%)</title><rect x="1137.5" y="667" width="0.2" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="1140.49" y="677.5" ></text>
</g>
<g >
<title>enlargeStringInfo (13 samples, 0.01%)</title><rect x="1100.9" y="571" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text  x="1103.87" y="581.5" ></text>
</g>
<g >
<title>ReleaseCatCache (86 samples, 0.07%)</title><rect x="699.0" y="683" width="0.9" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="701.95" y="693.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (114 samples, 0.10%)</title><rect x="622.8" y="507" width="1.3" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="625.78" y="517.5" ></text>
</g>
<g >
<title>CommitTransaction (10,776 samples, 9.04%)</title><rect x="1131.5" y="683" width="124.7" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text  x="1134.51" y="693.5" >CommitTransac..</text>
</g>
<g >
<title>hash_search_with_hash_value (154 samples, 0.13%)</title><rect x="1233.9" y="571" width="1.7" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="1236.86" y="581.5" ></text>
</g>
<g >
<title>PredicateLockPage (13 samples, 0.01%)</title><rect x="1004.9" y="427" width="0.1" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="1007.87" y="437.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (11 samples, 0.01%)</title><rect x="19.4" y="619" width="0.1" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="22.38" y="629.5" ></text>
</g>
<g >
<title>lock_sock_nested (123 samples, 0.10%)</title><rect x="265.4" y="523" width="1.4" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text  x="268.43" y="533.5" ></text>
</g>
<g >
<title>raw_local_deliver (82 samples, 0.07%)</title><rect x="306.1" y="267" width="0.9" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text  x="309.10" y="277.5" ></text>
</g>
<g >
<title>dequeue_entity (943 samples, 0.79%)</title><rect x="139.9" y="475" width="10.9" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text  x="142.88" y="485.5" ></text>
</g>
<g >
<title>_SPI_execute_plan (65 samples, 0.05%)</title><rect x="79.7" y="443" width="0.8" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="82.71" y="453.5" ></text>
</g>
<g >
<title>namestrcpy (21 samples, 0.02%)</title><rect x="1367.0" y="779" width="0.3" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text  x="1370.02" y="789.5" ></text>
</g>
<g >
<title>ReadBufferExtended (49 samples, 0.04%)</title><rect x="1387.5" y="411" width="0.6" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text  x="1390.55" y="421.5" ></text>
</g>
<g >
<title>deleteObjectsInList (55 samples, 0.05%)</title><rect x="79.8" y="315" width="0.6" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="82.79" y="325.5" ></text>
</g>
<g >
<title>BuildQueryCompletionString (121 samples, 0.10%)</title><rect x="865.5" y="699" width="1.4" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text  x="868.53" y="709.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (14 samples, 0.01%)</title><rect x="1232.1" y="539" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="1235.14" y="549.5" ></text>
</g>
<g >
<title>pq_getmsgstring (78 samples, 0.07%)</title><rect x="1265.6" y="731" width="0.9" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text  x="1268.59" y="741.5" ></text>
</g>
<g >
<title>__switch_to (31 samples, 0.03%)</title><rect x="135.7" y="491" width="0.3" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text  x="138.67" y="501.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (68 samples, 0.06%)</title><rect x="449.6" y="667" width="0.8" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="452.65" y="677.5" ></text>
</g>
<g >
<title>tag_hash (245 samples, 0.21%)</title><rect x="50.4" y="267" width="2.8" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="53.37" y="277.5" ></text>
</g>
<g >
<title>ExecProcNodeFirst (4,568 samples, 3.83%)</title><rect x="26.8" y="619" width="52.9" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="29.85" y="629.5" >Exec..</text>
</g>
<g >
<title>ItemPointerSetInvalid (24 samples, 0.02%)</title><rect x="892.7" y="491" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text  x="895.67" y="501.5" ></text>
</g>
<g >
<title>CatalogCacheCompareTuple (22 samples, 0.02%)</title><rect x="701.4" y="651" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="704.38" y="661.5" ></text>
</g>
<g >
<title>pq_beginmessage_reuse (37 samples, 0.03%)</title><rect x="1098.6" y="603" width="0.4" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text  x="1101.62" y="613.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (17 samples, 0.01%)</title><rect x="22.3" y="315" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="25.30" y="325.5" ></text>
</g>
<g >
<title>LockRelation (90 samples, 0.08%)</title><rect x="21.5" y="411" width="1.0" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text  x="24.49" y="421.5" ></text>
</g>
<g >
<title>pgstat_get_transactional_drops (12 samples, 0.01%)</title><rect x="1372.9" y="779" width="0.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text  x="1375.94" y="789.5" ></text>
</g>
<g >
<title>ExecTargetListLength (11 samples, 0.01%)</title><rect x="620.2" y="555" width="0.1" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text  x="623.17" y="565.5" ></text>
</g>
<g >
<title>StartBackgroundWorker (17 samples, 0.01%)</title><rect x="1268.9" y="763" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="1271.89" y="773.5" ></text>
</g>
<g >
<title>__new_sem_wait_slow64 (17 samples, 0.01%)</title><rect x="1232.1" y="571" width="0.2" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text  x="1235.10" y="581.5" ></text>
</g>
<g >
<title>pg_server_to_client (27 samples, 0.02%)</title><rect x="1101.1" y="587" width="0.3" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text  x="1104.06" y="597.5" ></text>
</g>
<g >
<title>SetLocktagRelationOid (51 samples, 0.04%)</title><rect x="471.6" y="651" width="0.6" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text  x="474.62" y="661.5" ></text>
</g>
<g >
<title>heap_page_prune_opt (360 samples, 0.30%)</title><rect x="947.5" y="443" width="4.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="950.53" y="453.5" ></text>
</g>
<g >
<title>ScanPgRelation (9 samples, 0.01%)</title><rect x="24.6" y="619" width="0.1" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" />
<text  x="27.64" y="629.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (15 samples, 0.01%)</title><rect x="338.5" y="91" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text  x="341.54" y="101.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (28 samples, 0.02%)</title><rect x="21.7" y="347" width="0.3" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="24.70" y="357.5" ></text>
</g>
<g >
<title>ip_local_out (83 samples, 0.07%)</title><rect x="398.1" y="443" width="0.9" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="401.06" y="453.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetLock (57 samples, 0.05%)</title><rect x="1240.3" y="603" width="0.7" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text  x="1243.33" y="613.5" ></text>
</g>
<g >
<title>pg_strtoint32_safe (20 samples, 0.02%)</title><rect x="516.2" y="683" width="0.3" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="519.23" y="693.5" ></text>
</g>
<g >
<title>MemoryContextSwitchTo (11 samples, 0.01%)</title><rect x="872.0" y="699" width="0.1" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text  x="874.97" y="709.5" ></text>
</g>
<g >
<title>index_create (11 samples, 0.01%)</title><rect x="23.8" y="459" width="0.1" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="26.79" y="469.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (29 samples, 0.02%)</title><rect x="732.1" y="571" width="0.3" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="735.07" y="581.5" ></text>
</g>
<g >
<title>enqueue_to_backlog (190 samples, 0.16%)</title><rect x="390.4" y="347" width="2.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="393.39" y="357.5" ></text>
</g>
<g >
<title>AllocSetAlloc (104 samples, 0.09%)</title><rect x="597.4" y="571" width="1.2" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="600.35" y="581.5" ></text>
</g>
<g >
<title>BufferGetPage (20 samples, 0.02%)</title><rect x="1065.0" y="411" width="0.2" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="1067.97" y="421.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (142 samples, 0.12%)</title><rect x="37.1" y="283" width="1.6" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="40.10" y="293.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (211 samples, 0.18%)</title><rect x="20.9" y="475" width="2.4" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="23.90" y="485.5" ></text>
</g>
<g >
<title>pg_class_aclmask (322 samples, 0.27%)</title><rect x="542.3" y="603" width="3.8" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text  x="545.34" y="613.5" ></text>
</g>
<g >
<title>PreCommit_Portals (6,189 samples, 5.19%)</title><rect x="1143.4" y="667" width="71.6" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text  x="1146.38" y="677.5" >PreCom..</text>
</g>
<g >
<title>pgstat_report_query_id (12 samples, 0.01%)</title><rect x="711.0" y="715" width="0.1" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="713.96" y="725.5" ></text>
</g>
<g >
<title>AllocSetAlloc (42 samples, 0.04%)</title><rect x="575.3" y="507" width="0.5" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="578.33" y="517.5" ></text>
</g>
<g >
<title>list_delete_nth_cell (51 samples, 0.04%)</title><rect x="1193.2" y="507" width="0.6" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text  x="1196.23" y="517.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (14 samples, 0.01%)</title><rect x="397.9" y="427" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="400.89" y="437.5" ></text>
</g>
<g >
<title>do_syscall_64 (9 samples, 0.01%)</title><rect x="1269.3" y="683" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="1272.33" y="693.5" ></text>
</g>
<g >
<title>FunctionCall1Coll (211 samples, 0.18%)</title><rect x="20.9" y="683" width="2.4" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="23.90" y="693.5" ></text>
</g>
<g >
<title>FreeQueryDesc (254 samples, 0.21%)</title><rect x="1201.4" y="619" width="3.0" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text  x="1204.41" y="629.5" ></text>
</g>
<g >
<title>palloc (64 samples, 0.05%)</title><rect x="704.7" y="699" width="0.7" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="707.70" y="709.5" ></text>
</g>
<g >
<title>MemoryContextSwitchTo (14 samples, 0.01%)</title><rect x="891.6" y="523" width="0.2" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text  x="894.64" y="533.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (134 samples, 0.11%)</title><rect x="1155.7" y="523" width="1.5" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="1158.67" y="533.5" ></text>
</g>
<g >
<title>TimestampDifferenceExceeds (19 samples, 0.02%)</title><rect x="1264.5" y="715" width="0.3" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="1267.55" y="725.5" ></text>
</g>
<g >
<title>TransactionIdPrecedes (25 samples, 0.02%)</title><rect x="691.8" y="667" width="0.3" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text  x="694.80" y="677.5" ></text>
</g>
<g >
<title>pq_writeint32 (9 samples, 0.01%)</title><rect x="1376.3" y="779" width="0.1" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text  x="1379.35" y="789.5" ></text>
</g>
<g >
<title>GetCachedPlan (3,279 samples, 2.75%)</title><rect x="466.0" y="715" width="38.0" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text  x="469.03" y="725.5" >Ge..</text>
</g>
<g >
<title>PageGetItem (1,112 samples, 0.93%)</title><rect x="984.8" y="411" width="12.9" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text  x="987.80" y="421.5" ></text>
</g>
<g >
<title>LWLockWaitListLock (15 samples, 0.01%)</title><rect x="1231.8" y="571" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="1234.85" y="581.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (156 samples, 0.13%)</title><rect x="684.2" y="619" width="1.8" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="687.19" y="629.5" ></text>
</g>
<g >
<title>ExecScanExtended (661 samples, 0.55%)</title><rect x="877.4" y="571" width="7.6" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="880.39" y="581.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetRelationRef (41 samples, 0.03%)</title><rect x="1180.3" y="491" width="0.5" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text  x="1183.28" y="501.5" ></text>
</g>
<g >
<title>object_aclmask_ext (15 samples, 0.01%)</title><rect x="1368.3" y="779" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="1371.35" y="789.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (39 samples, 0.03%)</title><rect x="23.3" y="475" width="0.5" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="26.34" y="485.5" ></text>
</g>
<g >
<title>PortalRunUtility (39 samples, 0.03%)</title><rect x="23.3" y="795" width="0.5" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="26.34" y="805.5" ></text>
</g>
<g >
<title>tcp_schedule_loss_probe (22 samples, 0.02%)</title><rect x="372.5" y="203" width="0.2" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text  x="375.46" y="213.5" ></text>
</g>
<g >
<title>palloc (43 samples, 0.04%)</title><rect x="615.2" y="555" width="0.5" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="618.21" y="565.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (33 samples, 0.03%)</title><rect x="543.3" y="507" width="0.4" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text  x="546.30" y="517.5" ></text>
</g>
<g >
<title>GetCurrentTimestamp (70 samples, 0.06%)</title><rect x="1316.0" y="779" width="0.8" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="1318.95" y="789.5" ></text>
</g>
<g >
<title>AllocSetAlloc (44 samples, 0.04%)</title><rect x="602.4" y="523" width="0.6" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="605.44" y="533.5" ></text>
</g>
<g >
<title>GETSTRUCT (10 samples, 0.01%)</title><rect x="853.6" y="683" width="0.1" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="856.61" y="693.5" ></text>
</g>
<g >
<title>__memset_evex_unaligned_erms (58 samples, 0.05%)</title><rect x="1139.9" y="635" width="0.6" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="1142.85" y="645.5" ></text>
</g>
<g >
<title>enlargeStringInfo (15 samples, 0.01%)</title><rect x="1101.4" y="571" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text  x="1104.42" y="581.5" ></text>
</g>
<g >
<title>ProcessInvalidationMessages (23 samples, 0.02%)</title><rect x="24.5" y="715" width="0.2" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="27.48" y="725.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (158 samples, 0.13%)</title><rect x="1105.6" y="539" width="1.8" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="1108.55" y="549.5" ></text>
</g>
<g >
<title>GetMemoryChunkMethodID (18 samples, 0.02%)</title><rect x="1001.2" y="411" width="0.2" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text  x="1004.21" y="421.5" ></text>
</g>
<g >
<title>AllocSetFreeIndex (21 samples, 0.02%)</title><rect x="1260.5" y="667" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="1263.50" y="677.5" ></text>
</g>
<g >
<title>ScanPgRelation (10 samples, 0.01%)</title><rect x="1274.2" y="683" width="0.1" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" />
<text  x="1277.18" y="693.5" ></text>
</g>
<g >
<title>ConditionalCatalogCacheInitializeCache (17 samples, 0.01%)</title><rect x="1304.3" y="779" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="1307.30" y="789.5" ></text>
</g>
<g >
<title>TimestampDifference (18 samples, 0.02%)</title><rect x="1263.3" y="715" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="1266.32" y="725.5" ></text>
</g>
<g >
<title>SerializationNeededForRead (11 samples, 0.01%)</title><rect x="1345.2" y="779" width="0.1" height="15.0" fill="rgb(224,87,20)" rx="2" ry="2" />
<text  x="1348.18" y="789.5" ></text>
</g>
<g >
<title>pstrdup (244 samples, 0.20%)</title><rect x="717.8" y="715" width="2.8" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text  x="720.83" y="725.5" ></text>
</g>
<g >
<title>smgrreleaserellocator (20 samples, 0.02%)</title><rect x="726.1" y="603" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="729.11" y="613.5" ></text>
</g>
<g >
<title>StartReadBuffersImpl (2,653 samples, 2.22%)</title><rect x="49.0" y="347" width="30.7" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text  x="52.01" y="357.5" >S..</text>
</g>
<g >
<title>CheckExprStillValid (263 samples, 0.22%)</title><rect x="887.3" y="491" width="3.0" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="890.27" y="501.5" ></text>
</g>
<g >
<title>tcp_queue_rcv (131 samples, 0.11%)</title><rect x="377.5" y="219" width="1.5" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text  x="380.45" y="229.5" ></text>
</g>
<g >
<title>cgroup_rstat_updated (19 samples, 0.02%)</title><rect x="433.0" y="443" width="0.3" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text  x="436.03" y="453.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (12 samples, 0.01%)</title><rect x="620.0" y="507" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="622.96" y="517.5" ></text>
</g>
<g >
<title>dst_release (81 samples, 0.07%)</title><rect x="322.7" y="219" width="0.9" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text  x="325.68" y="229.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (27 samples, 0.02%)</title><rect x="1284.9" y="651" width="0.3" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="1287.87" y="661.5" ></text>
</g>
<g >
<title>update_rt_rq_load_avg (12 samples, 0.01%)</title><rect x="181.9" y="443" width="0.2" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text  x="184.91" y="453.5" ></text>
</g>
<g >
<title>postgres (8,770 samples, 7.35%)</title><rect x="1285.6" y="811" width="101.5" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="1288.65" y="821.5" >postgres</text>
</g>
<g >
<title>index_build (13 samples, 0.01%)</title><rect x="18.3" y="779" width="0.1" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text  x="21.26" y="789.5" ></text>
</g>
<g >
<title>ResourceOwnerRelease (2,976 samples, 2.50%)</title><rect x="1219.2" y="667" width="34.4" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="1222.19" y="677.5" >Re..</text>
</g>
<g >
<title>OutputFunctionCall (206 samples, 0.17%)</title><rect x="1096.0" y="603" width="2.4" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text  x="1098.98" y="613.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (324 samples, 0.27%)</title><rect x="564.9" y="507" width="3.7" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="567.86" y="517.5" ></text>
</g>
<g >
<title>object_aclmask_ext (12 samples, 0.01%)</title><rect x="609.8" y="523" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="612.83" y="533.5" ></text>
</g>
<g >
<title>AllocSetContextCreateInternal (113 samples, 0.09%)</title><rect x="1111.9" y="619" width="1.3" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text  x="1114.88" y="629.5" ></text>
</g>
<g >
<title>relation_close (86 samples, 0.07%)</title><rect x="1175.7" y="523" width="1.0" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="1178.71" y="533.5" ></text>
</g>
<g >
<title>LocalExecuteInvalidationMessage (18 samples, 0.02%)</title><rect x="474.7" y="603" width="0.2" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="477.74" y="613.5" ></text>
</g>
<g >
<title>try_charge_memcg (81 samples, 0.07%)</title><rect x="433.3" y="475" width="0.9" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text  x="436.31" y="485.5" ></text>
</g>
<g >
<title>ExecEndNode (794 samples, 0.67%)</title><rect x="1176.9" y="555" width="9.1" height="15.0" fill="rgb(228,110,26)" rx="2" ry="2" />
<text  x="1179.86" y="565.5" ></text>
</g>
<g >
<title>_bt_checkkeys (166 samples, 0.14%)</title><rect x="1013.8" y="411" width="1.9" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text  x="1016.81" y="421.5" ></text>
</g>
<g >
<title>_bt_moveright (13 samples, 0.01%)</title><rect x="1350.5" y="779" width="0.1" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text  x="1353.46" y="789.5" ></text>
</g>
<g >
<title>SPI_execute_plan_with_paramlist (46 samples, 0.04%)</title><rect x="1389.1" y="619" width="0.5" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="1392.10" y="629.5" ></text>
</g>
<g >
<title>_bt_saveitem (10 samples, 0.01%)</title><rect x="1351.5" y="779" width="0.2" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text  x="1354.54" y="789.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (218 samples, 0.18%)</title><rect x="1160.1" y="523" width="2.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="1163.11" y="533.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (11 samples, 0.01%)</title><rect x="475.7" y="523" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="478.67" y="533.5" ></text>
</g>
<g >
<title>AllocSetFree (22 samples, 0.02%)</title><rect x="1118.7" y="651" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="1121.74" y="661.5" ></text>
</g>
<g >
<title>WalWriterMain (11 samples, 0.01%)</title><rect x="1268.8" y="747" width="0.1" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text  x="1271.76" y="757.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetBuffer (23 samples, 0.02%)</title><rect x="879.5" y="459" width="0.3" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text  x="882.51" y="469.5" ></text>
</g>
<g >
<title>btinsert (12 samples, 0.01%)</title><rect x="1283.1" y="395" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text  x="1286.06" y="405.5" ></text>
</g>
<g >
<title>StartTransaction (11 samples, 0.01%)</title><rect x="1346.5" y="779" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="1349.49" y="789.5" ></text>
</g>
<g >
<title>_bt_checkkeys (236 samples, 0.20%)</title><rect x="12.0" y="427" width="2.7" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text  x="14.99" y="437.5" ></text>
</g>
<g >
<title>kmalloc_reserve (600 samples, 0.50%)</title><rect x="423.7" y="475" width="7.0" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text  x="426.73" y="485.5" ></text>
</g>
<g >
<title>plpgsql_inline_handler (196 samples, 0.16%)</title><rect x="1127.0" y="571" width="2.3" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="1130.02" y="581.5" ></text>
</g>
<g >
<title>__cgroup_account_cputime (13 samples, 0.01%)</title><rect x="144.6" y="443" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="147.62" y="453.5" ></text>
</g>
<g >
<title>ResourceOwnerSort (25 samples, 0.02%)</title><rect x="1253.2" y="635" width="0.3" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="1256.20" y="645.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (306 samples, 0.26%)</title><rect x="74.4" y="267" width="3.6" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="77.42" y="277.5" ></text>
</g>
<g >
<title>btendscan (42 samples, 0.04%)</title><rect x="1352.5" y="779" width="0.5" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="1355.54" y="789.5" ></text>
</g>
<g >
<title>heap_create (9 samples, 0.01%)</title><rect x="22.6" y="411" width="0.1" height="15.0" fill="rgb(218,62,15)" rx="2" ry="2" />
<text  x="25.59" y="421.5" ></text>
</g>
<g >
<title>get_timeout_active (14 samples, 0.01%)</title><rect x="860.3" y="683" width="0.2" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" />
<text  x="863.33" y="693.5" ></text>
</g>
<g >
<title>BackendStartup (107,310 samples, 89.98%)</title><rect x="26.8" y="795" width="1241.8" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="29.85" y="805.5" >BackendStartup</text>
</g>
<g >
<title>ExecProcNodeFirst (72 samples, 0.06%)</title><rect x="11.1" y="651" width="0.8" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="14.10" y="661.5" ></text>
</g>
<g >
<title>GetCurrentTransactionNestLevel (9 samples, 0.01%)</title><rect x="1316.8" y="779" width="0.1" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text  x="1319.76" y="789.5" ></text>
</g>
<g >
<title>ExecInterpExprStillValid (387 samples, 0.32%)</title><rect x="887.1" y="507" width="4.5" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="890.15" y="517.5" ></text>
</g>
<g >
<title>CommandCounterIncrement (22 samples, 0.02%)</title><rect x="1283.3" y="427" width="0.2" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="1286.27" y="437.5" ></text>
</g>
<g >
<title>initStringInfo (106 samples, 0.09%)</title><rect x="247.6" y="699" width="1.3" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="250.63" y="709.5" ></text>
</g>
<g >
<title>exec_stmt_block (23 samples, 0.02%)</title><rect x="24.0" y="667" width="0.3" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="27.01" y="677.5" ></text>
</g>
<g >
<title>btgettuple (154 samples, 0.13%)</title><rect x="881.2" y="491" width="1.8" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="884.19" y="501.5" ></text>
</g>
<g >
<title>fmgr_info (73 samples, 0.06%)</title><rect x="1103.2" y="587" width="0.8" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="1106.19" y="597.5" ></text>
</g>
<g >
<title>FileWriteV (442 samples, 0.37%)</title><rect x="1277.3" y="331" width="5.2" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text  x="1280.35" y="341.5" ></text>
</g>
<g >
<title>SearchCatCache3 (347 samples, 0.29%)</title><rect x="587.9" y="555" width="4.1" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text  x="590.94" y="565.5" ></text>
</g>
<g >
<title>__schedule (4,955 samples, 4.15%)</title><rect x="131.6" y="507" width="57.3" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text  x="134.57" y="517.5" >__sc..</text>
</g>
<g >
<title>psi_flags_change (16 samples, 0.01%)</title><rect x="183.0" y="475" width="0.1" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="185.95" y="485.5" ></text>
</g>
<g >
<title>heap_create_with_catalog (21 samples, 0.02%)</title><rect x="1283.0" y="491" width="0.3" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" />
<text  x="1286.03" y="501.5" ></text>
</g>
<g >
<title>pq_beginmessage (119 samples, 0.10%)</title><rect x="247.5" y="715" width="1.4" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="250.50" y="725.5" ></text>
</g>
<g >
<title>MemoryContextAllocZero (621 samples, 0.52%)</title><rect x="837.6" y="635" width="7.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="840.58" y="645.5" ></text>
</g>
<g >
<title>PointerGetDatum (70 samples, 0.06%)</title><rect x="1332.7" y="779" width="0.8" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="1335.68" y="789.5" ></text>
</g>
<g >
<title>ExtendBufferedRelBy (25 samples, 0.02%)</title><rect x="25.5" y="667" width="0.3" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text  x="28.52" y="677.5" ></text>
</g>
<g >
<title>AtEOXact_PgStat_Database (11 samples, 0.01%)</title><rect x="1139.6" y="651" width="0.1" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text  x="1142.59" y="661.5" ></text>
</g>
<g >
<title>ExecReadyInterpretedExpr (61 samples, 0.05%)</title><rect x="568.8" y="523" width="0.7" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text  x="571.84" y="533.5" ></text>
</g>
<g >
<title>OidFunctionCall1Coll (65 samples, 0.05%)</title><rect x="79.7" y="619" width="0.8" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text  x="82.71" y="629.5" ></text>
</g>
<g >
<title>__GI___access (10 samples, 0.01%)</title><rect x="1272.0" y="379" width="0.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text  x="1274.98" y="389.5" ></text>
</g>
<g >
<title>ExecPushExprSetupSteps (194 samples, 0.16%)</title><rect x="562.4" y="523" width="2.3" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="565.43" y="533.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (45 samples, 0.04%)</title><rect x="16.3" y="331" width="0.5" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="19.27" y="341.5" ></text>
</g>
<g >
<title>AllocSetDelete (166 samples, 0.14%)</title><rect x="1145.1" y="603" width="1.9" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="1148.07" y="613.5" ></text>
</g>
<g >
<title>enter_lazy_tlb (11 samples, 0.01%)</title><rect x="150.8" y="491" width="0.1" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="153.81" y="501.5" ></text>
</g>
<g >
<title>expr_setup_walker (108 samples, 0.09%)</title><rect x="567.0" y="491" width="1.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="569.95" y="501.5" ></text>
</g>
<g >
<title>ReleaseSysCache (39 samples, 0.03%)</title><rect x="592.6" y="571" width="0.4" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="595.60" y="581.5" ></text>
</g>
<g >
<title>__memset_evex_unaligned_erms (9 samples, 0.01%)</title><rect x="1267.7" y="683" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="1270.74" y="693.5" ></text>
</g>
<g >
<title>tag_hash (133 samples, 0.11%)</title><rect x="921.0" y="283" width="1.5" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="923.96" y="293.5" ></text>
</g>
<g >
<title>BufferDescriptorGetBuffer (15 samples, 0.01%)</title><rect x="78.3" y="315" width="0.2" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="81.34" y="325.5" ></text>
</g>
<g >
<title>exec_stmt_execsql (39 samples, 0.03%)</title><rect x="23.3" y="571" width="0.5" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="26.34" y="581.5" ></text>
</g>
<g >
<title>_bt_relandgetbuf (54 samples, 0.05%)</title><rect x="16.8" y="443" width="0.6" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text  x="19.79" y="453.5" ></text>
</g>
<g >
<title>ReleasePredicateLocks (25 samples, 0.02%)</title><rect x="1250.0" y="635" width="0.3" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text  x="1252.99" y="645.5" ></text>
</g>
<g >
<title>PortalRun (214 samples, 0.18%)</title><rect x="20.9" y="811" width="2.4" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="23.87" y="821.5" ></text>
</g>
<g >
<title>hash_bytes_uint32 (51 samples, 0.04%)</title><rect x="672.1" y="523" width="0.6" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text  x="675.08" y="533.5" ></text>
</g>
<g >
<title>LWLockRelease (223 samples, 0.19%)</title><rect x="1083.3" y="379" width="2.6" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="1086.31" y="389.5" ></text>
</g>
<g >
<title>s_lock (1,177 samples, 0.99%)</title><rect x="643.5" y="507" width="13.7" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="646.54" y="517.5" ></text>
</g>
<g >
<title>__errno_location@plt (15 samples, 0.01%)</title><rect x="97.8" y="635" width="0.2" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text  x="100.78" y="645.5" ></text>
</g>
<g >
<title>_raw_spin_lock (173 samples, 0.15%)</title><rect x="136.1" y="491" width="2.0" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="139.06" y="501.5" ></text>
</g>
<g >
<title>socket_putmessage (59 samples, 0.05%)</title><rect x="856.9" y="683" width="0.7" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text  x="859.91" y="693.5" ></text>
</g>
<g >
<title>ep_done_scan (125 samples, 0.10%)</title><rect x="115.2" y="539" width="1.4" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text  x="118.19" y="549.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetBuffer (51 samples, 0.04%)</title><rect x="1072.7" y="379" width="0.6" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text  x="1075.68" y="389.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (38 samples, 0.03%)</title><rect x="1072.8" y="363" width="0.5" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text  x="1075.83" y="373.5" ></text>
</g>
<g >
<title>relation_open (2,708 samples, 2.27%)</title><rect x="641.4" y="587" width="31.4" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="644.43" y="597.5" >r..</text>
</g>
<g >
<title>index_getnext_slot (72 samples, 0.06%)</title><rect x="11.1" y="555" width="0.8" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="14.10" y="565.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (202 samples, 0.17%)</title><rect x="505.1" y="651" width="2.4" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="508.15" y="661.5" ></text>
</g>
<g >
<title>FreeSnapshot (62 samples, 0.05%)</title><rect x="1202.6" y="555" width="0.7" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text  x="1205.61" y="565.5" ></text>
</g>
<g >
<title>pq_putemptymessage (146 samples, 0.12%)</title><rect x="716.1" y="715" width="1.7" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="719.14" y="725.5" ></text>
</g>
<g >
<title>ChoosePortalStrategy (57 samples, 0.05%)</title><rect x="522.3" y="699" width="0.7" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="525.32" y="709.5" ></text>
</g>
<g >
<title>exec_stmt_fori (15 samples, 0.01%)</title><rect x="19.2" y="683" width="0.1" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text  x="22.15" y="693.5" ></text>
</g>
<g >
<title>deleteOneObject (22 samples, 0.02%)</title><rect x="1283.3" y="443" width="0.2" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text  x="1286.27" y="453.5" ></text>
</g>
<g >
<title>RelationReloadIndexInfo (10 samples, 0.01%)</title><rect x="1274.2" y="699" width="0.1" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text  x="1277.18" y="709.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (20 samples, 0.02%)</title><rect x="22.3" y="331" width="0.2" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="25.27" y="341.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (81 samples, 0.07%)</title><rect x="567.3" y="475" width="0.9" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="570.27" y="485.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetCatCacheRef (17 samples, 0.01%)</title><rect x="622.3" y="491" width="0.2" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text  x="625.35" y="501.5" ></text>
</g>
<g >
<title>AllocSetFreeIndex (13 samples, 0.01%)</title><rect x="1087.3" y="395" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="1090.27" y="405.5" ></text>
</g>
<g >
<title>_bt_first (72 samples, 0.06%)</title><rect x="11.1" y="507" width="0.8" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="14.10" y="517.5" ></text>
</g>
<g >
<title>pq_startmsgread (9 samples, 0.01%)</title><rect x="246.2" y="699" width="0.1" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text  x="249.19" y="709.5" ></text>
</g>
<g >
<title>__GI___libc_free (154 samples, 0.13%)</title><rect x="1182.5" y="459" width="1.8" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="1185.52" y="469.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (15,758 samples, 13.21%)</title><rect x="257.2" y="619" width="182.4" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="260.22" y="629.5" >entry_SYSCALL_64_aft..</text>
</g>
<g >
<title>index_close (92 samples, 0.08%)</title><rect x="1177.3" y="523" width="1.0" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text  x="1180.26" y="533.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (10 samples, 0.01%)</title><rect x="332.5" y="123" width="0.1" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text  x="335.53" y="133.5" ></text>
</g>
<g >
<title>__strncmp_evex (21 samples, 0.02%)</title><rect x="1205.7" y="587" width="0.2" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text  x="1208.68" y="597.5" ></text>
</g>
<g >
<title>pfree (92 samples, 0.08%)</title><rect x="1110.6" y="619" width="1.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1113.59" y="629.5" ></text>
</g>
<g >
<title>DefineRelation (14 samples, 0.01%)</title><rect x="22.9" y="443" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="25.91" y="453.5" ></text>
</g>
<g >
<title>exec_stmt_fori (46 samples, 0.04%)</title><rect x="1389.1" y="667" width="0.5" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text  x="1392.10" y="677.5" ></text>
</g>
<g >
<title>pg_server_to_any (15 samples, 0.01%)</title><rect x="1101.2" y="571" width="0.2" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text  x="1104.20" y="581.5" ></text>
</g>
<g >
<title>native_load_tls (18 samples, 0.02%)</title><rect x="193.0" y="603" width="0.2" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text  x="196.01" y="613.5" ></text>
</g>
<g >
<title>AtCCI_LocalCache (44 samples, 0.04%)</title><rect x="1276.0" y="459" width="0.5" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text  x="1278.99" y="469.5" ></text>
</g>
<g >
<title>ReportChangedGUCOptions (16 samples, 0.01%)</title><rect x="440.2" y="731" width="0.2" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="443.19" y="741.5" ></text>
</g>
<g >
<title>pfree (9 samples, 0.01%)</title><rect x="1088.0" y="443" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1090.99" y="453.5" ></text>
</g>
<g >
<title>ExecScanExtended (11 samples, 0.01%)</title><rect x="1312.9" y="779" width="0.1" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="1315.89" y="789.5" ></text>
</g>
<g >
<title>postmaster_child_launch (102,676 samples, 86.10%)</title><rect x="80.5" y="779" width="1188.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="83.47" y="789.5" >postmaster_child_launch</text>
</g>
<g >
<title>pq_sendcountedtext (150 samples, 0.13%)</title><rect x="1100.2" y="603" width="1.7" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text  x="1103.21" y="613.5" ></text>
</g>
<g >
<title>index_endscan (653 samples, 0.55%)</title><rect x="1178.3" y="523" width="7.6" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text  x="1181.33" y="533.5" ></text>
</g>
<g >
<title>IsSharedRelation (18 samples, 0.02%)</title><rect x="1323.3" y="779" width="0.2" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text  x="1326.27" y="789.5" ></text>
</g>
<g >
<title>__GI___sigsetjmp (40 samples, 0.03%)</title><rect x="1199.5" y="587" width="0.5" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text  x="1202.54" y="597.5" ></text>
</g>
<g >
<title>AtEOXact_PgStat_Database (19 samples, 0.02%)</title><rect x="1298.0" y="779" width="0.2" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text  x="1300.99" y="789.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (60 samples, 0.05%)</title><rect x="103.1" y="603" width="0.7" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text  x="106.07" y="613.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (44 samples, 0.04%)</title><rect x="1010.2" y="347" width="0.5" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="1013.18" y="357.5" ></text>
</g>
<g >
<title>pfree (73 samples, 0.06%)</title><rect x="1193.9" y="539" width="0.9" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1196.94" y="549.5" ></text>
</g>
<g >
<title>PageGetItem (11 samples, 0.01%)</title><rect x="1068.1" y="395" width="0.1" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text  x="1071.11" y="405.5" ></text>
</g>
<g >
<title>PostgresMain (4,634 samples, 3.89%)</title><rect x="26.8" y="763" width="53.7" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text  x="29.85" y="773.5" >Post..</text>
</g>
<g >
<title>_bt_first (85 samples, 0.07%)</title><rect x="1387.1" y="491" width="1.0" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="1390.13" y="501.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (30 samples, 0.03%)</title><rect x="44.7" y="267" width="0.3" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="47.66" y="277.5" ></text>
</g>
<g >
<title>ProcessUtility (211 samples, 0.18%)</title><rect x="20.9" y="507" width="2.4" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="23.90" y="517.5" ></text>
</g>
<g >
<title>VirtualXactLockTableCleanup (161 samples, 0.14%)</title><rect x="1241.0" y="603" width="1.9" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text  x="1243.99" y="613.5" ></text>
</g>
<g >
<title>finalize_in_progress_typentries (20 samples, 0.02%)</title><rect x="1142.6" y="651" width="0.2" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text  x="1145.59" y="661.5" ></text>
</g>
<g >
<title>ExecBuildProjectionInfo (1,053 samples, 0.88%)</title><rect x="560.8" y="555" width="12.2" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="563.77" y="565.5" ></text>
</g>
<g >
<title>hash_initial_lookup (52 samples, 0.04%)</title><rect x="1235.0" y="555" width="0.6" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="1238.04" y="565.5" ></text>
</g>
<g >
<title>ReleaseAndReadBuffer (54 samples, 0.05%)</title><rect x="16.8" y="427" width="0.6" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text  x="19.79" y="437.5" ></text>
</g>
<g >
<title>getTypeOutputInfo (289 samples, 0.24%)</title><rect x="1104.0" y="587" width="3.4" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="1107.05" y="597.5" ></text>
</g>
<g >
<title>int4hashfast (43 samples, 0.04%)</title><rect x="1106.4" y="507" width="0.5" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text  x="1109.40" y="517.5" ></text>
</g>
<g >
<title>pgss_ExecutorStart (17 samples, 0.01%)</title><rect x="1372.0" y="779" width="0.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="1375.03" y="789.5" ></text>
</g>
<g >
<title>palloc (60 samples, 0.05%)</title><rect x="619.5" y="539" width="0.7" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="622.48" y="549.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (65 samples, 0.05%)</title><rect x="79.7" y="379" width="0.8" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="82.71" y="389.5" ></text>
</g>
<g >
<title>LWLockRelease (46 samples, 0.04%)</title><rect x="1242.3" y="587" width="0.5" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="1245.30" y="597.5" ></text>
</g>
<g >
<title>maybe_start_bgworkers (17 samples, 0.01%)</title><rect x="1268.9" y="779" width="0.2" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text  x="1271.89" y="789.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (102 samples, 0.09%)</title><rect x="670.9" y="539" width="1.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="673.87" y="549.5" ></text>
</g>
<g >
<title>TupleDescCompactAttr (51 samples, 0.04%)</title><rect x="1347.3" y="779" width="0.5" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text  x="1350.25" y="789.5" ></text>
</g>
<g >
<title>reportDependentObjects (12 samples, 0.01%)</title><rect x="1283.5" y="459" width="0.2" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text  x="1286.54" y="469.5" ></text>
</g>
<g >
<title>CatalogCacheCompareTuple (47 samples, 0.04%)</title><rect x="589.1" y="523" width="0.5" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="592.05" y="533.5" ></text>
</g>
<g >
<title>BufferGetBlock (17 samples, 0.01%)</title><rect x="1022.1" y="411" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="1025.08" y="421.5" ></text>
</g>
<g >
<title>BufferGetLSNAtomic (230 samples, 0.19%)</title><rect x="1005.3" y="411" width="2.6" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text  x="1008.27" y="421.5" ></text>
</g>
<g >
<title>napi_consume_skb (334 samples, 0.28%)</title><rect x="384.9" y="347" width="3.9" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="387.92" y="357.5" ></text>
</g>
<g >
<title>exec_toplevel_block (15 samples, 0.01%)</title><rect x="23.8" y="667" width="0.2" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="26.79" y="677.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (138 samples, 0.12%)</title><rect x="1074.7" y="363" width="1.6" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="1077.74" y="373.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (22 samples, 0.02%)</title><rect x="1010.4" y="299" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="1013.43" y="309.5" ></text>
</g>
<g >
<title>plpgsql_inline_handler (46 samples, 0.04%)</title><rect x="1389.1" y="747" width="0.5" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="1392.10" y="757.5" ></text>
</g>
<g >
<title>rb_first (36 samples, 0.03%)</title><rect x="369.5" y="203" width="0.4" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text  x="372.51" y="213.5" ></text>
</g>
<g >
<title>ResolveOpClass (10 samples, 0.01%)</title><rect x="1271.8" y="395" width="0.1" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text  x="1274.79" y="405.5" ></text>
</g>
<g >
<title>SPI_execute_plan_with_paramlist (15 samples, 0.01%)</title><rect x="23.8" y="571" width="0.2" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="26.79" y="581.5" ></text>
</g>
<g >
<title>__memcpy_evex_unaligned_erms (10 samples, 0.01%)</title><rect x="1125.7" y="683" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="1128.71" y="693.5" ></text>
</g>
<g >
<title>RecoveryInProgress (20 samples, 0.02%)</title><rect x="1338.1" y="779" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="1341.09" y="789.5" ></text>
</g>
<g >
<title>InitializeQueryCompletion (9 samples, 0.01%)</title><rect x="871.5" y="699" width="0.1" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="874.54" y="709.5" ></text>
</g>
<g >
<title>ExecIndexBuildScanKeys (1,964 samples, 1.65%)</title><rect x="576.8" y="603" width="22.8" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="579.85" y="613.5" ></text>
</g>
<g >
<title>list_nth (29 samples, 0.02%)</title><rect x="635.9" y="555" width="0.4" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="638.94" y="565.5" ></text>
</g>
<g >
<title>AtCCI_LocalCache (10 samples, 0.01%)</title><rect x="1389.2" y="459" width="0.2" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text  x="1392.25" y="469.5" ></text>
</g>
<g >
<title>ExprEvalPushStep (27 samples, 0.02%)</title><rect x="608.5" y="539" width="0.3" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="611.52" y="549.5" ></text>
</g>
<g >
<title>tcp_rcv_established (5,248 samples, 4.40%)</title><rect x="318.3" y="235" width="60.7" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text  x="321.30" y="245.5" >tcp_r..</text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (9 samples, 0.01%)</title><rect x="1269.3" y="699" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="1272.33" y="709.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (90 samples, 0.08%)</title><rect x="928.4" y="267" width="1.0" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="931.40" y="277.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (179 samples, 0.15%)</title><rect x="14.7" y="363" width="2.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="17.72" y="373.5" ></text>
</g>
<g >
<title>OidFunctionCall1Coll (211 samples, 0.18%)</title><rect x="20.9" y="699" width="2.4" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text  x="23.90" y="709.5" ></text>
</g>
<g >
<title>validate_relation_kind (10 samples, 0.01%)</title><rect x="640.4" y="555" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="643.43" y="565.5" ></text>
</g>
<g >
<title>index_getprocinfo (42 samples, 0.04%)</title><rect x="1087.5" y="443" width="0.5" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="1090.50" y="453.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (25 samples, 0.02%)</title><rect x="587.4" y="507" width="0.3" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text  x="590.43" y="517.5" ></text>
</g>
<g >
<title>socket_putmessage (121 samples, 0.10%)</title><rect x="716.4" y="699" width="1.4" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text  x="719.43" y="709.5" ></text>
</g>
<g >
<title>index_getattr (34 samples, 0.03%)</title><rect x="1362.9" y="779" width="0.4" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text  x="1365.91" y="789.5" ></text>
</g>
<g >
<title>RelationCacheInvalidateEntry (24 samples, 0.02%)</title><rect x="18.0" y="699" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="20.96" y="709.5" ></text>
</g>
<g >
<title>fmgr_isbuiltin (12 samples, 0.01%)</title><rect x="585.9" y="539" width="0.1" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="588.91" y="549.5" ></text>
</g>
<g >
<title>tomoyo_socket_sendmsg_permission (92 samples, 0.08%)</title><rect x="263.6" y="523" width="1.1" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="266.64" y="533.5" ></text>
</g>
<g >
<title>exec_stmt_execsql (37 samples, 0.03%)</title><rect x="1285.2" y="699" width="0.4" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="1288.18" y="709.5" ></text>
</g>
<g >
<title>get_subscription_list (16 samples, 0.01%)</title><rect x="1268.9" y="699" width="0.2" height="15.0" fill="rgb(243,175,41)" rx="2" ry="2" />
<text  x="1271.90" y="709.5" ></text>
</g>
<g >
<title>LWLockWakeup (12 samples, 0.01%)</title><rect x="663.2" y="507" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="666.20" y="517.5" ></text>
</g>
<g >
<title>btgettuple (11,726 samples, 9.83%)</title><rect x="952.5" y="475" width="135.7" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="955.51" y="485.5" >btgettuple</text>
</g>
<g >
<title>__rcu_read_lock (11 samples, 0.01%)</title><rect x="317.1" y="235" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="320.07" y="245.5" ></text>
</g>
<g >
<title>ExecutorStart (13,554 samples, 11.37%)</title><rect x="526.2" y="699" width="156.8" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" />
<text  x="529.16" y="709.5" >ExecutorStart</text>
</g>
<g >
<title>RevalidateCachedQuery (32 samples, 0.03%)</title><rect x="1342.5" y="779" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="1345.50" y="789.5" ></text>
</g>
<g >
<title>AllocSetDelete (55 samples, 0.05%)</title><rect x="1191.0" y="507" width="0.6" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="1193.95" y="517.5" ></text>
</g>
<g >
<title>LWLockAcquire (68 samples, 0.06%)</title><rect x="845.7" y="651" width="0.8" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="848.72" y="661.5" ></text>
</g>
<g >
<title>index_insert (16 samples, 0.01%)</title><rect x="1276.5" y="427" width="0.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text  x="1279.53" y="437.5" ></text>
</g>
<g >
<title>__libc_send (16,018 samples, 13.43%)</title><rect x="254.5" y="635" width="185.4" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="257.51" y="645.5" >__libc_send</text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (234 samples, 0.20%)</title><rect x="728.9" y="555" width="2.7" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="731.91" y="565.5" ></text>
</g>
<g >
<title>ResourceOwnerRemember (41 samples, 0.03%)</title><rect x="703.0" y="635" width="0.5" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="705.98" y="645.5" ></text>
</g>
<g >
<title>hash_search (194 samples, 0.16%)</title><rect x="1204.8" y="635" width="2.2" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="1207.77" y="645.5" ></text>
</g>
<g >
<title>_SPI_commit (171 samples, 0.14%)</title><rect x="1127.0" y="427" width="2.0" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text  x="1130.02" y="437.5" ></text>
</g>
<g >
<title>AllocSetAlloc (40 samples, 0.03%)</title><rect x="619.7" y="523" width="0.5" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="622.71" y="533.5" ></text>
</g>
<g >
<title>planstate_walk_subplans (9 samples, 0.01%)</title><rect x="1374.3" y="779" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1377.33" y="789.5" ></text>
</g>
<g >
<title>__memcpy_evex_unaligned_erms (50 samples, 0.04%)</title><rect x="1089.7" y="475" width="0.6" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="1092.71" y="485.5" ></text>
</g>
<g >
<title>ItemPointerSetInvalid (21 samples, 0.02%)</title><rect x="878.9" y="491" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text  x="881.87" y="501.5" ></text>
</g>
<g >
<title>ExecClearTuple (41 samples, 0.03%)</title><rect x="877.6" y="555" width="0.5" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="880.60" y="565.5" ></text>
</g>
<g >
<title>get_page_from_freelist (286 samples, 0.24%)</title><rect x="1277.4" y="59" width="3.4" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="1280.44" y="69.5" ></text>
</g>
<g >
<title>LWLockDisownInternal (12 samples, 0.01%)</title><rect x="689.0" y="651" width="0.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="692.00" y="661.5" ></text>
</g>
<g >
<title>RelationFlushRelation (22 samples, 0.02%)</title><rect x="1283.3" y="331" width="0.2" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="1286.27" y="341.5" ></text>
</g>
<g >
<title>xactGetCommittedInvalidationMessages (9 samples, 0.01%)</title><rect x="1256.1" y="667" width="0.1" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text  x="1259.10" y="677.5" ></text>
</g>
<g >
<title>pq_getmsgbyte (12 samples, 0.01%)</title><rect x="1265.0" y="731" width="0.1" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text  x="1268.00" y="741.5" ></text>
</g>
<g >
<title>GetTransactionSnapshot (706 samples, 0.59%)</title><rect x="683.0" y="699" width="8.2" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text  x="686.01" y="709.5" ></text>
</g>
<g >
<title>FunctionCall2Coll (124 samples, 0.10%)</title><rect x="12.0" y="395" width="1.4" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="14.99" y="405.5" ></text>
</g>
<g >
<title>ExecutorRun (72 samples, 0.06%)</title><rect x="11.1" y="731" width="0.8" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text  x="14.10" y="741.5" ></text>
</g>
<g >
<title>ExecDropStmt (35 samples, 0.03%)</title><rect x="1283.3" y="507" width="0.4" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="1286.27" y="517.5" ></text>
</g>
<g >
<title>register_seq_scan (33 samples, 0.03%)</title><rect x="1208.8" y="635" width="0.3" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text  x="1211.75" y="645.5" ></text>
</g>
<g >
<title>ExecInitExprRec (653 samples, 0.55%)</title><rect x="605.2" y="587" width="7.5" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text  x="608.17" y="597.5" ></text>
</g>
<g >
<title>hash_search (172 samples, 0.14%)</title><rect x="868.1" y="699" width="2.0" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="871.09" y="709.5" ></text>
</g>
<g >
<title>resetStringInfo (79 samples, 0.07%)</title><rect x="1260.8" y="699" width="0.9" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="1263.80" y="709.5" ></text>
</g>
<g >
<title>index_getnext_slot (349 samples, 0.29%)</title><rect x="880.7" y="523" width="4.0" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="883.70" y="533.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (12 samples, 0.01%)</title><rect x="662.5" y="475" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="665.51" y="485.5" ></text>
</g>
<g >
<title>DatumGetInt32 (52 samples, 0.04%)</title><rect x="1305.7" y="779" width="0.6" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text  x="1308.75" y="789.5" ></text>
</g>
<g >
<title>_bt_doinsert (15 samples, 0.01%)</title><rect x="1276.5" y="395" width="0.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text  x="1279.53" y="405.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (29 samples, 0.02%)</title><rect x="623.4" y="491" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="626.40" y="501.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (28 samples, 0.02%)</title><rect x="265.0" y="523" width="0.3" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text  x="268.02" y="533.5" ></text>
</g>
<g >
<title>exec_stmt_execsql (47 samples, 0.04%)</title><rect x="1272.7" y="747" width="0.6" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="1275.71" y="757.5" ></text>
</g>
<g >
<title>get_hash_entry (14 samples, 0.01%)</title><rect x="498.4" y="587" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="501.38" y="597.5" ></text>
</g>
<g >
<title>pgstat_tracks_backend_bktype (14 samples, 0.01%)</title><rect x="939.5" y="299" width="0.2" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text  x="942.51" y="309.5" ></text>
</g>
<g >
<title>list_free_private (32 samples, 0.03%)</title><rect x="1193.4" y="475" width="0.4" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="1196.39" y="485.5" ></text>
</g>
<g >
<title>HistoricSnapshotActive (26 samples, 0.02%)</title><rect x="1319.9" y="779" width="0.3" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="1322.93" y="789.5" ></text>
</g>
<g >
<title>AllocSetAlloc (45 samples, 0.04%)</title><rect x="564.2" y="475" width="0.5" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="567.15" y="485.5" ></text>
</g>
<g >
<title>__alloc_skb (762 samples, 0.64%)</title><rect x="423.1" y="491" width="8.8" height="15.0" fill="rgb(226,100,23)" rx="2" ry="2" />
<text  x="426.06" y="501.5" ></text>
</g>
<g >
<title>BufferGetBlockNumber (10 samples, 0.01%)</title><rect x="1013.0" y="411" width="0.1" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text  x="1015.98" y="421.5" ></text>
</g>
<g >
<title>ReleaseSysCache (53 samples, 0.04%)</title><rect x="621.9" y="539" width="0.7" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="624.94" y="549.5" ></text>
</g>
<g >
<title>exec_execute_message (85 samples, 0.07%)</title><rect x="1387.1" y="763" width="1.0" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="1390.13" y="773.5" ></text>
</g>
<g >
<title>reweight_entity (26 samples, 0.02%)</title><rect x="141.2" y="459" width="0.3" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text  x="144.22" y="469.5" ></text>
</g>
<g >
<title>AtCommit_Memory (139 samples, 0.12%)</title><rect x="1134.9" y="667" width="1.6" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="1137.88" y="677.5" ></text>
</g>
<g >
<title>RegisterSnapshotOnOwner (100 samples, 0.08%)</title><rect x="524.2" y="667" width="1.1" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text  x="527.18" y="677.5" ></text>
</g>
<g >
<title>MemoryContextSetParent (15 samples, 0.01%)</title><rect x="1147.1" y="603" width="0.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="1150.08" y="613.5" ></text>
</g>
<g >
<title>PageGetMaxOffsetNumber (17 samples, 0.01%)</title><rect x="947.2" y="427" width="0.2" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text  x="950.20" y="437.5" ></text>
</g>
<g >
<title>MemoryContextSwitchTo (18 samples, 0.02%)</title><rect x="91.8" y="731" width="0.2" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text  x="94.78" y="741.5" ></text>
</g>
<g >
<title>do_syscall_64 (10 samples, 0.01%)</title><rect x="1272.0" y="347" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="1274.98" y="357.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (11 samples, 0.01%)</title><rect x="818.7" y="571" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="821.69" y="581.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (50 samples, 0.04%)</title><rect x="198.7" y="619" width="0.5" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text  x="201.66" y="629.5" ></text>
</g>
<g >
<title>btbuild (27 samples, 0.02%)</title><rect x="1272.8" y="523" width="0.3" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text  x="1275.81" y="533.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (60 samples, 0.05%)</title><rect x="383.4" y="347" width="0.7" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text  x="386.40" y="357.5" ></text>
</g>
<g >
<title>AllocSetAlloc (49 samples, 0.04%)</title><rect x="864.7" y="667" width="0.6" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="867.70" y="677.5" ></text>
</g>
<g >
<title>RelationCloseCleanup (17 samples, 0.01%)</title><rect x="1175.9" y="491" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="1178.93" y="501.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberBuffer (28 samples, 0.02%)</title><rect x="74.1" y="283" width="0.3" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="77.06" y="293.5" ></text>
</g>
<g >
<title>GetMemoryChunkMethodID (10 samples, 0.01%)</title><rect x="1219.1" y="635" width="0.1" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text  x="1222.07" y="645.5" ></text>
</g>
<g >
<title>StartReadBuffer (26 samples, 0.02%)</title><rect x="17.1" y="363" width="0.3" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="20.12" y="373.5" ></text>
</g>
<g >
<title>PreCommit_on_commit_actions (23 samples, 0.02%)</title><rect x="1215.0" y="667" width="0.3" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text  x="1218.00" y="677.5" ></text>
</g>
<g >
<title>PreCommit_CheckForSerializationFailure (11 samples, 0.01%)</title><rect x="1334.7" y="779" width="0.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="1337.68" y="789.5" ></text>
</g>
<g >
<title>ExtendBufferedRel (25 samples, 0.02%)</title><rect x="25.5" y="683" width="0.3" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text  x="28.52" y="693.5" ></text>
</g>
<g >
<title>_bt_lockbuf (166 samples, 0.14%)</title><rect x="1081.0" y="411" width="1.9" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text  x="1084.02" y="421.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (11 samples, 0.01%)</title><rect x="1128.6" y="299" width="0.1" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="1131.56" y="309.5" ></text>
</g>
<g >
<title>pfree (51 samples, 0.04%)</title><rect x="1202.7" y="539" width="0.6" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1205.73" y="549.5" ></text>
</g>
<g >
<title>getBaseTypeAndTypmod (239 samples, 0.20%)</title><rect x="853.3" y="699" width="2.8" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text  x="856.34" y="709.5" ></text>
</g>
<g >
<title>AtEOXact_GUC (36 samples, 0.03%)</title><rect x="1295.5" y="779" width="0.4" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="1298.50" y="789.5" ></text>
</g>
<g >
<title>ProcessUtility (65 samples, 0.05%)</title><rect x="79.7" y="683" width="0.8" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="82.71" y="693.5" ></text>
</g>
<g >
<title>ip_rcv (230 samples, 0.19%)</title><rect x="379.3" y="299" width="2.6" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="382.26" y="309.5" ></text>
</g>
<g >
<title>newNode (162 samples, 0.14%)</title><rect x="615.9" y="587" width="1.8" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="618.86" y="597.5" ></text>
</g>
<g >
<title>IndexTupleHasNulls (12 samples, 0.01%)</title><rect x="14.1" y="379" width="0.1" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text  x="17.07" y="389.5" ></text>
</g>
<g >
<title>btrescan (157 samples, 0.13%)</title><rect x="1088.5" y="491" width="1.8" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="1091.50" y="501.5" ></text>
</g>
<g >
<title>afterTriggerMarkEvents (34 samples, 0.03%)</title><rect x="1134.5" y="651" width="0.4" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text  x="1137.48" y="661.5" ></text>
</g>
<g >
<title>heap_page_prune_opt (10 samples, 0.01%)</title><rect x="1361.9" y="779" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="1364.94" y="789.5" ></text>
</g>
<g >
<title>ep_item_poll.isra.0 (932 samples, 0.78%)</title><rect x="116.6" y="539" width="10.8" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="119.63" y="549.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (37 samples, 0.03%)</title><rect x="846.0" y="619" width="0.4" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="848.98" y="629.5" ></text>
</g>
<g >
<title>IsInParallelMode (14 samples, 0.01%)</title><rect x="1323.1" y="779" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="1326.10" y="789.5" ></text>
</g>
<g >
<title>PageSetChecksumInplace (9 samples, 0.01%)</title><rect x="1277.2" y="379" width="0.1" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text  x="1280.24" y="389.5" ></text>
</g>
<g >
<title>OidInputFunctionCall (323 samples, 0.27%)</title><rect x="513.7" y="715" width="3.8" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="516.73" y="725.5" ></text>
</g>
<g >
<title>exec_toplevel_block (65 samples, 0.05%)</title><rect x="79.7" y="555" width="0.8" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="82.71" y="565.5" ></text>
</g>
<g >
<title>ExecDoInitialPruning (12 samples, 0.01%)</title><rect x="546.1" y="635" width="0.1" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text  x="549.10" y="645.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (40 samples, 0.03%)</title><rect x="918.4" y="411" width="0.5" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="921.40" y="421.5" ></text>
</g>
<g >
<title>AtEOXact_SMgr (26 samples, 0.02%)</title><rect x="1298.8" y="779" width="0.3" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="1301.81" y="789.5" ></text>
</g>
<g >
<title>exec_stmt_block (37 samples, 0.03%)</title><rect x="1285.2" y="763" width="0.4" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="1288.18" y="773.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetCatCacheRef (37 samples, 0.03%)</title><rect x="543.3" y="523" width="0.4" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text  x="546.25" y="533.5" ></text>
</g>
<g >
<title>_bt_parallel_done (18 samples, 0.02%)</title><rect x="1350.8" y="779" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="1353.82" y="789.5" ></text>
</g>
<g >
<title>ExecScan (670 samples, 0.56%)</title><rect x="877.3" y="587" width="7.8" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text  x="880.32" y="597.5" ></text>
</g>
<g >
<title>shmem_alloc_hugefolio (11 samples, 0.01%)</title><rect x="25.5" y="347" width="0.2" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text  x="28.53" y="357.5" ></text>
</g>
<g >
<title>stack_is_too_deep (13 samples, 0.01%)</title><rect x="678.5" y="603" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="681.51" y="613.5" ></text>
</g>
<g >
<title>palloc0 (144 samples, 0.12%)</title><rect x="616.1" y="571" width="1.6" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="619.06" y="581.5" ></text>
</g>
<g >
<title>hash_seq_term (17 samples, 0.01%)</title><rect x="1214.4" y="635" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="1217.41" y="645.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (61 samples, 0.05%)</title><rect x="701.6" y="651" width="0.7" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="704.64" y="661.5" ></text>
</g>
<g >
<title>exec_bind_message (34,994 samples, 29.34%)</title><rect x="442.9" y="731" width="405.0" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text  x="445.91" y="741.5" >exec_bind_message</text>
</g>
<g >
<title>exec_simple_query (65 samples, 0.05%)</title><rect x="79.7" y="747" width="0.8" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text  x="82.71" y="757.5" ></text>
</g>
<g >
<title>initStringInfo (17 samples, 0.01%)</title><rect x="1363.7" y="779" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="1366.72" y="789.5" ></text>
</g>
<g >
<title>PageGetItemId (16 samples, 0.01%)</title><rect x="1022.7" y="427" width="0.2" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text  x="1025.70" y="437.5" ></text>
</g>
<g >
<title>inet_send_prepare (28 samples, 0.02%)</title><rect x="261.7" y="523" width="0.4" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text  x="264.73" y="533.5" ></text>
</g>
<g >
<title>GetMemoryChunkMethodID (12 samples, 0.01%)</title><rect x="249.6" y="683" width="0.1" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text  x="252.57" y="693.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (9 samples, 0.01%)</title><rect x="643.4" y="491" width="0.1" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="646.43" y="501.5" ></text>
</g>
<g >
<title>should_output_to_server (12 samples, 0.01%)</title><rect x="697.9" y="699" width="0.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="700.93" y="709.5" ></text>
</g>
<g >
<title>pq_getmessage (550 samples, 0.46%)</title><rect x="239.7" y="699" width="6.4" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="242.70" y="709.5" ></text>
</g>
<g >
<title>pg_server_to_client (25 samples, 0.02%)</title><rect x="1370.9" y="779" width="0.2" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text  x="1373.86" y="789.5" ></text>
</g>
<g >
<title>ip_protocol_deliver_rcu (6,362 samples, 5.33%)</title><rect x="305.6" y="283" width="73.6" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="308.63" y="293.5" >ip_pro..</text>
</g>
<g >
<title>AddNewAttributeTuples (15 samples, 0.01%)</title><rect x="1283.0" y="475" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text  x="1286.03" y="485.5" ></text>
</g>
<g >
<title>AfterTriggerEndXact (11 samples, 0.01%)</title><rect x="1133.9" y="667" width="0.2" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text  x="1136.95" y="677.5" ></text>
</g>
<g >
<title>XLogBackgroundFlush (11 samples, 0.01%)</title><rect x="1268.8" y="731" width="0.1" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text  x="1271.76" y="741.5" ></text>
</g>
<g >
<title>pg_qsort (15 samples, 0.01%)</title><rect x="1253.0" y="619" width="0.2" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text  x="1256.02" y="629.5" ></text>
</g>
<g >
<title>pfree (32 samples, 0.03%)</title><rect x="1118.7" y="667" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1121.68" y="677.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (29 samples, 0.02%)</title><rect x="1231.4" y="571" width="0.3" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="1234.41" y="581.5" ></text>
</g>
<g >
<title>InitializeQueryCompletion (9 samples, 0.01%)</title><rect x="1321.3" y="779" width="0.1" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="1324.32" y="789.5" ></text>
</g>
<g >
<title>Int32GetDatum (47 samples, 0.04%)</title><rect x="1049.6" y="363" width="0.5" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text  x="1052.57" y="373.5" ></text>
</g>
<g >
<title>MemoryContextDeleteOnly (213 samples, 0.18%)</title><rect x="1195.0" y="539" width="2.4" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="1197.98" y="549.5" ></text>
</g>
<g >
<title>ReadBuffer (49 samples, 0.04%)</title><rect x="1387.5" y="427" width="0.6" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="1390.55" y="437.5" ></text>
</g>
<g >
<title>Int32GetDatum (27 samples, 0.02%)</title><rect x="984.5" y="379" width="0.3" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text  x="987.49" y="389.5" ></text>
</g>
<g >
<title>pq_sendint16 (28 samples, 0.02%)</title><rect x="857.6" y="699" width="0.3" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text  x="860.59" y="709.5" ></text>
</g>
<g >
<title>_bt_compare (20 samples, 0.02%)</title><rect x="1349.5" y="779" width="0.3" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text  x="1352.54" y="789.5" ></text>
</g>
<g >
<title>socket_putmessage (89 samples, 0.07%)</title><rect x="1099.2" y="587" width="1.0" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text  x="1102.18" y="597.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (53 samples, 0.04%)</title><rect x="52.6" y="235" width="0.6" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="55.58" y="245.5" ></text>
</g>
<g >
<title>_bt_checkkeys (36 samples, 0.03%)</title><rect x="1387.1" y="443" width="0.4" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text  x="1390.13" y="453.5" ></text>
</g>
<g >
<title>AllocSetFree (21 samples, 0.02%)</title><rect x="1193.5" y="443" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="1196.51" y="453.5" ></text>
</g>
<g >
<title>ReadBuffer_common (1,728 samples, 1.45%)</title><rect x="919.7" y="395" width="20.0" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text  x="922.70" y="405.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (16 samples, 0.01%)</title><rect x="677.5" y="555" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="680.48" y="565.5" ></text>
</g>
<g >
<title>ResourceOwnerRemember (16 samples, 0.01%)</title><rect x="594.6" y="507" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="597.62" y="517.5" ></text>
</g>
<g >
<title>ExecDropStmt (58 samples, 0.05%)</title><rect x="79.8" y="363" width="0.7" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="82.79" y="373.5" ></text>
</g>
<g >
<title>_bt_search (49 samples, 0.04%)</title><rect x="1387.5" y="475" width="0.6" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text  x="1390.55" y="485.5" ></text>
</g>
<g >
<title>internal_putbytes (68 samples, 0.06%)</title><rect x="867.0" y="683" width="0.8" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="870.03" y="693.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (23 samples, 0.02%)</title><rect x="24.0" y="523" width="0.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="27.01" y="533.5" ></text>
</g>
<g >
<title>tcp_rate_skb_sent (39 samples, 0.03%)</title><rect x="404.1" y="459" width="0.4" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text  x="407.07" y="469.5" ></text>
</g>
<g >
<title>LWLockAcquire (112 samples, 0.09%)</title><rect x="661.6" y="539" width="1.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="664.58" y="549.5" ></text>
</g>
<g >
<title>AtCCI_LocalCache (22 samples, 0.02%)</title><rect x="1283.3" y="411" width="0.2" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text  x="1286.27" y="421.5" ></text>
</g>
<g >
<title>MemoryContextCreate (63 samples, 0.05%)</title><rect x="1112.5" y="603" width="0.7" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text  x="1115.46" y="613.5" ></text>
</g>
<g >
<title>MemoryContextSwitchTo (124 samples, 0.10%)</title><rect x="1328.3" y="779" width="1.4" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text  x="1331.31" y="789.5" ></text>
</g>
<g >
<title>exec_stmts (23 samples, 0.02%)</title><rect x="24.0" y="651" width="0.3" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="27.01" y="661.5" ></text>
</g>
<g >
<title>heapam_index_fetch_begin (67 samples, 0.06%)</title><rect x="912.2" y="475" width="0.8" height="15.0" fill="rgb(243,174,41)" rx="2" ry="2" />
<text  x="915.21" y="485.5" ></text>
</g>
<g >
<title>BTreeTupleIsPivot (401 samples, 0.34%)</title><rect x="1032.6" y="395" width="4.6" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="1035.59" y="405.5" ></text>
</g>
<g >
<title>IndexNext (469 samples, 0.39%)</title><rect x="12.0" y="539" width="5.4" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="14.99" y="549.5" ></text>
</g>
<g >
<title>MemoryContextDelete (233 samples, 0.20%)</title><rect x="1144.6" y="635" width="2.7" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text  x="1147.57" y="645.5" ></text>
</g>
<g >
<title>DatumGetPointer (19 samples, 0.02%)</title><rect x="1306.3" y="779" width="0.3" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="1309.35" y="789.5" ></text>
</g>
<g >
<title>ReindexIsProcessingIndex (28 samples, 0.02%)</title><rect x="904.3" y="475" width="0.3" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text  x="907.31" y="485.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (21 samples, 0.02%)</title><rect x="239.1" y="619" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="242.09" y="629.5" ></text>
</g>
<g >
<title>AtStart_Cache (9,794 samples, 8.21%)</title><rect x="723.2" y="667" width="113.4" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="726.22" y="677.5" >AtStart_Cache</text>
</g>
<g >
<title>GetPrivateRefCountEntry (26 samples, 0.02%)</title><rect x="42.6" y="283" width="0.3" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="45.62" y="293.5" ></text>
</g>
<g >
<title>RelationIdGetRelation (293 samples, 0.25%)</title><rect x="636.8" y="539" width="3.4" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text  x="639.77" y="549.5" ></text>
</g>
<g >
<title>MemoryContextSwitchTo (12 samples, 0.01%)</title><rect x="901.9" y="507" width="0.1" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text  x="904.90" y="517.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (81 samples, 0.07%)</title><rect x="1271.8" y="715" width="0.9" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="1274.77" y="725.5" ></text>
</g>
<g >
<title>AllocSetFree (74 samples, 0.06%)</title><rect x="1239.2" y="571" width="0.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="1242.20" y="581.5" ></text>
</g>
<g >
<title>_bt_compare (12 samples, 0.01%)</title><rect x="1000.2" y="443" width="0.1" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text  x="1003.17" y="453.5" ></text>
</g>
<g >
<title>CommitTransactionCommandInternal (10,939 samples, 9.17%)</title><rect x="1130.0" y="699" width="126.6" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text  x="1133.04" y="709.5" >CommitTransac..</text>
</g>
<g >
<title>AcceptInvalidationMessages (1,321 samples, 1.11%)</title><rect x="642.2" y="555" width="15.2" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text  x="645.16" y="565.5" ></text>
</g>
<g >
<title>__strncmp_evex (16 samples, 0.01%)</title><rect x="850.1" y="651" width="0.2" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text  x="853.13" y="661.5" ></text>
</g>
<g >
<title>exec_toplevel_block (81 samples, 0.07%)</title><rect x="1271.8" y="619" width="0.9" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="1274.77" y="629.5" ></text>
</g>
<g >
<title>ExecuteDoStmt (23 samples, 0.02%)</title><rect x="24.0" y="763" width="0.3" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text  x="27.01" y="773.5" ></text>
</g>
<g >
<title>_bt_readfirstpage (12 samples, 0.01%)</title><rect x="1351.2" y="779" width="0.2" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text  x="1354.25" y="789.5" ></text>
</g>
<g >
<title>tcp_rate_check_app_limited (74 samples, 0.06%)</title><rect x="417.3" y="507" width="0.9" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="420.32" y="517.5" ></text>
</g>
<g >
<title>deleteObjectsInList (34 samples, 0.03%)</title><rect x="1284.0" y="715" width="0.4" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="1287.01" y="725.5" ></text>
</g>
<g >
<title>fmgr_info_copy (25 samples, 0.02%)</title><rect x="956.2" y="427" width="0.3" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text  x="959.22" y="437.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (9 samples, 0.01%)</title><rect x="643.4" y="443" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="646.43" y="453.5" ></text>
</g>
<g >
<title>PortalRun (21,570 samples, 18.09%)</title><rect x="870.6" y="715" width="249.6" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="873.64" y="725.5" >PortalRun</text>
</g>
<g >
<title>smgrextend (442 samples, 0.37%)</title><rect x="1277.3" y="379" width="5.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text  x="1280.35" y="389.5" ></text>
</g>
<g >
<title>pgstat_clear_snapshot (21 samples, 0.02%)</title><rect x="1372.6" y="779" width="0.3" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="1375.61" y="789.5" ></text>
</g>
<g >
<title>exec_stmts (11 samples, 0.01%)</title><rect x="19.4" y="699" width="0.1" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="22.38" y="709.5" ></text>
</g>
<g >
<title>pg_client_to_server (116 samples, 0.10%)</title><rect x="714.5" y="699" width="1.3" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text  x="717.49" y="709.5" ></text>
</g>
<g >
<title>plpgsql_inline_handler (37 samples, 0.03%)</title><rect x="1285.2" y="811" width="0.4" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="1288.18" y="821.5" ></text>
</g>
<g >
<title>systable_getnext (10 samples, 0.01%)</title><rect x="1284.3" y="683" width="0.1" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="1287.29" y="693.5" ></text>
</g>
<g >
<title>stmt_requires_parse_analysis (30 samples, 0.03%)</title><rect x="502.7" y="667" width="0.3" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="505.66" y="677.5" ></text>
</g>
<g >
<title>PortalRun (72 samples, 0.06%)</title><rect x="11.1" y="763" width="0.8" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="14.10" y="773.5" ></text>
</g>
<g >
<title>RelationFlushRelation (23 samples, 0.02%)</title><rect x="24.5" y="667" width="0.2" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="27.48" y="677.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (41 samples, 0.03%)</title><rect x="1119.6" y="651" width="0.4" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="1122.57" y="661.5" ></text>
</g>
<g >
<title>exec_stmts (196 samples, 0.16%)</title><rect x="1127.0" y="507" width="2.3" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="1130.02" y="517.5" ></text>
</g>
<g >
<title>GetMemoryChunkMethodID (10 samples, 0.01%)</title><rect x="1185.7" y="459" width="0.1" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text  x="1188.72" y="469.5" ></text>
</g>
<g >
<title>exec_stmts (27 samples, 0.02%)</title><rect x="1284.9" y="731" width="0.3" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="1287.87" y="741.5" ></text>
</g>
<g >
<title>pg_clock_gettime_ns (15 samples, 0.01%)</title><rect x="1370.5" y="779" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="1373.47" y="789.5" ></text>
</g>
<g >
<title>__memcmp_evex_movbe (41 samples, 0.03%)</title><rect x="56.3" y="267" width="0.5" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="59.29" y="277.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (10 samples, 0.01%)</title><rect x="555.4" y="491" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="558.39" y="501.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (289 samples, 0.24%)</title><rect x="189.2" y="555" width="3.4" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="192.22" y="565.5" ></text>
</g>
<g >
<title>RelationFlushRelation (22 samples, 0.02%)</title><rect x="1277.0" y="363" width="0.2" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="1279.99" y="373.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (37 samples, 0.03%)</title><rect x="1285.2" y="603" width="0.4" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="1288.18" y="613.5" ></text>
</g>
<g >
<title>MemoryChunkSetHdrMask (10 samples, 0.01%)</title><rect x="20.3" y="811" width="0.1" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="23.25" y="821.5" ></text>
</g>
<g >
<title>IsTransactionStmtList (41 samples, 0.03%)</title><rect x="870.1" y="715" width="0.5" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="873.14" y="725.5" ></text>
</g>
<g >
<title>get_timeout_active (23 samples, 0.02%)</title><rect x="847.6" y="683" width="0.3" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" />
<text  x="850.59" y="693.5" ></text>
</g>
<g >
<title>exec_stmts (37 samples, 0.03%)</title><rect x="1285.2" y="715" width="0.4" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="1288.18" y="725.5" ></text>
</g>
<g >
<title>_bt_search (46 samples, 0.04%)</title><rect x="11.4" y="491" width="0.5" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text  x="14.40" y="501.5" ></text>
</g>
<g >
<title>raw_spin_rq_lock_nested (27 samples, 0.02%)</title><rect x="179.2" y="459" width="0.3" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="182.18" y="469.5" ></text>
</g>
<g >
<title>exec_stmts (196 samples, 0.16%)</title><rect x="1127.0" y="475" width="2.3" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="1130.02" y="485.5" ></text>
</g>
<g >
<title>CatalogCacheCompareTuple (16 samples, 0.01%)</title><rect x="593.7" y="523" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="596.74" y="533.5" ></text>
</g>
<g >
<title>pfree (68 samples, 0.06%)</title><rect x="1218.4" y="651" width="0.8" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1221.40" y="661.5" ></text>
</g>
<g >
<title>palloc (41 samples, 0.03%)</title><rect x="555.1" y="523" width="0.5" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="558.09" y="533.5" ></text>
</g>
<g >
<title>PinBuffer (922 samples, 0.77%)</title><rect x="67.4" y="299" width="10.7" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text  x="70.38" y="309.5" ></text>
</g>
<g >
<title>exprCollation (61 samples, 0.05%)</title><rect x="627.5" y="555" width="0.7" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text  x="630.52" y="565.5" ></text>
</g>
<g >
<title>__switch_to (54 samples, 0.05%)</title><rect x="101.1" y="603" width="0.6" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text  x="104.08" y="613.5" ></text>
</g>
<g >
<title>__memcpy_evex_unaligned_erms (15 samples, 0.01%)</title><rect x="720.1" y="683" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="723.14" y="693.5" ></text>
</g>
<g >
<title>_bt_getbuf (15 samples, 0.01%)</title><rect x="1350.1" y="779" width="0.1" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="1353.05" y="789.5" ></text>
</g>
<g >
<title>tcp_event_data_recv (115 samples, 0.10%)</title><rect x="375.7" y="219" width="1.4" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="378.74" y="229.5" ></text>
</g>
<g >
<title>SetCurrentStatementStartTimestamp (197 samples, 0.17%)</title><rect x="440.4" y="731" width="2.3" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text  x="443.44" y="741.5" ></text>
</g>
<g >
<title>AfterTriggerFireDeferred (69 samples, 0.06%)</title><rect x="1134.1" y="667" width="0.8" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text  x="1137.08" y="677.5" ></text>
</g>
<g >
<title>IndexNext (4,568 samples, 3.83%)</title><rect x="26.8" y="539" width="52.9" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="29.85" y="549.5" >Inde..</text>
</g>
<g >
<title>AllocSetAlloc (224 samples, 0.19%)</title><rect x="909.4" y="443" width="2.6" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="912.39" y="453.5" ></text>
</g>
<g >
<title>pfree (27 samples, 0.02%)</title><rect x="1193.5" y="459" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1196.45" y="469.5" ></text>
</g>
<g >
<title>__memcpy_evex_unaligned_erms (12 samples, 0.01%)</title><rect x="857.5" y="651" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="860.45" y="661.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (61 samples, 0.05%)</title><rect x="469.3" y="619" width="0.7" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="472.32" y="629.5" ></text>
</g>
<g >
<title>dev_hard_start_xmit (493 samples, 0.41%)</title><rect x="388.9" y="411" width="5.7" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text  x="391.89" y="421.5" ></text>
</g>
<g >
<title>LocalExecuteInvalidationMessage (21 samples, 0.02%)</title><rect x="1274.1" y="763" width="0.2" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="1277.05" y="773.5" ></text>
</g>
<g >
<title>palloc (240 samples, 0.20%)</title><rect x="1258.0" y="699" width="2.8" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="1261.02" y="709.5" ></text>
</g>
<g >
<title>exec_stmt_fori (11 samples, 0.01%)</title><rect x="19.4" y="715" width="0.1" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text  x="22.38" y="725.5" ></text>
</g>
<g >
<title>exec_toplevel_block (196 samples, 0.16%)</title><rect x="1127.0" y="539" width="2.3" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="1130.02" y="549.5" ></text>
</g>
<g >
<title>IndexNext (16,293 samples, 13.66%)</title><rect x="902.1" y="523" width="188.5" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="905.10" y="533.5" >IndexNext</text>
</g>
<g >
<title>get_page_from_freelist (11 samples, 0.01%)</title><rect x="1272.8" y="123" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="1275.81" y="133.5" ></text>
</g>
<g >
<title>pq_writeint8 (23 samples, 0.02%)</title><rect x="251.0" y="683" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text  x="253.97" y="693.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (31 samples, 0.03%)</title><rect x="598.0" y="555" width="0.4" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="601.01" y="565.5" ></text>
</g>
<g >
<title>__put_user_nocheck_8 (30 samples, 0.03%)</title><rect x="113.6" y="539" width="0.4" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text  x="116.65" y="549.5" ></text>
</g>
<g >
<title>RelationRebuildRelation (10 samples, 0.01%)</title><rect x="1389.2" y="363" width="0.2" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text  x="1392.25" y="373.5" ></text>
</g>
<g >
<title>dlist_is_empty (47 samples, 0.04%)</title><rect x="1354.9" y="779" width="0.5" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="1357.87" y="789.5" ></text>
</g>
<g >
<title>DatumGetBool (11 samples, 0.01%)</title><rect x="1305.2" y="779" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="1308.20" y="789.5" ></text>
</g>
<g >
<title>index_getnext_tid (85 samples, 0.07%)</title><rect x="1387.1" y="523" width="1.0" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="1390.13" y="533.5" ></text>
</g>
<g >
<title>__x64_sys_pwrite64 (25 samples, 0.02%)</title><rect x="25.5" y="475" width="0.3" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="28.52" y="485.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (187 samples, 0.16%)</title><rect x="58.9" y="251" width="2.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="61.90" y="261.5" ></text>
</g>
<g >
<title>AtEOXact_Inval (14 samples, 0.01%)</title><rect x="1296.1" y="779" width="0.2" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text  x="1299.11" y="789.5" ></text>
</g>
<g >
<title>LWLockRelease (71 samples, 0.06%)</title><rect x="846.5" y="651" width="0.9" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="849.53" y="661.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (12 samples, 0.01%)</title><rect x="662.5" y="491" width="0.2" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="665.51" y="501.5" ></text>
</g>
<g >
<title>DatumGetInt32 (37 samples, 0.03%)</title><rect x="1049.1" y="363" width="0.5" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text  x="1052.14" y="373.5" ></text>
</g>
<g >
<title>sk_filter_trim_cap (153 samples, 0.13%)</title><rect x="315.7" y="251" width="1.8" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="318.69" y="261.5" ></text>
</g>
<g >
<title>tag_hash (107 samples, 0.09%)</title><rect x="668.0" y="523" width="1.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="671.02" y="533.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (54 samples, 0.05%)</title><rect x="855.0" y="635" width="0.7" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="858.03" y="645.5" ></text>
</g>
<g >
<title>LWLockDisownInternal (16 samples, 0.01%)</title><rect x="36.9" y="283" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="39.92" y="293.5" ></text>
</g>
<g >
<title>skb_clone_tx_timestamp (39 samples, 0.03%)</title><rect x="393.5" y="379" width="0.4" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="396.48" y="389.5" ></text>
</g>
<g >
<title>LocalExecuteInvalidationMessage (24 samples, 0.02%)</title><rect x="642.2" y="523" width="0.3" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="645.24" y="533.5" ></text>
</g>
<g >
<title>set_ps_display_with_len (44 samples, 0.04%)</title><rect x="1126.4" y="715" width="0.5" height="15.0" fill="rgb(222,79,18)" rx="2" ry="2" />
<text  x="1129.37" y="725.5" ></text>
</g>
<g >
<title>hash_search (233 samples, 0.20%)</title><rect x="460.1" y="699" width="2.7" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="463.09" y="709.5" ></text>
</g>
<g >
<title>_bt_lockbuf (179 samples, 0.15%)</title><rect x="14.7" y="411" width="2.1" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text  x="17.72" y="421.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (11 samples, 0.01%)</title><rect x="1231.9" y="555" width="0.1" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="1234.89" y="565.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (25 samples, 0.02%)</title><rect x="25.5" y="779" width="0.3" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="28.52" y="789.5" ></text>
</g>
<g >
<title>TupleDescAttr (9 samples, 0.01%)</title><rect x="1103.1" y="587" width="0.1" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="1106.09" y="597.5" ></text>
</g>
<g >
<title>MemoryContextSwitchTo (9 samples, 0.01%)</title><rect x="1095.9" y="603" width="0.1" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text  x="1098.88" y="613.5" ></text>
</g>
<g >
<title>LWLockAcquire (271 samples, 0.23%)</title><rect x="728.9" y="603" width="3.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="731.89" y="613.5" ></text>
</g>
<g >
<title>enable_statement_timeout (29 samples, 0.02%)</title><rect x="847.5" y="699" width="0.4" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="850.52" y="709.5" ></text>
</g>
<g >
<title>skb_attempt_defer_free (334 samples, 0.28%)</title><rect x="213.8" y="507" width="3.9" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" />
<text  x="216.85" y="517.5" ></text>
</g>
<g >
<title>HeapTupleHeaderIsHeapOnly (247 samples, 0.21%)</title><rect x="943.4" y="411" width="2.9" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="946.43" y="421.5" ></text>
</g>
<g >
<title>AllocSetFree (22 samples, 0.02%)</title><rect x="1207.1" y="619" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="1210.10" y="629.5" ></text>
</g>
<g >
<title>ExecEvalStepOp (11 samples, 0.01%)</title><rect x="1308.5" y="779" width="0.1" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text  x="1311.51" y="789.5" ></text>
</g>
<g >
<title>kfree (19 samples, 0.02%)</title><rect x="363.7" y="171" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="366.68" y="181.5" ></text>
</g>
<g >
<title>initStringInfoInternal (369 samples, 0.31%)</title><rect x="1113.2" y="603" width="4.3" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="1116.25" y="613.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (21 samples, 0.02%)</title><rect x="1104.8" y="507" width="0.2" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text  x="1107.80" y="517.5" ></text>
</g>
<g >
<title>release_sock (115 samples, 0.10%)</title><rect x="266.8" y="523" width="1.4" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text  x="269.85" y="533.5" ></text>
</g>
<g >
<title>GETSTRUCT (11 samples, 0.01%)</title><rect x="542.6" y="571" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="545.64" y="581.5" ></text>
</g>
<g >
<title>pg_pwritev (27 samples, 0.02%)</title><rect x="1272.8" y="379" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1275.81" y="389.5" ></text>
</g>
<g >
<title>newNode (343 samples, 0.29%)</title><rect x="536.7" y="635" width="3.9" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="539.68" y="645.5" ></text>
</g>
<g >
<title>GetPrivateRefCountEntry (9 samples, 0.01%)</title><rect x="880.3" y="443" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="883.28" y="453.5" ></text>
</g>
<g >
<title>sock_recvmsg (356 samples, 0.30%)</title><rect x="231.5" y="555" width="4.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="234.47" y="565.5" ></text>
</g>
<g >
<title>its_return_thunk (9 samples, 0.01%)</title><rect x="141.1" y="459" width="0.1" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="144.12" y="469.5" ></text>
</g>
<g >
<title>exec_rt_fetch (34 samples, 0.03%)</title><rect x="640.7" y="603" width="0.4" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text  x="643.73" y="613.5" ></text>
</g>
<g >
<title>tag_hash (159 samples, 0.13%)</title><rect x="1167.0" y="555" width="1.8" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="1169.96" y="565.5" ></text>
</g>
<g >
<title>ResourceOwnerEnlarge (19 samples, 0.02%)</title><rect x="702.7" y="651" width="0.2" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text  x="705.69" y="661.5" ></text>
</g>
<g >
<title>rcu_note_context_switch (28 samples, 0.02%)</title><rect x="187.9" y="491" width="0.3" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text  x="190.89" y="501.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (39 samples, 0.03%)</title><rect x="23.3" y="491" width="0.5" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="26.34" y="501.5" ></text>
</g>
<g >
<title>PortalRunMulti (196 samples, 0.16%)</title><rect x="1127.0" y="699" width="2.3" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="1130.02" y="709.5" ></text>
</g>
<g >
<title>PortalRun (4,568 samples, 3.83%)</title><rect x="26.8" y="731" width="52.9" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="29.85" y="741.5" >Port..</text>
</g>
<g >
<title>ReadBufferExtended (1,819 samples, 1.53%)</title><rect x="28.0" y="395" width="21.0" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text  x="30.96" y="405.5" ></text>
</g>
<g >
<title>hash_bytes (76 samples, 0.06%)</title><rect x="869.2" y="667" width="0.9" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="872.19" y="677.5" ></text>
</g>
<g >
<title>hrtick_update (9 samples, 0.01%)</title><rect x="151.4" y="491" width="0.1" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text  x="154.40" y="501.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (234 samples, 0.20%)</title><rect x="728.9" y="571" width="2.7" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="731.91" y="581.5" ></text>
</g>
<g >
<title>LockAcquireExtended (252 samples, 0.21%)</title><rect x="468.7" y="651" width="2.9" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="471.71" y="661.5" ></text>
</g>
<g >
<title>populate_compact_attribute_internal (35 samples, 0.03%)</title><rect x="626.8" y="523" width="0.4" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text  x="629.78" y="533.5" ></text>
</g>
<g >
<title>deleteObjectsInList (22 samples, 0.02%)</title><rect x="1283.3" y="459" width="0.2" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="1286.27" y="469.5" ></text>
</g>
<g >
<title>PushActiveSnapshot (215 samples, 0.18%)</title><rect x="694.9" y="715" width="2.5" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text  x="697.94" y="725.5" ></text>
</g>
<g >
<title>ExecAllocTableSlot (27 samples, 0.02%)</title><rect x="1307.1" y="779" width="0.4" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text  x="1310.15" y="789.5" ></text>
</g>
<g >
<title>pg_ultoa_n (9 samples, 0.01%)</title><rect x="1098.2" y="539" width="0.1" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="1101.19" y="549.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (117 samples, 0.10%)</title><rect x="493.4" y="555" width="1.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="496.40" y="565.5" ></text>
</g>
<g >
<title>do_syscall_64 (25 samples, 0.02%)</title><rect x="25.5" y="491" width="0.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="28.52" y="501.5" ></text>
</g>
<g >
<title>pg_pwritev (25 samples, 0.02%)</title><rect x="25.5" y="539" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="28.52" y="549.5" ></text>
</g>
<g >
<title>GetUserIdAndSecContext (11 samples, 0.01%)</title><rect x="845.0" y="667" width="0.1" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="847.98" y="677.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (51 samples, 0.04%)</title><rect x="665.2" y="475" width="0.6" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="668.20" y="485.5" ></text>
</g>
<g >
<title>ResourceOwnerRemember (17 samples, 0.01%)</title><rect x="74.2" y="267" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="77.19" y="277.5" ></text>
</g>
<g >
<title>LWLockAcquire (36 samples, 0.03%)</title><rect x="21.6" y="363" width="0.4" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="24.62" y="373.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (179 samples, 0.15%)</title><rect x="1083.8" y="315" width="2.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="1086.81" y="325.5" ></text>
</g>
<g >
<title>RelationBuildTupleDesc (14 samples, 0.01%)</title><rect x="25.1" y="571" width="0.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="28.14" y="581.5" ></text>
</g>
<g >
<title>hash_search (19 samples, 0.02%)</title><rect x="726.1" y="587" width="0.2" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="729.11" y="597.5" ></text>
</g>
<g >
<title>MemoryContextReset (18 samples, 0.02%)</title><rect x="884.8" y="555" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="887.82" y="565.5" ></text>
</g>
<g >
<title>_raw_spin_lock_bh (47 samples, 0.04%)</title><rect x="267.4" y="507" width="0.5" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="270.38" y="517.5" ></text>
</g>
<g >
<title>GetMemoryChunkMethodID (10 samples, 0.01%)</title><rect x="518.4" y="667" width="0.1" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text  x="521.37" y="677.5" ></text>
</g>
<g >
<title>doDeletion (20 samples, 0.02%)</title><rect x="1272.4" y="347" width="0.3" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text  x="1275.43" y="357.5" ></text>
</g>
<g >
<title>dequeue_task_fair (1,101 samples, 0.92%)</title><rect x="138.1" y="491" width="12.7" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text  x="141.07" y="501.5" ></text>
</g>
<g >
<title>_copy_to_iter (341 samples, 0.29%)</title><rect x="221.5" y="475" width="3.9" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="224.49" y="485.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (177 samples, 0.15%)</title><rect x="147.8" y="443" width="2.0" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text  x="150.77" y="453.5" ></text>
</g>
<g >
<title>ProcessUtility (81 samples, 0.07%)</title><rect x="1271.8" y="747" width="0.9" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="1274.77" y="757.5" ></text>
</g>
<g >
<title>BlockIdGetBlockNumber (13 samples, 0.01%)</title><rect x="946.7" y="395" width="0.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="949.66" y="405.5" ></text>
</g>
<g >
<title>fput (31 samples, 0.03%)</title><rect x="119.4" y="523" width="0.3" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
<text  x="122.37" y="533.5" ></text>
</g>
<g >
<title>tcp_mstamp_refresh (33 samples, 0.03%)</title><rect x="377.1" y="219" width="0.4" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text  x="380.07" y="229.5" ></text>
</g>
<g >
<title>mdzeroextend (25 samples, 0.02%)</title><rect x="25.5" y="603" width="0.3" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text  x="28.52" y="613.5" ></text>
</g>
<g >
<title>_int_free (31 samples, 0.03%)</title><rect x="1196.8" y="459" width="0.4" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text  x="1199.81" y="469.5" ></text>
</g>
<g >
<title>murmurhash32 (38 samples, 0.03%)</title><rect x="1106.5" y="491" width="0.4" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="1109.46" y="501.5" ></text>
</g>
<g >
<title>list_nth_cell (19 samples, 0.02%)</title><rect x="1366.4" y="779" width="0.2" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text  x="1369.41" y="789.5" ></text>
</g>
<g >
<title>ip_send_check (65 samples, 0.05%)</title><rect x="398.3" y="411" width="0.7" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="401.26" y="421.5" ></text>
</g>
<g >
<title>index_create (23 samples, 0.02%)</title><rect x="23.4" y="443" width="0.2" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="26.37" y="453.5" ></text>
</g>
<g >
<title>pfree (9 samples, 0.01%)</title><rect x="1275.4" y="811" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1278.36" y="821.5" ></text>
</g>
<g >
<title>exec_stmt_execsql (211 samples, 0.18%)</title><rect x="20.9" y="555" width="2.4" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="23.90" y="565.5" ></text>
</g>
<g >
<title>pq_sendbyte (49 samples, 0.04%)</title><rect x="250.7" y="715" width="0.5" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="253.68" y="725.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (26 samples, 0.02%)</title><rect x="694.2" y="667" width="0.3" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="697.17" y="677.5" ></text>
</g>
<g >
<title>ReleaseCachedPlan (20 samples, 0.02%)</title><rect x="1204.5" y="619" width="0.3" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text  x="1207.54" y="629.5" ></text>
</g>
<g >
<title>clear_bhb_loop (128 samples, 0.11%)</title><rect x="197.2" y="619" width="1.5" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="200.17" y="629.5" ></text>
</g>
<g >
<title>should_output_to_client (9 samples, 0.01%)</title><rect x="845.4" y="635" width="0.1" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text  x="848.36" y="645.5" ></text>
</g>
<g >
<title>string_hash (90 samples, 0.08%)</title><rect x="465.0" y="683" width="1.0" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="467.97" y="693.5" ></text>
</g>
<g >
<title>_bt_readnextpage (72 samples, 0.06%)</title><rect x="882.1" y="443" width="0.8" height="15.0" fill="rgb(236,146,34)" rx="2" ry="2" />
<text  x="885.07" y="453.5" ></text>
</g>
<g >
<title>table_index_fetch_reset (27 samples, 0.02%)</title><rect x="1090.3" y="491" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="1093.31" y="501.5" ></text>
</g>
<g >
<title>RelationCacheInvalidateEntry (21 samples, 0.02%)</title><rect x="1274.1" y="747" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="1277.05" y="757.5" ></text>
</g>
<g >
<title>its_return_thunk (9 samples, 0.01%)</title><rect x="116.5" y="523" width="0.1" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="119.53" y="533.5" ></text>
</g>
<g >
<title>doDeletion (21 samples, 0.02%)</title><rect x="80.1" y="283" width="0.3" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text  x="83.13" y="293.5" ></text>
</g>
<g >
<title>ReleaseCatCache (38 samples, 0.03%)</title><rect x="592.6" y="555" width="0.4" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="595.61" y="565.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (16 samples, 0.01%)</title><rect x="399.5" y="427" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="402.54" y="437.5" ></text>
</g>
<g >
<title>mutex_lock (208 samples, 0.17%)</title><rect x="127.5" y="539" width="2.4" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text  x="130.45" y="549.5" ></text>
</g>
<g >
<title>ProcessUtility (26 samples, 0.02%)</title><rect x="24.0" y="811" width="0.3" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="27.01" y="821.5" ></text>
</g>
<g >
<title>GetDefaultOpClass (28 samples, 0.02%)</title><rect x="21.0" y="395" width="0.3" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text  x="23.98" y="405.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (20 samples, 0.02%)</title><rect x="1283.7" y="491" width="0.2" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="1286.68" y="501.5" ></text>
</g>
<g >
<title>ExecuteDoStmt (15 samples, 0.01%)</title><rect x="23.8" y="747" width="0.2" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text  x="26.79" y="757.5" ></text>
</g>
<g >
<title>ExecAssignExprContext (17 samples, 0.01%)</title><rect x="18.5" y="811" width="0.2" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text  x="21.52" y="821.5" ></text>
</g>
<g >
<title>DropRelationAllLocalBuffers (17 samples, 0.01%)</title><rect x="1128.5" y="315" width="0.2" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
<text  x="1131.49" y="325.5" ></text>
</g>
<g >
<title>tcp_data_ready (11 samples, 0.01%)</title><rect x="375.6" y="219" width="0.1" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text  x="378.61" y="229.5" ></text>
</g>
<g >
<title>AllocSetAlloc (66 samples, 0.06%)</title><rect x="1124.9" y="667" width="0.8" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1127.91" y="677.5" ></text>
</g>
<g >
<title>PushActiveSnapshot (162 samples, 0.14%)</title><rect x="692.6" y="699" width="1.9" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text  x="695.60" y="709.5" ></text>
</g>
<g >
<title>RelationBuildTupleDesc (14 samples, 0.01%)</title><rect x="1277.0" y="315" width="0.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="1280.00" y="325.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (79 samples, 0.07%)</title><rect x="665.8" y="539" width="0.9" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="668.79" y="549.5" ></text>
</g>
<g >
<title>ReadBuffer (1,819 samples, 1.53%)</title><rect x="28.0" y="411" width="21.0" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="30.96" y="421.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (311 samples, 0.26%)</title><rect x="507.6" y="635" width="3.6" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="510.55" y="645.5" ></text>
</g>
<g >
<title>[[vdso]] (28 samples, 0.02%)</title><rect x="1263.0" y="683" width="0.3" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="1265.99" y="693.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (65 samples, 0.05%)</title><rect x="1389.1" y="811" width="0.7" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="1392.10" y="821.5" ></text>
</g>
<g >
<title>BlockIdGetBlockNumber (15 samples, 0.01%)</title><rect x="1300.8" y="779" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="1303.78" y="789.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3,437 samples, 2.88%)</title><rect x="199.2" y="619" width="39.8" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="202.23" y="629.5" >en..</text>
</g>
<g >
<title>ip_rcv_core (81 samples, 0.07%)</title><rect x="379.8" y="283" width="0.9" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text  x="382.77" y="293.5" ></text>
</g>
<g >
<title>LWLockAcquire (33 samples, 0.03%)</title><rect x="1061.1" y="363" width="0.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="1064.06" y="373.5" ></text>
</g>
<g >
<title>initStringInfoInternal (100 samples, 0.08%)</title><rect x="247.7" y="683" width="1.1" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="250.69" y="693.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (30 samples, 0.03%)</title><rect x="643.0" y="459" width="0.4" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="646.05" y="469.5" ></text>
</g>
<g >
<title>hash_bytes (74 samples, 0.06%)</title><rect x="450.5" y="651" width="0.9" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="453.51" y="661.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (245 samples, 0.21%)</title><rect x="34.0" y="251" width="2.9" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="37.02" y="261.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (13 samples, 0.01%)</title><rect x="1129.0" y="363" width="0.2" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="1132.04" y="373.5" ></text>
</g>
<g >
<title>ReleaseCatCache (42 samples, 0.04%)</title><rect x="853.7" y="667" width="0.5" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="856.75" y="677.5" ></text>
</g>
<g >
<title>ExecutePlan (85 samples, 0.07%)</title><rect x="1387.1" y="667" width="1.0" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text  x="1390.13" y="677.5" ></text>
</g>
<g >
<title>BlockIdSet (9 samples, 0.01%)</title><rect x="1286.1" y="779" width="0.1" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="1289.07" y="789.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (15 samples, 0.01%)</title><rect x="392.4" y="331" width="0.2" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text  x="395.41" y="341.5" ></text>
</g>
<g >
<title>pstrdup (205 samples, 0.17%)</title><rect x="1124.0" y="715" width="2.4" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text  x="1127.00" y="725.5" ></text>
</g>
<g >
<title>perform_spin_delay (81 samples, 0.07%)</title><rect x="485.2" y="571" width="0.9" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text  x="488.21" y="581.5" ></text>
</g>
<g >
<title>plpgsql_inline_handler (11 samples, 0.01%)</title><rect x="19.4" y="795" width="0.1" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="22.38" y="805.5" ></text>
</g>
<g >
<title>RemoveLocalLock (17 samples, 0.01%)</title><rect x="1340.2" y="779" width="0.2" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text  x="1343.21" y="789.5" ></text>
</g>
<g >
<title>do_syscall_64 (15,719 samples, 13.18%)</title><rect x="257.7" y="603" width="181.9" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="260.67" y="613.5" >do_syscall_64</text>
</g>
<g >
<title>standard_ProcessUtility (46 samples, 0.04%)</title><rect x="1272.7" y="603" width="0.6" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="1275.72" y="613.5" ></text>
</g>
<g >
<title>ReleaseCatCacheWithOwner (45 samples, 0.04%)</title><rect x="622.0" y="507" width="0.5" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text  x="625.02" y="517.5" ></text>
</g>
<g >
<title>CStringGetDatum (10 samples, 0.01%)</title><rect x="514.8" y="683" width="0.1" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text  x="517.80" y="693.5" ></text>
</g>
<g >
<title>__calc_delta (63 samples, 0.05%)</title><rect x="143.9" y="443" width="0.7" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text  x="146.89" y="453.5" ></text>
</g>
<g >
<title>index_getnext_tid (19 samples, 0.02%)</title><rect x="1284.4" y="651" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="1287.42" y="661.5" ></text>
</g>
<g >
<title>ExprEvalPushStep (24 samples, 0.02%)</title><rect x="1313.4" y="779" width="0.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="1316.36" y="789.5" ></text>
</g>
<g >
<title>index_insert (12 samples, 0.01%)</title><rect x="1283.1" y="411" width="0.1" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text  x="1286.06" y="421.5" ></text>
</g>
<g >
<title>tag_hash (136 samples, 0.11%)</title><rect x="470.0" y="619" width="1.6" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="473.03" y="629.5" ></text>
</g>
<g >
<title>pq_getmsgint (204 samples, 0.17%)</title><rect x="711.3" y="715" width="2.3" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="714.27" y="725.5" ></text>
</g>
<g >
<title>check_stack_depth (15 samples, 0.01%)</title><rect x="566.8" y="491" width="0.2" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="569.78" y="501.5" ></text>
</g>
<g >
<title>Int32GetDatum (15 samples, 0.01%)</title><rect x="901.6" y="331" width="0.1" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text  x="904.58" y="341.5" ></text>
</g>
<g >
<title>__vdso_gettimeofday (41 samples, 0.03%)</title><rect x="1262.8" y="699" width="0.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="1265.84" y="709.5" ></text>
</g>
<g >
<title>WaitEventSetWaitBlock (8,261 samples, 6.93%)</title><rect x="99.1" y="635" width="95.6" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" />
<text  x="102.09" y="645.5" >WaitEvent..</text>
</g>
<g >
<title>PortalSetResultFormat (106 samples, 0.09%)</title><rect x="519.8" y="715" width="1.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="522.81" y="725.5" ></text>
</g>
<g >
<title>_bt_unlockbuf (257 samples, 0.22%)</title><rect x="1082.9" y="411" width="3.0" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" />
<text  x="1085.94" y="421.5" ></text>
</g>
<g >
<title>OidInputFunctionCall (11 samples, 0.01%)</title><rect x="1331.2" y="779" width="0.1" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="1334.19" y="789.5" ></text>
</g>
<g >
<title>MemoryContextResetOnly (113 samples, 0.09%)</title><rect x="1135.1" y="635" width="1.3" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text  x="1138.14" y="645.5" ></text>
</g>
<g >
<title>socket_flush (16,321 samples, 13.69%)</title><rect x="251.3" y="715" width="188.9" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text  x="254.31" y="725.5" >socket_flush</text>
</g>
<g >
<title>list_length (9 samples, 0.01%)</title><rect x="522.8" y="683" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text  x="525.82" y="693.5" ></text>
</g>
<g >
<title>aa_sk_perm (225 samples, 0.19%)</title><rect x="232.5" y="523" width="2.6" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text  x="235.46" y="533.5" ></text>
</g>
<g >
<title>ExecEvalExprNoReturn (486 samples, 0.41%)</title><rect x="896.2" y="507" width="5.7" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text  x="899.23" y="517.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (31 samples, 0.03%)</title><rect x="471.2" y="587" width="0.4" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="474.23" y="597.5" ></text>
</g>
<g >
<title>SendRowDescriptionMessage (12 samples, 0.01%)</title><rect x="1345.0" y="779" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="1348.04" y="789.5" ></text>
</g>
<g >
<title>AcceptInvalidationMessages (14 samples, 0.01%)</title><rect x="1268.9" y="635" width="0.2" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text  x="1271.91" y="645.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (37 samples, 0.03%)</title><rect x="1285.2" y="635" width="0.4" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="1288.18" y="645.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (13 samples, 0.01%)</title><rect x="1269.6" y="715" width="0.2" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="1272.61" y="725.5" ></text>
</g>
<g >
<title>dlist_is_empty (14 samples, 0.01%)</title><rect x="1264.8" y="715" width="0.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="1267.77" y="725.5" ></text>
</g>
<g >
<title>AllocSetReset (134 samples, 0.11%)</title><rect x="1195.6" y="491" width="1.6" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="1198.63" y="501.5" ></text>
</g>
<g >
<title>RelationRebuildRelation (9 samples, 0.01%)</title><rect x="1389.1" y="379" width="0.1" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text  x="1392.10" y="389.5" ></text>
</g>
<g >
<title>pg_leftmost_one_pos64 (10 samples, 0.01%)</title><rect x="866.8" y="651" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text  x="869.81" y="661.5" ></text>
</g>
<g >
<title>__wake_up_common_lock (1,482 samples, 1.24%)</title><rect x="327.3" y="203" width="17.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="330.31" y="213.5" ></text>
</g>
<g >
<title>_raw_spin_lock_bh (35 samples, 0.03%)</title><rect x="204.4" y="507" width="0.4" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="207.40" y="517.5" ></text>
</g>
<g >
<title>DataChecksumsEnabled (18 samples, 0.02%)</title><rect x="1305.0" y="779" width="0.2" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text  x="1307.99" y="789.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (23 samples, 0.02%)</title><rect x="931.8" y="251" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="934.84" y="261.5" ></text>
</g>
<g >
<title>ExecComputeSlotInfo (38 samples, 0.03%)</title><rect x="601.3" y="555" width="0.4" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="604.29" y="565.5" ></text>
</g>
<g >
<title>mem_cgroup_handle_over_high (26 samples, 0.02%)</title><rect x="192.2" y="539" width="0.3" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="195.15" y="549.5" ></text>
</g>
<g >
<title>ExecReScanIndexScan (630 samples, 0.53%)</title><rect x="885.8" y="555" width="7.3" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text  x="888.85" y="565.5" ></text>
</g>
<g >
<title>list_length (15 samples, 0.01%)</title><rect x="1366.0" y="779" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text  x="1369.00" y="789.5" ></text>
</g>
<g >
<title>ProcReleaseLocks (20 samples, 0.02%)</title><rect x="1336.4" y="779" width="0.2" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text  x="1339.38" y="789.5" ></text>
</g>
<g >
<title>tcp_sendmsg (14,753 samples, 12.37%)</title><rect x="264.7" y="539" width="170.7" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text  x="267.71" y="549.5" >tcp_sendmsg</text>
</g>
<g >
<title>ExecInitIndexScan (11,307 samples, 9.48%)</title><rect x="547.4" y="619" width="130.8" height="15.0" fill="rgb(222,79,18)" rx="2" ry="2" />
<text  x="550.40" y="629.5" >ExecInitIndex..</text>
</g>
<g >
<title>get_leftop (30 samples, 0.03%)</title><rect x="586.2" y="587" width="0.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="589.15" y="597.5" ></text>
</g>
<g >
<title>table_close (93 samples, 0.08%)</title><rect x="1175.6" y="539" width="1.1" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="1178.63" y="549.5" ></text>
</g>
<g >
<title>DefineIndex (11 samples, 0.01%)</title><rect x="23.8" y="475" width="0.1" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="26.79" y="485.5" ></text>
</g>
<g >
<title>get_hash_value (141 samples, 0.12%)</title><rect x="29.6" y="283" width="1.7" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text  x="32.64" y="293.5" ></text>
</g>
<g >
<title>xactGetCommittedInvalidationMessages (28 samples, 0.02%)</title><rect x="1384.5" y="779" width="0.3" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text  x="1387.49" y="789.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (196 samples, 0.16%)</title><rect x="1127.0" y="651" width="2.3" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="1130.02" y="661.5" ></text>
</g>
<g >
<title>palloc (67 samples, 0.06%)</title><rect x="633.9" y="539" width="0.8" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="636.88" y="549.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (269 samples, 0.23%)</title><rect x="728.9" y="587" width="3.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="731.90" y="597.5" ></text>
</g>
<g >
<title>SearchPathMatchesCurrentEnvironment (26 samples, 0.02%)</title><rect x="1343.8" y="779" width="0.3" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text  x="1346.83" y="789.5" ></text>
</g>
<g >
<title>exec_stmt_fori (81 samples, 0.07%)</title><rect x="1271.8" y="571" width="0.9" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text  x="1274.77" y="581.5" ></text>
</g>
<g >
<title>pg_client_to_server (12 samples, 0.01%)</title><rect x="1266.3" y="715" width="0.2" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text  x="1269.32" y="725.5" ></text>
</g>
<g >
<title>handle_softirqs (8,281 samples, 6.94%)</title><rect x="293.0" y="379" width="95.9" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text  x="296.04" y="389.5" >handle_so..</text>
</g>
<g >
<title>SearchSysCache3 (360 samples, 0.30%)</title><rect x="587.8" y="571" width="4.2" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text  x="590.79" y="581.5" ></text>
</g>
<g >
<title>__memcpy_evex_unaligned_erms (16 samples, 0.01%)</title><rect x="1126.5" y="699" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="1129.52" y="709.5" ></text>
</g>
<g >
<title>GetCurrentTimestamp (53 samples, 0.04%)</title><rect x="1262.7" y="715" width="0.6" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="1265.71" y="725.5" ></text>
</g>
<g >
<title>fmgr_info (50 samples, 0.04%)</title><rect x="609.0" y="555" width="0.5" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="611.96" y="565.5" ></text>
</g>
<g >
<title>postmaster_child_launch (18 samples, 0.02%)</title><rect x="1269.2" y="795" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="1272.22" y="805.5" ></text>
</g>
<g >
<title>AtEOXact_SPI (25 samples, 0.02%)</title><rect x="1299.1" y="779" width="0.3" height="15.0" fill="rgb(216,50,12)" rx="2" ry="2" />
<text  x="1302.11" y="789.5" ></text>
</g>
<g >
<title>pgstat_count_io_op (55 samples, 0.05%)</title><rect x="939.0" y="331" width="0.7" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="942.03" y="341.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (159 samples, 0.13%)</title><rect x="684.2" y="635" width="1.8" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="687.15" y="645.5" ></text>
</g>
<g >
<title>MemoryContextCreate (56 samples, 0.05%)</title><rect x="536.0" y="619" width="0.6" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text  x="538.95" y="629.5" ></text>
</g>
<g >
<title>_bt_readfirstpage (236 samples, 0.20%)</title><rect x="12.0" y="459" width="2.7" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text  x="14.99" y="469.5" ></text>
</g>
<g >
<title>ExecInterpExprStillValid (471 samples, 0.39%)</title><rect x="896.4" y="491" width="5.4" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="899.38" y="501.5" ></text>
</g>
<g >
<title>BufferDescriptorGetBuffer (10 samples, 0.01%)</title><rect x="880.2" y="443" width="0.1" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="883.16" y="453.5" ></text>
</g>
<g >
<title>do_syscall_64 (3,421 samples, 2.87%)</title><rect x="199.4" y="603" width="39.6" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="202.42" y="613.5" >do..</text>
</g>
<g >
<title>LWLockRelease (11 samples, 0.01%)</title><rect x="475.7" y="587" width="0.1" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="478.67" y="597.5" ></text>
</g>
<g >
<title>deregister_seq_scan (14 samples, 0.01%)</title><rect x="1214.8" y="635" width="0.2" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text  x="1217.83" y="645.5" ></text>
</g>
<g >
<title>CommandEndInvalidationMessages (9 samples, 0.01%)</title><rect x="1389.1" y="459" width="0.1" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="1392.10" y="469.5" ></text>
</g>
<g >
<title>ReadBuffer_common (35 samples, 0.03%)</title><rect x="11.5" y="411" width="0.4" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text  x="14.53" y="421.5" ></text>
</g>
<g >
<title>list_nth_cell (15 samples, 0.01%)</title><rect x="586.3" y="571" width="0.2" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text  x="589.32" y="581.5" ></text>
</g>
<g >
<title>SetRemoteDestReceiverParams (9 samples, 0.01%)</title><rect x="1120.2" y="715" width="0.2" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text  x="1123.25" y="725.5" ></text>
</g>
<g >
<title>ShutdownExprContext (12 samples, 0.01%)</title><rect x="893.4" y="539" width="0.1" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="896.36" y="549.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (24 samples, 0.02%)</title><rect x="1232.9" y="571" width="0.3" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="1235.90" y="581.5" ></text>
</g>
<g >
<title>index_getnext_slot (85 samples, 0.07%)</title><rect x="1387.1" y="539" width="1.0" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="1390.13" y="549.5" ></text>
</g>
<g >
<title>RelationCacheInvalidateEntry (77 samples, 0.06%)</title><rect x="724.3" y="603" width="0.9" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="727.30" y="613.5" ></text>
</g>
<g >
<title>pg_any_to_server (10 samples, 0.01%)</title><rect x="714.4" y="699" width="0.1" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text  x="717.38" y="709.5" ></text>
</g>
<g >
<title>pgstat_clear_backend_activity_snapshot (9 samples, 0.01%)</title><rect x="1140.8" y="635" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="1143.81" y="645.5" ></text>
</g>
<g >
<title>ConditionalCatalogCacheInitializeCache (27 samples, 0.02%)</title><rect x="545.3" y="523" width="0.3" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="548.31" y="533.5" ></text>
</g>
<g >
<title>WaitEventSetWaitBlock (10 samples, 0.01%)</title><rect x="1269.3" y="731" width="0.1" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" />
<text  x="1272.32" y="741.5" ></text>
</g>
<g >
<title>hash_search (489 samples, 0.41%)</title><rect x="1163.1" y="571" width="5.7" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="1166.15" y="581.5" ></text>
</g>
<g >
<title>smgrextend (27 samples, 0.02%)</title><rect x="1272.8" y="443" width="0.3" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text  x="1275.81" y="453.5" ></text>
</g>
<g >
<title>hash_search (202 samples, 0.17%)</title><rect x="469.3" y="635" width="2.3" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="472.26" y="645.5" ></text>
</g>
<g >
<title>AllocSetAlloc (34 samples, 0.03%)</title><rect x="459.6" y="667" width="0.4" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="462.57" y="677.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (11 samples, 0.01%)</title><rect x="20.7" y="603" width="0.1" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="23.66" y="613.5" ></text>
</g>
<g >
<title>OidFunctionCall1Coll (11 samples, 0.01%)</title><rect x="20.7" y="811" width="0.1" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text  x="23.66" y="821.5" ></text>
</g>
<g >
<title>ExecAssignExprContext (929 samples, 0.78%)</title><rect x="549.2" y="603" width="10.7" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text  x="552.19" y="613.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (118 samples, 0.10%)</title><rect x="463.6" y="683" width="1.4" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="466.60" y="693.5" ></text>
</g>
<g >
<title>exec_stmts (697 samples, 0.58%)</title><rect x="1275.9" y="667" width="8.0" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="1278.86" y="677.5" ></text>
</g>
<g >
<title>ExecutorEnd (4,457 samples, 3.74%)</title><rect x="1147.6" y="619" width="51.5" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="1150.56" y="629.5" >Exec..</text>
</g>
<g >
<title>update_rq_clock (26 samples, 0.02%)</title><rect x="181.6" y="443" width="0.3" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text  x="184.61" y="453.5" ></text>
</g>
<g >
<title>syscall_enter_from_user_mode (23 samples, 0.02%)</title><rect x="237.4" y="587" width="0.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text  x="240.43" y="597.5" ></text>
</g>
<g >
<title>ExecCreateExprSetupSteps (38 samples, 0.03%)</title><rect x="580.2" y="571" width="0.5" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text  x="583.24" y="581.5" ></text>
</g>
<g >
<title>LockRelationOid (9 samples, 0.01%)</title><rect x="1285.0" y="491" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="1288.03" y="501.5" ></text>
</g>
<g >
<title>plpgsql_exec_function (27 samples, 0.02%)</title><rect x="1284.9" y="811" width="0.3" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text  x="1287.87" y="821.5" ></text>
</g>
<g >
<title>exec_stmt_block (11 samples, 0.01%)</title><rect x="19.4" y="747" width="0.1" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="22.38" y="757.5" ></text>
</g>
<g >
<title>hash_bytes_uint32 (74 samples, 0.06%)</title><rect x="639.3" y="491" width="0.8" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text  x="642.29" y="501.5" ></text>
</g>
<g >
<title>UnregisterSnapshotNoOwner (17 samples, 0.01%)</title><rect x="1198.9" y="539" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="1201.93" y="549.5" ></text>
</g>
<g >
<title>stmt_requires_parse_analysis (27 samples, 0.02%)</title><rect x="1382.1" y="779" width="0.3" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="1385.13" y="789.5" ></text>
</g>
<g >
<title>CommandEndInvalidationMessages (22 samples, 0.02%)</title><rect x="1283.3" y="395" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="1286.27" y="405.5" ></text>
</g>
<g >
<title>AtCCI_LocalCache (22 samples, 0.02%)</title><rect x="1277.0" y="443" width="0.2" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text  x="1279.99" y="453.5" ></text>
</g>
<g >
<title>AllocSetFree (19 samples, 0.02%)</title><rect x="1123.6" y="683" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="1126.58" y="693.5" ></text>
</g>
<g >
<title>exec_stmts (47 samples, 0.04%)</title><rect x="1272.7" y="763" width="0.6" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="1275.71" y="773.5" ></text>
</g>
<g >
<title>StmtPlanRequiresRevalidation (42 samples, 0.04%)</title><rect x="502.5" y="683" width="0.5" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="505.52" y="693.5" ></text>
</g>
<g >
<title>CreateExecutorState (668 samples, 0.56%)</title><rect x="532.9" y="651" width="7.7" height="15.0" fill="rgb(228,105,25)" rx="2" ry="2" />
<text  x="535.92" y="661.5" ></text>
</g>
<g >
<title>AllocSetAlloc (49 samples, 0.04%)</title><rect x="496.7" y="603" width="0.6" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="499.73" y="613.5" ></text>
</g>
<g >
<title>kmem_cache_alloc_node (104 samples, 0.09%)</title><rect x="430.7" y="475" width="1.2" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text  x="433.67" y="485.5" ></text>
</g>
<g >
<title>index_drop (13 samples, 0.01%)</title><rect x="80.2" y="267" width="0.2" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text  x="83.22" y="277.5" ></text>
</g>
<g >
<title>__GI_bsearch (165 samples, 0.14%)</title><rect x="888.2" y="459" width="1.9" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text  x="891.22" y="469.5" ></text>
</g>
<g >
<title>AtStart_Memory (31 samples, 0.03%)</title><rect x="836.7" y="667" width="0.3" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="839.68" y="677.5" ></text>
</g>
<g >
<title>table_slot_callbacks (33 samples, 0.03%)</title><rect x="677.8" y="603" width="0.4" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="680.85" y="613.5" ></text>
</g>
<g >
<title>exec_stmt_block (47 samples, 0.04%)</title><rect x="1272.7" y="811" width="0.6" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="1275.71" y="821.5" ></text>
</g>
<g >
<title>smgrdestroyall (14 samples, 0.01%)</title><rect x="1380.3" y="779" width="0.2" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="1383.35" y="789.5" ></text>
</g>
<g >
<title>ExecuteDoStmt (81 samples, 0.07%)</title><rect x="1271.8" y="699" width="0.9" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text  x="1274.77" y="709.5" ></text>
</g>
<g >
<title>pq_endmessage (156 samples, 0.13%)</title><rect x="248.9" y="715" width="1.8" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="251.88" y="725.5" ></text>
</g>
<g >
<title>plpgsql_exec_function (11 samples, 0.01%)</title><rect x="20.7" y="763" width="0.1" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text  x="23.66" y="773.5" ></text>
</g>
<g >
<title>pq_writestring (63 samples, 0.05%)</title><rect x="859.2" y="699" width="0.7" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text  x="862.19" y="709.5" ></text>
</g>
<g >
<title>BTreeTupleGetDownLink (33 samples, 0.03%)</title><rect x="1017.8" y="427" width="0.4" height="15.0" fill="rgb(214,41,9)" rx="2" ry="2" />
<text  x="1020.80" y="437.5" ></text>
</g>
<g >
<title>ResourceOwnerDelete (67 samples, 0.06%)</title><rect x="1217.5" y="651" width="0.8" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text  x="1220.54" y="661.5" ></text>
</g>
<g >
<title>AtEOXact_Buffers (19 samples, 0.02%)</title><rect x="1137.0" y="667" width="0.2" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text  x="1139.96" y="677.5" ></text>
</g>
<g >
<title>AtEOXact_Parallel (32 samples, 0.03%)</title><rect x="1139.1" y="667" width="0.3" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="1142.08" y="677.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (35 samples, 0.03%)</title><rect x="596.8" y="555" width="0.4" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="599.80" y="565.5" ></text>
</g>
<g >
<title>hash_search (163 samples, 0.14%)</title><rect x="670.8" y="555" width="1.9" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="673.79" y="565.5" ></text>
</g>
<g >
<title>__list_add_valid (11 samples, 0.01%)</title><rect x="405.1" y="443" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text  x="408.06" y="453.5" ></text>
</g>
<g >
<title>__skb_clone (74 samples, 0.06%)</title><rect x="400.2" y="459" width="0.9" height="15.0" fill="rgb(238,151,36)" rx="2" ry="2" />
<text  x="403.24" y="469.5" ></text>
</g>
<g >
<title>BTreeTupleIsPivot (16 samples, 0.01%)</title><rect x="1300.5" y="779" width="0.2" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="1303.50" y="789.5" ></text>
</g>
<g >
<title>planstate_walk_subplans (25 samples, 0.02%)</title><rect x="1092.6" y="571" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1095.57" y="581.5" ></text>
</g>
<g >
<title>[[heap]] (312 samples, 0.26%)</title><rect x="1285.9" y="795" width="3.6" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text  x="1288.86" y="805.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (31 samples, 0.03%)</title><rect x="31.3" y="283" width="0.4" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="34.32" y="293.5" ></text>
</g>
<g >
<title>plpgsql_exec_function (196 samples, 0.16%)</title><rect x="1127.0" y="555" width="2.3" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text  x="1130.02" y="565.5" ></text>
</g>
<g >
<title>sk_forced_mem_schedule (91 samples, 0.08%)</title><rect x="434.2" y="491" width="1.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="437.25" y="501.5" ></text>
</g>
<g >
<title>kfree_skbmem (15 samples, 0.01%)</title><rect x="384.2" y="347" width="0.2" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="387.19" y="357.5" ></text>
</g>
<g >
<title>palloc (65 samples, 0.05%)</title><rect x="525.4" y="683" width="0.8" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="528.41" y="693.5" ></text>
</g>
<g >
<title>hash_initial_lookup (38 samples, 0.03%)</title><rect x="1166.5" y="539" width="0.5" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="1169.52" y="549.5" ></text>
</g>
<g >
<title>__memcpy_evex_unaligned_erms (19 samples, 0.02%)</title><rect x="867.6" y="667" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="870.55" y="677.5" ></text>
</g>
<g >
<title>fmgr_info_cxt_security (43 samples, 0.04%)</title><rect x="585.5" y="555" width="0.5" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="588.55" y="565.5" ></text>
</g>
<g >
<title>secure_read (12,465 samples, 10.45%)</title><rect x="95.2" y="667" width="144.3" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text  x="98.24" y="677.5" >secure_read</text>
</g>
<g >
<title>PortalRunUtility (211 samples, 0.18%)</title><rect x="20.9" y="779" width="2.4" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="23.90" y="789.5" ></text>
</g>
<g >
<title>LWLockQueueSelf (21 samples, 0.02%)</title><rect x="1231.8" y="587" width="0.3" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text  x="1234.85" y="597.5" ></text>
</g>
<g >
<title>PreCommit_CheckForSerializationFailure (9 samples, 0.01%)</title><rect x="1143.2" y="667" width="0.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="1146.22" y="677.5" ></text>
</g>
<g >
<title>__alloc_pages (11 samples, 0.01%)</title><rect x="1272.8" y="139" width="0.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text  x="1275.81" y="149.5" ></text>
</g>
<g >
<title>LWLockDisownInternal (17 samples, 0.01%)</title><rect x="846.6" y="635" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="849.62" y="645.5" ></text>
</g>
<g >
<title>ShowTransactionState (27 samples, 0.02%)</title><rect x="1345.9" y="779" width="0.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="1348.88" y="789.5" ></text>
</g>
<g >
<title>BufferAlloc (2,490 samples, 2.09%)</title><rect x="49.5" y="315" width="28.8" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text  x="52.53" y="325.5" >B..</text>
</g>
<g >
<title>dlist_is_empty (20 samples, 0.02%)</title><rect x="1252.8" y="619" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="1255.79" y="629.5" ></text>
</g>
<g >
<title>SearchSysCache1 (10 samples, 0.01%)</title><rect x="1283.6" y="411" width="0.1" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="1286.56" y="421.5" ></text>
</g>
<g >
<title>pgstat_report_xact_timestamp (29 samples, 0.02%)</title><rect x="1373.8" y="779" width="0.3" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text  x="1376.78" y="789.5" ></text>
</g>
<g >
<title>SPI_execute_plan_with_paramlist (697 samples, 0.58%)</title><rect x="1275.9" y="603" width="8.0" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="1278.86" y="613.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (28 samples, 0.02%)</title><rect x="1242.5" y="523" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="1245.49" y="533.5" ></text>
</g>
<g >
<title>cubictcp_acked (46 samples, 0.04%)</title><rect x="367.4" y="203" width="0.5" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="370.41" y="213.5" ></text>
</g>
<g >
<title>recordMultipleDependencies (15 samples, 0.01%)</title><rect x="1282.7" y="459" width="0.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text  x="1285.66" y="469.5" ></text>
</g>
<g >
<title>ExecScanFetch (4,568 samples, 3.83%)</title><rect x="26.8" y="555" width="52.9" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text  x="29.85" y="565.5" >Exec..</text>
</g>
<g >
<title>enlargeStringInfo (11 samples, 0.01%)</title><rect x="250.8" y="683" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text  x="253.84" y="693.5" ></text>
</g>
<g >
<title>AtEOXact_Snapshot (49 samples, 0.04%)</title><rect x="1142.0" y="667" width="0.6" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="1144.99" y="677.5" ></text>
</g>
<g >
<title>tts_virtual_clear (49 samples, 0.04%)</title><rect x="895.5" y="507" width="0.6" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="898.54" y="517.5" ></text>
</g>
<g >
<title>list_last_cell (10 samples, 0.01%)</title><rect x="1365.9" y="779" width="0.1" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text  x="1368.88" y="789.5" ></text>
</g>
<g >
<title>_bt_first (15 samples, 0.01%)</title><rect x="1349.8" y="779" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="1352.78" y="789.5" ></text>
</g>
<g >
<title>__memcmp_evex_movbe (24 samples, 0.02%)</title><rect x="1234.8" y="555" width="0.2" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="1237.76" y="565.5" ></text>
</g>
<g >
<title>DefineSequence (18 samples, 0.02%)</title><rect x="1285.0" y="539" width="0.2" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text  x="1287.97" y="549.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetTupleDesc (19 samples, 0.02%)</title><rect x="1342.0" y="779" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="1344.98" y="789.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (224 samples, 0.19%)</title><rect x="1160.0" y="555" width="2.6" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="1163.04" y="565.5" ></text>
</g>
<g >
<title>_raw_spin_rq_lock_irqsave (23 samples, 0.02%)</title><rect x="180.6" y="443" width="0.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text  x="183.57" y="453.5" ></text>
</g>
<g >
<title>FunctionCall1Coll (697 samples, 0.58%)</title><rect x="1275.9" y="747" width="8.0" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="1278.86" y="757.5" ></text>
</g>
<g >
<title>AllocSetAlloc (83 samples, 0.07%)</title><rect x="558.9" y="523" width="1.0" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="561.90" y="533.5" ></text>
</g>
<g >
<title>btint4cmp (16 samples, 0.01%)</title><rect x="1067.8" y="379" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1070.84" y="389.5" ></text>
</g>
<g >
<title>AtEOXact_Snapshot (15 samples, 0.01%)</title><rect x="1299.4" y="779" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="1302.40" y="789.5" ></text>
</g>
<g >
<title>MemoryContextSwitchTo (10 samples, 0.01%)</title><rect x="1108.6" y="635" width="0.1" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text  x="1111.63" y="645.5" ></text>
</g>
<g >
<title>ItemPointerGetOffsetNumberNoCheck (9 samples, 0.01%)</title><rect x="1385.3" y="779" width="0.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text  x="1388.30" y="789.5" ></text>
</g>
<g >
<title>scanner_isspace (17 samples, 0.01%)</title><rect x="1154.5" y="555" width="0.2" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text  x="1157.54" y="565.5" ></text>
</g>
<g >
<title>PortalRunSelect (85 samples, 0.07%)</title><rect x="1387.1" y="731" width="1.0" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text  x="1390.13" y="741.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (15 samples, 0.01%)</title><rect x="19.2" y="571" width="0.1" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="22.15" y="581.5" ></text>
</g>
<g >
<title>slot_getsomeattrs_int (19 samples, 0.02%)</title><rect x="1379.7" y="779" width="0.2" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text  x="1382.69" y="789.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (85 samples, 0.07%)</title><rect x="604.1" y="507" width="1.0" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="607.14" y="517.5" ></text>
</g>
<g >
<title>jit_compile_expr (16 samples, 0.01%)</title><rect x="569.5" y="523" width="0.2" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="572.54" y="533.5" ></text>
</g>
<g >
<title>apparmor_socket_recvmsg (27 samples, 0.02%)</title><rect x="235.1" y="523" width="0.3" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text  x="238.06" y="533.5" ></text>
</g>
<g >
<title>ConditionalCatalogCacheInitializeCache (16 samples, 0.01%)</title><rect x="1106.9" y="523" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="1109.89" y="533.5" ></text>
</g>
<g >
<title>_bt_getroot (11 samples, 0.01%)</title><rect x="11.4" y="475" width="0.1" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text  x="14.40" y="485.5" ></text>
</g>
<g >
<title>tas (40 samples, 0.03%)</title><rect x="486.2" y="571" width="0.5" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text  x="489.19" y="581.5" ></text>
</g>
<g >
<title>slot_getattr (335 samples, 0.28%)</title><rect x="897.9" y="443" width="3.9" height="15.0" fill="rgb(214,41,9)" rx="2" ry="2" />
<text  x="900.94" y="453.5" ></text>
</g>
<g >
<title>initStringInfoInternal (13 samples, 0.01%)</title><rect x="1261.7" y="731" width="0.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="1264.74" y="741.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (63 samples, 0.05%)</title><rect x="66.6" y="283" width="0.8" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="69.63" y="293.5" ></text>
</g>
<g >
<title>GetPortalByName (222 samples, 0.19%)</title><rect x="849.0" y="715" width="2.5" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text  x="851.97" y="725.5" ></text>
</g>
<g >
<title>AllocSetFreeIndex (24 samples, 0.02%)</title><rect x="1115.8" y="539" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="1118.84" y="549.5" ></text>
</g>
<g >
<title>GetSnapshotData (786 samples, 0.66%)</title><rect x="504.2" y="699" width="9.0" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text  x="507.15" y="709.5" ></text>
</g>
<g >
<title>tcp_wfree (57 samples, 0.05%)</title><rect x="393.9" y="379" width="0.7" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="396.93" y="389.5" ></text>
</g>
<g >
<title>check_stack_depth (16 samples, 0.01%)</title><rect x="678.5" y="619" width="0.2" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="681.47" y="629.5" ></text>
</g>
<g >
<title>exec_stmts (697 samples, 0.58%)</title><rect x="1275.9" y="635" width="8.0" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="1278.86" y="645.5" ></text>
</g>
<g >
<title>_bt_next (124 samples, 0.10%)</title><rect x="881.5" y="475" width="1.4" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text  x="884.46" y="485.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (19 samples, 0.02%)</title><rect x="1389.6" y="795" width="0.2" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="1392.63" y="805.5" ></text>
</g>
<g >
<title>ReleaseCatCacheWithOwner (36 samples, 0.03%)</title><rect x="1104.6" y="539" width="0.4" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text  x="1107.63" y="549.5" ></text>
</g>
<g >
<title>ExecClearTuple (80 samples, 0.07%)</title><rect x="895.2" y="523" width="0.9" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="898.18" y="533.5" ></text>
</g>
<g >
<title>SetLocktagRelationOid (74 samples, 0.06%)</title><rect x="501.0" y="635" width="0.8" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text  x="503.99" y="645.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (27 samples, 0.02%)</title><rect x="1009.3" y="347" width="0.4" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="1012.34" y="357.5" ></text>
</g>
<g >
<title>CommandEndInvalidationMessages (22 samples, 0.02%)</title><rect x="1277.0" y="427" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="1279.99" y="437.5" ></text>
</g>
<g >
<title>LockTagHashCode (151 samples, 0.13%)</title><rect x="664.0" y="539" width="1.8" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="667.04" y="549.5" ></text>
</g>
<g >
<title>smgrDoPendingDeletes (133 samples, 0.11%)</title><rect x="1127.4" y="363" width="1.6" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text  x="1130.42" y="373.5" ></text>
</g>
<g >
<title>btinsert (15 samples, 0.01%)</title><rect x="1282.7" y="395" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text  x="1285.66" y="405.5" ></text>
</g>
<g >
<title>__virt_addr_valid (88 samples, 0.07%)</title><rect x="227.7" y="443" width="1.0" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text  x="230.70" y="453.5" ></text>
</g>
<g >
<title>ResourceOwnerReleaseAll (47 samples, 0.04%)</title><rect x="1251.9" y="619" width="0.6" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text  x="1254.91" y="629.5" ></text>
</g>
<g >
<title>OidFunctionCall1Coll (81 samples, 0.07%)</title><rect x="1271.8" y="683" width="0.9" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text  x="1274.77" y="693.5" ></text>
</g>
<g >
<title>slot_getsomeattrs (314 samples, 0.26%)</title><rect x="898.2" y="427" width="3.6" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text  x="901.15" y="437.5" ></text>
</g>
<g >
<title>jit_compile_expr (12 samples, 0.01%)</title><rect x="613.9" y="571" width="0.2" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="616.93" y="581.5" ></text>
</g>
<g >
<title>sk_page_frag_refill (287 samples, 0.24%)</title><rect x="413.9" y="507" width="3.3" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text  x="416.92" y="517.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (434 samples, 0.36%)</title><rect x="61.1" y="251" width="5.0" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="64.11" y="261.5" ></text>
</g>
<g >
<title>pgstat_count_backend_io_op (32 samples, 0.03%)</title><rect x="939.3" y="315" width="0.4" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text  x="942.30" y="325.5" ></text>
</g>
<g >
<title>__memcpy_evex_unaligned_erms (14 samples, 0.01%)</title><rect x="1100.0" y="555" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="1103.03" y="565.5" ></text>
</g>
<g >
<title>GetDefaultOpClass (10 samples, 0.01%)</title><rect x="1271.8" y="379" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text  x="1274.79" y="389.5" ></text>
</g>
<g >
<title>MemoryContextDelete (231 samples, 0.19%)</title><rect x="1194.8" y="555" width="2.7" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text  x="1197.78" y="565.5" ></text>
</g>
<g >
<title>exec_stmt_execsql (15 samples, 0.01%)</title><rect x="23.8" y="587" width="0.2" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="26.79" y="597.5" ></text>
</g>
<g >
<title>DatumGetInt32 (43 samples, 0.04%)</title><rect x="1037.2" y="395" width="0.5" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text  x="1040.23" y="405.5" ></text>
</g>
<g >
<title>RelationBuildDesc (24 samples, 0.02%)</title><rect x="18.0" y="651" width="0.2" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="20.96" y="661.5" ></text>
</g>
<g >
<title>enlargeStringInfo (12 samples, 0.01%)</title><rect x="857.7" y="683" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text  x="860.67" y="693.5" ></text>
</g>
<g >
<title>exec_stmts (39 samples, 0.03%)</title><rect x="23.3" y="587" width="0.5" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="26.34" y="597.5" ></text>
</g>
<g >
<title>LWLockRelease (57 samples, 0.05%)</title><rect x="918.2" y="427" width="0.7" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="921.23" y="437.5" ></text>
</g>
<g >
<title>slot_getallattrs (13 samples, 0.01%)</title><rect x="1108.4" y="603" width="0.2" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text  x="1111.45" y="613.5" ></text>
</g>
<g >
<title>relation_open (349 samples, 0.29%)</title><rect x="636.4" y="555" width="4.0" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="639.40" y="565.5" ></text>
</g>
<g >
<title>planstate_tree_walker_impl (84 samples, 0.07%)</title><rect x="1091.9" y="587" width="1.0" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text  x="1094.89" y="597.5" ></text>
</g>
<g >
<title>ReleaseSysCache (43 samples, 0.04%)</title><rect x="853.7" y="683" width="0.5" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="856.74" y="693.5" ></text>
</g>
<g >
<title>_bt_check_compare (36 samples, 0.03%)</title><rect x="1387.1" y="427" width="0.4" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="1390.13" y="437.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irq (62 samples, 0.05%)</title><rect x="382.2" y="315" width="0.7" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="385.17" y="325.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (9 samples, 0.01%)</title><rect x="575.6" y="491" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="578.57" y="501.5" ></text>
</g>
<g >
<title>CommandCounterIncrement (9 samples, 0.01%)</title><rect x="1389.1" y="491" width="0.1" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="1392.10" y="501.5" ></text>
</g>
<g >
<title>SearchPathMatchesCurrentEnvironment (55 samples, 0.05%)</title><rect x="501.9" y="683" width="0.6" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text  x="504.88" y="693.5" ></text>
</g>
<g >
<title>ProcessCatchupInterrupt (12 samples, 0.01%)</title><rect x="1268.6" y="715" width="0.2" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="1271.62" y="725.5" ></text>
</g>
<g >
<title>MemoryContextResetOnly (438 samples, 0.37%)</title><rect x="86.6" y="715" width="5.1" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text  x="89.64" y="725.5" ></text>
</g>
<g >
<title>performMultipleDeletions (37 samples, 0.03%)</title><rect x="1272.3" y="395" width="0.4" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="1275.27" y="405.5" ></text>
</g>
<g >
<title>_bt_load (27 samples, 0.02%)</title><rect x="1272.8" y="491" width="0.3" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="1275.81" y="501.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (309 samples, 0.26%)</title><rect x="74.4" y="283" width="3.6" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="77.39" y="293.5" ></text>
</g>
<g >
<title>__list_add_valid (13 samples, 0.01%)</title><rect x="113.1" y="539" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text  x="116.14" y="549.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (162 samples, 0.14%)</title><rect x="689.2" y="635" width="1.9" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="692.21" y="645.5" ></text>
</g>
<g >
<title>tcp_rearm_rto (21 samples, 0.02%)</title><rect x="372.2" y="203" width="0.3" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text  x="375.22" y="213.5" ></text>
</g>
<g >
<title>TupleDescCompactAttr (45 samples, 0.04%)</title><rect x="1056.8" y="379" width="0.6" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text  x="1059.85" y="389.5" ></text>
</g>
<g >
<title>FunctionCall1Coll (23 samples, 0.02%)</title><rect x="24.0" y="731" width="0.3" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="27.01" y="741.5" ></text>
</g>
<g >
<title>ProcessUtility (23 samples, 0.02%)</title><rect x="24.0" y="555" width="0.3" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="27.01" y="565.5" ></text>
</g>
<g >
<title>pgss_ExecutorRun (23 samples, 0.02%)</title><rect x="1371.8" y="779" width="0.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="1374.76" y="789.5" ></text>
</g>
<g >
<title>AllocSetFreeIndex (9 samples, 0.01%)</title><rect x="572.8" y="491" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="575.84" y="501.5" ></text>
</g>
<g >
<title>__GI___sigsetjmp (12 samples, 0.01%)</title><rect x="694.5" y="699" width="0.2" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text  x="697.53" y="709.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (15 samples, 0.01%)</title><rect x="1082.7" y="347" width="0.2" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="1085.74" y="357.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetSnapshot (51 samples, 0.04%)</title><rect x="1198.3" y="539" width="0.6" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text  x="1201.34" y="549.5" ></text>
</g>
<g >
<title>PortalRunUtility (65 samples, 0.05%)</title><rect x="79.7" y="699" width="0.8" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="82.71" y="709.5" ></text>
</g>
<g >
<title>RelationBuildDesc (9 samples, 0.01%)</title><rect x="1389.1" y="363" width="0.1" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="1392.10" y="373.5" ></text>
</g>
<g >
<title>BufferDescriptorGetBuffer (305 samples, 0.26%)</title><rect x="39.1" y="283" width="3.5" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="42.09" y="293.5" ></text>
</g>
<g >
<title>murmurhash32 (34 samples, 0.03%)</title><rect x="590.0" y="491" width="0.4" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="592.99" y="501.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (32 samples, 0.03%)</title><rect x="1010.3" y="331" width="0.4" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="1013.32" y="341.5" ></text>
</g>
<g >
<title>fetch_att (53 samples, 0.04%)</title><rect x="999.6" y="395" width="0.6" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="1002.55" y="405.5" ></text>
</g>
<g >
<title>__GI___libc_free (35 samples, 0.03%)</title><rect x="1196.8" y="475" width="0.4" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="1199.77" y="485.5" ></text>
</g>
<g >
<title>PortalRun (469 samples, 0.39%)</title><rect x="12.0" y="731" width="5.4" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="14.99" y="741.5" ></text>
</g>
<g >
<title>recv@plt (13 samples, 0.01%)</title><rect x="239.3" y="635" width="0.2" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text  x="242.33" y="645.5" ></text>
</g>
<g >
<title>exec_stmts (11 samples, 0.01%)</title><rect x="20.7" y="683" width="0.1" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="23.66" y="693.5" ></text>
</g>
<g >
<title>__switch_to_asm (10 samples, 0.01%)</title><rect x="101.7" y="603" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="104.71" y="613.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (34 samples, 0.03%)</title><rect x="731.6" y="555" width="0.4" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="734.62" y="565.5" ></text>
</g>
<g >
<title>pq_sendint8 (10 samples, 0.01%)</title><rect x="1376.1" y="779" width="0.1" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text  x="1379.11" y="789.5" ></text>
</g>
<g >
<title>pq_getmsgend (23 samples, 0.02%)</title><rect x="1265.1" y="731" width="0.3" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text  x="1268.14" y="741.5" ></text>
</g>
<g >
<title>ExecEvalStepOp (50 samples, 0.04%)</title><rect x="896.9" y="459" width="0.5" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text  x="899.85" y="469.5" ></text>
</g>
<g >
<title>fmgr_isbuiltin (18 samples, 0.02%)</title><rect x="609.3" y="523" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="612.33" y="533.5" ></text>
</g>
<g >
<title>palloc0 (89 samples, 0.07%)</title><rect x="1107.4" y="587" width="1.0" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="1110.39" y="597.5" ></text>
</g>
<g >
<title>RemoveRelations (9 samples, 0.01%)</title><rect x="1389.7" y="763" width="0.1" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text  x="1392.75" y="773.5" ></text>
</g>
<g >
<title>__vdso_gettimeofday (40 samples, 0.03%)</title><rect x="1122.5" y="683" width="0.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="1125.48" y="693.5" ></text>
</g>
<g >
<title>TupleDescCompactAttr (22 samples, 0.02%)</title><rect x="901.0" y="347" width="0.3" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text  x="904.02" y="357.5" ></text>
</g>
<g >
<title>_bt_doinsert (15 samples, 0.01%)</title><rect x="1282.7" y="379" width="0.1" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text  x="1285.66" y="389.5" ></text>
</g>
<g >
<title>RelationDecrementReferenceCount (46 samples, 0.04%)</title><rect x="1176.1" y="491" width="0.6" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text  x="1179.13" y="501.5" ></text>
</g>
<g >
<title>ShowTransactionState (44 samples, 0.04%)</title><rect x="1253.6" y="667" width="0.5" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="1256.63" y="677.5" ></text>
</g>
<g >
<title>_raw_write_lock_irq (74 samples, 0.06%)</title><rect x="114.0" y="539" width="0.9" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="117.00" y="549.5" ></text>
</g>
<g >
<title>check_log_duration (19 samples, 0.02%)</title><rect x="1353.4" y="779" width="0.3" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text  x="1356.43" y="789.5" ></text>
</g>
<g >
<title>_bt_getroot (179 samples, 0.15%)</title><rect x="14.7" y="443" width="2.1" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text  x="17.72" y="453.5" ></text>
</g>
<g >
<title>BufferGetBlock (12 samples, 0.01%)</title><rect x="1005.6" y="379" width="0.1" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="1008.59" y="389.5" ></text>
</g>
<g >
<title>ProcessInvalidationMessages (18 samples, 0.02%)</title><rect x="25.1" y="667" width="0.2" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="28.14" y="677.5" ></text>
</g>
<g >
<title>exec_stmt_execsql (65 samples, 0.05%)</title><rect x="79.7" y="475" width="0.8" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="82.71" y="485.5" ></text>
</g>
<g >
<title>__GI___sigsetjmp (10 samples, 0.01%)</title><rect x="1120.1" y="699" width="0.1" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text  x="1123.08" y="709.5" ></text>
</g>
<g >
<title>socket_set_nonblocking (30 samples, 0.03%)</title><rect x="1381.1" y="779" width="0.4" height="15.0" fill="rgb(228,105,25)" rx="2" ry="2" />
<text  x="1384.15" y="789.5" ></text>
</g>
<g >
<title>SendSharedInvalidMessages (29 samples, 0.02%)</title><rect x="1127.0" y="331" width="0.4" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
<text  x="1130.02" y="341.5" ></text>
</g>
<g >
<title>ExecCheckOneRelPerms (350 samples, 0.29%)</title><rect x="542.0" y="619" width="4.1" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text  x="545.02" y="629.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core.constprop.0 (140 samples, 0.12%)</title><rect x="303.8" y="299" width="1.6" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text  x="306.80" y="309.5" ></text>
</g>
<g >
<title>UnpinBuffer (84 samples, 0.07%)</title><rect x="883.7" y="443" width="0.9" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text  x="886.66" y="453.5" ></text>
</g>
<g >
<title>pg_qsort (12 samples, 0.01%)</title><rect x="1252.6" y="603" width="0.2" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text  x="1255.64" y="613.5" ></text>
</g>
<g >
<title>palloc0 (147 samples, 0.12%)</title><rect x="583.3" y="555" width="1.7" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="586.28" y="565.5" ></text>
</g>
<g >
<title>exec_toplevel_block (23 samples, 0.02%)</title><rect x="24.0" y="683" width="0.3" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="27.01" y="693.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (93 samples, 0.08%)</title><rect x="237.7" y="587" width="1.1" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text  x="240.70" y="597.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (21 samples, 0.02%)</title><rect x="851.3" y="651" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="854.27" y="661.5" ></text>
</g>
<g >
<title>tag_hash (139 samples, 0.12%)</title><rect x="664.2" y="507" width="1.6" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="667.18" y="517.5" ></text>
</g>
<g >
<title>ExecTypeFromTL (957 samples, 0.80%)</title><rect x="618.0" y="587" width="11.0" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text  x="620.97" y="597.5" ></text>
</g>
<g >
<title>ExecuteDoStmt (196 samples, 0.16%)</title><rect x="1127.0" y="619" width="2.3" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text  x="1130.02" y="629.5" ></text>
</g>
<g >
<title>tcp_skb_entail (144 samples, 0.12%)</title><rect x="421.2" y="507" width="1.7" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="424.24" y="517.5" ></text>
</g>
<g >
<title>AllocSetFreeIndex (12 samples, 0.01%)</title><rect x="575.7" y="491" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="578.68" y="501.5" ></text>
</g>
<g >
<title>pfree (56 samples, 0.05%)</title><rect x="518.5" y="699" width="0.7" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="521.54" y="709.5" ></text>
</g>
<g >
<title>AllocSetAlloc (41 samples, 0.03%)</title><rect x="697.0" y="667" width="0.4" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="699.95" y="677.5" ></text>
</g>
<g >
<title>plpgsql_exec_function (46 samples, 0.04%)</title><rect x="1389.1" y="731" width="0.5" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text  x="1392.10" y="741.5" ></text>
</g>
<g >
<title>memcpy@plt (19 samples, 0.02%)</title><rect x="244.9" y="667" width="0.3" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="247.93" y="677.5" ></text>
</g>
<g >
<title>printtup_create_DR (16 samples, 0.01%)</title><rect x="1376.7" y="779" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="1379.74" y="789.5" ></text>
</g>
<g >
<title>pgstat_report_activity (13 samples, 0.01%)</title><rect x="1373.2" y="779" width="0.1" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text  x="1376.17" y="789.5" ></text>
</g>
<g >
<title>FunctionCall1Coll (65 samples, 0.05%)</title><rect x="79.7" y="603" width="0.8" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="82.71" y="613.5" ></text>
</g>
<g >
<title>ExecClearTuple (18 samples, 0.02%)</title><rect x="1307.6" y="779" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="1310.63" y="789.5" ></text>
</g>
<g >
<title>generic_file_write_iter (27 samples, 0.02%)</title><rect x="1272.8" y="283" width="0.3" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text  x="1275.81" y="293.5" ></text>
</g>
<g >
<title>pgstat_report_query_id (11 samples, 0.01%)</title><rect x="1123.2" y="715" width="0.1" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="1126.21" y="725.5" ></text>
</g>
<g >
<title>__ip_queue_xmit (10,303 samples, 8.64%)</title><rect x="281.0" y="459" width="119.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text  x="284.01" y="469.5" >__ip_queue_x..</text>
</g>
<g >
<title>__check_object_size (58 samples, 0.05%)</title><rect x="274.2" y="507" width="0.7" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text  x="277.24" y="517.5" ></text>
</g>
<g >
<title>MemoryContextResetOnly (142 samples, 0.12%)</title><rect x="1195.5" y="507" width="1.7" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text  x="1198.55" y="517.5" ></text>
</g>
<g >
<title>pgss_ExecutorEnd (4,452 samples, 3.73%)</title><rect x="1147.6" y="603" width="51.5" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="1150.62" y="613.5" >pgss..</text>
</g>
<g >
<title>RelationIncrementReferenceCount (32 samples, 0.03%)</title><rect x="670.4" y="555" width="0.4" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="673.41" y="565.5" ></text>
</g>
<g >
<title>HeapCheckForSerializableConflictOut (12 samples, 0.01%)</title><rect x="943.2" y="427" width="0.1" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text  x="946.20" y="437.5" ></text>
</g>
<g >
<title>__kfree_skb (552 samples, 0.46%)</title><rect x="357.6" y="203" width="6.4" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text  x="360.57" y="213.5" ></text>
</g>
<g >
<title>ExecJustAssignScanVar (32 samples, 0.03%)</title><rect x="1311.4" y="779" width="0.3" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text  x="1314.37" y="789.5" ></text>
</g>
<g >
<title>FetchPreparedStatement (28 samples, 0.02%)</title><rect x="1313.8" y="779" width="0.3" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text  x="1316.79" y="789.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (49 samples, 0.04%)</title><rect x="1168.2" y="523" width="0.6" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="1171.24" y="533.5" ></text>
</g>
<g >
<title>index_create (12 samples, 0.01%)</title><rect x="24.1" y="475" width="0.1" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="27.08" y="485.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (44 samples, 0.04%)</title><rect x="66.8" y="235" width="0.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="69.84" y="245.5" ></text>
</g>
<g >
<title>AlterSequence (10 samples, 0.01%)</title><rect x="1283.7" y="443" width="0.1" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text  x="1286.68" y="453.5" ></text>
</g>
<g >
<title>kmalloc_slab (65 samples, 0.05%)</title><rect x="429.9" y="443" width="0.8" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text  x="432.92" y="453.5" ></text>
</g>
<g >
<title>ip_finish_output (44 samples, 0.04%)</title><rect x="287.6" y="443" width="0.5" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text  x="290.63" y="453.5" ></text>
</g>
<g >
<title>find_busiest_group (1,954 samples, 1.64%)</title><rect x="156.6" y="443" width="22.6" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text  x="159.57" y="453.5" ></text>
</g>
<g >
<title>ExecCheckPermissions (389 samples, 0.33%)</title><rect x="541.6" y="635" width="4.5" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text  x="544.60" y="645.5" ></text>
</g>
<g >
<title>ExecGetRangeTableRelation (474 samples, 0.40%)</title><rect x="635.1" y="587" width="5.4" height="15.0" fill="rgb(241,167,39)" rx="2" ry="2" />
<text  x="638.06" y="597.5" ></text>
</g>
<g >
<title>try_to_wake_up (1,171 samples, 0.98%)</title><rect x="330.1" y="155" width="13.5" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text  x="333.05" y="165.5" ></text>
</g>
<g >
<title>_bt_fix_scankey_strategy (50 samples, 0.04%)</title><rect x="1003.2" y="427" width="0.5" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text  x="1006.15" y="437.5" ></text>
</g>
<g >
<title>GetMemoryChunkMethodID (10 samples, 0.01%)</title><rect x="1203.2" y="523" width="0.1" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text  x="1206.21" y="533.5" ></text>
</g>
<g >
<title>_SPI_execute_plan (23 samples, 0.02%)</title><rect x="24.0" y="571" width="0.3" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="27.01" y="581.5" ></text>
</g>
<g >
<title>mutex_unlock (41 samples, 0.03%)</title><rect x="129.9" y="539" width="0.4" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text  x="132.86" y="549.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (22 samples, 0.02%)</title><rect x="854.0" y="619" width="0.2" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text  x="856.98" y="629.5" ></text>
</g>
<g >
<title>ReceiveSharedInvalidMessages (16 samples, 0.01%)</title><rect x="1337.9" y="779" width="0.2" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text  x="1340.90" y="789.5" ></text>
</g>
<g >
<title>GrantLockLocal (49 samples, 0.04%)</title><rect x="661.0" y="539" width="0.6" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="664.01" y="549.5" ></text>
</g>
<g >
<title>AcceptInvalidationMessages (12 samples, 0.01%)</title><rect x="1268.6" y="651" width="0.2" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text  x="1271.62" y="661.5" ></text>
</g>
<g >
<title>ResourceOwnerRemember (10 samples, 0.01%)</title><rect x="855.9" y="619" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="858.90" y="629.5" ></text>
</g>
<g >
<title>do_unlinkat (11 samples, 0.01%)</title><rect x="1128.8" y="235" width="0.1" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text  x="1131.80" y="245.5" ></text>
</g>
<g >
<title>CommandCounterIncrement (18 samples, 0.02%)</title><rect x="25.1" y="715" width="0.2" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="28.14" y="725.5" ></text>
</g>
<g >
<title>SIGetDataEntries (11 samples, 0.01%)</title><rect x="1268.6" y="619" width="0.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text  x="1271.63" y="629.5" ></text>
</g>
<g >
<title>DataChecksumsEnabled (25 samples, 0.02%)</title><rect x="1005.7" y="395" width="0.3" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text  x="1008.73" y="405.5" ></text>
</g>
<g >
<title>tcp_stream_memory_free (51 samples, 0.04%)</title><rect x="126.8" y="491" width="0.6" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
<text  x="129.83" y="501.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (19 samples, 0.02%)</title><rect x="1287.9" y="763" width="0.2" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text  x="1290.86" y="773.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (11 samples, 0.01%)</title><rect x="20.7" y="571" width="0.1" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="23.66" y="581.5" ></text>
</g>
<g >
<title>performMultipleDeletions (58 samples, 0.05%)</title><rect x="79.8" y="331" width="0.7" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="82.79" y="341.5" ></text>
</g>
<g >
<title>CopySnapshot (97 samples, 0.08%)</title><rect x="695.6" y="683" width="1.1" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="698.55" y="693.5" ></text>
</g>
<g >
<title>_bt_leafbuild (27 samples, 0.02%)</title><rect x="1272.8" y="507" width="0.3" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="1275.81" y="517.5" ></text>
</g>
<g >
<title>DatumGetInt32 (12 samples, 0.01%)</title><rect x="984.3" y="379" width="0.2" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text  x="987.35" y="389.5" ></text>
</g>
<g >
<title>ObjectIdGetDatum (89 samples, 0.07%)</title><rect x="1330.2" y="779" width="1.0" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text  x="1333.16" y="789.5" ></text>
</g>
<g >
<title>pairingheap_remove_first (18 samples, 0.02%)</title><rect x="1203.4" y="539" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="1206.43" y="549.5" ></text>
</g>
<g >
<title>ComputeIndexAttrs (28 samples, 0.02%)</title><rect x="21.0" y="427" width="0.3" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text  x="23.98" y="437.5" ></text>
</g>
<g >
<title>pg_any_to_server (87 samples, 0.07%)</title><rect x="706.2" y="699" width="1.0" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text  x="709.16" y="709.5" ></text>
</g>
<g >
<title>ReleaseCatCacheWithOwner (33 samples, 0.03%)</title><rect x="587.3" y="539" width="0.4" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text  x="590.34" y="549.5" ></text>
</g>
<g >
<title>SPI_commit (171 samples, 0.14%)</title><rect x="1127.0" y="443" width="2.0" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
<text  x="1130.02" y="453.5" ></text>
</g>
<g >
<title>pg_checksum_block (9 samples, 0.01%)</title><rect x="1277.2" y="347" width="0.1" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="1280.24" y="357.5" ></text>
</g>
<g >
<title>__update_load_avg_se (12 samples, 0.01%)</title><rect x="181.5" y="427" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="184.47" y="437.5" ></text>
</g>
<g >
<title>dlist_is_empty (10 samples, 0.01%)</title><rect x="1249.8" y="619" width="0.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="1252.81" y="629.5" ></text>
</g>
<g >
<title>MemoryContextReset (16 samples, 0.01%)</title><rect x="893.0" y="539" width="0.1" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="895.95" y="549.5" ></text>
</g>
<g >
<title>RelationIdGetRelation (211 samples, 0.18%)</title><rect x="670.2" y="571" width="2.5" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text  x="673.23" y="581.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (7,704 samples, 6.46%)</title><rect x="103.8" y="603" width="89.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="106.77" y="613.5" >entry_SY..</text>
</g>
<g >
<title>SPI_execute_plan_with_paramlist (11 samples, 0.01%)</title><rect x="20.7" y="651" width="0.1" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="23.66" y="661.5" ></text>
</g>
<g >
<title>initStringInfo (14 samples, 0.01%)</title><rect x="1268.4" y="747" width="0.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="1271.36" y="757.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (47 samples, 0.04%)</title><rect x="1272.7" y="651" width="0.6" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="1275.71" y="661.5" ></text>
</g>
<g >
<title>ReceiveSharedInvalidMessages (9,784 samples, 8.20%)</title><rect x="723.3" y="635" width="113.2" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text  x="726.27" y="645.5" >ReceiveShar..</text>
</g>
<g >
<title>exec_toplevel_block (211 samples, 0.18%)</title><rect x="20.9" y="635" width="2.4" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="23.90" y="645.5" ></text>
</g>
<g >
<title>RegisterSnapshot (54 samples, 0.05%)</title><rect x="681.6" y="651" width="0.6" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="684.57" y="661.5" ></text>
</g>
<g >
<title>ProcessInvalidationMessagesMulti (29 samples, 0.02%)</title><rect x="1127.0" y="347" width="0.4" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text  x="1130.02" y="357.5" ></text>
</g>
<g >
<title>SPI_execute_plan_with_paramlist (11 samples, 0.01%)</title><rect x="19.4" y="667" width="0.1" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="22.38" y="677.5" ></text>
</g>
<g >
<title>GetPrivateRefCountEntry (13 samples, 0.01%)</title><rect x="884.5" y="411" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="887.48" y="421.5" ></text>
</g>
<g >
<title>PortalStart (15,028 samples, 12.60%)</title><rect x="521.0" y="715" width="173.9" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text  x="524.04" y="725.5" >PortalStart</text>
</g>
<g >
<title>fetch_att (121 samples, 0.10%)</title><rect x="1057.4" y="379" width="1.4" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="1060.37" y="389.5" ></text>
</g>
<g >
<title>ipv4_dst_check (13 samples, 0.01%)</title><rect x="318.1" y="235" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text  x="321.15" y="245.5" ></text>
</g>
<g >
<title>set_ps_display_with_len (15 samples, 0.01%)</title><rect x="720.8" y="699" width="0.2" height="15.0" fill="rgb(222,79,18)" rx="2" ry="2" />
<text  x="723.81" y="709.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (106 samples, 0.09%)</title><rect x="1081.7" y="363" width="1.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="1084.69" y="373.5" ></text>
</g>
<g >
<title>CommandCounterIncrement (12 samples, 0.01%)</title><rect x="18.3" y="763" width="0.1" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="21.26" y="773.5" ></text>
</g>
<g >
<title>RelationRebuildRelation (21 samples, 0.02%)</title><rect x="1274.1" y="715" width="0.2" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text  x="1277.05" y="725.5" ></text>
</g>
<g >
<title>do_syscall_64 (441 samples, 0.37%)</title><rect x="1277.4" y="267" width="5.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="1280.36" y="277.5" ></text>
</g>
<g >
<title>RelationFlushRelation (18 samples, 0.02%)</title><rect x="25.1" y="619" width="0.2" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="28.14" y="629.5" ></text>
</g>
<g >
<title>_bt_next (10 samples, 0.01%)</title><rect x="1350.6" y="779" width="0.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text  x="1353.61" y="789.5" ></text>
</g>
<g >
<title>CommitTransactionCommand (14 samples, 0.01%)</title><rect x="1304.0" y="779" width="0.2" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" />
<text  x="1307.04" y="789.5" ></text>
</g>
<g >
<title>AllocSetAlloc (35 samples, 0.03%)</title><rect x="617.3" y="555" width="0.4" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="620.31" y="565.5" ></text>
</g>
<g >
<title>clear_bhb_loop (144 samples, 0.12%)</title><rect x="255.2" y="619" width="1.7" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="258.23" y="629.5" ></text>
</g>
<g >
<title>GetCurrentTransactionNestLevel (19 samples, 0.02%)</title><rect x="1208.9" y="619" width="0.2" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text  x="1211.91" y="629.5" ></text>
</g>
<g >
<title>ExecStoreBufferHeapTuple (150 samples, 0.13%)</title><rect x="915.0" y="443" width="1.8" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="918.02" y="453.5" ></text>
</g>
<g >
<title>SearchCatCache1 (10 samples, 0.01%)</title><rect x="1283.6" y="395" width="0.1" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="1286.56" y="405.5" ></text>
</g>
<g >
<title>index_rescan (208 samples, 0.17%)</title><rect x="1088.2" y="507" width="2.4" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text  x="1091.22" y="517.5" ></text>
</g>
<g >
<title>__netif_receive_skb (11 samples, 0.01%)</title><rect x="303.3" y="315" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="306.33" y="325.5" ></text>
</g>
<g >
<title>AtEOXact_PgStat (14 samples, 0.01%)</title><rect x="1297.8" y="779" width="0.2" height="15.0" fill="rgb(246,193,46)" rx="2" ry="2" />
<text  x="1300.83" y="789.5" ></text>
</g>
<g >
<title>PageGetItemId (26 samples, 0.02%)</title><rect x="997.7" y="411" width="0.3" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text  x="1000.67" y="421.5" ></text>
</g>
<g >
<title>postmaster_child_launch (23 samples, 0.02%)</title><rect x="1268.6" y="763" width="0.3" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="1271.62" y="773.5" ></text>
</g>
<g >
<title>IsSharedRelation (49 samples, 0.04%)</title><rect x="501.3" y="619" width="0.5" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text  x="504.28" y="629.5" ></text>
</g>
<g >
<title>RemoveRelations (11 samples, 0.01%)</title><rect x="23.7" y="443" width="0.1" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text  x="26.67" y="453.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (48 samples, 0.04%)</title><rect x="1232.6" y="587" width="0.6" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="1235.63" y="597.5" ></text>
</g>
<g >
<title>_bt_metaversion (34 samples, 0.03%)</title><rect x="1001.5" y="443" width="0.4" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text  x="1004.54" y="453.5" ></text>
</g>
<g >
<title>ExecEvalParamExtern (36 samples, 0.03%)</title><rect x="1308.1" y="779" width="0.4" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="1311.09" y="789.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetRelationRef (17 samples, 0.01%)</title><rect x="1341.4" y="779" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text  x="1344.43" y="789.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (45 samples, 0.04%)</title><rect x="696.0" y="667" width="0.5" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="699.01" y="677.5" ></text>
</g>
<g >
<title>RelationCloseCleanup (10 samples, 0.01%)</title><rect x="1177.5" y="491" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="1180.51" y="501.5" ></text>
</g>
<g >
<title>AllocSetFreeIndex (20 samples, 0.02%)</title><rect x="844.5" y="603" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="847.54" y="613.5" ></text>
</g>
<g >
<title>CommandCounterIncrement (22 samples, 0.02%)</title><rect x="1277.0" y="459" width="0.2" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="1279.99" y="469.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (249 samples, 0.21%)</title><rect x="34.0" y="267" width="2.9" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="36.98" y="277.5" ></text>
</g>
<g >
<title>pairingheap_add (43 samples, 0.04%)</title><rect x="524.8" y="651" width="0.5" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text  x="527.84" y="661.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (15 samples, 0.01%)</title><rect x="23.8" y="507" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="26.79" y="517.5" ></text>
</g>
<g >
<title>strlcpy (34 samples, 0.03%)</title><rect x="1382.6" y="779" width="0.4" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="1385.58" y="789.5" ></text>
</g>
<g >
<title>sock_poll (665 samples, 0.56%)</title><rect x="119.7" y="523" width="7.7" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="122.72" y="533.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (25 samples, 0.02%)</title><rect x="1285.3" y="539" width="0.3" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="1288.32" y="549.5" ></text>
</g>
<g >
<title>pgstat_init_relation (23 samples, 0.02%)</title><rect x="640.2" y="539" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text  x="643.17" y="549.5" ></text>
</g>
<g >
<title>check_stack_depth (45 samples, 0.04%)</title><rect x="1353.7" y="779" width="0.5" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="1356.65" y="789.5" ></text>
</g>
<g >
<title>pq_endmessage_reuse (68 samples, 0.06%)</title><rect x="856.8" y="699" width="0.8" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text  x="859.80" y="709.5" ></text>
</g>
<g >
<title>__memset_evex_unaligned_erms (12 samples, 0.01%)</title><rect x="497.3" y="619" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="500.34" y="629.5" ></text>
</g>
<g >
<title>PinBuffer (540 samples, 0.45%)</title><rect x="38.8" y="299" width="6.2" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text  x="41.76" y="309.5" ></text>
</g>
<g >
<title>RemoveLocalLock (614 samples, 0.51%)</title><rect x="1233.2" y="603" width="7.1" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text  x="1236.22" y="613.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (697 samples, 0.58%)</title><rect x="1275.9" y="523" width="8.0" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="1278.86" y="533.5" ></text>
</g>
<g >
<title>__strlen_evex (16 samples, 0.01%)</title><rect x="859.6" y="683" width="0.2" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="862.59" y="693.5" ></text>
</g>
<g >
<title>table_index_fetch_begin (86 samples, 0.07%)</title><rect x="912.0" y="491" width="1.0" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text  x="914.99" y="501.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (52 samples, 0.04%)</title><rect x="1106.3" y="523" width="0.6" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="1109.29" y="533.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (33 samples, 0.03%)</title><rect x="699.5" y="635" width="0.4" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text  x="702.54" y="645.5" ></text>
</g>
<g >
<title>dlist_is_empty (10 samples, 0.01%)</title><rect x="1253.5" y="635" width="0.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="1256.49" y="645.5" ></text>
</g>
<g >
<title>ExecReadyInterpretedExpr (99 samples, 0.08%)</title><rect x="612.8" y="571" width="1.1" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text  x="615.79" y="581.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (54 samples, 0.05%)</title><rect x="1231.2" y="587" width="0.6" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="1234.19" y="597.5" ></text>
</g>
<g >
<title>heap_hot_search_buffer (9 samples, 0.01%)</title><rect x="21.2" y="299" width="0.1" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text  x="24.19" y="309.5" ></text>
</g>
<g >
<title>AfterTriggerFireDeferred (34 samples, 0.03%)</title><rect x="1291.3" y="779" width="0.4" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text  x="1294.29" y="789.5" ></text>
</g>
<g >
<title>hash_bytes_uint32 (29 samples, 0.02%)</title><rect x="724.9" y="555" width="0.3" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text  x="727.85" y="565.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (24 samples, 0.02%)</title><rect x="1231.5" y="555" width="0.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="1234.47" y="565.5" ></text>
</g>
<g >
<title>ModifyWaitEvent (29 samples, 0.02%)</title><rect x="1329.7" y="779" width="0.4" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text  x="1332.75" y="789.5" ></text>
</g>
<g >
<title>PostgresMain (477 samples, 0.40%)</title><rect x="12.0" y="763" width="5.5" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text  x="14.99" y="773.5" ></text>
</g>
<g >
<title>mdunlinkfork (22 samples, 0.02%)</title><rect x="1128.7" y="315" width="0.3" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="1131.71" y="325.5" ></text>
</g>
<g >
<title>strlcpy (37 samples, 0.03%)</title><rect x="461.2" y="667" width="0.5" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="464.24" y="677.5" ></text>
</g>
<g >
<title>ReleaseAndReadBuffer (35 samples, 0.03%)</title><rect x="11.5" y="459" width="0.4" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text  x="14.53" y="469.5" ></text>
</g>
<g >
<title>InitBufferTag (15 samples, 0.01%)</title><rect x="1321.1" y="779" width="0.2" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text  x="1324.15" y="789.5" ></text>
</g>
<g >
<title>__x64_sys_epoll_wait (9 samples, 0.01%)</title><rect x="1269.3" y="667" width="0.1" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text  x="1272.33" y="677.5" ></text>
</g>
<g >
<title>pq_copymsgbytes (14 samples, 0.01%)</title><rect x="1265.4" y="715" width="0.2" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text  x="1268.43" y="725.5" ></text>
</g>
<g >
<title>__memcpy_evex_unaligned_erms (20 samples, 0.02%)</title><rect x="570.4" y="523" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="573.35" y="533.5" ></text>
</g>
<g >
<title>__memcpy_evex_unaligned_erms (75 samples, 0.06%)</title><rect x="244.1" y="667" width="0.8" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="247.06" y="677.5" ></text>
</g>
<g >
<title>pfree (79 samples, 0.07%)</title><rect x="1000.5" y="427" width="0.9" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1003.50" y="437.5" ></text>
</g>
<g >
<title>vfs_write (27 samples, 0.02%)</title><rect x="1272.8" y="299" width="0.3" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="1275.81" y="309.5" ></text>
</g>
<g >
<title>tcp_schedule_loss_probe.part.0 (55 samples, 0.05%)</title><rect x="411.4" y="475" width="0.6" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text  x="414.37" y="485.5" ></text>
</g>
<g >
<title>record_object_address_dependencies (15 samples, 0.01%)</title><rect x="1282.7" y="475" width="0.1" height="15.0" fill="rgb(218,59,14)" rx="2" ry="2" />
<text  x="1285.66" y="485.5" ></text>
</g>
<g >
<title>string_compare (24 samples, 0.02%)</title><rect x="868.6" y="667" width="0.3" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text  x="871.61" y="677.5" ></text>
</g>
<g >
<title>getObjectDescription (12 samples, 0.01%)</title><rect x="1283.5" y="443" width="0.2" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text  x="1286.54" y="453.5" ></text>
</g>
<g >
<title>LockErrorCleanup (31 samples, 0.03%)</title><rect x="1325.7" y="779" width="0.4" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text  x="1328.73" y="789.5" ></text>
</g>
<g >
<title>BlockIdGetBlockNumber (13 samples, 0.01%)</title><rect x="916.9" y="411" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="919.92" y="421.5" ></text>
</g>
<g >
<title>BufferAlloc (1,406 samples, 1.18%)</title><rect x="29.0" y="315" width="16.3" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text  x="32.05" y="325.5" ></text>
</g>
<g >
<title>SIGetDataEntries (1,290 samples, 1.08%)</title><rect x="642.5" y="523" width="14.9" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text  x="645.52" y="533.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (25 samples, 0.02%)</title><rect x="1285.3" y="555" width="0.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="1288.32" y="565.5" ></text>
</g>
<g >
<title>FileWrite (27 samples, 0.02%)</title><rect x="1272.8" y="411" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="1275.81" y="421.5" ></text>
</g>
<g >
<title>tcp_v4_send_check (31 samples, 0.03%)</title><rect x="405.4" y="459" width="0.4" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text  x="408.41" y="469.5" ></text>
</g>
<g >
<title>netif_skb_features (104 samples, 0.09%)</title><rect x="395.9" y="395" width="1.2" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text  x="398.92" y="405.5" ></text>
</g>
<g >
<title>tts_buffer_heap_clear (196 samples, 0.16%)</title><rect x="878.4" y="507" width="2.3" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text  x="881.43" y="517.5" ></text>
</g>
<g >
<title>GetAwaitedLock (11 samples, 0.01%)</title><rect x="1315.2" y="779" width="0.1" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text  x="1318.21" y="789.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (130 samples, 0.11%)</title><rect x="1074.8" y="347" width="1.5" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="1077.83" y="357.5" ></text>
</g>
<g >
<title>palloc0 (157 samples, 0.13%)</title><rect x="631.3" y="555" width="1.9" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="634.34" y="565.5" ></text>
</g>
<g >
<title>AcquireExecutorLocks (453 samples, 0.38%)</title><rect x="467.0" y="683" width="5.2" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text  x="469.98" y="693.5" ></text>
</g>
<g >
<title>skb_copy_datagram_iter (957 samples, 0.80%)</title><rect x="217.7" y="507" width="11.1" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text  x="220.71" y="517.5" ></text>
</g>
<g >
<title>standard_ExecutorRun (72 samples, 0.06%)</title><rect x="11.1" y="699" width="0.8" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text  x="14.10" y="709.5" ></text>
</g>
<g >
<title>BackgroundWorkerMain (17 samples, 0.01%)</title><rect x="1268.9" y="731" width="0.2" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text  x="1271.89" y="741.5" ></text>
</g>
<g >
<title>ReleaseCatCacheWithOwner (38 samples, 0.03%)</title><rect x="853.8" y="651" width="0.4" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text  x="856.80" y="661.5" ></text>
</g>
<g >
<title>expr_setup_walker (21 samples, 0.02%)</title><rect x="580.4" y="555" width="0.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="583.42" y="565.5" ></text>
</g>
<g >
<title>_SPI_execute_plan (15 samples, 0.01%)</title><rect x="23.8" y="555" width="0.2" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="26.79" y="565.5" ></text>
</g>
<g >
<title>pfree (46 samples, 0.04%)</title><rect x="1203.8" y="603" width="0.6" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1206.82" y="613.5" ></text>
</g>
<g >
<title>exec_stmts (81 samples, 0.07%)</title><rect x="1271.8" y="555" width="0.9" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="1274.77" y="565.5" ></text>
</g>
<g >
<title>LWLockAcquire (179 samples, 0.15%)</title><rect x="14.7" y="379" width="2.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="17.72" y="389.5" ></text>
</g>
<g >
<title>heap_form_tuple (10 samples, 0.01%)</title><rect x="1274.5" y="763" width="0.1" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="1277.52" y="773.5" ></text>
</g>
<g >
<title>list_head (18 samples, 0.02%)</title><rect x="856.1" y="699" width="0.2" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text  x="859.11" y="709.5" ></text>
</g>
<g >
<title>BufferIsValid (9 samples, 0.01%)</title><rect x="1181.6" y="491" width="0.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="1184.59" y="501.5" ></text>
</g>
<g >
<title>tas (438 samples, 0.37%)</title><rect x="829.1" y="587" width="5.1" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text  x="832.10" y="597.5" ></text>
</g>
<g >
<title>hash_bytes (72 samples, 0.06%)</title><rect x="1206.2" y="603" width="0.8" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="1209.18" y="613.5" ></text>
</g>
<g >
<title>palloc0 (388 samples, 0.33%)</title><rect x="527.4" y="651" width="4.5" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="530.40" y="661.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (14 samples, 0.01%)</title><rect x="1369.7" y="779" width="0.2" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="1372.74" y="789.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (69 samples, 0.06%)</title><rect x="1238.1" y="539" width="0.8" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="1241.06" y="549.5" ></text>
</g>
<g >
<title>__libc_pwrite64 (442 samples, 0.37%)</title><rect x="1277.3" y="299" width="5.2" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text  x="1280.35" y="309.5" ></text>
</g>
<g >
<title>tlist_matches_tupdesc (41 samples, 0.03%)</title><rect x="576.3" y="571" width="0.4" height="15.0" fill="rgb(222,79,19)" rx="2" ry="2" />
<text  x="579.26" y="581.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (345 samples, 0.29%)</title><rect x="53.3" y="283" width="4.0" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="56.28" y="293.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (32 samples, 0.03%)</title><rect x="643.0" y="491" width="0.4" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="646.05" y="501.5" ></text>
</g>
<g >
<title>FunctionCall1Coll (12 samples, 0.01%)</title><rect x="19.4" y="811" width="0.1" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="22.37" y="821.5" ></text>
</g>
<g >
<title>pq_writeint16 (9 samples, 0.01%)</title><rect x="857.8" y="683" width="0.1" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="860.81" y="693.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (31 samples, 0.03%)</title><rect x="1241.6" y="539" width="0.4" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="1244.61" y="549.5" ></text>
</g>
<g >
<title>ExtendBufferedRelLocal (25 samples, 0.02%)</title><rect x="25.5" y="635" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="28.52" y="645.5" ></text>
</g>
<g >
<title>do_softirq.part.0 (8,367 samples, 7.02%)</title><rect x="292.0" y="395" width="96.9" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="295.04" y="405.5" >do_softir..</text>
</g>
<g >
<title>UnregisterSnapshotFromOwner (168 samples, 0.14%)</title><rect x="1201.8" y="587" width="2.0" height="15.0" fill="rgb(223,87,20)" rx="2" ry="2" />
<text  x="1204.82" y="597.5" ></text>
</g>
<g >
<title>kmalloc_size_roundup (114 samples, 0.10%)</title><rect x="429.4" y="459" width="1.3" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="432.35" y="469.5" ></text>
</g>
<g >
<title>palloc (261 samples, 0.22%)</title><rect x="909.0" y="459" width="3.0" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="911.96" y="469.5" ></text>
</g>
<g >
<title>ExecReadyExpr (94 samples, 0.08%)</title><rect x="568.6" y="539" width="1.1" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text  x="571.64" y="549.5" ></text>
</g>
<g >
<title>index_getnext_slot (12 samples, 0.01%)</title><rect x="24.5" y="587" width="0.1" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="27.50" y="597.5" ></text>
</g>
<g >
<title>int4hashfast (47 samples, 0.04%)</title><rect x="701.8" y="635" width="0.5" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text  x="704.80" y="645.5" ></text>
</g>
<g >
<title>slot_getattr (31 samples, 0.03%)</title><rect x="1379.3" y="779" width="0.4" height="15.0" fill="rgb(214,41,9)" rx="2" ry="2" />
<text  x="1382.33" y="789.5" ></text>
</g>
<g >
<title>ExecIndexScan (4,568 samples, 3.83%)</title><rect x="26.8" y="603" width="52.9" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="29.85" y="613.5" >Exec..</text>
</g>
<g >
<title>AtStart_GUC (11 samples, 0.01%)</title><rect x="836.6" y="667" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text  x="839.55" y="677.5" ></text>
</g>
<g >
<title>exec_stmt_fori (37 samples, 0.03%)</title><rect x="1285.2" y="731" width="0.4" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text  x="1288.18" y="741.5" ></text>
</g>
<g >
<title>ResourceOwnerRemember (29 samples, 0.02%)</title><rect x="591.5" y="507" width="0.3" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="594.46" y="517.5" ></text>
</g>
<g >
<title>sock_def_readable (1,673 samples, 1.40%)</title><rect x="325.1" y="219" width="19.4" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text  x="328.15" y="229.5" ></text>
</g>
<g >
<title>SearchSysCache1 (313 samples, 0.26%)</title><rect x="700.0" y="699" width="3.6" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="702.96" y="709.5" ></text>
</g>
<g >
<title>s_lock (87 samples, 0.07%)</title><rect x="1127.5" y="283" width="1.0" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="1130.48" y="293.5" ></text>
</g>
<g >
<title>__get_user_8 (49 samples, 0.04%)</title><rect x="190.9" y="523" width="0.5" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="193.87" y="533.5" ></text>
</g>
<g >
<title>fetch_att (41 samples, 0.03%)</title><rect x="901.3" y="347" width="0.4" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="904.27" y="357.5" ></text>
</g>
<g >
<title>int4hashfast (48 samples, 0.04%)</title><rect x="590.4" y="507" width="0.5" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text  x="593.39" y="517.5" ></text>
</g>
<g >
<title>SIGetDataEntries (9,517 samples, 7.98%)</title><rect x="726.4" y="619" width="110.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text  x="729.35" y="629.5" >SIGetDataEn..</text>
</g>
<g >
<title>spin_delay (12 samples, 0.01%)</title><rect x="1128.3" y="251" width="0.1" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="1131.28" y="261.5" ></text>
</g>
<g >
<title>ProcessUtility (65 samples, 0.05%)</title><rect x="79.7" y="427" width="0.8" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="82.71" y="437.5" ></text>
</g>
<g >
<title>GetSnapshotDataReuse (16 samples, 0.01%)</title><rect x="504.4" y="683" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="507.41" y="693.5" ></text>
</g>
<g >
<title>hash_initial_lookup (26 samples, 0.02%)</title><rect x="460.9" y="667" width="0.3" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="463.94" y="677.5" ></text>
</g>
<g >
<title>__kmem_cache_alloc_node (435 samples, 0.36%)</title><rect x="424.1" y="443" width="5.1" height="15.0" fill="rgb(208,16,4)" rx="2" ry="2" />
<text  x="427.14" y="453.5" ></text>
</g>
<g >
<title>BlockNumberIsValid (22 samples, 0.02%)</title><rect x="1301.1" y="779" width="0.2" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text  x="1304.09" y="789.5" ></text>
</g>
<g >
<title>shmem_get_folio_gfp (12 samples, 0.01%)</title><rect x="25.5" y="379" width="0.2" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text  x="28.52" y="389.5" ></text>
</g>
<g >
<title>SnapshotResetXmin (37 samples, 0.03%)</title><rect x="1118.2" y="667" width="0.5" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text  x="1121.25" y="677.5" ></text>
</g>
<g >
<title>__skb_datagram_iter (950 samples, 0.80%)</title><rect x="217.8" y="491" width="11.0" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text  x="220.77" y="501.5" ></text>
</g>
<g >
<title>MemoryContextStrdup (229 samples, 0.19%)</title><rect x="718.0" y="699" width="2.6" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="721.00" y="709.5" ></text>
</g>
<g >
<title>__futex_abstimed_wait_common (10 samples, 0.01%)</title><rect x="492.7" y="571" width="0.1" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="495.66" y="581.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (13 samples, 0.01%)</title><rect x="662.7" y="475" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="665.70" y="485.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (140 samples, 0.12%)</title><rect x="1155.6" y="539" width="1.6" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="1158.60" y="549.5" ></text>
</g>
<g >
<title>save_fpregs_to_fpstate (104 samples, 0.09%)</title><rect x="193.2" y="603" width="1.2" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text  x="196.22" y="613.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (25 samples, 0.02%)</title><rect x="1176.4" y="459" width="0.3" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text  x="1179.37" y="469.5" ></text>
</g>
<g >
<title>BTreeTupleIsPosting (9 samples, 0.01%)</title><rect x="1012.9" y="411" width="0.1" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text  x="1015.87" y="421.5" ></text>
</g>
<g >
<title>ProcessInvalidationMessages (22 samples, 0.02%)</title><rect x="1283.3" y="379" width="0.2" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="1286.27" y="389.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (78 samples, 0.07%)</title><rect x="663.1" y="523" width="0.9" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="666.09" y="533.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetCatCacheRef (42 samples, 0.04%)</title><rect x="699.4" y="651" width="0.5" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text  x="702.44" y="661.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (46 samples, 0.04%)</title><rect x="1272.7" y="587" width="0.6" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="1275.72" y="597.5" ></text>
</g>
<g >
<title>BufTableLookup (445 samples, 0.37%)</title><rect x="922.5" y="315" width="5.2" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text  x="925.51" y="325.5" ></text>
</g>
<g >
<title>FunctionCall2Coll (483 samples, 0.41%)</title><rect x="979.2" y="411" width="5.6" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="982.21" y="421.5" ></text>
</g>
<g >
<title>HeapTupleSatisfiesVisibility (20 samples, 0.02%)</title><rect x="946.3" y="427" width="0.2" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="949.30" y="437.5" ></text>
</g>
<g >
<title>BlockIdSet (12 samples, 0.01%)</title><rect x="1301.0" y="779" width="0.1" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="1303.95" y="789.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (41 samples, 0.03%)</title><rect x="500.1" y="571" width="0.5" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="503.11" y="581.5" ></text>
</g>
<g >
<title>ExecInterpExpr (43 samples, 0.04%)</title><rect x="1310.2" y="779" width="0.5" height="15.0" fill="rgb(225,96,22)" rx="2" ry="2" />
<text  x="1313.24" y="789.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (37 samples, 0.03%)</title><rect x="1269.9" y="795" width="0.4" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text  x="1272.87" y="805.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (15 samples, 0.01%)</title><rect x="520.9" y="667" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="523.85" y="677.5" ></text>
</g>
<g >
<title>BufferGetPage (25 samples, 0.02%)</title><rect x="1077.2" y="395" width="0.3" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="1080.17" y="405.5" ></text>
</g>
<g >
<title>RelationBuildTupleDesc (9 samples, 0.01%)</title><rect x="1389.2" y="331" width="0.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="1392.25" y="341.5" ></text>
</g>
<g >
<title>uint32_hash (31 samples, 0.03%)</title><rect x="724.8" y="571" width="0.4" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="727.83" y="581.5" ></text>
</g>
<g >
<title>RelationCacheInvalidateEntry (18 samples, 0.02%)</title><rect x="25.1" y="635" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="28.14" y="645.5" ></text>
</g>
<g >
<title>send_call_function_single_ipi (159 samples, 0.13%)</title><rect x="341.7" y="123" width="1.9" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text  x="344.72" y="133.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (15 samples, 0.01%)</title><rect x="23.8" y="523" width="0.2" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="26.79" y="533.5" ></text>
</g>
<g >
<title>get_timeout_active (23 samples, 0.02%)</title><rect x="1120.7" y="699" width="0.2" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" />
<text  x="1123.65" y="709.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (35 samples, 0.03%)</title><rect x="724.4" y="571" width="0.4" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="727.42" y="581.5" ></text>
</g>
<g >
<title>CatalogCacheCompareTuple (9 samples, 0.01%)</title><rect x="854.9" y="635" width="0.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="857.93" y="645.5" ></text>
</g>
<g >
<title>list_delete_cell (59 samples, 0.05%)</title><rect x="1193.2" y="523" width="0.7" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text  x="1196.20" y="533.5" ></text>
</g>
<g >
<title>fmgr_isbuiltin (20 samples, 0.02%)</title><rect x="517.2" y="667" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="520.21" y="677.5" ></text>
</g>
<g >
<title>StartTransactionCommand (12 samples, 0.01%)</title><rect x="1268.6" y="699" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="1271.62" y="709.5" ></text>
</g>
<g >
<title>alloc_perturb (26 samples, 0.02%)</title><rect x="911.5" y="379" width="0.3" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text  x="914.52" y="389.5" ></text>
</g>
<g >
<title>exec_stmt_execsql (15 samples, 0.01%)</title><rect x="19.2" y="651" width="0.1" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="22.15" y="661.5" ></text>
</g>
<g >
<title>tts_virtual_clear (10 samples, 0.01%)</title><rect x="1384.2" y="779" width="0.2" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="1387.25" y="789.5" ></text>
</g>
<g >
<title>BTreeTupleIsPivot (13 samples, 0.01%)</title><rect x="1025.4" y="411" width="0.2" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="1028.44" y="421.5" ></text>
</g>
<g >
<title>hash_search (182 samples, 0.15%)</title><rect x="449.3" y="683" width="2.1" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="452.30" y="693.5" ></text>
</g>
<g >
<title>new_list (71 samples, 0.06%)</title><rect x="554.8" y="539" width="0.8" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="557.79" y="549.5" ></text>
</g>
<g >
<title>AtStart_ResourceOwner (678 samples, 0.57%)</title><rect x="837.0" y="667" width="7.9" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="840.04" y="677.5" ></text>
</g>
<g >
<title>schedule (5,005 samples, 4.20%)</title><rect x="131.0" y="523" width="57.9" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text  x="134.00" y="533.5" >sched..</text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (134 samples, 0.11%)</title><rect x="14.7" y="347" width="1.6" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="17.72" y="357.5" ></text>
</g>
<g >
<title>pgss_ExecutorFinish (189 samples, 0.16%)</title><rect x="1199.2" y="603" width="2.2" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="1202.20" y="613.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (23 samples, 0.02%)</title><rect x="931.8" y="267" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="934.84" y="277.5" ></text>
</g>
<g >
<title>MemoryChunkSetHdrMask (14 samples, 0.01%)</title><rect x="597.0" y="539" width="0.2" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="600.04" y="549.5" ></text>
</g>
<g >
<title>tts_virtual_clear (16 samples, 0.01%)</title><rect x="1189.0" y="523" width="0.1" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="1191.96" y="533.5" ></text>
</g>
<g >
<title>BufferDescriptorGetBuffer (10 samples, 0.01%)</title><rect x="884.4" y="411" width="0.1" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="887.37" y="421.5" ></text>
</g>
<g >
<title>index_getnext_slot (15,142 samples, 12.70%)</title><rect x="913.0" y="507" width="175.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="916.00" y="517.5" >index_getnext_slot</text>
</g>
<g >
<title>getTypeInputInfo (15 samples, 0.01%)</title><rect x="1358.8" y="779" width="0.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="1361.80" y="789.5" ></text>
</g>
<g >
<title>AllocSetAlloc (64 samples, 0.05%)</title><rect x="908.2" y="427" width="0.8" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="911.22" y="437.5" ></text>
</g>
<g >
<title>secure_read (9 samples, 0.01%)</title><rect x="1378.5" y="779" width="0.1" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text  x="1381.54" y="789.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetSnapshot (35 samples, 0.03%)</title><rect x="1201.9" y="571" width="0.4" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text  x="1204.91" y="581.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (65 samples, 0.05%)</title><rect x="79.7" y="651" width="0.8" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="82.71" y="661.5" ></text>
</g>
<g >
<title>BufferDescriptorGetBuffer (41 samples, 0.03%)</title><rect x="1073.9" y="363" width="0.5" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="1076.93" y="373.5" ></text>
</g>
<g >
<title>ReleaseCatCache (12 samples, 0.01%)</title><rect x="1339.6" y="779" width="0.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="1342.63" y="789.5" ></text>
</g>
<g >
<title>object_aclcheck (28 samples, 0.02%)</title><rect x="609.7" y="555" width="0.3" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text  x="612.66" y="565.5" ></text>
</g>
<g >
<title>FetchPortalTargetList (70 samples, 0.06%)</title><rect x="848.1" y="715" width="0.9" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="851.15" y="725.5" ></text>
</g>
<g >
<title>OidFunctionCall1Coll (697 samples, 0.58%)</title><rect x="1275.9" y="763" width="8.0" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text  x="1278.86" y="773.5" ></text>
</g>
<g >
<title>smgr_bulk_finish (451 samples, 0.38%)</title><rect x="1277.2" y="411" width="5.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="1280.24" y="421.5" ></text>
</g>
<g >
<title>AllocSetReset (109 samples, 0.09%)</title><rect x="1145.7" y="571" width="1.3" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="1148.71" y="581.5" ></text>
</g>
<g >
<title>ExecInitExpr (445 samples, 0.37%)</title><rect x="579.8" y="587" width="5.2" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="582.83" y="597.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (98 samples, 0.08%)</title><rect x="666.9" y="523" width="1.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="669.89" y="533.5" ></text>
</g>
<g >
<title>CreateDestReceiver (259 samples, 0.22%)</title><rect x="862.3" y="715" width="3.0" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
<text  x="865.28" y="725.5" ></text>
</g>
<g >
<title>ItemPointerSetInvalid (12 samples, 0.01%)</title><rect x="1189.0" y="507" width="0.1" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text  x="1192.01" y="517.5" ></text>
</g>
<g >
<title>ConditionalCatalogCacheInitializeCache (21 samples, 0.02%)</title><rect x="594.3" y="523" width="0.3" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="597.31" y="533.5" ></text>
</g>
<g >
<title>index_getattr (181 samples, 0.15%)</title><rect x="998.1" y="411" width="2.1" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text  x="1001.07" y="421.5" ></text>
</g>
<g >
<title>MemoryContextReset (13 samples, 0.01%)</title><rect x="80.5" y="747" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="83.51" y="757.5" ></text>
</g>
<g >
<title>syscall_enter_from_user_mode (40 samples, 0.03%)</title><rect x="437.1" y="587" width="0.5" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text  x="440.09" y="597.5" ></text>
</g>
<g >
<title>initStringInfo (382 samples, 0.32%)</title><rect x="1257.3" y="731" width="4.4" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="1260.32" y="741.5" ></text>
</g>
<g >
<title>LockErrorCleanup (27 samples, 0.02%)</title><rect x="1221.3" y="619" width="0.4" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text  x="1224.34" y="629.5" ></text>
</g>
<g >
<title>IsSharedRelation (39 samples, 0.03%)</title><rect x="669.7" y="539" width="0.5" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text  x="672.73" y="549.5" ></text>
</g>
<g >
<title>FunctionCall1Coll (196 samples, 0.16%)</title><rect x="1127.0" y="587" width="2.3" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="1130.02" y="597.5" ></text>
</g>
<g >
<title>tas (81 samples, 0.07%)</title><rect x="1173.8" y="571" width="1.0" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text  x="1176.81" y="581.5" ></text>
</g>
<g >
<title>ProcessUtility (15 samples, 0.01%)</title><rect x="23.8" y="795" width="0.2" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="26.79" y="805.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberCatCacheRef (13 samples, 0.01%)</title><rect x="855.9" y="635" width="0.1" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text  x="858.87" y="645.5" ></text>
</g>
<g >
<title>IndexNext (72 samples, 0.06%)</title><rect x="11.1" y="571" width="0.8" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="14.10" y="581.5" ></text>
</g>
<g >
<title>tcp_check_space (202 samples, 0.17%)</title><rect x="373.3" y="219" width="2.3" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text  x="376.27" y="229.5" ></text>
</g>
<g >
<title>__x64_sys_pwrite64 (440 samples, 0.37%)</title><rect x="1277.4" y="251" width="5.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="1280.36" y="261.5" ></text>
</g>
<g >
<title>ExecScanReScan (100 samples, 0.08%)</title><rect x="891.8" y="539" width="1.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text  x="894.80" y="549.5" ></text>
</g>
<g >
<title>PushActiveSnapshot (86 samples, 0.07%)</title><rect x="1119.0" y="683" width="1.0" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text  x="1122.05" y="693.5" ></text>
</g>
<g >
<title>CommandCounterIncrement (23 samples, 0.02%)</title><rect x="24.5" y="763" width="0.2" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="27.48" y="773.5" ></text>
</g>
<g >
<title>OidFunctionCall1Coll (15 samples, 0.01%)</title><rect x="23.8" y="731" width="0.2" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text  x="26.79" y="741.5" ></text>
</g>
<g >
<title>ExecInitQual (15 samples, 0.01%)</title><rect x="1309.7" y="779" width="0.2" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text  x="1312.75" y="789.5" ></text>
</g>
<g >
<title>ExecScanExtended (17,027 samples, 14.28%)</title><rect x="893.8" y="555" width="197.0" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="896.79" y="565.5" >ExecScanExtended</text>
</g>
<g >
<title>Int32GetDatum (102 samples, 0.09%)</title><rect x="1321.7" y="779" width="1.2" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text  x="1324.70" y="789.5" ></text>
</g>
<g >
<title>AllocSetFree (41 samples, 0.03%)</title><rect x="1218.6" y="635" width="0.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="1221.60" y="645.5" ></text>
</g>
<g >
<title>__cond_resched (9 samples, 0.01%)</title><rect x="265.6" y="507" width="0.1" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text  x="268.60" y="517.5" ></text>
</g>
<g >
<title>BTreeTupleGetHeapTID (42 samples, 0.04%)</title><rect x="962.2" y="411" width="0.5" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="965.18" y="421.5" ></text>
</g>
<g >
<title>AllocSetFree (26 samples, 0.02%)</title><rect x="1202.9" y="523" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="1205.91" y="533.5" ></text>
</g>
<g >
<title>exec_stmt_fori (697 samples, 0.58%)</title><rect x="1275.9" y="651" width="8.0" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text  x="1278.86" y="661.5" ></text>
</g>
<g >
<title>pq_writeint32 (29 samples, 0.02%)</title><rect x="1101.6" y="571" width="0.3" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text  x="1104.59" y="581.5" ></text>
</g>
<g >
<title>ReleaseAndReadBuffer (635 samples, 0.53%)</title><rect x="1069.5" y="411" width="7.4" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text  x="1072.53" y="421.5" ></text>
</g>
<g >
<title>pgstat_count_backend_io_op (50 samples, 0.04%)</title><rect x="79.1" y="299" width="0.6" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text  x="82.08" y="309.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (9 samples, 0.01%)</title><rect x="643.4" y="475" width="0.1" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="646.43" y="485.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (47 samples, 0.04%)</title><rect x="1272.7" y="667" width="0.6" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="1275.71" y="677.5" ></text>
</g>
<g >
<title>ProcessUtility (25 samples, 0.02%)</title><rect x="25.5" y="795" width="0.3" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="28.52" y="805.5" ></text>
</g>
<g >
<title>AllocSetFreeIndex (11 samples, 0.01%)</title><rect x="720.0" y="651" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="723.00" y="661.5" ></text>
</g>
<g >
<title>StartReadBuffersImpl (1,702 samples, 1.43%)</title><rect x="920.0" y="363" width="19.7" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text  x="923.00" y="373.5" ></text>
</g>
<g >
<title>ProcessUtility (39 samples, 0.03%)</title><rect x="23.3" y="523" width="0.5" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="26.34" y="533.5" ></text>
</g>
<g >
<title>IOContextForStrategy (32 samples, 0.03%)</title><rect x="1320.2" y="779" width="0.4" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text  x="1323.23" y="789.5" ></text>
</g>
<g >
<title>ExecReScan (712 samples, 0.60%)</title><rect x="885.3" y="571" width="8.2" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text  x="888.29" y="581.5" ></text>
</g>
<g >
<title>vma_alloc_folio (286 samples, 0.24%)</title><rect x="1277.4" y="107" width="3.4" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="1280.44" y="117.5" ></text>
</g>
<g >
<title>index_getnext_slot (4,568 samples, 3.83%)</title><rect x="26.8" y="523" width="52.9" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="29.85" y="533.5" >inde..</text>
</g>
<g >
<title>pg_atomic_write_u32 (20 samples, 0.02%)</title><rect x="1007.6" y="379" width="0.2" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text  x="1010.61" y="389.5" ></text>
</g>
<g >
<title>hash_bytes (136 samples, 0.11%)</title><rect x="664.2" y="491" width="1.6" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="667.21" y="501.5" ></text>
</g>
<g >
<title>IndexInfoFindDataOffset (14 samples, 0.01%)</title><rect x="999.1" y="395" width="0.2" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text  x="1002.09" y="405.5" ></text>
</g>
<g >
<title>lappend (33 samples, 0.03%)</title><rect x="575.8" y="539" width="0.4" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text  x="578.84" y="549.5" ></text>
</g>
<g >
<title>FetchPortalTargetList (9 samples, 0.01%)</title><rect x="1313.7" y="779" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="1316.68" y="789.5" ></text>
</g>
<g >
<title>migrate_task_rq_fair (161 samples, 0.14%)</title><rect x="336.9" y="123" width="1.8" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text  x="339.87" y="133.5" ></text>
</g>
<g >
<title>RemoveRelations (23 samples, 0.02%)</title><rect x="23.1" y="427" width="0.2" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text  x="26.08" y="437.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (14 samples, 0.01%)</title><rect x="1128.8" y="283" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="1131.80" y="293.5" ></text>
</g>
<g >
<title>_bt_saveitem (24 samples, 0.02%)</title><rect x="1015.7" y="411" width="0.3" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text  x="1018.73" y="421.5" ></text>
</g>
<g >
<title>get_hash_value (260 samples, 0.22%)</title><rect x="50.2" y="283" width="3.0" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text  x="53.20" y="293.5" ></text>
</g>
<g >
<title>MemoryContextSwitchTo (13 samples, 0.01%)</title><rect x="531.9" y="667" width="0.2" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text  x="534.91" y="677.5" ></text>
</g>
<g >
<title>_bt_returnitem (18 samples, 0.02%)</title><rect x="1016.1" y="443" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="1019.11" y="453.5" ></text>
</g>
<g >
<title>PopActiveSnapshot (148 samples, 0.12%)</title><rect x="517.5" y="715" width="1.7" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text  x="520.47" y="725.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (81 samples, 0.07%)</title><rect x="1271.8" y="459" width="0.9" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="1274.77" y="469.5" ></text>
</g>
<g >
<title>populate_compact_attribute (61 samples, 0.05%)</title><rect x="626.5" y="539" width="0.7" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="629.48" y="549.5" ></text>
</g>
<g >
<title>psi_group_change (325 samples, 0.27%)</title><rect x="183.1" y="475" width="3.8" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text  x="186.14" y="485.5" ></text>
</g>
<g >
<title>message_level_is_interesting (35 samples, 0.03%)</title><rect x="1253.6" y="651" width="0.4" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text  x="1256.63" y="661.5" ></text>
</g>
<g >
<title>kmalloc_slab (14 samples, 0.01%)</title><rect x="429.2" y="443" width="0.1" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text  x="432.18" y="453.5" ></text>
</g>
<g >
<title>SearchCatCache1 (147 samples, 0.12%)</title><rect x="854.4" y="667" width="1.7" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="857.39" y="677.5" ></text>
</g>
<g >
<title>OidFunctionCall1Coll (23 samples, 0.02%)</title><rect x="24.0" y="747" width="0.3" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text  x="27.01" y="757.5" ></text>
</g>
<g >
<title>hash_bytes (158 samples, 0.13%)</title><rect x="1167.0" y="539" width="1.8" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="1169.98" y="549.5" ></text>
</g>
<g >
<title>exec_stmt_block (15 samples, 0.01%)</title><rect x="23.8" y="651" width="0.2" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="26.79" y="661.5" ></text>
</g>
<g >
<title>lappend (10 samples, 0.01%)</title><rect x="1365.5" y="779" width="0.1" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text  x="1368.48" y="789.5" ></text>
</g>
<g >
<title>tcp_rack_update_reo_wnd (14 samples, 0.01%)</title><rect x="370.8" y="203" width="0.2" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="373.81" y="213.5" ></text>
</g>
<g >
<title>LWLockDisownInternal (10 samples, 0.01%)</title><rect x="22.1" y="347" width="0.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="25.10" y="357.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (39 samples, 0.03%)</title><rect x="23.3" y="763" width="0.5" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="26.34" y="773.5" ></text>
</g>
<g >
<title>RelationRebuildRelation (18 samples, 0.02%)</title><rect x="25.1" y="603" width="0.2" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text  x="28.14" y="613.5" ></text>
</g>
<g >
<title>index_getattr (49 samples, 0.04%)</title><rect x="1068.4" y="395" width="0.6" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text  x="1071.42" y="405.5" ></text>
</g>
<g >
<title>__libc_recv (21 samples, 0.02%)</title><rect x="1287.8" y="779" width="0.3" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text  x="1290.84" y="789.5" ></text>
</g>
<g >
<title>ExecEndPlan (1,209 samples, 1.01%)</title><rect x="1175.3" y="571" width="14.0" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text  x="1178.26" y="581.5" ></text>
</g>
<g >
<title>PortalCleanup (4,936 samples, 4.14%)</title><rect x="1147.3" y="635" width="57.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="1150.29" y="645.5" >Port..</text>
</g>
<g >
<title>ResourceOwnerForgetCatCacheRef (27 samples, 0.02%)</title><rect x="853.9" y="635" width="0.3" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text  x="856.92" y="645.5" ></text>
</g>
<g >
<title>PGSemaphoreLock (10 samples, 0.01%)</title><rect x="492.7" y="603" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text  x="495.66" y="613.5" ></text>
</g>
<g >
<title>DatumGetChar (12 samples, 0.01%)</title><rect x="1305.6" y="779" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="1308.61" y="789.5" ></text>
</g>
<g >
<title>pgstat_clear_snapshot (104 samples, 0.09%)</title><rect x="1139.7" y="651" width="1.2" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="1142.71" y="661.5" ></text>
</g>
<g >
<title>exec_stmt_fori (196 samples, 0.16%)</title><rect x="1127.0" y="491" width="2.3" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text  x="1130.02" y="501.5" ></text>
</g>
<g >
<title>ExecAllocTableSlot (465 samples, 0.39%)</title><rect x="629.4" y="587" width="5.4" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text  x="632.39" y="597.5" ></text>
</g>
<g >
<title>smgrzeroextend (25 samples, 0.02%)</title><rect x="25.5" y="619" width="0.3" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="28.52" y="629.5" ></text>
</g>
<g >
<title>hash_search (77 samples, 0.06%)</title><rect x="724.3" y="587" width="0.9" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="727.30" y="597.5" ></text>
</g>
<g >
<title>exec_stmt_execsql (11 samples, 0.01%)</title><rect x="20.7" y="667" width="0.1" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="23.66" y="677.5" ></text>
</g>
<g >
<title>hash_initial_lookup (17 samples, 0.01%)</title><rect x="868.4" y="667" width="0.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="871.41" y="677.5" ></text>
</g>
<g >
<title>stack_is_too_deep (9 samples, 0.01%)</title><rect x="566.8" y="475" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="569.85" y="485.5" ></text>
</g>
<g >
<title>IndexTupleHasNulls (56 samples, 0.05%)</title><rect x="1056.2" y="379" width="0.6" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text  x="1059.20" y="389.5" ></text>
</g>
<g >
<title>ExecuteDoStmt (15 samples, 0.01%)</title><rect x="19.2" y="811" width="0.1" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text  x="22.15" y="821.5" ></text>
</g>
<g >
<title>ExprEvalPushStep (49 samples, 0.04%)</title><rect x="570.0" y="539" width="0.6" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="573.03" y="549.5" ></text>
</g>
<g >
<title>do_futex (13 samples, 0.01%)</title><rect x="662.7" y="427" width="0.1" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="665.70" y="437.5" ></text>
</g>
<g >
<title>pgss_ExecutorRun (85 samples, 0.07%)</title><rect x="1387.1" y="699" width="1.0" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="1390.13" y="709.5" ></text>
</g>
<g >
<title>calc_bucket (15 samples, 0.01%)</title><rect x="464.5" y="651" width="0.2" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text  x="467.50" y="661.5" ></text>
</g>
<g >
<title>ResourceOwnerRemember (15 samples, 0.01%)</title><rect x="670.6" y="523" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="673.60" y="533.5" ></text>
</g>
<g >
<title>palloc0 (326 samples, 0.27%)</title><rect x="536.9" y="619" width="3.7" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="539.88" y="629.5" ></text>
</g>
<g >
<title>SocketBackend (11 samples, 0.01%)</title><rect x="1346.4" y="779" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="1349.35" y="789.5" ></text>
</g>
<g >
<title>get_timeout_active (91 samples, 0.08%)</title><rect x="1359.3" y="779" width="1.1" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" />
<text  x="1362.35" y="789.5" ></text>
</g>
<g >
<title>GetBufferDescriptor (10 samples, 0.01%)</title><rect x="1315.3" y="779" width="0.2" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text  x="1318.34" y="789.5" ></text>
</g>
<g >
<title>PageGetLSN (17 samples, 0.01%)</title><rect x="1007.3" y="395" width="0.2" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text  x="1010.31" y="405.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (81 samples, 0.07%)</title><rect x="1271.8" y="731" width="0.9" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="1274.77" y="741.5" ></text>
</g>
<g >
<title>_bt_first (4,568 samples, 3.83%)</title><rect x="26.8" y="475" width="52.9" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="29.85" y="485.5" >_bt_..</text>
</g>
<g >
<title>ExecComputeSlotInfo (62 samples, 0.05%)</title><rect x="562.8" y="507" width="0.7" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="565.79" y="517.5" ></text>
</g>
<g >
<title>__alloc_pages (11 samples, 0.01%)</title><rect x="25.5" y="299" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text  x="28.53" y="309.5" ></text>
</g>
<g >
<title>standard_ExecutorFinish@plt (14 samples, 0.01%)</title><rect x="1201.2" y="587" width="0.2" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text  x="1204.23" y="597.5" ></text>
</g>
<g >
<title>RelationCacheInvalidateEntry (12 samples, 0.01%)</title><rect x="18.3" y="683" width="0.1" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="21.26" y="693.5" ></text>
</g>
<g >
<title>index_getnext_tid (327 samples, 0.27%)</title><rect x="880.9" y="507" width="3.8" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="883.87" y="517.5" ></text>
</g>
<g >
<title>ReadBuffer (43 samples, 0.04%)</title><rect x="1071.8" y="395" width="0.5" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="1074.80" y="405.5" ></text>
</g>
<g >
<title>LocalExecuteInvalidationMessage (22 samples, 0.02%)</title><rect x="1277.0" y="395" width="0.2" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="1279.99" y="405.5" ></text>
</g>
<g >
<title>pollwake (1,312 samples, 1.10%)</title><rect x="328.4" y="171" width="15.2" height="15.0" fill="rgb(238,154,37)" rx="2" ry="2" />
<text  x="331.42" y="181.5" ></text>
</g>
<g >
<title>AllocSetFreeIndex (16 samples, 0.01%)</title><rect x="598.4" y="555" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="601.37" y="565.5" ></text>
</g>
<g >
<title>palloc (62 samples, 0.05%)</title><rect x="602.2" y="539" width="0.8" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="605.25" y="549.5" ></text>
</g>
<g >
<title>recomputeNamespacePath (34 samples, 0.03%)</title><rect x="1377.2" y="779" width="0.4" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text  x="1380.17" y="789.5" ></text>
</g>
<g >
<title>decimalLength64 (39 samples, 0.03%)</title><rect x="866.5" y="667" width="0.4" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="869.48" y="677.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (9 samples, 0.01%)</title><rect x="590.9" y="507" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="593.94" y="517.5" ></text>
</g>
<g >
<title>set_ps_display_with_len (80 samples, 0.07%)</title><rect x="1267.1" y="715" width="0.9" height="15.0" fill="rgb(222,79,18)" rx="2" ry="2" />
<text  x="1270.11" y="725.5" ></text>
</g>
<g >
<title>ip_skb_dst_mtu (65 samples, 0.05%)</title><rect x="283.0" y="427" width="0.8" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text  x="286.05" y="437.5" ></text>
</g>
<g >
<title>btinsert (11 samples, 0.01%)</title><rect x="1276.8" y="411" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text  x="1279.77" y="421.5" ></text>
</g>
<g >
<title>mdunlink (22 samples, 0.02%)</title><rect x="1128.7" y="331" width="0.3" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text  x="1131.71" y="341.5" ></text>
</g>
<g >
<title>FunctionCall1Coll (46 samples, 0.04%)</title><rect x="1389.1" y="763" width="0.5" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="1392.10" y="773.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberBuffer (14 samples, 0.01%)</title><rect x="935.5" y="299" width="0.1" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="938.46" y="309.5" ></text>
</g>
<g >
<title>lcons (147 samples, 0.12%)</title><rect x="553.9" y="555" width="1.7" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="556.91" y="565.5" ></text>
</g>
<g >
<title>ExecTypeFromTLInternal (948 samples, 0.79%)</title><rect x="618.0" y="571" width="11.0" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text  x="621.00" y="581.5" ></text>
</g>
<g >
<title>plpgsql_inline_handler (11 samples, 0.01%)</title><rect x="20.7" y="779" width="0.1" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="23.66" y="789.5" ></text>
</g>
<g >
<title>hash_bytes (11 samples, 0.01%)</title><rect x="1273.7" y="811" width="0.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="1276.74" y="821.5" ></text>
</g>
<g >
<title>GetCommandTagNameAndLen (18 samples, 0.02%)</title><rect x="865.9" y="683" width="0.2" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text  x="868.91" y="693.5" ></text>
</g>
<g >
<title>_bt_readpage (36 samples, 0.03%)</title><rect x="1387.1" y="459" width="0.4" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="1390.13" y="469.5" ></text>
</g>
<g >
<title>MemoryChunkSetHdrMask (20 samples, 0.02%)</title><rect x="719.8" y="635" width="0.2" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="722.77" y="645.5" ></text>
</g>
<g >
<title>exec_stmts (15 samples, 0.01%)</title><rect x="19.2" y="667" width="0.1" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="22.15" y="677.5" ></text>
</g>
<g >
<title>x64_sys_call (20 samples, 0.02%)</title><rect x="238.8" y="587" width="0.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text  x="241.78" y="597.5" ></text>
</g>
<g >
<title>internal_putbytes (47 samples, 0.04%)</title><rect x="857.0" y="667" width="0.6" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="860.05" y="677.5" ></text>
</g>
<g >
<title>__sk_mem_reduce_allocated (135 samples, 0.11%)</title><rect x="211.8" y="507" width="1.6" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text  x="214.82" y="517.5" ></text>
</g>
<g >
<title>performMultipleDeletions (33 samples, 0.03%)</title><rect x="25.1" y="763" width="0.4" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="28.14" y="773.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (662 samples, 0.56%)</title><rect x="58.5" y="283" width="7.6" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="61.47" y="293.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (192 samples, 0.16%)</title><rect x="929.4" y="283" width="2.3" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="932.44" y="293.5" ></text>
</g>
<g >
<title>_raw_spin_lock (19 samples, 0.02%)</title><rect x="180.6" y="411" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="183.62" y="421.5" ></text>
</g>
<g >
<title>BufferGetPage (13 samples, 0.01%)</title><rect x="951.5" y="427" width="0.2" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="954.54" y="437.5" ></text>
</g>
<g >
<title>palloc (103 samples, 0.09%)</title><rect x="907.8" y="443" width="1.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="910.77" y="453.5" ></text>
</g>
<g >
<title>AllocSetFree (34 samples, 0.03%)</title><rect x="1194.1" y="523" width="0.4" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="1197.11" y="533.5" ></text>
</g>
<g >
<title>secure_raw_write (37 samples, 0.03%)</title><rect x="1388.4" y="811" width="0.5" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="1391.44" y="821.5" ></text>
</g>
<g >
<title>pg_utf8_verifystr (61 samples, 0.05%)</title><rect x="706.5" y="667" width="0.7" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text  x="709.46" y="677.5" ></text>
</g>
<g >
<title>ItemPointerGetBlockNumberNoCheck (17 samples, 0.01%)</title><rect x="916.9" y="427" width="0.2" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text  x="919.87" y="437.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (304 samples, 0.25%)</title><rect x="928.1" y="299" width="3.6" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="931.14" y="309.5" ></text>
</g>
<g >
<title>ExecProcNode (4,568 samples, 3.83%)</title><rect x="26.8" y="635" width="52.9" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="29.85" y="645.5" >Exec..</text>
</g>
<g >
<title>ItemPointerGetOffsetNumberNoCheck (12 samples, 0.01%)</title><rect x="1324.1" y="779" width="0.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text  x="1327.08" y="789.5" ></text>
</g>
<g >
<title>PortalDefineQuery (54 samples, 0.05%)</title><rect x="519.2" y="715" width="0.6" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text  x="522.18" y="725.5" ></text>
</g>
<g >
<title>cpus_share_cache (11 samples, 0.01%)</title><rect x="336.6" y="123" width="0.1" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text  x="339.57" y="133.5" ></text>
</g>
<g >
<title>LocalExecuteInvalidationMessage (18 samples, 0.02%)</title><rect x="25.1" y="651" width="0.2" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="28.14" y="661.5" ></text>
</g>
<g >
<title>IndexNext (11 samples, 0.01%)</title><rect x="1321.0" y="779" width="0.1" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="1323.95" y="789.5" ></text>
</g>
<g >
<title>_bt_first (469 samples, 0.39%)</title><rect x="12.0" y="475" width="5.4" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="14.99" y="485.5" ></text>
</g>
<g >
<title>systable_getnext (21 samples, 0.02%)</title><rect x="21.1" y="379" width="0.2" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="24.06" y="389.5" ></text>
</g>
<g >
<title>LockBuffer (246 samples, 0.21%)</title><rect x="1083.1" y="395" width="2.8" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text  x="1086.07" y="405.5" ></text>
</g>
<g >
<title>__GI_unlink (18 samples, 0.02%)</title><rect x="1128.8" y="299" width="0.2" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text  x="1131.75" y="309.5" ></text>
</g>
<g >
<title>AtEOXact_PgStat (127 samples, 0.11%)</title><rect x="1139.4" y="667" width="1.5" height="15.0" fill="rgb(246,193,46)" rx="2" ry="2" />
<text  x="1142.45" y="677.5" ></text>
</g>
<g >
<title>ResourceOwnerRemember (22 samples, 0.02%)</title><rect x="916.5" y="379" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="919.47" y="389.5" ></text>
</g>
<g >
<title>tas (25 samples, 0.02%)</title><rect x="657.2" y="507" width="0.2" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text  x="660.16" y="517.5" ></text>
</g>
<g >
<title>ShutdownExprContext (14 samples, 0.01%)</title><rect x="1346.2" y="779" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="1349.19" y="789.5" ></text>
</g>
<g >
<title>FunctionCall2Coll (36 samples, 0.03%)</title><rect x="1387.1" y="411" width="0.4" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="1390.13" y="421.5" ></text>
</g>
<g >
<title>hash_search (205 samples, 0.17%)</title><rect x="849.1" y="699" width="2.4" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text  x="852.14" y="709.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (19 samples, 0.02%)</title><rect x="1233.0" y="539" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="1235.96" y="549.5" ></text>
</g>
<g >
<title>__memcpy_evex_unaligned_erms (29 samples, 0.02%)</title><rect x="713.2" y="683" width="0.4" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="716.24" y="693.5" ></text>
</g>
<g >
<title>ExecDropStmt (54 samples, 0.05%)</title><rect x="1284.0" y="763" width="0.6" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="1287.01" y="773.5" ></text>
</g>
<g >
<title>PageGetSpecialSize (14 samples, 0.01%)</title><rect x="1077.5" y="395" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="1080.46" y="405.5" ></text>
</g>
<g >
<title>PopActiveSnapshot (106 samples, 0.09%)</title><rect x="1117.8" y="683" width="1.2" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text  x="1120.82" y="693.5" ></text>
</g>
<g >
<title>LWLockDisownInternal (9 samples, 0.01%)</title><rect x="1242.3" y="571" width="0.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="1245.33" y="581.5" ></text>
</g>
<g >
<title>ItemPointerGetBlockNumber (24 samples, 0.02%)</title><rect x="946.5" y="427" width="0.3" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text  x="949.53" y="437.5" ></text>
</g>
<g >
<title>FunctionCall2Coll (10 samples, 0.01%)</title><rect x="1025.7" y="411" width="0.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="1028.68" y="421.5" ></text>
</g>
<g >
<title>plpgsql_inline_handler (697 samples, 0.58%)</title><rect x="1275.9" y="731" width="8.0" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="1278.86" y="741.5" ></text>
</g>
<g >
<title>exec_stmt_block (697 samples, 0.58%)</title><rect x="1275.9" y="683" width="8.0" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="1278.86" y="693.5" ></text>
</g>
<g >
<title>hash_bytes (71 samples, 0.06%)</title><rect x="465.2" y="667" width="0.8" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="468.18" y="677.5" ></text>
</g>
<g >
<title>ExecInterpExprStillValid (55 samples, 0.05%)</title><rect x="1310.7" y="779" width="0.7" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="1313.73" y="789.5" ></text>
</g>
<g >
<title>vma_alloc_folio (11 samples, 0.01%)</title><rect x="1272.8" y="171" width="0.1" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="1275.81" y="181.5" ></text>
</g>
<g >
<title>__rcu_read_lock (15 samples, 0.01%)</title><rect x="381.9" y="315" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="384.92" y="325.5" ></text>
</g>
<g >
<title>_SPI_execute_plan (11 samples, 0.01%)</title><rect x="19.4" y="651" width="0.1" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="22.38" y="661.5" ></text>
</g>
<g >
<title>DatumGetInt32 (13 samples, 0.01%)</title><rect x="1046.3" y="379" width="0.1" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text  x="1049.29" y="389.5" ></text>
</g>
<g >
<title>MemoryContextSwitchTo (14 samples, 0.01%)</title><rect x="553.7" y="555" width="0.2" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text  x="556.75" y="565.5" ></text>
</g>
<g >
<title>ExecConditionalAssignProjectionInfo (1,437 samples, 1.20%)</title><rect x="560.1" y="587" width="16.6" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text  x="563.10" y="597.5" ></text>
</g>
<g >
<title>BackendMain (89 samples, 0.07%)</title><rect x="1387.1" y="795" width="1.1" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text  x="1390.13" y="805.5" ></text>
</g>
<g >
<title>MemoryContextDelete (95 samples, 0.08%)</title><rect x="1109.5" y="619" width="1.1" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text  x="1112.48" y="629.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (39 samples, 0.03%)</title><rect x="23.3" y="747" width="0.5" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="26.34" y="757.5" ></text>
</g>
<g >
<title>newNode (187 samples, 0.16%)</title><rect x="570.8" y="539" width="2.2" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="573.79" y="549.5" ></text>
</g>
<g >
<title>exec_stmt_block (81 samples, 0.07%)</title><rect x="1271.8" y="603" width="0.9" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="1274.77" y="613.5" ></text>
</g>
<g >
<title>MemoryContextStrdup (16 samples, 0.01%)</title><rect x="1328.1" y="779" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="1331.13" y="789.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (48 samples, 0.04%)</title><rect x="66.8" y="251" width="0.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="69.79" y="261.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode_prepare (18 samples, 0.02%)</title><rect x="438.9" y="571" width="0.2" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text  x="441.92" y="581.5" ></text>
</g>
<g >
<title>AtEOXact_TypeCache (34 samples, 0.03%)</title><rect x="1299.6" y="779" width="0.4" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text  x="1302.58" y="789.5" ></text>
</g>
<g >
<title>CleanQuerytext (68 samples, 0.06%)</title><rect x="1153.9" y="571" width="0.8" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text  x="1156.95" y="581.5" ></text>
</g>
<g >
<title>list_nth_cell (29 samples, 0.02%)</title><rect x="1197.5" y="555" width="0.4" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text  x="1200.54" y="565.5" ></text>
</g>
<g >
<title>FreeExecutorState (751 samples, 0.63%)</title><rect x="1189.3" y="571" width="8.7" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="1192.27" y="581.5" ></text>
</g>
<g >
<title>StartReadBuffersImpl (34 samples, 0.03%)</title><rect x="11.5" y="379" width="0.4" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text  x="14.54" y="389.5" ></text>
</g>
<g >
<title>ExecReadyInterpretedExpr (26 samples, 0.02%)</title><rect x="569.7" y="539" width="0.3" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text  x="572.73" y="549.5" ></text>
</g>
<g >
<title>plpgsql_exec_function (15 samples, 0.01%)</title><rect x="19.2" y="747" width="0.1" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text  x="22.15" y="757.5" ></text>
</g>
<g >
<title>pq_copymsgbytes (114 samples, 0.10%)</title><rect x="712.3" y="699" width="1.3" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text  x="715.31" y="709.5" ></text>
</g>
<g >
<title>slot_deform_heap_tuple_internal (187 samples, 0.16%)</title><rect x="899.6" y="363" width="2.1" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text  x="902.59" y="373.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (55 samples, 0.05%)</title><rect x="663.4" y="475" width="0.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="666.36" y="485.5" ></text>
</g>
<g >
<title>release_sock (61 samples, 0.05%)</title><rect x="204.2" y="523" width="0.7" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text  x="207.21" y="533.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (211 samples, 0.18%)</title><rect x="20.9" y="747" width="2.4" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="23.90" y="757.5" ></text>
</g>
<g >
<title>AtEOXact_ApplyLauncher (26 samples, 0.02%)</title><rect x="1294.1" y="779" width="0.3" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="1297.09" y="789.5" ></text>
</g>
<g >
<title>ip_output (102 samples, 0.09%)</title><rect x="399.0" y="443" width="1.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text  x="402.02" y="453.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (9 samples, 0.01%)</title><rect x="1385.0" y="779" width="0.1" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text  x="1388.02" y="789.5" ></text>
</g>
<g >
<title>tcp_v4_rcv (6,239 samples, 5.23%)</title><rect x="307.0" y="267" width="72.2" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text  x="310.05" y="277.5" >tcp_v4..</text>
</g>
<g >
<title>__mod_timer (92 samples, 0.08%)</title><rect x="409.6" y="443" width="1.1" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="412.63" y="453.5" ></text>
</g>
<g >
<title>native_sched_clock (15 samples, 0.01%)</title><rect x="181.7" y="411" width="0.2" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text  x="184.74" y="421.5" ></text>
</g>
<g >
<title>cpuacct_charge (146 samples, 0.12%)</title><rect x="144.8" y="443" width="1.7" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="147.77" y="453.5" ></text>
</g>
<g >
<title>tag_hash (10 samples, 0.01%)</title><rect x="1383.6" y="779" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="1386.64" y="789.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (24 samples, 0.02%)</title><rect x="1356.5" y="779" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="1359.55" y="789.5" ></text>
</g>
<g >
<title>get_op_opfamily_properties (472 samples, 0.40%)</title><rect x="586.5" y="587" width="5.5" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text  x="589.50" y="597.5" ></text>
</g>
<g >
<title>AtEOXact_LargeObject (26 samples, 0.02%)</title><rect x="1296.3" y="779" width="0.3" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text  x="1299.27" y="789.5" ></text>
</g>
<g >
<title>hash_bytes (105 samples, 0.09%)</title><rect x="668.0" y="507" width="1.3" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="671.04" y="517.5" ></text>
</g>
<g >
<title>PopActiveSnapshot (106 samples, 0.09%)</title><rect x="691.4" y="699" width="1.2" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text  x="694.37" y="709.5" ></text>
</g>
<g >
<title>__futex_abstimed_wait_common (14 samples, 0.01%)</title><rect x="1232.1" y="555" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="1235.14" y="565.5" ></text>
</g>
<g >
<title>index_build (17 samples, 0.01%)</title><rect x="24.8" y="763" width="0.2" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text  x="27.84" y="773.5" ></text>
</g>
<g >
<title>pq_sendint8 (41 samples, 0.03%)</title><rect x="250.8" y="699" width="0.4" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text  x="253.76" y="709.5" ></text>
</g>
<g >
<title>OidFunctionCall1Coll (46 samples, 0.04%)</title><rect x="1389.1" y="779" width="0.5" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text  x="1392.10" y="789.5" ></text>
</g>
<g >
<title>memset@plt (25 samples, 0.02%)</title><rect x="1140.5" y="635" width="0.3" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="1143.52" y="645.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (27 samples, 0.02%)</title><rect x="1284.9" y="635" width="0.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="1287.87" y="645.5" ></text>
</g>
<g >
<title>IndexScanEnd (103 samples, 0.09%)</title><rect x="1178.8" y="507" width="1.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="1181.85" y="517.5" ></text>
</g>
<g >
<title>DefineIndex (13 samples, 0.01%)</title><rect x="19.2" y="539" width="0.1" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="22.15" y="549.5" ></text>
</g>
<g >
<title>GetNewRelFileNumber (10 samples, 0.01%)</title><rect x="1272.0" y="395" width="0.1" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="1274.98" y="405.5" ></text>
</g>
<g >
<title>palloc0 (14 samples, 0.01%)</title><rect x="1368.9" y="779" width="0.2" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="1371.93" y="789.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (39 samples, 0.03%)</title><rect x="23.3" y="507" width="0.5" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="26.34" y="517.5" ></text>
</g>
<g >
<title>deleteObjectsInList (34 samples, 0.03%)</title><rect x="1272.3" y="379" width="0.4" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="1275.27" y="389.5" ></text>
</g>
<g >
<title>exec_stmt_block (196 samples, 0.16%)</title><rect x="1127.0" y="523" width="2.3" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="1130.02" y="533.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (39 samples, 0.03%)</title><rect x="1198.5" y="523" width="0.4" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text  x="1201.47" y="533.5" ></text>
</g>
<g >
<title>HeapTupleHasNulls (23 samples, 0.02%)</title><rect x="1319.6" y="779" width="0.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="1322.56" y="789.5" ></text>
</g>
<g >
<title>exec_stmt_block (27 samples, 0.02%)</title><rect x="1284.9" y="779" width="0.3" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="1287.87" y="789.5" ></text>
</g>
<g >
<title>hash_initial_lookup (38 samples, 0.03%)</title><rect x="464.2" y="667" width="0.5" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="467.23" y="677.5" ></text>
</g>
<g >
<title>__vdso_gettimeofday (142 samples, 0.12%)</title><rect x="440.8" y="699" width="1.7" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="443.84" y="709.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (17 samples, 0.01%)</title><rect x="1008.7" y="347" width="0.2" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text  x="1011.74" y="357.5" ></text>
</g>
<g >
<title>pg_checksum_page (9 samples, 0.01%)</title><rect x="1277.2" y="363" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="1280.24" y="373.5" ></text>
</g>
<g >
<title>SearchCatCache1 (298 samples, 0.25%)</title><rect x="700.1" y="683" width="3.5" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="703.13" y="693.5" ></text>
</g>
<g >
<title>PinBufferForBlock (1,777 samples, 1.49%)</title><rect x="28.4" y="331" width="20.6" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="31.45" y="341.5" ></text>
</g>
<g >
<title>index_build (12 samples, 0.01%)</title><rect x="22.7" y="411" width="0.1" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text  x="25.69" y="421.5" ></text>
</g>
<g >
<title>ExecIndexEvalRuntimeKeys (483 samples, 0.41%)</title><rect x="886.2" y="539" width="5.6" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text  x="889.21" y="549.5" ></text>
</g>
<g >
<title>LocalExecuteInvalidationMessage (22 samples, 0.02%)</title><rect x="1283.3" y="363" width="0.2" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="1286.27" y="373.5" ></text>
</g>
<g >
<title>RelationRebuildRelation (44 samples, 0.04%)</title><rect x="1276.0" y="363" width="0.5" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text  x="1278.99" y="373.5" ></text>
</g>
<g >
<title>ExecScanFetch (16,300 samples, 13.67%)</title><rect x="902.1" y="539" width="188.6" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text  x="905.08" y="549.5" >ExecScanFetch</text>
</g>
<g >
<title>AssertCouldGetRelation (31 samples, 0.03%)</title><rect x="1293.7" y="779" width="0.3" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text  x="1296.68" y="789.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (159 samples, 0.13%)</title><rect x="511.3" y="667" width="1.8" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="514.27" y="677.5" ></text>
</g>
<g >
<title>GETSTRUCT (9 samples, 0.01%)</title><rect x="1104.4" y="571" width="0.1" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="1107.37" y="581.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (20 samples, 0.02%)</title><rect x="869.8" y="651" width="0.3" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="872.83" y="661.5" ></text>
</g>
<g >
<title>ReleaseCachedPlan (16 samples, 0.01%)</title><rect x="1339.4" y="779" width="0.2" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text  x="1342.44" y="789.5" ></text>
</g>
<g >
<title>BlockIdSet (17 samples, 0.01%)</title><rect x="892.7" y="475" width="0.2" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="895.75" y="485.5" ></text>
</g>
<g >
<title>TransactionStartedDuringRecovery (10 samples, 0.01%)</title><rect x="907.7" y="443" width="0.1" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text  x="910.65" y="453.5" ></text>
</g>
<g >
<title>__memcpy_evex_unaligned_erms (12 samples, 0.01%)</title><rect x="696.5" y="667" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="699.53" y="677.5" ></text>
</g>
<g >
<title>BufTableHashCode (144 samples, 0.12%)</title><rect x="920.8" y="315" width="1.7" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text  x="923.83" y="325.5" ></text>
</g>
<g >
<title>enable_statement_timeout (10 samples, 0.01%)</title><rect x="1126.9" y="699" width="0.1" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="1129.90" y="709.5" ></text>
</g>
<g >
<title>LWLockAcquire (318 samples, 0.27%)</title><rect x="928.0" y="315" width="3.7" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="931.01" y="325.5" ></text>
</g>
<g >
<title>__strlen_evex (14 samples, 0.01%)</title><rect x="869.0" y="667" width="0.2" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="872.02" y="677.5" ></text>
</g>
<g >
<title>ResourceOwnerRemember (13 samples, 0.01%)</title><rect x="935.5" y="283" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="938.47" y="293.5" ></text>
</g>
<g >
<title>AllocSetFreeIndex (11 samples, 0.01%)</title><rect x="677.7" y="555" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="680.66" y="565.5" ></text>
</g>
<g >
<title>ItemPointerSet (9 samples, 0.01%)</title><rect x="946.9" y="427" width="0.1" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text  x="949.93" y="437.5" ></text>
</g>
<g >
<title>heap_hot_search_buffer (675 samples, 0.57%)</title><rect x="939.7" y="443" width="7.8" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text  x="942.72" y="453.5" ></text>
</g>
<g >
<title>index_getnext_slot (10 samples, 0.01%)</title><rect x="1284.3" y="667" width="0.1" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text  x="1287.29" y="677.5" ></text>
</g>
<g >
<title>AtCCI_LocalCache (23 samples, 0.02%)</title><rect x="24.5" y="747" width="0.2" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text  x="27.48" y="757.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (11 samples, 0.01%)</title><rect x="475.7" y="571" width="0.1" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="478.67" y="581.5" ></text>
</g>
<g >
<title>exec_stmt_execsql (81 samples, 0.07%)</title><rect x="1271.8" y="539" width="0.9" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="1274.77" y="549.5" ></text>
</g>
<g >
<title>SPI_execute_plan_with_paramlist (65 samples, 0.05%)</title><rect x="79.7" y="459" width="0.8" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="82.71" y="469.5" ></text>
</g>
<g >
<title>GetUserId (71 samples, 0.06%)</title><rect x="1318.6" y="779" width="0.9" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text  x="1321.64" y="789.5" ></text>
</g>
<g >
<title>__strlen_evex (29 samples, 0.02%)</title><rect x="1266.8" y="715" width="0.3" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="1269.77" y="725.5" ></text>
</g>
<g >
<title>murmurhash32 (39 samples, 0.03%)</title><rect x="590.5" y="491" width="0.4" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="593.49" y="501.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (200 samples, 0.17%)</title><rect x="1083.6" y="363" width="2.3" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="1086.57" y="373.5" ></text>
</g>
<g >
<title>deleteOneObject (34 samples, 0.03%)</title><rect x="1272.3" y="363" width="0.4" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text  x="1275.27" y="373.5" ></text>
</g>
<g >
<title>ResourceOwnerCreate (18 samples, 0.02%)</title><rect x="1340.7" y="779" width="0.2" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text  x="1343.72" y="789.5" ></text>
</g>
<g >
<title>palloc (32 samples, 0.03%)</title><rect x="1368.6" y="779" width="0.3" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="1371.56" y="789.5" ></text>
</g>
<g >
<title>PinBuffer (560 samples, 0.47%)</title><rect x="932.1" y="315" width="6.5" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text  x="935.13" y="325.5" ></text>
</g>
<g >
<title>ReleasePredicateLocks (16 samples, 0.01%)</title><rect x="1339.8" y="779" width="0.2" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text  x="1342.77" y="789.5" ></text>
</g>
<g >
<title>expression_tree_walker_impl (13 samples, 0.01%)</title><rect x="580.5" y="539" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="583.51" y="549.5" ></text>
</g>
<g >
<title>SearchSysCache1 (199 samples, 0.17%)</title><rect x="1105.1" y="571" width="2.3" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="1108.09" y="581.5" ></text>
</g>
<g >
<title>pg_pwritev_with_retry (25 samples, 0.02%)</title><rect x="25.5" y="555" width="0.3" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="28.52" y="565.5" ></text>
</g>
<g >
<title>ProcessUtility (15 samples, 0.01%)</title><rect x="19.2" y="603" width="0.1" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="22.15" y="613.5" ></text>
</g>
<g >
<title>hash_initial_lookup (30 samples, 0.03%)</title><rect x="671.7" y="523" width="0.3" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="674.70" y="533.5" ></text>
</g>
<g >
<title>FastPathGrantRelationLock (242 samples, 0.20%)</title><rect x="488.5" y="619" width="2.8" height="15.0" fill="rgb(245,188,44)" rx="2" ry="2" />
<text  x="491.48" y="629.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (143 samples, 0.12%)</title><rect x="593.2" y="539" width="1.6" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="596.19" y="549.5" ></text>
</g>
<g >
<title>LWLockAcquire (126 samples, 0.11%)</title><rect x="1230.9" y="603" width="1.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="1233.92" y="613.5" ></text>
</g>
<g >
<title>newNode (44 samples, 0.04%)</title><rect x="1367.3" y="779" width="0.5" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="1370.26" y="789.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (27 samples, 0.02%)</title><rect x="1272.8" y="347" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="1275.81" y="357.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (255 samples, 0.21%)</title><rect x="935.6" y="299" width="3.0" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="938.62" y="309.5" ></text>
</g>
<g >
<title>PushActiveSnapshotWithLevel (69 samples, 0.06%)</title><rect x="1119.2" y="667" width="0.8" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text  x="1122.24" y="677.5" ></text>
</g>
<g >
<title>DatumGetInt32 (20 samples, 0.02%)</title><rect x="979.0" y="411" width="0.2" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text  x="981.98" y="421.5" ></text>
</g>
<g >
<title>CreatePortal (1,334 samples, 1.12%)</title><rect x="447.4" y="715" width="15.4" height="15.0" fill="rgb(219,66,16)" rx="2" ry="2" />
<text  x="450.37" y="725.5" ></text>
</g>
<g >
<title>plpgsql_inline_handler (39 samples, 0.03%)</title><rect x="23.3" y="683" width="0.5" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="26.34" y="693.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (32 samples, 0.03%)</title><rect x="44.6" y="283" width="0.4" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="47.63" y="293.5" ></text>
</g>
<g >
<title>AllocSetFree (26 samples, 0.02%)</title><rect x="249.3" y="683" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="252.27" y="693.5" ></text>
</g>
<g >
<title>tcp_sendmsg_locked (14,453 samples, 12.12%)</title><rect x="268.2" y="523" width="167.2" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text  x="271.18" y="533.5" >tcp_sendmsg_locked</text>
</g>
<g >
<title>uint32_hash (54 samples, 0.05%)</title><rect x="672.0" y="539" width="0.7" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="675.05" y="549.5" ></text>
</g>
<g >
<title>MemoryContextDeleteOnly (129 samples, 0.11%)</title><rect x="1190.7" y="523" width="1.5" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="1193.66" y="533.5" ></text>
</g>
<g >
<title>LWLockAcquire (63 samples, 0.05%)</title><rect x="917.5" y="427" width="0.7" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="920.50" y="437.5" ></text>
</g>
<g >
<title>PushActiveSnapshotWithLevel (151 samples, 0.13%)</title><rect x="692.7" y="683" width="1.8" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text  x="695.73" y="693.5" ></text>
</g>
<g >
<title>list_nth_cell (14 samples, 0.01%)</title><rect x="636.1" y="539" width="0.2" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text  x="639.12" y="549.5" ></text>
</g>
<g >
<title>set_ps_display (29 samples, 0.02%)</title><rect x="720.6" y="715" width="0.4" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="723.65" y="725.5" ></text>
</g>
<g >
<title>_bt_readpage (452 samples, 0.38%)</title><rect x="1010.8" y="427" width="5.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="1013.78" y="437.5" ></text>
</g>
<g >
<title>_bt_drop_lock_and_maybe_pin (496 samples, 0.42%)</title><rect x="1005.0" y="427" width="5.8" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text  x="1008.04" y="437.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (34 samples, 0.03%)</title><rect x="1180.4" y="475" width="0.4" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text  x="1183.36" y="485.5" ></text>
</g>
<g >
<title>ResourceOwnerRemember (30 samples, 0.03%)</title><rect x="524.4" y="635" width="0.4" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="527.45" y="645.5" ></text>
</g>
<g >
<title>pg_nextpower2_32 (12 samples, 0.01%)</title><rect x="615.7" y="555" width="0.1" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="618.70" y="565.5" ></text>
</g>
<g >
<title>ExecProject (22 samples, 0.02%)</title><rect x="1311.8" y="779" width="0.2" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text  x="1314.79" y="789.5" ></text>
</g>
<g >
<title>native_sched_clock (15 samples, 0.01%)</title><rect x="179.5" y="443" width="0.2" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text  x="182.54" y="453.5" ></text>
</g>
<g >
<title>UnpinBufferNoOwner (66 samples, 0.06%)</title><rect x="1008.9" y="363" width="0.8" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text  x="1011.94" y="373.5" ></text>
</g>
<g >
<title>ExecPushExprSetupSteps (11 samples, 0.01%)</title><rect x="580.3" y="555" width="0.1" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="583.30" y="565.5" ></text>
</g>
<g >
<title>smgr_bulk_flush (27 samples, 0.02%)</title><rect x="1272.8" y="459" width="0.3" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text  x="1275.81" y="469.5" ></text>
</g>
<g >
<title>get_hash_value (139 samples, 0.12%)</title><rect x="920.9" y="299" width="1.6" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text  x="923.89" y="309.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (16 samples, 0.01%)</title><rect x="287.2" y="443" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="290.20" y="453.5" ></text>
</g>
<g >
<title>palloc0 (114 samples, 0.10%)</title><rect x="574.5" y="523" width="1.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="577.51" y="533.5" ></text>
</g>
<g >
<title>ExecProcNode (469 samples, 0.39%)</title><rect x="12.0" y="635" width="5.4" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="14.99" y="645.5" ></text>
</g>
<g >
<title>BufferGetPage (9 samples, 0.01%)</title><rect x="1013.1" y="411" width="0.1" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="1016.09" y="421.5" ></text>
</g>
<g >
<title>ReadyForQuery (23 samples, 0.02%)</title><rect x="1337.6" y="779" width="0.3" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text  x="1340.64" y="789.5" ></text>
</g>
<g >
<title>__tcp_ack_snd_check (10 samples, 0.01%)</title><rect x="322.6" y="219" width="0.1" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text  x="325.57" y="229.5" ></text>
</g>
<g >
<title>int4eq (36 samples, 0.03%)</title><rect x="1387.1" y="395" width="0.4" height="15.0" fill="rgb(206,9,2)" rx="2" ry="2" />
<text  x="1390.13" y="405.5" ></text>
</g>
<g >
<title>tas (43 samples, 0.04%)</title><rect x="1173.3" y="555" width="0.5" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text  x="1176.32" y="565.5" ></text>
</g>
<g >
<title>ExecProcNodeFirst (85 samples, 0.07%)</title><rect x="1387.1" y="635" width="1.0" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="1390.13" y="645.5" ></text>
</g>
<g >
<title>choose_custom_plan (14 samples, 0.01%)</title><rect x="1354.2" y="779" width="0.1" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text  x="1357.17" y="789.5" ></text>
</g>
<g >
<title>superuser_arg (11 samples, 0.01%)</title><rect x="545.9" y="571" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="548.93" y="581.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetCatCacheRef (23 samples, 0.02%)</title><rect x="1104.8" y="523" width="0.2" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text  x="1107.78" y="533.5" ></text>
</g>
<g >
<title>_bt_first (9 samples, 0.01%)</title><rect x="24.6" y="539" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="27.64" y="549.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (12 samples, 0.01%)</title><rect x="1082.8" y="331" width="0.1" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="1085.78" y="341.5" ></text>
</g>
<g >
<title>ItemPointerGetBlockNumber (33 samples, 0.03%)</title><rect x="1323.5" y="779" width="0.4" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text  x="1326.47" y="789.5" ></text>
</g>
<g >
<title>pgstat_clear_backend_activity_snapshot (32 samples, 0.03%)</title><rect x="1372.2" y="779" width="0.4" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="1375.24" y="789.5" ></text>
</g>
<g >
<title>CommitTransactionCommand (10,962 samples, 9.19%)</title><rect x="1129.8" y="715" width="126.8" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" />
<text  x="1132.80" y="725.5" >CommitTransac..</text>
</g>
<g >
<title>sockfd_lookup_light (132 samples, 0.11%)</title><rect x="435.5" y="555" width="1.6" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text  x="438.54" y="565.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_safe_stack (45 samples, 0.04%)</title><rect x="1386.4" y="795" width="0.6" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text  x="1389.45" y="805.5" ></text>
</g>
<g >
<title>pg_pwrite_zeros (25 samples, 0.02%)</title><rect x="25.5" y="571" width="0.3" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="28.52" y="581.5" ></text>
</g>
<g >
<title>MemoryContextCreate (94 samples, 0.08%)</title><rect x="552.7" y="539" width="1.0" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text  x="555.66" y="549.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (317 samples, 0.27%)</title><rect x="507.5" y="651" width="3.7" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="510.49" y="661.5" ></text>
</g>
<g >
<title>AllocSetReset (16 samples, 0.01%)</title><rect x="1293.5" y="779" width="0.2" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="1296.49" y="789.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (12 samples, 0.01%)</title><rect x="465.9" y="651" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="468.86" y="661.5" ></text>
</g>
<g >
<title>exec_stmt_execsql (27 samples, 0.02%)</title><rect x="1284.9" y="715" width="0.3" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="1287.87" y="725.5" ></text>
</g>
<g >
<title>PageGetItem (24 samples, 0.02%)</title><rect x="1022.4" y="427" width="0.3" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text  x="1025.42" y="437.5" ></text>
</g>
<g >
<title>security_socket_sendmsg (229 samples, 0.19%)</title><rect x="262.1" y="539" width="2.6" height="15.0" fill="rgb(243,174,41)" rx="2" ry="2" />
<text  x="265.06" y="549.5" ></text>
</g>
<g >
<title>StartTransactionCommand (15 samples, 0.01%)</title><rect x="1346.6" y="779" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="1349.62" y="789.5" ></text>
</g>
<g >
<title>netif_rx_internal (212 samples, 0.18%)</title><rect x="390.1" y="363" width="2.5" height="15.0" fill="rgb(213,36,8)" rx="2" ry="2" />
<text  x="393.14" y="373.5" ></text>
</g>
<g >
<title>hash_bytes (134 samples, 0.11%)</title><rect x="470.0" y="603" width="1.6" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="473.04" y="613.5" ></text>
</g>
<g >
<title>BufferGetPage (18 samples, 0.02%)</title><rect x="1005.5" y="395" width="0.2" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="1008.53" y="405.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (39 samples, 0.03%)</title><rect x="1260.0" y="667" width="0.5" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="1263.05" y="677.5" ></text>
</g>
<g >
<title>RelationRebuildRelation (12 samples, 0.01%)</title><rect x="18.3" y="651" width="0.1" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text  x="21.26" y="661.5" ></text>
</g>
<g >
<title>sk_free (16 samples, 0.01%)</title><rect x="393.3" y="379" width="0.2" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text  x="396.29" y="389.5" ></text>
</g>
<g >
<title>jit_compile_expr (36 samples, 0.03%)</title><rect x="1365.1" y="779" width="0.4" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="1368.06" y="789.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (137 samples, 0.11%)</title><rect x="854.5" y="651" width="1.6" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="857.50" y="661.5" ></text>
</g>
<g >
<title>AtEOXact_Enum (36 samples, 0.03%)</title><rect x="1294.8" y="779" width="0.4" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="1297.75" y="789.5" ></text>
</g>
<g >
<title>BlockIdGetBlockNumber (27 samples, 0.02%)</title><rect x="1017.9" y="395" width="0.3" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="1020.87" y="405.5" ></text>
</g>
<g >
<title>FunctionCall1Coll (181 samples, 0.15%)</title><rect x="1096.2" y="587" width="2.1" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="1099.24" y="597.5" ></text>
</g>
<g >
<title>ExecJustAssignVarImpl (366 samples, 0.31%)</title><rect x="897.6" y="459" width="4.2" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text  x="900.58" y="469.5" ></text>
</g>
<g >
<title>ExecScanExtended (4,568 samples, 3.83%)</title><rect x="26.8" y="571" width="52.9" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="29.85" y="581.5" >Exec..</text>
</g>
<g >
<title>ApplyLauncherMain (17 samples, 0.01%)</title><rect x="1268.9" y="715" width="0.2" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text  x="1271.89" y="725.5" ></text>
</g>
<g >
<title>get_hash_entry (21 samples, 0.02%)</title><rect x="460.7" y="667" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="463.70" y="677.5" ></text>
</g>
<g >
<title>CommitTransactionCommandInternal (168 samples, 0.14%)</title><rect x="1127.0" y="395" width="2.0" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text  x="1130.02" y="405.5" ></text>
</g>
<g >
<title>cache_from_obj (63 samples, 0.05%)</title><rect x="368.7" y="187" width="0.7" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text  x="371.72" y="197.5" ></text>
</g>
<g >
<title>exec_stmts (81 samples, 0.07%)</title><rect x="1271.8" y="587" width="0.9" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="1274.77" y="597.5" ></text>
</g>
<g >
<title>pg_ltoa (25 samples, 0.02%)</title><rect x="1098.0" y="555" width="0.3" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text  x="1101.01" y="565.5" ></text>
</g>
<g >
<title>available_idle_cpu (183 samples, 0.15%)</title><rect x="334.5" y="123" width="2.1" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="337.45" y="133.5" ></text>
</g>
<g >
<title>check_stack_depth (10 samples, 0.01%)</title><rect x="580.5" y="523" width="0.2" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="583.55" y="533.5" ></text>
</g>
<g >
<title>import_single_range (12 samples, 0.01%)</title><rect x="201.7" y="555" width="0.1" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="204.68" y="565.5" ></text>
</g>
<g >
<title>exec_stmt_block (39 samples, 0.03%)</title><rect x="23.3" y="635" width="0.5" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="26.34" y="645.5" ></text>
</g>
<g >
<title>ExecAssignScanProjectionInfo (10 samples, 0.01%)</title><rect x="1307.5" y="779" width="0.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text  x="1310.47" y="789.5" ></text>
</g>
<g >
<title>DefineIndex (25 samples, 0.02%)</title><rect x="23.3" y="459" width="0.3" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="26.34" y="469.5" ></text>
</g>
<g >
<title>performMultipleDeletions (54 samples, 0.05%)</title><rect x="1284.0" y="731" width="0.6" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="1287.01" y="741.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberCatCacheRef (17 samples, 0.01%)</title><rect x="1107.1" y="523" width="0.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text  x="1110.15" y="533.5" ></text>
</g>
<g >
<title>__strlen_evex (28 samples, 0.02%)</title><rect x="1266.0" y="715" width="0.3" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="1269.00" y="725.5" ></text>
</g>
<g >
<title>AllocSetAlloc (9 samples, 0.01%)</title><rect x="579.7" y="587" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="582.72" y="597.5" ></text>
</g>
<g >
<title>socket_flush (20 samples, 0.02%)</title><rect x="1380.5" y="779" width="0.2" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text  x="1383.51" y="789.5" ></text>
</g>
<g >
<title>CreateExprContext (916 samples, 0.77%)</title><rect x="549.3" y="587" width="10.6" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="552.34" y="597.5" ></text>
</g>
<g >
<title>BufferDescriptorGetBuffer (257 samples, 0.22%)</title><rect x="932.2" y="299" width="3.0" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="935.21" y="309.5" ></text>
</g>
<g >
<title>RelationCacheInvalidateEntry (22 samples, 0.02%)</title><rect x="1283.3" y="347" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="1286.27" y="357.5" ></text>
</g>
<g >
<title>dlist_move_head (9 samples, 0.01%)</title><rect x="591.8" y="523" width="0.1" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text  x="594.81" y="533.5" ></text>
</g>
<g >
<title>_bt_first (19 samples, 0.02%)</title><rect x="1284.4" y="619" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="1287.42" y="629.5" ></text>
</g>
<g >
<title>pfree (49 samples, 0.04%)</title><rect x="1185.3" y="475" width="0.5" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1188.27" y="485.5" ></text>
</g>
<g >
<title>pgss_ExecutorRun (72 samples, 0.06%)</title><rect x="11.1" y="715" width="0.8" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="14.10" y="725.5" ></text>
</g>
<g >
<title>MemoryChunkSetHdrMask (10 samples, 0.01%)</title><rect x="1115.7" y="523" width="0.1" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text  x="1118.72" y="533.5" ></text>
</g>
<g >
<title>__rcu_read_lock (15 samples, 0.01%)</title><rect x="155.4" y="459" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="158.37" y="469.5" ></text>
</g>
<g >
<title>GetCurrentTimestamp (61 samples, 0.05%)</title><rect x="709.4" y="699" width="0.7" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="712.41" y="709.5" ></text>
</g>
<g >
<title>btbuild (456 samples, 0.38%)</title><rect x="1277.2" y="459" width="5.3" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text  x="1280.24" y="469.5" ></text>
</g>
<g >
<title>deleteOneObject (55 samples, 0.05%)</title><rect x="79.8" y="299" width="0.6" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text  x="82.79" y="309.5" ></text>
</g>
<g >
<title>CreateExprContextInternal (909 samples, 0.76%)</title><rect x="549.4" y="571" width="10.5" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text  x="552.41" y="581.5" ></text>
</g>
<g >
<title>DatumGetCString (24 samples, 0.02%)</title><rect x="1305.3" y="779" width="0.3" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text  x="1308.33" y="789.5" ></text>
</g>
<g >
<title>[unknown]  (26 samples, 0.02%)</title><rect x="1385.3" y="795" width="0.3" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text  x="1388.28" y="805.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (54 samples, 0.05%)</title><rect x="661.8" y="523" width="0.6" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="664.78" y="533.5" ></text>
</g>
<g >
<title>TupleDescInitEntryCollation (28 samples, 0.02%)</title><rect x="627.2" y="555" width="0.3" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" />
<text  x="630.20" y="565.5" ></text>
</g>
<g >
<title>__tcp_select_window (84 samples, 0.07%)</title><rect x="401.1" y="459" width="1.0" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="404.09" y="469.5" ></text>
</g>
<g >
<title>exec_execute_message (23,032 samples, 19.31%)</title><rect x="860.5" y="731" width="266.5" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="863.50" y="741.5" >exec_execute_message</text>
</g>
<g >
<title>SearchCatCacheMiss (10 samples, 0.01%)</title><rect x="1283.6" y="363" width="0.1" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text  x="1286.56" y="373.5" ></text>
</g>
<g >
<title>btgettuple (9 samples, 0.01%)</title><rect x="24.6" y="555" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="27.64" y="565.5" ></text>
</g>
<g >
<title>GetCurrentTimestamp (183 samples, 0.15%)</title><rect x="440.6" y="715" width="2.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="443.60" y="725.5" ></text>
</g>
<g >
<title>_bt_getbuf (179 samples, 0.15%)</title><rect x="14.7" y="427" width="2.1" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="17.72" y="437.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32_impl (13 samples, 0.01%)</title><rect x="492.5" y="555" width="0.1" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="495.46" y="565.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (13 samples, 0.01%)</title><rect x="1269.6" y="763" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="1272.61" y="773.5" ></text>
</g>
<g >
<title>_bt_relbuf (227 samples, 0.19%)</title><rect x="1008.1" y="411" width="2.6" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text  x="1011.11" y="421.5" ></text>
</g>
<g >
<title>_bt_check_compare (13 samples, 0.01%)</title><rect x="1349.1" y="779" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="1352.14" y="789.5" ></text>
</g>
<g >
<title>_copy_from_iter (80 samples, 0.07%)</title><rect x="413.0" y="507" width="0.9" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text  x="415.98" y="517.5" ></text>
</g>
<g >
<title>ReservePrivateRefCountEntry (15 samples, 0.01%)</title><rect x="1340.5" y="779" width="0.2" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text  x="1343.54" y="789.5" ></text>
</g>
<g >
<title>epoll_wait (10 samples, 0.01%)</title><rect x="1269.3" y="715" width="0.1" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text  x="1272.32" y="725.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (136 samples, 0.11%)</title><rect x="437.6" y="587" width="1.5" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text  x="440.56" y="597.5" ></text>
</g>
<g >
<title>ProcessUtility (47 samples, 0.04%)</title><rect x="1272.7" y="699" width="0.6" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="1275.71" y="709.5" ></text>
</g>
<g >
<title>LockReleaseAll (24 samples, 0.02%)</title><rect x="1326.2" y="779" width="0.3" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="1329.23" y="789.5" ></text>
</g>
<g >
<title>update_min_vruntime (16 samples, 0.01%)</title><rect x="150.6" y="459" width="0.2" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text  x="153.61" y="469.5" ></text>
</g>
<g >
<title>ShutdownExprContext (33 samples, 0.03%)</title><rect x="1192.3" y="539" width="0.3" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="1195.26" y="549.5" ></text>
</g>
<g >
<title>pq_writeint16 (56 samples, 0.05%)</title><rect x="857.9" y="699" width="0.7" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="860.92" y="709.5" ></text>
</g>
<g >
<title>clear_page_erms (145 samples, 0.12%)</title><rect x="1280.8" y="155" width="1.6" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="1283.76" y="165.5" ></text>
</g>
<g >
<title>WaitEventSetWait (10 samples, 0.01%)</title><rect x="1269.3" y="747" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="1272.32" y="757.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (34 samples, 0.03%)</title><rect x="1241.6" y="555" width="0.4" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="1244.58" y="565.5" ></text>
</g>
<g >
<title>spin_delay (49 samples, 0.04%)</title><rect x="828.5" y="587" width="0.6" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="831.53" y="597.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetCatCacheRef (19 samples, 0.02%)</title><rect x="592.8" y="523" width="0.2" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text  x="595.78" y="533.5" ></text>
</g>
<g >
<title>MemoryContextSetParent (26 samples, 0.02%)</title><rect x="1110.2" y="587" width="0.3" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="1113.24" y="597.5" ></text>
</g>
<g >
<title>ReceiveSharedInvalidMessages (14 samples, 0.01%)</title><rect x="1268.9" y="619" width="0.2" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text  x="1271.91" y="629.5" ></text>
</g>
<g >
<title>plpgsql_exec_function (697 samples, 0.58%)</title><rect x="1275.9" y="715" width="8.0" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text  x="1278.86" y="725.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (22 samples, 0.02%)</title><rect x="847.1" y="603" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="850.10" y="613.5" ></text>
</g>
<g >
<title>start_xact_command (10,957 samples, 9.19%)</title><rect x="721.1" y="715" width="126.8" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="724.07" y="725.5" >start_xact_co..</text>
</g>
<g >
<title>AtEOXact_TypeCache (23 samples, 0.02%)</title><rect x="1142.6" y="667" width="0.2" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text  x="1145.56" y="677.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (13 samples, 0.01%)</title><rect x="1269.6" y="683" width="0.2" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="1272.61" y="693.5" ></text>
</g>
<g >
<title>PopActiveSnapshot (45 samples, 0.04%)</title><rect x="1333.5" y="779" width="0.5" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text  x="1336.49" y="789.5" ></text>
</g>
<g >
<title>UnregisterSnapshot (184 samples, 0.15%)</title><rect x="1201.7" y="603" width="2.1" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="1204.67" y="613.5" ></text>
</g>
<g >
<title>exec_stmts (15 samples, 0.01%)</title><rect x="23.8" y="603" width="0.2" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="26.79" y="613.5" ></text>
</g>
<g >
<title>MemoryChunkIsExternal (12 samples, 0.01%)</title><rect x="1111.3" y="587" width="0.1" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="1114.29" y="597.5" ></text>
</g>
<g >
<title>skb_network_protocol (32 samples, 0.03%)</title><rect x="396.8" y="379" width="0.3" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text  x="399.75" y="389.5" ></text>
</g>
<g >
<title>index_getattr (463 samples, 0.39%)</title><rect x="1053.4" y="395" width="5.4" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text  x="1056.41" y="405.5" ></text>
</g>
<g >
<title>BufTableLookup (35 samples, 0.03%)</title><rect x="31.3" y="299" width="0.4" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text  x="34.27" y="309.5" ></text>
</g>
<g >
<title>pgstat_report_wait_start (54 samples, 0.05%)</title><rect x="194.7" y="635" width="0.7" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="197.73" y="645.5" ></text>
</g>
<g >
<title>TupleDescAttr (24 samples, 0.02%)</title><rect x="624.1" y="539" width="0.3" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="627.09" y="549.5" ></text>
</g>
<g >
<title>_bt_first (11,681 samples, 9.79%)</title><rect x="952.9" y="459" width="135.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="955.93" y="469.5" >_bt_first</text>
</g>
<g >
<title>AllocSetFreeIndex (11 samples, 0.01%)</title><rect x="696.4" y="635" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="699.40" y="645.5" ></text>
</g>
<g >
<title>AllocSetAlloc (49 samples, 0.04%)</title><rect x="520.5" y="683" width="0.5" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="523.47" y="693.5" ></text>
</g>
<g >
<title>__update_load_avg_se (68 samples, 0.06%)</title><rect x="149.8" y="443" width="0.8" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="152.82" y="453.5" ></text>
</g>
<g >
<title>LWLockAcquire (390 samples, 0.33%)</title><rect x="32.4" y="299" width="4.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="35.36" y="309.5" ></text>
</g>
<g >
<title>index_getnext_tid (12 samples, 0.01%)</title><rect x="24.5" y="571" width="0.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="27.50" y="581.5" ></text>
</g>
<g >
<title>palloc0 (48 samples, 0.04%)</title><rect x="912.4" y="459" width="0.6" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="915.43" y="469.5" ></text>
</g>
<g >
<title>CommandEndInvalidationMessages (44 samples, 0.04%)</title><rect x="1276.0" y="443" width="0.5" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="1278.99" y="453.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_or_u32_impl (33 samples, 0.03%)</title><rect x="1006.9" y="363" width="0.4" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="1009.93" y="373.5" ></text>
</g>
<g >
<title>socket_putmessage (84 samples, 0.07%)</title><rect x="249.7" y="699" width="1.0" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text  x="252.71" y="709.5" ></text>
</g>
<g >
<title>CacheInvalidateSmgr (91 samples, 0.08%)</title><rect x="1127.4" y="331" width="1.1" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="1130.43" y="341.5" ></text>
</g>
<g >
<title>spin_delay (759 samples, 0.64%)</title><rect x="819.8" y="571" width="8.7" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="822.75" y="581.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (334 samples, 0.28%)</title><rect x="588.1" y="539" width="3.9" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="591.09" y="549.5" ></text>
</g>
<g >
<title>VirtualXactLockTableInsert (150 samples, 0.13%)</title><rect x="845.6" y="667" width="1.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="848.61" y="677.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (72 samples, 0.06%)</title><rect x="1241.4" y="571" width="0.9" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="1244.42" y="581.5" ></text>
</g>
<g >
<title>ReleaseCatCacheWithOwner (78 samples, 0.07%)</title><rect x="699.0" y="667" width="0.9" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text  x="702.02" y="677.5" ></text>
</g>
<g >
<title>exec_stmts (46 samples, 0.04%)</title><rect x="1389.1" y="651" width="0.5" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="1392.10" y="661.5" ></text>
</g>
<g >
<title>pq_sendcountedtext (11 samples, 0.01%)</title><rect x="1376.0" y="779" width="0.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text  x="1378.97" y="789.5" ></text>
</g>
<g >
<title>PinBufferForBlock (2,648 samples, 2.22%)</title><rect x="49.0" y="331" width="30.7" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="52.02" y="341.5" >P..</text>
</g>
<g >
<title>list_last_cell (10 samples, 0.01%)</title><rect x="576.0" y="523" width="0.2" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text  x="579.04" y="533.5" ></text>
</g>
<g >
<title>btgettuple (72 samples, 0.06%)</title><rect x="11.1" y="523" width="0.8" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="14.10" y="533.5" ></text>
</g>
<g >
<title>expr_setup_walker (339 samples, 0.28%)</title><rect x="564.7" y="523" width="3.9" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="567.68" y="533.5" ></text>
</g>
<g >
<title>performMultipleDeletions (35 samples, 0.03%)</title><rect x="1283.3" y="475" width="0.4" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="1286.27" y="485.5" ></text>
</g>
<g >
<title>pq_sendint32 (48 samples, 0.04%)</title><rect x="1101.4" y="587" width="0.5" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="1104.38" y="597.5" ></text>
</g>
<g >
<title>AllocSetFreeIndex (13 samples, 0.01%)</title><rect x="615.5" y="523" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="618.52" y="533.5" ></text>
</g>
<g >
<title>pg_any_to_server (84 samples, 0.07%)</title><rect x="714.8" y="683" width="1.0" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text  x="717.83" y="693.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (18 samples, 0.02%)</title><rect x="1341.1" y="779" width="0.2" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text  x="1344.13" y="789.5" ></text>
</g>
<g >
<title>AllocSetAlloc (60 samples, 0.05%)</title><rect x="666.0" y="523" width="0.7" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="669.01" y="533.5" ></text>
</g>
<g >
<title>PageGetItemId (15 samples, 0.01%)</title><rect x="1068.2" y="395" width="0.2" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text  x="1071.23" y="405.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (138 samples, 0.12%)</title><rect x="511.5" y="635" width="1.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="514.50" y="645.5" ></text>
</g>
<g >
<title>ExecInitNode (11,433 samples, 9.59%)</title><rect x="546.4" y="635" width="132.3" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="549.40" y="645.5" >ExecInitNode</text>
</g>
<g >
<title>RelationIncrementReferenceCount (15 samples, 0.01%)</title><rect x="637.2" y="523" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="640.16" y="533.5" ></text>
</g>
<g >
<title>fetch_att (10 samples, 0.01%)</title><rect x="1068.9" y="379" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="1071.87" y="389.5" ></text>
</g>
<g >
<title>exec_execute_message (469 samples, 0.39%)</title><rect x="12.0" y="747" width="5.4" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="14.99" y="757.5" ></text>
</g>
<g >
<title>int4eqfast (12 samples, 0.01%)</title><rect x="589.5" y="507" width="0.1" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text  x="592.46" y="517.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (9 samples, 0.01%)</title><rect x="643.4" y="459" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="646.43" y="469.5" ></text>
</g>
<g >
<title>standard_ProcessUtility (37 samples, 0.03%)</title><rect x="1285.2" y="619" width="0.4" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="1288.18" y="629.5" ></text>
</g>
<g >
<title>validate_xmit_xfrm (27 samples, 0.02%)</title><rect x="397.4" y="411" width="0.4" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text  x="400.45" y="421.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (138 samples, 0.12%)</title><rect x="637.6" y="507" width="1.6" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="640.65" y="517.5" ></text>
</g>
<g >
<title>list_nth (23 samples, 0.02%)</title><rect x="640.9" y="587" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="643.86" y="597.5" ></text>
</g>
<g >
<title>btinsert (16 samples, 0.01%)</title><rect x="1276.5" y="411" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text  x="1279.53" y="421.5" ></text>
</g>
<g >
<title>ExecInitQual (15 samples, 0.01%)</title><rect x="18.9" y="811" width="0.1" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text  x="21.86" y="821.5" ></text>
</g>
<g >
<title>pq_getmsgstring (217 samples, 0.18%)</title><rect x="713.6" y="715" width="2.5" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text  x="716.63" y="725.5" ></text>
</g>
<g >
<title>ReadBuffer (27 samples, 0.02%)</title><rect x="1337.1" y="779" width="0.3" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="1340.12" y="789.5" ></text>
</g>
<g >
<title>MakeTupleTableSlot (181 samples, 0.15%)</title><rect x="573.7" y="539" width="2.1" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text  x="576.75" y="549.5" ></text>
</g>
<g >
<title>PinBufferForBlock (1,681 samples, 1.41%)</title><rect x="920.2" y="347" width="19.5" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="923.22" y="357.5" ></text>
</g>
<g >
<title>printtup_shutdown (242 samples, 0.20%)</title><rect x="1108.9" y="635" width="2.8" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="1111.85" y="645.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (25 samples, 0.02%)</title><rect x="25.5" y="747" width="0.3" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="28.52" y="757.5" ></text>
</g>
<g >
<title>[[vdso]] (26 samples, 0.02%)</title><rect x="1264.2" y="667" width="0.3" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="1267.18" y="677.5" ></text>
</g>
<g >
<title>hash_seq_search (365 samples, 0.31%)</title><rect x="1245.3" y="603" width="4.3" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="1248.33" y="613.5" ></text>
</g>
<g >
<title>StartReadBuffer (2,653 samples, 2.22%)</title><rect x="49.0" y="363" width="30.7" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="52.01" y="373.5" >S..</text>
</g>
<g >
<title>plpgsql_exec_function (211 samples, 0.18%)</title><rect x="20.9" y="651" width="2.4" height="15.0" fill="rgb(215,50,11)" rx="2" ry="2" />
<text  x="23.90" y="661.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (28 samples, 0.02%)</title><rect x="475.4" y="571" width="0.3" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="478.35" y="581.5" ></text>
</g>
<g >
<title>AllocSetFree (24 samples, 0.02%)</title><rect x="518.1" y="667" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="521.10" y="677.5" ></text>
</g>
<g >
<title>socket_putmessage (35 samples, 0.03%)</title><rect x="1380.7" y="779" width="0.4" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text  x="1383.74" y="789.5" ></text>
</g>
<g >
<title>ReadBufferExtended (54 samples, 0.05%)</title><rect x="16.8" y="395" width="0.6" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text  x="19.79" y="405.5" ></text>
</g>
<g >
<title>exec_stmt_block (11 samples, 0.01%)</title><rect x="20.7" y="731" width="0.1" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="23.66" y="741.5" ></text>
</g>
<g >
<title>palloc0 (407 samples, 0.34%)</title><rect x="673.1" y="587" width="4.7" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="676.08" y="597.5" ></text>
</g>
<g >
<title>ReceiveSharedInvalidMessages (24 samples, 0.02%)</title><rect x="1274.1" y="779" width="0.2" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text  x="1277.05" y="789.5" ></text>
</g>
<g >
<title>DefineSequence (25 samples, 0.02%)</title><rect x="25.5" y="731" width="0.3" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text  x="28.52" y="741.5" ></text>
</g>
<g >
<title>perform_spin_delay (839 samples, 0.70%)</title><rect x="818.8" y="587" width="9.7" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text  x="821.83" y="597.5" ></text>
</g>
<g >
<title>FunctionCall2Coll (1,070 samples, 0.90%)</title><rect x="1037.7" y="395" width="12.4" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="1040.73" y="405.5" ></text>
</g>
<g >
<title>get_hash_value (149 samples, 0.12%)</title><rect x="664.1" y="523" width="1.7" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text  x="667.06" y="533.5" ></text>
</g>
<g >
<title>GetMemoryChunkMethodID (23 samples, 0.02%)</title><rect x="1240.1" y="571" width="0.2" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text  x="1243.05" y="581.5" ></text>
</g>
<g >
<title>sched_clock_cpu (18 samples, 0.02%)</title><rect x="181.7" y="427" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="184.70" y="437.5" ></text>
</g>
<g >
<title>finish_spin_delay (12 samples, 0.01%)</title><rect x="1006.3" y="379" width="0.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="1009.31" y="389.5" ></text>
</g>
<g >
<title>AllocSetAlloc (38 samples, 0.03%)</title><rect x="679.9" y="603" width="0.4" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="682.86" y="613.5" ></text>
</g>
<g >
<title>internal_flush_buffer (16,255 samples, 13.63%)</title><rect x="251.8" y="683" width="188.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="254.78" y="693.5" >internal_flush_buffer</text>
</g>
<g >
<title>btint4cmp (19 samples, 0.02%)</title><rect x="1271.0" y="811" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1274.00" y="821.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (29 samples, 0.02%)</title><rect x="492.0" y="571" width="0.3" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="494.96" y="581.5" ></text>
</g>
<g >
<title>PostgresMain (89 samples, 0.07%)</title><rect x="1387.1" y="779" width="1.1" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text  x="1390.13" y="789.5" ></text>
</g>
<g >
<title>ResourceOwnerReleaseInternal (2,945 samples, 2.47%)</title><rect x="1219.5" y="651" width="34.1" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text  x="1222.54" y="661.5" >Re..</text>
</g>
<g >
<title>tcp_rate_gen (29 samples, 0.02%)</title><rect x="371.0" y="203" width="0.3" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="373.97" y="213.5" ></text>
</g>
<g >
<title>OidFunctionCall1Coll (196 samples, 0.16%)</title><rect x="1127.0" y="603" width="2.3" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text  x="1130.02" y="613.5" ></text>
</g>
<g >
<title>LockAcquireExtended (9 samples, 0.01%)</title><rect x="1285.0" y="475" width="0.1" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="1288.03" y="485.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (15 samples, 0.01%)</title><rect x="19.2" y="555" width="0.1" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="22.15" y="565.5" ></text>
</g>
<g >
<title>ResourceOwnerDelete (11 samples, 0.01%)</title><rect x="1340.9" y="779" width="0.2" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text  x="1343.92" y="789.5" ></text>
</g>
<g >
<title>dispatch_compare_ptr (124 samples, 0.10%)</title><rect x="888.7" y="443" width="1.4" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text  x="891.70" y="453.5" ></text>
</g>
<g >
<title>read_tsc (29 samples, 0.02%)</title><rect x="231.1" y="459" width="0.4" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text  x="234.14" y="469.5" ></text>
</g>
<g >
<title>ip_rcv_finish_core.constprop.0 (105 samples, 0.09%)</title><rect x="380.7" y="283" width="1.2" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="383.70" y="293.5" ></text>
</g>
<g >
<title>internal_flush (26 samples, 0.02%)</title><rect x="247.2" y="715" width="0.3" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="250.19" y="725.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (15 samples, 0.01%)</title><rect x="23.8" y="779" width="0.2" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="26.79" y="789.5" ></text>
</g>
<g >
<title>palloc (58 samples, 0.05%)</title><rect x="1097.3" y="555" width="0.7" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="1100.34" y="565.5" ></text>
</g>
<g >
<title>OidFunctionCall1Coll (15 samples, 0.01%)</title><rect x="19.2" y="795" width="0.1" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text  x="22.15" y="805.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (193 samples, 0.16%)</title><rect x="1083.6" y="347" width="2.3" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="1086.65" y="357.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (176 samples, 0.15%)</title><rect x="543.9" y="539" width="2.0" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="546.89" y="549.5" ></text>
</g>
<g >
<title>__wake_up_common (1,400 samples, 1.17%)</title><rect x="327.4" y="187" width="16.2" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text  x="330.40" y="197.5" ></text>
</g>
<g >
<title>futex_wait (10 samples, 0.01%)</title><rect x="1232.2" y="475" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="1235.16" y="485.5" ></text>
</g>
<g >
<title>fmgr_isbuiltin (21 samples, 0.02%)</title><rect x="1103.8" y="555" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="1106.79" y="565.5" ></text>
</g>
<g >
<title>resetStringInfo (23 samples, 0.02%)</title><rect x="1378.1" y="779" width="0.3" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="1381.10" y="789.5" ></text>
</g>
<g >
<title>SendSharedInvalidMessages (91 samples, 0.08%)</title><rect x="1127.4" y="315" width="1.1" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
<text  x="1130.43" y="325.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (20 samples, 0.02%)</title><rect x="1283.7" y="459" width="0.2" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="1286.68" y="469.5" ></text>
</g>
<g >
<title>ExecCreateExprSetupSteps (374 samples, 0.31%)</title><rect x="600.8" y="587" width="4.4" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text  x="603.85" y="597.5" ></text>
</g>
<g >
<title>update_rq_clock (60 samples, 0.05%)</title><rect x="188.2" y="491" width="0.7" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text  x="191.22" y="501.5" ></text>
</g>
<g >
<title>CallSyscacheCallbacks (10 samples, 0.01%)</title><rect x="723.8" y="603" width="0.1" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text  x="726.76" y="613.5" ></text>
</g>
<g >
<title>GrantLockLocal (11 samples, 0.01%)</title><rect x="469.1" y="635" width="0.1" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="472.09" y="645.5" ></text>
</g>
<g >
<title>_SPI_execute_plan (46 samples, 0.04%)</title><rect x="1389.1" y="603" width="0.5" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="1392.10" y="613.5" ></text>
</g>
<g >
<title>AllocSetAlloc (42 samples, 0.04%)</title><rect x="680.9" y="603" width="0.5" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="683.91" y="613.5" ></text>
</g>
<g >
<title>pfree (39 samples, 0.03%)</title><rect x="692.1" y="683" width="0.5" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="695.15" y="693.5" ></text>
</g>
<g >
<title>MemoryContextDeleteOnly (9 samples, 0.01%)</title><rect x="1192.2" y="539" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="1195.16" y="549.5" ></text>
</g>
<g >
<title>BackendMain (102,676 samples, 86.10%)</title><rect x="80.5" y="763" width="1188.1" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text  x="83.47" y="773.5" >BackendMain</text>
</g>
<g >
<title>ExprEvalPushStep (71 samples, 0.06%)</title><rect x="580.9" y="555" width="0.8" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="583.91" y="565.5" ></text>
</g>
<g >
<title>ProcReleaseLocks (2,493 samples, 2.09%)</title><rect x="1221.1" y="635" width="28.9" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text  x="1224.14" y="645.5" >P..</text>
</g>
<g >
<title>string_hash (93 samples, 0.08%)</title><rect x="1205.9" y="619" width="1.1" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="1208.94" y="629.5" ></text>
</g>
<g >
<title>LWLockAcquire (96 samples, 0.08%)</title><rect x="491.7" y="619" width="1.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="494.70" y="629.5" ></text>
</g>
<g >
<title>dclist_init (27 samples, 0.02%)</title><rect x="1138.6" y="651" width="0.4" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="1141.65" y="661.5" ></text>
</g>
<g >
<title>fill_seq_with_data (25 samples, 0.02%)</title><rect x="25.5" y="715" width="0.3" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text  x="28.52" y="725.5" ></text>
</g>
<g >
<title>clear_page_erms (10 samples, 0.01%)</title><rect x="25.5" y="267" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="28.54" y="277.5" ></text>
</g>
<g >
<title>index_insert (11 samples, 0.01%)</title><rect x="1276.8" y="427" width="0.1" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text  x="1279.77" y="437.5" ></text>
</g>
<g >
<title>flush_ps_display (54 samples, 0.05%)</title><rect x="1267.3" y="699" width="0.6" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" />
<text  x="1270.26" y="709.5" ></text>
</g>
<g >
<title>ReleaseAndReadBuffer (1,788 samples, 1.50%)</title><rect x="919.0" y="443" width="20.7" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text  x="922.03" y="453.5" ></text>
</g>
<g >
<title>ExecScanExtended (72 samples, 0.06%)</title><rect x="11.1" y="603" width="0.8" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="14.10" y="613.5" ></text>
</g>
<g >
<title>mem_cgroup_charge_skmem (203 samples, 0.17%)</title><rect x="431.9" y="491" width="2.3" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text  x="434.90" y="501.5" ></text>
</g>
<g >
<title>bms_copy (90 samples, 0.08%)</title><rect x="680.4" y="635" width="1.0" height="15.0" fill="rgb(208,13,3)" rx="2" ry="2" />
<text  x="683.36" y="645.5" ></text>
</g>
<g >
<title>_bt_preprocess_keys (193 samples, 0.16%)</title><rect x="1002.0" y="443" width="2.2" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text  x="1004.97" y="453.5" ></text>
</g>
<g >
<title>ipv4_mtu (11 samples, 0.01%)</title><rect x="420.8" y="475" width="0.1" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text  x="423.75" y="485.5" ></text>
</g>
<g >
<title>BufferGetPage (23 samples, 0.02%)</title><rect x="1302.4" y="779" width="0.3" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="1305.42" y="789.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberLock (10 samples, 0.01%)</title><rect x="491.6" y="603" width="0.1" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="494.59" y="613.5" ></text>
</g>
<g >
<title>index_getattr (103 samples, 0.09%)</title><rect x="13.5" y="395" width="1.2" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text  x="16.46" y="405.5" ></text>
</g>
<g >
<title>table_index_fetch_tuple (3,273 samples, 2.74%)</title><rect x="913.9" y="475" width="37.8" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="916.85" y="485.5" >ta..</text>
</g>
<g >
<title>charhashfast (50 samples, 0.04%)</title><rect x="589.8" y="507" width="0.6" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text  x="592.81" y="517.5" ></text>
</g>
<g >
<title>exec_stmt_fori (11 samples, 0.01%)</title><rect x="20.7" y="699" width="0.1" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text  x="23.66" y="709.5" ></text>
</g>
<g >
<title>do_syscall_64 (14 samples, 0.01%)</title><rect x="1232.1" y="523" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="1235.14" y="533.5" ></text>
</g>
<g >
<title>hash_bytes (133 samples, 0.11%)</title><rect x="921.0" y="267" width="1.5" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="923.96" y="277.5" ></text>
</g>
<g >
<title>CommandEndInvalidationMessages (12 samples, 0.01%)</title><rect x="18.3" y="731" width="0.1" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="21.26" y="741.5" ></text>
</g>
<g >
<title>__strncmp_evex (20 samples, 0.02%)</title><rect x="868.6" y="651" width="0.3" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text  x="871.64" y="661.5" ></text>
</g>
<g >
<title>ReadyForQuery (9 samples, 0.01%)</title><rect x="1268.1" y="747" width="0.1" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text  x="1271.13" y="757.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (10 samples, 0.01%)</title><rect x="1272.0" y="363" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="1274.98" y="373.5" ></text>
</g>
<g >
<title>AllocSetAlloc (130 samples, 0.11%)</title><rect x="718.6" y="667" width="1.5" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="721.62" y="677.5" ></text>
</g>
<g >
<title>update_min_vruntime (27 samples, 0.02%)</title><rect x="146.5" y="443" width="0.3" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text  x="149.46" y="453.5" ></text>
</g>
<g >
<title>CatalogCacheComputeHashValue (25 samples, 0.02%)</title><rect x="545.0" y="523" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="548.02" y="533.5" ></text>
</g>
<g >
<title>is_log_level_output (9 samples, 0.01%)</title><rect x="845.5" y="619" width="0.1" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text  x="848.51" y="629.5" ></text>
</g>
<g >
<title>s_lock (25 samples, 0.02%)</title><rect x="1127.1" y="299" width="0.3" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="1130.06" y="309.5" ></text>
</g>
<g >
<title>read_tsc (27 samples, 0.02%)</title><rect x="405.9" y="459" width="0.3" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text  x="408.91" y="469.5" ></text>
</g>
<g >
<title>ExecOpenScanRelation (497 samples, 0.42%)</title><rect x="634.8" y="603" width="5.8" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text  x="637.81" y="613.5" ></text>
</g>
<g >
<title>RelationRebuildRelation (24 samples, 0.02%)</title><rect x="18.0" y="667" width="0.2" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text  x="20.96" y="677.5" ></text>
</g>
<g >
<title>__strncpy_evex (132 samples, 0.11%)</title><rect x="624.6" y="523" width="1.5" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text  x="627.58" y="533.5" ></text>
</g>
<g >
<title>process_backlog (6,982 samples, 5.85%)</title><rect x="302.3" y="331" width="80.8" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text  x="305.33" y="341.5" >process..</text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (10 samples, 0.01%)</title><rect x="633.0" y="523" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="635.97" y="533.5" ></text>
</g>
<g >
<title>heap_multi_insert (28 samples, 0.02%)</title><rect x="1274.4" y="811" width="0.3" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text  x="1277.41" y="821.5" ></text>
</g>
<g >
<title>ExecResetTupleTable (276 samples, 0.23%)</title><rect x="1186.0" y="555" width="3.2" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text  x="1189.05" y="565.5" ></text>
</g>
<g >
<title>MemoryContextReset (12 samples, 0.01%)</title><rect x="1327.9" y="779" width="0.1" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="1330.87" y="789.5" ></text>
</g>
<g >
<title>StartTransaction (14 samples, 0.01%)</title><rect x="1268.9" y="667" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="1271.91" y="677.5" ></text>
</g>
<g >
<title>__sk_dst_check (19 samples, 0.02%)</title><rect x="287.4" y="443" width="0.2" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text  x="290.39" y="453.5" ></text>
</g>
<g >
<title>SetLocktagRelationOid (78 samples, 0.07%)</title><rect x="669.3" y="555" width="0.9" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text  x="672.28" y="565.5" ></text>
</g>
<g >
<title>resetStringInfo (27 samples, 0.02%)</title><rect x="856.5" y="683" width="0.3" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="859.49" y="693.5" ></text>
</g>
<g >
<title>ExecInitScanTupleSlot (21 samples, 0.02%)</title><rect x="1310.0" y="779" width="0.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="1312.99" y="789.5" ></text>
</g>
<g >
<title>PageValidateSpecialPointer (18 samples, 0.02%)</title><rect x="1332.1" y="779" width="0.2" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text  x="1335.13" y="789.5" ></text>
</g>
<g >
<title>RelationBuildTupleDesc (9 samples, 0.01%)</title><rect x="18.3" y="619" width="0.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text  x="21.26" y="629.5" ></text>
</g>
<g >
<title>IndexTupleHasNulls (12 samples, 0.01%)</title><rect x="999.3" y="395" width="0.1" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text  x="1002.25" y="405.5" ></text>
</g>
<g >
<title>ExecGetResultType (12 samples, 0.01%)</title><rect x="546.2" y="635" width="0.2" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text  x="549.24" y="645.5" ></text>
</g>
<g >
<title>enlargeStringInfo (26 samples, 0.02%)</title><rect x="1355.5" y="779" width="0.3" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text  x="1358.49" y="789.5" ></text>
</g>
<g >
<title>ReleaseSysCache (77 samples, 0.06%)</title><rect x="542.8" y="571" width="0.9" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="545.81" y="581.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (49 samples, 0.04%)</title><rect x="917.6" y="411" width="0.6" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="920.65" y="421.5" ></text>
</g>
<g >
<title>security_sock_rcv_skb (22 samples, 0.02%)</title><rect x="317.2" y="235" width="0.3" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text  x="320.21" y="245.5" ></text>
</g>
<g >
<title>ResourceOwnerRemember (10 samples, 0.01%)</title><rect x="1107.2" y="507" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="1110.23" y="517.5" ></text>
</g>
<g >
<title>secure_write (18 samples, 0.02%)</title><rect x="1378.6" y="779" width="0.3" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="1381.65" y="789.5" ></text>
</g>
<g >
<title>RelationBuildDesc (22 samples, 0.02%)</title><rect x="1283.3" y="299" width="0.2" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="1286.27" y="309.5" ></text>
</g>
<g >
<title>pgstat_report_query_id (64 samples, 0.05%)</title><rect x="682.2" y="683" width="0.8" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="685.24" y="693.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (24 samples, 0.02%)</title><rect x="1242.0" y="555" width="0.3" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="1244.97" y="565.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberCatCacheRef (40 samples, 0.03%)</title><rect x="591.3" y="523" width="0.5" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text  x="594.33" y="533.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (30 samples, 0.03%)</title><rect x="643.0" y="475" width="0.4" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="646.05" y="485.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (128 samples, 0.11%)</title><rect x="43.2" y="283" width="1.4" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="46.15" y="293.5" ></text>
</g>
<g >
<title>ExecInitScanTupleSlot (495 samples, 0.42%)</title><rect x="629.1" y="603" width="5.7" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="632.08" y="613.5" ></text>
</g>
<g >
<title>ProcessUtilitySlow (13 samples, 0.01%)</title><rect x="1269.6" y="747" width="0.2" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="1272.61" y="757.5" ></text>
</g>
<g >
<title>ReadCommand (13,332 samples, 11.18%)</title><rect x="92.1" y="731" width="154.3" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text  x="95.11" y="741.5" >ReadCommand</text>
</g>
<g >
<title>PortalRunUtility (81 samples, 0.07%)</title><rect x="1271.8" y="763" width="0.9" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1274.77" y="773.5" ></text>
</g>
<g >
<title>LWLockRelease (97 samples, 0.08%)</title><rect x="662.9" y="539" width="1.1" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="665.89" y="549.5" ></text>
</g>
<g >
<title>int4hashfast (15 samples, 0.01%)</title><rect x="623.6" y="475" width="0.1" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text  x="626.56" y="485.5" ></text>
</g>
<g >
<title>list_length (14 samples, 0.01%)</title><rect x="870.4" y="699" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text  x="873.35" y="709.5" ></text>
</g>
<g >
<title>ProcessUtility (20 samples, 0.02%)</title><rect x="1283.7" y="507" width="0.2" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="1286.68" y="517.5" ></text>
</g>
<g >
<title>StmtPlanRequiresRevalidation (12 samples, 0.01%)</title><rect x="503.8" y="683" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="506.84" y="693.5" ></text>
</g>
<g >
<title>remove_entity_load_avg (20 samples, 0.02%)</title><rect x="338.5" y="107" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text  x="341.48" y="117.5" ></text>
</g>
<g >
<title>ExecIndexScan (17,803 samples, 14.93%)</title><rect x="885.2" y="587" width="206.0" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="888.16" y="597.5" >ExecIndexScan</text>
</g>
<g >
<title>__rdgsbase_inactive (15 samples, 0.01%)</title><rect x="100.9" y="603" width="0.2" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text  x="103.91" y="613.5" ></text>
</g>
<g >
<title>__sock_sendmsg (15,100 samples, 12.66%)</title><rect x="260.7" y="555" width="174.7" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text  x="263.69" y="565.5" >__sock_sendmsg</text>
</g>
<g >
<title>ExecuteDoStmt (65 samples, 0.05%)</title><rect x="79.7" y="635" width="0.8" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text  x="82.71" y="645.5" ></text>
</g>
<g >
<title>AllocSetAllocChunkFromBlock (11 samples, 0.01%)</title><rect x="584.8" y="523" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="587.77" y="533.5" ></text>
</g>
<g >
<title>shmem_write_begin (291 samples, 0.24%)</title><rect x="1277.4" y="171" width="3.4" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text  x="1280.38" y="181.5" ></text>
</g>
<g >
<title>index_getnext_tid (469 samples, 0.39%)</title><rect x="12.0" y="507" width="5.4" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="14.99" y="517.5" ></text>
</g>
<g >
<title>tcp_recvmsg_locked (2,295 samples, 1.92%)</title><rect x="204.9" y="523" width="26.6" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="207.92" y="533.5" >t..</text>
</g>
<g >
<title>exec_stmts (65 samples, 0.05%)</title><rect x="79.7" y="491" width="0.8" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="82.71" y="501.5" ></text>
</g>
<g >
<title>AcquirePlannerLocks (2,512 samples, 2.11%)</title><rect x="472.8" y="683" width="29.1" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text  x="475.82" y="693.5" >A..</text>
</g>
<g >
<title>SearchSysCache1 (157 samples, 0.13%)</title><rect x="854.3" y="683" width="1.8" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="857.29" y="693.5" ></text>
</g>
<g >
<title>ipv4_dst_check (15 samples, 0.01%)</title><rect x="287.4" y="427" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text  x="290.43" y="437.5" ></text>
</g>
<g >
<title>bpf_lsm_socket_recvmsg (17 samples, 0.01%)</title><rect x="235.4" y="523" width="0.2" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
<text  x="238.37" y="533.5" ></text>
</g>
<g >
<title>MemoryContextReset (499 samples, 0.42%)</title><rect x="85.9" y="731" width="5.8" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="88.93" y="741.5" ></text>
</g>
<g >
<title>BlockIdSet (19 samples, 0.02%)</title><rect x="895.9" y="475" width="0.2" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="898.88" y="485.5" ></text>
</g>
<g >
<title>ExecInterpExpr (108 samples, 0.09%)</title><rect x="890.4" y="491" width="1.2" height="15.0" fill="rgb(225,96,22)" rx="2" ry="2" />
<text  x="893.37" y="501.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (27 samples, 0.02%)</title><rect x="732.1" y="555" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="735.09" y="565.5" ></text>
</g>
<g >
<title>AllocSetAlloc (75 samples, 0.06%)</title><rect x="843.9" y="619" width="0.9" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="846.90" y="629.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (23 samples, 0.02%)</title><rect x="24.0" y="539" width="0.3" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="27.01" y="549.5" ></text>
</g>
<g >
<title>pgstat_report_activity (141 samples, 0.12%)</title><rect x="1261.9" y="731" width="1.6" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text  x="1264.90" y="741.5" ></text>
</g>
<g >
<title>ResourceOwnerRememberRelationRef (12 samples, 0.01%)</title><rect x="637.2" y="507" width="0.1" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="640.19" y="517.5" ></text>
</g>
<g >
<title>AllocSetFree (204 samples, 0.17%)</title><rect x="1182.0" y="475" width="2.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="1184.96" y="485.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (191 samples, 0.16%)</title><rect x="58.9" y="267" width="2.2" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text  x="61.86" y="277.5" ></text>
</g>
<g >
<title>BoolGetDatum (9 samples, 0.01%)</title><rect x="1301.3" y="779" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="1304.35" y="789.5" ></text>
</g>
<g >
<title>sock_put (33 samples, 0.03%)</title><rect x="317.5" y="251" width="0.3" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="320.46" y="261.5" ></text>
</g>
<g >
<title>GrantLockLocal (36 samples, 0.03%)</title><rect x="491.3" y="619" width="0.4" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="494.28" y="629.5" ></text>
</g>
<g >
<title>ExecutorFinish (197 samples, 0.17%)</title><rect x="1199.1" y="619" width="2.3" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text  x="1202.13" y="629.5" ></text>
</g>
<g >
<title>get_page_from_freelist (10 samples, 0.01%)</title><rect x="25.5" y="283" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="28.54" y="293.5" ></text>
</g>
<g >
<title>llist_add_batch (202 samples, 0.17%)</title><rect x="339.2" y="107" width="2.4" height="15.0" fill="rgb(231,121,28)" rx="2" ry="2" />
<text  x="342.23" y="117.5" ></text>
</g>
<g >
<title>AtEOXact_Parallel (22 samples, 0.02%)</title><rect x="1297.6" y="779" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="1300.58" y="789.5" ></text>
</g>
<g >
<title>internal_flush (16,259 samples, 13.63%)</title><rect x="251.7" y="699" width="188.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="254.74" y="709.5" >internal_flush</text>
</g>
<g >
<title>FastPathTransferRelationLocks (88 samples, 0.07%)</title><rect x="21.5" y="379" width="1.0" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text  x="24.49" y="389.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (47 samples, 0.04%)</title><rect x="1272.7" y="683" width="0.6" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="1275.71" y="693.5" ></text>
</g>
<g >
<title>ConditionalCatalogCacheInitializeCache (17 samples, 0.01%)</title><rect x="591.0" y="523" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="594.05" y="533.5" ></text>
</g>
<g >
<title>SearchCatCache1 (149 samples, 0.12%)</title><rect x="593.1" y="555" width="1.7" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="596.12" y="565.5" ></text>
</g>
<g >
<title>_bt_num_array_keys (96 samples, 0.08%)</title><rect x="26.8" y="427" width="1.2" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text  x="29.85" y="437.5" ></text>
</g>
<g >
<title>AtEOXact_RelationMap (37 samples, 0.03%)</title><rect x="1298.4" y="779" width="0.4" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text  x="1301.39" y="789.5" ></text>
</g>
<g >
<title>exec_stmts (15 samples, 0.01%)</title><rect x="19.2" y="699" width="0.1" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="22.15" y="709.5" ></text>
</g>
<g >
<title>GetCachedPlan (18 samples, 0.02%)</title><rect x="1315.5" y="779" width="0.2" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text  x="1318.45" y="789.5" ></text>
</g>
<g >
<title>expr_setup_walker (126 samples, 0.11%)</title><rect x="603.7" y="539" width="1.4" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="606.67" y="549.5" ></text>
</g>
<g >
<title>pq_getbytes (217 samples, 0.18%)</title><rect x="242.6" y="683" width="2.6" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="245.64" y="693.5" ></text>
</g>
<g >
<title>heapam_index_fetch_end (78 samples, 0.07%)</title><rect x="1184.9" y="491" width="0.9" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text  x="1187.94" y="501.5" ></text>
</g>
<g >
<title>RelationFlushRelation (24 samples, 0.02%)</title><rect x="18.0" y="683" width="0.2" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="20.96" y="693.5" ></text>
</g>
<g >
<title>pgss_ProcessUtility (15 samples, 0.01%)</title><rect x="19.2" y="587" width="0.1" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text  x="22.15" y="597.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (16 samples, 0.01%)</title><rect x="879.6" y="443" width="0.2" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text  x="882.59" y="453.5" ></text>
</g>
<g >
<title>RelationFlushRelation (9 samples, 0.01%)</title><rect x="1389.1" y="395" width="0.1" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="1392.10" y="405.5" ></text>
</g>
<g >
<title>ReceiveSharedInvalidMessages (1,065 samples, 0.89%)</title><rect x="474.6" y="619" width="12.3" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text  x="477.59" y="629.5" ></text>
</g>
<g >
<title>ExecReadyExpr (115 samples, 0.10%)</title><rect x="612.7" y="587" width="1.4" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text  x="615.74" y="597.5" ></text>
</g>
<g >
<title>fmgr_info_cxt_security (11 samples, 0.01%)</title><rect x="1358.5" y="779" width="0.2" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="1361.52" y="789.5" ></text>
</g>
<g >
<title>pgstat_tracks_backend_bktype (11 samples, 0.01%)</title><rect x="79.5" y="283" width="0.2" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text  x="82.54" y="293.5" ></text>
</g>
<g >
<title>HeapTupleHasNulls (15 samples, 0.01%)</title><rect x="899.4" y="363" width="0.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="902.39" y="373.5" ></text>
</g>
</g>
</svg>
