Files
geedge-jira/attachment/28709/34.4.cpu51.perf.svg

7993 lines
362 KiB
XML
Raw Permalink Normal View History

2025-09-14 22:00:20 +00:00
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" width="1200" height="822" onload="init(evt)" viewBox="0 0 1200 822" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples. -->
<!-- NOTES: -->
<defs>
<linearGradient id="background" y1="0" y2="1" x1="0" x2="0" >
<stop stop-color="#eeeeee" offset="5%" />
<stop stop-color="#eeeeb0" offset="95%" />
</linearGradient>
</defs>
<style type="text/css">
text { font-family:Verdana; font-size:12px; fill:rgb(0,0,0); }
#search, #ignorecase { opacity:0.1; cursor:pointer; }
#search:hover, #search.show, #ignorecase:hover, #ignorecase.show { opacity:1; }
#subtitle { text-anchor:middle; font-color:rgb(160,160,160); }
#title { text-anchor:middle; font-size:17px}
#unzoom { cursor:pointer; }
#frames > *:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
.hide { display:none; }
.parent { opacity:0.5; }
</style>
<script type="text/ecmascript">
<![CDATA[
"use strict";
var details, searchbtn, unzoombtn, matchedtxt, svg, searching, currentSearchTerm, ignorecase, ignorecaseBtn;
function init(evt) {
details = document.getElementById("details").firstChild;
searchbtn = document.getElementById("search");
ignorecaseBtn = document.getElementById("ignorecase");
unzoombtn = document.getElementById("unzoom");
matchedtxt = document.getElementById("matched");
svg = document.getElementsByTagName("svg")[0];
searching = 0;
currentSearchTerm = null;
}
window.addEventListener("click", function(e) {
var target = find_group(e.target);
if (target) {
if (target.nodeName == "a") {
if (e.ctrlKey === false) return;
e.preventDefault();
}
if (target.classList.contains("parent")) unzoom();
zoom(target);
}
else if (e.target.id == "unzoom") unzoom();
else if (e.target.id == "search") search_prompt();
else if (e.target.id == "ignorecase") toggle_ignorecase();
}, false)
// mouse-over for info
// show
window.addEventListener("mouseover", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = "Function: " + g_to_text(target);
}, false)
// clear
window.addEventListener("mouseout", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = ' ';
}, false)
// ctrl-F for search
window.addEventListener("keydown",function (e) {
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
search_prompt();
}
}, false)
// ctrl-I to toggle case-sensitive search
window.addEventListener("keydown",function (e) {
if (e.ctrlKey && e.keyCode === 73) {
e.preventDefault();
toggle_ignorecase();
}
}, false)
// functions
function find_child(node, selector) {
var children = node.querySelectorAll(selector);
if (children.length) return children[0];
return;
}
function find_group(node) {
var parent = node.parentElement;
if (!parent) return;
if (parent.id == "frames") return node;
return find_group(parent);
}
function orig_save(e, attr, val) {
if (e.attributes["_orig_" + attr] != undefined) return;
if (e.attributes[attr] == undefined) return;
if (val == undefined) val = e.attributes[attr].value;
e.setAttribute("_orig_" + attr, val);
}
function orig_load(e, attr) {
if (e.attributes["_orig_"+attr] == undefined) return;
e.attributes[attr].value = e.attributes["_orig_" + attr].value;
e.removeAttribute("_orig_"+attr);
}
function g_to_text(e) {
var text = find_child(e, "title").firstChild.nodeValue;
return (text)
}
function g_to_func(e) {
var func = g_to_text(e);
// if there's any manipulation we want to do to the function
// name before it's searched, do it here before returning.
return (func);
}
function update_text(e) {
var r = find_child(e, "rect");
var t = find_child(e, "text");
var w = parseFloat(r.attributes.width.value) -3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
t.attributes.x.value = parseFloat(r.attributes.x.value) + 3;
// Smaller than this size won't fit anything
if (w < 2 * 12 * 0.59) {
t.textContent = "";
return;
}
t.textContent = txt;
// Fit in full text width
if (/^ *$/.test(txt) || t.getSubStringLength(0, txt.length) < w)
return;
for (var x = txt.length - 2; x > 0; x--) {
if (t.getSubStringLength(0, x + 2) <= w) {
t.textContent = txt.substring(0, x) + "..";
return;
}
}
t.textContent = "";
}
// zoom
function zoom_reset(e) {
if (e.attributes != undefined) {
orig_load(e, "x");
orig_load(e, "width");
}
if (e.childNodes == undefined) return;
for (var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_reset(c[i]);
}
}
function zoom_child(e, x, ratio) {
if (e.attributes != undefined) {
if (e.attributes.x != undefined) {
orig_save(e, "x");
e.attributes.x.value = (parseFloat(e.attributes.x.value) - x - 10) * ratio + 10;
if (e.tagName == "text")
e.attributes.x.value = find_child(e.parentNode, "rect[x]").attributes.x.value + 3;
}
if (e.attributes.width != undefined) {
orig_save(e, "width");
e.attributes.width.value = parseFloat(e.attributes.width.value) * ratio;
}
}
if (e.childNodes == undefined) return;
for (var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_child(c[i], x - 10, ratio);
}
}
function zoom_parent(e) {
if (e.attributes) {
if (e.attributes.x != undefined) {
orig_save(e, "x");
e.attributes.x.value = 10;
}
if (e.attributes.width != undefined) {
orig_save(e, "width");
e.attributes.width.value = parseInt(svg.width.baseVal.value) - (10 * 2);
}
}
if (e.childNodes == undefined) return;
for (var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_parent(c[i]);
}
}
function zoom(node) {
var attr = find_child(node, "rect").attributes;
var width = parseFloat(attr.width.value);
var xmin = parseFloat(attr.x.value);
var xmax = parseFloat(xmin + width);
var ymin = parseFloat(attr.y.value);
var ratio = (svg.width.baseVal.value - 2 * 10) / width;
// XXX: Workaround for JavaScript float issues (fix me)
var fudge = 0.0001;
unzoombtn.classList.remove("hide");
var el = document.getElementById("frames").children;
for (var i = 0; i < el.length; i++) {
var e = el[i];
var a = find_child(e, "rect").attributes;
var ex = parseFloat(a.x.value);
var ew = parseFloat(a.width.value);
var upstack;
// Is it an ancestor
if (0 == 0) {
upstack = parseFloat(a.y.value) > ymin;
} else {
upstack = parseFloat(a.y.value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew+fudge) >= xmax) {
e.classList.add("parent");
zoom_parent(e);
update_text(e);
}
// not in current path
else
e.classList.add("hide");
}
// Children maybe
else {
// no common path
if (ex < xmin || ex + fudge >= xmax) {
e.classList.add("hide");
}
else {
zoom_child(e, xmin, ratio);
update_text(e);
}
}
}
search();
}
function unzoom() {
unzoombtn.classList.add("hide");
var el = document.getElementById("frames").children;
for(var i = 0; i < el.length; i++) {
el[i].classList.remove("parent");
el[i].classList.remove("hide");
zoom_reset(el[i]);
update_text(el[i]);
}
search();
}
// search
function toggle_ignorecase() {
ignorecase = !ignorecase;
if (ignorecase) {
ignorecaseBtn.classList.add("show");
} else {
ignorecaseBtn.classList.remove("show");
}
reset_search();
search();
}
function reset_search() {
var el = document.querySelectorAll("#frames rect");
for (var i = 0; i < el.length; i++) {
orig_load(el[i], "fill")
}
}
function search_prompt() {
if (!searching) {
var term = prompt("Enter a search term (regexp " +
"allowed, eg: ^ext4_)"
+ (ignorecase ? ", ignoring case" : "")
+ "\nPress Ctrl-i to toggle case sensitivity", "");
if (term != null) {
currentSearchTerm = term;
search();
}
} else {
reset_search();
searching = 0;
currentSearchTerm = null;
searchbtn.classList.remove("show");
searchbtn.firstChild.nodeValue = "Search"
matchedtxt.classList.add("hide");
matchedtxt.firstChild.nodeValue = ""
}
}
function search(term) {
if (currentSearchTerm === null) return;
var term = currentSearchTerm;
var re = new RegExp(term, ignorecase ? 'i' : '');
var el = document.getElementById("frames").children;
var matches = new Object();
var maxwidth = 0;
for (var i = 0; i < el.length; i++) {
var e = el[i];
var func = g_to_func(e);
var rect = find_child(e, "rect");
if (func == null || rect == null)
continue;
// Save max width. Only works as we have a root frame
var w = parseFloat(rect.attributes.width.value);
if (w > maxwidth)
maxwidth = w;
if (func.match(re)) {
// highlight
var x = parseFloat(rect.attributes.x.value);
orig_save(rect, "fill");
rect.attributes.fill.value = "rgb(230,0,230)";
// remember matches
if (matches[x] == undefined) {
matches[x] = w;
} else {
if (w > matches[x]) {
// overwrite with parent
matches[x] = w;
}
}
searching = 1;
}
}
if (!searching)
return;
searchbtn.classList.add("show");
searchbtn.firstChild.nodeValue = "Reset Search";
// calculate percent matched, excluding vertical overlap
var count = 0;
var lastx = -1;
var lastw = 0;
var keys = Array();
for (k in matches) {
if (matches.hasOwnProperty(k))
keys.push(k);
}
// sort the matched frames by their x location
// ascending, then width descending
keys.sort(function(a, b){
return a - b;
});
// Step through frames saving only the biggest bottom-up frames
// thanks to the sort order. This relies on the tree property
// where children are always smaller than their parents.
var fudge = 0.0001; // JavaScript floating point
for (var k in keys) {
var x = parseFloat(keys[k]);
var w = matches[keys[k]];
if (x >= lastx + lastw - fudge) {
count += w;
lastx = x;
lastw = w;
}
}
// display matched percent
matchedtxt.classList.remove("hide");
var pct = 100 * count / maxwidth;
if (pct != 100) pct = pct.toFixed(1)
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
}
]]>
</script>
<rect x="0.0" y="0" width="1200.0" height="822.0" fill="url(#background)" />
<text id="title" x="600.00" y="24" >Flame Graph</text>
<text id="details" x="10.00" y="805" > </text>
<text id="unzoom" x="10.00" y="24" class="hide">Reset Zoom</text>
<text id="search" x="1090.00" y="24" >Search</text>
<text id="ignorecase" x="1174.00" y="24" >ic</text>
<text id="matched" x="1090.00" y="805" > </text>
<g id="frames">
<g >
<title>ASN1_item_d2i (6 samples, 0.03%)</title><rect x="1082.6" y="373" width="0.3" height="15.0" fill="rgb(210,38,53)" rx="2" ry="2" />
<text x="1085.59" y="383.5" ></text>
</g>
<g >
<title>cycle_pkt_dump_by_classify (2 samples, 0.01%)</title><rect x="911.9" y="661" width="0.1" height="15.0" fill="rgb(231,176,0)" rx="2" ry="2" />
<text x="914.88" y="671.5" ></text>
</g>
<g >
<title>CRefCountManager::dec_reference_count (41 samples, 0.20%)</title><rect x="796.1" y="693" width="2.4" height="15.0" fill="rgb(212,171,14)" rx="2" ry="2" />
<text x="799.10" y="703.5" ></text>
</g>
<g >
<title>[tsg_ddos_sketch.so] (14 samples, 0.07%)</title><rect x="1087.0" y="453" width="0.8" height="15.0" fill="rgb(213,212,31)" rx="2" ry="2" />
<text x="1089.95" y="463.5" ></text>
</g>
<g >
<title>[tsg_ddos_sketch.so] (10 samples, 0.05%)</title><rect x="1115.0" y="453" width="0.6" height="15.0" fill="rgb(243,213,7)" rx="2" ry="2" />
<text x="1117.97" y="463.5" ></text>
</g>
<g >
<title>plugin_process_data (2 samples, 0.01%)</title><rect x="1181.6" y="453" width="0.1" height="15.0" fill="rgb(251,95,40)" rx="2" ry="2" />
<text x="1184.62" y="463.5" ></text>
</g>
<g >
<title>APP_SKETCH_UDP_PLUG_ENTRY (6 samples, 0.03%)</title><rect x="786.1" y="597" width="0.3" height="15.0" fill="rgb(218,50,47)" rx="2" ry="2" />
<text x="789.07" y="607.5" ></text>
</g>
<g >
<title>_IO_vsprintf (2 samples, 0.01%)</title><rect x="892.3" y="437" width="0.1" height="15.0" fill="rgb(247,203,39)" rx="2" ry="2" />
<text x="895.30" y="447.5" ></text>
</g>
<g >
<title>handle_mm_fault (20 samples, 0.10%)</title><rect x="1021.2" y="357" width="1.2" height="15.0" fill="rgb(222,27,10)" rx="2" ry="2" />
<text x="1024.18" y="367.5" ></text>
</g>
<g >
<title>sapp_mem_malloc (2 samples, 0.01%)</title><rect x="959.8" y="533" width="0.2" height="15.0" fill="rgb(207,192,44)" rx="2" ry="2" />
<text x="962.84" y="543.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="895.5" y="613" width="0.2" height="15.0" fill="rgb(236,190,11)" rx="2" ry="2" />
<text x="898.55" y="623.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (2 samples, 0.01%)</title><rect x="882.0" y="533" width="0.1" height="15.0" fill="rgb(230,83,37)" rx="2" ry="2" />
<text x="884.98" y="543.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.01%)</title><rect x="964.0" y="533" width="0.1" height="15.0" fill="rgb(247,166,28)" rx="2" ry="2" />
<text x="966.97" y="543.5" ></text>
</g>
<g >
<title>ipv4_entry (993 samples, 4.96%)</title><rect x="923.5" y="629" width="58.6" height="15.0" fill="rgb(244,16,49)" rx="2" ry="2" />
<text x="926.50" y="639.5" >ipv4_e..</text>
</g>
<g >
<title>ASN1_item_ex_d2i (25 samples, 0.12%)</title><rect x="888.3" y="357" width="1.5" height="15.0" fill="rgb(234,138,50)" rx="2" ry="2" />
<text x="891.29" y="367.5" ></text>
</g>
<g >
<title>[sapp] (36 samples, 0.18%)</title><rect x="993.6" y="597" width="2.2" height="15.0" fill="rgb(238,173,11)" rx="2" ry="2" />
<text x="996.64" y="607.5" ></text>
</g>
<g >
<title>fw_ssl_entry (2 samples, 0.01%)</title><rect x="888.2" y="373" width="0.1" height="15.0" fill="rgb(227,86,3)" rx="2" ry="2" />
<text x="891.17" y="383.5" ></text>
</g>
<g >
<title>MESA_htable_search_cb (2 samples, 0.01%)</title><rect x="1185.4" y="597" width="0.1" height="15.0" fill="rgb(208,32,41)" rx="2" ry="2" />
<text x="1188.40" y="607.5" ></text>
</g>
<g >
<title>Maat_plugin_get_EX_data (2 samples, 0.01%)</title><rect x="940.3" y="421" width="0.1" height="15.0" fill="rgb(217,148,29)" rx="2" ry="2" />
<text x="943.32" y="431.5" ></text>
</g>
<g >
<title>set_transport_addr (2 samples, 0.01%)</title><rect x="960.3" y="549" width="0.1" height="15.0" fill="rgb(221,225,22)" rx="2" ry="2" />
<text x="963.31" y="559.5" ></text>
</g>
<g >
<title>ASN1_primitive_new (2 samples, 0.01%)</title><rect x="881.0" y="197" width="0.2" height="15.0" fill="rgb(235,109,20)" rx="2" ry="2" />
<text x="884.04" y="207.5" ></text>
</g>
<g >
<title>ASN1_primitive_free (2 samples, 0.01%)</title><rect x="889.6" y="181" width="0.2" height="15.0" fill="rgb(225,64,54)" rx="2" ry="2" />
<text x="892.65" y="191.5" ></text>
</g>
<g >
<title>stream_process_tcp (3 samples, 0.01%)</title><rect x="892.7" y="533" width="0.1" height="15.0" fill="rgb(245,151,30)" rx="2" ry="2" />
<text x="895.66" y="543.5" ></text>
</g>
<g >
<title>ipv4_entry (32 samples, 0.16%)</title><rect x="779.9" y="725" width="1.9" height="15.0" fill="rgb(212,203,43)" rx="2" ry="2" />
<text x="782.88" y="735.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="1187.9" y="421" width="0.1" height="15.0" fill="rgb(227,215,1)" rx="2" ry="2" />
<text x="1190.88" y="431.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (4 samples, 0.02%)</title><rect x="934.5" y="293" width="0.2" height="15.0" fill="rgb(234,158,1)" rx="2" ry="2" />
<text x="937.48" y="303.5" ></text>
</g>
<g >
<title>[tsg_master.so] (18 samples, 0.09%)</title><rect x="891.1" y="469" width="1.0" height="15.0" fill="rgb(217,56,26)" rx="2" ry="2" />
<text x="894.06" y="479.5" ></text>
</g>
<g >
<title>CompareRule (8 samples, 0.04%)</title><rect x="880.4" y="709" width="0.5" height="15.0" fill="rgb(244,165,41)" rx="2" ry="2" />
<text x="883.45" y="719.5" ></text>
</g>
<g >
<title>stream_make_hash (6 samples, 0.03%)</title><rect x="1094.7" y="517" width="0.4" height="15.0" fill="rgb(219,114,13)" rx="2" ry="2" />
<text x="1097.74" y="527.5" ></text>
</g>
<g >
<title>Maat_table_runtime_get (7 samples, 0.03%)</title><rect x="817.2" y="725" width="0.4" height="15.0" fill="rgb(223,91,3)" rx="2" ry="2" />
<text x="820.21" y="735.5" ></text>
</g>
<g >
<title>[sapp] (8 samples, 0.04%)</title><rect x="1187.5" y="565" width="0.5" height="15.0" fill="rgb(212,200,10)" rx="2" ry="2" />
<text x="1190.52" y="575.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="936.1" y="277" width="0.1" height="15.0" fill="rgb(237,112,18)" rx="2" ry="2" />
<text x="939.13" y="287.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (7 samples, 0.03%)</title><rect x="1177.1" y="645" width="0.4" height="15.0" fill="rgb(237,181,25)" rx="2" ry="2" />
<text x="1180.08" y="655.5" ></text>
</g>
<g >
<title>CRYPTO_malloc (2 samples, 0.01%)</title><rect x="934.8" y="245" width="0.1" height="15.0" fill="rgb(243,178,24)" rx="2" ry="2" />
<text x="937.83" y="255.5" ></text>
</g>
<g >
<title>ssl_analyseStream (38 samples, 0.19%)</title><rect x="882.7" y="501" width="2.3" height="15.0" fill="rgb(211,199,3)" rx="2" ry="2" />
<text x="885.75" y="511.5" ></text>
</g>
<g >
<title>CAPTURE_UDP_PACKET_ENTRY (4 samples, 0.02%)</title><rect x="1112.1" y="501" width="0.2" height="15.0" fill="rgb(207,31,41)" rx="2" ry="2" />
<text x="1115.08" y="511.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (3 samples, 0.01%)</title><rect x="1083.9" y="309" width="0.2" height="15.0" fill="rgb(220,31,8)" rx="2" ry="2" />
<text x="1086.89" y="319.5" ></text>
</g>
<g >
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="937.7" y="437" width="0.2" height="15.0" fill="rgb(233,103,23)" rx="2" ry="2" />
<text x="940.72" y="447.5" ></text>
</g>
<g >
<title>tsg_get_fqdn_category_id (2 samples, 0.01%)</title><rect x="890.4" y="325" width="0.1" height="15.0" fill="rgb(242,39,39)" rx="2" ry="2" />
<text x="893.35" y="335.5" ></text>
</g>
<g >
<title>inet_ntop (3 samples, 0.01%)</title><rect x="892.5" y="469" width="0.2" height="15.0" fill="rgb(215,164,46)" rx="2" ry="2" />
<text x="895.48" y="479.5" ></text>
</g>
<g >
<title>__x2apic_send_IPI_mask (3 samples, 0.01%)</title><rect x="891.9" y="117" width="0.2" height="15.0" fill="rgb(225,208,33)" rx="2" ry="2" />
<text x="894.95" y="127.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (4 samples, 0.02%)</title><rect x="882.2" y="517" width="0.2" height="15.0" fill="rgb(222,98,18)" rx="2" ry="2" />
<text x="885.16" y="527.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (37 samples, 0.18%)</title><rect x="781.8" y="565" width="2.1" height="15.0" fill="rgb(254,128,53)" rx="2" ry="2" />
<text x="784.76" y="575.5" ></text>
</g>
<g >
<title>stream_process_udp (5 samples, 0.02%)</title><rect x="781.4" y="645" width="0.2" height="15.0" fill="rgb(219,44,28)" rx="2" ry="2" />
<text x="784.35" y="655.5" ></text>
</g>
<g >
<title>[sapp] (9 samples, 0.04%)</title><rect x="1188.1" y="565" width="0.5" height="15.0" fill="rgb(254,33,3)" rx="2" ry="2" />
<text x="1191.05" y="575.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (6 samples, 0.03%)</title><rect x="1182.0" y="629" width="0.3" height="15.0" fill="rgb(239,113,48)" rx="2" ry="2" />
<text x="1184.98" y="639.5" ></text>
</g>
<g >
<title>[tsg_ddos_sketch.so] (12 samples, 0.06%)</title><rect x="1087.0" y="437" width="0.7" height="15.0" fill="rgb(213,205,48)" rx="2" ry="2" />
<text x="1089.95" y="447.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (32 samples, 0.16%)</title><rect x="783.9" y="549" width="1.9" height="15.0" fill="rgb(223,227,52)" rx="2" ry="2" />
<text x="786.95" y="559.5" ></text>
</g>
<g >
<title>sprintf (7 samples, 0.03%)</title><rect x="1185.0" y="597" width="0.4" height="15.0" fill="rgb(248,94,30)" rx="2" ry="2" />
<text x="1187.99" y="607.5" ></text>
</g>
<g >
<title>[librulescan.so.2.2] (886 samples, 4.43%)</title><rect x="492.6" y="693" width="52.2" height="15.0" fill="rgb(246,208,43)" rx="2" ry="2" />
<text x="495.56" y="703.5" >[libr..</text>
</g>
<g >
<title>tsg_get_subscribe_id (3 samples, 0.01%)</title><rect x="887.7" y="549" width="0.2" height="15.0" fill="rgb(253,16,13)" rx="2" ry="2" />
<text x="890.70" y="559.5" ></text>
</g>
<g >
<title>PROT_PROCESS (2 samples, 0.01%)</title><rect x="1177.9" y="533" width="0.1" height="15.0" fill="rgb(206,144,3)" rx="2" ry="2" />
<text x="1180.91" y="543.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.5] (2 samples, 0.01%)</title><rect x="881.7" y="421" width="0.1" height="15.0" fill="rgb(223,181,49)" rx="2" ry="2" />
<text x="884.68" y="431.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (3 samples, 0.01%)</title><rect x="883.9" y="261" width="0.2" height="15.0" fill="rgb(246,16,51)" rx="2" ry="2" />
<text x="886.93" y="271.5" ></text>
</g>
<g >
<title>tsg_get_ip_location (3 samples, 0.01%)</title><rect x="961.4" y="453" width="0.2" height="15.0" fill="rgb(246,226,29)" rx="2" ry="2" />
<text x="964.37" y="463.5" ></text>
</g>
<g >
<title>Maat_table_get_scan_by_id (3 samples, 0.01%)</title><rect x="810.2" y="725" width="0.2" height="15.0" fill="rgb(206,166,16)" rx="2" ry="2" />
<text x="813.19" y="735.5" ></text>
</g>
<g >
<title>dealipv4tcppkt (17 samples, 0.08%)</title><rect x="881.0" y="597" width="1.0" height="15.0" fill="rgb(221,130,35)" rx="2" ry="2" />
<text x="883.98" y="607.5" ></text>
</g>
<g >
<title>ASN1_item_ex_i2d (3 samples, 0.01%)</title><rect x="1083.7" y="325" width="0.2" height="15.0" fill="rgb(232,214,32)" rx="2" ry="2" />
<text x="1086.71" y="335.5" ></text>
</g>
<g >
<title>ssl_callPlugins (2 samples, 0.01%)</title><rect x="890.6" y="437" width="0.2" height="15.0" fill="rgb(239,48,42)" rx="2" ry="2" />
<text x="893.65" y="447.5" ></text>
</g>
<g >
<title>dealipv4udppkt (15 samples, 0.07%)</title><rect x="1173.5" y="741" width="0.9" height="15.0" fill="rgb(211,77,42)" rx="2" ry="2" />
<text x="1176.54" y="751.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (2 samples, 0.01%)</title><rect x="950.9" y="469" width="0.2" height="15.0" fill="rgb(241,67,15)" rx="2" ry="2" />
<text x="953.93" y="479.5" ></text>
</g>
<g >
<title>ASN1_template_free (2 samples, 0.01%)</title><rect x="889.6" y="197" width="0.2" height="15.0" fill="rgb(210,74,10)" rx="2" ry="2" />
<text x="892.65" y="207.5" ></text>
</g>
<g >
<title>[sapp] (332 samples, 1.66%)</title><rect x="929.3" y="549" width="19.6" height="15.0" fill="rgb(221,216,7)" rx="2" ry="2" />
<text x="932.29" y="559.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (23 samples, 0.11%)</title><rect x="779.9" y="581" width="1.4" height="15.0" fill="rgb(242,90,11)" rx="2" ry="2" />
<text x="782.93" y="591.5" ></text>
</g>
<g >
<title>marsio_buff_datalen (2 samples, 0.01%)</title><rect x="1165.8" y="677" width="0.1" height="15.0" fill="rgb(253,9,7)" rx="2" ry="2" />
<text x="1168.76" y="687.5" ></text>
</g>
<g >
<title>IEEE_8021_entry (39 samples, 0.19%)</title><rect x="1175.2" y="725" width="2.3" height="15.0" fill="rgb(207,116,4)" rx="2" ry="2" />
<text x="1178.19" y="735.5" ></text>
</g>
<g >
<title>[sapp] (6 samples, 0.03%)</title><rect x="1176.3" y="613" width="0.3" height="15.0" fill="rgb(228,65,42)" rx="2" ry="2" />
<text x="1179.26" y="623.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.01%)</title><rect x="1082.9" y="229" width="0.2" height="15.0" fill="rgb(243,105,14)" rx="2" ry="2" />
<text x="1085.94" y="239.5" ></text>
</g>
<g >
<title>_itoa_word (2 samples, 0.01%)</title><rect x="1185.3" y="549" width="0.1" height="15.0" fill="rgb(226,126,8)" rx="2" ry="2" />
<text x="1188.28" y="559.5" ></text>
</g>
<g >
<title>counting_bloom_check (2 samples, 0.01%)</title><rect x="960.2" y="517" width="0.1" height="15.0" fill="rgb(207,58,14)" rx="2" ry="2" />
<text x="963.19" y="527.5" ></text>
</g>
<g >
<title>hash_func (43 samples, 0.21%)</title><rect x="1099.8" y="485" width="2.5" height="15.0" fill="rgb(252,73,1)" rx="2" ry="2" />
<text x="1102.81" y="495.5" ></text>
</g>
<g >
<title>stream_addr_list_ntop (2 samples, 0.01%)</title><rect x="1188.7" y="613" width="0.1" height="15.0" fill="rgb(209,107,2)" rx="2" ry="2" />
<text x="1191.70" y="623.5" ></text>
</g>
<g >
<title>__strlen_sse2_pminub (4 samples, 0.02%)</title><rect x="1178.4" y="533" width="0.3" height="15.0" fill="rgb(235,189,49)" rx="2" ry="2" />
<text x="1181.44" y="543.5" ></text>
</g>
<g >
<title>sapp_mem_malloc (2 samples, 0.01%)</title><rect x="963.1" y="517" width="0.2" height="15.0" fill="rgb(212,193,33)" rx="2" ry="2" />
<text x="966.14" y="527.5" ></text>
</g>
<g >
<title>http_callPlugin (2 samples, 0.01%)</title><rect x="933.5" y="373" width="0.1" height="15.0" fill="rgb(242,24,47)" rx="2" ry="2" />
<text x="936.47" y="383.5" ></text>
</g>
<g >
<title>tsg_get_umts_user_info (2 samples, 0.01%)</title><rect x="1183.8" y="629" width="0.1" height="15.0" fill="rgb(248,186,16)" rx="2" ry="2" />
<text x="1186.81" y="639.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.5] (2 samples, 0.01%)</title><rect x="970.6" y="453" width="0.1" height="15.0" fill="rgb(205,197,23)" rx="2" ry="2" />
<text x="973.57" y="463.5" ></text>
</g>
<g >
<title>project_req_get_struct (4 samples, 0.02%)</title><rect x="947.4" y="469" width="0.2" height="15.0" fill="rgb(246,89,32)" rx="2" ry="2" />
<text x="950.39" y="479.5" ></text>
</g>
<g >
<title>__schedule (3 samples, 0.01%)</title><rect x="1189.8" y="693" width="0.1" height="15.0" fill="rgb(231,77,36)" rx="2" ry="2" />
<text x="1192.76" y="703.5" ></text>
</g>
<g >
<title>findstreamindex (123 samples, 0.61%)</title><rect x="1087.8" y="533" width="7.3" height="15.0" fill="rgb(224,118,33)" rx="2" ry="2" />
<text x="1090.84" y="543.5" ></text>
</g>
<g >
<title>plugin_process_pending (3 samples, 0.01%)</title><rect x="1083.9" y="357" width="0.2" height="15.0" fill="rgb(240,144,27)" rx="2" ry="2" />
<text x="1086.89" y="367.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (5 samples, 0.02%)</title><rect x="1187.6" y="373" width="0.3" height="15.0" fill="rgb(239,61,53)" rx="2" ry="2" />
<text x="1190.58" y="383.5" ></text>
</g>
<g >
<title>[libMV_sketch.so.2.1] (10 samples, 0.05%)</title><rect x="1087.1" y="405" width="0.6" height="15.0" fill="rgb(207,92,46)" rx="2" ry="2" />
<text x="1090.07" y="415.5" ></text>
</g>
<g >
<title>grab_mid (4 samples, 0.02%)</title><rect x="790.1" y="725" width="0.2" height="15.0" fill="rgb(217,35,32)" rx="2" ry="2" />
<text x="793.08" y="735.5" ></text>
</g>
<g >
<title>tsg_scan_nesting_addr (2 samples, 0.01%)</title><rect x="885.5" y="501" width="0.1" height="15.0" fill="rgb(250,74,53)" rx="2" ry="2" />
<text x="888.46" y="511.5" ></text>
</g>
<g >
<title>stream_process (10 samples, 0.05%)</title><rect x="964.2" y="533" width="0.6" height="15.0" fill="rgb(245,43,17)" rx="2" ry="2" />
<text x="967.20" y="543.5" ></text>
</g>
<g >
<title>http_judgeHttpProtocol (2 samples, 0.01%)</title><rect x="1081.8" y="437" width="0.1" height="15.0" fill="rgb(223,48,18)" rx="2" ry="2" />
<text x="1084.82" y="447.5" ></text>
</g>
<g >
<title>sock_def_readable (2 samples, 0.01%)</title><rect x="896.5" y="501" width="0.1" height="15.0" fill="rgb(244,207,5)" rx="2" ry="2" />
<text x="899.49" y="511.5" ></text>
</g>
<g >
<title>stream_process (3 samples, 0.01%)</title><rect x="892.7" y="517" width="0.1" height="15.0" fill="rgb(237,189,20)" rx="2" ry="2" />
<text x="895.66" y="527.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (4 samples, 0.02%)</title><rect x="934.5" y="261" width="0.2" height="15.0" fill="rgb(222,189,41)" rx="2" ry="2" />
<text x="937.48" y="271.5" ></text>
</g>
<g >
<title>[libpthread-2.17.so] (13 samples, 0.06%)</title><rect x="896.0" y="725" width="0.7" height="15.0" fill="rgb(249,28,32)" rx="2" ry="2" />
<text x="898.96" y="735.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (3 samples, 0.01%)</title><rect x="943.4" y="469" width="0.2" height="15.0" fill="rgb(217,141,13)" rx="2" ry="2" />
<text x="946.44" y="479.5" ></text>
</g>
<g >
<title>asn1_ex_c2i (5 samples, 0.02%)</title><rect x="883.6" y="229" width="0.3" height="15.0" fill="rgb(208,227,21)" rx="2" ry="2" />
<text x="886.57" y="239.5" ></text>
</g>
<g >
<title>[sapp] (19 samples, 0.09%)</title><rect x="1187.5" y="709" width="1.1" height="15.0" fill="rgb(241,107,23)" rx="2" ry="2" />
<text x="1190.52" y="719.5" ></text>
</g>
<g >
<title>[sapp] (190 samples, 0.95%)</title><rect x="930.0" y="533" width="11.2" height="15.0" fill="rgb(225,158,4)" rx="2" ry="2" />
<text x="932.99" y="543.5" ></text>
</g>
<g >
<title>std::_Rb_tree_increment (9 samples, 0.04%)</title><rect x="1152.7" y="501" width="0.5" height="15.0" fill="rgb(222,13,4)" rx="2" ry="2" />
<text x="1155.66" y="511.5" ></text>
</g>
<g >
<title>ipv4_entry (514 samples, 2.57%)</title><rect x="928.2" y="581" width="30.3" height="15.0" fill="rgb(209,176,53)" rx="2" ry="2" />
<text x="931.22" y="591.5" >ip..</text>
</g>
<g >
<title>system_call_fastpath (2 samples, 0.01%)</title><rect x="871.7" y="725" width="0.1" height="15.0" fill="rgb(222,184,31)" rx="2" ry="2" />
<text x="874.72" y="735.5" ></text>
</g>
<g >
<title>system_call_fastpath (13 samples, 0.06%)</title><rect x="896.0" y="709" width="0.7" height="15.0" fill="rgb(210,147,21)" rx="2" ry="2" />
<text x="898.96" y="719.5" ></text>
</g>
<g >
<title>ipv6_entry (104 samples, 0.52%)</title><rect x="888.0" y="677" width="6.1" height="15.0" fill="rgb(234,206,44)" rx="2" ry="2" />
<text x="891.00" y="687.5" ></text>
</g>
<g >
<title>[sapp] (2 samples, 0.01%)</title><rect x="1062.7" y="437" width="0.1" height="15.0" fill="rgb(209,184,25)" rx="2" ry="2" />
<text x="1065.71" y="447.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (23 samples, 0.11%)</title><rect x="886.3" y="581" width="1.4" height="15.0" fill="rgb(228,103,18)" rx="2" ry="2" />
<text x="889.34" y="591.5" ></text>
</g>
<g >
<title>[libprotoident.so] (5 samples, 0.02%)</title><rect x="1084.3" y="405" width="0.3" height="15.0" fill="rgb(236,30,46)" rx="2" ry="2" />
<text x="1087.30" y="415.5" ></text>
</g>
<g >
<title>http_doWithEntity (4 samples, 0.02%)</title><rect x="1081.5" y="421" width="0.3" height="15.0" fill="rgb(250,34,3)" rx="2" ry="2" />
<text x="1084.53" y="431.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (4 samples, 0.02%)</title><rect x="1177.9" y="645" width="0.2" height="15.0" fill="rgb(217,60,16)" rx="2" ry="2" />
<text x="1180.91" y="655.5" ></text>
</g>
<g >
<title>[sapp] (2 samples, 0.01%)</title><rect x="1102.8" y="517" width="0.1" height="15.0" fill="rgb(229,133,38)" rx="2" ry="2" />
<text x="1105.82" y="527.5" ></text>
</g>
<g >
<title>PROT_PROCESS (3 samples, 0.01%)</title><rect x="1083.9" y="373" width="0.2" height="15.0" fill="rgb(238,66,39)" rx="2" ry="2" />
<text x="1086.89" y="383.5" ></text>
</g>
<g >
<title>[sapp] (20 samples, 0.10%)</title><rect x="958.5" y="565" width="1.2" height="15.0" fill="rgb(246,135,5)" rx="2" ry="2" />
<text x="961.54" y="575.5" ></text>
</g>
<g >
<title>ASN1_primitive_new (2 samples, 0.01%)</title><rect x="934.8" y="277" width="0.1" height="15.0" fill="rgb(245,128,26)" rx="2" ry="2" />
<text x="937.83" y="287.5" ></text>
</g>
<g >
<title>lrustream (2 samples, 0.01%)</title><rect x="895.5" y="725" width="0.2" height="15.0" fill="rgb(232,32,46)" rx="2" ry="2" />
<text x="898.55" y="735.5" ></text>
</g>
<g >
<title>Maat_set_scan_status (2 samples, 0.01%)</title><rect x="1179.0" y="581" width="0.1" height="15.0" fill="rgb(250,72,3)" rx="2" ry="2" />
<text x="1181.97" y="591.5" ></text>
</g>
<g >
<title>[libMESA_field_stat2.so] (3 samples, 0.01%)</title><rect x="940.8" y="405" width="0.2" height="15.0" fill="rgb(206,10,4)" rx="2" ry="2" />
<text x="943.79" y="415.5" ></text>
</g>
<g >
<title>counting_bloom_check (3 samples, 0.01%)</title><rect x="1111.1" y="517" width="0.2" height="15.0" fill="rgb(229,8,26)" rx="2" ry="2" />
<text x="1114.14" y="527.5" ></text>
</g>
<g >
<title>tsg_get_ip_location (5 samples, 0.02%)</title><rect x="1183.0" y="629" width="0.3" height="15.0" fill="rgb(251,163,30)" rx="2" ry="2" />
<text x="1186.04" y="639.5" ></text>
</g>
<g >
<title>MurmurHash3_x64_128 (17 samples, 0.08%)</title><rect x="1130.0" y="533" width="1.0" height="15.0" fill="rgb(244,34,48)" rx="2" ry="2" />
<text x="1133.01" y="543.5" ></text>
</g>
<g >
<title>lrustream (4 samples, 0.02%)</title><rect x="950.8" y="549" width="0.3" height="15.0" fill="rgb(251,203,19)" rx="2" ry="2" />
<text x="953.81" y="559.5" ></text>
</g>
<g >
<title>MurmurHash3_x64_128 (6 samples, 0.03%)</title><rect x="1102.0" y="469" width="0.3" height="15.0" fill="rgb(243,106,15)" rx="2" ry="2" />
<text x="1104.99" y="479.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (4 samples, 0.02%)</title><rect x="1082.9" y="293" width="0.3" height="15.0" fill="rgb(221,53,14)" rx="2" ry="2" />
<text x="1085.94" y="303.5" ></text>
</g>
<g >
<title>ssl_analyseHandShake (2 samples, 0.01%)</title><rect x="958.9" y="437" width="0.1" height="15.0" fill="rgb(244,228,45)" rx="2" ry="2" />
<text x="961.90" y="447.5" ></text>
</g>
<g >
<title>__snprintf (3 samples, 0.01%)</title><rect x="964.3" y="485" width="0.2" height="15.0" fill="rgb(244,58,34)" rx="2" ry="2" />
<text x="967.32" y="495.5" ></text>
</g>
<g >
<title>inet_ntop (3 samples, 0.01%)</title><rect x="895.8" y="549" width="0.2" height="15.0" fill="rgb(251,65,32)" rx="2" ry="2" />
<text x="898.78" y="559.5" ></text>
</g>
<g >
<title>malloc (3 samples, 0.01%)</title><rect x="884.3" y="309" width="0.2" height="15.0" fill="rgb(225,124,26)" rx="2" ry="2" />
<text x="887.34" y="319.5" ></text>
</g>
<g >
<title>stream_process (37 samples, 0.18%)</title><rect x="781.8" y="581" width="2.1" height="15.0" fill="rgb(252,106,35)" rx="2" ry="2" />
<text x="784.76" y="591.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (3 samples, 0.01%)</title><rect x="1083.2" y="325" width="0.2" height="15.0" fill="rgb(231,42,41)" rx="2" ry="2" />
<text x="1086.24" y="335.5" ></text>
</g>
<g >
<title>_int_malloc (4 samples, 0.02%)</title><rect x="890.1" y="293" width="0.3" height="15.0" fill="rgb(250,71,51)" rx="2" ry="2" />
<text x="893.12" y="303.5" ></text>
</g>
<g >
<title>stream_process_tcp (2 samples, 0.01%)</title><rect x="1188.7" y="725" width="0.1" height="15.0" fill="rgb(246,6,22)" rx="2" ry="2" />
<text x="1191.70" y="735.5" ></text>
</g>
<g >
<title>http_analyseHttpConnection (323 samples, 1.61%)</title><rect x="1062.9" y="453" width="19.0" height="15.0" fill="rgb(231,223,49)" rx="2" ry="2" />
<text x="1065.89" y="463.5" ></text>
</g>
<g >
<title>CBoolExprMatch::get_mapped_id (24 samples, 0.12%)</title><rect x="807.8" y="661" width="1.4" height="15.0" fill="rgb(216,13,24)" rx="2" ry="2" />
<text x="810.78" y="671.5" ></text>
</g>
<g >
<title>__nfqnl_enqueue_packet (2 samples, 0.01%)</title><rect x="896.5" y="565" width="0.1" height="15.0" fill="rgb(247,38,54)" rx="2" ry="2" />
<text x="899.49" y="575.5" ></text>
</g>
<g >
<title>Maat_ip_plugin_get_EX_data (2 samples, 0.01%)</title><rect x="940.1" y="421" width="0.1" height="15.0" fill="rgb(224,136,13)" rx="2" ry="2" />
<text x="943.08" y="431.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.01%)</title><rect x="935.6" y="261" width="0.1" height="15.0" fill="rgb(223,63,10)" rx="2" ry="2" />
<text x="938.60" y="271.5" ></text>
</g>
<g >
<title>lrustream (36 samples, 0.18%)</title><rect x="1119.6" y="597" width="2.2" height="15.0" fill="rgb(228,17,24)" rx="2" ry="2" />
<text x="1122.63" y="607.5" ></text>
</g>
<g >
<title>checkstreamorder (18 samples, 0.09%)</title><rect x="942.1" y="517" width="1.0" height="15.0" fill="rgb(207,61,48)" rx="2" ry="2" />
<text x="945.08" y="527.5" ></text>
</g>
<g >
<title>ASN1_item_new (2 samples, 0.01%)</title><rect x="881.0" y="245" width="0.2" height="15.0" fill="rgb(212,135,4)" rx="2" ry="2" />
<text x="884.04" y="255.5" ></text>
</g>
<g >
<title>__snprintf (2 samples, 0.01%)</title><rect x="884.2" y="421" width="0.1" height="15.0" fill="rgb(229,56,48)" rx="2" ry="2" />
<text x="887.16" y="431.5" ></text>
</g>
<g >
<title>[sapp] (4 samples, 0.02%)</title><rect x="1177.9" y="709" width="0.2" height="15.0" fill="rgb(218,145,49)" rx="2" ry="2" />
<text x="1180.91" y="719.5" ></text>
</g>
<g >
<title>operator new[] (136 samples, 0.68%)</title><rect x="536.8" y="677" width="8.0" height="15.0" fill="rgb(253,146,20)" rx="2" ry="2" />
<text x="539.80" y="687.5" ></text>
</g>
<g >
<title>stream_process_tcp (2 samples, 0.01%)</title><rect x="1118.1" y="533" width="0.1" height="15.0" fill="rgb(216,45,15)" rx="2" ry="2" />
<text x="1121.10" y="543.5" ></text>
</g>
<g >
<title>CBoolExprMatch::find_matched_result (20 samples, 0.10%)</title><rect x="855.0" y="645" width="1.1" height="15.0" fill="rgb(234,132,16)" rx="2" ry="2" />
<text x="857.96" y="655.5" ></text>
</g>
<g >
<title>Maat_ip_plugin_get_EX_data (2 samples, 0.01%)</title><rect x="954.2" y="437" width="0.1" height="15.0" fill="rgb(234,173,4)" rx="2" ry="2" />
<text x="957.18" y="447.5" ></text>
</g>
<g >
<title>[sapp] (4,693 samples, 23.46%)</title><rect x="896.7" y="693" width="276.8" height="15.0" fill="rgb(231,23,8)" rx="2" ry="2" />
<text x="899.73" y="703.5" >[sapp]</text>
</g>
<g >
<title>ASN1_primitive_free (2 samples, 0.01%)</title><rect x="1082.9" y="261" width="0.2" height="15.0" fill="rgb(209,188,19)" rx="2" ry="2" />
<text x="1085.94" y="271.5" ></text>
</g>
<g >
<title>stream_process (2 samples, 0.01%)</title><rect x="895.5" y="661" width="0.2" height="15.0" fill="rgb(248,86,16)" rx="2" ry="2" />
<text x="898.55" y="671.5" ></text>
</g>
<g >
<title>Maat_table_runtime_get@plt (2 samples, 0.01%)</title><rect x="817.6" y="725" width="0.1" height="15.0" fill="rgb(224,36,27)" rx="2" ry="2" />
<text x="820.63" y="735.5" ></text>
</g>
<g >
<title>stream_process (95 samples, 0.47%)</title><rect x="1103.5" y="517" width="5.6" height="15.0" fill="rgb(215,30,31)" rx="2" ry="2" />
<text x="1106.47" y="527.5" ></text>
</g>
<g >
<title>tsg_get_subscribe_id (2 samples, 0.01%)</title><rect x="885.7" y="501" width="0.1" height="15.0" fill="rgb(234,34,36)" rx="2" ry="2" />
<text x="888.70" y="511.5" ></text>
</g>
<g >
<title>TLD_append (4 samples, 0.02%)</title><rect x="884.3" y="341" width="0.2" height="15.0" fill="rgb(210,28,38)" rx="2" ry="2" />
<text x="887.28" y="351.5" ></text>
</g>
<g >
<title>stream_process_udp (74 samples, 0.37%)</title><rect x="1111.4" y="549" width="4.4" height="15.0" fill="rgb(249,162,7)" rx="2" ry="2" />
<text x="1114.43" y="559.5" ></text>
</g>
<g >
<title>CStringMatch::check_match_mode (1,416 samples, 7.08%)</title><rect x="180.3" y="725" width="83.5" height="15.0" fill="rgb(230,13,42)" rx="2" ry="2" />
<text x="183.29" y="735.5" >CStringMa..</text>
</g>
<g >
<title>[sapp] (238 samples, 1.19%)</title><rect x="880.9" y="725" width="14.1" height="15.0" fill="rgb(213,213,3)" rx="2" ry="2" />
<text x="883.92" y="735.5" ></text>
</g>
<g >
<title>Maat_full_scan_string (2 samples, 0.01%)</title><rect x="1179.7" y="533" width="0.1" height="15.0" fill="rgb(240,36,31)" rx="2" ry="2" />
<text x="1182.68" y="543.5" ></text>
</g>
<g >
<title>http_callPlugin (2 samples, 0.01%)</title><rect x="894.2" y="597" width="0.2" height="15.0" fill="rgb(212,44,46)" rx="2" ry="2" />
<text x="897.25" y="607.5" ></text>
</g>
<g >
<title>__snprintf (5 samples, 0.02%)</title><rect x="882.5" y="469" width="0.2" height="15.0" fill="rgb(210,194,54)" rx="2" ry="2" />
<text x="885.45" y="479.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (3 samples, 0.01%)</title><rect x="885.8" y="549" width="0.2" height="15.0" fill="rgb(248,139,45)" rx="2" ry="2" />
<text x="888.81" y="559.5" ></text>
</g>
<g >
<title>APP_SKETCH_SSL_PLUG_ENTRY (3 samples, 0.01%)</title><rect x="1083.9" y="325" width="0.2" height="15.0" fill="rgb(214,188,53)" rx="2" ry="2" />
<text x="1086.89" y="335.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (3 samples, 0.01%)</title><rect x="1083.2" y="309" width="0.2" height="15.0" fill="rgb(249,214,52)" rx="2" ry="2" />
<text x="1086.24" y="319.5" ></text>
</g>
<g >
<title>TSG_MASTER_UDP_ENTRY (17 samples, 0.08%)</title><rect x="1112.5" y="501" width="1.0" height="15.0" fill="rgb(216,186,20)" rx="2" ry="2" />
<text x="1115.49" y="511.5" ></text>
</g>
<g >
<title>tsg_send_log (6 samples, 0.03%)</title><rect x="894.6" y="629" width="0.4" height="15.0" fill="rgb(228,149,18)" rx="2" ry="2" />
<text x="897.60" y="639.5" ></text>
</g>
<g >
<title>stream_process_tcp (5 samples, 0.02%)</title><rect x="895.7" y="725" width="0.3" height="15.0" fill="rgb(238,8,29)" rx="2" ry="2" />
<text x="898.66" y="735.5" ></text>
</g>
<g >
<title>hash_func (2 samples, 0.01%)</title><rect x="960.2" y="501" width="0.1" height="15.0" fill="rgb(225,110,43)" rx="2" ry="2" />
<text x="963.19" y="511.5" ></text>
</g>
<g >
<title>[libprotoident.so] (10 samples, 0.05%)</title><rect x="1084.2" y="437" width="0.6" height="15.0" fill="rgb(240,150,37)" rx="2" ry="2" />
<text x="1087.18" y="447.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="890.4" y="309" width="0.1" height="15.0" fill="rgb(241,205,52)" rx="2" ry="2" />
<text x="893.35" y="319.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.5] (2 samples, 0.01%)</title><rect x="1179.0" y="565" width="0.1" height="15.0" fill="rgb(246,112,24)" rx="2" ry="2" />
<text x="1181.97" y="575.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (3 samples, 0.01%)</title><rect x="1175.9" y="597" width="0.2" height="15.0" fill="rgb(223,37,50)" rx="2" ry="2" />
<text x="1178.90" y="607.5" ></text>
</g>
<g >
<title>del_stream_by_time (3 samples, 0.01%)</title><rect x="892.7" y="565" width="0.1" height="15.0" fill="rgb(246,215,31)" rx="2" ry="2" />
<text x="895.66" y="575.5" ></text>
</g>
<g >
<title>stream_process_tcp (4 samples, 0.02%)</title><rect x="882.2" y="549" width="0.2" height="15.0" fill="rgb(221,82,51)" rx="2" ry="2" />
<text x="885.16" y="559.5" ></text>
</g>
<g >
<title>Maat_set_scan_status (6 samples, 0.03%)</title><rect x="1179.8" y="533" width="0.3" height="15.0" fill="rgb(223,122,16)" rx="2" ry="2" />
<text x="1182.80" y="543.5" ></text>
</g>
<g >
<title>set_transport_addr (2 samples, 0.01%)</title><rect x="1111.3" y="549" width="0.1" height="15.0" fill="rgb(215,61,16)" rx="2" ry="2" />
<text x="1114.31" y="559.5" ></text>
</g>
<g >
<title>tsg_ddos_sketch_tcpall_entry (14 samples, 0.07%)</title><rect x="1087.0" y="469" width="0.8" height="15.0" fill="rgb(249,112,49)" rx="2" ry="2" />
<text x="1089.95" y="479.5" ></text>
</g>
<g >
<title>project_req_get_struct (4 samples, 0.02%)</title><rect x="967.6" y="533" width="0.2" height="15.0" fill="rgb(206,117,14)" rx="2" ry="2" />
<text x="970.57" y="543.5" ></text>
</g>
<g >
<title>[sapp] (4 samples, 0.02%)</title><rect x="1091.0" y="501" width="0.3" height="15.0" fill="rgb(247,73,20)" rx="2" ry="2" />
<text x="1094.02" y="511.5" ></text>
</g>
<g >
<title>ssl_callPlugins (3 samples, 0.01%)</title><rect x="1083.9" y="389" width="0.2" height="15.0" fill="rgb(215,184,25)" rx="2" ry="2" />
<text x="1086.89" y="399.5" ></text>
</g>
<g >
<title>dealipv4tcppkt (13 samples, 0.06%)</title><rect x="1174.4" y="693" width="0.8" height="15.0" fill="rgb(225,177,45)" rx="2" ry="2" />
<text x="1177.43" y="703.5" ></text>
</g>
<g >
<title>eth_entry (198 samples, 0.99%)</title><rect x="882.5" y="709" width="11.6" height="15.0" fill="rgb(240,83,52)" rx="2" ry="2" />
<text x="885.45" y="719.5" ></text>
</g>
<g >
<title>ssl_AnalyseCertificate (5 samples, 0.02%)</title><rect x="1187.6" y="421" width="0.3" height="15.0" fill="rgb(223,108,24)" rx="2" ry="2" />
<text x="1190.58" y="431.5" ></text>
</g>
<g >
<title>dealipv4udppkt (975 samples, 4.87%)</title><rect x="924.2" y="613" width="57.5" height="15.0" fill="rgb(218,205,37)" rx="2" ry="2" />
<text x="927.21" y="623.5" >dealip..</text>
</g>
<g >
<title>[libmaatframe.so.3.5] (2 samples, 0.01%)</title><rect x="1175.1" y="549" width="0.1" height="15.0" fill="rgb(226,187,48)" rx="2" ry="2" />
<text x="1178.08" y="559.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (4 samples, 0.02%)</title><rect x="886.1" y="565" width="0.2" height="15.0" fill="rgb(205,49,44)" rx="2" ry="2" />
<text x="889.11" y="575.5" ></text>
</g>
<g >
<title>FS_operate (2 samples, 0.01%)</title><rect x="1136.9" y="533" width="0.1" height="15.0" fill="rgb(252,62,3)" rx="2" ry="2" />
<text x="1139.85" y="543.5" ></text>
</g>
<g >
<title>pthread_rwlock_rdlock (2 samples, 0.01%)</title><rect x="961.6" y="405" width="0.1" height="15.0" fill="rgb(248,48,13)" rx="2" ry="2" />
<text x="964.55" y="415.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (3 samples, 0.01%)</title><rect x="1176.1" y="645" width="0.2" height="15.0" fill="rgb(206,17,12)" rx="2" ry="2" />
<text x="1179.08" y="655.5" ></text>
</g>
<g >
<title>dealipv6udppkt (13 samples, 0.06%)</title><rect x="1174.4" y="741" width="0.8" height="15.0" fill="rgb(253,148,36)" rx="2" ry="2" />
<text x="1177.43" y="751.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (2 samples, 0.01%)</title><rect x="889.8" y="293" width="0.1" height="15.0" fill="rgb(216,82,47)" rx="2" ry="2" />
<text x="892.77" y="303.5" ></text>
</g>
<g >
<title>_int_malloc (83 samples, 0.41%)</title><rect x="1056.1" y="485" width="4.9" height="15.0" fill="rgb(248,203,2)" rx="2" ry="2" />
<text x="1059.10" y="495.5" ></text>
</g>
<g >
<title>_int_free (3 samples, 0.01%)</title><rect x="1095.5" y="469" width="0.2" height="15.0" fill="rgb(217,196,40)" rx="2" ry="2" />
<text x="1098.51" y="479.5" ></text>
</g>
<g >
<title>[libprotoident.so] (7 samples, 0.03%)</title><rect x="962.0" y="453" width="0.4" height="15.0" fill="rgb(216,9,47)" rx="2" ry="2" />
<text x="964.96" y="463.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (5 samples, 0.02%)</title><rect x="881.0" y="261" width="0.3" height="15.0" fill="rgb(246,37,14)" rx="2" ry="2" />
<text x="884.04" y="271.5" ></text>
</g>
<g >
<title>[tsg_ddos_sketch.so] (6 samples, 0.03%)</title><rect x="940.8" y="437" width="0.3" height="15.0" fill="rgb(209,202,49)" rx="2" ry="2" />
<text x="943.79" y="447.5" ></text>
</g>
<g >
<title>fw_ssl_entry (8 samples, 0.04%)</title><rect x="884.3" y="357" width="0.5" height="15.0" fill="rgb(252,205,21)" rx="2" ry="2" />
<text x="887.28" y="367.5" ></text>
</g>
<g >
<title>[unknown] (13 samples, 0.06%)</title><rect x="896.0" y="741" width="0.7" height="15.0" fill="rgb(248,148,47)" rx="2" ry="2" />
<text x="898.96" y="751.5" ></text>
</g>
<g >
<title>gtp_entry (14 samples, 0.07%)</title><rect x="1176.3" y="677" width="0.8" height="15.0" fill="rgb(247,180,30)" rx="2" ry="2" />
<text x="1179.26" y="687.5" ></text>
</g>
<g >
<title>project_req_get_struct (2 samples, 0.01%)</title><rect x="1112.1" y="485" width="0.1" height="15.0" fill="rgb(244,64,25)" rx="2" ry="2" />
<text x="1115.08" y="495.5" ></text>
</g>
<g >
<title>ASN1_STRING_to_UTF8 (3 samples, 0.01%)</title><rect x="888.6" y="261" width="0.2" height="15.0" fill="rgb(234,152,2)" rx="2" ry="2" />
<text x="891.64" y="271.5" ></text>
</g>
<g >
<title>ASN1_item_free (5 samples, 0.02%)</title><rect x="1082.9" y="373" width="0.3" height="15.0" fill="rgb(220,163,41)" rx="2" ry="2" />
<text x="1085.94" y="383.5" ></text>
</g>
<g >
<title>ipv4_entry (83 samples, 0.41%)</title><rect x="888.0" y="629" width="4.9" height="15.0" fill="rgb(241,205,1)" rx="2" ry="2" />
<text x="891.00" y="639.5" ></text>
</g>
<g >
<title>FS_operate (3 samples, 0.01%)</title><rect x="940.8" y="421" width="0.2" height="15.0" fill="rgb(234,133,17)" rx="2" ry="2" />
<text x="943.79" y="431.5" ></text>
</g>
<g >
<title>http_doWithACompleteRegion (2 samples, 0.01%)</title><rect x="894.4" y="597" width="0.1" height="15.0" fill="rgb(219,168,23)" rx="2" ry="2" />
<text x="897.42" y="607.5" ></text>
</g>
<g >
<title>__memset_sse2 (4 samples, 0.02%)</title><rect x="1186.8" y="725" width="0.3" height="15.0" fill="rgb(249,188,15)" rx="2" ry="2" />
<text x="1189.81" y="735.5" ></text>
</g>
<g >
<title>ssl_analyseStream (2 samples, 0.01%)</title><rect x="958.9" y="469" width="0.1" height="15.0" fill="rgb(224,52,31)" rx="2" ry="2" />
<text x="961.90" y="479.5" ></text>
</g>
<g >
<title>dealipv4tcppkt (47 samples, 0.23%)</title><rect x="1179.2" y="677" width="2.8" height="15.0" fill="rgb(240,0,35)" rx="2" ry="2" />
<text x="1182.21" y="687.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (306 samples, 1.53%)</title><rect x="1135.6" y="565" width="18.0" height="15.0" fill="rgb(242,123,53)" rx="2" ry="2" />
<text x="1138.56" y="575.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.5] (2 samples, 0.01%)</title><rect x="940.3" y="405" width="0.1" height="15.0" fill="rgb(212,15,1)" rx="2" ry="2" />
<text x="943.32" y="415.5" ></text>
</g>
<g >
<title>ssl_analyseSsl (4 samples, 0.02%)</title><rect x="1188.1" y="453" width="0.2" height="15.0" fill="rgb(210,204,46)" rx="2" ry="2" />
<text x="1191.05" y="463.5" ></text>
</g>
<g >
<title>Maat_set_scan_status (11 samples, 0.05%)</title><rect x="1174.4" y="549" width="0.7" height="15.0" fill="rgb(229,50,47)" rx="2" ry="2" />
<text x="1177.43" y="559.5" ></text>
</g>
<g >
<title>fw_ssl_entry (2 samples, 0.01%)</title><rect x="882.7" y="373" width="0.2" height="15.0" fill="rgb(210,192,27)" rx="2" ry="2" />
<text x="885.75" y="383.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.01%)</title><rect x="889.6" y="149" width="0.2" height="15.0" fill="rgb(232,50,51)" rx="2" ry="2" />
<text x="892.65" y="159.5" ></text>
</g>
<g >
<title>stream_process (3 samples, 0.01%)</title><rect x="959.5" y="533" width="0.2" height="15.0" fill="rgb(253,29,28)" rx="2" ry="2" />
<text x="962.54" y="543.5" ></text>
</g>
<g >
<title>Maat_table_runtime_perf_stat (2 samples, 0.01%)</title><rect x="1119.0" y="421" width="0.2" height="15.0" fill="rgb(248,56,34)" rx="2" ry="2" />
<text x="1122.04" y="431.5" ></text>
</g>
<g >
<title>CBoolExprMatch::get_mapped_id (18 samples, 0.09%)</title><rect x="856.2" y="645" width="1.1" height="15.0" fill="rgb(237,7,36)" rx="2" ry="2" />
<text x="859.20" y="655.5" ></text>
</g>
<g >
<title>tsg_get_subscribe_id (2 samples, 0.01%)</title><rect x="1113.3" y="453" width="0.1" height="15.0" fill="rgb(232,29,29)" rx="2" ry="2" />
<text x="1116.26" y="463.5" ></text>
</g>
<g >
<title>tsg_scan_nesting_addr (13 samples, 0.06%)</title><rect x="940.0" y="453" width="0.8" height="15.0" fill="rgb(242,93,10)" rx="2" ry="2" />
<text x="943.02" y="463.5" ></text>
</g>
<g >
<title>__clock_gettime (2 samples, 0.01%)</title><rect x="1180.1" y="533" width="0.2" height="15.0" fill="rgb(227,94,37)" rx="2" ry="2" />
<text x="1183.15" y="543.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (8 samples, 0.04%)</title><rect x="881.0" y="357" width="0.4" height="15.0" fill="rgb(227,102,49)" rx="2" ry="2" />
<text x="883.98" y="367.5" ></text>
</g>
<g >
<title>[libMESA_handle_logger.so.2.0] (4 samples, 0.02%)</title><rect x="1179.3" y="517" width="0.3" height="15.0" fill="rgb(251,174,50)" rx="2" ry="2" />
<text x="1182.32" y="527.5" ></text>
</g>
<g >
<title>_make_outer_status (141 samples, 0.70%)</title><rect x="860.3" y="709" width="8.3" height="15.0" fill="rgb(250,113,40)" rx="2" ry="2" />
<text x="863.33" y="719.5" ></text>
</g>
<g >
<title>stream_process (23 samples, 0.11%)</title><rect x="779.9" y="597" width="1.4" height="15.0" fill="rgb(205,163,44)" rx="2" ry="2" />
<text x="782.93" y="607.5" ></text>
</g>
<g >
<title>vfprintf (2 samples, 0.01%)</title><rect x="885.5" y="421" width="0.1" height="15.0" fill="rgb(239,196,39)" rx="2" ry="2" />
<text x="888.46" y="431.5" ></text>
</g>
<g >
<title>stream_process (2 samples, 0.01%)</title><rect x="950.9" y="485" width="0.2" height="15.0" fill="rgb(232,120,10)" rx="2" ry="2" />
<text x="953.93" y="495.5" ></text>
</g>
<g >
<title>[sapp] (79 samples, 0.39%)</title><rect x="888.0" y="581" width="4.7" height="15.0" fill="rgb(245,172,20)" rx="2" ry="2" />
<text x="891.00" y="591.5" ></text>
</g>
<g >
<title>stream_process_tcp (9 samples, 0.04%)</title><rect x="1188.1" y="533" width="0.5" height="15.0" fill="rgb(209,12,14)" rx="2" ry="2" />
<text x="1191.05" y="543.5" ></text>
</g>
<g >
<title>udp_free_stream (2 samples, 0.01%)</title><rect x="1115.8" y="517" width="0.1" height="15.0" fill="rgb(250,188,29)" rx="2" ry="2" />
<text x="1118.80" y="527.5" ></text>
</g>
<g >
<title>project_requirement_destroy (2 samples, 0.01%)</title><rect x="950.8" y="501" width="0.1" height="15.0" fill="rgb(224,95,46)" rx="2" ry="2" />
<text x="953.81" y="511.5" ></text>
</g>
<g >
<title>fn_pGetSSLInfo (31 samples, 0.15%)</title><rect x="888.3" y="437" width="1.8" height="15.0" fill="rgb(206,156,48)" rx="2" ry="2" />
<text x="891.29" y="447.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (15 samples, 0.07%)</title><rect x="1173.5" y="581" width="0.9" height="15.0" fill="rgb(215,75,40)" rx="2" ry="2" />
<text x="1176.54" y="591.5" ></text>
</g>
<g >
<title>scaling_bloom_check (3 samples, 0.01%)</title><rect x="1111.1" y="533" width="0.2" height="15.0" fill="rgb(246,0,1)" rx="2" ry="2" />
<text x="1114.14" y="543.5" ></text>
</g>
<g >
<title>stream_process (9 samples, 0.04%)</title><rect x="895.0" y="645" width="0.5" height="15.0" fill="rgb(233,63,41)" rx="2" ry="2" />
<text x="897.96" y="655.5" ></text>
</g>
<g >
<title>Maat_set_scan_status (3 samples, 0.01%)</title><rect x="1176.1" y="597" width="0.2" height="15.0" fill="rgb(243,70,32)" rx="2" ry="2" />
<text x="1179.08" y="607.5" ></text>
</g>
<g >
<title>udp_free_stream (16 samples, 0.08%)</title><rect x="1120.8" y="565" width="1.0" height="15.0" fill="rgb(231,25,38)" rx="2" ry="2" />
<text x="1123.81" y="575.5" ></text>
</g>
<g >
<title>CRefCountManager::dec_reference_count@plt (2 samples, 0.01%)</title><rect x="798.5" y="693" width="0.1" height="15.0" fill="rgb(232,162,23)" rx="2" ry="2" />
<text x="801.51" y="703.5" ></text>
</g>
<g >
<title>region_compile (15 samples, 0.07%)</title><rect x="810.7" y="725" width="0.9" height="15.0" fill="rgb(234,56,2)" rx="2" ry="2" />
<text x="813.67" y="735.5" ></text>
</g>
<g >
<title>__wake_up_sync_key (2 samples, 0.01%)</title><rect x="896.5" y="485" width="0.1" height="15.0" fill="rgb(239,116,49)" rx="2" ry="2" />
<text x="899.49" y="495.5" ></text>
</g>
<g >
<title>plugin_call_appentry (22 samples, 0.11%)</title><rect x="1184.3" y="677" width="1.3" height="15.0" fill="rgb(240,130,46)" rx="2" ry="2" />
<text x="1187.28" y="687.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (3 samples, 0.01%)</title><rect x="1179.0" y="597" width="0.1" height="15.0" fill="rgb(252,2,32)" rx="2" ry="2" />
<text x="1181.97" y="607.5" ></text>
</g>
<g >
<title>[sapp] (2 samples, 0.01%)</title><rect x="1024.4" y="421" width="0.1" height="15.0" fill="rgb(222,85,50)" rx="2" ry="2" />
<text x="1027.43" y="431.5" ></text>
</g>
<g >
<title>stream_process (38 samples, 0.19%)</title><rect x="946.6" y="517" width="2.3" height="15.0" fill="rgb(212,72,49)" rx="2" ry="2" />
<text x="949.63" y="527.5" ></text>
</g>
<g >
<title>X509V3_EXT_d2i (2 samples, 0.01%)</title><rect x="889.8" y="421" width="0.1" height="15.0" fill="rgb(212,200,21)" rx="2" ry="2" />
<text x="892.77" y="431.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="885.5" y="517" width="0.1" height="15.0" fill="rgb(215,222,16)" rx="2" ry="2" />
<text x="888.46" y="527.5" ></text>
</g>
<g >
<title>sapp_dup_pkt_mark_tcp (22 samples, 0.11%)</title><rect x="1021.1" y="501" width="1.3" height="15.0" fill="rgb(208,212,5)" rx="2" ry="2" />
<text x="1024.07" y="511.5" ></text>
</g>
<g >
<title>[sapp] (15 samples, 0.07%)</title><rect x="1173.5" y="661" width="0.9" height="15.0" fill="rgb(218,223,19)" rx="2" ry="2" />
<text x="1176.54" y="671.5" ></text>
</g>
<g >
<title>stream_process (28 samples, 0.14%)</title><rect x="1086.2" y="501" width="1.6" height="15.0" fill="rgb(226,21,44)" rx="2" ry="2" />
<text x="1089.19" y="511.5" ></text>
</g>
<g >
<title>inet_ntop (2 samples, 0.01%)</title><rect x="1146.2" y="485" width="0.2" height="15.0" fill="rgb(240,151,14)" rx="2" ry="2" />
<text x="1149.23" y="495.5" ></text>
</g>
<g >
<title>ssl_analyseAppData (2 samples, 0.01%)</title><rect x="888.2" y="469" width="0.1" height="15.0" fill="rgb(242,166,27)" rx="2" ry="2" />
<text x="891.17" y="479.5" ></text>
</g>
<g >
<title>ddos_sketch_logging_print (3 samples, 0.01%)</title><rect x="1115.6" y="469" width="0.1" height="15.0" fill="rgb(207,44,15)" rx="2" ry="2" />
<text x="1118.56" y="479.5" ></text>
</g>
<g >
<title>ssl_AnalyseCertificate (32 samples, 0.16%)</title><rect x="934.4" y="405" width="1.8" height="15.0" fill="rgb(214,130,52)" rx="2" ry="2" />
<text x="937.36" y="415.5" ></text>
</g>
<g >
<title>Maat_scan_intval (46 samples, 0.23%)</title><rect x="809.8" y="741" width="2.8" height="15.0" fill="rgb(248,121,38)" rx="2" ry="2" />
<text x="812.84" y="751.5" ></text>
</g>
<g >
<title>ip6_dst_lookup_flow (4 samples, 0.02%)</title><rect x="896.1" y="613" width="0.2" height="15.0" fill="rgb(245,74,23)" rx="2" ry="2" />
<text x="899.08" y="623.5" ></text>
</g>
<g >
<title>bitmap_check (20 samples, 0.10%)</title><rect x="944.1" y="485" width="1.2" height="15.0" fill="rgb(212,87,13)" rx="2" ry="2" />
<text x="947.09" y="495.5" ></text>
</g>
<g >
<title>wp_page_copy.isra.58 (15 samples, 0.07%)</title><rect x="891.2" y="229" width="0.9" height="15.0" fill="rgb(217,123,21)" rx="2" ry="2" />
<text x="894.24" y="239.5" ></text>
</g>
<g >
<title>tsg_scan_nesting_addr (23 samples, 0.11%)</title><rect x="1182.9" y="645" width="1.3" height="15.0" fill="rgb(207,104,50)" rx="2" ry="2" />
<text x="1185.86" y="655.5" ></text>
</g>
<g >
<title>tsg_get_ip_location (5 samples, 0.02%)</title><rect x="1086.6" y="437" width="0.3" height="15.0" fill="rgb(232,5,7)" rx="2" ry="2" />
<text x="1089.60" y="447.5" ></text>
</g>
<g >
<title>PROT_PROCESS (2 samples, 0.01%)</title><rect x="882.7" y="421" width="0.2" height="15.0" fill="rgb(228,74,15)" rx="2" ry="2" />
<text x="885.75" y="431.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="892.7" y="469" width="0.1" height="15.0" fill="rgb(216,184,7)" rx="2" ry="2" />
<text x="895.71" y="479.5" ></text>
</g>
<g >
<title>PROT_PROCESS (2 samples, 0.01%)</title><rect x="890.6" y="421" width="0.2" height="15.0" fill="rgb(238,74,53)" rx="2" ry="2" />
<text x="893.65" y="431.5" ></text>
</g>
<g >
<title>sprintf (4 samples, 0.02%)</title><rect x="1186.2" y="693" width="0.3" height="15.0" fill="rgb(207,124,23)" rx="2" ry="2" />
<text x="1189.22" y="703.5" ></text>
</g>
<g >
<title>udp_free_stream (3 samples, 0.01%)</title><rect x="981.5" y="565" width="0.2" height="15.0" fill="rgb(211,186,24)" rx="2" ry="2" />
<text x="984.55" y="575.5" ></text>
</g>
<g >
<title>ASN1_item_ex_i2d (2 samples, 0.01%)</title><rect x="936.1" y="357" width="0.1" height="15.0" fill="rgb(207,133,10)" rx="2" ry="2" />
<text x="939.13" y="367.5" ></text>
</g>
<g >
<title>stream_process_udp (48 samples, 0.24%)</title><rect x="960.4" y="549" width="2.9" height="15.0" fill="rgb(205,33,27)" rx="2" ry="2" />
<text x="963.43" y="559.5" ></text>
</g>
<g >
<title>[tsg_ddos_sketch.so] (7 samples, 0.03%)</title><rect x="962.5" y="469" width="0.4" height="15.0" fill="rgb(206,49,51)" rx="2" ry="2" />
<text x="965.49" y="479.5" ></text>
</g>
<g >
<title>[tsg_master.so] (7 samples, 0.03%)</title><rect x="894.5" y="645" width="0.5" height="15.0" fill="rgb(214,182,29)" rx="2" ry="2" />
<text x="897.54" y="655.5" ></text>
</g>
<g >
<title>tcp_free_stream (2 samples, 0.01%)</title><rect x="1188.7" y="741" width="0.1" height="15.0" fill="rgb(237,188,54)" rx="2" ry="2" />
<text x="1191.70" y="751.5" ></text>
</g>
<g >
<title>stream_addr_list_ntop (4 samples, 0.02%)</title><rect x="894.7" y="597" width="0.3" height="15.0" fill="rgb(230,164,10)" rx="2" ry="2" />
<text x="897.72" y="607.5" ></text>
</g>
<g >
<title>project_requirement_destroy (3 samples, 0.01%)</title><rect x="957.8" y="501" width="0.2" height="15.0" fill="rgb(212,229,30)" rx="2" ry="2" />
<text x="960.78" y="511.5" ></text>
</g>
<g >
<title>CRYPTO_malloc (2 samples, 0.01%)</title><rect x="883.3" y="213" width="0.2" height="15.0" fill="rgb(212,34,47)" rx="2" ry="2" />
<text x="886.34" y="223.5" ></text>
</g>
<g >
<title>IEEE_8021_entry (198 samples, 0.99%)</title><rect x="882.5" y="693" width="11.6" height="15.0" fill="rgb(236,45,15)" rx="2" ry="2" />
<text x="885.45" y="703.5" ></text>
</g>
<g >
<title>expiry_dablooms_add (18 samples, 0.09%)</title><rect x="891.1" y="373" width="1.0" height="15.0" fill="rgb(220,204,19)" rx="2" ry="2" />
<text x="894.06" y="383.5" ></text>
</g>
<g >
<title>dealipv6udppkt (60 samples, 0.30%)</title><rect x="959.7" y="565" width="3.6" height="15.0" fill="rgb(227,77,14)" rx="2" ry="2" />
<text x="962.72" y="575.5" ></text>
</g>
<g >
<title>copy_stream_info_to_heap (2 samples, 0.01%)</title><rect x="931.2" y="501" width="0.1" height="15.0" fill="rgb(216,189,19)" rx="2" ry="2" />
<text x="934.17" y="511.5" ></text>
</g>
<g >
<title>vfprintf (3 samples, 0.01%)</title><rect x="964.3" y="453" width="0.2" height="15.0" fill="rgb(214,150,3)" rx="2" ry="2" />
<text x="967.32" y="463.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.5] (5 samples, 0.02%)</title><rect x="1182.0" y="565" width="0.3" height="15.0" fill="rgb(211,201,44)" rx="2" ry="2" />
<text x="1184.98" y="575.5" ></text>
</g>
<g >
<title>system_capture_packet_entry (3 samples, 0.01%)</title><rect x="952.6" y="485" width="0.2" height="15.0" fill="rgb(252,25,45)" rx="2" ry="2" />
<text x="955.64" y="495.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (25 samples, 0.12%)</title><rect x="888.3" y="405" width="1.5" height="15.0" fill="rgb(229,37,9)" rx="2" ry="2" />
<text x="891.29" y="415.5" ></text>
</g>
<g >
<title>[libprotoident.so] (2 samples, 0.01%)</title><rect x="962.2" y="437" width="0.1" height="15.0" fill="rgb(229,7,30)" rx="2" ry="2" />
<text x="965.20" y="447.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (4 samples, 0.02%)</title><rect x="1082.9" y="325" width="0.3" height="15.0" fill="rgb(248,24,34)" rx="2" ry="2" />
<text x="1085.94" y="335.5" ></text>
</g>
<g >
<title>stream_process_tcp (14 samples, 0.07%)</title><rect x="894.1" y="709" width="0.9" height="15.0" fill="rgb(233,18,43)" rx="2" ry="2" />
<text x="897.13" y="719.5" ></text>
</g>
<g >
<title>Maat_table_runtime_perf_stat (38 samples, 0.19%)</title><rect x="817.7" y="725" width="2.3" height="15.0" fill="rgb(220,11,27)" rx="2" ry="2" />
<text x="820.74" y="735.5" ></text>
</g>
<g >
<title>__memcmp_sse4_1 (2 samples, 0.01%)</title><rect x="1152.5" y="485" width="0.2" height="15.0" fill="rgb(227,137,4)" rx="2" ry="2" />
<text x="1155.54" y="495.5" ></text>
</g>
<g >
<title>tsg_get_subscribe_id (2 samples, 0.01%)</title><rect x="940.3" y="437" width="0.1" height="15.0" fill="rgb(228,187,42)" rx="2" ry="2" />
<text x="943.32" y="447.5" ></text>
</g>
<g >
<title>findstreamindex (58 samples, 0.29%)</title><rect x="995.8" y="597" width="3.4" height="15.0" fill="rgb(238,124,16)" rx="2" ry="2" />
<text x="998.76" y="607.5" ></text>
</g>
<g >
<title>copy_stream_info_to_heap (3 samples, 0.01%)</title><rect x="1054.3" y="517" width="0.2" height="15.0" fill="rgb(214,56,45)" rx="2" ry="2" />
<text x="1057.27" y="527.5" ></text>
</g>
<g >
<title>MESA_htable_del (3 samples, 0.01%)</title><rect x="1004.4" y="565" width="0.2" height="15.0" fill="rgb(221,55,19)" rx="2" ry="2" />
<text x="1007.43" y="575.5" ></text>
</g>
<g >
<title>tsg_get_subscribe_id (4 samples, 0.02%)</title><rect x="954.5" y="453" width="0.3" height="15.0" fill="rgb(233,183,49)" rx="2" ry="2" />
<text x="957.53" y="463.5" ></text>
</g>
<g >
<title>Maat_table_get_scan_by_id (8 samples, 0.04%)</title><rect x="787.8" y="725" width="0.5" height="15.0" fill="rgb(254,116,36)" rx="2" ry="2" />
<text x="790.78" y="735.5" ></text>
</g>
<g >
<title>MESA_handle_runtime_log (8 samples, 0.04%)</title><rect x="1179.2" y="533" width="0.5" height="15.0" fill="rgb(225,218,18)" rx="2" ry="2" />
<text x="1182.21" y="543.5" ></text>
</g>
<g >
<title>expiry_dablooms_add (22 samples, 0.11%)</title><rect x="1021.1" y="469" width="1.3" height="15.0" fill="rgb(219,26,50)" rx="2" ry="2" />
<text x="1024.07" y="479.5" ></text>
</g>
<g >
<title>stream_bridge_sync_data_put (3 samples, 0.01%)</title><rect x="937.7" y="453" width="0.2" height="15.0" fill="rgb(240,54,35)" rx="2" ry="2" />
<text x="940.72" y="463.5" ></text>
</g>
<g >
<title>stream_make_hash (2 samples, 0.01%)</title><rect x="927.2" y="581" width="0.1" height="15.0" fill="rgb(212,23,1)" rx="2" ry="2" />
<text x="930.22" y="591.5" ></text>
</g>
<g >
<title>[tsg_master.so] (4 samples, 0.02%)</title><rect x="895.7" y="661" width="0.3" height="15.0" fill="rgb(244,134,50)" rx="2" ry="2" />
<text x="898.72" y="671.5" ></text>
</g>
<g >
<title>stream_process_tcp_allpkt (104 samples, 0.52%)</title><rect x="1102.9" y="533" width="6.2" height="15.0" fill="rgb(228,212,5)" rx="2" ry="2" />
<text x="1105.94" y="543.5" ></text>
</g>
<g >
<title>Maat_ip_plugin_get_EX_data (2 samples, 0.01%)</title><rect x="970.6" y="485" width="0.1" height="15.0" fill="rgb(254,10,30)" rx="2" ry="2" />
<text x="973.57" y="495.5" ></text>
</g>
<g >
<title>Maat_plugin_get_EX_data (3 samples, 0.01%)</title><rect x="954.5" y="437" width="0.2" height="15.0" fill="rgb(235,13,10)" rx="2" ry="2" />
<text x="957.53" y="447.5" ></text>
</g>
<g >
<title>_IO_vsprintf (3 samples, 0.01%)</title><rect x="892.5" y="437" width="0.2" height="15.0" fill="rgb(214,53,26)" rx="2" ry="2" />
<text x="895.48" y="447.5" ></text>
</g>
<g >
<title>dealipv4udppkt (18 samples, 0.09%)</title><rect x="1175.2" y="693" width="1.1" height="15.0" fill="rgb(236,79,50)" rx="2" ry="2" />
<text x="1178.19" y="703.5" ></text>
</g>
<g >
<title>APP_SKETCH_TCP_PLUG_ENTRY (15 samples, 0.07%)</title><rect x="1173.5" y="597" width="0.9" height="15.0" fill="rgb(234,225,40)" rx="2" ry="2" />
<text x="1176.54" y="607.5" ></text>
</g>
<g >
<title>ssl_AnalyseCertificate (39 samples, 0.19%)</title><rect x="888.3" y="453" width="2.3" height="15.0" fill="rgb(250,228,10)" rx="2" ry="2" />
<text x="891.29" y="463.5" ></text>
</g>
<g >
<title>CAPTURE_UDP_PACKET_ENTRY (81 samples, 0.40%)</title><rect x="1137.1" y="549" width="4.8" height="15.0" fill="rgb(244,158,32)" rx="2" ry="2" />
<text x="1140.15" y="559.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (3 samples, 0.01%)</title><rect x="1188.1" y="277" width="0.1" height="15.0" fill="rgb(215,80,42)" rx="2" ry="2" />
<text x="1191.05" y="287.5" ></text>
</g>
<g >
<title>stream_process_tcp (14 samples, 0.07%)</title><rect x="1178.1" y="629" width="0.9" height="15.0" fill="rgb(207,117,47)" rx="2" ry="2" />
<text x="1181.14" y="639.5" ></text>
</g>
<g >
<title>ssl_analyseHandShake (3 samples, 0.01%)</title><rect x="1181.6" y="533" width="0.2" height="15.0" fill="rgb(211,122,43)" rx="2" ry="2" />
<text x="1184.62" y="543.5" ></text>
</g>
<g >
<title>malloc (2 samples, 0.01%)</title><rect x="1109.4" y="485" width="0.1" height="15.0" fill="rgb(220,209,45)" rx="2" ry="2" />
<text x="1112.43" y="495.5" ></text>
</g>
<g >
<title>BN_bn2bin (3 samples, 0.01%)</title><rect x="1083.7" y="261" width="0.2" height="15.0" fill="rgb(214,189,48)" rx="2" ry="2" />
<text x="1086.71" y="271.5" ></text>
</g>
<g >
<title>stream_process (27 samples, 0.13%)</title><rect x="1180.3" y="613" width="1.6" height="15.0" fill="rgb(224,188,30)" rx="2" ry="2" />
<text x="1183.33" y="623.5" ></text>
</g>
<g >
<title>gtp_entry (53 samples, 0.26%)</title><rect x="1179.2" y="709" width="3.1" height="15.0" fill="rgb(249,106,44)" rx="2" ry="2" />
<text x="1182.21" y="719.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (44 samples, 0.22%)</title><rect x="960.5" y="517" width="2.6" height="15.0" fill="rgb(215,57,0)" rx="2" ry="2" />
<text x="963.55" y="527.5" ></text>
</g>
<g >
<title>APP_SKETCH_TCP_PLUG_ENTRY (37 samples, 0.18%)</title><rect x="781.8" y="549" width="2.1" height="15.0" fill="rgb(215,138,18)" rx="2" ry="2" />
<text x="784.76" y="559.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="1188.7" y="661" width="0.1" height="15.0" fill="rgb(241,44,40)" rx="2" ry="2" />
<text x="1191.70" y="671.5" ></text>
</g>
<g >
<title>[sapp] (2 samples, 0.01%)</title><rect x="944.0" y="501" width="0.1" height="15.0" fill="rgb(209,74,30)" rx="2" ry="2" />
<text x="946.97" y="511.5" ></text>
</g>
<g >
<title>stream_process (2 samples, 0.01%)</title><rect x="1118.1" y="517" width="0.1" height="15.0" fill="rgb(233,69,11)" rx="2" ry="2" />
<text x="1121.10" y="527.5" ></text>
</g>
<g >
<title>Maat_ip_plugin_get_EX_data (3 samples, 0.01%)</title><rect x="1145.6" y="485" width="0.2" height="15.0" fill="rgb(238,143,15)" rx="2" ry="2" />
<text x="1148.58" y="495.5" ></text>
</g>
<g >
<title>stream_process_udp (4 samples, 0.02%)</title><rect x="886.1" y="597" width="0.2" height="15.0" fill="rgb(249,62,30)" rx="2" ry="2" />
<text x="889.11" y="607.5" ></text>
</g>
<g >
<title>lpi_guess_protocol (27 samples, 0.13%)</title><rect x="955.1" y="485" width="1.6" height="15.0" fill="rgb(243,136,28)" rx="2" ry="2" />
<text x="958.12" y="495.5" ></text>
</g>
<g >
<title>__snprintf (2 samples, 0.01%)</title><rect x="932.9" y="421" width="0.2" height="15.0" fill="rgb(238,96,41)" rx="2" ry="2" />
<text x="935.94" y="431.5" ></text>
</g>
<g >
<title>pthread_rwlock_rdlock (2 samples, 0.01%)</title><rect x="939.9" y="421" width="0.1" height="15.0" fill="rgb(207,8,37)" rx="2" ry="2" />
<text x="942.90" y="431.5" ></text>
</g>
<g >
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="892.5" y="517" width="0.2" height="15.0" fill="rgb(228,35,19)" rx="2" ry="2" />
<text x="895.48" y="527.5" ></text>
</g>
<g >
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="885.0" y="501" width="0.2" height="15.0" fill="rgb(209,12,53)" rx="2" ry="2" />
<text x="887.99" y="511.5" ></text>
</g>
<g >
<title>tcp_dump_sig (5 samples, 0.02%)</title><rect x="882.5" y="485" width="0.2" height="15.0" fill="rgb(206,21,42)" rx="2" ry="2" />
<text x="885.45" y="495.5" ></text>
</g>
<g >
<title>ssl_callPlugins (2 samples, 0.01%)</title><rect x="882.7" y="437" width="0.2" height="15.0" fill="rgb(223,91,29)" rx="2" ry="2" />
<text x="885.75" y="447.5" ></text>
</g>
<g >
<title>stream_process (7 samples, 0.03%)</title><rect x="1177.1" y="661" width="0.4" height="15.0" fill="rgb(220,157,34)" rx="2" ry="2" />
<text x="1180.08" y="671.5" ></text>
</g>
<g >
<title>malloc (132 samples, 0.66%)</title><rect x="537.0" y="645" width="7.8" height="15.0" fill="rgb(227,151,37)" rx="2" ry="2" />
<text x="540.03" y="655.5" ></text>
</g>
<g >
<title>__clock_gettime (5 samples, 0.02%)</title><rect x="1122.5" y="549" width="0.3" height="15.0" fill="rgb(221,130,16)" rx="2" ry="2" />
<text x="1125.46" y="559.5" ></text>
</g>
<g >
<title>ASN1_item_free (2 samples, 0.01%)</title><rect x="889.6" y="229" width="0.2" height="15.0" fill="rgb(218,41,11)" rx="2" ry="2" />
<text x="892.65" y="239.5" ></text>
</g>
<g >
<title>[sapp] (8 samples, 0.04%)</title><rect x="1187.5" y="549" width="0.5" height="15.0" fill="rgb(240,209,28)" rx="2" ry="2" />
<text x="1190.52" y="559.5" ></text>
</g>
<g >
<title>checkstreamorder (9 samples, 0.04%)</title><rect x="1110.1" y="533" width="0.6" height="15.0" fill="rgb(211,149,9)" rx="2" ry="2" />
<text x="1113.13" y="543.5" ></text>
</g>
<g >
<title>__memcpy_ssse3_back (3 samples, 0.01%)</title><rect x="1186.0" y="677" width="0.2" height="15.0" fill="rgb(247,226,40)" rx="2" ry="2" />
<text x="1188.99" y="687.5" ></text>
</g>
<g >
<title>[tsg_ddos_sketch.so] (4 samples, 0.02%)</title><rect x="981.3" y="517" width="0.2" height="15.0" fill="rgb(246,8,13)" rx="2" ry="2" />
<text x="984.31" y="527.5" ></text>
</g>
<g >
<title>_IO_vsprintf (2 samples, 0.01%)</title><rect x="885.7" y="453" width="0.1" height="15.0" fill="rgb(219,22,19)" rx="2" ry="2" />
<text x="888.70" y="463.5" ></text>
</g>
<g >
<title>tsg_send_log (2 samples, 0.01%)</title><rect x="885.0" y="485" width="0.2" height="15.0" fill="rgb(226,53,11)" rx="2" ry="2" />
<text x="888.05" y="495.5" ></text>
</g>
<g >
<title>tsg_scan_nesting_addr (11 samples, 0.05%)</title><rect x="961.2" y="469" width="0.6" height="15.0" fill="rgb(210,136,12)" rx="2" ry="2" />
<text x="964.20" y="479.5" ></text>
</g>
<g >
<title>[sapp] (4 samples, 0.02%)</title><rect x="1175.2" y="613" width="0.2" height="15.0" fill="rgb(248,0,44)" rx="2" ry="2" />
<text x="1178.19" y="623.5" ></text>
</g>
<g >
<title>del_stream_by_time (2 samples, 0.01%)</title><rect x="959.4" y="533" width="0.1" height="15.0" fill="rgb(218,2,2)" rx="2" ry="2" />
<text x="962.37" y="543.5" ></text>
</g>
<g >
<title>tsg_ddos_sketch_udp_entry (3 samples, 0.01%)</title><rect x="964.6" y="501" width="0.2" height="15.0" fill="rgb(215,151,27)" rx="2" ry="2" />
<text x="967.62" y="511.5" ></text>
</g>
<g >
<title>all (20,005 samples, 100%)</title><rect x="10.0" y="773" width="1180.0" height="15.0" fill="rgb(247,66,16)" rx="2" ry="2" />
<text x="13.00" y="783.5" ></text>
</g>
<g >
<title>[sapp] (13 samples, 0.06%)</title><rect x="1174.4" y="677" width="0.8" height="15.0" fill="rgb(208,136,16)" rx="2" ry="2" />
<text x="1177.43" y="687.5" ></text>
</g>
<g >
<title>http_doWithDefaultData (4 samples, 0.02%)</title><rect x="1081.5" y="405" width="0.3" height="15.0" fill="rgb(216,84,22)" rx="2" ry="2" />
<text x="1084.53" y="415.5" ></text>
</g>
<g >
<title>SSL_ENTRY (41 samples, 0.20%)</title><rect x="934.0" y="469" width="2.4" height="15.0" fill="rgb(233,27,46)" rx="2" ry="2" />
<text x="937.00" y="479.5" ></text>
</g>
<g >
<title>Maat_table_get_by_id_raw (9 samples, 0.04%)</title><rect x="825.7" y="693" width="0.5" height="15.0" fill="rgb(221,204,45)" rx="2" ry="2" />
<text x="828.71" y="703.5" ></text>
</g>
<g >
<title>rulescan_computeresult (139 samples, 0.69%)</title><rect x="801.6" y="693" width="8.2" height="15.0" fill="rgb(215,99,1)" rx="2" ry="2" />
<text x="804.58" y="703.5" ></text>
</g>
<g >
<title>__memcmp_sse4_1 (2 samples, 0.01%)</title><rect x="937.4" y="405" width="0.1" height="15.0" fill="rgb(243,167,31)" rx="2" ry="2" />
<text x="940.43" y="415.5" ></text>
</g>
<g >
<title>stream_process (2 samples, 0.01%)</title><rect x="882.0" y="549" width="0.1" height="15.0" fill="rgb(223,227,52)" rx="2" ry="2" />
<text x="884.98" y="559.5" ></text>
</g>
<g >
<title>[sapp] (2 samples, 0.01%)</title><rect x="1115.8" y="533" width="0.1" height="15.0" fill="rgb(236,54,54)" rx="2" ry="2" />
<text x="1118.80" y="543.5" ></text>
</g>
<g >
<title>dealipv6udppkt (16 samples, 0.08%)</title><rect x="1118.7" y="565" width="0.9" height="15.0" fill="rgb(211,14,32)" rx="2" ry="2" />
<text x="1121.69" y="575.5" ></text>
</g>
<g >
<title>pthread_rwlock_rdlock (2 samples, 0.01%)</title><rect x="1184.8" y="581" width="0.1" height="15.0" fill="rgb(239,197,3)" rx="2" ry="2" />
<text x="1187.75" y="591.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.5] (11 samples, 0.05%)</title><rect x="1174.4" y="533" width="0.7" height="15.0" fill="rgb(216,50,8)" rx="2" ry="2" />
<text x="1177.43" y="543.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (22 samples, 0.11%)</title><rect x="882.9" y="293" width="1.3" height="15.0" fill="rgb(239,198,40)" rx="2" ry="2" />
<text x="885.86" y="303.5" ></text>
</g>
<g >
<title>tcp_free_stream (2 samples, 0.01%)</title><rect x="959.4" y="517" width="0.1" height="15.0" fill="rgb(207,22,53)" rx="2" ry="2" />
<text x="962.37" y="527.5" ></text>
</g>
<g >
<title>__strlen_sse2_pminub (2 samples, 0.01%)</title><rect x="1179.6" y="517" width="0.1" height="15.0" fill="rgb(237,27,36)" rx="2" ry="2" />
<text x="1182.56" y="527.5" ></text>
</g>
<g >
<title>[sapp] (2 samples, 0.01%)</title><rect x="894.7" y="549" width="0.1" height="15.0" fill="rgb(219,15,36)" rx="2" ry="2" />
<text x="897.72" y="559.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (2 samples, 0.01%)</title><rect x="892.9" y="565" width="0.1" height="15.0" fill="rgb(228,94,27)" rx="2" ry="2" />
<text x="895.89" y="575.5" ></text>
</g>
<g >
<title>callback_dns_business_plug (53 samples, 0.26%)</title><rect x="1182.4" y="725" width="3.2" height="15.0" fill="rgb(248,50,50)" rx="2" ry="2" />
<text x="1185.45" y="735.5" ></text>
</g>
<g >
<title>expiry_dablooms_search (14 samples, 0.07%)</title><rect x="1121.9" y="581" width="0.9" height="15.0" fill="rgb(250,77,45)" rx="2" ry="2" />
<text x="1124.93" y="591.5" ></text>
</g>
<g >
<title>[tsg_master.so] (7 samples, 0.03%)</title><rect x="894.5" y="661" width="0.5" height="15.0" fill="rgb(232,98,12)" rx="2" ry="2" />
<text x="897.54" y="671.5" ></text>
</g>
<g >
<title>X509_PUBKEY_get (4 samples, 0.02%)</title><rect x="1083.5" y="373" width="0.2" height="15.0" fill="rgb(217,221,39)" rx="2" ry="2" />
<text x="1086.47" y="383.5" ></text>
</g>
<g >
<title>mem_cgroup_newpage_charge (2 samples, 0.01%)</title><rect x="891.2" y="213" width="0.2" height="15.0" fill="rgb(207,181,34)" rx="2" ry="2" />
<text x="894.24" y="223.5" ></text>
</g>
<g >
<title>tsg_get_ip_location (3 samples, 0.01%)</title><rect x="1184.6" y="629" width="0.2" height="15.0" fill="rgb(218,113,11)" rx="2" ry="2" />
<text x="1187.57" y="639.5" ></text>
</g>
<g >
<title>[sapp] (14 samples, 0.07%)</title><rect x="1178.1" y="661" width="0.9" height="15.0" fill="rgb(245,208,20)" rx="2" ry="2" />
<text x="1181.14" y="671.5" ></text>
</g>
<g >
<title>tcp_free_stream (2 samples, 0.01%)</title><rect x="895.5" y="693" width="0.2" height="15.0" fill="rgb(217,34,6)" rx="2" ry="2" />
<text x="898.55" y="703.5" ></text>
</g>
<g >
<title>TSG_MASTER_UDP_ENTRY (33 samples, 0.16%)</title><rect x="953.1" y="501" width="1.9" height="15.0" fill="rgb(209,95,51)" rx="2" ry="2" />
<text x="956.06" y="511.5" ></text>
</g>
<g >
<title>[sapp] (32 samples, 0.16%)</title><rect x="1017.9" y="501" width="1.9" height="15.0" fill="rgb(244,219,35)" rx="2" ry="2" />
<text x="1020.88" y="511.5" ></text>
</g>
<g >
<title>gtp_entry (15 samples, 0.07%)</title><rect x="1175.2" y="677" width="0.9" height="15.0" fill="rgb(234,198,18)" rx="2" ry="2" />
<text x="1178.19" y="687.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (6 samples, 0.03%)</title><rect x="888.8" y="245" width="0.4" height="15.0" fill="rgb(206,216,44)" rx="2" ry="2" />
<text x="891.82" y="255.5" ></text>
</g>
<g >
<title>dealipv4udppkt (8 samples, 0.04%)</title><rect x="1175.4" y="645" width="0.5" height="15.0" fill="rgb(232,221,36)" rx="2" ry="2" />
<text x="1178.43" y="655.5" ></text>
</g>
<g >
<title>ssl_analyseHandShake (28 samples, 0.14%)</title><rect x="1082.4" y="421" width="1.7" height="15.0" fill="rgb(242,34,10)" rx="2" ry="2" />
<text x="1085.41" y="431.5" ></text>
</g>
<g >
<title>counting_bloom_add (22 samples, 0.11%)</title><rect x="1021.1" y="437" width="1.3" height="15.0" fill="rgb(219,175,46)" rx="2" ry="2" />
<text x="1024.07" y="447.5" ></text>
</g>
<g >
<title>[sapp] (4 samples, 0.02%)</title><rect x="882.2" y="581" width="0.2" height="15.0" fill="rgb(238,81,21)" rx="2" ry="2" />
<text x="885.16" y="591.5" ></text>
</g>
<g >
<title>Maat_set_scan_status (15 samples, 0.07%)</title><rect x="1173.5" y="565" width="0.9" height="15.0" fill="rgb(235,98,18)" rx="2" ry="2" />
<text x="1176.54" y="575.5" ></text>
</g>
<g >
<title>tcp_free_stream (11 samples, 0.05%)</title><rect x="1095.3" y="501" width="0.6" height="15.0" fill="rgb(222,227,10)" rx="2" ry="2" />
<text x="1098.27" y="511.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (7 samples, 0.03%)</title><rect x="1176.6" y="565" width="0.4" height="15.0" fill="rgb(239,3,18)" rx="2" ry="2" />
<text x="1179.61" y="575.5" ></text>
</g>
<g >
<title>[tsg_master.so] (6 samples, 0.03%)</title><rect x="1176.3" y="533" width="0.3" height="15.0" fill="rgb(212,218,22)" rx="2" ry="2" />
<text x="1179.26" y="543.5" ></text>
</g>
<g >
<title>Maat_table_runtime_perf_stat (2 samples, 0.01%)</title><rect x="961.3" y="421" width="0.1" height="15.0" fill="rgb(232,185,2)" rx="2" ry="2" />
<text x="964.26" y="431.5" ></text>
</g>
<g >
<title>malloc_consolidate (20 samples, 0.10%)</title><rect x="543.6" y="613" width="1.2" height="15.0" fill="rgb(250,79,51)" rx="2" ry="2" />
<text x="546.64" y="623.5" ></text>
</g>
<g >
<title>MV_Sketch_update (4 samples, 0.02%)</title><rect x="981.3" y="501" width="0.2" height="15.0" fill="rgb(242,136,20)" rx="2" ry="2" />
<text x="984.31" y="511.5" ></text>
</g>
<g >
<title>fw_ssl_entry (2 samples, 0.01%)</title><rect x="890.6" y="373" width="0.2" height="15.0" fill="rgb(249,98,44)" rx="2" ry="2" />
<text x="893.65" y="383.5" ></text>
</g>
<g >
<title>gtp_entry (20 samples, 0.10%)</title><rect x="881.0" y="629" width="1.2" height="15.0" fill="rgb(214,195,24)" rx="2" ry="2" />
<text x="883.98" y="639.5" ></text>
</g>
<g >
<title>stream_process_udp (7 samples, 0.03%)</title><rect x="1177.1" y="677" width="0.4" height="15.0" fill="rgb(210,170,48)" rx="2" ry="2" />
<text x="1180.08" y="687.5" ></text>
</g>
<g >
<title>sprintf (2 samples, 0.01%)</title><rect x="885.5" y="453" width="0.1" height="15.0" fill="rgb(251,159,9)" rx="2" ry="2" />
<text x="888.46" y="463.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (8 samples, 0.04%)</title><rect x="882.9" y="277" width="0.4" height="15.0" fill="rgb(227,209,41)" rx="2" ry="2" />
<text x="885.86" y="287.5" ></text>
</g>
<g >
<title>TLD_append_streaminfo (2 samples, 0.01%)</title><rect x="1188.7" y="629" width="0.1" height="15.0" fill="rgb(218,213,17)" rx="2" ry="2" />
<text x="1191.70" y="639.5" ></text>
</g>
<g >
<title>fn_vMemCpy (6 samples, 0.03%)</title><rect x="1081.9" y="437" width="0.4" height="15.0" fill="rgb(216,210,44)" rx="2" ry="2" />
<text x="1084.94" y="447.5" ></text>
</g>
<g >
<title>copy_stream_info_to_heap_single_layer (2 samples, 0.01%)</title><rect x="1054.3" y="469" width="0.1" height="15.0" fill="rgb(253,212,41)" rx="2" ry="2" />
<text x="1057.27" y="479.5" ></text>
</g>
<g >
<title>ASN1_item_free (15 samples, 0.07%)</title><rect x="935.0" y="373" width="0.9" height="15.0" fill="rgb(211,164,26)" rx="2" ry="2" />
<text x="938.01" y="383.5" ></text>
</g>
<g >
<title>stream_process (2 samples, 0.01%)</title><rect x="930.8" y="485" width="0.1" height="15.0" fill="rgb(254,123,43)" rx="2" ry="2" />
<text x="933.82" y="495.5" ></text>
</g>
<g >
<title>HTTP_ENTRY (324 samples, 1.62%)</title><rect x="1062.8" y="469" width="19.1" height="15.0" fill="rgb(214,45,51)" rx="2" ry="2" />
<text x="1065.83" y="479.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (3 samples, 0.01%)</title><rect x="959.5" y="517" width="0.2" height="15.0" fill="rgb(243,39,50)" rx="2" ry="2" />
<text x="962.54" y="527.5" ></text>
</g>
<g >
<title>dealipv4tcppkt (4 samples, 0.02%)</title><rect x="1175.2" y="645" width="0.2" height="15.0" fill="rgb(254,61,4)" rx="2" ry="2" />
<text x="1178.19" y="655.5" ></text>
</g>
<g >
<title>ssl_analyseSsl (5 samples, 0.02%)</title><rect x="1187.6" y="453" width="0.3" height="15.0" fill="rgb(224,138,1)" rx="2" ry="2" />
<text x="1190.58" y="463.5" ></text>
</g>
<g >
<title>free (5 samples, 0.02%)</title><rect x="275.4" y="725" width="0.3" height="15.0" fill="rgb(246,79,45)" rx="2" ry="2" />
<text x="278.43" y="735.5" ></text>
</g>
<g >
<title>Maat_table_runtime_ip_plugin_get_N_ex_data (2 samples, 0.01%)</title><rect x="961.4" y="421" width="0.2" height="15.0" fill="rgb(244,116,10)" rx="2" ry="2" />
<text x="964.43" y="431.5" ></text>
</g>
<g >
<title>findstreamindex (33 samples, 0.16%)</title><rect x="941.2" y="533" width="1.9" height="15.0" fill="rgb(210,209,42)" rx="2" ry="2" />
<text x="944.20" y="543.5" ></text>
</g>
<g >
<title>APP_SKETCH_UDP_PLUG_ENTRY (7 samples, 0.03%)</title><rect x="1175.5" y="581" width="0.4" height="15.0" fill="rgb(231,118,39)" rx="2" ry="2" />
<text x="1178.49" y="591.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="895.5" y="629" width="0.2" height="15.0" fill="rgb(223,22,41)" rx="2" ry="2" />
<text x="898.55" y="639.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (5 samples, 0.02%)</title><rect x="1177.5" y="613" width="0.3" height="15.0" fill="rgb(234,84,32)" rx="2" ry="2" />
<text x="1180.50" y="623.5" ></text>
</g>
<g >
<title>IEEE_8021_entry (3,973 samples, 19.86%)</title><rect x="921.1" y="645" width="234.4" height="15.0" fill="rgb(244,35,24)" rx="2" ry="2" />
<text x="924.15" y="655.5" >IEEE_8021_entry</text>
</g>
<g >
<title>CNaiveIntervalIndex::Find (2 samples, 0.01%)</title><rect x="812.0" y="677" width="0.1" height="15.0" fill="rgb(249,165,41)" rx="2" ry="2" />
<text x="814.96" y="687.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (2 samples, 0.01%)</title><rect x="1175.1" y="613" width="0.1" height="15.0" fill="rgb(212,228,7)" rx="2" ry="2" />
<text x="1178.08" y="623.5" ></text>
</g>
<g >
<title>counting_bloom_check (134 samples, 0.67%)</title><rect x="1123.1" y="565" width="7.9" height="15.0" fill="rgb(250,174,29)" rx="2" ry="2" />
<text x="1126.11" y="575.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (4 samples, 0.02%)</title><rect x="934.5" y="277" width="0.2" height="15.0" fill="rgb(210,134,3)" rx="2" ry="2" />
<text x="937.48" y="287.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (22 samples, 0.11%)</title><rect x="882.9" y="341" width="1.3" height="15.0" fill="rgb(224,126,4)" rx="2" ry="2" />
<text x="885.86" y="351.5" ></text>
</g>
<g >
<title>CAPTURE_TCP_PACKET_ENTRY (33 samples, 0.16%)</title><rect x="1105.7" y="485" width="1.9" height="15.0" fill="rgb(224,214,5)" rx="2" ry="2" />
<text x="1108.65" y="495.5" ></text>
</g>
<g >
<title>tsg_get_subscribe_id (11 samples, 0.05%)</title><rect x="1184.8" y="629" width="0.6" height="15.0" fill="rgb(212,151,46)" rx="2" ry="2" />
<text x="1187.75" y="639.5" ></text>
</g>
<g >
<title>raw_ip_frag_list_stream_attach (2 samples, 0.01%)</title><rect x="1061.2" y="501" width="0.2" height="15.0" fill="rgb(237,128,51)" rx="2" ry="2" />
<text x="1064.24" y="511.5" ></text>
</g>
<g >
<title>ssl_analyseStream (5 samples, 0.02%)</title><rect x="1187.6" y="469" width="0.3" height="15.0" fill="rgb(216,31,36)" rx="2" ry="2" />
<text x="1190.58" y="479.5" ></text>
</g>
<g >
<title>ASN1_item_ex_i2d (2 samples, 0.01%)</title><rect x="889.5" y="181" width="0.1" height="15.0" fill="rgb(230,19,52)" rx="2" ry="2" />
<text x="892.47" y="191.5" ></text>
</g>
<g >
<title>get_decompressed_name (5 samples, 0.02%)</title><rect x="1185.9" y="693" width="0.3" height="15.0" fill="rgb(213,177,0)" rx="2" ry="2" />
<text x="1188.87" y="703.5" ></text>
</g>
<g >
<title>ipv4_entry (21 samples, 0.10%)</title><rect x="1177.9" y="741" width="1.2" height="15.0" fill="rgb(241,217,39)" rx="2" ry="2" />
<text x="1180.91" y="751.5" ></text>
</g>
<g >
<title>asn1_ex_c2i (5 samples, 0.02%)</title><rect x="888.9" y="229" width="0.3" height="15.0" fill="rgb(212,59,9)" rx="2" ry="2" />
<text x="891.88" y="239.5" ></text>
</g>
<g >
<title>gtp_entry (17 samples, 0.08%)</title><rect x="1178.1" y="709" width="1.0" height="15.0" fill="rgb(251,155,9)" rx="2" ry="2" />
<text x="1181.14" y="719.5" ></text>
</g>
<g >
<title>APP_SKETCH_UDP_PLUG_ENTRY (3 samples, 0.01%)</title><rect x="1176.1" y="629" width="0.2" height="15.0" fill="rgb(205,124,8)" rx="2" ry="2" />
<text x="1179.08" y="639.5" ></text>
</g>
<g >
<title>stream_process_tcp (2 samples, 0.01%)</title><rect x="895.5" y="677" width="0.2" height="15.0" fill="rgb(228,190,41)" rx="2" ry="2" />
<text x="898.55" y="687.5" ></text>
</g>
<g >
<title>stream_process_udp (6 samples, 0.03%)</title><rect x="786.1" y="645" width="0.3" height="15.0" fill="rgb(210,16,5)" rx="2" ry="2" />
<text x="789.07" y="655.5" ></text>
</g>
<g >
<title>stream_process_tcp_allpkt (3 samples, 0.01%)</title><rect x="959.5" y="549" width="0.2" height="15.0" fill="rgb(234,81,5)" rx="2" ry="2" />
<text x="962.54" y="559.5" ></text>
</g>
<g >
<title>ASN1_item_d2i (25 samples, 0.12%)</title><rect x="888.3" y="421" width="1.5" height="15.0" fill="rgb(234,150,9)" rx="2" ry="2" />
<text x="891.29" y="431.5" ></text>
</g>
<g >
<title>CAPTURE_UDP_PACKET_ENTRY (2 samples, 0.01%)</title><rect x="960.7" y="501" width="0.1" height="15.0" fill="rgb(228,154,51)" rx="2" ry="2" />
<text x="963.72" y="511.5" ></text>
</g>
<g >
<title>lpi_update_dpkt (2 samples, 0.01%)</title><rect x="1153.3" y="533" width="0.1" height="15.0" fill="rgb(229,207,31)" rx="2" ry="2" />
<text x="1156.31" y="543.5" ></text>
</g>
<g >
<title>lpi_guess_protocol (164 samples, 0.82%)</title><rect x="971.4" y="533" width="9.7" height="15.0" fill="rgb(234,100,38)" rx="2" ry="2" />
<text x="974.40" y="543.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (2 samples, 0.01%)</title><rect x="886.0" y="565" width="0.1" height="15.0" fill="rgb(214,55,41)" rx="2" ry="2" />
<text x="888.99" y="575.5" ></text>
</g>
<g >
<title>[tsg_master.so] (10 samples, 0.05%)</title><rect x="1086.4" y="469" width="0.6" height="15.0" fill="rgb(228,122,40)" rx="2" ry="2" />
<text x="1089.36" y="479.5" ></text>
</g>
<g >
<title>malloc (14 samples, 0.07%)</title><rect x="870.2" y="693" width="0.9" height="15.0" fill="rgb(206,92,44)" rx="2" ry="2" />
<text x="873.24" y="703.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (75 samples, 0.37%)</title><rect x="888.1" y="533" width="4.4" height="15.0" fill="rgb(239,132,7)" rx="2" ry="2" />
<text x="891.05" y="543.5" ></text>
</g>
<g >
<title>Maat_ip_plugin_get_EX_data (4 samples, 0.02%)</title><rect x="1183.1" y="613" width="0.2" height="15.0" fill="rgb(238,209,2)" rx="2" ry="2" />
<text x="1186.10" y="623.5" ></text>
</g>
<g >
<title>sapp_dup_pkt_identify_udp_v4 (6 samples, 0.03%)</title><rect x="1111.0" y="549" width="0.3" height="15.0" fill="rgb(235,98,22)" rx="2" ry="2" />
<text x="1113.96" y="559.5" ></text>
</g>
<g >
<title>[libMV_sketch.so.2.1] (6 samples, 0.03%)</title><rect x="957.1" y="421" width="0.4" height="15.0" fill="rgb(254,125,25)" rx="2" ry="2" />
<text x="960.13" y="431.5" ></text>
</g>
<g >
<title>Maat_plugin_get_EX_data (4 samples, 0.02%)</title><rect x="1184.8" y="613" width="0.2" height="15.0" fill="rgb(253,1,37)" rx="2" ry="2" />
<text x="1187.75" y="623.5" ></text>
</g>
<g >
<title>realloc (2 samples, 0.01%)</title><rect x="811.1" y="693" width="0.2" height="15.0" fill="rgb(231,59,46)" rx="2" ry="2" />
<text x="814.14" y="703.5" ></text>
</g>
<g >
<title>[sapp] (82 samples, 0.41%)</title><rect x="888.0" y="597" width="4.8" height="15.0" fill="rgb(237,55,0)" rx="2" ry="2" />
<text x="891.00" y="607.5" ></text>
</g>
<g >
<title>[tsg_master.so] (4 samples, 0.02%)</title><rect x="895.7" y="677" width="0.3" height="15.0" fill="rgb(250,75,51)" rx="2" ry="2" />
<text x="898.72" y="687.5" ></text>
</g>
<g >
<title>TSG_MASTER_UDP_ENTRY (3 samples, 0.01%)</title><rect x="1119.0" y="501" width="0.2" height="15.0" fill="rgb(238,224,48)" rx="2" ry="2" />
<text x="1122.04" y="511.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (6 samples, 0.03%)</title><rect x="888.3" y="197" width="0.3" height="15.0" fill="rgb(253,146,31)" rx="2" ry="2" />
<text x="891.29" y="207.5" ></text>
</g>
<g >
<title>PROT_PROCESS (2 samples, 0.01%)</title><rect x="888.2" y="421" width="0.1" height="15.0" fill="rgb(219,88,2)" rx="2" ry="2" />
<text x="891.17" y="431.5" ></text>
</g>
<g >
<title>SSL_ENTRY (9 samples, 0.04%)</title><rect x="881.0" y="501" width="0.5" height="15.0" fill="rgb(241,51,49)" rx="2" ry="2" />
<text x="883.98" y="511.5" ></text>
</g>
<g >
<title>default_idle (14 samples, 0.07%)</title><rect x="1188.9" y="693" width="0.9" height="15.0" fill="rgb(217,209,23)" rx="2" ry="2" />
<text x="1191.94" y="703.5" ></text>
</g>
<g >
<title>Maat_hierarchy_region_compile (4 samples, 0.02%)</title><rect x="811.3" y="709" width="0.2" height="15.0" fill="rgb(220,197,9)" rx="2" ry="2" />
<text x="814.26" y="719.5" ></text>
</g>
<g >
<title>tsg_l7_protocol_name2id (4 samples, 0.02%)</title><rect x="1084.8" y="421" width="0.3" height="15.0" fill="rgb(208,112,25)" rx="2" ry="2" />
<text x="1087.83" y="431.5" ></text>
</g>
<g >
<title>scaling_bloom_check (140 samples, 0.70%)</title><rect x="1122.8" y="581" width="8.2" height="15.0" fill="rgb(244,190,51)" rx="2" ry="2" />
<text x="1125.76" y="591.5" ></text>
</g>
<g >
<title>CRefCountManager::inc_reference_count@plt (3 samples, 0.01%)</title><rect x="853.0" y="677" width="0.2" height="15.0" fill="rgb(229,45,14)" rx="2" ry="2" />
<text x="856.02" y="687.5" ></text>
</g>
<g >
<title>eth_entry (25 samples, 0.12%)</title><rect x="881.0" y="693" width="1.5" height="15.0" fill="rgb(212,130,31)" rx="2" ry="2" />
<text x="883.98" y="703.5" ></text>
</g>
<g >
<title>vfprintf (4 samples, 0.02%)</title><rect x="889.9" y="389" width="0.2" height="15.0" fill="rgb(236,199,54)" rx="2" ry="2" />
<text x="892.88" y="399.5" ></text>
</g>
<g >
<title>Maat_hierarchy_region_compile (2 samples, 0.01%)</title><rect x="790.8" y="709" width="0.2" height="15.0" fill="rgb(228,184,9)" rx="2" ry="2" />
<text x="793.85" y="719.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (6 samples, 0.03%)</title><rect x="1182.0" y="597" width="0.3" height="15.0" fill="rgb(238,9,26)" rx="2" ry="2" />
<text x="1184.98" y="607.5" ></text>
</g>
<g >
<title>Maat_table_runtime_perf_stat (2 samples, 0.01%)</title><rect x="954.4" y="421" width="0.1" height="15.0" fill="rgb(246,144,32)" rx="2" ry="2" />
<text x="957.41" y="431.5" ></text>
</g>
<g >
<title>APP_SKETCH_UDP_PLUG_ENTRY (7 samples, 0.03%)</title><rect x="1176.6" y="581" width="0.4" height="15.0" fill="rgb(219,140,46)" rx="2" ry="2" />
<text x="1179.61" y="591.5" ></text>
</g>
<g >
<title>CRYPTO_free (3 samples, 0.01%)</title><rect x="935.4" y="229" width="0.1" height="15.0" fill="rgb(213,127,31)" rx="2" ry="2" />
<text x="938.36" y="239.5" ></text>
</g>
<g >
<title>free (2 samples, 0.01%)</title><rect x="964.7" y="469" width="0.1" height="15.0" fill="rgb(211,192,11)" rx="2" ry="2" />
<text x="967.68" y="479.5" ></text>
</g>
<g >
<title>tcp_free_stream (10 samples, 0.05%)</title><rect x="943.2" y="501" width="0.6" height="15.0" fill="rgb(233,30,8)" rx="2" ry="2" />
<text x="946.21" y="511.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (7 samples, 0.03%)</title><rect x="1175.5" y="565" width="0.4" height="15.0" fill="rgb(237,162,24)" rx="2" ry="2" />
<text x="1178.49" y="575.5" ></text>
</g>
<g >
<title>grab_mid (2 samples, 0.01%)</title><rect x="781.2" y="517" width="0.1" height="15.0" fill="rgb(254,25,46)" rx="2" ry="2" />
<text x="784.17" y="527.5" ></text>
</g>
<g >
<title>dealipv4tcppkt (1,771 samples, 8.85%)</title><rect x="1004.6" y="565" width="104.5" height="15.0" fill="rgb(233,185,22)" rx="2" ry="2" />
<text x="1007.61" y="575.5" >dealipv4tcppkt</text>
</g>
<g >
<title>stream_process (4 samples, 0.02%)</title><rect x="882.2" y="533" width="0.2" height="15.0" fill="rgb(213,81,17)" rx="2" ry="2" />
<text x="885.16" y="543.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (7 samples, 0.03%)</title><rect x="1177.1" y="613" width="0.4" height="15.0" fill="rgb(235,178,12)" rx="2" ry="2" />
<text x="1180.08" y="623.5" ></text>
</g>
<g >
<title>ipv4_entry (9 samples, 0.04%)</title><rect x="895.0" y="693" width="0.5" height="15.0" fill="rgb(214,118,44)" rx="2" ry="2" />
<text x="897.96" y="703.5" ></text>
</g>
<g >
<title>dealipv6udppkt (5 samples, 0.02%)</title><rect x="882.2" y="645" width="0.3" height="15.0" fill="rgb(216,135,20)" rx="2" ry="2" />
<text x="885.16" y="655.5" ></text>
</g>
<g >
<title>tsg_scan_nesting_addr (4 samples, 0.02%)</title><rect x="881.7" y="485" width="0.2" height="15.0" fill="rgb(215,61,31)" rx="2" ry="2" />
<text x="884.68" y="495.5" ></text>
</g>
<g >
<title>region_compile (11 samples, 0.05%)</title><rect x="790.3" y="725" width="0.7" height="15.0" fill="rgb(246,194,25)" rx="2" ry="2" />
<text x="793.32" y="735.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="1188.3" y="453" width="0.1" height="15.0" fill="rgb(217,98,7)" rx="2" ry="2" />
<text x="1191.29" y="463.5" ></text>
</g>
<g >
<title>Maat_table_runtime_perf_stat (3 samples, 0.01%)</title><rect x="1182.7" y="597" width="0.2" height="15.0" fill="rgb(234,180,47)" rx="2" ry="2" />
<text x="1185.69" y="607.5" ></text>
</g>
<g >
<title>stream_process_udp (7 samples, 0.03%)</title><rect x="1175.5" y="629" width="0.4" height="15.0" fill="rgb(246,202,34)" rx="2" ry="2" />
<text x="1178.49" y="639.5" ></text>
</g>
<g >
<title>ssl_analyseHandShake (36 samples, 0.18%)</title><rect x="934.2" y="421" width="2.1" height="15.0" fill="rgb(218,3,7)" rx="2" ry="2" />
<text x="937.18" y="431.5" ></text>
</g>
<g >
<title>scaling_bloom_add (18 samples, 0.09%)</title><rect x="891.1" y="357" width="1.0" height="15.0" fill="rgb(208,189,54)" rx="2" ry="2" />
<text x="894.06" y="367.5" ></text>
</g>
<g >
<title>[sapp] (26 samples, 0.13%)</title><rect x="880.9" y="709" width="1.6" height="15.0" fill="rgb(207,178,25)" rx="2" ry="2" />
<text x="883.92" y="719.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.01%)</title><rect x="1184.3" y="613" width="0.2" height="15.0" fill="rgb(241,226,48)" rx="2" ry="2" />
<text x="1187.34" y="623.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (3 samples, 0.01%)</title><rect x="883.9" y="229" width="0.2" height="15.0" fill="rgb(250,212,32)" rx="2" ry="2" />
<text x="886.93" y="239.5" ></text>
</g>
<g >
<title>CStringMatch::search_rule (12,660 samples, 63.28%)</title><rect x="33.1" y="741" width="746.8" height="15.0" fill="rgb(241,39,46)" rx="2" ry="2" />
<text x="36.12" y="751.5" >CStringMatch::search_rule</text>
</g>
<g >
<title>ASN1_item_ex_d2i (3 samples, 0.01%)</title><rect x="1082.7" y="309" width="0.2" height="15.0" fill="rgb(212,18,0)" rx="2" ry="2" />
<text x="1085.71" y="319.5" ></text>
</g>
<g >
<title>CRYPTO_free (2 samples, 0.01%)</title><rect x="889.6" y="165" width="0.2" height="15.0" fill="rgb(218,203,41)" rx="2" ry="2" />
<text x="892.65" y="175.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="936.0" y="357" width="0.1" height="15.0" fill="rgb(223,108,52)" rx="2" ry="2" />
<text x="939.01" y="367.5" ></text>
</g>
<g >
<title>free (3 samples, 0.01%)</title><rect x="1141.6" y="501" width="0.2" height="15.0" fill="rgb(224,16,53)" rx="2" ry="2" />
<text x="1144.57" y="511.5" ></text>
</g>
<g >
<title>ssl_analyseHandShake (2 samples, 0.01%)</title><rect x="1178.8" y="533" width="0.1" height="15.0" fill="rgb(249,157,53)" rx="2" ry="2" />
<text x="1181.79" y="543.5" ></text>
</g>
<g >
<title>Maat_set_scan_status (6 samples, 0.03%)</title><rect x="780.9" y="533" width="0.4" height="15.0" fill="rgb(237,84,34)" rx="2" ry="2" />
<text x="783.94" y="543.5" ></text>
</g>
<g >
<title>checkstreamorder (4 samples, 0.02%)</title><rect x="927.0" y="565" width="0.2" height="15.0" fill="rgb(241,144,47)" rx="2" ry="2" />
<text x="929.98" y="575.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (14 samples, 0.07%)</title><rect x="935.0" y="293" width="0.8" height="15.0" fill="rgb(233,171,15)" rx="2" ry="2" />
<text x="938.01" y="303.5" ></text>
</g>
<g >
<title>CIntervalMatch::search_rule (5 samples, 0.02%)</title><rect x="811.8" y="693" width="0.3" height="15.0" fill="rgb(252,20,38)" rx="2" ry="2" />
<text x="814.79" y="703.5" ></text>
</g>
<g >
<title>malloc (2 samples, 0.01%)</title><rect x="883.3" y="197" width="0.2" height="15.0" fill="rgb(225,7,4)" rx="2" ry="2" />
<text x="886.34" y="207.5" ></text>
</g>
<g >
<title>std::_Rb_tree_increment (14 samples, 0.07%)</title><rect x="980.2" y="501" width="0.9" height="15.0" fill="rgb(245,125,14)" rx="2" ry="2" />
<text x="983.25" y="511.5" ></text>
</g>
<g >
<title>dealipv4tcppkt (71 samples, 0.35%)</title><rect x="781.8" y="661" width="4.2" height="15.0" fill="rgb(247,147,17)" rx="2" ry="2" />
<text x="784.76" y="671.5" ></text>
</g>
<g >
<title>gtp_entry (10 samples, 0.05%)</title><rect x="1188.1" y="613" width="0.5" height="15.0" fill="rgb(241,10,5)" rx="2" ry="2" />
<text x="1191.05" y="623.5" ></text>
</g>
<g >
<title>inet_ntop (3 samples, 0.01%)</title><rect x="885.8" y="485" width="0.2" height="15.0" fill="rgb(248,58,2)" rx="2" ry="2" />
<text x="888.81" y="495.5" ></text>
</g>
<g >
<title>SSL_ENTRY (38 samples, 0.19%)</title><rect x="882.7" y="517" width="2.3" height="15.0" fill="rgb(214,140,44)" rx="2" ry="2" />
<text x="885.75" y="527.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (6 samples, 0.03%)</title><rect x="889.3" y="229" width="0.3" height="15.0" fill="rgb(227,196,40)" rx="2" ry="2" />
<text x="892.29" y="239.5" ></text>
</g>
<g >
<title>page_fault (17 samples, 0.08%)</title><rect x="891.1" y="309" width="1.0" height="15.0" fill="rgb(219,17,42)" rx="2" ry="2" />
<text x="894.12" y="319.5" ></text>
</g>
<g >
<title>bitmap_increment (18 samples, 0.09%)</title><rect x="891.1" y="325" width="1.0" height="15.0" fill="rgb(213,119,27)" rx="2" ry="2" />
<text x="894.06" y="335.5" ></text>
</g>
<g >
<title>ipv4_entry (12 samples, 0.06%)</title><rect x="1175.2" y="661" width="0.7" height="15.0" fill="rgb(236,14,0)" rx="2" ry="2" />
<text x="1178.19" y="671.5" ></text>
</g>
<g >
<title>ipv4_entry (30 samples, 0.15%)</title><rect x="779.9" y="677" width="1.7" height="15.0" fill="rgb(205,35,52)" rx="2" ry="2" />
<text x="782.88" y="687.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (11 samples, 0.05%)</title><rect x="934.4" y="341" width="0.6" height="15.0" fill="rgb(206,72,21)" rx="2" ry="2" />
<text x="937.36" y="351.5" ></text>
</g>
<g >
<title>mem_cgroup_charge_common (2 samples, 0.01%)</title><rect x="891.2" y="197" width="0.2" height="15.0" fill="rgb(244,170,45)" rx="2" ry="2" />
<text x="894.24" y="207.5" ></text>
</g>
<g >
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="1119.0" y="485" width="0.2" height="15.0" fill="rgb(214,201,42)" rx="2" ry="2" />
<text x="1122.04" y="495.5" ></text>
</g>
<g >
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="882.2" y="501" width="0.2" height="15.0" fill="rgb(205,147,24)" rx="2" ry="2" />
<text x="885.21" y="511.5" ></text>
</g>
<g >
<title>malloc (2 samples, 0.01%)</title><rect x="963.1" y="501" width="0.2" height="15.0" fill="rgb(237,187,46)" rx="2" ry="2" />
<text x="966.14" y="511.5" ></text>
</g>
<g >
<title>HTTP_ENTRY (427 samples, 2.13%)</title><rect x="1024.5" y="453" width="25.2" height="15.0" fill="rgb(218,174,37)" rx="2" ry="2" />
<text x="1027.55" y="463.5" >H..</text>
</g>
<g >
<title>ipv6_entry (5 samples, 0.02%)</title><rect x="885.8" y="629" width="0.3" height="15.0" fill="rgb(254,208,31)" rx="2" ry="2" />
<text x="888.81" y="639.5" ></text>
</g>
<g >
<title>plugin_call_appentry (8 samples, 0.04%)</title><rect x="890.1" y="373" width="0.5" height="15.0" fill="rgb(252,158,8)" rx="2" ry="2" />
<text x="893.12" y="383.5" ></text>
</g>
<g >
<title>http_callPlugin (3 samples, 0.01%)</title><rect x="1081.6" y="373" width="0.2" height="15.0" fill="rgb(251,146,18)" rx="2" ry="2" />
<text x="1084.59" y="383.5" ></text>
</g>
<g >
<title>sapp_is_overlay_layer (6 samples, 0.03%)</title><rect x="1117.6" y="565" width="0.4" height="15.0" fill="rgb(254,51,10)" rx="2" ry="2" />
<text x="1120.63" y="575.5" ></text>
</g>
<g >
<title>ASN1_item_d2i (8 samples, 0.04%)</title><rect x="881.0" y="405" width="0.4" height="15.0" fill="rgb(250,89,9)" rx="2" ry="2" />
<text x="883.98" y="415.5" ></text>
</g>
<g >
<title>stream_process (5 samples, 0.02%)</title><rect x="781.4" y="629" width="0.2" height="15.0" fill="rgb(228,186,3)" rx="2" ry="2" />
<text x="784.35" y="639.5" ></text>
</g>
<g >
<title>ASN1_mbstring_ncopy (3 samples, 0.01%)</title><rect x="888.6" y="229" width="0.2" height="15.0" fill="rgb(246,190,2)" rx="2" ry="2" />
<text x="891.64" y="239.5" ></text>
</g>
<g >
<title>tcp_free_stream (3 samples, 0.01%)</title><rect x="892.7" y="549" width="0.1" height="15.0" fill="rgb(222,131,28)" rx="2" ry="2" />
<text x="895.66" y="559.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (3 samples, 0.01%)</title><rect x="1083.7" y="341" width="0.2" height="15.0" fill="rgb(212,208,16)" rx="2" ry="2" />
<text x="1086.71" y="351.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (22 samples, 0.11%)</title><rect x="882.9" y="325" width="1.3" height="15.0" fill="rgb(210,11,44)" rx="2" ry="2" />
<text x="885.86" y="335.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (37 samples, 0.18%)</title><rect x="781.8" y="533" width="2.1" height="15.0" fill="rgb(232,20,18)" rx="2" ry="2" />
<text x="784.76" y="543.5" ></text>
</g>
<g >
<title>tsg_get_ip_asn (2 samples, 0.01%)</title><rect x="1112.9" y="453" width="0.1" height="15.0" fill="rgb(232,212,46)" rx="2" ry="2" />
<text x="1115.91" y="463.5" ></text>
</g>
<g >
<title>_int_free (3 samples, 0.01%)</title><rect x="935.4" y="213" width="0.1" height="15.0" fill="rgb(216,160,16)" rx="2" ry="2" />
<text x="938.36" y="223.5" ></text>
</g>
<g >
<title>CInflate2::fn_iDecode (2 samples, 0.01%)</title><rect x="933.6" y="325" width="0.1" height="15.0" fill="rgb(210,160,45)" rx="2" ry="2" />
<text x="936.59" y="335.5" ></text>
</g>
<g >
<title>checkstreamorder (2 samples, 0.01%)</title><rect x="943.0" y="485" width="0.1" height="15.0" fill="rgb(251,195,30)" rx="2" ry="2" />
<text x="946.03" y="495.5" ></text>
</g>
<g >
<title>sprintf (2 samples, 0.01%)</title><rect x="885.7" y="469" width="0.1" height="15.0" fill="rgb(214,56,4)" rx="2" ry="2" />
<text x="888.70" y="479.5" ></text>
</g>
<g >
<title>Maat_ip_plugin_get_EX_data (2 samples, 0.01%)</title><rect x="1182.9" y="613" width="0.1" height="15.0" fill="rgb(207,19,41)" rx="2" ry="2" />
<text x="1185.92" y="623.5" ></text>
</g>
<g >
<title>ASN1_item_ex_i2d (2 samples, 0.01%)</title><rect x="883.9" y="181" width="0.1" height="15.0" fill="rgb(232,86,21)" rx="2" ry="2" />
<text x="886.93" y="191.5" ></text>
</g>
<g >
<title>marsio_buff_ctrlzone (166 samples, 0.83%)</title><rect x="1156.0" y="677" width="9.8" height="15.0" fill="rgb(241,156,16)" rx="2" ry="2" />
<text x="1158.97" y="687.5" ></text>
</g>
<g >
<title>MV_Sketch_update (5 samples, 0.02%)</title><rect x="962.6" y="437" width="0.3" height="15.0" fill="rgb(217,144,3)" rx="2" ry="2" />
<text x="965.61" y="447.5" ></text>
</g>
<g >
<title>stream_process_udp (2 samples, 0.01%)</title><rect x="892.9" y="597" width="0.1" height="15.0" fill="rgb(237,79,38)" rx="2" ry="2" />
<text x="895.89" y="607.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (3 samples, 0.01%)</title><rect x="1083.7" y="373" width="0.2" height="15.0" fill="rgb(216,192,49)" rx="2" ry="2" />
<text x="1086.71" y="383.5" ></text>
</g>
<g >
<title>ASN1_template_free (4 samples, 0.02%)</title><rect x="1082.9" y="309" width="0.3" height="15.0" fill="rgb(253,4,52)" rx="2" ry="2" />
<text x="1085.94" y="319.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (6 samples, 0.03%)</title><rect x="1082.6" y="341" width="0.3" height="15.0" fill="rgb(206,161,22)" rx="2" ry="2" />
<text x="1085.59" y="351.5" ></text>
</g>
<g >
<title>Maat_scan_proto_addr (1,000 samples, 5.00%)</title><rect x="812.6" y="741" width="58.9" height="15.0" fill="rgb(231,164,5)" rx="2" ry="2" />
<text x="815.55" y="751.5" >Maat_s..</text>
</g>
<g >
<title>ASN1_item_ex_d2i (4 samples, 0.02%)</title><rect x="934.5" y="309" width="0.2" height="15.0" fill="rgb(246,194,13)" rx="2" ry="2" />
<text x="937.48" y="319.5" ></text>
</g>
<g >
<title>ssl_analyseSsl (2 samples, 0.01%)</title><rect x="958.9" y="453" width="0.1" height="15.0" fill="rgb(247,100,25)" rx="2" ry="2" />
<text x="961.90" y="463.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (5 samples, 0.02%)</title><rect x="882.9" y="117" width="0.3" height="15.0" fill="rgb(219,149,30)" rx="2" ry="2" />
<text x="885.92" y="127.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.5] (20 samples, 0.10%)</title><rect x="1180.4" y="533" width="1.2" height="15.0" fill="rgb(240,106,6)" rx="2" ry="2" />
<text x="1183.44" y="543.5" ></text>
</g>
<g >
<title>[librulescan.so.2.2] (4 samples, 0.02%)</title><rect x="853.2" y="677" width="0.2" height="15.0" fill="rgb(238,222,1)" rx="2" ry="2" />
<text x="856.19" y="687.5" ></text>
</g>
<g >
<title>ssl_analyseHandShake (2 samples, 0.01%)</title><rect x="930.8" y="405" width="0.1" height="15.0" fill="rgb(221,182,6)" rx="2" ry="2" />
<text x="933.82" y="415.5" ></text>
</g>
<g >
<title>stream_process_udp (2 samples, 0.01%)</title><rect x="950.9" y="501" width="0.2" height="15.0" fill="rgb(249,7,38)" rx="2" ry="2" />
<text x="953.93" y="511.5" ></text>
</g>
<g >
<title>stream_process (2 samples, 0.01%)</title><rect x="786.0" y="581" width="0.1" height="15.0" fill="rgb(250,169,49)" rx="2" ry="2" />
<text x="788.95" y="591.5" ></text>
</g>
<g >
<title>rulescan_search (319 samples, 1.59%)</title><rect x="791.0" y="725" width="18.8" height="15.0" fill="rgb(210,192,41)" rx="2" ry="2" />
<text x="793.96" y="735.5" ></text>
</g>
<g >
<title>Maat_table_runtime_perf_stat (2 samples, 0.01%)</title><rect x="1145.9" y="469" width="0.2" height="15.0" fill="rgb(241,105,47)" rx="2" ry="2" />
<text x="1148.94" y="479.5" ></text>
</g>
<g >
<title>malloc (3 samples, 0.01%)</title><rect x="931.3" y="469" width="0.2" height="15.0" fill="rgb(253,25,26)" rx="2" ry="2" />
<text x="934.29" y="479.5" ></text>
</g>
<g >
<title>grab_mid (2 samples, 0.01%)</title><rect x="785.6" y="517" width="0.1" height="15.0" fill="rgb(242,47,12)" rx="2" ry="2" />
<text x="788.60" y="527.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.5] (2 samples, 0.01%)</title><rect x="961.4" y="389" width="0.2" height="15.0" fill="rgb(230,145,8)" rx="2" ry="2" />
<text x="964.43" y="399.5" ></text>
</g>
<g >
<title>tsg_get_ip_asn (3 samples, 0.01%)</title><rect x="1145.6" y="501" width="0.2" height="15.0" fill="rgb(208,194,35)" rx="2" ry="2" />
<text x="1148.58" y="511.5" ></text>
</g>
<g >
<title>Maat_table_get_scan_type (4 samples, 0.02%)</title><rect x="788.0" y="709" width="0.3" height="15.0" fill="rgb(239,200,46)" rx="2" ry="2" />
<text x="791.02" y="719.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (8 samples, 0.04%)</title><rect x="881.0" y="277" width="0.4" height="15.0" fill="rgb(235,100,46)" rx="2" ry="2" />
<text x="883.98" y="287.5" ></text>
</g>
<g >
<title>do_page_fault (21 samples, 0.10%)</title><rect x="1021.1" y="389" width="1.3" height="15.0" fill="rgb(237,8,28)" rx="2" ry="2" />
<text x="1024.13" y="399.5" ></text>
</g>
<g >
<title>__sapp_inject_pkt (18 samples, 0.09%)</title><rect x="891.1" y="421" width="1.0" height="15.0" fill="rgb(211,8,5)" rx="2" ry="2" />
<text x="894.06" y="431.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (28 samples, 0.14%)</title><rect x="886.3" y="613" width="1.7" height="15.0" fill="rgb(216,14,47)" rx="2" ry="2" />
<text x="889.34" y="623.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="888.5" y="37" width="0.1" height="15.0" fill="rgb(208,27,41)" rx="2" ry="2" />
<text x="891.53" y="47.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (6 samples, 0.03%)</title><rect x="888.3" y="245" width="0.3" height="15.0" fill="rgb(249,192,37)" rx="2" ry="2" />
<text x="891.29" y="255.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (5 samples, 0.02%)</title><rect x="1187.6" y="325" width="0.3" height="15.0" fill="rgb(215,46,22)" rx="2" ry="2" />
<text x="1190.58" y="335.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (4 samples, 0.02%)</title><rect x="1188.1" y="373" width="0.2" height="15.0" fill="rgb(236,46,32)" rx="2" ry="2" />
<text x="1191.05" y="383.5" ></text>
</g>
<g >
<title>rulescan_searchstream (16 samples, 0.08%)</title><rect x="811.6" y="709" width="1.0" height="15.0" fill="rgb(240,101,47)" rx="2" ry="2" />
<text x="814.61" y="719.5" ></text>
</g>
<g >
<title>vfprintf (2 samples, 0.01%)</title><rect x="894.6" y="549" width="0.1" height="15.0" fill="rgb(231,91,33)" rx="2" ry="2" />
<text x="897.60" y="559.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (11 samples, 0.05%)</title><rect x="1174.4" y="565" width="0.7" height="15.0" fill="rgb(233,197,1)" rx="2" ry="2" />
<text x="1177.43" y="575.5" ></text>
</g>
<g >
<title>stream_process_tcp (11 samples, 0.05%)</title><rect x="1174.4" y="629" width="0.7" height="15.0" fill="rgb(205,62,25)" rx="2" ry="2" />
<text x="1177.43" y="639.5" ></text>
</g>
<g >
<title>stream_process_udp (2 samples, 0.01%)</title><rect x="786.0" y="597" width="0.1" height="15.0" fill="rgb(220,129,14)" rx="2" ry="2" />
<text x="788.95" y="607.5" ></text>
</g>
<g >
<title>_IO_vsprintf (2 samples, 0.01%)</title><rect x="885.5" y="437" width="0.1" height="15.0" fill="rgb(225,199,26)" rx="2" ry="2" />
<text x="888.46" y="447.5" ></text>
</g>
<g >
<title>scaling_bloom_add (22 samples, 0.11%)</title><rect x="1021.1" y="453" width="1.3" height="15.0" fill="rgb(243,112,3)" rx="2" ry="2" />
<text x="1024.07" y="463.5" ></text>
</g>
<g >
<title>http_analyseHttpConnection (11 samples, 0.05%)</title><rect x="933.4" y="453" width="0.6" height="15.0" fill="rgb(218,144,13)" rx="2" ry="2" />
<text x="936.36" y="463.5" ></text>
</g>
<g >
<title>native_send_call_func_ipi (3 samples, 0.01%)</title><rect x="891.9" y="149" width="0.2" height="15.0" fill="rgb(219,35,44)" rx="2" ry="2" />
<text x="894.95" y="159.5" ></text>
</g>
<g >
<title>[libMESA_handle_logger.so.2.0] (2 samples, 0.01%)</title><rect x="1180.3" y="533" width="0.1" height="15.0" fill="rgb(246,136,47)" rx="2" ry="2" />
<text x="1183.33" y="543.5" ></text>
</g>
<g >
<title>[tsg_master.so] (27 samples, 0.13%)</title><rect x="953.4" y="485" width="1.5" height="15.0" fill="rgb(244,18,16)" rx="2" ry="2" />
<text x="956.35" y="495.5" ></text>
</g>
<g >
<title>sapp_dup_pkt_identify_udp_v4 (5 samples, 0.02%)</title><rect x="951.1" y="549" width="0.2" height="15.0" fill="rgb(236,11,31)" rx="2" ry="2" />
<text x="954.05" y="559.5" ></text>
</g>
<g >
<title>ssl_analyseStream (9 samples, 0.04%)</title><rect x="881.0" y="485" width="0.5" height="15.0" fill="rgb(211,2,9)" rx="2" ry="2" />
<text x="883.98" y="495.5" ></text>
</g>
<g >
<title>native_send_call_func_ipi (3 samples, 0.01%)</title><rect x="1022.2" y="245" width="0.2" height="15.0" fill="rgb(241,121,21)" rx="2" ry="2" />
<text x="1025.19" y="255.5" ></text>
</g>
<g >
<title>project_req_get_struct (4 samples, 0.02%)</title><rect x="1024.2" y="421" width="0.2" height="15.0" fill="rgb(251,167,5)" rx="2" ry="2" />
<text x="1027.19" y="431.5" ></text>
</g>
<g >
<title>stream_process (51 samples, 0.25%)</title><rect x="882.5" y="549" width="3.0" height="15.0" fill="rgb(224,96,50)" rx="2" ry="2" />
<text x="885.45" y="559.5" ></text>
</g>
<g >
<title>TSG_MASTER_UDP_ENTRY (2 samples, 0.01%)</title><rect x="886.0" y="549" width="0.1" height="15.0" fill="rgb(240,5,42)" rx="2" ry="2" />
<text x="888.99" y="559.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="1121.2" y="517" width="0.1" height="15.0" fill="rgb(237,146,44)" rx="2" ry="2" />
<text x="1124.22" y="527.5" ></text>
</g>
<g >
<title>tsg_get_ip_asn (2 samples, 0.01%)</title><rect x="970.5" y="501" width="0.1" height="15.0" fill="rgb(242,75,24)" rx="2" ry="2" />
<text x="973.46" y="511.5" ></text>
</g>
<g >
<title>smp_call_function_many (12 samples, 0.06%)</title><rect x="891.4" y="165" width="0.7" height="15.0" fill="rgb(223,229,45)" rx="2" ry="2" />
<text x="894.42" y="175.5" ></text>
</g>
<g >
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="888.2" y="389" width="0.1" height="15.0" fill="rgb(231,175,2)" rx="2" ry="2" />
<text x="891.17" y="399.5" ></text>
</g>
<g >
<title>SSL_ENTRY (4 samples, 0.02%)</title><rect x="1188.1" y="485" width="0.2" height="15.0" fill="rgb(210,84,31)" rx="2" ry="2" />
<text x="1191.05" y="495.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (11 samples, 0.05%)</title><rect x="1178.1" y="565" width="0.7" height="15.0" fill="rgb(236,8,35)" rx="2" ry="2" />
<text x="1181.14" y="575.5" ></text>
</g>
<g >
<title>udp_free_stream (4 samples, 0.02%)</title><rect x="950.8" y="517" width="0.3" height="15.0" fill="rgb(243,77,15)" rx="2" ry="2" />
<text x="953.81" y="527.5" ></text>
</g>
<g >
<title>MV_Sketch_update (8 samples, 0.04%)</title><rect x="1115.1" y="437" width="0.5" height="15.0" fill="rgb(243,221,50)" rx="2" ry="2" />
<text x="1118.09" y="447.5" ></text>
</g>
<g >
<title>__x2apic_send_IPI_mask (2 samples, 0.01%)</title><rect x="1022.2" y="213" width="0.2" height="15.0" fill="rgb(215,211,4)" rx="2" ry="2" />
<text x="1025.25" y="223.5" ></text>
</g>
<g >
<title>stream_process_udp (28 samples, 0.14%)</title><rect x="886.3" y="645" width="1.7" height="15.0" fill="rgb(223,223,37)" rx="2" ry="2" />
<text x="889.34" y="655.5" ></text>
</g>
<g >
<title>[sapp] (6 samples, 0.03%)</title><rect x="957.7" y="533" width="0.3" height="15.0" fill="rgb(229,104,14)" rx="2" ry="2" />
<text x="960.66" y="543.5" ></text>
</g>
<g >
<title>ssl_analyseStream (36 samples, 0.18%)</title><rect x="1081.9" y="453" width="2.2" height="15.0" fill="rgb(240,74,47)" rx="2" ry="2" />
<text x="1084.94" y="463.5" ></text>
</g>
<g >
<title>cpu_startup_entry (19 samples, 0.09%)</title><rect x="1188.9" y="725" width="1.1" height="15.0" fill="rgb(253,44,5)" rx="2" ry="2" />
<text x="1191.88" y="735.5" ></text>
</g>
<g >
<title>do_wp_page (15 samples, 0.07%)</title><rect x="891.2" y="245" width="0.9" height="15.0" fill="rgb(237,145,36)" rx="2" ry="2" />
<text x="894.24" y="255.5" ></text>
</g>
<g >
<title>stream_process (2 samples, 0.01%)</title><rect x="892.9" y="581" width="0.1" height="15.0" fill="rgb(244,137,18)" rx="2" ry="2" />
<text x="895.89" y="591.5" ></text>
</g>
<g >
<title>ipv6_entry (3 samples, 0.01%)</title><rect x="882.0" y="613" width="0.2" height="15.0" fill="rgb(247,110,28)" rx="2" ry="2" />
<text x="884.98" y="623.5" ></text>
</g>
<g >
<title>inet_ntop (5 samples, 0.02%)</title><rect x="885.2" y="469" width="0.3" height="15.0" fill="rgb(232,126,15)" rx="2" ry="2" />
<text x="888.16" y="479.5" ></text>
</g>
<g >
<title>APP_SKETCH_UDP_PLUG_ENTRY (5 samples, 0.02%)</title><rect x="781.4" y="597" width="0.2" height="15.0" fill="rgb(220,140,34)" rx="2" ry="2" />
<text x="784.35" y="607.5" ></text>
</g>
<g >
<title>inet_ntop (7 samples, 0.03%)</title><rect x="1185.0" y="613" width="0.4" height="15.0" fill="rgb(239,183,34)" rx="2" ry="2" />
<text x="1187.99" y="623.5" ></text>
</g>
<g >
<title>tsg_get_subscribe_id (3 samples, 0.01%)</title><rect x="961.6" y="453" width="0.1" height="15.0" fill="rgb(238,78,18)" rx="2" ry="2" />
<text x="964.55" y="463.5" ></text>
</g>
<g >
<title>CStringMatch::check_match_mode@plt (159 samples, 0.79%)</title><rect x="263.8" y="725" width="9.4" height="15.0" fill="rgb(228,90,30)" rx="2" ry="2" />
<text x="266.81" y="735.5" ></text>
</g>
<g >
<title>[sapp] (1,251 samples, 6.25%)</title><rect x="1014.0" y="533" width="73.8" height="15.0" fill="rgb(225,226,37)" rx="2" ry="2" />
<text x="1017.05" y="543.5" >[sapp]</text>
</g>
<g >
<title>ASN1_primitive_free (4 samples, 0.02%)</title><rect x="935.3" y="261" width="0.2" height="15.0" fill="rgb(216,73,37)" rx="2" ry="2" />
<text x="938.30" y="271.5" ></text>
</g>
<g >
<title>tsg_scan_app_properties_policy (2 samples, 0.01%)</title><rect x="885.6" y="501" width="0.1" height="15.0" fill="rgb(207,210,29)" rx="2" ry="2" />
<text x="888.58" y="511.5" ></text>
</g>
<g >
<title>__snprintf (2 samples, 0.01%)</title><rect x="1181.6" y="405" width="0.1" height="15.0" fill="rgb(228,30,36)" rx="2" ry="2" />
<text x="1184.62" y="415.5" ></text>
</g>
<g >
<title>string_search (8,535 samples, 42.66%)</title><rect x="276.4" y="725" width="503.5" height="15.0" fill="rgb(221,119,52)" rx="2" ry="2" />
<text x="279.44" y="735.5" >string_search</text>
</g>
<g >
<title>stream_process_tcp_allpkt (2 samples, 0.01%)</title><rect x="1118.6" y="549" width="0.1" height="15.0" fill="rgb(236,31,1)" rx="2" ry="2" />
<text x="1121.57" y="559.5" ></text>
</g>
<g >
<title>lrustream (26 samples, 0.13%)</title><rect x="963.3" y="597" width="1.5" height="15.0" fill="rgb(249,166,30)" rx="2" ry="2" />
<text x="966.26" y="607.5" ></text>
</g>
<g >
<title>eth_entry (19 samples, 0.09%)</title><rect x="1187.5" y="677" width="1.1" height="15.0" fill="rgb(208,164,23)" rx="2" ry="2" />
<text x="1190.52" y="687.5" ></text>
</g>
<g >
<title>[sapp] (2 samples, 0.01%)</title><rect x="894.7" y="565" width="0.1" height="15.0" fill="rgb(206,78,23)" rx="2" ry="2" />
<text x="897.72" y="575.5" ></text>
</g>
<g >
<title>lpi_guess_protocol (101 samples, 0.50%)</title><rect x="1147.4" y="533" width="5.9" height="15.0" fill="rgb(230,67,43)" rx="2" ry="2" />
<text x="1150.35" y="543.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (3 samples, 0.01%)</title><rect x="892.7" y="501" width="0.1" height="15.0" fill="rgb(222,75,19)" rx="2" ry="2" />
<text x="895.66" y="511.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (4 samples, 0.02%)</title><rect x="1187.6" y="261" width="0.2" height="15.0" fill="rgb(250,109,51)" rx="2" ry="2" />
<text x="1190.58" y="271.5" ></text>
</g>
<g >
<title>[sapp] (3 samples, 0.01%)</title><rect x="882.0" y="581" width="0.2" height="15.0" fill="rgb(249,200,39)" rx="2" ry="2" />
<text x="884.98" y="591.5" ></text>
</g>
<g >
<title>TLD_append_streaminfo (4 samples, 0.02%)</title><rect x="895.7" y="629" width="0.3" height="15.0" fill="rgb(249,83,32)" rx="2" ry="2" />
<text x="898.72" y="639.5" ></text>
</g>
<g >
<title>[libmarsio.so.4.4] (35 samples, 0.17%)</title><rect x="1171.4" y="661" width="2.1" height="15.0" fill="rgb(243,2,41)" rx="2" ry="2" />
<text x="1174.42" y="671.5" ></text>
</g>
<g >
<title>sapp_dup_pkt_mark_v4 (18 samples, 0.09%)</title><rect x="891.1" y="389" width="1.0" height="15.0" fill="rgb(207,70,11)" rx="2" ry="2" />
<text x="894.06" y="399.5" ></text>
</g>
<g >
<title>TSG_MASTER_UDP_ENTRY (4 samples, 0.02%)</title><rect x="885.6" y="549" width="0.2" height="15.0" fill="rgb(228,156,14)" rx="2" ry="2" />
<text x="888.58" y="559.5" ></text>
</g>
<g >
<title>project_req_get_struct (2 samples, 0.01%)</title><rect x="1024.4" y="437" width="0.1" height="15.0" fill="rgb(217,12,11)" rx="2" ry="2" />
<text x="1027.43" y="447.5" ></text>
</g>
<g >
<title>_int_free (18 samples, 0.09%)</title><rect x="1019.8" y="501" width="1.0" height="15.0" fill="rgb(241,115,48)" rx="2" ry="2" />
<text x="1022.77" y="511.5" ></text>
</g>
<g >
<title>Maat_plugin_get_EX_data (2 samples, 0.01%)</title><rect x="1119.0" y="437" width="0.2" height="15.0" fill="rgb(247,145,21)" rx="2" ry="2" />
<text x="1122.04" y="447.5" ></text>
</g>
<g >
<title>MV_Sketch_update (10 samples, 0.05%)</title><rect x="957.0" y="437" width="0.6" height="15.0" fill="rgb(239,155,51)" rx="2" ry="2" />
<text x="960.01" y="447.5" ></text>
</g>
<g >
<title>[sapp] (37 samples, 0.18%)</title><rect x="781.8" y="613" width="2.1" height="15.0" fill="rgb(238,18,52)" rx="2" ry="2" />
<text x="784.76" y="623.5" ></text>
</g>
<g >
<title>stream_process (15 samples, 0.07%)</title><rect x="1173.5" y="629" width="0.9" height="15.0" fill="rgb(252,190,53)" rx="2" ry="2" />
<text x="1176.54" y="639.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.01%)</title><rect x="963.5" y="533" width="0.1" height="15.0" fill="rgb(236,129,33)" rx="2" ry="2" />
<text x="966.50" y="543.5" ></text>
</g>
<g >
<title>[libprotoident.so] (19 samples, 0.09%)</title><rect x="936.5" y="437" width="1.2" height="15.0" fill="rgb(238,40,16)" rx="2" ry="2" />
<text x="939.54" y="447.5" ></text>
</g>
<g >
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="881.5" y="485" width="0.2" height="15.0" fill="rgb(244,10,54)" rx="2" ry="2" />
<text x="884.51" y="495.5" ></text>
</g>
<g >
<title>tsg_scan_addr (2 samples, 0.01%)</title><rect x="1184.0" y="629" width="0.1" height="15.0" fill="rgb(237,84,31)" rx="2" ry="2" />
<text x="1186.98" y="639.5" ></text>
</g>
<g >
<title>http_analyseACompleteRegion (2 samples, 0.01%)</title><rect x="894.4" y="613" width="0.1" height="15.0" fill="rgb(211,176,4)" rx="2" ry="2" />
<text x="897.42" y="623.5" ></text>
</g>
<g >
<title>CRYPTO_malloc (2 samples, 0.01%)</title><rect x="888.6" y="213" width="0.2" height="15.0" fill="rgb(220,223,51)" rx="2" ry="2" />
<text x="891.64" y="223.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (25 samples, 0.12%)</title><rect x="888.3" y="293" width="1.5" height="15.0" fill="rgb(207,145,34)" rx="2" ry="2" />
<text x="891.29" y="303.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.5] (2 samples, 0.01%)</title><rect x="1175.1" y="533" width="0.1" height="15.0" fill="rgb(217,141,37)" rx="2" ry="2" />
<text x="1178.08" y="543.5" ></text>
</g>
<g >
<title>Maat_set_scan_status (5 samples, 0.02%)</title><rect x="785.4" y="533" width="0.3" height="15.0" fill="rgb(224,15,42)" rx="2" ry="2" />
<text x="788.42" y="543.5" ></text>
</g>
<g >
<title>SSL_ENTRY (5 samples, 0.02%)</title><rect x="1187.6" y="485" width="0.3" height="15.0" fill="rgb(207,75,53)" rx="2" ry="2" />
<text x="1190.58" y="495.5" ></text>
</g>
<g >
<title>rawv6_sendmsg (10 samples, 0.05%)</title><rect x="896.0" y="629" width="0.6" height="15.0" fill="rgb(209,187,43)" rx="2" ry="2" />
<text x="899.02" y="639.5" ></text>
</g>
<g >
<title>sprintf (3 samples, 0.01%)</title><rect x="885.8" y="469" width="0.2" height="15.0" fill="rgb(215,61,20)" rx="2" ry="2" />
<text x="888.81" y="479.5" ></text>
</g>
<g >
<title>http_parser_execute (3 samples, 0.01%)</title><rect x="938.6" y="437" width="0.2" height="15.0" fill="rgb(219,207,29)" rx="2" ry="2" />
<text x="941.60" y="447.5" ></text>
</g>
<g >
<title>__strlen_sse2_pminub (2 samples, 0.01%)</title><rect x="887.3" y="549" width="0.2" height="15.0" fill="rgb(228,83,38)" rx="2" ry="2" />
<text x="890.35" y="559.5" ></text>
</g>
<g >
<title>tsg_scan_nesting_addr (11 samples, 0.05%)</title><rect x="1112.8" y="469" width="0.7" height="15.0" fill="rgb(239,20,0)" rx="2" ry="2" />
<text x="1115.85" y="479.5" ></text>
</g>
<g >
<title>[sapp] (47 samples, 0.23%)</title><rect x="1179.2" y="661" width="2.8" height="15.0" fill="rgb(208,116,9)" rx="2" ry="2" />
<text x="1182.21" y="671.5" ></text>
</g>
<g >
<title>stream_process (419 samples, 2.09%)</title><rect x="1061.5" y="501" width="24.7" height="15.0" fill="rgb(254,101,38)" rx="2" ry="2" />
<text x="1064.47" y="511.5" >s..</text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="936.1" y="341" width="0.1" height="15.0" fill="rgb(244,89,3)" rx="2" ry="2" />
<text x="939.13" y="351.5" ></text>
</g>
<g >
<title>Maat_clean_status (2 samples, 0.01%)</title><rect x="1184.3" y="645" width="0.2" height="15.0" fill="rgb(253,66,26)" rx="2" ry="2" />
<text x="1187.34" y="655.5" ></text>
</g>
<g >
<title>dealipv4tcppkt (333 samples, 1.66%)</title><rect x="929.2" y="565" width="19.7" height="15.0" fill="rgb(227,25,13)" rx="2" ry="2" />
<text x="932.23" y="575.5" ></text>
</g>
<g >
<title>Maat_table_runtime_ip_plugin_get_N_ex_data (2 samples, 0.01%)</title><rect x="970.6" y="469" width="0.1" height="15.0" fill="rgb(206,82,5)" rx="2" ry="2" />
<text x="973.57" y="479.5" ></text>
</g>
<g >
<title>tsg_scan_nesting_addr (12 samples, 0.06%)</title><rect x="938.8" y="453" width="0.7" height="15.0" fill="rgb(226,225,16)" rx="2" ry="2" />
<text x="941.84" y="463.5" ></text>
</g>
<g >
<title>__snprintf (2 samples, 0.01%)</title><rect x="894.8" y="565" width="0.2" height="15.0" fill="rgb(217,8,7)" rx="2" ry="2" />
<text x="897.84" y="575.5" ></text>
</g>
<g >
<title>CBoolExprMatch::find_matched_result (37 samples, 0.18%)</title><rect x="805.6" y="661" width="2.2" height="15.0" fill="rgb(253,135,6)" rx="2" ry="2" />
<text x="808.59" y="671.5" ></text>
</g>
<g >
<title>set_vlan_addr (21 samples, 0.10%)</title><rect x="1154.3" y="629" width="1.2" height="15.0" fill="rgb(216,96,32)" rx="2" ry="2" />
<text x="1157.25" y="639.5" ></text>
</g>
<g >
<title>native_flush_tlb_others (16 samples, 0.08%)</title><rect x="1021.4" y="277" width="1.0" height="15.0" fill="rgb(219,100,54)" rx="2" ry="2" />
<text x="1024.42" y="287.5" ></text>
</g>
<g >
<title>__memcmp_sse4_1 (22 samples, 0.11%)</title><rect x="1092.8" y="485" width="1.3" height="15.0" fill="rgb(239,118,10)" rx="2" ry="2" />
<text x="1095.79" y="495.5" ></text>
</g>
<g >
<title>Maat_set_scan_status (2 samples, 0.01%)</title><rect x="781.5" y="565" width="0.1" height="15.0" fill="rgb(217,110,4)" rx="2" ry="2" />
<text x="784.53" y="575.5" ></text>
</g>
<g >
<title>__snprintf (4 samples, 0.02%)</title><rect x="889.9" y="421" width="0.2" height="15.0" fill="rgb(209,227,51)" rx="2" ry="2" />
<text x="892.88" y="431.5" ></text>
</g>
<g >
<title>llist_add_batch (7 samples, 0.03%)</title><rect x="1021.8" y="245" width="0.4" height="15.0" fill="rgb(252,0,42)" rx="2" ry="2" />
<text x="1024.77" y="255.5" ></text>
</g>
<g >
<title>tsg_get_subscribe_id (2 samples, 0.01%)</title><rect x="1119.0" y="453" width="0.2" height="15.0" fill="rgb(219,175,40)" rx="2" ry="2" />
<text x="1122.04" y="463.5" ></text>
</g>
<g >
<title>system_capture_packet_entry (14 samples, 0.07%)</title><rect x="947.6" y="469" width="0.9" height="15.0" fill="rgb(247,56,41)" rx="2" ry="2" />
<text x="950.63" y="479.5" ></text>
</g>
<g >
<title>tsg_scan_nesting_addr (3 samples, 0.01%)</title><rect x="893.9" y="565" width="0.2" height="15.0" fill="rgb(234,111,35)" rx="2" ry="2" />
<text x="896.89" y="575.5" ></text>
</g>
<g >
<title>checkstreamorder (11 samples, 0.05%)</title><rect x="998.1" y="581" width="0.7" height="15.0" fill="rgb(231,7,4)" rx="2" ry="2" />
<text x="1001.12" y="591.5" ></text>
</g>
<g >
<title>MESA_handle_runtime_log (2 samples, 0.01%)</title><rect x="893.5" y="565" width="0.1" height="15.0" fill="rgb(232,124,47)" rx="2" ry="2" />
<text x="896.48" y="575.5" ></text>
</g>
<g >
<title>dealipv4udppkt (17 samples, 0.08%)</title><rect x="1178.1" y="725" width="1.0" height="15.0" fill="rgb(220,114,41)" rx="2" ry="2" />
<text x="1181.14" y="735.5" ></text>
</g>
<g >
<title>[sapp] (71 samples, 0.35%)</title><rect x="781.8" y="645" width="4.2" height="15.0" fill="rgb(231,172,31)" rx="2" ry="2" />
<text x="784.76" y="655.5" ></text>
</g>
<g >
<title>lpi_guess_protocol (5 samples, 0.02%)</title><rect x="1119.2" y="485" width="0.3" height="15.0" fill="rgb(212,50,47)" rx="2" ry="2" />
<text x="1122.22" y="495.5" ></text>
</g>
<g >
<title>PROT_PROCESS (3 samples, 0.01%)</title><rect x="884.8" y="421" width="0.1" height="15.0" fill="rgb(214,160,34)" rx="2" ry="2" />
<text x="887.75" y="431.5" ></text>
</g>
<g >
<title>stream_process (2 samples, 0.01%)</title><rect x="1175.1" y="629" width="0.1" height="15.0" fill="rgb(208,186,45)" rx="2" ry="2" />
<text x="1178.08" y="639.5" ></text>
</g>
<g >
<title>fw_ssl_entry (3 samples, 0.01%)</title><rect x="884.8" y="373" width="0.1" height="15.0" fill="rgb(217,165,14)" rx="2" ry="2" />
<text x="887.75" y="383.5" ></text>
</g>
<g >
<title>__clock_gettime (2 samples, 0.01%)</title><rect x="938.3" y="453" width="0.1" height="15.0" fill="rgb(215,192,46)" rx="2" ry="2" />
<text x="941.31" y="463.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (10 samples, 0.05%)</title><rect x="1062.1" y="453" width="0.6" height="15.0" fill="rgb(234,127,35)" rx="2" ry="2" />
<text x="1065.12" y="463.5" ></text>
</g>
<g >
<title>_IO_vsprintf (7 samples, 0.03%)</title><rect x="1185.0" y="581" width="0.4" height="15.0" fill="rgb(233,6,50)" rx="2" ry="2" />
<text x="1187.99" y="591.5" ></text>
</g>
<g >
<title>ASN1_STRING_type_new (2 samples, 0.01%)</title><rect x="934.8" y="261" width="0.1" height="15.0" fill="rgb(223,30,24)" rx="2" ry="2" />
<text x="937.83" y="271.5" ></text>
</g>
<g >
<title>stream_process_tcp (75 samples, 0.37%)</title><rect x="888.1" y="565" width="4.4" height="15.0" fill="rgb(248,163,46)" rx="2" ry="2" />
<text x="891.05" y="575.5" ></text>
</g>
<g >
<title>ipv4_entry (17 samples, 0.08%)</title><rect x="881.0" y="613" width="1.0" height="15.0" fill="rgb(240,169,44)" rx="2" ry="2" />
<text x="883.98" y="623.5" ></text>
</g>
<g >
<title>ipv4_entry (57 samples, 0.28%)</title><rect x="882.5" y="629" width="3.3" height="15.0" fill="rgb(250,222,28)" rx="2" ry="2" />
<text x="885.45" y="639.5" ></text>
</g>
<g >
<title>rulescan_computeresult (67 samples, 0.33%)</title><rect x="853.4" y="677" width="4.0" height="15.0" fill="rgb(249,59,6)" rx="2" ry="2" />
<text x="856.43" y="687.5" ></text>
</g>
<g >
<title>[tsg_master.so] (12 samples, 0.06%)</title><rect x="1108.4" y="485" width="0.7" height="15.0" fill="rgb(206,102,0)" rx="2" ry="2" />
<text x="1111.36" y="495.5" ></text>
</g>
<g >
<title>del_stream_by_time (4 samples, 0.02%)</title><rect x="886.1" y="629" width="0.2" height="15.0" fill="rgb(212,228,39)" rx="2" ry="2" />
<text x="889.11" y="639.5" ></text>
</g>
<g >
<title>ASN1_template_free (2 samples, 0.01%)</title><rect x="1082.9" y="277" width="0.2" height="15.0" fill="rgb(237,131,39)" rx="2" ry="2" />
<text x="1085.94" y="287.5" ></text>
</g>
<g >
<title>_IO_vsnprintf (2 samples, 0.01%)</title><rect x="884.2" y="405" width="0.1" height="15.0" fill="rgb(229,7,36)" rx="2" ry="2" />
<text x="887.16" y="415.5" ></text>
</g>
<g >
<title>malloc (2 samples, 0.01%)</title><rect x="1187.9" y="437" width="0.1" height="15.0" fill="rgb(238,92,42)" rx="2" ry="2" />
<text x="1190.88" y="447.5" ></text>
</g>
<g >
<title>DNS_UDP_ENTRY (4 samples, 0.02%)</title><rect x="952.8" y="501" width="0.3" height="15.0" fill="rgb(233,173,51)" rx="2" ry="2" />
<text x="955.82" y="511.5" ></text>
</g>
<g >
<title>Maat_table_runtime_perf_stat (2 samples, 0.01%)</title><rect x="939.0" y="405" width="0.1" height="15.0" fill="rgb(252,201,44)" rx="2" ry="2" />
<text x="942.02" y="415.5" ></text>
</g>
<g >
<title>udp_free_stream (6 samples, 0.03%)</title><rect x="957.7" y="517" width="0.3" height="15.0" fill="rgb(235,147,34)" rx="2" ry="2" />
<text x="960.66" y="527.5" ></text>
</g>
<g >
<title>ssl_AnalyseCertificate (23 samples, 0.11%)</title><rect x="1082.5" y="405" width="1.4" height="15.0" fill="rgb(226,140,20)" rx="2" ry="2" />
<text x="1085.53" y="415.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (6 samples, 0.03%)</title><rect x="882.9" y="197" width="0.4" height="15.0" fill="rgb(239,213,26)" rx="2" ry="2" />
<text x="885.92" y="207.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (19 samples, 0.09%)</title><rect x="1179.2" y="581" width="1.1" height="15.0" fill="rgb(222,208,29)" rx="2" ry="2" />
<text x="1182.21" y="591.5" ></text>
</g>
<g >
<title>sprintf (2 samples, 0.01%)</title><rect x="1146.2" y="469" width="0.2" height="15.0" fill="rgb(244,99,47)" rx="2" ry="2" />
<text x="1149.23" y="479.5" ></text>
</g>
<g >
<title>Maat_table_get_scan_type (23 samples, 0.11%)</title><rect x="830.1" y="693" width="1.3" height="15.0" fill="rgb(234,79,18)" rx="2" ry="2" />
<text x="833.07" y="703.5" ></text>
</g>
<g >
<title>http_findAndDoWithRegion (2 samples, 0.01%)</title><rect x="894.4" y="629" width="0.1" height="15.0" fill="rgb(237,91,19)" rx="2" ry="2" />
<text x="897.42" y="639.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="1187.9" y="453" width="0.1" height="15.0" fill="rgb(253,30,36)" rx="2" ry="2" />
<text x="1190.88" y="463.5" ></text>
</g>
<g >
<title>ssl_analyseSsl (9 samples, 0.04%)</title><rect x="881.0" y="469" width="0.5" height="15.0" fill="rgb(249,195,11)" rx="2" ry="2" />
<text x="883.98" y="479.5" ></text>
</g>
<g >
<title>rulescan_search (432 samples, 2.16%)</title><rect x="831.9" y="709" width="25.5" height="15.0" fill="rgb(254,74,51)" rx="2" ry="2" />
<text x="834.90" y="719.5" >r..</text>
</g>
<g >
<title>tsg_get_subscribe_id (3 samples, 0.01%)</title><rect x="970.7" y="501" width="0.2" height="15.0" fill="rgb(207,170,27)" rx="2" ry="2" />
<text x="973.69" y="511.5" ></text>
</g>
<g >
<title>nfqnl_enqueue_packet (3 samples, 0.01%)</title><rect x="896.4" y="581" width="0.2" height="15.0" fill="rgb(239,45,19)" rx="2" ry="2" />
<text x="899.43" y="591.5" ></text>
</g>
<g >
<title>fw_ssl_entry (8 samples, 0.04%)</title><rect x="890.1" y="357" width="0.5" height="15.0" fill="rgb(227,216,38)" rx="2" ry="2" />
<text x="893.12" y="367.5" ></text>
</g>
<g >
<title>tsg_get_ip_asn (2 samples, 0.01%)</title><rect x="1182.9" y="629" width="0.1" height="15.0" fill="rgb(236,159,53)" rx="2" ry="2" />
<text x="1185.92" y="639.5" ></text>
</g>
<g >
<title>copy_stream_info_to_heap (2 samples, 0.01%)</title><rect x="1054.3" y="485" width="0.1" height="15.0" fill="rgb(242,31,45)" rx="2" ry="2" />
<text x="1057.27" y="495.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (3 samples, 0.01%)</title><rect x="1188.1" y="293" width="0.1" height="15.0" fill="rgb(220,46,53)" rx="2" ry="2" />
<text x="1191.05" y="303.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="889.8" y="325" width="0.1" height="15.0" fill="rgb(251,82,38)" rx="2" ry="2" />
<text x="892.77" y="335.5" ></text>
</g>
<g >
<title>_int_free (30 samples, 0.15%)</title><rect x="1139.8" y="501" width="1.8" height="15.0" fill="rgb(241,137,27)" rx="2" ry="2" />
<text x="1142.80" y="511.5" ></text>
</g>
<g >
<title>flush_tlb_page (16 samples, 0.08%)</title><rect x="1021.4" y="293" width="1.0" height="15.0" fill="rgb(243,226,32)" rx="2" ry="2" />
<text x="1024.42" y="303.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="1187.9" y="485" width="0.1" height="15.0" fill="rgb(213,226,53)" rx="2" ry="2" />
<text x="1190.88" y="495.5" ></text>
</g>
<g >
<title>TSG_MASTER_TCPALL_ENTRY (2 samples, 0.01%)</title><rect x="1086.2" y="469" width="0.2" height="15.0" fill="rgb(222,142,8)" rx="2" ry="2" />
<text x="1089.24" y="479.5" ></text>
</g>
<g >
<title>checkstreamorder (7 samples, 0.03%)</title><rect x="1110.3" y="517" width="0.4" height="15.0" fill="rgb(206,189,35)" rx="2" ry="2" />
<text x="1113.25" y="527.5" ></text>
</g>
<g >
<title>vfprintf (6 samples, 0.03%)</title><rect x="1187.1" y="693" width="0.4" height="15.0" fill="rgb(245,145,36)" rx="2" ry="2" />
<text x="1190.11" y="703.5" ></text>
</g>
<g >
<title>start_thread (19 samples, 0.09%)</title><rect x="1187.5" y="741" width="1.1" height="15.0" fill="rgb(236,222,28)" rx="2" ry="2" />
<text x="1190.52" y="751.5" ></text>
</g>
<g >
<title>dealipv4tcppkt (53 samples, 0.26%)</title><rect x="882.5" y="613" width="3.1" height="15.0" fill="rgb(244,181,30)" rx="2" ry="2" />
<text x="885.45" y="623.5" ></text>
</g>
<g >
<title>c2i_ASN1_OBJECT (3 samples, 0.01%)</title><rect x="883.0" y="85" width="0.2" height="15.0" fill="rgb(228,132,43)" rx="2" ry="2" />
<text x="886.04" y="95.5" ></text>
</g>
<g >
<title>[libMV_sketch.so.2.1] (4 samples, 0.02%)</title><rect x="962.7" y="421" width="0.2" height="15.0" fill="rgb(232,46,4)" rx="2" ry="2" />
<text x="965.67" y="431.5" ></text>
</g>
<g >
<title>MESA_htable_search_cb (4 samples, 0.02%)</title><rect x="939.2" y="405" width="0.2" height="15.0" fill="rgb(235,19,24)" rx="2" ry="2" />
<text x="942.19" y="415.5" ></text>
</g>
<g >
<title>start_secondary (19 samples, 0.09%)</title><rect x="1188.9" y="741" width="1.1" height="15.0" fill="rgb(225,35,13)" rx="2" ry="2" />
<text x="1191.88" y="751.5" ></text>
</g>
<g >
<title>bitmap_check (3 samples, 0.01%)</title><rect x="951.2" y="501" width="0.1" height="15.0" fill="rgb(227,161,5)" rx="2" ry="2" />
<text x="954.17" y="511.5" ></text>
</g>
<g >
<title>copy_stream_info_to_heap (5 samples, 0.02%)</title><rect x="931.2" y="517" width="0.3" height="15.0" fill="rgb(205,95,4)" rx="2" ry="2" />
<text x="934.17" y="527.5" ></text>
</g>
<g >
<title>ssl_analyseAppData (2 samples, 0.01%)</title><rect x="882.7" y="469" width="0.2" height="15.0" fill="rgb(246,114,20)" rx="2" ry="2" />
<text x="885.75" y="479.5" ></text>
</g>
<g >
<title>Maat_ip_plugin_get_EX_data (2 samples, 0.01%)</title><rect x="881.7" y="453" width="0.1" height="15.0" fill="rgb(209,204,51)" rx="2" ry="2" />
<text x="884.68" y="463.5" ></text>
</g>
<g >
<title>[tsg_master.so] (69 samples, 0.34%)</title><rect x="1142.3" y="533" width="4.1" height="15.0" fill="rgb(209,63,45)" rx="2" ry="2" />
<text x="1145.34" y="543.5" ></text>
</g>
<g >
<title>malloc (2 samples, 0.01%)</title><rect x="888.6" y="197" width="0.2" height="15.0" fill="rgb(236,108,5)" rx="2" ry="2" />
<text x="891.64" y="207.5" ></text>
</g>
<g >
<title>ASN1_item_d2i (5 samples, 0.02%)</title><rect x="1187.6" y="389" width="0.3" height="15.0" fill="rgb(221,215,18)" rx="2" ry="2" />
<text x="1190.58" y="399.5" ></text>
</g>
<g >
<title>APP_SKETCH_UDP_PLUG_ENTRY (23 samples, 0.11%)</title><rect x="886.3" y="597" width="1.4" height="15.0" fill="rgb(224,47,28)" rx="2" ry="2" />
<text x="889.34" y="607.5" ></text>
</g>
<g >
<title>stream_process_udp (352 samples, 1.76%)</title><rect x="1132.8" y="597" width="20.8" height="15.0" fill="rgb(249,88,8)" rx="2" ry="2" />
<text x="1135.84" y="607.5" ></text>
</g>
<g >
<title>vfprintf (3 samples, 0.01%)</title><rect x="887.7" y="485" width="0.2" height="15.0" fill="rgb(207,53,35)" rx="2" ry="2" />
<text x="890.70" y="495.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (4 samples, 0.02%)</title><rect x="1083.5" y="357" width="0.2" height="15.0" fill="rgb(224,33,22)" rx="2" ry="2" />
<text x="1086.47" y="367.5" ></text>
</g>
<g >
<title>ipv6_entry (5 samples, 0.02%)</title><rect x="882.2" y="661" width="0.3" height="15.0" fill="rgb(211,133,14)" rx="2" ry="2" />
<text x="885.16" y="671.5" ></text>
</g>
<g >
<title>[sapp] (4,693 samples, 23.46%)</title><rect x="896.7" y="709" width="276.8" height="15.0" fill="rgb(206,133,4)" rx="2" ry="2" />
<text x="899.73" y="719.5" >[sapp]</text>
</g>
<g >
<title>inet_ntop (3 samples, 0.01%)</title><rect x="887.7" y="533" width="0.2" height="15.0" fill="rgb(207,130,48)" rx="2" ry="2" />
<text x="890.70" y="543.5" ></text>
</g>
<g >
<title>TSG_MASTER_UDP_ENTRY (2 samples, 0.01%)</title><rect x="892.9" y="549" width="0.1" height="15.0" fill="rgb(224,152,24)" rx="2" ry="2" />
<text x="895.89" y="559.5" ></text>
</g>
<g >
<title>tsg_get_subscribe_id (2 samples, 0.01%)</title><rect x="892.3" y="485" width="0.1" height="15.0" fill="rgb(221,55,51)" rx="2" ry="2" />
<text x="895.30" y="495.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.5] (4 samples, 0.02%)</title><rect x="1113.0" y="405" width="0.3" height="15.0" fill="rgb(251,175,14)" rx="2" ry="2" />
<text x="1116.02" y="415.5" ></text>
</g>
<g >
<title>[sapp] (6 samples, 0.03%)</title><rect x="1176.3" y="629" width="0.3" height="15.0" fill="rgb(224,122,10)" rx="2" ry="2" />
<text x="1179.26" y="639.5" ></text>
</g>
<g >
<title>__netlink_sendskb (2 samples, 0.01%)</title><rect x="896.5" y="517" width="0.1" height="15.0" fill="rgb(249,105,26)" rx="2" ry="2" />
<text x="899.49" y="527.5" ></text>
</g>
<g >
<title>Maat_full_scan_string (2 samples, 0.01%)</title><rect x="785.3" y="533" width="0.1" height="15.0" fill="rgb(228,141,52)" rx="2" ry="2" />
<text x="788.30" y="543.5" ></text>
</g>
<g >
<title>APP_SKETCH_TCP_PLUG_ENTRY (32 samples, 0.16%)</title><rect x="783.9" y="565" width="1.9" height="15.0" fill="rgb(248,59,10)" rx="2" ry="2" />
<text x="786.95" y="575.5" ></text>
</g>
<g >
<title>malloc_consolidate (3 samples, 0.01%)</title><rect x="952.3" y="437" width="0.2" height="15.0" fill="rgb(228,195,52)" rx="2" ry="2" />
<text x="955.29" y="447.5" ></text>
</g>
<g >
<title>Maat_set_scan_status (7 samples, 0.03%)</title><rect x="1177.1" y="597" width="0.4" height="15.0" fill="rgb(220,108,13)" rx="2" ry="2" />
<text x="1180.08" y="607.5" ></text>
</g>
<g >
<title>malloc (2 samples, 0.01%)</title><rect x="881.2" y="229" width="0.1" height="15.0" fill="rgb(205,152,36)" rx="2" ry="2" />
<text x="884.15" y="239.5" ></text>
</g>
<g >
<title>stream_process_tcp (2 samples, 0.01%)</title><rect x="882.0" y="565" width="0.1" height="15.0" fill="rgb(225,178,0)" rx="2" ry="2" />
<text x="884.98" y="575.5" ></text>
</g>
<g >
<title>_IO_vsprintf (6 samples, 0.03%)</title><rect x="1183.5" y="581" width="0.3" height="15.0" fill="rgb(220,3,8)" rx="2" ry="2" />
<text x="1186.45" y="591.5" ></text>
</g>
<g >
<title>counting_bloom_check (89 samples, 0.44%)</title><rect x="1097.1" y="501" width="5.2" height="15.0" fill="rgb(240,66,8)" rx="2" ry="2" />
<text x="1100.10" y="511.5" ></text>
</g>
<g >
<title>CRefCountManager::dec_reference_count (3 samples, 0.01%)</title><rect x="809.2" y="677" width="0.2" height="15.0" fill="rgb(236,13,47)" rx="2" ry="2" />
<text x="812.19" y="687.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (3 samples, 0.01%)</title><rect x="1083.2" y="277" width="0.2" height="15.0" fill="rgb(237,101,21)" rx="2" ry="2" />
<text x="1086.24" y="287.5" ></text>
</g>
<g >
<title>CIPv4Match::SearchIP (126 samples, 0.63%)</title><rect x="872.2" y="725" width="7.4" height="15.0" fill="rgb(251,53,47)" rx="2" ry="2" />
<text x="875.19" y="735.5" ></text>
</g>
<g >
<title>gtp_entry (5 samples, 0.02%)</title><rect x="882.2" y="629" width="0.3" height="15.0" fill="rgb(247,129,24)" rx="2" ry="2" />
<text x="885.16" y="639.5" ></text>
</g>
<g >
<title>ip6_dst_lookup_tail (4 samples, 0.02%)</title><rect x="896.1" y="597" width="0.2" height="15.0" fill="rgb(216,229,2)" rx="2" ry="2" />
<text x="899.08" y="607.5" ></text>
</g>
<g >
<title>[fw_http_plug.so] (2 samples, 0.01%)</title><rect x="894.2" y="517" width="0.2" height="15.0" fill="rgb(229,13,13)" rx="2" ry="2" />
<text x="897.25" y="527.5" ></text>
</g>
<g >
<title>stream_process (14 samples, 0.07%)</title><rect x="894.1" y="693" width="0.9" height="15.0" fill="rgb(214,140,13)" rx="2" ry="2" />
<text x="897.13" y="703.5" ></text>
</g>
<g >
<title>raw_ip_frag_list_stream_attach (2 samples, 0.01%)</title><rect x="1133.3" y="581" width="0.1" height="15.0" fill="rgb(243,185,26)" rx="2" ry="2" />
<text x="1136.32" y="591.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.5] (2 samples, 0.01%)</title><rect x="961.6" y="421" width="0.1" height="15.0" fill="rgb(243,75,24)" rx="2" ry="2" />
<text x="964.55" y="431.5" ></text>
</g>
<g >
<title>tsg_get_umts_user_info (2 samples, 0.01%)</title><rect x="1185.4" y="629" width="0.1" height="15.0" fill="rgb(253,144,33)" rx="2" ry="2" />
<text x="1188.40" y="639.5" ></text>
</g>
<g >
<title>expiry_dablooms_search (11 samples, 0.05%)</title><rect x="1096.0" y="517" width="0.7" height="15.0" fill="rgb(209,226,53)" rx="2" ry="2" />
<text x="1099.04" y="527.5" ></text>
</g>
<g >
<title>Maat_ip_plugin_get_EX_data (3 samples, 0.01%)</title><rect x="939.0" y="421" width="0.1" height="15.0" fill="rgb(239,74,44)" rx="2" ry="2" />
<text x="941.96" y="431.5" ></text>
</g>
<g >
<title>[sapp] (16 samples, 0.08%)</title><rect x="881.0" y="565" width="0.9" height="15.0" fill="rgb(229,91,21)" rx="2" ry="2" />
<text x="883.98" y="575.5" ></text>
</g>
<g >
<title>nf_hook_slow (5 samples, 0.02%)</title><rect x="896.3" y="613" width="0.3" height="15.0" fill="rgb(241,115,37)" rx="2" ry="2" />
<text x="899.31" y="623.5" ></text>
</g>
<g >
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="1114.7" y="469" width="0.2" height="15.0" fill="rgb(253,195,7)" rx="2" ry="2" />
<text x="1117.68" y="479.5" ></text>
</g>
<g >
<title>handle_mm_fault (15 samples, 0.07%)</title><rect x="891.2" y="261" width="0.9" height="15.0" fill="rgb(214,16,13)" rx="2" ry="2" />
<text x="894.24" y="271.5" ></text>
</g>
<g >
<title>ssl_callPlugins (3 samples, 0.01%)</title><rect x="884.8" y="437" width="0.1" height="15.0" fill="rgb(222,214,10)" rx="2" ry="2" />
<text x="887.75" y="447.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (5 samples, 0.02%)</title><rect x="1082.9" y="357" width="0.3" height="15.0" fill="rgb(249,85,4)" rx="2" ry="2" />
<text x="1085.94" y="367.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (4 samples, 0.02%)</title><rect x="1188.1" y="325" width="0.2" height="15.0" fill="rgb(219,142,32)" rx="2" ry="2" />
<text x="1191.05" y="335.5" ></text>
</g>
<g >
<title>Maat_hierarchy_compile_mid_udpate (9 samples, 0.04%)</title><rect x="790.3" y="709" width="0.5" height="15.0" fill="rgb(235,166,49)" rx="2" ry="2" />
<text x="793.32" y="719.5" ></text>
</g>
<g >
<title>Maat_table_runtime_get (4 samples, 0.02%)</title><rect x="831.6" y="709" width="0.2" height="15.0" fill="rgb(226,18,27)" rx="2" ry="2" />
<text x="834.61" y="719.5" ></text>
</g>
<g >
<title>system_capture_packet_entry (11 samples, 0.05%)</title><rect x="967.8" y="533" width="0.7" height="15.0" fill="rgb(251,83,49)" rx="2" ry="2" />
<text x="970.80" y="543.5" ></text>
</g>
<g >
<title>[sapp] (2 samples, 0.01%)</title><rect x="1188.7" y="565" width="0.1" height="15.0" fill="rgb(223,21,38)" rx="2" ry="2" />
<text x="1191.70" y="575.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="882.2" y="485" width="0.1" height="15.0" fill="rgb(205,212,17)" rx="2" ry="2" />
<text x="885.21" y="495.5" ></text>
</g>
<g >
<title>FW_DNS_PLUG_ENTRY (30 samples, 0.15%)</title><rect x="1182.4" y="661" width="1.8" height="15.0" fill="rgb(233,37,34)" rx="2" ry="2" />
<text x="1185.45" y="671.5" ></text>
</g>
<g >
<title>project_requirement_destroy (5 samples, 0.02%)</title><rect x="943.4" y="485" width="0.3" height="15.0" fill="rgb(229,202,26)" rx="2" ry="2" />
<text x="946.44" y="495.5" ></text>
</g>
<g >
<title>[sapp] (4 samples, 0.02%)</title><rect x="1177.9" y="693" width="0.2" height="15.0" fill="rgb(240,153,33)" rx="2" ry="2" />
<text x="1180.91" y="703.5" ></text>
</g>
<g >
<title>tsg_send_log (3 samples, 0.01%)</title><rect x="1175.3" y="517" width="0.1" height="15.0" fill="rgb(216,133,11)" rx="2" ry="2" />
<text x="1178.25" y="527.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (3 samples, 0.01%)</title><rect x="1083.7" y="309" width="0.2" height="15.0" fill="rgb(224,144,20)" rx="2" ry="2" />
<text x="1086.71" y="319.5" ></text>
</g>
<g >
<title>malloc (2 samples, 0.01%)</title><rect x="810.9" y="693" width="0.1" height="15.0" fill="rgb(239,133,19)" rx="2" ry="2" />
<text x="813.90" y="703.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (5 samples, 0.02%)</title><rect x="1187.6" y="309" width="0.3" height="15.0" fill="rgb(237,24,0)" rx="2" ry="2" />
<text x="1190.58" y="319.5" ></text>
</g>
<g >
<title>checkstreamorder (59 samples, 0.29%)</title><rect x="1091.3" y="501" width="3.4" height="15.0" fill="rgb(217,199,39)" rx="2" ry="2" />
<text x="1094.26" y="511.5" ></text>
</g>
<g >
<title>fn_pGetSSLInfo (22 samples, 0.11%)</title><rect x="1082.6" y="389" width="1.3" height="15.0" fill="rgb(212,28,40)" rx="2" ry="2" />
<text x="1085.59" y="399.5" ></text>
</g>
<g >
<title>[libprotoident.so] (8 samples, 0.04%)</title><rect x="961.9" y="469" width="0.5" height="15.0" fill="rgb(213,80,4)" rx="2" ry="2" />
<text x="964.90" y="479.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (6 samples, 0.03%)</title><rect x="883.5" y="245" width="0.4" height="15.0" fill="rgb(213,187,24)" rx="2" ry="2" />
<text x="886.51" y="255.5" ></text>
</g>
<g >
<title>ASN1_item_ex_i2d (2 samples, 0.01%)</title><rect x="936.1" y="325" width="0.1" height="15.0" fill="rgb(228,99,31)" rx="2" ry="2" />
<text x="939.13" y="335.5" ></text>
</g>
<g >
<title>Maat_scan_proto_addr (2 samples, 0.01%)</title><rect x="1107.5" y="453" width="0.1" height="15.0" fill="rgb(239,43,44)" rx="2" ry="2" />
<text x="1110.48" y="463.5" ></text>
</g>
<g >
<title>FS_operate (3 samples, 0.01%)</title><rect x="952.8" y="485" width="0.2" height="15.0" fill="rgb(248,109,19)" rx="2" ry="2" />
<text x="955.82" y="495.5" ></text>
</g>
<g >
<title>bitmap_check (42 samples, 0.21%)</title><rect x="1097.3" y="485" width="2.5" height="15.0" fill="rgb(231,208,1)" rx="2" ry="2" />
<text x="1100.33" y="495.5" ></text>
</g>
<g >
<title>ASN1_item_ex_i2d (3 samples, 0.01%)</title><rect x="883.9" y="245" width="0.2" height="15.0" fill="rgb(235,185,7)" rx="2" ry="2" />
<text x="886.93" y="255.5" ></text>
</g>
<g >
<title>gtp_entry (13 samples, 0.06%)</title><rect x="1174.4" y="725" width="0.8" height="15.0" fill="rgb(207,77,46)" rx="2" ry="2" />
<text x="1177.43" y="735.5" ></text>
</g>
<g >
<title>MESA_handle_runtime_log (2 samples, 0.01%)</title><rect x="1180.3" y="549" width="0.1" height="15.0" fill="rgb(253,46,40)" rx="2" ry="2" />
<text x="1183.33" y="559.5" ></text>
</g>
<g >
<title>[tsg_ddos_sketch.so] (6 samples, 0.03%)</title><rect x="962.6" y="453" width="0.3" height="15.0" fill="rgb(244,142,41)" rx="2" ry="2" />
<text x="965.55" y="463.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="889.8" y="357" width="0.1" height="15.0" fill="rgb(226,68,25)" rx="2" ry="2" />
<text x="892.77" y="367.5" ></text>
</g>
<g >
<title>MESA_handle_runtime_log (3 samples, 0.01%)</title><rect x="781.4" y="565" width="0.1" height="15.0" fill="rgb(237,103,33)" rx="2" ry="2" />
<text x="784.35" y="575.5" ></text>
</g>
<g >
<title>tsg_l7_protocol_name2id (2 samples, 0.01%)</title><rect x="962.4" y="453" width="0.1" height="15.0" fill="rgb(222,115,51)" rx="2" ry="2" />
<text x="965.38" y="463.5" ></text>
</g>
<g >
<title>__do_page_fault (17 samples, 0.08%)</title><rect x="891.1" y="277" width="1.0" height="15.0" fill="rgb(245,50,47)" rx="2" ry="2" />
<text x="894.12" y="287.5" ></text>
</g>
<g >
<title>APP_SKETCH_UDP_PLUG_ENTRY (18 samples, 0.09%)</title><rect x="966.4" y="549" width="1.1" height="15.0" fill="rgb(240,34,22)" rx="2" ry="2" />
<text x="969.45" y="559.5" ></text>
</g>
<g >
<title>del_stream_by_time (4 samples, 0.02%)</title><rect x="950.8" y="533" width="0.3" height="15.0" fill="rgb(220,199,1)" rx="2" ry="2" />
<text x="953.81" y="543.5" ></text>
</g>
<g >
<title>stream_process (273 samples, 1.36%)</title><rect x="965.4" y="581" width="16.1" height="15.0" fill="rgb(218,140,46)" rx="2" ry="2" />
<text x="968.44" y="591.5" ></text>
</g>
<g >
<title>[libMV_sketch.so.2.1] (2 samples, 0.01%)</title><rect x="941.0" y="405" width="0.1" height="15.0" fill="rgb(211,209,20)" rx="2" ry="2" />
<text x="944.02" y="415.5" ></text>
</g>
<g >
<title>dealipv6udppkt (2 samples, 0.01%)</title><rect x="886.0" y="613" width="0.1" height="15.0" fill="rgb(214,187,43)" rx="2" ry="2" />
<text x="888.99" y="623.5" ></text>
</g>
<g >
<title>[tsg_ddos_sketch.so] (3 samples, 0.01%)</title><rect x="964.6" y="485" width="0.2" height="15.0" fill="rgb(233,46,6)" rx="2" ry="2" />
<text x="967.62" y="495.5" ></text>
</g>
<g >
<title>APP_SKETCH_UDP_PLUG_ENTRY (4 samples, 0.02%)</title><rect x="886.1" y="549" width="0.2" height="15.0" fill="rgb(231,157,18)" rx="2" ry="2" />
<text x="889.11" y="559.5" ></text>
</g>
<g >
<title>_IO_vsprintf (3 samples, 0.01%)</title><rect x="895.8" y="517" width="0.2" height="15.0" fill="rgb(214,95,28)" rx="2" ry="2" />
<text x="898.78" y="527.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (4 samples, 0.02%)</title><rect x="1188.1" y="309" width="0.2" height="15.0" fill="rgb(242,12,15)" rx="2" ry="2" />
<text x="1191.05" y="319.5" ></text>
</g>
<g >
<title>marsio_buff_free (72 samples, 0.36%)</title><rect x="1165.9" y="677" width="4.2" height="15.0" fill="rgb(242,138,6)" rx="2" ry="2" />
<text x="1168.88" y="687.5" ></text>
</g>
<g >
<title>Maat_plugin_get_EX_data (2 samples, 0.01%)</title><rect x="961.6" y="437" width="0.1" height="15.0" fill="rgb(216,79,22)" rx="2" ry="2" />
<text x="964.55" y="447.5" ></text>
</g>
<g >
<title>dealipv4udppkt (155 samples, 0.77%)</title><rect x="948.9" y="565" width="9.1" height="15.0" fill="rgb(245,206,48)" rx="2" ry="2" />
<text x="951.87" y="575.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (5 samples, 0.02%)</title><rect x="1187.6" y="341" width="0.3" height="15.0" fill="rgb(205,126,35)" rx="2" ry="2" />
<text x="1190.58" y="351.5" ></text>
</g>
<g >
<title>project_req_get_struct (3 samples, 0.01%)</title><rect x="932.6" y="437" width="0.2" height="15.0" fill="rgb(234,166,52)" rx="2" ry="2" />
<text x="935.59" y="447.5" ></text>
</g>
<g >
<title>asn1_ex_c2i (2 samples, 0.01%)</title><rect x="881.3" y="261" width="0.1" height="15.0" fill="rgb(250,72,14)" rx="2" ry="2" />
<text x="884.33" y="271.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.5] (3 samples, 0.01%)</title><rect x="789.4" y="725" width="0.1" height="15.0" fill="rgb(218,80,31)" rx="2" ry="2" />
<text x="792.37" y="735.5" ></text>
</g>
<g >
<title>raw_frags_list_free_stream (2 samples, 0.01%)</title><rect x="1020.9" y="501" width="0.2" height="15.0" fill="rgb(212,27,46)" rx="2" ry="2" />
<text x="1023.95" y="511.5" ></text>
</g>
<g >
<title>[tsg_master.so] (5 samples, 0.02%)</title><rect x="887.7" y="581" width="0.3" height="15.0" fill="rgb(249,134,1)" rx="2" ry="2" />
<text x="890.70" y="591.5" ></text>
</g>
<g >
<title>Maat_clean_status (10 samples, 0.05%)</title><rect x="947.8" y="453" width="0.6" height="15.0" fill="rgb(229,160,39)" rx="2" ry="2" />
<text x="950.81" y="463.5" ></text>
</g>
<g >
<title>[libprotoident.so] (16 samples, 0.08%)</title><rect x="1113.7" y="469" width="1.0" height="15.0" fill="rgb(250,9,53)" rx="2" ry="2" />
<text x="1116.73" y="479.5" ></text>
</g>
<g >
<title>stream_process_tcp_allpkt (41 samples, 0.20%)</title><rect x="946.4" y="533" width="2.5" height="15.0" fill="rgb(233,123,11)" rx="2" ry="2" />
<text x="949.45" y="543.5" ></text>
</g>
<g >
<title>http_analyseHttpConnection (422 samples, 2.11%)</title><rect x="1024.8" y="437" width="24.9" height="15.0" fill="rgb(226,223,15)" rx="2" ry="2" />
<text x="1027.84" y="447.5" >h..</text>
</g>
<g >
<title>vfprintf (5 samples, 0.02%)</title><rect x="1185.1" y="565" width="0.3" height="15.0" fill="rgb(205,181,2)" rx="2" ry="2" />
<text x="1188.10" y="575.5" ></text>
</g>
<g >
<title>std::_Rb_tree_increment (2 samples, 0.01%)</title><rect x="1114.6" y="453" width="0.1" height="15.0" fill="rgb(230,86,44)" rx="2" ry="2" />
<text x="1117.56" y="463.5" ></text>
</g>
<g >
<title>ssl_analyseStream (2 samples, 0.01%)</title><rect x="1178.8" y="565" width="0.1" height="15.0" fill="rgb(251,10,4)" rx="2" ry="2" />
<text x="1181.79" y="575.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (411 samples, 2.05%)</title><rect x="1061.9" y="485" width="24.2" height="15.0" fill="rgb(212,161,16)" rx="2" ry="2" />
<text x="1064.88" y="495.5" >p..</text>
</g>
<g >
<title>[tsg_master.so] (4 samples, 0.02%)</title><rect x="885.6" y="533" width="0.2" height="15.0" fill="rgb(236,79,45)" rx="2" ry="2" />
<text x="888.58" y="543.5" ></text>
</g>
<g >
<title>[libprotoident.so] (15 samples, 0.07%)</title><rect x="936.7" y="421" width="0.8" height="15.0" fill="rgb(214,206,41)" rx="2" ry="2" />
<text x="939.66" y="431.5" ></text>
</g>
<g >
<title>dealipv4udppkt (116 samples, 0.58%)</title><rect x="1109.1" y="565" width="6.8" height="15.0" fill="rgb(220,68,35)" rx="2" ry="2" />
<text x="1112.07" y="575.5" ></text>
</g>
<g >
<title>vfprintf (2 samples, 0.01%)</title><rect x="1188.7" y="501" width="0.1" height="15.0" fill="rgb(239,122,43)" rx="2" ry="2" />
<text x="1191.70" y="511.5" ></text>
</g>
<g >
<title>ASN1_template_free (4 samples, 0.02%)</title><rect x="1082.9" y="341" width="0.3" height="15.0" fill="rgb(237,5,28)" rx="2" ry="2" />
<text x="1085.94" y="351.5" ></text>
</g>
<g >
<title>stream_addr_list_ntop (4 samples, 0.02%)</title><rect x="895.7" y="613" width="0.3" height="15.0" fill="rgb(239,98,30)" rx="2" ry="2" />
<text x="898.72" y="623.5" ></text>
</g>
<g >
<title>__clone (4,693 samples, 23.46%)</title><rect x="896.7" y="741" width="276.8" height="15.0" fill="rgb(216,59,12)" rx="2" ry="2" />
<text x="899.73" y="751.5" >__clone</text>
</g>
<g >
<title>CRefCountManager::dec_reference_count@plt (3 samples, 0.01%)</title><rect x="851.2" y="677" width="0.2" height="15.0" fill="rgb(224,12,37)" rx="2" ry="2" />
<text x="854.19" y="687.5" ></text>
</g>
<g >
<title>expiry_dablooms_search (4 samples, 0.02%)</title><rect x="943.9" y="517" width="0.2" height="15.0" fill="rgb(244,11,29)" rx="2" ry="2" />
<text x="946.85" y="527.5" ></text>
</g>
<g >
<title>dealipv4tcppkt (6 samples, 0.03%)</title><rect x="1176.3" y="645" width="0.3" height="15.0" fill="rgb(243,94,41)" rx="2" ry="2" />
<text x="1179.26" y="655.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (8 samples, 0.04%)</title><rect x="881.0" y="389" width="0.4" height="15.0" fill="rgb(233,176,36)" rx="2" ry="2" />
<text x="883.98" y="399.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="881.0" y="229" width="0.2" height="15.0" fill="rgb(237,177,49)" rx="2" ry="2" />
<text x="884.04" y="239.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (3 samples, 0.01%)</title><rect x="1176.1" y="613" width="0.2" height="15.0" fill="rgb(229,106,3)" rx="2" ry="2" />
<text x="1179.08" y="623.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="934.5" y="245" width="0.2" height="15.0" fill="rgb(239,37,32)" rx="2" ry="2" />
<text x="937.53" y="255.5" ></text>
</g>
<g >
<title>tsg_get_subscribe_id (8 samples, 0.04%)</title><rect x="1183.3" y="629" width="0.5" height="15.0" fill="rgb(236,144,2)" rx="2" ry="2" />
<text x="1186.33" y="639.5" ></text>
</g>
<g >
<title>c2i_ASN1_OBJECT (3 samples, 0.01%)</title><rect x="883.7" y="213" width="0.2" height="15.0" fill="rgb(232,81,46)" rx="2" ry="2" />
<text x="886.69" y="223.5" ></text>
</g>
<g >
<title>ssl_callPlugins (2 samples, 0.01%)</title><rect x="1181.6" y="485" width="0.1" height="15.0" fill="rgb(251,184,19)" rx="2" ry="2" />
<text x="1184.62" y="495.5" ></text>
</g>
<g >
<title>Maat_ip_plugin_get_EX_data (3 samples, 0.01%)</title><rect x="961.4" y="437" width="0.2" height="15.0" fill="rgb(236,70,18)" rx="2" ry="2" />
<text x="964.37" y="447.5" ></text>
</g>
<g >
<title>TLD_append_streaminfo (2 samples, 0.01%)</title><rect x="895.5" y="581" width="0.2" height="15.0" fill="rgb(210,174,32)" rx="2" ry="2" />
<text x="898.55" y="591.5" ></text>
</g>
<g >
<title>tsg_get_ip_location (2 samples, 0.01%)</title><rect x="970.6" y="501" width="0.1" height="15.0" fill="rgb(248,87,48)" rx="2" ry="2" />
<text x="973.57" y="511.5" ></text>
</g>
<g >
<title>rulescan_searchstream (371 samples, 1.85%)</title><rect x="835.5" y="693" width="21.9" height="15.0" fill="rgb(247,169,15)" rx="2" ry="2" />
<text x="838.50" y="703.5" >r..</text>
</g>
<g >
<title>_int_malloc (6 samples, 0.03%)</title><rect x="952.1" y="453" width="0.4" height="15.0" fill="rgb(236,224,44)" rx="2" ry="2" />
<text x="955.11" y="463.5" ></text>
</g>
<g >
<title>Maat_set_scan_status (5 samples, 0.02%)</title><rect x="1182.0" y="581" width="0.3" height="15.0" fill="rgb(210,188,4)" rx="2" ry="2" />
<text x="1184.98" y="591.5" ></text>
</g>
<g >
<title>tsg_scan_nesting_addr (9 samples, 0.04%)</title><rect x="970.3" y="517" width="0.6" height="15.0" fill="rgb(226,95,49)" rx="2" ry="2" />
<text x="973.34" y="527.5" ></text>
</g>
<g >
<title>ssl_analyseStream (2 samples, 0.01%)</title><rect x="930.8" y="437" width="0.1" height="15.0" fill="rgb(207,90,46)" rx="2" ry="2" />
<text x="933.82" y="447.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (2 samples, 0.01%)</title><rect x="895.5" y="645" width="0.2" height="15.0" fill="rgb(242,203,44)" rx="2" ry="2" />
<text x="898.55" y="655.5" ></text>
</g>
<g >
<title>ptep_clear_flush (12 samples, 0.06%)</title><rect x="891.4" y="213" width="0.7" height="15.0" fill="rgb(231,149,31)" rx="2" ry="2" />
<text x="894.42" y="223.5" ></text>
</g>
<g >
<title>ssl_callPlugins (2 samples, 0.01%)</title><rect x="888.2" y="437" width="0.1" height="15.0" fill="rgb(254,119,22)" rx="2" ry="2" />
<text x="891.17" y="447.5" ></text>
</g>
<g >
<title>[libprotoident.so] (7 samples, 0.03%)</title><rect x="1084.3" y="421" width="0.4" height="15.0" fill="rgb(206,24,15)" rx="2" ry="2" />
<text x="1087.30" y="431.5" ></text>
</g>
<g >
<title>[sapp] (255 samples, 1.27%)</title><rect x="880.9" y="741" width="15.1" height="15.0" fill="rgb(247,206,51)" rx="2" ry="2" />
<text x="883.92" y="751.5" ></text>
</g>
<g >
<title>dealipv4udppkt (8 samples, 0.04%)</title><rect x="786.0" y="661" width="0.4" height="15.0" fill="rgb(214,215,2)" rx="2" ry="2" />
<text x="788.95" y="671.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (72 samples, 0.36%)</title><rect x="1111.5" y="517" width="4.2" height="15.0" fill="rgb(226,120,45)" rx="2" ry="2" />
<text x="1114.49" y="527.5" ></text>
</g>
<g >
<title>SSL_ENTRY (37 samples, 0.18%)</title><rect x="1081.9" y="469" width="2.2" height="15.0" fill="rgb(228,119,19)" rx="2" ry="2" />
<text x="1084.94" y="479.5" ></text>
</g>
<g >
<title>del_stream_by_time (5 samples, 0.02%)</title><rect x="1110.7" y="533" width="0.3" height="15.0" fill="rgb(238,172,28)" rx="2" ry="2" />
<text x="1113.66" y="543.5" ></text>
</g>
<g >
<title>_IO_vsprintf (3 samples, 0.01%)</title><rect x="893.9" y="501" width="0.2" height="15.0" fill="rgb(237,29,2)" rx="2" ry="2" />
<text x="896.89" y="511.5" ></text>
</g>
<g >
<title>dealipv4udppkt (7 samples, 0.03%)</title><rect x="1176.6" y="645" width="0.4" height="15.0" fill="rgb(208,78,25)" rx="2" ry="2" />
<text x="1179.61" y="655.5" ></text>
</g>
<g >
<title>stream_process_tcp (2 samples, 0.01%)</title><rect x="930.8" y="501" width="0.1" height="15.0" fill="rgb(227,52,30)" rx="2" ry="2" />
<text x="933.82" y="511.5" ></text>
</g>
<g >
<title>checkstreamorder (11 samples, 0.05%)</title><rect x="942.5" y="501" width="0.6" height="15.0" fill="rgb(244,116,53)" rx="2" ry="2" />
<text x="945.50" y="511.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (27 samples, 0.13%)</title><rect x="1180.3" y="597" width="1.6" height="15.0" fill="rgb(231,92,26)" rx="2" ry="2" />
<text x="1183.33" y="607.5" ></text>
</g>
<g >
<title>c2i_ASN1_OBJECT (2 samples, 0.01%)</title><rect x="881.3" y="245" width="0.1" height="15.0" fill="rgb(243,214,50)" rx="2" ry="2" />
<text x="884.33" y="255.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (3 samples, 0.01%)</title><rect x="1083.2" y="341" width="0.2" height="15.0" fill="rgb(227,100,18)" rx="2" ry="2" />
<text x="1086.24" y="351.5" ></text>
</g>
<g >
<title>malloc_consolidate (34 samples, 0.17%)</title><rect x="1059.0" y="469" width="2.0" height="15.0" fill="rgb(243,207,13)" rx="2" ry="2" />
<text x="1061.99" y="479.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.5] (2 samples, 0.01%)</title><rect x="881.7" y="405" width="0.1" height="15.0" fill="rgb(207,194,15)" rx="2" ry="2" />
<text x="884.68" y="415.5" ></text>
</g>
<g >
<title>[tsg_master.so] (16 samples, 0.08%)</title><rect x="1112.6" y="485" width="0.9" height="15.0" fill="rgb(232,65,46)" rx="2" ry="2" />
<text x="1115.55" y="495.5" ></text>
</g>
<g >
<title>stream_process_tcp (5 samples, 0.02%)</title><rect x="1177.5" y="645" width="0.3" height="15.0" fill="rgb(249,85,53)" rx="2" ry="2" />
<text x="1180.50" y="655.5" ></text>
</g>
<g >
<title>Maat_plugin_get_EX_data (4 samples, 0.02%)</title><rect x="953.9" y="453" width="0.2" height="15.0" fill="rgb(249,77,5)" rx="2" ry="2" />
<text x="956.88" y="463.5" ></text>
</g>
<g >
<title>bsearch (2 samples, 0.01%)</title><rect x="870.1" y="693" width="0.1" height="15.0" fill="rgb(210,24,51)" rx="2" ry="2" />
<text x="873.12" y="703.5" ></text>
</g>
<g >
<title>Maat_set_scan_status (5 samples, 0.02%)</title><rect x="786.1" y="565" width="0.3" height="15.0" fill="rgb(225,224,45)" rx="2" ry="2" />
<text x="789.13" y="575.5" ></text>
</g>
<g >
<title>[libprotoident.so] (5 samples, 0.02%)</title><rect x="1119.2" y="469" width="0.3" height="15.0" fill="rgb(251,155,48)" rx="2" ry="2" />
<text x="1122.22" y="479.5" ></text>
</g>
<g >
<title>ASN1_item_d2i (3 samples, 0.01%)</title><rect x="1083.2" y="357" width="0.2" height="15.0" fill="rgb(217,2,53)" rx="2" ry="2" />
<text x="1086.24" y="367.5" ></text>
</g>
<g >
<title>get_rr_common_field (6 samples, 0.03%)</title><rect x="1185.8" y="709" width="0.4" height="15.0" fill="rgb(206,203,50)" rx="2" ry="2" />
<text x="1188.81" y="719.5" ></text>
</g>
<g >
<title>sprintf (3 samples, 0.01%)</title><rect x="893.9" y="517" width="0.2" height="15.0" fill="rgb(242,193,37)" rx="2" ry="2" />
<text x="896.89" y="527.5" ></text>
</g>
<g >
<title>Maat_hierarchy_compile_mid_udpate (9 samples, 0.04%)</title><rect x="810.7" y="709" width="0.6" height="15.0" fill="rgb(209,204,30)" rx="2" ry="2" />
<text x="813.72" y="719.5" ></text>
</g>
<g >
<title>lrustream (4 samples, 0.02%)</title><rect x="886.1" y="645" width="0.2" height="15.0" fill="rgb(221,106,45)" rx="2" ry="2" />
<text x="889.11" y="655.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (25 samples, 0.12%)</title><rect x="888.3" y="341" width="1.5" height="15.0" fill="rgb(232,25,17)" rx="2" ry="2" />
<text x="891.29" y="351.5" ></text>
</g>
<g >
<title>__memcmp_sse4_1 (3 samples, 0.01%)</title><rect x="1155.5" y="645" width="0.2" height="15.0" fill="rgb(248,152,24)" rx="2" ry="2" />
<text x="1158.49" y="655.5" ></text>
</g>
<g >
<title>checkstreamorder (2 samples, 0.01%)</title><rect x="1118.7" y="533" width="0.2" height="15.0" fill="rgb(208,143,17)" rx="2" ry="2" />
<text x="1121.75" y="543.5" ></text>
</g>
<g >
<title>CStringMatch::search_rule (6 samples, 0.03%)</title><rect x="801.2" y="693" width="0.4" height="15.0" fill="rgb(228,180,11)" rx="2" ry="2" />
<text x="804.23" y="703.5" ></text>
</g>
<g >
<title>Maat_full_scan_string_detail (2 samples, 0.01%)</title><rect x="1179.7" y="517" width="0.1" height="15.0" fill="rgb(208,212,6)" rx="2" ry="2" />
<text x="1182.68" y="527.5" ></text>
</g>
<g >
<title>[sapp] (3 samples, 0.01%)</title><rect x="885.8" y="597" width="0.2" height="15.0" fill="rgb(209,178,50)" rx="2" ry="2" />
<text x="888.81" y="607.5" ></text>
</g>
<g >
<title>stream_process (3 samples, 0.01%)</title><rect x="1175.9" y="613" width="0.2" height="15.0" fill="rgb(228,11,21)" rx="2" ry="2" />
<text x="1178.90" y="623.5" ></text>
</g>
<g >
<title>vfprintf (5 samples, 0.02%)</title><rect x="885.2" y="421" width="0.3" height="15.0" fill="rgb(234,154,25)" rx="2" ry="2" />
<text x="888.16" y="431.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.5] (15 samples, 0.07%)</title><rect x="1173.5" y="549" width="0.9" height="15.0" fill="rgb(223,18,18)" rx="2" ry="2" />
<text x="1176.54" y="559.5" ></text>
</g>
<g >
<title>stream_process (2 samples, 0.01%)</title><rect x="1188.7" y="709" width="0.1" height="15.0" fill="rgb(216,87,1)" rx="2" ry="2" />
<text x="1191.70" y="719.5" ></text>
</g>
<g >
<title>Maat_plugin_get_EX_data (2 samples, 0.01%)</title><rect x="1085.4" y="437" width="0.1" height="15.0" fill="rgb(210,203,20)" rx="2" ry="2" />
<text x="1088.36" y="447.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (29 samples, 0.14%)</title><rect x="947.2" y="501" width="1.7" height="15.0" fill="rgb(217,222,18)" rx="2" ry="2" />
<text x="950.16" y="511.5" ></text>
</g>
<g >
<title>Maat_ip_plugin_get_EX_data (2 samples, 0.01%)</title><rect x="1086.5" y="421" width="0.1" height="15.0" fill="rgb(247,227,40)" rx="2" ry="2" />
<text x="1089.48" y="431.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (6 samples, 0.03%)</title><rect x="888.8" y="261" width="0.4" height="15.0" fill="rgb(242,187,40)" rx="2" ry="2" />
<text x="891.82" y="271.5" ></text>
</g>
<g >
<title>project_req_get_struct (2 samples, 0.01%)</title><rect x="1062.7" y="453" width="0.1" height="15.0" fill="rgb(224,45,19)" rx="2" ry="2" />
<text x="1065.71" y="463.5" ></text>
</g>
<g >
<title>lrustream (5 samples, 0.02%)</title><rect x="1110.7" y="549" width="0.3" height="15.0" fill="rgb(238,205,45)" rx="2" ry="2" />
<text x="1113.66" y="559.5" ></text>
</g>
<g >
<title>sprintf (2 samples, 0.01%)</title><rect x="894.7" y="533" width="0.1" height="15.0" fill="rgb(242,11,21)" rx="2" ry="2" />
<text x="897.72" y="543.5" ></text>
</g>
<g >
<title>HTTP_ENTRY (6 samples, 0.03%)</title><rect x="894.2" y="661" width="0.3" height="15.0" fill="rgb(230,91,23)" rx="2" ry="2" />
<text x="897.19" y="671.5" ></text>
</g>
<g >
<title>del_stream_by_time (31 samples, 0.15%)</title><rect x="1119.9" y="581" width="1.9" height="15.0" fill="rgb(239,200,12)" rx="2" ry="2" />
<text x="1122.93" y="591.5" ></text>
</g>
<g >
<title>stream_process_tcp (3 samples, 0.01%)</title><rect x="885.8" y="581" width="0.2" height="15.0" fill="rgb(216,157,16)" rx="2" ry="2" />
<text x="888.81" y="591.5" ></text>
</g>
<g >
<title>__memcpy_ssse3_back (70 samples, 0.35%)</title><rect x="1050.1" y="517" width="4.2" height="15.0" fill="rgb(244,127,4)" rx="2" ry="2" />
<text x="1053.15" y="527.5" ></text>
</g>
<g >
<title>arch_cpu_idle (14 samples, 0.07%)</title><rect x="1188.9" y="709" width="0.9" height="15.0" fill="rgb(215,164,16)" rx="2" ry="2" />
<text x="1191.94" y="719.5" ></text>
</g>
<g >
<title>grab_mid (176 samples, 0.88%)</title><rect x="858.3" y="725" width="10.3" height="15.0" fill="rgb(215,5,22)" rx="2" ry="2" />
<text x="861.27" y="735.5" ></text>
</g>
<g >
<title>sapp_dup_pkt_identify_udp_v6 (3 samples, 0.01%)</title><rect x="960.1" y="549" width="0.2" height="15.0" fill="rgb(224,110,24)" rx="2" ry="2" />
<text x="963.13" y="559.5" ></text>
</g>
<g >
<title>ssl_callPlugins (8 samples, 0.04%)</title><rect x="890.1" y="421" width="0.5" height="15.0" fill="rgb(213,169,41)" rx="2" ry="2" />
<text x="893.12" y="431.5" ></text>
</g>
<g >
<title>Maat_table_get_scan_by_id (83 samples, 0.41%)</title><rect x="826.7" y="709" width="4.8" height="15.0" fill="rgb(241,113,19)" rx="2" ry="2" />
<text x="829.65" y="719.5" ></text>
</g>
<g >
<title>operator delete[] (7 samples, 0.03%)</title><rect x="276.0" y="725" width="0.4" height="15.0" fill="rgb(236,166,1)" rx="2" ry="2" />
<text x="279.02" y="735.5" ></text>
</g>
<g >
<title>[sapp] (13 samples, 0.06%)</title><rect x="924.9" y="597" width="0.7" height="15.0" fill="rgb(250,169,8)" rx="2" ry="2" />
<text x="927.86" y="607.5" ></text>
</g>
<g >
<title>_IO_vsnprintf (2 samples, 0.01%)</title><rect x="894.8" y="549" width="0.2" height="15.0" fill="rgb(247,162,15)" rx="2" ry="2" />
<text x="897.84" y="559.5" ></text>
</g>
<g >
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="894.2" y="549" width="0.2" height="15.0" fill="rgb(212,86,2)" rx="2" ry="2" />
<text x="897.25" y="559.5" ></text>
</g>
<g >
<title>stream_process_udp (7 samples, 0.03%)</title><rect x="1176.6" y="629" width="0.4" height="15.0" fill="rgb(228,41,31)" rx="2" ry="2" />
<text x="1179.61" y="639.5" ></text>
</g>
<g >
<title>free (3 samples, 0.01%)</title><rect x="1107.3" y="437" width="0.2" height="15.0" fill="rgb(253,91,47)" rx="2" ry="2" />
<text x="1110.30" y="447.5" ></text>
</g>
<g >
<title>eth_entry (10 samples, 0.05%)</title><rect x="895.0" y="725" width="0.5" height="15.0" fill="rgb(224,9,43)" rx="2" ry="2" />
<text x="897.96" y="735.5" ></text>
</g>
<g >
<title>stream_process_tcp (15 samples, 0.07%)</title><rect x="1173.5" y="645" width="0.9" height="15.0" fill="rgb(241,116,5)" rx="2" ry="2" />
<text x="1176.54" y="655.5" ></text>
</g>
<g >
<title>[libprotoident.so] (27 samples, 0.13%)</title><rect x="955.1" y="469" width="1.6" height="15.0" fill="rgb(226,147,40)" rx="2" ry="2" />
<text x="958.12" y="479.5" ></text>
</g>
<g >
<title>ssl_analyseStream (3 samples, 0.01%)</title><rect x="1181.6" y="565" width="0.2" height="15.0" fill="rgb(234,183,36)" rx="2" ry="2" />
<text x="1184.62" y="575.5" ></text>
</g>
<g >
<title>raw_ip_frag_list_stream_attach (2 samples, 0.01%)</title><rect x="1103.4" y="517" width="0.1" height="15.0" fill="rgb(208,212,30)" rx="2" ry="2" />
<text x="1106.35" y="527.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (18 samples, 0.09%)</title><rect x="893.0" y="613" width="1.1" height="15.0" fill="rgb(234,77,35)" rx="2" ry="2" />
<text x="896.01" y="623.5" ></text>
</g>
<g >
<title>Maat_clean_status (10 samples, 0.05%)</title><rect x="1106.9" y="453" width="0.6" height="15.0" fill="rgb(225,93,29)" rx="2" ry="2" />
<text x="1109.89" y="463.5" ></text>
</g>
<g >
<title>netlink_unicast (2 samples, 0.01%)</title><rect x="896.5" y="533" width="0.1" height="15.0" fill="rgb(209,127,5)" rx="2" ry="2" />
<text x="899.49" y="543.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (11 samples, 0.05%)</title><rect x="1174.4" y="597" width="0.7" height="15.0" fill="rgb(227,3,12)" rx="2" ry="2" />
<text x="1177.43" y="607.5" ></text>
</g>
<g >
<title>stream_process_udp (6 samples, 0.03%)</title><rect x="1182.0" y="661" width="0.3" height="15.0" fill="rgb(227,37,36)" rx="2" ry="2" />
<text x="1184.98" y="671.5" ></text>
</g>
<g >
<title>ipv4_entry (13 samples, 0.06%)</title><rect x="1176.3" y="661" width="0.7" height="15.0" fill="rgb(215,160,47)" rx="2" ry="2" />
<text x="1179.26" y="671.5" ></text>
</g>
<g >
<title>CRefCountManager::inc_reference_count (4 samples, 0.02%)</title><rect x="812.1" y="693" width="0.2" height="15.0" fill="rgb(206,138,35)" rx="2" ry="2" />
<text x="815.08" y="703.5" ></text>
</g>
<g >
<title>SYSC_sendto (12 samples, 0.06%)</title><rect x="896.0" y="677" width="0.7" height="15.0" fill="rgb(227,211,17)" rx="2" ry="2" />
<text x="899.02" y="687.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (22 samples, 0.11%)</title><rect x="882.9" y="373" width="1.3" height="15.0" fill="rgb(222,59,43)" rx="2" ry="2" />
<text x="885.86" y="383.5" ></text>
</g>
<g >
<title>ssl_callPlugins (8 samples, 0.04%)</title><rect x="884.3" y="421" width="0.5" height="15.0" fill="rgb(243,129,37)" rx="2" ry="2" />
<text x="887.28" y="431.5" ></text>
</g>
<g >
<title>[tsg_master.so] (28 samples, 0.14%)</title><rect x="890.8" y="517" width="1.7" height="15.0" fill="rgb(213,7,37)" rx="2" ry="2" />
<text x="893.83" y="527.5" ></text>
</g>
<g >
<title>APP_SKETCH_UDP_PLUG_ENTRY (2 samples, 0.01%)</title><rect x="960.6" y="501" width="0.1" height="15.0" fill="rgb(210,189,43)" rx="2" ry="2" />
<text x="963.61" y="511.5" ></text>
</g>
<g >
<title>[libprotoident.so] (5 samples, 0.02%)</title><rect x="1119.2" y="453" width="0.3" height="15.0" fill="rgb(235,137,31)" rx="2" ry="2" />
<text x="1122.22" y="463.5" ></text>
</g>
<g >
<title>_IO_vsprintf (4 samples, 0.02%)</title><rect x="1186.2" y="677" width="0.3" height="15.0" fill="rgb(215,181,30)" rx="2" ry="2" />
<text x="1189.22" y="687.5" ></text>
</g>
<g >
<title>stream_process_tcp (137 samples, 0.68%)</title><rect x="931.5" y="517" width="8.1" height="15.0" fill="rgb(217,125,0)" rx="2" ry="2" />
<text x="934.53" y="527.5" ></text>
</g>
<g >
<title>Maat_set_scan_status (5 samples, 0.02%)</title><rect x="1177.5" y="565" width="0.3" height="15.0" fill="rgb(209,166,9)" rx="2" ry="2" />
<text x="1180.50" y="575.5" ></text>
</g>
<g >
<title>[sapp] (25 samples, 0.12%)</title><rect x="779.9" y="645" width="1.5" height="15.0" fill="rgb(252,109,8)" rx="2" ry="2" />
<text x="782.88" y="655.5" ></text>
</g>
<g >
<title>[sapp] (2 samples, 0.01%)</title><rect x="1111.0" y="517" width="0.1" height="15.0" fill="rgb(218,31,33)" rx="2" ry="2" />
<text x="1114.02" y="527.5" ></text>
</g>
<g >
<title>[sapp] (13 samples, 0.06%)</title><rect x="1131.8" y="581" width="0.8" height="15.0" fill="rgb(236,95,2)" rx="2" ry="2" />
<text x="1134.84" y="591.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.5] (3 samples, 0.01%)</title><rect x="1176.1" y="581" width="0.2" height="15.0" fill="rgb(242,193,5)" rx="2" ry="2" />
<text x="1179.08" y="591.5" ></text>
</g>
<g >
<title>tsg_get_ip_location (4 samples, 0.02%)</title><rect x="1113.0" y="453" width="0.3" height="15.0" fill="rgb(228,39,14)" rx="2" ry="2" />
<text x="1116.02" y="463.5" ></text>
</g>
<g >
<title>inet_ntop (2 samples, 0.01%)</title><rect x="892.3" y="469" width="0.1" height="15.0" fill="rgb(205,147,41)" rx="2" ry="2" />
<text x="895.30" y="479.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="886.0" y="533" width="0.1" height="15.0" fill="rgb(230,169,3)" rx="2" ry="2" />
<text x="888.99" y="543.5" ></text>
</g>
<g >
<title>TLD_append_streaminfo (4 samples, 0.02%)</title><rect x="1176.4" y="501" width="0.2" height="15.0" fill="rgb(237,12,35)" rx="2" ry="2" />
<text x="1179.37" y="511.5" ></text>
</g>
<g >
<title>grab_mid (2 samples, 0.01%)</title><rect x="781.5" y="549" width="0.1" height="15.0" fill="rgb(234,155,17)" rx="2" ry="2" />
<text x="784.53" y="559.5" ></text>
</g>
<g >
<title>lpi_guess_protocol (8 samples, 0.04%)</title><rect x="961.9" y="485" width="0.5" height="15.0" fill="rgb(215,107,35)" rx="2" ry="2" />
<text x="964.90" y="495.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (6 samples, 0.03%)</title><rect x="882.9" y="165" width="0.4" height="15.0" fill="rgb(227,41,8)" rx="2" ry="2" />
<text x="885.92" y="175.5" ></text>
</g>
<g >
<title>TSG_MASTER_UDP_ENTRY (76 samples, 0.38%)</title><rect x="1141.9" y="549" width="4.5" height="15.0" fill="rgb(236,53,49)" rx="2" ry="2" />
<text x="1144.93" y="559.5" ></text>
</g>
<g >
<title>_int_free (3 samples, 0.01%)</title><rect x="943.4" y="421" width="0.2" height="15.0" fill="rgb(246,26,28)" rx="2" ry="2" />
<text x="946.44" y="431.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="938.1" y="437" width="0.1" height="15.0" fill="rgb(233,207,23)" rx="2" ry="2" />
<text x="941.07" y="447.5" ></text>
</g>
<g >
<title>__memcmp_sse4_1 (16 samples, 0.08%)</title><rect x="1151.5" y="469" width="1.0" height="15.0" fill="rgb(208,189,31)" rx="2" ry="2" />
<text x="1154.54" y="479.5" ></text>
</g>
<g >
<title>page_fault (21 samples, 0.10%)</title><rect x="1021.1" y="405" width="1.3" height="15.0" fill="rgb(221,150,5)" rx="2" ry="2" />
<text x="1024.13" y="415.5" ></text>
</g>
<g >
<title>APP_SKETCH_UDP_PLUG_ENTRY (6 samples, 0.03%)</title><rect x="1136.8" y="549" width="0.3" height="15.0" fill="rgb(243,197,19)" rx="2" ry="2" />
<text x="1139.80" y="559.5" ></text>
</g>
<g >
<title>lpi_update_dpkt (2 samples, 0.01%)</title><rect x="981.1" y="533" width="0.1" height="15.0" fill="rgb(211,144,31)" rx="2" ry="2" />
<text x="984.07" y="543.5" ></text>
</g>
<g >
<title>MurmurHash3_x64_128 (3 samples, 0.01%)</title><rect x="946.0" y="469" width="0.2" height="15.0" fill="rgb(246,133,44)" rx="2" ry="2" />
<text x="949.04" y="479.5" ></text>
</g>
<g >
<title>[sapp] (15 samples, 0.07%)</title><rect x="1173.5" y="677" width="0.9" height="15.0" fill="rgb(234,212,36)" rx="2" ry="2" />
<text x="1176.54" y="687.5" ></text>
</g>
<g >
<title>_IO_vsprintf (3 samples, 0.01%)</title><rect x="885.8" y="453" width="0.2" height="15.0" fill="rgb(233,42,17)" rx="2" ry="2" />
<text x="888.81" y="463.5" ></text>
</g>
<g >
<title>gtp_entry (7 samples, 0.03%)</title><rect x="1177.5" y="741" width="0.4" height="15.0" fill="rgb(219,4,35)" rx="2" ry="2" />
<text x="1180.50" y="751.5" ></text>
</g>
<g >
<title>__libc_calloc (4 samples, 0.02%)</title><rect x="859.3" y="693" width="0.3" height="15.0" fill="rgb(205,186,15)" rx="2" ry="2" />
<text x="862.33" y="703.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="892.9" y="533" width="0.1" height="15.0" fill="rgb(213,27,24)" rx="2" ry="2" />
<text x="895.89" y="543.5" ></text>
</g>
<g >
<title>stream_process (3 samples, 0.01%)</title><rect x="1176.1" y="661" width="0.2" height="15.0" fill="rgb(232,83,20)" rx="2" ry="2" />
<text x="1179.08" y="671.5" ></text>
</g>
<g >
<title>[sapp] (7 samples, 0.03%)</title><rect x="1177.5" y="693" width="0.4" height="15.0" fill="rgb(245,213,45)" rx="2" ry="2" />
<text x="1180.50" y="703.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="889.8" y="277" width="0.1" height="15.0" fill="rgb(222,136,19)" rx="2" ry="2" />
<text x="892.77" y="287.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (25 samples, 0.12%)</title><rect x="888.3" y="373" width="1.5" height="15.0" fill="rgb(209,223,6)" rx="2" ry="2" />
<text x="891.29" y="383.5" ></text>
</g>
<g >
<title>__strlen_sse2_pminub (2 samples, 0.01%)</title><rect x="940.6" y="405" width="0.1" height="15.0" fill="rgb(209,62,12)" rx="2" ry="2" />
<text x="943.55" y="415.5" ></text>
</g>
<g >
<title>Maat_table_runtime_perf_stat (2 samples, 0.01%)</title><rect x="1112.9" y="421" width="0.1" height="15.0" fill="rgb(223,44,35)" rx="2" ry="2" />
<text x="1115.91" y="431.5" ></text>
</g>
<g >
<title>__strcpy_sse2 (2 samples, 0.01%)</title><rect x="1183.3" y="597" width="0.2" height="15.0" fill="rgb(209,137,32)" rx="2" ry="2" />
<text x="1186.33" y="607.5" ></text>
</g>
<g >
<title>[tsg_ddos_sketch.so] (15 samples, 0.07%)</title><rect x="1114.9" y="485" width="0.8" height="15.0" fill="rgb(234,80,7)" rx="2" ry="2" />
<text x="1117.85" y="495.5" ></text>
</g>
<g >
<title>stream_process (19 samples, 0.09%)</title><rect x="1179.2" y="597" width="1.1" height="15.0" fill="rgb(244,154,54)" rx="2" ry="2" />
<text x="1182.21" y="607.5" ></text>
</g>
<g >
<title>start_thread (4,693 samples, 23.46%)</title><rect x="896.7" y="725" width="276.8" height="15.0" fill="rgb(226,54,54)" rx="2" ry="2" />
<text x="899.73" y="735.5" >start_thread</text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (4 samples, 0.02%)</title><rect x="888.4" y="117" width="0.2" height="15.0" fill="rgb(230,1,37)" rx="2" ry="2" />
<text x="891.41" y="127.5" ></text>
</g>
<g >
<title>vlan_addr_net_to_mem (4 samples, 0.02%)</title><rect x="1155.3" y="613" width="0.2" height="15.0" fill="rgb(222,189,44)" rx="2" ry="2" />
<text x="1158.26" y="623.5" ></text>
</g>
<g >
<title>wp_page_copy.isra.58 (20 samples, 0.10%)</title><rect x="1021.2" y="325" width="1.2" height="15.0" fill="rgb(249,66,53)" rx="2" ry="2" />
<text x="1024.18" y="335.5" ></text>
</g>
<g >
<title>dealipv6udppkt (104 samples, 0.52%)</title><rect x="888.0" y="661" width="6.1" height="15.0" fill="rgb(222,165,50)" rx="2" ry="2" />
<text x="891.00" y="671.5" ></text>
</g>
<g >
<title>Maat_clean_status (2 samples, 0.01%)</title><rect x="952.7" y="469" width="0.1" height="15.0" fill="rgb(212,216,47)" rx="2" ry="2" />
<text x="955.70" y="479.5" ></text>
</g>
<g >
<title>Maat_hierarchy_compile_mid_free (2 samples, 0.01%)</title><rect x="953.8" y="453" width="0.1" height="15.0" fill="rgb(247,87,12)" rx="2" ry="2" />
<text x="956.76" y="463.5" ></text>
</g>
<g >
<title>APP_SKETCH_UDP_PLUG_ENTRY (3 samples, 0.01%)</title><rect x="1179.0" y="613" width="0.1" height="15.0" fill="rgb(233,206,4)" rx="2" ry="2" />
<text x="1181.97" y="623.5" ></text>
</g>
<g >
<title>[tsg_master.so] (31 samples, 0.15%)</title><rect x="969.0" y="533" width="1.9" height="15.0" fill="rgb(225,142,37)" rx="2" ry="2" />
<text x="972.04" y="543.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.01%)</title><rect x="952.7" y="453" width="0.1" height="15.0" fill="rgb(252,28,44)" rx="2" ry="2" />
<text x="955.70" y="463.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (9 samples, 0.04%)</title><rect x="895.0" y="629" width="0.5" height="15.0" fill="rgb(247,20,26)" rx="2" ry="2" />
<text x="897.96" y="639.5" ></text>
</g>
<g >
<title>[libprotoident.so] (24 samples, 0.12%)</title><rect x="1151.1" y="485" width="1.4" height="15.0" fill="rgb(240,208,21)" rx="2" ry="2" />
<text x="1154.13" y="495.5" ></text>
</g>
<g >
<title>[librulescan.so.2.2] (154 samples, 0.77%)</title><rect x="871.8" y="741" width="9.1" height="15.0" fill="rgb(214,36,7)" rx="2" ry="2" />
<text x="874.83" y="751.5" ></text>
</g>
<g >
<title>plugin_process_pending (2 samples, 0.01%)</title><rect x="890.6" y="405" width="0.2" height="15.0" fill="rgb(220,87,35)" rx="2" ry="2" />
<text x="893.65" y="415.5" ></text>
</g>
<g >
<title>flush_tlb_page (12 samples, 0.06%)</title><rect x="891.4" y="197" width="0.7" height="15.0" fill="rgb(253,19,14)" rx="2" ry="2" />
<text x="894.42" y="207.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.5] (4 samples, 0.02%)</title><rect x="953.9" y="437" width="0.2" height="15.0" fill="rgb(205,113,12)" rx="2" ry="2" />
<text x="956.88" y="447.5" ></text>
</g>
<g >
<title>_IO_vsprintf (2 samples, 0.01%)</title><rect x="894.6" y="565" width="0.1" height="15.0" fill="rgb(246,152,6)" rx="2" ry="2" />
<text x="897.60" y="575.5" ></text>
</g>
<g >
<title>_IO_vsnprintf (4 samples, 0.02%)</title><rect x="889.9" y="405" width="0.2" height="15.0" fill="rgb(225,62,40)" rx="2" ry="2" />
<text x="892.88" y="415.5" ></text>
</g>
<g >
<title>__strchrnul (2 samples, 0.01%)</title><rect x="885.3" y="405" width="0.2" height="15.0" fill="rgb(212,185,44)" rx="2" ry="2" />
<text x="888.34" y="415.5" ></text>
</g>
<g >
<title>fw_ssl_entry (2 samples, 0.01%)</title><rect x="1181.6" y="421" width="0.1" height="15.0" fill="rgb(232,220,53)" rx="2" ry="2" />
<text x="1184.62" y="431.5" ></text>
</g>
<g >
<title>tcp_dump_sig (5 samples, 0.02%)</title><rect x="932.8" y="437" width="0.3" height="15.0" fill="rgb(225,42,35)" rx="2" ry="2" />
<text x="935.77" y="447.5" ></text>
</g>
<g >
<title>__tls_get_addr (2 samples, 0.01%)</title><rect x="1169.9" y="661" width="0.2" height="15.0" fill="rgb(248,150,31)" rx="2" ry="2" />
<text x="1172.95" y="671.5" ></text>
</g>
<g >
<title>stream_process (104 samples, 0.52%)</title><rect x="951.5" y="533" width="6.2" height="15.0" fill="rgb(217,157,20)" rx="2" ry="2" />
<text x="954.52" y="543.5" ></text>
</g>
<g >
<title>stream_process (74 samples, 0.37%)</title><rect x="1111.4" y="533" width="4.4" height="15.0" fill="rgb(248,149,10)" rx="2" ry="2" />
<text x="1114.43" y="543.5" ></text>
</g>
<g >
<title>Maat_set_scan_status (2 samples, 0.01%)</title><rect x="887.6" y="565" width="0.1" height="15.0" fill="rgb(214,105,24)" rx="2" ry="2" />
<text x="890.58" y="575.5" ></text>
</g>
<g >
<title>HTTP_ENTRY (14 samples, 0.07%)</title><rect x="933.2" y="469" width="0.8" height="15.0" fill="rgb(250,188,30)" rx="2" ry="2" />
<text x="936.18" y="479.5" ></text>
</g>
<g >
<title>[tsg_master.so] (8 samples, 0.04%)</title><rect x="885.0" y="517" width="0.5" height="15.0" fill="rgb(226,47,20)" rx="2" ry="2" />
<text x="887.99" y="527.5" ></text>
</g>
<g >
<title>TSG_MASTER_TCPALL_ENTRY (2 samples, 0.01%)</title><rect x="959.5" y="501" width="0.2" height="15.0" fill="rgb(213,57,17)" rx="2" ry="2" />
<text x="962.54" y="511.5" ></text>
</g>
<g >
<title>__memcmp_sse4_1 (20 samples, 0.10%)</title><rect x="978.8" y="469" width="1.2" height="15.0" fill="rgb(230,111,4)" rx="2" ry="2" />
<text x="981.83" y="479.5" ></text>
</g>
<g >
<title>Maat_full_scan_string (2 samples, 0.01%)</title><rect x="884.5" y="325" width="0.1" height="15.0" fill="rgb(233,89,26)" rx="2" ry="2" />
<text x="887.52" y="335.5" ></text>
</g>
<g >
<title>malloc (2 samples, 0.01%)</title><rect x="937.7" y="421" width="0.1" height="15.0" fill="rgb(238,166,6)" rx="2" ry="2" />
<text x="940.72" y="431.5" ></text>
</g>
<g >
<title>ipv6_entry (80 samples, 0.40%)</title><rect x="781.8" y="725" width="4.7" height="15.0" fill="rgb(217,27,46)" rx="2" ry="2" />
<text x="784.76" y="735.5" ></text>
</g>
<g >
<title>__libc_calloc (134 samples, 0.67%)</title><rect x="860.7" y="693" width="7.9" height="15.0" fill="rgb(245,119,40)" rx="2" ry="2" />
<text x="863.69" y="703.5" ></text>
</g>
<g >
<title>ssl_analyseSsl (2 samples, 0.01%)</title><rect x="1178.8" y="549" width="0.1" height="15.0" fill="rgb(205,85,36)" rx="2" ry="2" />
<text x="1181.79" y="559.5" ></text>
</g>
<g >
<title>[sapp] (2 samples, 0.01%)</title><rect x="951.4" y="533" width="0.1" height="15.0" fill="rgb(227,88,53)" rx="2" ry="2" />
<text x="954.40" y="543.5" ></text>
</g>
<g >
<title>bitmap_check (19 samples, 0.09%)</title><rect x="1123.6" y="549" width="1.1" height="15.0" fill="rgb(205,80,21)" rx="2" ry="2" />
<text x="1126.58" y="559.5" ></text>
</g>
<g >
<title>Maat_fqdn_plugin_get_EX_data (2 samples, 0.01%)</title><rect x="890.4" y="293" width="0.1" height="15.0" fill="rgb(249,10,8)" rx="2" ry="2" />
<text x="893.35" y="303.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (25 samples, 0.12%)</title><rect x="888.3" y="309" width="1.5" height="15.0" fill="rgb(216,174,21)" rx="2" ry="2" />
<text x="891.29" y="319.5" ></text>
</g>
<g >
<title>set_transport_addr (3 samples, 0.01%)</title><rect x="951.3" y="549" width="0.2" height="15.0" fill="rgb(234,117,9)" rx="2" ry="2" />
<text x="954.35" y="559.5" ></text>
</g>
<g >
<title>[app_proto_identify.so] (30 samples, 0.15%)</title><rect x="955.0" y="501" width="1.8" height="15.0" fill="rgb(245,201,3)" rx="2" ry="2" />
<text x="958.00" y="511.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (5 samples, 0.02%)</title><rect x="895.7" y="693" width="0.3" height="15.0" fill="rgb(215,15,37)" rx="2" ry="2" />
<text x="898.66" y="703.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="883.9" y="197" width="0.1" height="15.0" fill="rgb(214,101,47)" rx="2" ry="2" />
<text x="886.93" y="207.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (8 samples, 0.04%)</title><rect x="881.0" y="325" width="0.4" height="15.0" fill="rgb(233,28,6)" rx="2" ry="2" />
<text x="883.98" y="335.5" ></text>
</g>
<g >
<title>process_ipv4_pkt (6 samples, 0.03%)</title><rect x="958.0" y="565" width="0.4" height="15.0" fill="rgb(207,142,27)" rx="2" ry="2" />
<text x="961.01" y="575.5" ></text>
</g>
<g >
<title>stream_process (2 samples, 0.01%)</title><rect x="1177.8" y="645" width="0.1" height="15.0" fill="rgb(205,226,17)" rx="2" ry="2" />
<text x="1180.79" y="655.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (2 samples, 0.01%)</title><rect x="1021.2" y="293" width="0.1" height="15.0" fill="rgb(216,101,26)" rx="2" ry="2" />
<text x="1024.18" y="303.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="936.1" y="373" width="0.1" height="15.0" fill="rgb(240,169,41)" rx="2" ry="2" />
<text x="939.13" y="383.5" ></text>
</g>
<g >
<title>udp_free_stream (3 samples, 0.01%)</title><rect x="1110.8" y="517" width="0.2" height="15.0" fill="rgb(254,208,40)" rx="2" ry="2" />
<text x="1113.78" y="527.5" ></text>
</g>
<g >
<title>tsg_deal_deny_action (2 samples, 0.01%)</title><rect x="1085.7" y="437" width="0.1" height="15.0" fill="rgb(214,162,3)" rx="2" ry="2" />
<text x="1088.66" y="447.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (3 samples, 0.01%)</title><rect x="1175.3" y="565" width="0.1" height="15.0" fill="rgb(208,47,30)" rx="2" ry="2" />
<text x="1178.25" y="575.5" ></text>
</g>
<g >
<title>CInt128IntervalIndex::Find_interval (6 samples, 0.03%)</title><rect x="880.0" y="709" width="0.3" height="15.0" fill="rgb(215,139,45)" rx="2" ry="2" />
<text x="882.97" y="719.5" ></text>
</g>
<g >
<title>Maat_table_runtime_ip_plugin_get_N_ex_data (4 samples, 0.02%)</title><rect x="1113.0" y="421" width="0.3" height="15.0" fill="rgb(211,61,42)" rx="2" ry="2" />
<text x="1116.02" y="431.5" ></text>
</g>
<g >
<title>tsg_scan_addr (2 samples, 0.01%)</title><rect x="940.6" y="437" width="0.1" height="15.0" fill="rgb(229,138,54)" rx="2" ry="2" />
<text x="943.55" y="447.5" ></text>
</g>
<g >
<title>tsg_get_subscribe_id (5 samples, 0.02%)</title><rect x="885.2" y="485" width="0.3" height="15.0" fill="rgb(251,70,17)" rx="2" ry="2" />
<text x="888.16" y="495.5" ></text>
</g>
<g >
<title>ipv6_entry (3 samples, 0.01%)</title><rect x="1175.9" y="661" width="0.2" height="15.0" fill="rgb(245,48,5)" rx="2" ry="2" />
<text x="1178.90" y="671.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="959.1" y="485" width="0.1" height="15.0" fill="rgb(246,192,19)" rx="2" ry="2" />
<text x="962.13" y="495.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (5 samples, 0.02%)</title><rect x="781.4" y="613" width="0.2" height="15.0" fill="rgb(248,56,52)" rx="2" ry="2" />
<text x="784.35" y="623.5" ></text>
</g>
<g >
<title>stream_process_udp (10 samples, 0.05%)</title><rect x="964.2" y="549" width="0.6" height="15.0" fill="rgb(241,122,49)" rx="2" ry="2" />
<text x="967.20" y="559.5" ></text>
</g>
<g >
<title>ipv6_entry (2,919 samples, 14.59%)</title><rect x="982.1" y="629" width="172.2" height="15.0" fill="rgb(222,87,1)" rx="2" ry="2" />
<text x="985.08" y="639.5" >ipv6_entry</text>
</g>
<g >
<title>finish_task_switch (3 samples, 0.01%)</title><rect x="1189.8" y="677" width="0.1" height="15.0" fill="rgb(215,119,27)" rx="2" ry="2" />
<text x="1192.76" y="687.5" ></text>
</g>
<g >
<title>stream_process (9 samples, 0.04%)</title><rect x="1188.1" y="517" width="0.5" height="15.0" fill="rgb(240,120,16)" rx="2" ry="2" />
<text x="1191.05" y="527.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (2 samples, 0.01%)</title><rect x="1083.3" y="245" width="0.1" height="15.0" fill="rgb(209,196,21)" rx="2" ry="2" />
<text x="1086.30" y="255.5" ></text>
</g>
<g >
<title>malloc (2 samples, 0.01%)</title><rect x="967.2" y="517" width="0.1" height="15.0" fill="rgb(239,71,3)" rx="2" ry="2" />
<text x="970.15" y="527.5" ></text>
</g>
<g >
<title>_int_free (38 samples, 0.19%)</title><rect x="273.2" y="725" width="2.2" height="15.0" fill="rgb(253,153,9)" rx="2" ry="2" />
<text x="276.19" y="735.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (7 samples, 0.03%)</title><rect x="1176.6" y="597" width="0.4" height="15.0" fill="rgb(250,77,23)" rx="2" ry="2" />
<text x="1179.61" y="607.5" ></text>
</g>
<g >
<title>[sapp] (4 samples, 0.02%)</title><rect x="882.2" y="565" width="0.2" height="15.0" fill="rgb(216,35,27)" rx="2" ry="2" />
<text x="885.16" y="575.5" ></text>
</g>
<g >
<title>inet_ntop (4 samples, 0.02%)</title><rect x="1186.2" y="709" width="0.3" height="15.0" fill="rgb(206,99,51)" rx="2" ry="2" />
<text x="1189.22" y="719.5" ></text>
</g>
<g >
<title>copy_stream_info_to_heap (3 samples, 0.01%)</title><rect x="1109.4" y="533" width="0.1" height="15.0" fill="rgb(208,69,29)" rx="2" ry="2" />
<text x="1112.37" y="543.5" ></text>
</g>
<g >
<title>streamaddlist (6 samples, 0.03%)</title><rect x="957.7" y="549" width="0.3" height="15.0" fill="rgb(240,177,25)" rx="2" ry="2" />
<text x="960.66" y="559.5" ></text>
</g>
<g >
<title>ssl_AnalyseCertificate (9 samples, 0.04%)</title><rect x="881.0" y="437" width="0.5" height="15.0" fill="rgb(250,17,28)" rx="2" ry="2" />
<text x="883.98" y="447.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (2 samples, 0.01%)</title><rect x="1188.7" y="693" width="0.1" height="15.0" fill="rgb(248,3,20)" rx="2" ry="2" />
<text x="1191.70" y="703.5" ></text>
</g>
<g >
<title>stream_process (4 samples, 0.02%)</title><rect x="1177.9" y="661" width="0.2" height="15.0" fill="rgb(246,227,9)" rx="2" ry="2" />
<text x="1180.91" y="671.5" ></text>
</g>
<g >
<title>FW_DNS_PLUG_ENTRY (22 samples, 0.11%)</title><rect x="1184.3" y="661" width="1.3" height="15.0" fill="rgb(219,198,18)" rx="2" ry="2" />
<text x="1187.28" y="671.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="936.1" y="309" width="0.1" height="15.0" fill="rgb(232,140,17)" rx="2" ry="2" />
<text x="939.13" y="319.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (15 samples, 0.07%)</title><rect x="935.0" y="357" width="0.9" height="15.0" fill="rgb(230,194,43)" rx="2" ry="2" />
<text x="938.01" y="367.5" ></text>
</g>
<g >
<title>inet_sendmsg (10 samples, 0.05%)</title><rect x="896.0" y="645" width="0.6" height="15.0" fill="rgb(233,172,47)" rx="2" ry="2" />
<text x="899.02" y="655.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (8 samples, 0.04%)</title><rect x="881.0" y="309" width="0.4" height="15.0" fill="rgb(230,50,13)" rx="2" ry="2" />
<text x="883.98" y="319.5" ></text>
</g>
<g >
<title>marsio_recv_burst (55 samples, 0.27%)</title><rect x="1170.3" y="677" width="3.2" height="15.0" fill="rgb(246,204,49)" rx="2" ry="2" />
<text x="1173.30" y="687.5" ></text>
</g>
<g >
<title>ssl_doWithCertificateDetail (8 samples, 0.04%)</title><rect x="890.1" y="437" width="0.5" height="15.0" fill="rgb(248,176,2)" rx="2" ry="2" />
<text x="893.12" y="447.5" ></text>
</g>
<g >
<title>[app_proto_identify.so] (23 samples, 0.11%)</title><rect x="1113.5" y="501" width="1.4" height="15.0" fill="rgb(223,58,24)" rx="2" ry="2" />
<text x="1116.50" y="511.5" ></text>
</g>
<g >
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="1177.9" y="501" width="0.1" height="15.0" fill="rgb(246,66,28)" rx="2" ry="2" />
<text x="1180.91" y="511.5" ></text>
</g>
<g >
<title>[libMV_sketch.so.2.1] (4 samples, 0.02%)</title><rect x="981.3" y="485" width="0.2" height="15.0" fill="rgb(229,72,11)" rx="2" ry="2" />
<text x="984.31" y="495.5" ></text>
</g>
<g >
<title>[tsg_master.so] (6 samples, 0.03%)</title><rect x="1121.0" y="533" width="0.3" height="15.0" fill="rgb(214,185,32)" rx="2" ry="2" />
<text x="1123.99" y="543.5" ></text>
</g>
<g >
<title>stream_process (75 samples, 0.37%)</title><rect x="888.1" y="549" width="4.4" height="15.0" fill="rgb(249,201,36)" rx="2" ry="2" />
<text x="891.05" y="559.5" ></text>
</g>
<g >
<title>[tsg_ddos_sketch.so] (7 samples, 0.03%)</title><rect x="940.8" y="453" width="0.4" height="15.0" fill="rgb(245,86,14)" rx="2" ry="2" />
<text x="943.79" y="463.5" ></text>
</g>
<g >
<title>_int_free (10 samples, 0.05%)</title><rect x="1018.2" y="485" width="0.6" height="15.0" fill="rgb(253,51,32)" rx="2" ry="2" />
<text x="1021.23" y="495.5" ></text>
</g>
<g >
<title>ssl_doWithCertificateDetail (2 samples, 0.01%)</title><rect x="1181.6" y="501" width="0.1" height="15.0" fill="rgb(232,186,20)" rx="2" ry="2" />
<text x="1184.62" y="511.5" ></text>
</g>
<g >
<title>asn1_ex_i2c (3 samples, 0.01%)</title><rect x="1083.7" y="293" width="0.2" height="15.0" fill="rgb(213,131,35)" rx="2" ry="2" />
<text x="1086.71" y="303.5" ></text>
</g>
<g >
<title>x2apic_send_IPI_mask (2 samples, 0.01%)</title><rect x="1022.2" y="229" width="0.2" height="15.0" fill="rgb(205,212,49)" rx="2" ry="2" />
<text x="1025.25" y="239.5" ></text>
</g>
<g >
<title>c2i_ASN1_OBJECT (4 samples, 0.02%)</title><rect x="888.9" y="213" width="0.3" height="15.0" fill="rgb(249,46,0)" rx="2" ry="2" />
<text x="891.94" y="223.5" ></text>
</g>
<g >
<title>Maat_hierarchy_compile_mid_free (2 samples, 0.01%)</title><rect x="1184.3" y="629" width="0.2" height="15.0" fill="rgb(249,107,49)" rx="2" ry="2" />
<text x="1187.34" y="639.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (3 samples, 0.01%)</title><rect x="1188.1" y="261" width="0.1" height="15.0" fill="rgb(208,88,24)" rx="2" ry="2" />
<text x="1191.05" y="271.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.5] (3 samples, 0.01%)</title><rect x="1176.1" y="565" width="0.2" height="15.0" fill="rgb(232,81,36)" rx="2" ry="2" />
<text x="1179.08" y="575.5" ></text>
</g>
<g >
<title>ssl_analyseSsl (2 samples, 0.01%)</title><rect x="930.8" y="421" width="0.1" height="15.0" fill="rgb(209,135,45)" rx="2" ry="2" />
<text x="933.82" y="431.5" ></text>
</g>
<g >
<title>stream_process (5 samples, 0.02%)</title><rect x="895.7" y="709" width="0.3" height="15.0" fill="rgb(229,212,1)" rx="2" ry="2" />
<text x="898.66" y="719.5" ></text>
</g>
<g >
<title>tsg_get_subscribe_id (3 samples, 0.01%)</title><rect x="892.5" y="485" width="0.2" height="15.0" fill="rgb(254,65,9)" rx="2" ry="2" />
<text x="895.48" y="495.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (2 samples, 0.01%)</title><rect x="885.5" y="533" width="0.1" height="15.0" fill="rgb(208,172,35)" rx="2" ry="2" />
<text x="888.46" y="543.5" ></text>
</g>
<g >
<title>[sapp] (13 samples, 0.06%)</title><rect x="1174.4" y="661" width="0.8" height="15.0" fill="rgb(211,61,23)" rx="2" ry="2" />
<text x="1177.43" y="671.5" ></text>
</g>
<g >
<title>tsg_send_log (2 samples, 0.01%)</title><rect x="894.2" y="501" width="0.2" height="15.0" fill="rgb(205,51,0)" rx="2" ry="2" />
<text x="897.25" y="511.5" ></text>
</g>
<g >
<title>[sapp] (3 samples, 0.01%)</title><rect x="885.8" y="613" width="0.2" height="15.0" fill="rgb(243,49,49)" rx="2" ry="2" />
<text x="888.81" y="623.5" ></text>
</g>
<g >
<title>malloc (2 samples, 0.01%)</title><rect x="981.2" y="533" width="0.1" height="15.0" fill="rgb(232,211,38)" rx="2" ry="2" />
<text x="984.19" y="543.5" ></text>
</g>
<g >
<title>APP_SKETCH_UDP_PLUG_ENTRY (2 samples, 0.01%)</title><rect x="786.0" y="549" width="0.1" height="15.0" fill="rgb(242,229,4)" rx="2" ry="2" />
<text x="788.95" y="559.5" ></text>
</g>
<g >
<title>http_findAndDoWithEntity (8 samples, 0.04%)</title><rect x="933.4" y="437" width="0.4" height="15.0" fill="rgb(246,167,10)" rx="2" ry="2" />
<text x="936.36" y="447.5" ></text>
</g>
<g >
<title>stream_process (3 samples, 0.01%)</title><rect x="1179.0" y="645" width="0.1" height="15.0" fill="rgb(218,41,42)" rx="2" ry="2" />
<text x="1181.97" y="655.5" ></text>
</g>
<g >
<title>stream_process (7 samples, 0.03%)</title><rect x="1175.5" y="613" width="0.4" height="15.0" fill="rgb(211,156,24)" rx="2" ry="2" />
<text x="1178.49" y="623.5" ></text>
</g>
<g >
<title>ddos_sketch_logging_print (2 samples, 0.01%)</title><rect x="1087.7" y="437" width="0.1" height="15.0" fill="rgb(225,136,6)" rx="2" ry="2" />
<text x="1090.66" y="447.5" ></text>
</g>
<g >
<title>ASN1_item_ex_i2d (2 samples, 0.01%)</title><rect x="883.9" y="213" width="0.1" height="15.0" fill="rgb(230,165,28)" rx="2" ry="2" />
<text x="886.93" y="223.5" ></text>
</g>
<g >
<title>[sapp] (19 samples, 0.09%)</title><rect x="1179.2" y="629" width="1.1" height="15.0" fill="rgb(251,190,7)" rx="2" ry="2" />
<text x="1182.21" y="639.5" ></text>
</g>
<g >
<title>plugin_process_pending (2 samples, 0.01%)</title><rect x="1177.9" y="517" width="0.1" height="15.0" fill="rgb(229,191,29)" rx="2" ry="2" />
<text x="1180.91" y="527.5" ></text>
</g>
<g >
<title>_int_malloc (111 samples, 0.55%)</title><rect x="538.3" y="629" width="6.5" height="15.0" fill="rgb(239,223,32)" rx="2" ry="2" />
<text x="541.27" y="639.5" ></text>
</g>
<g >
<title>ipv4_entry (9 samples, 0.04%)</title><rect x="1188.1" y="597" width="0.5" height="15.0" fill="rgb(226,14,6)" rx="2" ry="2" />
<text x="1191.05" y="607.5" ></text>
</g>
<g >
<title>MESA_handle_runtime_log (10 samples, 0.05%)</title><rect x="1178.1" y="549" width="0.6" height="15.0" fill="rgb(238,174,52)" rx="2" ry="2" />
<text x="1181.14" y="559.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (25 samples, 0.12%)</title><rect x="888.3" y="389" width="1.5" height="15.0" fill="rgb(239,45,44)" rx="2" ry="2" />
<text x="891.29" y="399.5" ></text>
</g>
<g >
<title>SSL_ENTRY (3 samples, 0.01%)</title><rect x="1181.6" y="581" width="0.2" height="15.0" fill="rgb(214,107,12)" rx="2" ry="2" />
<text x="1184.62" y="591.5" ></text>
</g>
<g >
<title>malloc (2 samples, 0.01%)</title><rect x="883.7" y="181" width="0.2" height="15.0" fill="rgb(241,219,37)" rx="2" ry="2" />
<text x="886.75" y="191.5" ></text>
</g>
<g >
<title>[sapp] (6 samples, 0.03%)</title><rect x="930.6" y="517" width="0.3" height="15.0" fill="rgb(250,122,7)" rx="2" ry="2" />
<text x="933.58" y="527.5" ></text>
</g>
<g >
<title>fn_pGetSSLInfo (4 samples, 0.02%)</title><rect x="1188.1" y="405" width="0.2" height="15.0" fill="rgb(250,39,39)" rx="2" ry="2" />
<text x="1191.05" y="415.5" ></text>
</g>
<g >
<title>__memcmp_sse4_1 (2 samples, 0.01%)</title><rect x="1175.0" y="517" width="0.1" height="15.0" fill="rgb(237,176,27)" rx="2" ry="2" />
<text x="1177.96" y="527.5" ></text>
</g>
<g >
<title>_int_free (9 samples, 0.04%)</title><rect x="947.9" y="437" width="0.5" height="15.0" fill="rgb(228,7,22)" rx="2" ry="2" />
<text x="950.87" y="447.5" ></text>
</g>
<g >
<title>tsg_ddos_sketch_udp_entry (2 samples, 0.01%)</title><rect x="1119.5" y="501" width="0.1" height="15.0" fill="rgb(242,29,53)" rx="2" ry="2" />
<text x="1122.51" y="511.5" ></text>
</g>
<g >
<title>findstreamindex (29 samples, 0.14%)</title><rect x="925.6" y="597" width="1.7" height="15.0" fill="rgb(226,227,41)" rx="2" ry="2" />
<text x="928.63" y="607.5" ></text>
</g>
<g >
<title>schedule_preempt_disabled (3 samples, 0.01%)</title><rect x="1189.8" y="709" width="0.1" height="15.0" fill="rgb(239,165,13)" rx="2" ry="2" />
<text x="1192.76" y="719.5" ></text>
</g>
<g >
<title>Maat_clean_status (5 samples, 0.02%)</title><rect x="968.2" y="517" width="0.3" height="15.0" fill="rgb(225,91,49)" rx="2" ry="2" />
<text x="971.16" y="527.5" ></text>
</g>
<g >
<title>CRefCountManager::inc_reference_count (44 samples, 0.22%)</title><rect x="798.6" y="693" width="2.6" height="15.0" fill="rgb(250,54,14)" rx="2" ry="2" />
<text x="801.63" y="703.5" ></text>
</g>
<g >
<title>operator delete (3 samples, 0.01%)</title><rect x="275.8" y="725" width="0.2" height="15.0" fill="rgb(221,18,41)" rx="2" ry="2" />
<text x="278.79" y="735.5" ></text>
</g>
<g >
<title>ASN1_mbstring_copy (3 samples, 0.01%)</title><rect x="883.3" y="245" width="0.2" height="15.0" fill="rgb(253,212,34)" rx="2" ry="2" />
<text x="886.34" y="255.5" ></text>
</g>
<g >
<title>sapp_is_overlay_layer (3 samples, 0.01%)</title><rect x="958.4" y="565" width="0.1" height="15.0" fill="rgb(242,145,27)" rx="2" ry="2" />
<text x="961.36" y="575.5" ></text>
</g>
<g >
<title>sprintf (3 samples, 0.01%)</title><rect x="895.8" y="533" width="0.2" height="15.0" fill="rgb(241,103,21)" rx="2" ry="2" />
<text x="898.78" y="543.5" ></text>
</g>
<g >
<title>tsg_send_log (2 samples, 0.01%)</title><rect x="1188.7" y="645" width="0.1" height="15.0" fill="rgb(221,171,49)" rx="2" ry="2" />
<text x="1191.70" y="655.5" ></text>
</g>
<g >
<title>gtp_entry (62 samples, 0.31%)</title><rect x="882.5" y="645" width="3.6" height="15.0" fill="rgb(254,147,21)" rx="2" ry="2" />
<text x="885.45" y="655.5" ></text>
</g>
<g >
<title>Maat_table_runtime_ip_plugin_get_N_ex_data (2 samples, 0.01%)</title><rect x="1145.8" y="469" width="0.1" height="15.0" fill="rgb(242,39,6)" rx="2" ry="2" />
<text x="1148.82" y="479.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (2 samples, 0.01%)</title><rect x="1175.1" y="581" width="0.1" height="15.0" fill="rgb(224,211,33)" rx="2" ry="2" />
<text x="1178.08" y="591.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (5 samples, 0.02%)</title><rect x="1187.6" y="293" width="0.3" height="15.0" fill="rgb(248,55,37)" rx="2" ry="2" />
<text x="1190.58" y="303.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (6 samples, 0.03%)</title><rect x="889.3" y="261" width="0.3" height="15.0" fill="rgb(248,159,26)" rx="2" ry="2" />
<text x="892.29" y="271.5" ></text>
</g>
<g >
<title>tsg_deal_deny_action (18 samples, 0.09%)</title><rect x="891.1" y="485" width="1.0" height="15.0" fill="rgb(237,211,14)" rx="2" ry="2" />
<text x="894.06" y="495.5" ></text>
</g>
<g >
<title>SSL_ENTRY (2 samples, 0.01%)</title><rect x="958.9" y="485" width="0.1" height="15.0" fill="rgb(233,154,6)" rx="2" ry="2" />
<text x="961.90" y="495.5" ></text>
</g>
<g >
<title>stream_process (2 samples, 0.01%)</title><rect x="886.0" y="581" width="0.1" height="15.0" fill="rgb(229,84,31)" rx="2" ry="2" />
<text x="888.99" y="591.5" ></text>
</g>
<g >
<title>APP_SKETCH_UDP_PLUG_ENTRY (15 samples, 0.07%)</title><rect x="893.0" y="597" width="0.9" height="15.0" fill="rgb(218,106,26)" rx="2" ry="2" />
<text x="896.01" y="607.5" ></text>
</g>
<g >
<title>stream_process_tcp (27 samples, 0.13%)</title><rect x="1180.3" y="629" width="1.6" height="15.0" fill="rgb(238,172,23)" rx="2" ry="2" />
<text x="1183.33" y="639.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (4 samples, 0.02%)</title><rect x="934.8" y="309" width="0.2" height="15.0" fill="rgb(216,11,49)" rx="2" ry="2" />
<text x="937.77" y="319.5" ></text>
</g>
<g >
<title>APP_SKETCH_TCP_PLUG_ENTRY (11 samples, 0.05%)</title><rect x="1174.4" y="581" width="0.7" height="15.0" fill="rgb(244,164,31)" rx="2" ry="2" />
<text x="1177.43" y="591.5" ></text>
</g>
<g >
<title>APP_SKETCH_TCP_PLUG_ENTRY (2 samples, 0.01%)</title><rect x="1175.1" y="597" width="0.1" height="15.0" fill="rgb(248,79,21)" rx="2" ry="2" />
<text x="1178.08" y="607.5" ></text>
</g>
<g >
<title>__clock_gettime (2 samples, 0.01%)</title><rect x="1096.6" y="485" width="0.1" height="15.0" fill="rgb(226,201,42)" rx="2" ry="2" />
<text x="1099.57" y="495.5" ></text>
</g>
<g >
<title>[sapp] (2 samples, 0.01%)</title><rect x="1112.1" y="469" width="0.1" height="15.0" fill="rgb(207,69,45)" rx="2" ry="2" />
<text x="1115.08" y="479.5" ></text>
</g>
<g >
<title>ASN1_item_d2i (2 samples, 0.01%)</title><rect x="889.8" y="405" width="0.1" height="15.0" fill="rgb(220,188,13)" rx="2" ry="2" />
<text x="892.77" y="415.5" ></text>
</g>
<g >
<title>Maat_table_runtime_perf_stat (2 samples, 0.01%)</title><rect x="954.2" y="421" width="0.1" height="15.0" fill="rgb(209,177,13)" rx="2" ry="2" />
<text x="957.18" y="431.5" ></text>
</g>
<g >
<title>malloc (2 samples, 0.01%)</title><rect x="1188.3" y="437" width="0.1" height="15.0" fill="rgb(250,154,5)" rx="2" ry="2" />
<text x="1191.29" y="447.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (10 samples, 0.05%)</title><rect x="951.9" y="485" width="0.6" height="15.0" fill="rgb(209,153,50)" rx="2" ry="2" />
<text x="954.94" y="495.5" ></text>
</g>
<g >
<title>project_req_get_struct (2 samples, 0.01%)</title><rect x="952.5" y="485" width="0.1" height="15.0" fill="rgb(243,215,34)" rx="2" ry="2" />
<text x="955.53" y="495.5" ></text>
</g>
<g >
<title>Maat_ip_plugin_get_EX_data (2 samples, 0.01%)</title><rect x="1086.0" y="421" width="0.1" height="15.0" fill="rgb(223,171,38)" rx="2" ry="2" />
<text x="1088.95" y="431.5" ></text>
</g>
<g >
<title>tsg_get_subscribe_id (3 samples, 0.01%)</title><rect x="885.8" y="501" width="0.2" height="15.0" fill="rgb(205,33,16)" rx="2" ry="2" />
<text x="888.81" y="511.5" ></text>
</g>
<g >
<title>[libMV_sketch.so.2.1] (5 samples, 0.02%)</title><rect x="1115.1" y="421" width="0.3" height="15.0" fill="rgb(227,108,24)" rx="2" ry="2" />
<text x="1118.15" y="431.5" ></text>
</g>
<g >
<title>_IO_vsnprintf (2 samples, 0.01%)</title><rect x="887.9" y="517" width="0.1" height="15.0" fill="rgb(210,89,41)" rx="2" ry="2" />
<text x="890.88" y="527.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="1188.3" y="421" width="0.1" height="15.0" fill="rgb(219,58,23)" rx="2" ry="2" />
<text x="1191.29" y="431.5" ></text>
</g>
<g >
<title>project_req_get_struct (14 samples, 0.07%)</title><rect x="1137.3" y="533" width="0.9" height="15.0" fill="rgb(207,49,42)" rx="2" ry="2" />
<text x="1140.33" y="543.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.5] (2 samples, 0.01%)</title><rect x="1145.8" y="453" width="0.1" height="15.0" fill="rgb(233,95,39)" rx="2" ry="2" />
<text x="1148.82" y="463.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (27 samples, 0.13%)</title><rect x="1086.2" y="485" width="1.6" height="15.0" fill="rgb(211,101,18)" rx="2" ry="2" />
<text x="1089.19" y="495.5" ></text>
</g>
<g >
<title>stream_process_udp (2 samples, 0.01%)</title><rect x="886.0" y="597" width="0.1" height="15.0" fill="rgb(226,69,50)" rx="2" ry="2" />
<text x="888.99" y="607.5" ></text>
</g>
<g >
<title>ddos_sketch_logging_print (4 samples, 0.02%)</title><rect x="962.9" y="469" width="0.2" height="15.0" fill="rgb(234,224,10)" rx="2" ry="2" />
<text x="965.91" y="479.5" ></text>
</g>
<g >
<title>dealipv6udppkt (10 samples, 0.05%)</title><rect x="1188.1" y="629" width="0.5" height="15.0" fill="rgb(233,71,46)" rx="2" ry="2" />
<text x="1191.05" y="639.5" ></text>
</g>
<g >
<title>process_pkt_return (3 samples, 0.01%)</title><rect x="1155.8" y="661" width="0.2" height="15.0" fill="rgb(214,121,23)" rx="2" ry="2" />
<text x="1158.79" y="671.5" ></text>
</g>
<g >
<title>Maat_table_runtime_perf_stat (3 samples, 0.01%)</title><rect x="1086.7" y="405" width="0.2" height="15.0" fill="rgb(233,115,0)" rx="2" ry="2" />
<text x="1089.72" y="415.5" ></text>
</g>
<g >
<title>vfprintf (2 samples, 0.01%)</title><rect x="894.8" y="533" width="0.2" height="15.0" fill="rgb(226,209,3)" rx="2" ry="2" />
<text x="897.84" y="543.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.01%)</title><rect x="943.6" y="469" width="0.1" height="15.0" fill="rgb(250,30,19)" rx="2" ry="2" />
<text x="946.62" y="479.5" ></text>
</g>
<g >
<title>inet_ntop (2 samples, 0.01%)</title><rect x="1188.7" y="549" width="0.1" height="15.0" fill="rgb(248,143,15)" rx="2" ry="2" />
<text x="1191.70" y="559.5" ></text>
</g>
<g >
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="884.3" y="325" width="0.2" height="15.0" fill="rgb(222,3,46)" rx="2" ry="2" />
<text x="887.34" y="335.5" ></text>
</g>
<g >
<title>APP_L7_PROTOCOL_UDP_RAW_ENTRY (4 samples, 0.02%)</title><rect x="1136.6" y="549" width="0.2" height="15.0" fill="rgb(240,139,15)" rx="2" ry="2" />
<text x="1139.56" y="559.5" ></text>
</g>
<g >
<title>http_analyseHttpConnection (4 samples, 0.02%)</title><rect x="1177.9" y="613" width="0.2" height="15.0" fill="rgb(234,179,3)" rx="2" ry="2" />
<text x="1180.91" y="623.5" ></text>
</g>
<g >
<title>[tsg_master.so] (4 samples, 0.02%)</title><rect x="953.9" y="469" width="0.2" height="15.0" fill="rgb(240,97,22)" rx="2" ry="2" />
<text x="956.88" y="479.5" ></text>
</g>
<g >
<title>plugin_process_data (30 samples, 0.15%)</title><rect x="1182.4" y="693" width="1.8" height="15.0" fill="rgb(217,204,47)" rx="2" ry="2" />
<text x="1185.45" y="703.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (7 samples, 0.03%)</title><rect x="1187.6" y="501" width="0.4" height="15.0" fill="rgb(206,22,39)" rx="2" ry="2" />
<text x="1190.58" y="511.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.5] (5 samples, 0.02%)</title><rect x="1177.5" y="533" width="0.3" height="15.0" fill="rgb(220,171,27)" rx="2" ry="2" />
<text x="1180.50" y="543.5" ></text>
</g>
<g >
<title>malloc (102 samples, 0.51%)</title><rect x="1055.0" y="501" width="6.0" height="15.0" fill="rgb(244,209,24)" rx="2" ry="2" />
<text x="1057.98" y="511.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (2 samples, 0.01%)</title><rect x="930.8" y="469" width="0.1" height="15.0" fill="rgb(251,51,50)" rx="2" ry="2" />
<text x="933.82" y="479.5" ></text>
</g>
<g >
<title>stream_process (12 samples, 0.06%)</title><rect x="1118.9" y="533" width="0.7" height="15.0" fill="rgb(240,105,3)" rx="2" ry="2" />
<text x="1121.92" y="543.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (258 samples, 1.29%)</title><rect x="966.3" y="565" width="15.2" height="15.0" fill="rgb(250,121,47)" rx="2" ry="2" />
<text x="969.33" y="575.5" ></text>
</g>
<g >
<title>ssl_AnalyseCertificate (2 samples, 0.01%)</title><rect x="930.8" y="389" width="0.1" height="15.0" fill="rgb(249,66,42)" rx="2" ry="2" />
<text x="933.82" y="399.5" ></text>
</g>
<g >
<title>set_transport_addr (6 samples, 0.03%)</title><rect x="964.8" y="597" width="0.3" height="15.0" fill="rgb(243,36,9)" rx="2" ry="2" />
<text x="967.79" y="607.5" ></text>
</g>
<g >
<title>http_add_proto_tag (3 samples, 0.01%)</title><rect x="933.2" y="453" width="0.2" height="15.0" fill="rgb(232,138,23)" rx="2" ry="2" />
<text x="936.18" y="463.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (13 samples, 0.06%)</title><rect x="1023.7" y="437" width="0.7" height="15.0" fill="rgb(251,66,44)" rx="2" ry="2" />
<text x="1026.66" y="447.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (6 samples, 0.03%)</title><rect x="786.1" y="581" width="0.3" height="15.0" fill="rgb(224,202,25)" rx="2" ry="2" />
<text x="789.07" y="591.5" ></text>
</g>
<g >
<title>stream_process (465 samples, 2.32%)</title><rect x="1022.7" y="485" width="27.4" height="15.0" fill="rgb(245,94,45)" rx="2" ry="2" />
<text x="1025.66" y="495.5" >s..</text>
</g>
<g >
<title>[sapp] (11 samples, 0.05%)</title><rect x="1096.0" y="501" width="0.7" height="15.0" fill="rgb(254,78,15)" rx="2" ry="2" />
<text x="1099.04" y="511.5" ></text>
</g>
<g >
<title>_IO_vsnprintf (5 samples, 0.02%)</title><rect x="882.5" y="453" width="0.2" height="15.0" fill="rgb(236,59,39)" rx="2" ry="2" />
<text x="885.45" y="463.5" ></text>
</g>
<g >
<title>lpi_guess_protocol (19 samples, 0.09%)</title><rect x="936.5" y="453" width="1.2" height="15.0" fill="rgb(210,188,6)" rx="2" ry="2" />
<text x="939.54" y="463.5" ></text>
</g>
<g >
<title>tsg_ddos_sketch_udp_entry (4 samples, 0.02%)</title><rect x="981.3" y="549" width="0.2" height="15.0" fill="rgb(224,172,4)" rx="2" ry="2" />
<text x="984.31" y="559.5" ></text>
</g>
<g >
<title>Maat_hierarchy_compile_mid_new (19 samples, 0.09%)</title><rect x="859.2" y="709" width="1.1" height="15.0" fill="rgb(230,15,40)" rx="2" ry="2" />
<text x="862.21" y="719.5" ></text>
</g>
<g >
<title>Maat_set_scan_status (9 samples, 0.04%)</title><rect x="895.0" y="581" width="0.5" height="15.0" fill="rgb(231,155,15)" rx="2" ry="2" />
<text x="897.96" y="591.5" ></text>
</g>
<g >
<title>operator new (135 samples, 0.67%)</title><rect x="536.9" y="661" width="7.9" height="15.0" fill="rgb(231,131,30)" rx="2" ry="2" />
<text x="539.86" y="671.5" ></text>
</g>
<g >
<title>IEEE_8021_entry (10 samples, 0.05%)</title><rect x="895.0" y="709" width="0.5" height="15.0" fill="rgb(229,118,12)" rx="2" ry="2" />
<text x="897.96" y="719.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (3 samples, 0.01%)</title><rect x="892.5" y="533" width="0.2" height="15.0" fill="rgb(206,209,31)" rx="2" ry="2" />
<text x="895.48" y="543.5" ></text>
</g>
<g >
<title>IEEE_8021_entry (19 samples, 0.09%)</title><rect x="1187.5" y="661" width="1.1" height="15.0" fill="rgb(221,36,8)" rx="2" ry="2" />
<text x="1190.52" y="671.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (3 samples, 0.01%)</title><rect x="1121.6" y="517" width="0.2" height="15.0" fill="rgb(244,103,12)" rx="2" ry="2" />
<text x="1124.58" y="527.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.5] (7 samples, 0.03%)</title><rect x="1177.1" y="581" width="0.4" height="15.0" fill="rgb(240,141,44)" rx="2" ry="2" />
<text x="1180.08" y="591.5" ></text>
</g>
<g >
<title>_int_malloc (61 samples, 0.30%)</title><rect x="865.0" y="677" width="3.6" height="15.0" fill="rgb(235,6,45)" rx="2" ry="2" />
<text x="867.99" y="687.5" ></text>
</g>
<g >
<title>Maat_clean_status (3 samples, 0.01%)</title><rect x="943.4" y="453" width="0.2" height="15.0" fill="rgb(249,128,8)" rx="2" ry="2" />
<text x="946.44" y="463.5" ></text>
</g>
<g >
<title>Maat_clean_status (2 samples, 0.01%)</title><rect x="970.2" y="517" width="0.1" height="15.0" fill="rgb(238,131,5)" rx="2" ry="2" />
<text x="973.16" y="527.5" ></text>
</g>
<g >
<title>MV_Sketch_update (2 samples, 0.01%)</title><rect x="1153.5" y="501" width="0.1" height="15.0" fill="rgb(207,58,44)" rx="2" ry="2" />
<text x="1156.49" y="511.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (6 samples, 0.03%)</title><rect x="882.9" y="181" width="0.4" height="15.0" fill="rgb(226,115,44)" rx="2" ry="2" />
<text x="885.92" y="191.5" ></text>
</g>
<g >
<title>TLD_append (4 samples, 0.02%)</title><rect x="890.1" y="341" width="0.3" height="15.0" fill="rgb(216,103,52)" rx="2" ry="2" />
<text x="893.12" y="351.5" ></text>
</g>
<g >
<title>[tsg_ddos_sketch.so] (3 samples, 0.01%)</title><rect x="1153.4" y="517" width="0.2" height="15.0" fill="rgb(219,4,15)" rx="2" ry="2" />
<text x="1156.43" y="527.5" ></text>
</g>
<g >
<title>sapp_dup_pkt_mark_tcp (18 samples, 0.09%)</title><rect x="891.1" y="405" width="1.0" height="15.0" fill="rgb(214,5,24)" rx="2" ry="2" />
<text x="894.06" y="415.5" ></text>
</g>
<g >
<title>sapp_inject_pkt (18 samples, 0.09%)</title><rect x="891.1" y="437" width="1.0" height="15.0" fill="rgb(217,67,13)" rx="2" ry="2" />
<text x="894.06" y="447.5" ></text>
</g>
<g >
<title>ssl_get_ja3_fingerprint (13 samples, 0.06%)</title><rect x="1186.8" y="741" width="0.7" height="15.0" fill="rgb(247,46,30)" rx="2" ry="2" />
<text x="1189.76" y="751.5" ></text>
</g>
<g >
<title>[sapp] (3 samples, 0.01%)</title><rect x="965.0" y="581" width="0.1" height="15.0" fill="rgb(251,171,31)" rx="2" ry="2" />
<text x="967.97" y="591.5" ></text>
</g>
<g >
<title>stream_process_udp (4 samples, 0.02%)</title><rect x="885.6" y="597" width="0.2" height="15.0" fill="rgb(221,6,43)" rx="2" ry="2" />
<text x="888.58" y="607.5" ></text>
</g>
<g >
<title>stream_process_udp (3 samples, 0.01%)</title><rect x="1175.9" y="629" width="0.2" height="15.0" fill="rgb(251,55,18)" rx="2" ry="2" />
<text x="1178.90" y="639.5" ></text>
</g>
<g >
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="1181.6" y="437" width="0.1" height="15.0" fill="rgb(234,3,2)" rx="2" ry="2" />
<text x="1184.62" y="447.5" ></text>
</g>
<g >
<title>Maat_ip_plugin_get_EX_data (2 samples, 0.01%)</title><rect x="938.8" y="421" width="0.2" height="15.0" fill="rgb(227,14,23)" rx="2" ry="2" />
<text x="941.84" y="431.5" ></text>
</g>
<g >
<title>ipv4_entry (79 samples, 0.39%)</title><rect x="781.8" y="677" width="4.6" height="15.0" fill="rgb(248,163,29)" rx="2" ry="2" />
<text x="784.76" y="687.5" ></text>
</g>
<g >
<title>__memcmp_sse4_1 (2 samples, 0.01%)</title><rect x="1110.5" y="501" width="0.1" height="15.0" fill="rgb(246,191,39)" rx="2" ry="2" />
<text x="1113.49" y="511.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (5 samples, 0.02%)</title><rect x="882.5" y="501" width="0.2" height="15.0" fill="rgb(219,150,15)" rx="2" ry="2" />
<text x="885.45" y="511.5" ></text>
</g>
<g >
<title>APP_SKETCH_TCP_PLUG_ENTRY (22 samples, 0.11%)</title><rect x="1180.3" y="581" width="1.3" height="15.0" fill="rgb(234,66,23)" rx="2" ry="2" />
<text x="1183.33" y="591.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (5 samples, 0.02%)</title><rect x="882.9" y="133" width="0.3" height="15.0" fill="rgb(217,86,42)" rx="2" ry="2" />
<text x="885.92" y="143.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (2 samples, 0.01%)</title><rect x="889.8" y="341" width="0.1" height="15.0" fill="rgb(211,75,38)" rx="2" ry="2" />
<text x="892.77" y="351.5" ></text>
</g>
<g >
<title>ssl_AnalyseCertificate (4 samples, 0.02%)</title><rect x="1188.1" y="421" width="0.2" height="15.0" fill="rgb(237,54,7)" rx="2" ry="2" />
<text x="1191.05" y="431.5" ></text>
</g>
<g >
<title>malloc (2 samples, 0.01%)</title><rect x="888.5" y="53" width="0.1" height="15.0" fill="rgb(238,66,18)" rx="2" ry="2" />
<text x="891.53" y="63.5" ></text>
</g>
<g >
<title>Maat_plugin_get_EX_data (2 samples, 0.01%)</title><rect x="1146.1" y="485" width="0.1" height="15.0" fill="rgb(219,123,42)" rx="2" ry="2" />
<text x="1149.11" y="495.5" ></text>
</g>
<g >
<title>inet_ntop (2 samples, 0.01%)</title><rect x="894.6" y="597" width="0.1" height="15.0" fill="rgb(240,123,12)" rx="2" ry="2" />
<text x="897.60" y="607.5" ></text>
</g>
<g >
<title>[sapp] (2 samples, 0.01%)</title><rect x="950.3" y="517" width="0.1" height="15.0" fill="rgb(209,169,11)" rx="2" ry="2" />
<text x="953.28" y="527.5" ></text>
</g>
<g >
<title>ssl_analyseHandShake (5 samples, 0.02%)</title><rect x="1187.6" y="437" width="0.3" height="15.0" fill="rgb(209,92,32)" rx="2" ry="2" />
<text x="1190.58" y="447.5" ></text>
</g>
<g >
<title>lrustream (2 samples, 0.01%)</title><rect x="786.0" y="645" width="0.1" height="15.0" fill="rgb(236,53,44)" rx="2" ry="2" />
<text x="788.95" y="655.5" ></text>
</g>
<g >
<title>set_transport_addr (4 samples, 0.02%)</title><rect x="946.2" y="533" width="0.2" height="15.0" fill="rgb(243,17,43)" rx="2" ry="2" />
<text x="949.21" y="543.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (22 samples, 0.11%)</title><rect x="882.9" y="389" width="1.3" height="15.0" fill="rgb(212,148,18)" rx="2" ry="2" />
<text x="885.86" y="399.5" ></text>
</g>
<g >
<title>MV_Sketch_update (11 samples, 0.05%)</title><rect x="1087.0" y="421" width="0.7" height="15.0" fill="rgb(252,7,10)" rx="2" ry="2" />
<text x="1090.01" y="431.5" ></text>
</g>
<g >
<title>sapp_mem_malloc (2 samples, 0.01%)</title><rect x="931.1" y="501" width="0.1" height="15.0" fill="rgb(253,12,34)" rx="2" ry="2" />
<text x="934.05" y="511.5" ></text>
</g>
<g >
<title>ptep_clear_flush (16 samples, 0.08%)</title><rect x="1021.4" y="309" width="1.0" height="15.0" fill="rgb(229,3,30)" rx="2" ry="2" />
<text x="1024.42" y="319.5" ></text>
</g>
<g >
<title>nf_queue (4 samples, 0.02%)</title><rect x="896.4" y="597" width="0.2" height="15.0" fill="rgb(215,103,38)" rx="2" ry="2" />
<text x="899.37" y="607.5" ></text>
</g>
<g >
<title>stream_process (14 samples, 0.07%)</title><rect x="1178.1" y="613" width="0.9" height="15.0" fill="rgb(226,42,4)" rx="2" ry="2" />
<text x="1181.14" y="623.5" ></text>
</g>
<g >
<title>[tsg_master.so] (16 samples, 0.08%)</title><rect x="939.8" y="469" width="1.0" height="15.0" fill="rgb(240,143,50)" rx="2" ry="2" />
<text x="942.84" y="479.5" ></text>
</g>
<g >
<title>streamaddlist (2 samples, 0.01%)</title><rect x="1115.8" y="549" width="0.1" height="15.0" fill="rgb(214,29,53)" rx="2" ry="2" />
<text x="1118.80" y="559.5" ></text>
</g>
<g >
<title>[tsg_ddos_sketch.so] (12 samples, 0.06%)</title><rect x="1114.9" y="469" width="0.7" height="15.0" fill="rgb(217,209,39)" rx="2" ry="2" />
<text x="1117.85" y="479.5" ></text>
</g>
<g >
<title>CPortIndex::Find (2 samples, 0.01%)</title><rect x="880.3" y="709" width="0.1" height="15.0" fill="rgb(215,221,25)" rx="2" ry="2" />
<text x="883.33" y="719.5" ></text>
</g>
<g >
<title>CRYPTO_malloc (2 samples, 0.01%)</title><rect x="883.7" y="197" width="0.2" height="15.0" fill="rgb(219,57,10)" rx="2" ry="2" />
<text x="886.75" y="207.5" ></text>
</g>
<g >
<title>[sapp] (53 samples, 0.26%)</title><rect x="882.5" y="597" width="3.1" height="15.0" fill="rgb(212,132,40)" rx="2" ry="2" />
<text x="885.45" y="607.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="885.6" y="517" width="0.1" height="15.0" fill="rgb(211,78,4)" rx="2" ry="2" />
<text x="888.58" y="527.5" ></text>
</g>
<g >
<title>_int_free (7 samples, 0.03%)</title><rect x="1106.9" y="437" width="0.4" height="15.0" fill="rgb(216,96,1)" rx="2" ry="2" />
<text x="1109.89" y="447.5" ></text>
</g>
<g >
<title>stream_process (2 samples, 0.01%)</title><rect x="1118.6" y="533" width="0.1" height="15.0" fill="rgb(246,34,13)" rx="2" ry="2" />
<text x="1121.57" y="543.5" ></text>
</g>
<g >
<title>Maat_table_get_by_id_raw@plt (3 samples, 0.01%)</title><rect x="826.2" y="693" width="0.2" height="15.0" fill="rgb(249,1,31)" rx="2" ry="2" />
<text x="829.24" y="703.5" ></text>
</g>
<g >
<title>tsg_ddos_sketch_ip_entry (5 samples, 0.02%)</title><rect x="1117.3" y="533" width="0.3" height="15.0" fill="rgb(251,223,54)" rx="2" ry="2" />
<text x="1120.33" y="543.5" ></text>
</g>
<g >
<title>[tsg_ddos_sketch.so] (3 samples, 0.01%)</title><rect x="1153.4" y="533" width="0.2" height="15.0" fill="rgb(239,64,40)" rx="2" ry="2" />
<text x="1156.43" y="543.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (15 samples, 0.07%)</title><rect x="893.0" y="581" width="0.9" height="15.0" fill="rgb(210,55,33)" rx="2" ry="2" />
<text x="896.01" y="591.5" ></text>
</g>
<g >
<title>[sapp] (7 samples, 0.03%)</title><rect x="1177.5" y="677" width="0.4" height="15.0" fill="rgb(218,59,43)" rx="2" ry="2" />
<text x="1180.50" y="687.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (7 samples, 0.03%)</title><rect x="1175.5" y="597" width="0.4" height="15.0" fill="rgb(220,29,29)" rx="2" ry="2" />
<text x="1178.49" y="607.5" ></text>
</g>
<g >
<title>CRYPTO_free (2 samples, 0.01%)</title><rect x="1082.9" y="245" width="0.2" height="15.0" fill="rgb(222,143,38)" rx="2" ry="2" />
<text x="1085.94" y="255.5" ></text>
</g>
<g >
<title>APP_SKETCH_UDP_PLUG_ENTRY (6 samples, 0.03%)</title><rect x="1182.0" y="613" width="0.3" height="15.0" fill="rgb(206,4,49)" rx="2" ry="2" />
<text x="1184.98" y="623.5" ></text>
</g>
<g >
<title>stream_process (3 samples, 0.01%)</title><rect x="892.5" y="549" width="0.2" height="15.0" fill="rgb(224,188,41)" rx="2" ry="2" />
<text x="895.48" y="559.5" ></text>
</g>
<g >
<title>sprintf (3 samples, 0.01%)</title><rect x="887.7" y="517" width="0.2" height="15.0" fill="rgb(205,128,46)" rx="2" ry="2" />
<text x="890.70" y="527.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (4 samples, 0.02%)</title><rect x="886.1" y="533" width="0.2" height="15.0" fill="rgb(233,95,46)" rx="2" ry="2" />
<text x="889.11" y="543.5" ></text>
</g>
<g >
<title>malloc (2 samples, 0.01%)</title><rect x="931.1" y="485" width="0.1" height="15.0" fill="rgb(213,142,54)" rx="2" ry="2" />
<text x="934.05" y="495.5" ></text>
</g>
<g >
<title>lrustream (11 samples, 0.05%)</title><rect x="943.1" y="533" width="0.7" height="15.0" fill="rgb(248,180,11)" rx="2" ry="2" />
<text x="946.15" y="543.5" ></text>
</g>
<g >
<title>sprintf (2 samples, 0.01%)</title><rect x="1188.7" y="533" width="0.1" height="15.0" fill="rgb(227,102,22)" rx="2" ry="2" />
<text x="1191.70" y="543.5" ></text>
</g>
<g >
<title>tsg_scan_nesting_addr (5 samples, 0.02%)</title><rect x="887.7" y="565" width="0.3" height="15.0" fill="rgb(226,63,38)" rx="2" ry="2" />
<text x="890.70" y="575.5" ></text>
</g>
<g >
<title>_IO_vsnprintf (2 samples, 0.01%)</title><rect x="888.1" y="453" width="0.1" height="15.0" fill="rgb(245,72,15)" rx="2" ry="2" />
<text x="891.05" y="463.5" ></text>
</g>
<g >
<title>sapp_mem_malloc (109 samples, 0.54%)</title><rect x="1054.6" y="517" width="6.4" height="15.0" fill="rgb(234,176,32)" rx="2" ry="2" />
<text x="1057.57" y="527.5" ></text>
</g>
<g >
<title>stream_process_ipv4 (4 samples, 0.02%)</title><rect x="981.8" y="597" width="0.3" height="15.0" fill="rgb(223,71,39)" rx="2" ry="2" />
<text x="984.84" y="607.5" ></text>
</g>
<g >
<title>stream_process (7 samples, 0.03%)</title><rect x="1176.6" y="613" width="0.4" height="15.0" fill="rgb(236,144,12)" rx="2" ry="2" />
<text x="1179.61" y="623.5" ></text>
</g>
<g >
<title>del_stream_by_time (2 samples, 0.01%)</title><rect x="786.0" y="629" width="0.1" height="15.0" fill="rgb(225,226,10)" rx="2" ry="2" />
<text x="788.95" y="639.5" ></text>
</g>
<g >
<title>CIPv4Match::search_rule (5 samples, 0.02%)</title><rect x="850.4" y="677" width="0.3" height="15.0" fill="rgb(226,216,20)" rx="2" ry="2" />
<text x="853.36" y="687.5" ></text>
</g>
<g >
<title>stream_bridge_sync_data_put (2 samples, 0.01%)</title><rect x="962.4" y="485" width="0.1" height="15.0" fill="rgb(246,33,38)" rx="2" ry="2" />
<text x="965.38" y="495.5" ></text>
</g>
<g >
<title>tsg_get_subscribe_id (4 samples, 0.02%)</title><rect x="1146.1" y="501" width="0.3" height="15.0" fill="rgb(246,59,45)" rx="2" ry="2" />
<text x="1149.11" y="511.5" ></text>
</g>
<g >
<title>TSG_MASTER_UDP_ENTRY (5 samples, 0.02%)</title><rect x="887.7" y="597" width="0.3" height="15.0" fill="rgb(225,206,39)" rx="2" ry="2" />
<text x="890.70" y="607.5" ></text>
</g>
<g >
<title>ssl_analyseHandShake (9 samples, 0.04%)</title><rect x="881.0" y="453" width="0.5" height="15.0" fill="rgb(254,127,21)" rx="2" ry="2" />
<text x="883.98" y="463.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (15 samples, 0.07%)</title><rect x="932.2" y="453" width="0.9" height="15.0" fill="rgb(211,2,5)" rx="2" ry="2" />
<text x="935.18" y="463.5" ></text>
</g>
<g >
<title>_int_malloc (6 samples, 0.03%)</title><rect x="860.0" y="677" width="0.3" height="15.0" fill="rgb(230,42,40)" rx="2" ry="2" />
<text x="862.98" y="687.5" ></text>
</g>
<g >
<title>__memcmp_sse4_1 (4 samples, 0.02%)</title><rect x="1132.6" y="581" width="0.2" height="15.0" fill="rgb(218,71,19)" rx="2" ry="2" />
<text x="1135.61" y="591.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="1109.4" y="469" width="0.1" height="15.0" fill="rgb(212,168,42)" rx="2" ry="2" />
<text x="1112.43" y="479.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (4 samples, 0.02%)</title><rect x="888.4" y="133" width="0.2" height="15.0" fill="rgb(233,167,18)" rx="2" ry="2" />
<text x="891.41" y="143.5" ></text>
</g>
<g >
<title>vfprintf (3 samples, 0.01%)</title><rect x="893.9" y="485" width="0.2" height="15.0" fill="rgb(239,112,28)" rx="2" ry="2" />
<text x="896.89" y="495.5" ></text>
</g>
<g >
<title>__snprintf (7 samples, 0.03%)</title><rect x="1187.1" y="725" width="0.4" height="15.0" fill="rgb(221,63,18)" rx="2" ry="2" />
<text x="1190.05" y="735.5" ></text>
</g>
<g >
<title>stream_process (6 samples, 0.03%)</title><rect x="1176.3" y="581" width="0.3" height="15.0" fill="rgb(211,135,5)" rx="2" ry="2" />
<text x="1179.26" y="591.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (3 samples, 0.01%)</title><rect x="1175.9" y="565" width="0.2" height="15.0" fill="rgb(242,221,5)" rx="2" ry="2" />
<text x="1178.90" y="575.5" ></text>
</g>
<g >
<title>tsg_scan_nesting_addr (5 samples, 0.02%)</title><rect x="885.2" y="501" width="0.3" height="15.0" fill="rgb(249,130,43)" rx="2" ry="2" />
<text x="888.16" y="511.5" ></text>
</g>
<g >
<title>stream_process_ipv4 (3 samples, 0.01%)</title><rect x="958.2" y="549" width="0.2" height="15.0" fill="rgb(233,143,27)" rx="2" ry="2" />
<text x="961.19" y="559.5" ></text>
</g>
<g >
<title>APP_SKETCH_UDP_PLUG_ENTRY (11 samples, 0.05%)</title><rect x="951.9" y="501" width="0.6" height="15.0" fill="rgb(234,92,11)" rx="2" ry="2" />
<text x="954.88" y="511.5" ></text>
</g>
<g >
<title>do_wp_page (20 samples, 0.10%)</title><rect x="1021.2" y="341" width="1.2" height="15.0" fill="rgb(226,173,1)" rx="2" ry="2" />
<text x="1024.18" y="351.5" ></text>
</g>
<g >
<title>tsg_scan_nesting_addr (3 samples, 0.01%)</title><rect x="892.5" y="501" width="0.2" height="15.0" fill="rgb(213,94,50)" rx="2" ry="2" />
<text x="895.48" y="511.5" ></text>
</g>
<g >
<title>__memcmp_sse4_1 (5 samples, 0.02%)</title><rect x="956.4" y="421" width="0.3" height="15.0" fill="rgb(212,177,50)" rx="2" ry="2" />
<text x="959.36" y="431.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (456 samples, 2.28%)</title><rect x="1023.2" y="469" width="26.9" height="15.0" fill="rgb(246,93,51)" rx="2" ry="2" />
<text x="1026.19" y="479.5" >p..</text>
</g>
<g >
<title>ASN1_item_ex_i2d (6 samples, 0.03%)</title><rect x="889.3" y="213" width="0.3" height="15.0" fill="rgb(229,113,51)" rx="2" ry="2" />
<text x="892.29" y="223.5" ></text>
</g>
<g >
<title>http_analyseACompleteRegion (2 samples, 0.01%)</title><rect x="933.8" y="421" width="0.1" height="15.0" fill="rgb(248,214,42)" rx="2" ry="2" />
<text x="936.83" y="431.5" ></text>
</g>
<g >
<title>[tsg_master.so] (7 samples, 0.03%)</title><rect x="881.5" y="501" width="0.4" height="15.0" fill="rgb(247,4,5)" rx="2" ry="2" />
<text x="884.51" y="511.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (6 samples, 0.03%)</title><rect x="958.9" y="501" width="0.3" height="15.0" fill="rgb(218,12,52)" rx="2" ry="2" />
<text x="961.90" y="511.5" ></text>
</g>
<g >
<title>stream_process_tcp (51 samples, 0.25%)</title><rect x="882.5" y="565" width="3.0" height="15.0" fill="rgb(252,6,15)" rx="2" ry="2" />
<text x="885.45" y="575.5" ></text>
</g>
<g >
<title>CIPv6Match::SearchIP (19 samples, 0.09%)</title><rect x="879.8" y="725" width="1.1" height="15.0" fill="rgb(211,47,45)" rx="2" ry="2" />
<text x="882.80" y="735.5" ></text>
</g>
<g >
<title>tsg_scan_nesting_addr (3 samples, 0.01%)</title><rect x="885.8" y="517" width="0.2" height="15.0" fill="rgb(233,118,26)" rx="2" ry="2" />
<text x="888.81" y="527.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (14 samples, 0.07%)</title><rect x="883.3" y="277" width="0.9" height="15.0" fill="rgb(220,55,23)" rx="2" ry="2" />
<text x="886.34" y="287.5" ></text>
</g>
<g >
<title>[sapp] (17 samples, 0.08%)</title><rect x="881.0" y="581" width="1.0" height="15.0" fill="rgb(246,207,14)" rx="2" ry="2" />
<text x="883.98" y="591.5" ></text>
</g>
<g >
<title>[fw_ssl_plug.so] (3 samples, 0.01%)</title><rect x="884.5" y="341" width="0.2" height="15.0" fill="rgb(220,37,34)" rx="2" ry="2" />
<text x="887.52" y="351.5" ></text>
</g>
<g >
<title>update_polling_inject_context (3 samples, 0.01%)</title><rect x="1153.7" y="597" width="0.1" height="15.0" fill="rgb(235,216,42)" rx="2" ry="2" />
<text x="1156.67" y="607.5" ></text>
</g>
<g >
<title>tsg_get_ip_location (2 samples, 0.01%)</title><rect x="881.7" y="469" width="0.1" height="15.0" fill="rgb(220,71,3)" rx="2" ry="2" />
<text x="884.68" y="479.5" ></text>
</g>
<g >
<title>[sapp] (11 samples, 0.05%)</title><rect x="1174.4" y="645" width="0.7" height="15.0" fill="rgb(218,20,46)" rx="2" ry="2" />
<text x="1177.43" y="655.5" ></text>
</g>
<g >
<title>__do_page_fault (21 samples, 0.10%)</title><rect x="1021.1" y="373" width="1.3" height="15.0" fill="rgb(218,198,41)" rx="2" ry="2" />
<text x="1024.13" y="383.5" ></text>
</g>
<g >
<title>http_findAndDoWithEntity (3 samples, 0.01%)</title><rect x="894.2" y="629" width="0.2" height="15.0" fill="rgb(231,178,13)" rx="2" ry="2" />
<text x="897.25" y="639.5" ></text>
</g>
<g >
<title>heap_trim (5 samples, 0.02%)</title><rect x="275.1" y="709" width="0.3" height="15.0" fill="rgb(222,62,44)" rx="2" ry="2" />
<text x="278.14" y="719.5" ></text>
</g>
<g >
<title>stream_process_udp (13 samples, 0.06%)</title><rect x="1118.9" y="549" width="0.7" height="15.0" fill="rgb(244,163,17)" rx="2" ry="2" />
<text x="1121.86" y="559.5" ></text>
</g>
<g >
<title>FS_operate (3 samples, 0.01%)</title><rect x="1115.6" y="453" width="0.1" height="15.0" fill="rgb(237,41,29)" rx="2" ry="2" />
<text x="1118.56" y="463.5" ></text>
</g>
<g >
<title>stream_process_udp (9 samples, 0.04%)</title><rect x="895.0" y="661" width="0.5" height="15.0" fill="rgb(205,72,43)" rx="2" ry="2" />
<text x="897.96" y="671.5" ></text>
</g>
<g >
<title>system_capture_packet_entry (26 samples, 0.13%)</title><rect x="1106.1" y="469" width="1.5" height="15.0" fill="rgb(226,22,27)" rx="2" ry="2" />
<text x="1109.06" y="479.5" ></text>
</g>
<g >
<title>CInt128IntervalIndex::Find_interval (2 samples, 0.01%)</title><rect x="961.4" y="373" width="0.2" height="15.0" fill="rgb(215,99,7)" rx="2" ry="2" />
<text x="964.43" y="383.5" ></text>
</g>
<g >
<title>tsg_ddos_sketch_udp_entry (14 samples, 0.07%)</title><rect x="956.8" y="501" width="0.8" height="15.0" fill="rgb(240,183,51)" rx="2" ry="2" />
<text x="959.77" y="511.5" ></text>
</g>
<g >
<title>stream_process_udp (104 samples, 0.52%)</title><rect x="951.5" y="549" width="6.2" height="15.0" fill="rgb(240,171,32)" rx="2" ry="2" />
<text x="954.52" y="559.5" ></text>
</g>
<g >
<title>stream_process_udp (278 samples, 1.39%)</title><rect x="965.1" y="597" width="16.4" height="15.0" fill="rgb(250,138,34)" rx="2" ry="2" />
<text x="968.15" y="607.5" ></text>
</g>
<g >
<title>swapper (19 samples, 0.09%)</title><rect x="1188.9" y="757" width="1.1" height="15.0" fill="rgb(224,37,9)" rx="2" ry="2" />
<text x="1191.88" y="767.5" ></text>
</g>
<g >
<title>stream_process_tcp_allpkt (2 samples, 0.01%)</title><rect x="885.5" y="565" width="0.1" height="15.0" fill="rgb(232,148,20)" rx="2" ry="2" />
<text x="888.46" y="575.5" ></text>
</g>
<g >
<title>http_deleteEmptyRow (311 samples, 1.55%)</title><rect x="1063.1" y="437" width="18.4" height="15.0" fill="rgb(227,89,8)" rx="2" ry="2" />
<text x="1066.12" y="447.5" ></text>
</g>
<g >
<title>asn1_ex_c2i (3 samples, 0.01%)</title><rect x="883.0" y="101" width="0.2" height="15.0" fill="rgb(217,49,40)" rx="2" ry="2" />
<text x="886.04" y="111.5" ></text>
</g>
<g >
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="882.7" y="389" width="0.2" height="15.0" fill="rgb(238,22,28)" rx="2" ry="2" />
<text x="885.75" y="399.5" ></text>
</g>
<g >
<title>gtp_entry (15 samples, 0.07%)</title><rect x="1173.5" y="725" width="0.9" height="15.0" fill="rgb(210,103,34)" rx="2" ry="2" />
<text x="1176.54" y="735.5" ></text>
</g>
<g >
<title>stream_addr_list_ntop_outward (4 samples, 0.02%)</title><rect x="895.7" y="597" width="0.3" height="15.0" fill="rgb(207,207,52)" rx="2" ry="2" />
<text x="898.72" y="607.5" ></text>
</g>
<g >
<title>http_doWithEntity (5 samples, 0.02%)</title><rect x="933.4" y="421" width="0.3" height="15.0" fill="rgb(218,75,14)" rx="2" ry="2" />
<text x="936.41" y="431.5" ></text>
</g>
<g >
<title>vfprintf (4 samples, 0.02%)</title><rect x="1186.2" y="661" width="0.3" height="15.0" fill="rgb(251,17,24)" rx="2" ry="2" />
<text x="1189.22" y="671.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.5] (2 samples, 0.01%)</title><rect x="810.5" y="725" width="0.1" height="15.0" fill="rgb(246,224,1)" rx="2" ry="2" />
<text x="813.49" y="735.5" ></text>
</g>
<g >
<title>vfprintf (3 samples, 0.01%)</title><rect x="895.8" y="501" width="0.2" height="15.0" fill="rgb(228,188,45)" rx="2" ry="2" />
<text x="898.78" y="511.5" ></text>
</g>
<g >
<title>http_callPlugin (2 samples, 0.01%)</title><rect x="1177.9" y="565" width="0.1" height="15.0" fill="rgb(238,224,12)" rx="2" ry="2" />
<text x="1180.91" y="575.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (5 samples, 0.02%)</title><rect x="1187.6" y="357" width="0.3" height="15.0" fill="rgb(206,214,18)" rx="2" ry="2" />
<text x="1190.58" y="367.5" ></text>
</g>
<g >
<title>free (2 samples, 0.01%)</title><rect x="968.3" y="501" width="0.2" height="15.0" fill="rgb(218,77,13)" rx="2" ry="2" />
<text x="971.33" y="511.5" ></text>
</g>
<g >
<title>dealipv4udppkt (20 samples, 0.10%)</title><rect x="881.0" y="645" width="1.2" height="15.0" fill="rgb(251,213,27)" rx="2" ry="2" />
<text x="883.98" y="655.5" ></text>
</g>
<g >
<title>[sapp] (19 samples, 0.09%)</title><rect x="1187.5" y="693" width="1.1" height="15.0" fill="rgb(223,167,36)" rx="2" ry="2" />
<text x="1190.52" y="703.5" ></text>
</g>
<g >
<title>grab_mid (5 samples, 0.02%)</title><rect x="786.1" y="549" width="0.3" height="15.0" fill="rgb(210,221,12)" rx="2" ry="2" />
<text x="789.13" y="559.5" ></text>
</g>
<g >
<title>Maat_scan_proto_addr (3 samples, 0.01%)</title><rect x="1141.8" y="517" width="0.1" height="15.0" fill="rgb(236,122,20)" rx="2" ry="2" />
<text x="1144.75" y="527.5" ></text>
</g>
<g >
<title>[sapp] (12 samples, 0.06%)</title><rect x="958.6" y="549" width="0.7" height="15.0" fill="rgb(248,17,12)" rx="2" ry="2" />
<text x="961.60" y="559.5" ></text>
</g>
<g >
<title>stream_process (33 samples, 0.16%)</title><rect x="783.9" y="597" width="2.0" height="15.0" fill="rgb(254,147,30)" rx="2" ry="2" />
<text x="786.95" y="607.5" ></text>
</g>
<g >
<title>CNaiveIntervalIndex::Find (7 samples, 0.03%)</title><rect x="878.9" y="709" width="0.4" height="15.0" fill="rgb(210,187,32)" rx="2" ry="2" />
<text x="881.91" y="719.5" ></text>
</g>
<g >
<title>http_analyseHttpConnection (6 samples, 0.03%)</title><rect x="894.2" y="645" width="0.3" height="15.0" fill="rgb(233,9,54)" rx="2" ry="2" />
<text x="897.19" y="655.5" ></text>
</g>
<g >
<title>fn_pGetSSLInfo (24 samples, 0.12%)</title><rect x="882.9" y="437" width="1.4" height="15.0" fill="rgb(239,96,26)" rx="2" ry="2" />
<text x="885.86" y="447.5" ></text>
</g>
<g >
<title>copy_ipport_union_addr (3 samples, 0.01%)</title><rect x="931.0" y="517" width="0.2" height="15.0" fill="rgb(242,176,4)" rx="2" ry="2" />
<text x="934.00" y="527.5" ></text>
</g>
<g >
<title>Maat_ip_plugin_get_EX_data (2 samples, 0.01%)</title><rect x="940.2" y="421" width="0.1" height="15.0" fill="rgb(244,52,30)" rx="2" ry="2" />
<text x="943.20" y="431.5" ></text>
</g>
<g >
<title>TSG_MASTER_TCPALL_ENTRY (3 samples, 0.01%)</title><rect x="948.5" y="485" width="0.2" height="15.0" fill="rgb(213,225,29)" rx="2" ry="2" />
<text x="951.51" y="495.5" ></text>
</g>
<g >
<title>realloc (3 samples, 0.01%)</title><rect x="871.2" y="693" width="0.2" height="15.0" fill="rgb(251,31,24)" rx="2" ry="2" />
<text x="874.18" y="703.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (15 samples, 0.07%)</title><rect x="1173.5" y="613" width="0.9" height="15.0" fill="rgb(212,19,48)" rx="2" ry="2" />
<text x="1176.54" y="623.5" ></text>
</g>
<g >
<title>http_findAndDoWithRegion (2 samples, 0.01%)</title><rect x="933.8" y="437" width="0.1" height="15.0" fill="rgb(231,59,6)" rx="2" ry="2" />
<text x="936.83" y="447.5" ></text>
</g>
<g >
<title>dealipv4tcppkt (82 samples, 0.41%)</title><rect x="888.0" y="613" width="4.8" height="15.0" fill="rgb(227,74,41)" rx="2" ry="2" />
<text x="891.00" y="623.5" ></text>
</g>
<g >
<title>Maat_clean_status (4 samples, 0.02%)</title><rect x="1121.0" y="517" width="0.2" height="15.0" fill="rgb(212,120,6)" rx="2" ry="2" />
<text x="1123.99" y="527.5" ></text>
</g>
<g >
<title>tsg_scan_ip_location (2 samples, 0.01%)</title><rect x="887.9" y="549" width="0.1" height="15.0" fill="rgb(222,159,44)" rx="2" ry="2" />
<text x="890.88" y="559.5" ></text>
</g>
<g >
<title>X509_NAME_oneline (2 samples, 0.01%)</title><rect x="934.4" y="325" width="0.1" height="15.0" fill="rgb(253,155,39)" rx="2" ry="2" />
<text x="937.36" y="335.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (2 samples, 0.01%)</title><rect x="1118.1" y="501" width="0.1" height="15.0" fill="rgb(209,73,42)" rx="2" ry="2" />
<text x="1121.10" y="511.5" ></text>
</g>
<g >
<title>MV_Sketch_update (3 samples, 0.01%)</title><rect x="941.0" y="421" width="0.1" height="15.0" fill="rgb(219,17,18)" rx="2" ry="2" />
<text x="943.96" y="431.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.01%)</title><rect x="943.3" y="469" width="0.1" height="15.0" fill="rgb(252,69,24)" rx="2" ry="2" />
<text x="946.26" y="479.5" ></text>
</g>
<g >
<title>ssl_AnalyseCertificate (2 samples, 0.01%)</title><rect x="1181.6" y="517" width="0.1" height="15.0" fill="rgb(242,172,42)" rx="2" ry="2" />
<text x="1184.62" y="527.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (6 samples, 0.03%)</title><rect x="888.3" y="213" width="0.3" height="15.0" fill="rgb(246,190,42)" rx="2" ry="2" />
<text x="891.29" y="223.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (6 samples, 0.03%)</title><rect x="888.3" y="277" width="0.3" height="15.0" fill="rgb(217,42,6)" rx="2" ry="2" />
<text x="891.29" y="287.5" ></text>
</g>
<g >
<title>sapp_dup_pkt_identify_tcp (109 samples, 0.54%)</title><rect x="1095.9" y="533" width="6.4" height="15.0" fill="rgb(231,151,21)" rx="2" ry="2" />
<text x="1098.92" y="543.5" ></text>
</g>
<g >
<title>tsg_scan_nesting_addr (2 samples, 0.01%)</title><rect x="890.6" y="357" width="0.2" height="15.0" fill="rgb(253,31,17)" rx="2" ry="2" />
<text x="893.65" y="367.5" ></text>
</g>
<g >
<title>free_heap_stream_info (3 samples, 0.01%)</title><rect x="943.3" y="485" width="0.1" height="15.0" fill="rgb(207,133,26)" rx="2" ry="2" />
<text x="946.26" y="495.5" ></text>
</g>
<g >
<title>tsg_get_ip_asn (2 samples, 0.01%)</title><rect x="954.2" y="453" width="0.1" height="15.0" fill="rgb(250,67,38)" rx="2" ry="2" />
<text x="957.18" y="463.5" ></text>
</g>
<g >
<title>ipv4_entry (1,980 samples, 9.90%)</title><rect x="1001.2" y="581" width="116.8" height="15.0" fill="rgb(217,50,45)" rx="2" ry="2" />
<text x="1004.19" y="591.5" >ipv4_entry</text>
</g>
<g >
<title>X509V3_EXT_d2i (3 samples, 0.01%)</title><rect x="1083.2" y="373" width="0.2" height="15.0" fill="rgb(230,184,48)" rx="2" ry="2" />
<text x="1086.24" y="383.5" ></text>
</g>
<g >
<title>vfprintf (2 samples, 0.01%)</title><rect x="884.2" y="389" width="0.1" height="15.0" fill="rgb(242,12,7)" rx="2" ry="2" />
<text x="887.16" y="399.5" ></text>
</g>
<g >
<title>stream_process_tcp (37 samples, 0.18%)</title><rect x="781.8" y="597" width="2.1" height="15.0" fill="rgb(231,183,1)" rx="2" ry="2" />
<text x="784.76" y="607.5" ></text>
</g>
<g >
<title>malloc (7 samples, 0.03%)</title><rect x="952.1" y="469" width="0.4" height="15.0" fill="rgb(244,179,0)" rx="2" ry="2" />
<text x="955.05" y="479.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="810.9" y="677" width="0.1" height="15.0" fill="rgb(212,47,9)" rx="2" ry="2" />
<text x="813.90" y="687.5" ></text>
</g>
<g >
<title>[sapp] (4 samples, 0.02%)</title><rect x="895.7" y="565" width="0.3" height="15.0" fill="rgb(211,13,37)" rx="2" ry="2" />
<text x="898.72" y="575.5" ></text>
</g>
<g >
<title>checkstreamorder (70 samples, 0.35%)</title><rect x="1090.6" y="517" width="4.1" height="15.0" fill="rgb(223,226,52)" rx="2" ry="2" />
<text x="1093.61" y="527.5" ></text>
</g>
<g >
<title>sock_sendmsg (12 samples, 0.06%)</title><rect x="896.0" y="661" width="0.7" height="15.0" fill="rgb(230,57,7)" rx="2" ry="2" />
<text x="899.02" y="671.5" ></text>
</g>
<g >
<title>stream_process_ipv6 (2 samples, 0.01%)</title><rect x="1153.8" y="613" width="0.2" height="15.0" fill="rgb(215,90,38)" rx="2" ry="2" />
<text x="1156.84" y="623.5" ></text>
</g>
<g >
<title>dealipv4udppkt (94 samples, 0.47%)</title><rect x="882.5" y="661" width="5.5" height="15.0" fill="rgb(216,0,4)" rx="2" ry="2" />
<text x="885.45" y="671.5" ></text>
</g>
<g >
<title>PROT_PROCESS (8 samples, 0.04%)</title><rect x="884.3" y="405" width="0.5" height="15.0" fill="rgb(231,157,52)" rx="2" ry="2" />
<text x="887.28" y="415.5" ></text>
</g>
<g >
<title>tsg_scan_nesting_addr (2 samples, 0.01%)</title><rect x="882.0" y="501" width="0.1" height="15.0" fill="rgb(221,35,43)" rx="2" ry="2" />
<text x="884.98" y="511.5" ></text>
</g>
<g >
<title>[app_proto_identify.so] (2 samples, 0.01%)</title><rect x="959.0" y="485" width="0.1" height="15.0" fill="rgb(212,79,7)" rx="2" ry="2" />
<text x="962.01" y="495.5" ></text>
</g>
<g >
<title>CRefCountManager::inc_reference_count (28 samples, 0.14%)</title><rect x="851.4" y="677" width="1.6" height="15.0" fill="rgb(209,15,39)" rx="2" ry="2" />
<text x="854.37" y="687.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (5 samples, 0.02%)</title><rect x="781.4" y="581" width="0.2" height="15.0" fill="rgb(232,155,43)" rx="2" ry="2" />
<text x="784.35" y="591.5" ></text>
</g>
<g >
<title>stream_process_udp (6 samples, 0.03%)</title><rect x="1121.4" y="549" width="0.4" height="15.0" fill="rgb(220,188,42)" rx="2" ry="2" />
<text x="1124.40" y="559.5" ></text>
</g>
<g >
<title>printaddr (6 samples, 0.03%)</title><rect x="1186.2" y="725" width="0.3" height="15.0" fill="rgb(230,180,15)" rx="2" ry="2" />
<text x="1189.17" y="735.5" ></text>
</g>
<g >
<title>ipv4_entry (15 samples, 0.07%)</title><rect x="1173.5" y="709" width="0.9" height="15.0" fill="rgb(207,104,43)" rx="2" ry="2" />
<text x="1176.54" y="719.5" ></text>
</g>
<g >
<title>[libprotoident.so] (164 samples, 0.82%)</title><rect x="971.4" y="517" width="9.7" height="15.0" fill="rgb(226,45,11)" rx="2" ry="2" />
<text x="974.40" y="527.5" ></text>
</g>
<g >
<title>stream_process (6 samples, 0.03%)</title><rect x="1121.4" y="533" width="0.4" height="15.0" fill="rgb(205,178,54)" rx="2" ry="2" />
<text x="1124.40" y="543.5" ></text>
</g>
<g >
<title>CAPTURE_UDP_PACKET_ENTRY (5 samples, 0.02%)</title><rect x="952.5" y="501" width="0.3" height="15.0" fill="rgb(249,79,39)" rx="2" ry="2" />
<text x="955.53" y="511.5" ></text>
</g>
<g >
<title>malloc (3 samples, 0.01%)</title><rect x="1083.9" y="293" width="0.2" height="15.0" fill="rgb(223,81,29)" rx="2" ry="2" />
<text x="1086.89" y="303.5" ></text>
</g>
<g >
<title>[sapp] (4 samples, 0.02%)</title><rect x="1175.2" y="629" width="0.2" height="15.0" fill="rgb(227,184,24)" rx="2" ry="2" />
<text x="1178.19" y="639.5" ></text>
</g>
<g >
<title>FS_operate (2 samples, 0.01%)</title><rect x="1115.0" y="437" width="0.1" height="15.0" fill="rgb(225,27,15)" rx="2" ry="2" />
<text x="1117.97" y="447.5" ></text>
</g>
<g >
<title>[tsg_ddos_sketch.so] (14 samples, 0.07%)</title><rect x="956.8" y="485" width="0.8" height="15.0" fill="rgb(241,23,29)" rx="2" ry="2" />
<text x="959.77" y="495.5" ></text>
</g>
<g >
<title>tsg_scan_app_properties_policy (3 samples, 0.01%)</title><rect x="892.1" y="485" width="0.2" height="15.0" fill="rgb(219,46,11)" rx="2" ry="2" />
<text x="895.12" y="495.5" ></text>
</g>
<g >
<title>ipv4_entry (8 samples, 0.04%)</title><rect x="1187.5" y="597" width="0.5" height="15.0" fill="rgb(224,16,10)" rx="2" ry="2" />
<text x="1190.52" y="607.5" ></text>
</g>
<g >
<title>ssl_analyseSsl (3 samples, 0.01%)</title><rect x="1181.6" y="549" width="0.2" height="15.0" fill="rgb(226,80,7)" rx="2" ry="2" />
<text x="1184.62" y="559.5" ></text>
</g>
<g >
<title>scaling_bloom_check (5 samples, 0.02%)</title><rect x="951.1" y="533" width="0.2" height="15.0" fill="rgb(227,57,29)" rx="2" ry="2" />
<text x="954.05" y="543.5" ></text>
</g>
<g >
<title>CInt128IntervalIndex::Find_interval (2 samples, 0.01%)</title><rect x="1145.8" y="421" width="0.1" height="15.0" fill="rgb(207,212,31)" rx="2" ry="2" />
<text x="1148.82" y="431.5" ></text>
</g>
<g >
<title>ipv4_entry (14 samples, 0.07%)</title><rect x="1178.1" y="693" width="0.9" height="15.0" fill="rgb(208,154,16)" rx="2" ry="2" />
<text x="1181.14" y="703.5" ></text>
</g>
<g >
<title>TSG_MASTER_TCPALL_ENTRY (13 samples, 0.06%)</title><rect x="1107.6" y="485" width="0.8" height="15.0" fill="rgb(215,227,44)" rx="2" ry="2" />
<text x="1110.60" y="495.5" ></text>
</g>
<g >
<title>[sapp] (3 samples, 0.01%)</title><rect x="882.0" y="597" width="0.2" height="15.0" fill="rgb(239,228,23)" rx="2" ry="2" />
<text x="884.98" y="607.5" ></text>
</g>
<g >
<title>udp_free_stream (22 samples, 0.11%)</title><rect x="963.5" y="565" width="1.3" height="15.0" fill="rgb(212,70,4)" rx="2" ry="2" />
<text x="966.50" y="575.5" ></text>
</g>
<g >
<title>stream_process (16 samples, 0.08%)</title><rect x="881.0" y="533" width="0.9" height="15.0" fill="rgb(227,28,46)" rx="2" ry="2" />
<text x="883.98" y="543.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (11 samples, 0.05%)</title><rect x="934.4" y="357" width="0.6" height="15.0" fill="rgb(248,77,46)" rx="2" ry="2" />
<text x="937.36" y="367.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (5 samples, 0.02%)</title><rect x="963.6" y="533" width="0.3" height="15.0" fill="rgb(253,42,7)" rx="2" ry="2" />
<text x="966.61" y="543.5" ></text>
</g>
<g >
<title>plugin_process_pending (23 samples, 0.11%)</title><rect x="1184.2" y="693" width="1.4" height="15.0" fill="rgb(216,143,31)" rx="2" ry="2" />
<text x="1187.22" y="703.5" ></text>
</g>
<g >
<title>asn1_ex_c2i (2 samples, 0.01%)</title><rect x="888.5" y="101" width="0.1" height="15.0" fill="rgb(246,105,16)" rx="2" ry="2" />
<text x="891.53" y="111.5" ></text>
</g>
<g >
<title>APP_SKETCH_TCP_PLUG_ENTRY (15 samples, 0.07%)</title><rect x="1061.9" y="469" width="0.9" height="15.0" fill="rgb(238,167,35)" rx="2" ry="2" />
<text x="1064.94" y="479.5" ></text>
</g>
<g >
<title>CKRF::SearchMem (3,984 samples, 19.92%)</title><rect x="544.9" y="709" width="235.0" height="15.0" fill="rgb(253,201,32)" rx="2" ry="2" />
<text x="547.88" y="719.5" >CKRF::SearchMem</text>
</g>
<g >
<title>ssl_AnalyseCertificate (32 samples, 0.16%)</title><rect x="882.9" y="453" width="1.9" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text x="885.86" y="463.5" ></text>
</g>
<g >
<title>ASN1_item_d2i (4 samples, 0.02%)</title><rect x="1188.1" y="389" width="0.2" height="15.0" fill="rgb(222,125,25)" rx="2" ry="2" />
<text x="1191.05" y="399.5" ></text>
</g>
<g >
<title>tsg_scan_nesting_addr (4 samples, 0.02%)</title><rect x="1085.9" y="453" width="0.2" height="15.0" fill="rgb(218,123,14)" rx="2" ry="2" />
<text x="1088.89" y="463.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (4 samples, 0.02%)</title><rect x="885.6" y="565" width="0.2" height="15.0" fill="rgb(235,87,22)" rx="2" ry="2" />
<text x="888.58" y="575.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="959.8" y="501" width="0.2" height="15.0" fill="rgb(230,187,44)" rx="2" ry="2" />
<text x="962.84" y="511.5" ></text>
</g>
<g >
<title>CBoolExprMatch::search_expr (48 samples, 0.24%)</title><rect x="854.4" y="661" width="2.9" height="15.0" fill="rgb(252,117,25)" rx="2" ry="2" />
<text x="857.43" y="671.5" ></text>
</g>
<g >
<title>bool_matcher_match (2 samples, 0.01%)</title><rect x="790.8" y="693" width="0.2" height="15.0" fill="rgb(244,81,37)" rx="2" ry="2" />
<text x="793.85" y="703.5" ></text>
</g>
<g >
<title>CAhoCorasick::SearchMem (4,524 samples, 22.61%)</title><rect x="278.0" y="709" width="266.9" height="15.0" fill="rgb(207,182,25)" rx="2" ry="2" />
<text x="281.03" y="719.5" >CAhoCorasick::SearchMem</text>
</g>
<g >
<title>Maat_ip_plugin_get_EX_data (5 samples, 0.02%)</title><rect x="1086.6" y="421" width="0.3" height="15.0" fill="rgb(210,44,1)" rx="2" ry="2" />
<text x="1089.60" y="431.5" ></text>
</g>
<g >
<title>ssl_doWithServerHello (3 samples, 0.01%)</title><rect x="1083.9" y="405" width="0.2" height="15.0" fill="rgb(237,132,27)" rx="2" ry="2" />
<text x="1086.89" y="415.5" ></text>
</g>
<g >
<title>CompareRule (4 samples, 0.02%)</title><rect x="879.4" y="709" width="0.2" height="15.0" fill="rgb(242,192,32)" rx="2" ry="2" />
<text x="882.38" y="719.5" ></text>
</g>
<g >
<title>checkstreamorder (10 samples, 0.05%)</title><rect x="950.2" y="533" width="0.6" height="15.0" fill="rgb(250,149,3)" rx="2" ry="2" />
<text x="953.22" y="543.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (8 samples, 0.04%)</title><rect x="881.0" y="373" width="0.4" height="15.0" fill="rgb(206,153,1)" rx="2" ry="2" />
<text x="883.98" y="383.5" ></text>
</g>
<g >
<title>set_transport_addr (10 samples, 0.05%)</title><rect x="1102.3" y="533" width="0.6" height="15.0" fill="rgb(211,149,20)" rx="2" ry="2" />
<text x="1105.35" y="543.5" ></text>
</g>
<g >
<title>_IO_vsprintf (2 samples, 0.01%)</title><rect x="1188.7" y="517" width="0.1" height="15.0" fill="rgb(226,149,19)" rx="2" ry="2" />
<text x="1191.70" y="527.5" ></text>
</g>
<g >
<title>[app_proto_identify.so] (5 samples, 0.02%)</title><rect x="1119.2" y="501" width="0.3" height="15.0" fill="rgb(228,187,20)" rx="2" ry="2" />
<text x="1122.22" y="511.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (2 samples, 0.01%)</title><rect x="1177.8" y="629" width="0.1" height="15.0" fill="rgb(226,211,17)" rx="2" ry="2" />
<text x="1180.79" y="639.5" ></text>
</g>
<g >
<title>http_callPluginField (2 samples, 0.01%)</title><rect x="1177.9" y="549" width="0.1" height="15.0" fill="rgb(207,174,4)" rx="2" ry="2" />
<text x="1180.91" y="559.5" ></text>
</g>
<g >
<title>[libprotoident.so] (33 samples, 0.16%)</title><rect x="978.1" y="485" width="2.0" height="15.0" fill="rgb(223,161,11)" rx="2" ry="2" />
<text x="981.12" y="495.5" ></text>
</g>
<g >
<title>Maat_table_runtime_perf_stat@plt (2 samples, 0.01%)</title><rect x="820.0" y="725" width="0.1" height="15.0" fill="rgb(250,26,43)" rx="2" ry="2" />
<text x="822.99" y="735.5" ></text>
</g>
<g >
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="893.9" y="581" width="0.2" height="15.0" fill="rgb(250,187,48)" rx="2" ry="2" />
<text x="896.89" y="591.5" ></text>
</g>
<g >
<title>SSL_ENTRY (2 samples, 0.01%)</title><rect x="930.8" y="453" width="0.1" height="15.0" fill="rgb(243,10,12)" rx="2" ry="2" />
<text x="933.82" y="463.5" ></text>
</g>
<g >
<title>_IO_vsprintf (2 samples, 0.01%)</title><rect x="894.7" y="517" width="0.1" height="15.0" fill="rgb(209,193,47)" rx="2" ry="2" />
<text x="897.72" y="527.5" ></text>
</g>
<g >
<title>lpi_guess_protocol (16 samples, 0.08%)</title><rect x="1113.7" y="485" width="1.0" height="15.0" fill="rgb(226,55,5)" rx="2" ry="2" />
<text x="1116.73" y="495.5" ></text>
</g>
<g >
<title>TSG_MASTER_TCPALL_ENTRY (3 samples, 0.01%)</title><rect x="939.7" y="469" width="0.1" height="15.0" fill="rgb(234,129,16)" rx="2" ry="2" />
<text x="942.67" y="479.5" ></text>
</g>
<g >
<title>gtp_entry (85 samples, 0.42%)</title><rect x="888.0" y="645" width="5.0" height="15.0" fill="rgb(216,134,42)" rx="2" ry="2" />
<text x="891.00" y="655.5" ></text>
</g>
<g >
<title>stream_bridge_sync_data_put (3 samples, 0.01%)</title><rect x="1114.7" y="485" width="0.2" height="15.0" fill="rgb(218,17,0)" rx="2" ry="2" />
<text x="1117.68" y="495.5" ></text>
</g>
<g >
<title>__clock_gettime (2 samples, 0.01%)</title><rect x="1145.5" y="517" width="0.1" height="15.0" fill="rgb(238,171,26)" rx="2" ry="2" />
<text x="1148.47" y="527.5" ></text>
</g>
<g >
<title>[tsg_ddos_sketch.so] (14 samples, 0.07%)</title><rect x="956.8" y="469" width="0.8" height="15.0" fill="rgb(212,195,31)" rx="2" ry="2" />
<text x="959.77" y="479.5" ></text>
</g>
<g >
<title>vfprintf (2 samples, 0.01%)</title><rect x="1181.6" y="373" width="0.1" height="15.0" fill="rgb(249,182,48)" rx="2" ry="2" />
<text x="1184.62" y="383.5" ></text>
</g>
<g >
<title>Maat_ip_plugin_get_EX_data (5 samples, 0.02%)</title><rect x="1145.8" y="485" width="0.3" height="15.0" fill="rgb(217,150,14)" rx="2" ry="2" />
<text x="1148.82" y="495.5" ></text>
</g>
<g >
<title>rulescan_search (17 samples, 0.08%)</title><rect x="811.6" y="725" width="1.0" height="15.0" fill="rgb(223,45,17)" rx="2" ry="2" />
<text x="814.55" y="735.5" ></text>
</g>
<g >
<title>smp_call_function_many (16 samples, 0.08%)</title><rect x="1021.4" y="261" width="1.0" height="15.0" fill="rgb(217,23,31)" rx="2" ry="2" />
<text x="1024.42" y="271.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="889.5" y="197" width="0.1" height="15.0" fill="rgb(233,46,54)" rx="2" ry="2" />
<text x="892.47" y="207.5" ></text>
</g>
<g >
<title>stream_process (28 samples, 0.14%)</title><rect x="886.3" y="629" width="1.7" height="15.0" fill="rgb(218,102,7)" rx="2" ry="2" />
<text x="889.34" y="639.5" ></text>
</g>
<g >
<title>ssl_doWithServerHello (2 samples, 0.01%)</title><rect x="890.6" y="453" width="0.2" height="15.0" fill="rgb(234,75,16)" rx="2" ry="2" />
<text x="893.65" y="463.5" ></text>
</g>
<g >
<title>sapp_mem_malloc (3 samples, 0.01%)</title><rect x="931.3" y="485" width="0.2" height="15.0" fill="rgb(216,207,25)" rx="2" ry="2" />
<text x="934.29" y="495.5" ></text>
</g>
<g >
<title>[sapp] (4 samples, 0.02%)</title><rect x="967.6" y="517" width="0.2" height="15.0" fill="rgb(231,96,41)" rx="2" ry="2" />
<text x="970.57" y="527.5" ></text>
</g>
<g >
<title>MESA_jump_layer (2 samples, 0.01%)</title><rect x="1108.2" y="469" width="0.1" height="15.0" fill="rgb(246,222,6)" rx="2" ry="2" />
<text x="1111.19" y="479.5" ></text>
</g>
<g >
<title>sapp_dup_pkt_identify_v4 (5 samples, 0.02%)</title><rect x="1096.7" y="517" width="0.3" height="15.0" fill="rgb(223,114,15)" rx="2" ry="2" />
<text x="1099.69" y="527.5" ></text>
</g>
<g >
<title>IEEE_8021_entry (112 samples, 0.56%)</title><rect x="779.9" y="741" width="6.6" height="15.0" fill="rgb(235,176,37)" rx="2" ry="2" />
<text x="782.88" y="751.5" ></text>
</g>
<g >
<title>expiry_dablooms_search (2 samples, 0.01%)</title><rect x="1111.0" y="533" width="0.1" height="15.0" fill="rgb(254,73,29)" rx="2" ry="2" />
<text x="1114.02" y="543.5" ></text>
</g>
<g >
<title>APP_SKETCH_TCP_PLUG_ENTRY (20 samples, 0.10%)</title><rect x="932.0" y="469" width="1.2" height="15.0" fill="rgb(242,168,30)" rx="2" ry="2" />
<text x="935.00" y="479.5" ></text>
</g>
<g >
<title>malloc (13 samples, 0.06%)</title><rect x="859.6" y="693" width="0.7" height="15.0" fill="rgb(237,19,32)" rx="2" ry="2" />
<text x="862.56" y="703.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="940.4" y="421" width="0.2" height="15.0" fill="rgb(249,101,48)" rx="2" ry="2" />
<text x="943.43" y="431.5" ></text>
</g>
<g >
<title>__memcmp_sse4_1 (2 samples, 0.01%)</title><rect x="1181.5" y="517" width="0.1" height="15.0" fill="rgb(247,55,7)" rx="2" ry="2" />
<text x="1184.51" y="527.5" ></text>
</g>
<g >
<title>TLD_append (2 samples, 0.01%)</title><rect x="1176.4" y="485" width="0.2" height="15.0" fill="rgb(215,227,32)" rx="2" ry="2" />
<text x="1179.43" y="495.5" ></text>
</g>
<g >
<title>[sapp] (7 samples, 0.03%)</title><rect x="1109.3" y="549" width="0.4" height="15.0" fill="rgb(222,122,30)" rx="2" ry="2" />
<text x="1112.31" y="559.5" ></text>
</g>
<g >
<title>stream_bridge_create_per_stream (2 samples, 0.01%)</title><rect x="925.5" y="581" width="0.1" height="15.0" fill="rgb(233,95,28)" rx="2" ry="2" />
<text x="928.45" y="591.5" ></text>
</g>
<g >
<title>Maat_table_get_child_id (28 samples, 0.14%)</title><rect x="824.8" y="709" width="1.6" height="15.0" fill="rgb(254,160,8)" rx="2" ry="2" />
<text x="827.76" y="719.5" ></text>
</g>
<g >
<title>[libprotoident.so] (101 samples, 0.50%)</title><rect x="1147.4" y="517" width="5.9" height="15.0" fill="rgb(241,163,14)" rx="2" ry="2" />
<text x="1150.35" y="527.5" ></text>
</g>
<g >
<title>findstreamindex (16 samples, 0.08%)</title><rect x="1109.7" y="549" width="1.0" height="15.0" fill="rgb(229,188,33)" rx="2" ry="2" />
<text x="1112.72" y="559.5" ></text>
</g>
<g >
<title>tsg_get_ip_asn (3 samples, 0.01%)</title><rect x="1086.4" y="437" width="0.2" height="15.0" fill="rgb(226,206,8)" rx="2" ry="2" />
<text x="1089.42" y="447.5" ></text>
</g>
<g >
<title>raw_ip_frag_list_stream_detach (2 samples, 0.01%)</title><rect x="1061.4" y="501" width="0.1" height="15.0" fill="rgb(239,205,46)" rx="2" ry="2" />
<text x="1064.35" y="511.5" ></text>
</g>
<g >
<title>Maat_set_scan_status (20 samples, 0.10%)</title><rect x="1180.4" y="549" width="1.2" height="15.0" fill="rgb(226,70,17)" rx="2" ry="2" />
<text x="1183.44" y="559.5" ></text>
</g>
<g >
<title>stream_process_tcp (2 samples, 0.01%)</title><rect x="1177.8" y="661" width="0.1" height="15.0" fill="rgb(225,202,49)" rx="2" ry="2" />
<text x="1180.79" y="671.5" ></text>
</g>
<g >
<title>__MESA_rst_tcp (18 samples, 0.09%)</title><rect x="891.1" y="453" width="1.0" height="15.0" fill="rgb(250,222,4)" rx="2" ry="2" />
<text x="894.06" y="463.5" ></text>
</g>
<g >
<title>stream_process_tcp (4 samples, 0.02%)</title><rect x="1177.9" y="677" width="0.2" height="15.0" fill="rgb(238,68,25)" rx="2" ry="2" />
<text x="1180.91" y="687.5" ></text>
</g>
<g >
<title>tcp_dump_sig (2 samples, 0.01%)</title><rect x="888.1" y="485" width="0.1" height="15.0" fill="rgb(246,125,18)" rx="2" ry="2" />
<text x="891.05" y="495.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (6 samples, 0.03%)</title><rect x="888.3" y="181" width="0.3" height="15.0" fill="rgb(227,172,38)" rx="2" ry="2" />
<text x="891.29" y="191.5" ></text>
</g>
<g >
<title>tsg_get_subscribe_id (2 samples, 0.01%)</title><rect x="881.8" y="469" width="0.1" height="15.0" fill="rgb(215,220,23)" rx="2" ry="2" />
<text x="884.80" y="479.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (27 samples, 0.13%)</title><rect x="939.6" y="485" width="1.6" height="15.0" fill="rgb(213,17,15)" rx="2" ry="2" />
<text x="942.61" y="495.5" ></text>
</g>
<g >
<title>[sapp] (4 samples, 0.02%)</title><rect x="895.7" y="581" width="0.3" height="15.0" fill="rgb(224,225,23)" rx="2" ry="2" />
<text x="898.72" y="591.5" ></text>
</g>
<g >
<title>tsg_scan_nesting_addr (14 samples, 0.07%)</title><rect x="954.1" y="469" width="0.8" height="15.0" fill="rgb(251,8,33)" rx="2" ry="2" />
<text x="957.12" y="479.5" ></text>
</g>
<g >
<title>lrustream (2 samples, 0.01%)</title><rect x="959.4" y="549" width="0.1" height="15.0" fill="rgb(210,40,19)" rx="2" ry="2" />
<text x="962.37" y="559.5" ></text>
</g>
<g >
<title>ssl_doWithApplicationData (2 samples, 0.01%)</title><rect x="888.2" y="453" width="0.1" height="15.0" fill="rgb(206,94,26)" rx="2" ry="2" />
<text x="891.17" y="463.5" ></text>
</g>
<g >
<title>Maat_table_runtime_perf_stat (2 samples, 0.01%)</title><rect x="938.8" y="405" width="0.2" height="15.0" fill="rgb(247,223,22)" rx="2" ry="2" />
<text x="941.84" y="415.5" ></text>
</g>
<g >
<title>[sapp] (2 samples, 0.01%)</title><rect x="1110.1" y="517" width="0.2" height="15.0" fill="rgb(236,144,35)" rx="2" ry="2" />
<text x="1113.13" y="527.5" ></text>
</g>
<g >
<title>http_callPluginField (3 samples, 0.01%)</title><rect x="1081.6" y="357" width="0.2" height="15.0" fill="rgb(217,45,30)" rx="2" ry="2" />
<text x="1084.59" y="367.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (8 samples, 0.04%)</title><rect x="881.0" y="341" width="0.4" height="15.0" fill="rgb(226,64,18)" rx="2" ry="2" />
<text x="883.98" y="351.5" ></text>
</g>
<g >
<title>ssl_analyseHandShake (4 samples, 0.02%)</title><rect x="1188.1" y="437" width="0.2" height="15.0" fill="rgb(243,7,42)" rx="2" ry="2" />
<text x="1191.05" y="447.5" ></text>
</g>
<g >
<title>ASN1_template_free (14 samples, 0.07%)</title><rect x="935.0" y="309" width="0.8" height="15.0" fill="rgb(209,42,51)" rx="2" ry="2" />
<text x="938.01" y="319.5" ></text>
</g>
<g >
<title>malloc (2 samples, 0.01%)</title><rect x="959.8" y="517" width="0.2" height="15.0" fill="rgb(223,49,14)" rx="2" ry="2" />
<text x="962.84" y="527.5" ></text>
</g>
<g >
<title>APP_SKETCH_UDP_PLUG_ENTRY (9 samples, 0.04%)</title><rect x="895.0" y="613" width="0.5" height="15.0" fill="rgb(247,37,50)" rx="2" ry="2" />
<text x="897.96" y="623.5" ></text>
</g>
<g >
<title>tsg_ddos_sketch_tcpall_entry (7 samples, 0.03%)</title><rect x="940.8" y="469" width="0.4" height="15.0" fill="rgb(206,114,22)" rx="2" ry="2" />
<text x="943.79" y="479.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (2 samples, 0.01%)</title><rect x="889.8" y="389" width="0.1" height="15.0" fill="rgb(226,140,34)" rx="2" ry="2" />
<text x="892.77" y="399.5" ></text>
</g>
<g >
<title>[app_proto_identify.so] (16 samples, 0.08%)</title><rect x="1084.1" y="469" width="1.0" height="15.0" fill="rgb(209,123,7)" rx="2" ry="2" />
<text x="1087.12" y="479.5" ></text>
</g>
<g >
<title>ASN1_STRING_free (4 samples, 0.02%)</title><rect x="935.3" y="245" width="0.2" height="15.0" fill="rgb(208,27,32)" rx="2" ry="2" />
<text x="938.30" y="255.5" ></text>
</g>
<g >
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="1188.3" y="469" width="0.2" height="15.0" fill="rgb(245,97,8)" rx="2" ry="2" />
<text x="1191.29" y="479.5" ></text>
</g>
<g >
<title>CNaiveIntervalIndex::Find (2 samples, 0.01%)</title><rect x="1113.1" y="373" width="0.2" height="15.0" fill="rgb(254,69,2)" rx="2" ry="2" />
<text x="1116.14" y="383.5" ></text>
</g>
<g >
<title>[sapp] (3 samples, 0.01%)</title><rect x="946.3" y="517" width="0.1" height="15.0" fill="rgb(242,96,0)" rx="2" ry="2" />
<text x="949.27" y="527.5" ></text>
</g>
<g >
<title>_IO_vsnprintf (7 samples, 0.03%)</title><rect x="1187.1" y="709" width="0.4" height="15.0" fill="rgb(212,21,23)" rx="2" ry="2" />
<text x="1190.05" y="719.5" ></text>
</g>
<g >
<title>stream_process (18 samples, 0.09%)</title><rect x="893.0" y="629" width="1.1" height="15.0" fill="rgb(241,188,4)" rx="2" ry="2" />
<text x="896.01" y="639.5" ></text>
</g>
<g >
<title>stream_make_hash (7 samples, 0.03%)</title><rect x="998.8" y="581" width="0.4" height="15.0" fill="rgb(206,116,54)" rx="2" ry="2" />
<text x="1001.77" y="591.5" ></text>
</g>
<g >
<title>stream_process_tcp (426 samples, 2.13%)</title><rect x="1061.1" y="517" width="25.1" height="15.0" fill="rgb(214,28,20)" rx="2" ry="2" />
<text x="1064.06" y="527.5" >s..</text>
</g>
<g >
<title>ipv4_entry (53 samples, 0.26%)</title><rect x="1179.2" y="693" width="3.1" height="15.0" fill="rgb(242,169,5)" rx="2" ry="2" />
<text x="1182.21" y="703.5" ></text>
</g>
<g >
<title>[libprotoident.so] (8 samples, 0.04%)</title><rect x="937.0" y="405" width="0.4" height="15.0" fill="rgb(222,207,28)" rx="2" ry="2" />
<text x="939.95" y="415.5" ></text>
</g>
<g >
<title>[libprotoident.so] (117 samples, 0.58%)</title><rect x="973.3" y="501" width="6.9" height="15.0" fill="rgb(215,49,48)" rx="2" ry="2" />
<text x="976.35" y="511.5" ></text>
</g>
<g >
<title>Maat_hierarchy_region_compile (3 samples, 0.01%)</title><rect x="871.4" y="709" width="0.1" height="15.0" fill="rgb(252,41,48)" rx="2" ry="2" />
<text x="874.36" y="719.5" ></text>
</g>
<g >
<title>TSG_MASTER_UDP_ENTRY (16 samples, 0.08%)</title><rect x="960.9" y="501" width="0.9" height="15.0" fill="rgb(247,195,51)" rx="2" ry="2" />
<text x="963.90" y="511.5" ></text>
</g>
<g >
<title>stream_process_tcp (2 samples, 0.01%)</title><rect x="1175.1" y="645" width="0.1" height="15.0" fill="rgb(240,126,40)" rx="2" ry="2" />
<text x="1178.08" y="655.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (14 samples, 0.07%)</title><rect x="1178.1" y="597" width="0.9" height="15.0" fill="rgb(206,140,44)" rx="2" ry="2" />
<text x="1181.14" y="607.5" ></text>
</g>
<g >
<title>[sapp] (1,669 samples, 8.34%)</title><rect x="1010.6" y="549" width="98.5" height="15.0" fill="rgb(211,154,3)" rx="2" ry="2" />
<text x="1013.63" y="559.5" >[sapp]</text>
</g>
<g >
<title>system_capture_packet_entry (2 samples, 0.01%)</title><rect x="960.7" y="485" width="0.1" height="15.0" fill="rgb(251,227,44)" rx="2" ry="2" />
<text x="963.72" y="495.5" ></text>
</g>
<g >
<title>PROT_PROCESS (2 samples, 0.01%)</title><rect x="1181.6" y="469" width="0.1" height="15.0" fill="rgb(248,152,10)" rx="2" ry="2" />
<text x="1184.62" y="479.5" ></text>
</g>
<g >
<title>[app_proto_identify.so] (177 samples, 0.88%)</title><rect x="970.9" y="549" width="10.4" height="15.0" fill="rgb(231,43,17)" rx="2" ry="2" />
<text x="973.87" y="559.5" ></text>
</g>
<g >
<title>parse_resource_record (9 samples, 0.04%)</title><rect x="1185.6" y="725" width="0.6" height="15.0" fill="rgb(208,40,33)" rx="2" ry="2" />
<text x="1188.64" y="735.5" ></text>
</g>
<g >
<title>Maat_ip_plugin_get_EX_data (4 samples, 0.02%)</title><rect x="954.3" y="437" width="0.2" height="15.0" fill="rgb(212,104,7)" rx="2" ry="2" />
<text x="957.29" y="447.5" ></text>
</g>
<g >
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="1175.3" y="549" width="0.1" height="15.0" fill="rgb(237,4,4)" rx="2" ry="2" />
<text x="1178.25" y="559.5" ></text>
</g>
<g >
<title>http_doWithDefaultData (4 samples, 0.02%)</title><rect x="933.5" y="405" width="0.2" height="15.0" fill="rgb(229,33,7)" rx="2" ry="2" />
<text x="936.47" y="415.5" ></text>
</g>
<g >
<title>[sapp] (12 samples, 0.06%)</title><rect x="1137.4" y="517" width="0.8" height="15.0" fill="rgb(225,154,12)" rx="2" ry="2" />
<text x="1140.44" y="527.5" ></text>
</g>
<g >
<title>project_req_get_struct (5 samples, 0.02%)</title><rect x="1105.8" y="469" width="0.3" height="15.0" fill="rgb(223,200,49)" rx="2" ry="2" />
<text x="1108.77" y="479.5" ></text>
</g>
<g >
<title>APP_SKETCH_UDP_PLUG_ENTRY (3 samples, 0.01%)</title><rect x="964.3" y="501" width="0.2" height="15.0" fill="rgb(225,223,14)" rx="2" ry="2" />
<text x="967.32" y="511.5" ></text>
</g>
<g >
<title>CRefCountManager::inc_reference_count (2 samples, 0.01%)</title><rect x="857.3" y="661" width="0.1" height="15.0" fill="rgb(211,142,14)" rx="2" ry="2" />
<text x="860.26" y="671.5" ></text>
</g>
<g >
<title>qsort_r (2 samples, 0.01%)</title><rect x="811.0" y="693" width="0.1" height="15.0" fill="rgb(254,73,0)" rx="2" ry="2" />
<text x="814.02" y="703.5" ></text>
</g>
<g >
<title>tsg_scan_nesting_addr (18 samples, 0.09%)</title><rect x="1184.5" y="645" width="1.1" height="15.0" fill="rgb(210,43,40)" rx="2" ry="2" />
<text x="1187.51" y="655.5" ></text>
</g>
<g >
<title>HTTP_ENTRY (4 samples, 0.02%)</title><rect x="1177.9" y="629" width="0.2" height="15.0" fill="rgb(210,159,36)" rx="2" ry="2" />
<text x="1180.91" y="639.5" ></text>
</g>
<g >
<title>x2apic_send_IPI_mask (3 samples, 0.01%)</title><rect x="891.9" y="133" width="0.2" height="15.0" fill="rgb(236,147,6)" rx="2" ry="2" />
<text x="894.95" y="143.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (9 samples, 0.04%)</title><rect x="895.0" y="597" width="0.5" height="15.0" fill="rgb(213,190,30)" rx="2" ry="2" />
<text x="897.96" y="607.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (6 samples, 0.03%)</title><rect x="882.9" y="213" width="0.4" height="15.0" fill="rgb(234,77,53)" rx="2" ry="2" />
<text x="885.92" y="223.5" ></text>
</g>
<g >
<title>_int_free (3 samples, 0.01%)</title><rect x="968.2" y="501" width="0.1" height="15.0" fill="rgb(253,106,14)" rx="2" ry="2" />
<text x="971.16" y="511.5" ></text>
</g>
<g >
<title>[tsg_master.so] (5 samples, 0.02%)</title><rect x="938.0" y="453" width="0.3" height="15.0" fill="rgb(227,46,22)" rx="2" ry="2" />
<text x="941.01" y="463.5" ></text>
</g>
<g >
<title>stream_process_tcp (469 samples, 2.34%)</title><rect x="1022.4" y="501" width="27.7" height="15.0" fill="rgb(240,107,16)" rx="2" ry="2" />
<text x="1025.42" y="511.5" >s..</text>
</g>
<g >
<title>bool_matcher_match (2 samples, 0.01%)</title><rect x="811.4" y="693" width="0.1" height="15.0" fill="rgb(213,179,33)" rx="2" ry="2" />
<text x="814.37" y="703.5" ></text>
</g>
<g >
<title>[tsg_master.so] (15 samples, 0.07%)</title><rect x="961.0" y="485" width="0.8" height="15.0" fill="rgb(214,126,8)" rx="2" ry="2" />
<text x="963.96" y="495.5" ></text>
</g>
<g >
<title>Maat_table_get_child_id@plt (4 samples, 0.02%)</title><rect x="826.4" y="709" width="0.3" height="15.0" fill="rgb(241,229,17)" rx="2" ry="2" />
<text x="829.41" y="719.5" ></text>
</g>
<g >
<title>Maat_ip_plugin_get_EX_data (3 samples, 0.01%)</title><rect x="961.2" y="437" width="0.2" height="15.0" fill="rgb(223,220,10)" rx="2" ry="2" />
<text x="964.20" y="447.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (3 samples, 0.01%)</title><rect x="1083.2" y="293" width="0.2" height="15.0" fill="rgb(239,99,36)" rx="2" ry="2" />
<text x="1086.24" y="303.5" ></text>
</g>
<g >
<title>Maat_ip_plugin_get_EX_data (2 samples, 0.01%)</title><rect x="1112.9" y="437" width="0.1" height="15.0" fill="rgb(229,212,38)" rx="2" ry="2" />
<text x="1115.91" y="447.5" ></text>
</g>
<g >
<title>stream_addr_list_ntop_outward (4 samples, 0.02%)</title><rect x="894.7" y="581" width="0.3" height="15.0" fill="rgb(227,97,12)" rx="2" ry="2" />
<text x="897.72" y="591.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (6 samples, 0.03%)</title><rect x="888.3" y="165" width="0.3" height="15.0" fill="rgb(214,85,26)" rx="2" ry="2" />
<text x="891.29" y="175.5" ></text>
</g>
<g >
<title>fn_pGetSSLInfo (32 samples, 0.16%)</title><rect x="934.4" y="389" width="1.8" height="15.0" fill="rgb(245,46,44)" rx="2" ry="2" />
<text x="937.36" y="399.5" ></text>
</g>
<g >
<title>CSuccinctHash::find (40 samples, 0.20%)</title><rect x="876.6" y="693" width="2.3" height="15.0" fill="rgb(220,73,54)" rx="2" ry="2" />
<text x="879.55" y="703.5" ></text>
</g>
<g >
<title>dealipv4tcppkt (4 samples, 0.02%)</title><rect x="882.2" y="597" width="0.2" height="15.0" fill="rgb(209,18,51)" rx="2" ry="2" />
<text x="885.16" y="607.5" ></text>
</g>
<g >
<title>ASN1_item_d2i (22 samples, 0.11%)</title><rect x="882.9" y="421" width="1.3" height="15.0" fill="rgb(230,185,26)" rx="2" ry="2" />
<text x="885.86" y="431.5" ></text>
</g>
<g >
<title>ipv4_entry (7 samples, 0.03%)</title><rect x="1177.5" y="725" width="0.4" height="15.0" fill="rgb(229,138,27)" rx="2" ry="2" />
<text x="1180.50" y="735.5" ></text>
</g>
<g >
<title>free (2 samples, 0.01%)</title><rect x="1020.8" y="501" width="0.1" height="15.0" fill="rgb(232,219,41)" rx="2" ry="2" />
<text x="1023.83" y="511.5" ></text>
</g>
<g >
<title>Maat_table_get_scan_type@plt (2 samples, 0.01%)</title><rect x="831.4" y="693" width="0.1" height="15.0" fill="rgb(208,197,51)" rx="2" ry="2" />
<text x="834.43" y="703.5" ></text>
</g>
<g >
<title>ssl_analyseSsl (44 samples, 0.22%)</title><rect x="888.2" y="485" width="2.6" height="15.0" fill="rgb(211,156,44)" rx="2" ry="2" />
<text x="891.17" y="495.5" ></text>
</g>
<g >
<title>sk_pop_free (2 samples, 0.01%)</title><rect x="889.6" y="261" width="0.2" height="15.0" fill="rgb(254,78,17)" rx="2" ry="2" />
<text x="892.65" y="271.5" ></text>
</g>
<g >
<title>dealipv4tcppkt (7 samples, 0.03%)</title><rect x="1177.5" y="709" width="0.4" height="15.0" fill="rgb(231,43,7)" rx="2" ry="2" />
<text x="1180.50" y="719.5" ></text>
</g>
<g >
<title>stream_process (5 samples, 0.02%)</title><rect x="1177.5" y="629" width="0.3" height="15.0" fill="rgb(238,173,5)" rx="2" ry="2" />
<text x="1180.50" y="639.5" ></text>
</g>
<g >
<title>__snprintf (2 samples, 0.01%)</title><rect x="967.3" y="533" width="0.1" height="15.0" fill="rgb(208,172,15)" rx="2" ry="2" />
<text x="970.33" y="543.5" ></text>
</g>
<g >
<title>ssl_initSslStream (2 samples, 0.01%)</title><rect x="936.3" y="453" width="0.1" height="15.0" fill="rgb(213,5,54)" rx="2" ry="2" />
<text x="939.30" y="463.5" ></text>
</g>
<g >
<title>lpi_guess_protocol (10 samples, 0.05%)</title><rect x="1084.2" y="453" width="0.6" height="15.0" fill="rgb(221,186,34)" rx="2" ry="2" />
<text x="1087.18" y="463.5" ></text>
</g>
<g >
<title>[sapp] (14 samples, 0.07%)</title><rect x="1178.1" y="645" width="0.9" height="15.0" fill="rgb(211,204,52)" rx="2" ry="2" />
<text x="1181.14" y="655.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (16 samples, 0.08%)</title><rect x="881.0" y="517" width="0.9" height="15.0" fill="rgb(210,127,17)" rx="2" ry="2" />
<text x="883.98" y="527.5" ></text>
</g>
<g >
<title>CRYPTO_malloc (2 samples, 0.01%)</title><rect x="881.2" y="245" width="0.1" height="15.0" fill="rgb(241,158,43)" rx="2" ry="2" />
<text x="884.15" y="255.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="894.2" y="485" width="0.2" height="15.0" fill="rgb(211,60,29)" rx="2" ry="2" />
<text x="897.25" y="495.5" ></text>
</g>
<g >
<title>Maat_hierarchy_compile_mid_free (3 samples, 0.01%)</title><rect x="1121.0" y="501" width="0.2" height="15.0" fill="rgb(233,6,22)" rx="2" ry="2" />
<text x="1123.99" y="511.5" ></text>
</g>
<g >
<title>dealipv4tcppkt (9 samples, 0.04%)</title><rect x="1188.1" y="581" width="0.5" height="15.0" fill="rgb(213,197,22)" rx="2" ry="2" />
<text x="1191.05" y="591.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (6 samples, 0.03%)</title><rect x="967.0" y="533" width="0.3" height="15.0" fill="rgb(206,197,23)" rx="2" ry="2" />
<text x="969.98" y="543.5" ></text>
</g>
<g >
<title>[sapp] (5 samples, 0.02%)</title><rect x="1177.5" y="661" width="0.3" height="15.0" fill="rgb(208,72,43)" rx="2" ry="2" />
<text x="1180.50" y="671.5" ></text>
</g>
<g >
<title>[tsg_master.so] (6 samples, 0.03%)</title><rect x="1049.7" y="453" width="0.4" height="15.0" fill="rgb(206,173,42)" rx="2" ry="2" />
<text x="1052.73" y="463.5" ></text>
</g>
<g >
<title>tsg_send_log (2 samples, 0.01%)</title><rect x="890.9" y="469" width="0.2" height="15.0" fill="rgb(206,44,4)" rx="2" ry="2" />
<text x="893.94" y="479.5" ></text>
</g>
<g >
<title>[tsg_master.so] (5 samples, 0.02%)</title><rect x="1084.8" y="437" width="0.3" height="15.0" fill="rgb(229,19,1)" rx="2" ry="2" />
<text x="1087.77" y="447.5" ></text>
</g>
<g >
<title>Maat_table_get_type_by_id (9 samples, 0.04%)</title><rect x="816.7" y="725" width="0.5" height="15.0" fill="rgb(248,129,21)" rx="2" ry="2" />
<text x="819.68" y="735.5" ></text>
</g>
<g >
<title>[sapp] (5 samples, 0.02%)</title><rect x="959.7" y="549" width="0.3" height="15.0" fill="rgb(249,177,0)" rx="2" ry="2" />
<text x="962.72" y="559.5" ></text>
</g>
<g >
<title>[app_proto_identify.so] (11 samples, 0.05%)</title><rect x="961.8" y="501" width="0.7" height="15.0" fill="rgb(222,178,26)" rx="2" ry="2" />
<text x="964.85" y="511.5" ></text>
</g>
<g >
<title>__memcmp_sse4_1 (2 samples, 0.01%)</title><rect x="980.1" y="485" width="0.1" height="15.0" fill="rgb(205,134,19)" rx="2" ry="2" />
<text x="983.07" y="495.5" ></text>
</g>
<g >
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="890.9" y="485" width="0.2" height="15.0" fill="rgb(246,137,9)" rx="2" ry="2" />
<text x="893.89" y="495.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (98 samples, 0.49%)</title><rect x="951.8" y="517" width="5.8" height="15.0" fill="rgb(205,143,7)" rx="2" ry="2" />
<text x="954.82" y="527.5" ></text>
</g>
<g >
<title>eth_entry (4,133 samples, 20.66%)</title><rect x="912.0" y="661" width="243.8" height="15.0" fill="rgb(226,204,49)" rx="2" ry="2" />
<text x="915.00" y="671.5" >eth_entry</text>
</g>
<g >
<title>_IO_vsnprintf (2 samples, 0.01%)</title><rect x="1181.6" y="389" width="0.1" height="15.0" fill="rgb(232,197,18)" rx="2" ry="2" />
<text x="1184.62" y="399.5" ></text>
</g>
<g >
<title>plugin_process_pending (3 samples, 0.01%)</title><rect x="884.8" y="405" width="0.1" height="15.0" fill="rgb(232,215,2)" rx="2" ry="2" />
<text x="887.75" y="415.5" ></text>
</g>
<g >
<title>PROT_PROCESS (53 samples, 0.26%)</title><rect x="1182.4" y="709" width="3.2" height="15.0" fill="rgb(208,196,19)" rx="2" ry="2" />
<text x="1185.45" y="719.5" ></text>
</g>
<g >
<title>sapp_mem_malloc (2 samples, 0.01%)</title><rect x="1109.4" y="501" width="0.1" height="15.0" fill="rgb(226,209,51)" rx="2" ry="2" />
<text x="1112.43" y="511.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (2 samples, 0.01%)</title><rect x="957.8" y="485" width="0.1" height="15.0" fill="rgb(211,159,10)" rx="2" ry="2" />
<text x="960.78" y="495.5" ></text>
</g>
<g >
<title>[sapp] (3 samples, 0.01%)</title><rect x="981.5" y="581" width="0.2" height="15.0" fill="rgb(231,217,26)" rx="2" ry="2" />
<text x="984.55" y="591.5" ></text>
</g>
<g >
<title>alloc_pages_vma (2 samples, 0.01%)</title><rect x="1021.2" y="309" width="0.1" height="15.0" fill="rgb(212,109,33)" rx="2" ry="2" />
<text x="1024.18" y="319.5" ></text>
</g>
<g >
<title>project_requirement_destroy (5 samples, 0.02%)</title><rect x="1095.4" y="485" width="0.3" height="15.0" fill="rgb(212,70,33)" rx="2" ry="2" />
<text x="1098.45" y="495.5" ></text>
</g>
<g >
<title>[libmarsio.so.4.4] (4 samples, 0.02%)</title><rect x="1169.7" y="661" width="0.2" height="15.0" fill="rgb(206,161,7)" rx="2" ry="2" />
<text x="1172.71" y="671.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (6 samples, 0.03%)</title><rect x="888.3" y="229" width="0.3" height="15.0" fill="rgb(247,196,8)" rx="2" ry="2" />
<text x="891.29" y="239.5" ></text>
</g>
<g >
<title>stream_process (6 samples, 0.03%)</title><rect x="786.1" y="629" width="0.3" height="15.0" fill="rgb(239,26,45)" rx="2" ry="2" />
<text x="789.07" y="639.5" ></text>
</g>
<g >
<title>findstreamindex (4 samples, 0.02%)</title><rect x="1118.3" y="549" width="0.2" height="15.0" fill="rgb(236,163,5)" rx="2" ry="2" />
<text x="1121.27" y="559.5" ></text>
</g>
<g >
<title>ASN1_mbstring_copy (3 samples, 0.01%)</title><rect x="888.6" y="245" width="0.2" height="15.0" fill="rgb(238,149,38)" rx="2" ry="2" />
<text x="891.64" y="255.5" ></text>
</g>
<g >
<title>[sapp] (3 samples, 0.01%)</title><rect x="932.6" y="421" width="0.2" height="15.0" fill="rgb(206,182,34)" rx="2" ry="2" />
<text x="935.59" y="431.5" ></text>
</g>
<g >
<title>tsg_get_ip_location (5 samples, 0.02%)</title><rect x="1145.8" y="501" width="0.3" height="15.0" fill="rgb(206,4,50)" rx="2" ry="2" />
<text x="1148.82" y="511.5" ></text>
</g>
<g >
<title>Maat_hierarchy_compile_mid_free (2 samples, 0.01%)</title><rect x="957.8" y="453" width="0.1" height="15.0" fill="rgb(218,89,26)" rx="2" ry="2" />
<text x="960.78" y="463.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (3 samples, 0.01%)</title><rect x="1187.6" y="245" width="0.2" height="15.0" fill="rgb(220,14,3)" rx="2" ry="2" />
<text x="1190.58" y="255.5" ></text>
</g>
<g >
<title>__clock_gettime (2 samples, 0.01%)</title><rect x="1184.9" y="597" width="0.1" height="15.0" fill="rgb(207,97,53)" rx="2" ry="2" />
<text x="1187.87" y="607.5" ></text>
</g>
<g >
<title>scaling_bloom_check (2 samples, 0.01%)</title><rect x="960.2" y="533" width="0.1" height="15.0" fill="rgb(238,143,31)" rx="2" ry="2" />
<text x="963.19" y="543.5" ></text>
</g>
<g >
<title>malloc (2 samples, 0.01%)</title><rect x="934.8" y="229" width="0.1" height="15.0" fill="rgb(223,89,21)" rx="2" ry="2" />
<text x="937.83" y="239.5" ></text>
</g>
<g >
<title>[sapp] (46 samples, 0.23%)</title><rect x="1179.2" y="645" width="2.7" height="15.0" fill="rgb(251,32,18)" rx="2" ry="2" />
<text x="1182.21" y="655.5" ></text>
</g>
<g >
<title>[libpthread-2.17.so] (2 samples, 0.01%)</title><rect x="871.7" y="741" width="0.1" height="15.0" fill="rgb(225,75,3)" rx="2" ry="2" />
<text x="874.72" y="751.5" ></text>
</g>
<g >
<title>tsg_send_log (2 samples, 0.01%)</title><rect x="895.5" y="597" width="0.2" height="15.0" fill="rgb(237,107,45)" rx="2" ry="2" />
<text x="898.55" y="607.5" ></text>
</g>
<g >
<title>TLD_append_streaminfo (3 samples, 0.01%)</title><rect x="1175.3" y="501" width="0.1" height="15.0" fill="rgb(239,221,42)" rx="2" ry="2" />
<text x="1178.25" y="511.5" ></text>
</g>
<g >
<title>http_analyseHttpReqResHeader (2 samples, 0.01%)</title><rect x="1177.9" y="597" width="0.1" height="15.0" fill="rgb(206,25,25)" rx="2" ry="2" />
<text x="1180.91" y="607.5" ></text>
</g>
<g >
<title>tsg_scan_nesting_addr (9 samples, 0.04%)</title><rect x="1086.4" y="453" width="0.6" height="15.0" fill="rgb(224,126,10)" rx="2" ry="2" />
<text x="1089.42" y="463.5" ></text>
</g>
<g >
<title>[tsg_master.so] (18 samples, 0.09%)</title><rect x="1085.1" y="469" width="1.0" height="15.0" fill="rgb(209,205,20)" rx="2" ry="2" />
<text x="1088.07" y="479.5" ></text>
</g>
<g >
<title>[sapp] (5 samples, 0.02%)</title><rect x="926.7" y="565" width="0.3" height="15.0" fill="rgb(253,19,12)" rx="2" ry="2" />
<text x="929.69" y="575.5" ></text>
</g>
<g >
<title>DNS_UDP_ENTRY (2 samples, 0.01%)</title><rect x="1112.3" y="501" width="0.1" height="15.0" fill="rgb(208,131,0)" rx="2" ry="2" />
<text x="1115.32" y="511.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.5] (5 samples, 0.02%)</title><rect x="1177.5" y="549" width="0.3" height="15.0" fill="rgb(245,12,9)" rx="2" ry="2" />
<text x="1180.50" y="559.5" ></text>
</g>
<g >
<title>FW_HTTP_PLUG_ENTRY (2 samples, 0.01%)</title><rect x="1177.9" y="485" width="0.1" height="15.0" fill="rgb(211,108,44)" rx="2" ry="2" />
<text x="1180.91" y="495.5" ></text>
</g>
<g >
<title>_int_malloc (11 samples, 0.05%)</title><rect x="870.4" y="677" width="0.7" height="15.0" fill="rgb(249,33,24)" rx="2" ry="2" />
<text x="873.42" y="687.5" ></text>
</g>
<g >
<title>ssl_analyseSsl (37 samples, 0.18%)</title><rect x="882.7" y="485" width="2.2" height="15.0" fill="rgb(234,207,6)" rx="2" ry="2" />
<text x="885.75" y="495.5" ></text>
</g>
<g >
<title>Maat_table_runtime_perf_stat (2 samples, 0.01%)</title><rect x="1184.6" y="597" width="0.2" height="15.0" fill="rgb(249,122,6)" rx="2" ry="2" />
<text x="1187.63" y="607.5" ></text>
</g>
<g >
<title>ASN1_template_free (14 samples, 0.07%)</title><rect x="935.0" y="341" width="0.8" height="15.0" fill="rgb(249,101,38)" rx="2" ry="2" />
<text x="938.01" y="351.5" ></text>
</g>
<g >
<title>APP_SKETCH_TCP_PLUG_ENTRY (17 samples, 0.08%)</title><rect x="1023.5" y="453" width="1.0" height="15.0" fill="rgb(219,126,50)" rx="2" ry="2" />
<text x="1026.54" y="463.5" ></text>
</g>
<g >
<title>ip6_route_get_saddr (3 samples, 0.01%)</title><rect x="896.1" y="581" width="0.2" height="15.0" fill="rgb(250,12,52)" rx="2" ry="2" />
<text x="899.08" y="591.5" ></text>
</g>
<g >
<title>Maat_stream_scan_string_detail (2 samples, 0.01%)</title><rect x="871.5" y="741" width="0.2" height="15.0" fill="rgb(231,182,3)" rx="2" ry="2" />
<text x="874.54" y="751.5" ></text>
</g>
<g >
<title>[sapp] (5 samples, 0.02%)</title><rect x="1105.8" y="453" width="0.3" height="15.0" fill="rgb(225,106,17)" rx="2" ry="2" />
<text x="1108.77" y="463.5" ></text>
</g>
<g >
<title>sapp_dup_pkt_identify_udp_v6 (157 samples, 0.78%)</title><rect x="1121.8" y="597" width="9.2" height="15.0" fill="rgb(208,176,45)" rx="2" ry="2" />
<text x="1124.75" y="607.5" ></text>
</g>
<g >
<title>__memcpy_ssse3_back (3 samples, 0.01%)</title><rect x="869.9" y="693" width="0.2" height="15.0" fill="rgb(253,192,30)" rx="2" ry="2" />
<text x="872.95" y="703.5" ></text>
</g>
<g >
<title>nfnetlink_unicast (2 samples, 0.01%)</title><rect x="896.5" y="549" width="0.1" height="15.0" fill="rgb(217,190,23)" rx="2" ry="2" />
<text x="899.49" y="559.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (2 samples, 0.01%)</title><rect x="786.0" y="533" width="0.1" height="15.0" fill="rgb(240,28,44)" rx="2" ry="2" />
<text x="788.95" y="543.5" ></text>
</g>
<g >
<title>_int_malloc (3 samples, 0.01%)</title><rect x="1083.9" y="277" width="0.2" height="15.0" fill="rgb(223,116,52)" rx="2" ry="2" />
<text x="1086.89" y="287.5" ></text>
</g>
<g >
<title>stream_process (4 samples, 0.02%)</title><rect x="885.6" y="581" width="0.2" height="15.0" fill="rgb(218,44,34)" rx="2" ry="2" />
<text x="888.58" y="591.5" ></text>
</g>
<g >
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="1175.3" y="533" width="0.1" height="15.0" fill="rgb(206,133,20)" rx="2" ry="2" />
<text x="1178.25" y="543.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.5] (2 samples, 0.01%)</title><rect x="1184.8" y="597" width="0.1" height="15.0" fill="rgb(254,222,37)" rx="2" ry="2" />
<text x="1187.75" y="607.5" ></text>
</g>
<g >
<title>[tsg_ddos_sketch.so] (12 samples, 0.06%)</title><rect x="956.9" y="453" width="0.7" height="15.0" fill="rgb(210,125,18)" rx="2" ry="2" />
<text x="959.89" y="463.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.5] (2 samples, 0.01%)</title><rect x="939.9" y="437" width="0.1" height="15.0" fill="rgb(221,69,43)" rx="2" ry="2" />
<text x="942.90" y="447.5" ></text>
</g>
<g >
<title>ipv4_entry (4 samples, 0.02%)</title><rect x="882.2" y="613" width="0.2" height="15.0" fill="rgb(225,10,21)" rx="2" ry="2" />
<text x="885.16" y="623.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (23 samples, 0.11%)</title><rect x="779.9" y="549" width="1.4" height="15.0" fill="rgb(211,198,18)" rx="2" ry="2" />
<text x="782.93" y="559.5" ></text>
</g>
<g >
<title>_IO_vsnprintf (2 samples, 0.01%)</title><rect x="967.3" y="517" width="0.1" height="15.0" fill="rgb(214,63,10)" rx="2" ry="2" />
<text x="970.33" y="527.5" ></text>
</g>
<g >
<title>_IO_default_xsputn (3 samples, 0.01%)</title><rect x="882.6" y="421" width="0.1" height="15.0" fill="rgb(215,123,44)" rx="2" ry="2" />
<text x="885.57" y="431.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="881.0" y="213" width="0.2" height="15.0" fill="rgb(236,205,39)" rx="2" ry="2" />
<text x="884.04" y="223.5" ></text>
</g>
<g >
<title>FW_HTTP_PLUG_ENTRY (2 samples, 0.01%)</title><rect x="894.2" y="533" width="0.2" height="15.0" fill="rgb(211,45,44)" rx="2" ry="2" />
<text x="897.25" y="543.5" ></text>
</g>
<g >
<title>project_requirement_destroy (8 samples, 0.04%)</title><rect x="1120.9" y="549" width="0.5" height="15.0" fill="rgb(250,59,28)" rx="2" ry="2" />
<text x="1123.93" y="559.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="1085.5" y="437" width="0.1" height="15.0" fill="rgb(236,221,37)" rx="2" ry="2" />
<text x="1088.48" y="447.5" ></text>
</g>
<g >
<title>stream_process (132 samples, 0.66%)</title><rect x="931.8" y="501" width="7.8" height="15.0" fill="rgb(206,136,33)" rx="2" ry="2" />
<text x="934.82" y="511.5" ></text>
</g>
<g >
<title>stream_process_ipv4 (18 samples, 0.09%)</title><rect x="1116.6" y="549" width="1.0" height="15.0" fill="rgb(232,73,1)" rx="2" ry="2" />
<text x="1119.56" y="559.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="962.4" y="469" width="0.1" height="15.0" fill="rgb(242,205,24)" rx="2" ry="2" />
<text x="965.38" y="479.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (2 samples, 0.01%)</title><rect x="786.0" y="565" width="0.1" height="15.0" fill="rgb(240,171,25)" rx="2" ry="2" />
<text x="788.95" y="575.5" ></text>
</g>
<g >
<title>Maat_set_scan_status (2 samples, 0.01%)</title><rect x="892.2" y="469" width="0.1" height="15.0" fill="rgb(222,145,48)" rx="2" ry="2" />
<text x="895.18" y="479.5" ></text>
</g>
<g >
<title>asn1_ex_i2c (2 samples, 0.01%)</title><rect x="936.1" y="293" width="0.1" height="15.0" fill="rgb(237,214,54)" rx="2" ry="2" />
<text x="939.13" y="303.5" ></text>
</g>
<g >
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="885.8" y="533" width="0.2" height="15.0" fill="rgb(212,26,22)" rx="2" ry="2" />
<text x="888.81" y="543.5" ></text>
</g>
<g >
<title>plugin_process_data (8 samples, 0.04%)</title><rect x="884.3" y="389" width="0.5" height="15.0" fill="rgb(205,65,28)" rx="2" ry="2" />
<text x="887.28" y="399.5" ></text>
</g>
<g >
<title>fn_pGetSSLInfo (2 samples, 0.01%)</title><rect x="930.8" y="373" width="0.1" height="15.0" fill="rgb(238,176,12)" rx="2" ry="2" />
<text x="933.82" y="383.5" ></text>
</g>
<g >
<title>[app_proto_identify.so] (25 samples, 0.12%)</title><rect x="936.4" y="469" width="1.5" height="15.0" fill="rgb(217,190,36)" rx="2" ry="2" />
<text x="939.42" y="479.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (9 samples, 0.04%)</title><rect x="964.3" y="517" width="0.5" height="15.0" fill="rgb(236,163,37)" rx="2" ry="2" />
<text x="967.26" y="527.5" ></text>
</g>
<g >
<title>gtp_entry (32 samples, 0.16%)</title><rect x="779.9" y="693" width="1.9" height="15.0" fill="rgb(248,66,26)" rx="2" ry="2" />
<text x="782.88" y="703.5" ></text>
</g>
<g >
<title>marsio_buff_mtod (3 samples, 0.01%)</title><rect x="1170.1" y="677" width="0.2" height="15.0" fill="rgb(212,34,12)" rx="2" ry="2" />
<text x="1173.12" y="687.5" ></text>
</g>
<g >
<title>ipv4_entry (9 samples, 0.04%)</title><rect x="1187.5" y="645" width="0.6" height="15.0" fill="rgb(253,103,16)" rx="2" ry="2" />
<text x="1190.52" y="655.5" ></text>
</g>
<g >
<title>ASN1_template_free (7 samples, 0.03%)</title><rect x="935.1" y="277" width="0.4" height="15.0" fill="rgb(251,115,33)" rx="2" ry="2" />
<text x="938.12" y="287.5" ></text>
</g>
<g >
<title>inet_ntop (8 samples, 0.04%)</title><rect x="1183.3" y="613" width="0.5" height="15.0" fill="rgb(214,114,10)" rx="2" ry="2" />
<text x="1186.33" y="623.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="892.7" y="485" width="0.1" height="15.0" fill="rgb(250,47,29)" rx="2" ry="2" />
<text x="895.71" y="495.5" ></text>
</g>
<g >
<title>dealipv4tcppkt (15 samples, 0.07%)</title><rect x="1173.5" y="693" width="0.9" height="15.0" fill="rgb(250,108,19)" rx="2" ry="2" />
<text x="1176.54" y="703.5" ></text>
</g>
<g >
<title>inet_ntop (2 samples, 0.01%)</title><rect x="885.5" y="469" width="0.1" height="15.0" fill="rgb(252,145,51)" rx="2" ry="2" />
<text x="888.46" y="479.5" ></text>
</g>
<g >
<title>[tsg_ddos_sketch.so] (4 samples, 0.02%)</title><rect x="981.3" y="533" width="0.2" height="15.0" fill="rgb(251,206,35)" rx="2" ry="2" />
<text x="984.31" y="543.5" ></text>
</g>
<g >
<title>CAPTURE_TCP_PACKET_ENTRY (19 samples, 0.09%)</title><rect x="947.4" y="485" width="1.1" height="15.0" fill="rgb(237,125,10)" rx="2" ry="2" />
<text x="950.39" y="495.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="934.8" y="213" width="0.1" height="15.0" fill="rgb(223,113,10)" rx="2" ry="2" />
<text x="937.83" y="223.5" ></text>
</g>
<g >
<title>gtp_entry (80 samples, 0.40%)</title><rect x="781.8" y="693" width="4.7" height="15.0" fill="rgb(215,160,23)" rx="2" ry="2" />
<text x="784.76" y="703.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (19 samples, 0.09%)</title><rect x="1179.2" y="549" width="1.1" height="15.0" fill="rgb(207,123,51)" rx="2" ry="2" />
<text x="1182.21" y="559.5" ></text>
</g>
<g >
<title>region_compile (49 samples, 0.24%)</title><rect x="868.6" y="725" width="2.9" height="15.0" fill="rgb(212,17,15)" rx="2" ry="2" />
<text x="871.65" y="735.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (51 samples, 0.25%)</title><rect x="882.5" y="533" width="3.0" height="15.0" fill="rgb(207,198,24)" rx="2" ry="2" />
<text x="885.45" y="543.5" ></text>
</g>
<g >
<title>dealipv6udppkt (3 samples, 0.01%)</title><rect x="1175.9" y="645" width="0.2" height="15.0" fill="rgb(243,60,5)" rx="2" ry="2" />
<text x="1178.90" y="655.5" ></text>
</g>
<g >
<title>CNaiveIntervalIndex::Find (2 samples, 0.01%)</title><rect x="881.7" y="389" width="0.1" height="15.0" fill="rgb(253,210,45)" rx="2" ry="2" />
<text x="884.68" y="399.5" ></text>
</g>
<g >
<title>http_findAndDoWithEntity (5 samples, 0.02%)</title><rect x="1081.5" y="437" width="0.3" height="15.0" fill="rgb(228,66,35)" rx="2" ry="2" />
<text x="1084.47" y="447.5" ></text>
</g>
<g >
<title>gtp_entry (2,042 samples, 10.21%)</title><rect x="999.2" y="597" width="120.4" height="15.0" fill="rgb(240,148,35)" rx="2" ry="2" />
<text x="1002.18" y="607.5" >gtp_entry</text>
</g>
<g >
<title>Maat_full_scan_string_detail (396 samples, 1.98%)</title><rect x="786.5" y="741" width="23.3" height="15.0" fill="rgb(221,92,40)" rx="2" ry="2" />
<text x="789.48" y="751.5" >M..</text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (4 samples, 0.02%)</title><rect x="1188.1" y="341" width="0.2" height="15.0" fill="rgb(244,100,4)" rx="2" ry="2" />
<text x="1191.05" y="351.5" ></text>
</g>
<g >
<title>[libprotoident.so] (20 samples, 0.10%)</title><rect x="955.5" y="453" width="1.2" height="15.0" fill="rgb(207,86,1)" rx="2" ry="2" />
<text x="958.53" y="463.5" ></text>
</g>
<g >
<title>pthread_rwlock_rdlock (2 samples, 0.01%)</title><rect x="957.5" y="421" width="0.1" height="15.0" fill="rgb(208,36,42)" rx="2" ry="2" />
<text x="960.48" y="431.5" ></text>
</g>
<g >
<title>free (4 samples, 0.02%)</title><rect x="1018.8" y="485" width="0.3" height="15.0" fill="rgb(238,204,30)" rx="2" ry="2" />
<text x="1021.82" y="495.5" ></text>
</g>
<g >
<title>process_ipv4_pkt (6 samples, 0.03%)</title><rect x="981.7" y="613" width="0.4" height="15.0" fill="rgb(245,50,51)" rx="2" ry="2" />
<text x="984.72" y="623.5" ></text>
</g>
<g >
<title>_IO_vsnprintf (3 samples, 0.01%)</title><rect x="964.3" y="469" width="0.2" height="15.0" fill="rgb(216,6,8)" rx="2" ry="2" />
<text x="967.32" y="479.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (3 samples, 0.01%)</title><rect x="1083.7" y="277" width="0.2" height="15.0" fill="rgb(211,130,45)" rx="2" ry="2" />
<text x="1086.71" y="287.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (22 samples, 0.11%)</title><rect x="882.9" y="357" width="1.3" height="15.0" fill="rgb(244,12,51)" rx="2" ry="2" />
<text x="885.86" y="367.5" ></text>
</g>
<g >
<title>http_doWithStartLine (2 samples, 0.01%)</title><rect x="1177.9" y="581" width="0.1" height="15.0" fill="rgb(250,1,0)" rx="2" ry="2" />
<text x="1180.91" y="591.5" ></text>
</g>
<g >
<title>CRYPTO_free (2 samples, 0.01%)</title><rect x="935.6" y="277" width="0.1" height="15.0" fill="rgb(219,15,28)" rx="2" ry="2" />
<text x="938.60" y="287.5" ></text>
</g>
<g >
<title>tsg_get_ip_location (2 samples, 0.01%)</title><rect x="940.2" y="437" width="0.1" height="15.0" fill="rgb(243,94,53)" rx="2" ry="2" />
<text x="943.20" y="447.5" ></text>
</g>
<g >
<title>CIPMaskIndex::Find (65 samples, 0.32%)</title><rect x="875.1" y="709" width="3.8" height="15.0" fill="rgb(219,184,19)" rx="2" ry="2" />
<text x="878.08" y="719.5" ></text>
</g>
<g >
<title>Maat_rule_get_ex_data (2 samples, 0.01%)</title><rect x="939.9" y="453" width="0.1" height="15.0" fill="rgb(209,150,46)" rx="2" ry="2" />
<text x="942.90" y="463.5" ></text>
</g>
<g >
<title>del_stream_by_time (26 samples, 0.13%)</title><rect x="963.3" y="581" width="1.5" height="15.0" fill="rgb(214,73,22)" rx="2" ry="2" />
<text x="966.26" y="591.5" ></text>
</g>
<g >
<title>docanalyze_parsestream (2 samples, 0.01%)</title><rect x="933.6" y="357" width="0.1" height="15.0" fill="rgb(235,118,41)" rx="2" ry="2" />
<text x="936.59" y="367.5" ></text>
</g>
<g >
<title>gtp_entry (9 samples, 0.04%)</title><rect x="1187.5" y="613" width="0.6" height="15.0" fill="rgb(226,80,5)" rx="2" ry="2" />
<text x="1190.52" y="623.5" ></text>
</g>
<g >
<title>process_ipv4_pkt (28 samples, 0.14%)</title><rect x="1116.0" y="565" width="1.6" height="15.0" fill="rgb(217,191,37)" rx="2" ry="2" />
<text x="1118.97" y="575.5" ></text>
</g>
<g >
<title>http_judgeContentEncoding (4 samples, 0.02%)</title><rect x="933.5" y="389" width="0.2" height="15.0" fill="rgb(216,194,18)" rx="2" ry="2" />
<text x="936.47" y="399.5" ></text>
</g>
<g >
<title>dealipv4tcppkt (4 samples, 0.02%)</title><rect x="1177.9" y="725" width="0.2" height="15.0" fill="rgb(223,215,22)" rx="2" ry="2" />
<text x="1180.91" y="735.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (33 samples, 0.16%)</title><rect x="783.9" y="581" width="2.0" height="15.0" fill="rgb(219,103,7)" rx="2" ry="2" />
<text x="786.95" y="591.5" ></text>
</g>
<g >
<title>plugin_call_appentry (3 samples, 0.01%)</title><rect x="1083.9" y="341" width="0.2" height="15.0" fill="rgb(248,118,0)" rx="2" ry="2" />
<text x="1086.89" y="351.5" ></text>
</g>
<g >
<title>tsg_ddos_sketch_udp_entry (15 samples, 0.07%)</title><rect x="1114.9" y="501" width="0.8" height="15.0" fill="rgb(247,148,33)" rx="2" ry="2" />
<text x="1117.85" y="511.5" ></text>
</g>
<g >
<title>tsg_get_umts_user_info (5 samples, 0.02%)</title><rect x="939.1" y="437" width="0.3" height="15.0" fill="rgb(214,72,17)" rx="2" ry="2" />
<text x="942.14" y="447.5" ></text>
</g>
<g >
<title>counting_bloom_check (36 samples, 0.18%)</title><rect x="944.1" y="501" width="2.1" height="15.0" fill="rgb(208,10,0)" rx="2" ry="2" />
<text x="947.09" y="511.5" ></text>
</g>
<g >
<title>[tsg_master.so] (4 samples, 0.02%)</title><rect x="890.1" y="325" width="0.3" height="15.0" fill="rgb(213,35,16)" rx="2" ry="2" />
<text x="893.12" y="335.5" ></text>
</g>
<g >
<title>dealipv4udppkt (9 samples, 0.04%)</title><rect x="1187.5" y="629" width="0.6" height="15.0" fill="rgb(253,113,38)" rx="2" ry="2" />
<text x="1190.52" y="639.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (4 samples, 0.02%)</title><rect x="1082.7" y="325" width="0.2" height="15.0" fill="rgb(209,136,50)" rx="2" ry="2" />
<text x="1085.71" y="335.5" ></text>
</g>
<g >
<title>copy_stream_info_to_heap_single_layer (3 samples, 0.01%)</title><rect x="931.3" y="501" width="0.2" height="15.0" fill="rgb(236,18,13)" rx="2" ry="2" />
<text x="934.29" y="511.5" ></text>
</g>
<g >
<title>APP_SKETCH_TCP_PLUG_ENTRY (11 samples, 0.05%)</title><rect x="1178.1" y="581" width="0.7" height="15.0" fill="rgb(242,8,28)" rx="2" ry="2" />
<text x="1181.14" y="591.5" ></text>
</g>
<g >
<title>Maat_table_runtime_perf_stat (2 samples, 0.01%)</title><rect x="970.5" y="469" width="0.1" height="15.0" fill="rgb(238,229,46)" rx="2" ry="2" />
<text x="973.46" y="479.5" ></text>
</g>
<g >
<title>[tsg_master.so] (4 samples, 0.02%)</title><rect x="939.2" y="421" width="0.2" height="15.0" fill="rgb(231,149,40)" rx="2" ry="2" />
<text x="942.19" y="431.5" ></text>
</g>
<g >
<title>TLD_append_streaminfo (6 samples, 0.03%)</title><rect x="894.6" y="613" width="0.4" height="15.0" fill="rgb(231,15,13)" rx="2" ry="2" />
<text x="897.60" y="623.5" ></text>
</g>
<g >
<title>Maat_table_runtime_perf_stat (2 samples, 0.01%)</title><rect x="1183.2" y="597" width="0.1" height="15.0" fill="rgb(224,141,50)" rx="2" ry="2" />
<text x="1186.22" y="607.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="1185.4" y="613" width="0.1" height="15.0" fill="rgb(237,180,43)" rx="2" ry="2" />
<text x="1188.40" y="623.5" ></text>
</g>
<g >
<title>APP_SKETCH_UDP_PLUG_ENTRY (10 samples, 0.05%)</title><rect x="1111.5" y="501" width="0.6" height="15.0" fill="rgb(254,66,54)" rx="2" ry="2" />
<text x="1114.49" y="511.5" ></text>
</g>
<g >
<title>stream_process_tcp (6 samples, 0.03%)</title><rect x="958.9" y="533" width="0.3" height="15.0" fill="rgb(250,187,43)" rx="2" ry="2" />
<text x="961.90" y="543.5" ></text>
</g>
<g >
<title>tsg_scan_nesting_addr (3 samples, 0.01%)</title><rect x="892.3" y="501" width="0.2" height="15.0" fill="rgb(228,182,35)" rx="2" ry="2" />
<text x="895.30" y="511.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (14 samples, 0.07%)</title><rect x="894.1" y="677" width="0.9" height="15.0" fill="rgb(223,175,22)" rx="2" ry="2" />
<text x="897.13" y="687.5" ></text>
</g>
<g >
<title>project_req_get_struct (3 samples, 0.01%)</title><rect x="1062.5" y="437" width="0.2" height="15.0" fill="rgb(206,227,13)" rx="2" ry="2" />
<text x="1065.53" y="447.5" ></text>
</g>
<g >
<title>dealipv6udppkt (2 samples, 0.01%)</title><rect x="892.9" y="613" width="0.1" height="15.0" fill="rgb(244,207,29)" rx="2" ry="2" />
<text x="895.89" y="623.5" ></text>
</g>
<g >
<title>udp_free_stream (4 samples, 0.02%)</title><rect x="886.1" y="613" width="0.2" height="15.0" fill="rgb(225,126,51)" rx="2" ry="2" />
<text x="889.11" y="623.5" ></text>
</g>
<g >
<title>project_requirement_destroy (2 samples, 0.01%)</title><rect x="1110.8" y="501" width="0.2" height="15.0" fill="rgb(232,29,5)" rx="2" ry="2" />
<text x="1113.84" y="511.5" ></text>
</g>
<g >
<title>ssl_analyseSsl (29 samples, 0.14%)</title><rect x="1082.4" y="437" width="1.7" height="15.0" fill="rgb(228,171,35)" rx="2" ry="2" />
<text x="1085.35" y="447.5" ></text>
</g>
<g >
<title>[sapp] (2 samples, 0.01%)</title><rect x="1188.7" y="581" width="0.1" height="15.0" fill="rgb(232,173,33)" rx="2" ry="2" />
<text x="1191.70" y="591.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.5] (2 samples, 0.01%)</title><rect x="892.2" y="453" width="0.1" height="15.0" fill="rgb(225,85,15)" rx="2" ry="2" />
<text x="895.18" y="463.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (3 samples, 0.01%)</title><rect x="934.8" y="293" width="0.2" height="15.0" fill="rgb(242,137,8)" rx="2" ry="2" />
<text x="937.83" y="303.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (6 samples, 0.03%)</title><rect x="882.9" y="229" width="0.4" height="15.0" fill="rgb(247,195,49)" rx="2" ry="2" />
<text x="885.92" y="239.5" ></text>
</g>
<g >
<title>stream_process_tcp (23 samples, 0.11%)</title><rect x="779.9" y="613" width="1.4" height="15.0" fill="rgb(208,177,54)" rx="2" ry="2" />
<text x="782.93" y="623.5" ></text>
</g>
<g >
<title>ssl_analyseHandShake (42 samples, 0.21%)</title><rect x="888.3" y="469" width="2.5" height="15.0" fill="rgb(206,8,34)" rx="2" ry="2" />
<text x="891.29" y="479.5" ></text>
</g>
<g >
<title>FS_operate (3 samples, 0.01%)</title><rect x="1111.6" y="485" width="0.2" height="15.0" fill="rgb(240,228,41)" rx="2" ry="2" />
<text x="1114.61" y="495.5" ></text>
</g>
<g >
<title>stream_process (6 samples, 0.03%)</title><rect x="958.9" y="517" width="0.3" height="15.0" fill="rgb(228,171,29)" rx="2" ry="2" />
<text x="961.90" y="527.5" ></text>
</g>
<g >
<title>[sapp] (560 samples, 2.80%)</title><rect x="1017.1" y="517" width="33.0" height="15.0" fill="rgb(211,113,33)" rx="2" ry="2" />
<text x="1020.11" y="527.5" >[s..</text>
</g>
<g >
<title>tsg_get_umts_user_info (2 samples, 0.01%)</title><rect x="940.4" y="437" width="0.2" height="15.0" fill="rgb(230,190,11)" rx="2" ry="2" />
<text x="943.43" y="447.5" ></text>
</g>
<g >
<title>vfprintf (5 samples, 0.02%)</title><rect x="882.5" y="437" width="0.2" height="15.0" fill="rgb(243,82,28)" rx="2" ry="2" />
<text x="885.45" y="447.5" ></text>
</g>
<g >
<title>llist_add_batch (4 samples, 0.02%)</title><rect x="891.7" y="149" width="0.2" height="15.0" fill="rgb(241,38,5)" rx="2" ry="2" />
<text x="894.71" y="159.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (5 samples, 0.02%)</title><rect x="1177.5" y="581" width="0.3" height="15.0" fill="rgb(251,89,21)" rx="2" ry="2" />
<text x="1180.50" y="591.5" ></text>
</g>
<g >
<title>deal_gtp_calc_gtp_hdr_len (5 samples, 0.02%)</title><rect x="1000.9" y="581" width="0.3" height="15.0" fill="rgb(215,221,49)" rx="2" ry="2" />
<text x="1003.89" y="591.5" ></text>
</g>
<g >
<title>udp_free_stream (2 samples, 0.01%)</title><rect x="786.0" y="613" width="0.1" height="15.0" fill="rgb(238,53,42)" rx="2" ry="2" />
<text x="788.95" y="623.5" ></text>
</g>
<g >
<title>[tsg_master.so] (6 samples, 0.03%)</title><rect x="1176.3" y="549" width="0.3" height="15.0" fill="rgb(218,125,29)" rx="2" ry="2" />
<text x="1179.26" y="559.5" ></text>
</g>
<g >
<title>operator&gt;= (3 samples, 0.01%)</title><rect x="880.2" y="693" width="0.1" height="15.0" fill="rgb(208,102,49)" rx="2" ry="2" />
<text x="883.15" y="703.5" ></text>
</g>
<g >
<title>http_judgeContentEncoding (4 samples, 0.02%)</title><rect x="1081.5" y="389" width="0.3" height="15.0" fill="rgb(221,44,13)" rx="2" ry="2" />
<text x="1084.53" y="399.5" ></text>
</g>
<g >
<title>Maat_ip_plugin_get_EX_data (4 samples, 0.02%)</title><rect x="1113.0" y="437" width="0.3" height="15.0" fill="rgb(217,223,37)" rx="2" ry="2" />
<text x="1116.02" y="447.5" ></text>
</g>
<g >
<title>native_flush_tlb_others (12 samples, 0.06%)</title><rect x="891.4" y="181" width="0.7" height="15.0" fill="rgb(231,150,19)" rx="2" ry="2" />
<text x="894.42" y="191.5" ></text>
</g>
<g >
<title>project_requirement_destroy (9 samples, 0.04%)</title><rect x="963.6" y="549" width="0.5" height="15.0" fill="rgb(250,16,48)" rx="2" ry="2" />
<text x="966.61" y="559.5" ></text>
</g>
<g >
<title>[sapp] (14 samples, 0.07%)</title><rect x="949.1" y="549" width="0.8" height="15.0" fill="rgb(234,214,40)" rx="2" ry="2" />
<text x="952.10" y="559.5" ></text>
</g>
<g >
<title>FS_operate (3 samples, 0.01%)</title><rect x="963.0" y="453" width="0.1" height="15.0" fill="rgb(249,97,21)" rx="2" ry="2" />
<text x="965.97" y="463.5" ></text>
</g>
<g >
<title>APP_SKETCH_TCP_PLUG_ENTRY (19 samples, 0.09%)</title><rect x="1179.2" y="565" width="1.1" height="15.0" fill="rgb(238,214,16)" rx="2" ry="2" />
<text x="1182.21" y="575.5" ></text>
</g>
<g >
<title>vfprintf (2 samples, 0.01%)</title><rect x="894.7" y="501" width="0.1" height="15.0" fill="rgb(214,137,53)" rx="2" ry="2" />
<text x="897.72" y="511.5" ></text>
</g>
<g >
<title>system_capture_packet_entry (64 samples, 0.32%)</title><rect x="1138.2" y="533" width="3.7" height="15.0" fill="rgb(217,121,51)" rx="2" ry="2" />
<text x="1141.15" y="543.5" ></text>
</g>
<g >
<title>CDeflateFormat::AddDocData (2 samples, 0.01%)</title><rect x="933.6" y="341" width="0.1" height="15.0" fill="rgb(226,110,15)" rx="2" ry="2" />
<text x="936.59" y="351.5" ></text>
</g>
<g >
<title>ipv6_entry (2 samples, 0.01%)</title><rect x="892.9" y="629" width="0.1" height="15.0" fill="rgb(248,201,26)" rx="2" ry="2" />
<text x="895.89" y="639.5" ></text>
</g>
<g >
<title>stream_process (7 samples, 0.03%)</title><rect x="1187.6" y="517" width="0.4" height="15.0" fill="rgb(228,184,44)" rx="2" ry="2" />
<text x="1190.58" y="527.5" ></text>
</g>
<g >
<title>_int_malloc (4 samples, 0.02%)</title><rect x="859.3" y="677" width="0.3" height="15.0" fill="rgb(205,34,23)" rx="2" ry="2" />
<text x="862.33" y="687.5" ></text>
</g>
<g >
<title>ipv6_entry (2 samples, 0.01%)</title><rect x="781.6" y="677" width="0.2" height="15.0" fill="rgb(206,47,37)" rx="2" ry="2" />
<text x="784.65" y="687.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.5] (9 samples, 0.04%)</title><rect x="895.0" y="565" width="0.5" height="15.0" fill="rgb(227,126,33)" rx="2" ry="2" />
<text x="897.96" y="575.5" ></text>
</g>
<g >
<title>ASN1_item_ex_i2d (3 samples, 0.01%)</title><rect x="1083.7" y="357" width="0.2" height="15.0" fill="rgb(229,181,2)" rx="2" ry="2" />
<text x="1086.71" y="367.5" ></text>
</g>
<g >
<title>parse_dns_protocol (71 samples, 0.35%)</title><rect x="1182.3" y="741" width="4.2" height="15.0" fill="rgb(233,218,15)" rx="2" ry="2" />
<text x="1185.33" y="751.5" ></text>
</g>
<g >
<title>stream_process_tcp (33 samples, 0.16%)</title><rect x="783.9" y="613" width="2.0" height="15.0" fill="rgb(242,79,27)" rx="2" ry="2" />
<text x="786.95" y="623.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (69 samples, 0.34%)</title><rect x="1105.0" y="501" width="4.1" height="15.0" fill="rgb(205,98,7)" rx="2" ry="2" />
<text x="1108.00" y="511.5" ></text>
</g>
<g >
<title>tsg_ddos_sketch_udp_entry (11 samples, 0.05%)</title><rect x="962.5" y="501" width="0.6" height="15.0" fill="rgb(244,27,49)" rx="2" ry="2" />
<text x="965.49" y="511.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (22 samples, 0.11%)</title><rect x="882.9" y="309" width="1.3" height="15.0" fill="rgb(251,44,18)" rx="2" ry="2" />
<text x="885.86" y="319.5" ></text>
</g>
<g >
<title>SSL_ENTRY (2 samples, 0.01%)</title><rect x="1178.8" y="581" width="0.1" height="15.0" fill="rgb(239,125,36)" rx="2" ry="2" />
<text x="1181.79" y="591.5" ></text>
</g>
<g >
<title>operator&lt;= (5 samples, 0.02%)</title><rect x="880.6" y="693" width="0.3" height="15.0" fill="rgb(249,159,2)" rx="2" ry="2" />
<text x="883.62" y="703.5" ></text>
</g>
<g >
<title>[sapp] (107 samples, 0.53%)</title><rect x="985.0" y="613" width="6.3" height="15.0" fill="rgb(250,68,21)" rx="2" ry="2" />
<text x="988.03" y="623.5" ></text>
</g>
<g >
<title>http_doWithGzipData (2 samples, 0.01%)</title><rect x="933.6" y="373" width="0.1" height="15.0" fill="rgb(220,143,8)" rx="2" ry="2" />
<text x="936.59" y="383.5" ></text>
</g>
<g >
<title>stream_process_tcp_allpkt (3 samples, 0.01%)</title><rect x="892.5" y="565" width="0.2" height="15.0" fill="rgb(220,53,37)" rx="2" ry="2" />
<text x="895.48" y="575.5" ></text>
</g>
<g >
<title>http_doWithEntity (3 samples, 0.01%)</title><rect x="894.2" y="613" width="0.2" height="15.0" fill="rgb(223,39,26)" rx="2" ry="2" />
<text x="897.25" y="623.5" ></text>
</g>
<g >
<title>sprintf (3 samples, 0.01%)</title><rect x="892.5" y="453" width="0.2" height="15.0" fill="rgb(238,12,18)" rx="2" ry="2" />
<text x="895.48" y="463.5" ></text>
</g>
<g >
<title>counting_bloom_check (4 samples, 0.02%)</title><rect x="951.1" y="517" width="0.2" height="15.0" fill="rgb(238,218,5)" rx="2" ry="2" />
<text x="954.11" y="527.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="1188.7" y="677" width="0.1" height="15.0" fill="rgb(214,159,42)" rx="2" ry="2" />
<text x="1191.70" y="687.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (6 samples, 0.03%)</title><rect x="1082.6" y="357" width="0.3" height="15.0" fill="rgb(236,107,11)" rx="2" ry="2" />
<text x="1085.59" y="367.5" ></text>
</g>
<g >
<title>stream_process_ipv6_frag (5 samples, 0.02%)</title><rect x="1154.0" y="613" width="0.3" height="15.0" fill="rgb(233,94,23)" rx="2" ry="2" />
<text x="1156.96" y="623.5" ></text>
</g>
<g >
<title>ssl_analyseHandShake (35 samples, 0.17%)</title><rect x="882.9" y="469" width="2.0" height="15.0" fill="rgb(234,140,37)" rx="2" ry="2" />
<text x="885.86" y="479.5" ></text>
</g>
<g >
<title>plugin_process_data (8 samples, 0.04%)</title><rect x="890.1" y="389" width="0.5" height="15.0" fill="rgb(247,82,40)" rx="2" ry="2" />
<text x="893.12" y="399.5" ></text>
</g>
<g >
<title>sapp_dup_pkt_identify_tcp (41 samples, 0.20%)</title><rect x="943.8" y="533" width="2.4" height="15.0" fill="rgb(209,209,23)" rx="2" ry="2" />
<text x="946.80" y="543.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (130 samples, 0.65%)</title><rect x="931.9" y="485" width="7.7" height="15.0" fill="rgb(245,3,33)" rx="2" ry="2" />
<text x="934.94" y="495.5" ></text>
</g>
<g >
<title>http_callPluginField (2 samples, 0.01%)</title><rect x="894.2" y="581" width="0.2" height="15.0" fill="rgb(241,36,12)" rx="2" ry="2" />
<text x="897.25" y="591.5" ></text>
</g>
<g >
<title>std::_Rb_tree_increment (2 samples, 0.01%)</title><rect x="937.5" y="421" width="0.2" height="15.0" fill="rgb(246,123,31)" rx="2" ry="2" />
<text x="940.54" y="431.5" ></text>
</g>
<g >
<title>ipv6_entry (80 samples, 0.40%)</title><rect x="958.5" y="581" width="4.8" height="15.0" fill="rgb(214,137,49)" rx="2" ry="2" />
<text x="961.54" y="591.5" ></text>
</g>
<g >
<title>streamaddlist (3 samples, 0.01%)</title><rect x="981.5" y="597" width="0.2" height="15.0" fill="rgb(208,162,21)" rx="2" ry="2" />
<text x="984.55" y="607.5" ></text>
</g>
<g >
<title>Maat_set_scan_status (4 samples, 0.02%)</title><rect x="893.6" y="565" width="0.2" height="15.0" fill="rgb(249,94,15)" rx="2" ry="2" />
<text x="896.60" y="575.5" ></text>
</g>
<g >
<title>Maat_full_scan_string (2 samples, 0.01%)</title><rect x="887.5" y="565" width="0.1" height="15.0" fill="rgb(216,137,22)" rx="2" ry="2" />
<text x="890.46" y="575.5" ></text>
</g>
<g >
<title>stream_addr_list_ntop_outward (2 samples, 0.01%)</title><rect x="1188.7" y="597" width="0.1" height="15.0" fill="rgb(231,19,16)" rx="2" ry="2" />
<text x="1191.70" y="607.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (4 samples, 0.02%)</title><rect x="1188.1" y="357" width="0.2" height="15.0" fill="rgb(220,83,40)" rx="2" ry="2" />
<text x="1191.05" y="367.5" ></text>
</g>
<g >
<title>__snprintf (2 samples, 0.01%)</title><rect x="887.9" y="533" width="0.1" height="15.0" fill="rgb(232,94,31)" rx="2" ry="2" />
<text x="890.88" y="543.5" ></text>
</g>
<g >
<title>ssl_analyseStream (38 samples, 0.19%)</title><rect x="934.1" y="453" width="2.2" height="15.0" fill="rgb(233,151,27)" rx="2" ry="2" />
<text x="937.06" y="463.5" ></text>
</g>
<g >
<title>ASN1_item_d2i (11 samples, 0.05%)</title><rect x="934.4" y="373" width="0.6" height="15.0" fill="rgb(244,117,41)" rx="2" ry="2" />
<text x="937.36" y="383.5" ></text>
</g>
<g >
<title>tsg_get_ip_asn (3 samples, 0.01%)</title><rect x="961.2" y="453" width="0.2" height="15.0" fill="rgb(228,53,1)" rx="2" ry="2" />
<text x="964.20" y="463.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="889.8" y="373" width="0.1" height="15.0" fill="rgb(224,4,39)" rx="2" ry="2" />
<text x="892.77" y="383.5" ></text>
</g>
<g >
<title>Maat_table_runtime_get (3 samples, 0.01%)</title><rect x="788.3" y="725" width="0.1" height="15.0" fill="rgb(247,55,49)" rx="2" ry="2" />
<text x="791.25" y="735.5" ></text>
</g>
<g >
<title>tsg_get_umts_user_info (2 samples, 0.01%)</title><rect x="1113.4" y="453" width="0.1" height="15.0" fill="rgb(249,27,38)" rx="2" ry="2" />
<text x="1116.38" y="463.5" ></text>
</g>
<g >
<title>Maat_clean_status (2 samples, 0.01%)</title><rect x="953.8" y="469" width="0.1" height="15.0" fill="rgb(219,107,26)" rx="2" ry="2" />
<text x="956.76" y="479.5" ></text>
</g>
<g >
<title>[tsg_ddos_sketch.so] (2 samples, 0.01%)</title><rect x="1119.5" y="485" width="0.1" height="15.0" fill="rgb(242,183,48)" rx="2" ry="2" />
<text x="1122.51" y="495.5" ></text>
</g>
<g >
<title>[tsg_ddos_sketch.so] (11 samples, 0.05%)</title><rect x="962.5" y="485" width="0.6" height="15.0" fill="rgb(209,106,36)" rx="2" ry="2" />
<text x="965.49" y="495.5" ></text>
</g>
<g >
<title>__clock_gettime (13 samples, 0.06%)</title><rect x="857.4" y="725" width="0.8" height="15.0" fill="rgb(217,79,27)" rx="2" ry="2" />
<text x="860.44" y="735.5" ></text>
</g>
<g >
<title>tsg_send_log (4 samples, 0.02%)</title><rect x="895.7" y="645" width="0.3" height="15.0" fill="rgb(227,43,27)" rx="2" ry="2" />
<text x="898.72" y="655.5" ></text>
</g>
<g >
<title>stream_process (27 samples, 0.13%)</title><rect x="939.6" y="501" width="1.6" height="15.0" fill="rgb(245,109,9)" rx="2" ry="2" />
<text x="942.61" y="511.5" ></text>
</g>
<g >
<title>vfprintf (2 samples, 0.01%)</title><rect x="887.9" y="501" width="0.1" height="15.0" fill="rgb(222,110,6)" rx="2" ry="2" />
<text x="890.88" y="511.5" ></text>
</g>
<g >
<title>dealipv4udppkt (32 samples, 0.16%)</title><rect x="779.9" y="709" width="1.9" height="15.0" fill="rgb(240,18,43)" rx="2" ry="2" />
<text x="782.88" y="719.5" ></text>
</g>
<g >
<title>tsg_get_ip_location (3 samples, 0.01%)</title><rect x="939.0" y="437" width="0.1" height="15.0" fill="rgb(235,66,43)" rx="2" ry="2" />
<text x="941.96" y="447.5" ></text>
</g>
<g >
<title>stream_process_udp (18 samples, 0.09%)</title><rect x="893.0" y="645" width="1.1" height="15.0" fill="rgb(246,20,54)" rx="2" ry="2" />
<text x="896.01" y="655.5" ></text>
</g>
<g >
<title>stream_process (3 samples, 0.01%)</title><rect x="1175.3" y="581" width="0.1" height="15.0" fill="rgb(234,50,26)" rx="2" ry="2" />
<text x="1178.25" y="591.5" ></text>
</g>
<g >
<title>sapp_dup_pkt_mark_v4 (22 samples, 0.11%)</title><rect x="1021.1" y="485" width="1.3" height="15.0" fill="rgb(253,140,36)" rx="2" ry="2" />
<text x="1024.07" y="495.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (14 samples, 0.07%)</title><rect x="935.0" y="325" width="0.8" height="15.0" fill="rgb(252,134,15)" rx="2" ry="2" />
<text x="938.01" y="335.5" ></text>
</g>
<g >
<title>FS_operate (2 samples, 0.01%)</title><rect x="953.6" y="469" width="0.2" height="15.0" fill="rgb(215,17,41)" rx="2" ry="2" />
<text x="956.65" y="479.5" ></text>
</g>
<g >
<title>sprintf (5 samples, 0.02%)</title><rect x="885.2" y="453" width="0.3" height="15.0" fill="rgb(226,42,13)" rx="2" ry="2" />
<text x="888.16" y="463.5" ></text>
</g>
<g >
<title>[sapp] (19 samples, 0.09%)</title><rect x="1187.5" y="725" width="1.1" height="15.0" fill="rgb(218,212,46)" rx="2" ry="2" />
<text x="1190.52" y="735.5" ></text>
</g>
<g >
<title>ssl_doWithCertificateDetail (8 samples, 0.04%)</title><rect x="884.3" y="437" width="0.5" height="15.0" fill="rgb(212,40,18)" rx="2" ry="2" />
<text x="887.28" y="447.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (8 samples, 0.04%)</title><rect x="882.9" y="245" width="0.4" height="15.0" fill="rgb(229,198,23)" rx="2" ry="2" />
<text x="885.86" y="255.5" ></text>
</g>
<g >
<title>plugin_process_data (2 samples, 0.01%)</title><rect x="882.7" y="405" width="0.2" height="15.0" fill="rgb(246,177,3)" rx="2" ry="2" />
<text x="885.75" y="415.5" ></text>
</g>
<g >
<title>lrustream (14 samples, 0.07%)</title><rect x="1095.1" y="533" width="0.8" height="15.0" fill="rgb(223,225,8)" rx="2" ry="2" />
<text x="1098.09" y="543.5" ></text>
</g>
<g >
<title>fn_pGetSSLInfo (5 samples, 0.02%)</title><rect x="1187.6" y="405" width="0.3" height="15.0" fill="rgb(242,61,53)" rx="2" ry="2" />
<text x="1190.58" y="415.5" ></text>
</g>
<g >
<title>findstreamindex (15 samples, 0.07%)</title><rect x="949.9" y="549" width="0.9" height="15.0" fill="rgb(205,160,8)" rx="2" ry="2" />
<text x="952.93" y="559.5" ></text>
</g>
<g >
<title>vfprintf (3 samples, 0.01%)</title><rect x="892.5" y="421" width="0.2" height="15.0" fill="rgb(238,173,48)" rx="2" ry="2" />
<text x="895.48" y="431.5" ></text>
</g>
<g >
<title>copy_stream_info_to_heap (3 samples, 0.01%)</title><rect x="1054.3" y="501" width="0.2" height="15.0" fill="rgb(215,87,18)" rx="2" ry="2" />
<text x="1057.27" y="511.5" ></text>
</g>
<g >
<title>Maat_table_runtime_perf_stat (15 samples, 0.07%)</title><rect x="788.4" y="725" width="0.9" height="15.0" fill="rgb(224,15,10)" rx="2" ry="2" />
<text x="791.43" y="735.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.5] (633 samples, 3.16%)</title><rect x="820.1" y="725" width="37.3" height="15.0" fill="rgb(235,159,45)" rx="2" ry="2" />
<text x="823.10" y="735.5" >[li..</text>
</g>
<g >
<title>dealipv4udppkt (9 samples, 0.04%)</title><rect x="895.0" y="677" width="0.5" height="15.0" fill="rgb(233,59,20)" rx="2" ry="2" />
<text x="897.96" y="687.5" ></text>
</g>
<g >
<title>stream_process_tcp_allpkt (27 samples, 0.13%)</title><rect x="939.6" y="517" width="1.6" height="15.0" fill="rgb(231,84,4)" rx="2" ry="2" />
<text x="942.61" y="527.5" ></text>
</g>
<g >
<title>[app_proto_identify.so] (119 samples, 0.59%)</title><rect x="1146.4" y="549" width="7.0" height="15.0" fill="rgb(246,228,12)" rx="2" ry="2" />
<text x="1149.41" y="559.5" ></text>
</g>
<g >
<title>[sapp] (9 samples, 0.04%)</title><rect x="1188.1" y="549" width="0.5" height="15.0" fill="rgb(216,37,17)" rx="2" ry="2" />
<text x="1191.05" y="559.5" ></text>
</g>
<g >
<title>tsg_send_log (4 samples, 0.02%)</title><rect x="1176.4" y="517" width="0.2" height="15.0" fill="rgb(251,61,12)" rx="2" ry="2" />
<text x="1179.37" y="527.5" ></text>
</g>
<g >
<title>tsg_scan_nesting_addr (14 samples, 0.07%)</title><rect x="1145.6" y="517" width="0.8" height="15.0" fill="rgb(242,187,20)" rx="2" ry="2" />
<text x="1148.58" y="527.5" ></text>
</g>
<g >
<title>dealipv6udppkt (2 samples, 0.01%)</title><rect x="781.6" y="661" width="0.2" height="15.0" fill="rgb(252,111,13)" rx="2" ry="2" />
<text x="784.65" y="671.5" ></text>
</g>
<g >
<title>Maat_set_scan_status (2 samples, 0.01%)</title><rect x="1175.1" y="565" width="0.1" height="15.0" fill="rgb(230,109,0)" rx="2" ry="2" />
<text x="1178.08" y="575.5" ></text>
</g>
<g >
<title>Maat_clean_status (2 samples, 0.01%)</title><rect x="957.8" y="469" width="0.1" height="15.0" fill="rgb(246,193,1)" rx="2" ry="2" />
<text x="960.78" y="479.5" ></text>
</g>
<g >
<title>del_stream_by_time (14 samples, 0.07%)</title><rect x="1095.1" y="517" width="0.8" height="15.0" fill="rgb(212,214,12)" rx="2" ry="2" />
<text x="1098.09" y="527.5" ></text>
</g>
<g >
<title>stream_process_udp (3 samples, 0.01%)</title><rect x="1176.1" y="677" width="0.2" height="15.0" fill="rgb(244,127,48)" rx="2" ry="2" />
<text x="1179.08" y="687.5" ></text>
</g>
<g >
<title>ipv4_entry (20 samples, 0.10%)</title><rect x="881.0" y="661" width="1.2" height="15.0" fill="rgb(226,221,12)" rx="2" ry="2" />
<text x="883.98" y="671.5" ></text>
</g>
<g >
<title>scaling_bloom_check (36 samples, 0.18%)</title><rect x="944.1" y="517" width="2.1" height="15.0" fill="rgb(209,46,5)" rx="2" ry="2" />
<text x="947.09" y="527.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (3 samples, 0.01%)</title><rect x="1179.0" y="629" width="0.1" height="15.0" fill="rgb(206,195,51)" rx="2" ry="2" />
<text x="1181.97" y="639.5" ></text>
</g>
<g >
<title>tsg_get_ip_asn (2 samples, 0.01%)</title><rect x="938.8" y="437" width="0.2" height="15.0" fill="rgb(214,133,27)" rx="2" ry="2" />
<text x="941.84" y="447.5" ></text>
</g>
<g >
<title>stream_process (342 samples, 1.71%)</title><rect x="1133.4" y="581" width="20.2" height="15.0" fill="rgb(215,166,24)" rx="2" ry="2" />
<text x="1136.43" y="591.5" ></text>
</g>
<g >
<title>ssl_analyseStream (4 samples, 0.02%)</title><rect x="1188.1" y="469" width="0.2" height="15.0" fill="rgb(235,25,3)" rx="2" ry="2" />
<text x="1191.05" y="479.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (25 samples, 0.12%)</title><rect x="888.3" y="325" width="1.5" height="15.0" fill="rgb(216,4,52)" rx="2" ry="2" />
<text x="891.29" y="335.5" ></text>
</g>
<g >
<title>ssl_doWithApplicationData (2 samples, 0.01%)</title><rect x="882.7" y="453" width="0.2" height="15.0" fill="rgb(240,160,35)" rx="2" ry="2" />
<text x="885.75" y="463.5" ></text>
</g>
<g >
<title>ipv6_entry (54 samples, 0.27%)</title><rect x="1179.1" y="741" width="3.2" height="15.0" fill="rgb(228,78,33)" rx="2" ry="2" />
<text x="1182.15" y="751.5" ></text>
</g>
<g >
<title>http_host_parser (2 samples, 0.01%)</title><rect x="1085.8" y="453" width="0.1" height="15.0" fill="rgb(214,114,6)" rx="2" ry="2" />
<text x="1088.77" y="463.5" ></text>
</g>
<g >
<title>tsg_ddos_sketch_udp_entry (3 samples, 0.01%)</title><rect x="1153.4" y="549" width="0.2" height="15.0" fill="rgb(236,134,26)" rx="2" ry="2" />
<text x="1156.43" y="559.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (22 samples, 0.11%)</title><rect x="1180.3" y="565" width="1.3" height="15.0" fill="rgb(212,52,0)" rx="2" ry="2" />
<text x="1183.33" y="575.5" ></text>
</g>
<g >
<title>IEEE_8021_entry (25 samples, 0.12%)</title><rect x="881.0" y="677" width="1.5" height="15.0" fill="rgb(250,173,18)" rx="2" ry="2" />
<text x="883.98" y="687.5" ></text>
</g>
<g >
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="948.7" y="485" width="0.2" height="15.0" fill="rgb(209,92,11)" rx="2" ry="2" />
<text x="951.69" y="495.5" ></text>
</g>
<g >
<title>eth_entry (39 samples, 0.19%)</title><rect x="1175.2" y="741" width="2.3" height="15.0" fill="rgb(214,51,50)" rx="2" ry="2" />
<text x="1178.19" y="751.5" ></text>
</g>
<g >
<title>[libMESA_handle_logger.so.2.0] (4 samples, 0.02%)</title><rect x="1178.2" y="533" width="0.2" height="15.0" fill="rgb(254,90,36)" rx="2" ry="2" />
<text x="1181.20" y="543.5" ></text>
</g>
<g >
<title>stream_process (6 samples, 0.03%)</title><rect x="1182.0" y="645" width="0.3" height="15.0" fill="rgb(229,78,34)" rx="2" ry="2" />
<text x="1184.98" y="655.5" ></text>
</g>
<g >
<title>__clock_gettime (9 samples, 0.04%)</title><rect x="789.5" y="725" width="0.6" height="15.0" fill="rgb(222,146,0)" rx="2" ry="2" />
<text x="792.55" y="735.5" ></text>
</g>
<g >
<title>APP_SKETCH_TCP_PLUG_ENTRY (2 samples, 0.01%)</title><rect x="888.1" y="517" width="0.1" height="15.0" fill="rgb(250,57,3)" rx="2" ry="2" />
<text x="891.05" y="527.5" ></text>
</g>
<g >
<title>sapp_mem_free (11 samples, 0.05%)</title><rect x="1019.1" y="485" width="0.6" height="15.0" fill="rgb(232,79,10)" rx="2" ry="2" />
<text x="1022.06" y="495.5" ></text>
</g>
<g >
<title>CRefCountManager::inc_reference_count (7 samples, 0.03%)</title><rect x="809.4" y="677" width="0.4" height="15.0" fill="rgb(217,191,38)" rx="2" ry="2" />
<text x="812.37" y="687.5" ></text>
</g>
<g >
<title>Maat_table_runtime_perf_stat (3 samples, 0.01%)</title><rect x="954.5" y="421" width="0.2" height="15.0" fill="rgb(242,182,45)" rx="2" ry="2" />
<text x="957.53" y="431.5" ></text>
</g>
<g >
<title>checkstreamorder (11 samples, 0.05%)</title><rect x="1094.1" y="485" width="0.6" height="15.0" fill="rgb(249,181,28)" rx="2" ry="2" />
<text x="1097.09" y="495.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (9 samples, 0.04%)</title><rect x="934.5" y="325" width="0.5" height="15.0" fill="rgb(233,30,38)" rx="2" ry="2" />
<text x="937.48" y="335.5" ></text>
</g>
<g >
<title>scaling_bloom_check (91 samples, 0.45%)</title><rect x="1097.0" y="517" width="5.3" height="15.0" fill="rgb(226,59,5)" rx="2" ry="2" />
<text x="1099.98" y="527.5" ></text>
</g>
<g >
<title>hash_func (16 samples, 0.08%)</title><rect x="945.3" y="485" width="0.9" height="15.0" fill="rgb(213,200,26)" rx="2" ry="2" />
<text x="948.27" y="495.5" ></text>
</g>
<g >
<title>hash_func (2 samples, 0.01%)</title><rect x="1111.2" y="501" width="0.1" height="15.0" fill="rgb(238,226,31)" rx="2" ry="2" />
<text x="1114.20" y="511.5" ></text>
</g>
<g >
<title>[fw_ssl_plug.so] (2 samples, 0.01%)</title><rect x="890.4" y="341" width="0.1" height="15.0" fill="rgb(215,197,22)" rx="2" ry="2" />
<text x="893.35" y="351.5" ></text>
</g>
<g >
<title>MESA_handle_runtime_log (2 samples, 0.01%)</title><rect x="940.6" y="421" width="0.1" height="15.0" fill="rgb(208,94,32)" rx="2" ry="2" />
<text x="943.55" y="431.5" ></text>
</g>
<g >
<title>ASN1_STRING_set (2 samples, 0.01%)</title><rect x="888.5" y="85" width="0.1" height="15.0" fill="rgb(232,20,26)" rx="2" ry="2" />
<text x="891.53" y="95.5" ></text>
</g>
<g >
<title>native_safe_halt (14 samples, 0.07%)</title><rect x="1188.9" y="677" width="0.9" height="15.0" fill="rgb(253,96,14)" rx="2" ry="2" />
<text x="1191.94" y="687.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (4 samples, 0.02%)</title><rect x="1187.6" y="277" width="0.2" height="15.0" fill="rgb(251,31,17)" rx="2" ry="2" />
<text x="1190.58" y="287.5" ></text>
</g>
<g >
<title>[tsg_master.so] (7 samples, 0.03%)</title><rect x="1085.4" y="453" width="0.4" height="15.0" fill="rgb(239,166,5)" rx="2" ry="2" />
<text x="1088.36" y="463.5" ></text>
</g>
<g >
<title>rulescan_searchstream (297 samples, 1.48%)</title><rect x="792.3" y="709" width="17.5" height="15.0" fill="rgb(252,146,50)" rx="2" ry="2" />
<text x="795.26" y="719.5" ></text>
</g>
<g >
<title>APP_SKETCH_TCP_PLUG_ENTRY (5 samples, 0.02%)</title><rect x="1177.5" y="597" width="0.3" height="15.0" fill="rgb(243,17,53)" rx="2" ry="2" />
<text x="1180.50" y="607.5" ></text>
</g>
<g >
<title>stream_process (3 samples, 0.01%)</title><rect x="885.8" y="565" width="0.2" height="15.0" fill="rgb(240,87,5)" rx="2" ry="2" />
<text x="888.81" y="575.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="882.0" y="517" width="0.1" height="15.0" fill="rgb(205,228,23)" rx="2" ry="2" />
<text x="884.98" y="527.5" ></text>
</g>
<g >
<title>ASN1_STRING_to_UTF8 (3 samples, 0.01%)</title><rect x="883.3" y="261" width="0.2" height="15.0" fill="rgb(217,153,1)" rx="2" ry="2" />
<text x="886.34" y="271.5" ></text>
</g>
<g >
<title>ipv6_entry (3 samples, 0.01%)</title><rect x="1179.0" y="693" width="0.1" height="15.0" fill="rgb(217,85,19)" rx="2" ry="2" />
<text x="1181.97" y="703.5" ></text>
</g>
<g >
<title>tsg_scan_nesting_addr (3 samples, 0.01%)</title><rect x="1119.0" y="469" width="0.2" height="15.0" fill="rgb(244,12,5)" rx="2" ry="2" />
<text x="1122.04" y="479.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="936.3" y="421" width="0.1" height="15.0" fill="rgb(235,179,17)" rx="2" ry="2" />
<text x="939.30" y="431.5" ></text>
</g>
<g >
<title>stream_process_tcp (7 samples, 0.03%)</title><rect x="1187.6" y="533" width="0.4" height="15.0" fill="rgb(240,104,21)" rx="2" ry="2" />
<text x="1190.58" y="543.5" ></text>
</g>
<g >
<title>set_transport_addr (31 samples, 0.15%)</title><rect x="1131.0" y="597" width="1.8" height="15.0" fill="rgb(241,127,20)" rx="2" ry="2" />
<text x="1134.01" y="607.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (19 samples, 0.09%)</title><rect x="888.6" y="277" width="1.2" height="15.0" fill="rgb(233,58,30)" rx="2" ry="2" />
<text x="891.64" y="287.5" ></text>
</g>
<g >
<title>findstreamindex (3 samples, 0.01%)</title><rect x="1118.7" y="549" width="0.2" height="15.0" fill="rgb(242,123,45)" rx="2" ry="2" />
<text x="1121.69" y="559.5" ></text>
</g>
<g >
<title>[sapp] (4 samples, 0.02%)</title><rect x="1024.2" y="405" width="0.2" height="15.0" fill="rgb(217,91,6)" rx="2" ry="2" />
<text x="1027.19" y="415.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="1181.8" y="581" width="0.1" height="15.0" fill="rgb(226,30,52)" rx="2" ry="2" />
<text x="1184.80" y="591.5" ></text>
</g>
<g >
<title>_int_malloc (3 samples, 0.01%)</title><rect x="884.3" y="293" width="0.2" height="15.0" fill="rgb(227,61,0)" rx="2" ry="2" />
<text x="887.34" y="303.5" ></text>
</g>
<g >
<title>plugin_call_appentry (8 samples, 0.04%)</title><rect x="884.3" y="373" width="0.5" height="15.0" fill="rgb(246,18,39)" rx="2" ry="2" />
<text x="887.28" y="383.5" ></text>
</g>
<g >
<title>plugin_process_close (2 samples, 0.01%)</title><rect x="894.2" y="565" width="0.2" height="15.0" fill="rgb(240,135,31)" rx="2" ry="2" />
<text x="897.25" y="575.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (6 samples, 0.03%)</title><rect x="883.5" y="261" width="0.4" height="15.0" fill="rgb(221,71,52)" rx="2" ry="2" />
<text x="886.51" y="271.5" ></text>
</g>
<g >
<title>[sapp] (13 samples, 0.06%)</title><rect x="1122.0" y="565" width="0.8" height="15.0" fill="rgb(219,193,3)" rx="2" ry="2" />
<text x="1124.99" y="575.5" ></text>
</g>
<g >
<title>plugin_call_appentry (30 samples, 0.15%)</title><rect x="1182.4" y="677" width="1.8" height="15.0" fill="rgb(231,162,30)" rx="2" ry="2" />
<text x="1185.45" y="687.5" ></text>
</g>
<g >
<title>system_capture_packet_entry (2 samples, 0.01%)</title><rect x="1112.2" y="485" width="0.1" height="15.0" fill="rgb(229,95,20)" rx="2" ry="2" />
<text x="1115.20" y="495.5" ></text>
</g>
<g >
<title>TSG_MASTER_UDP_ENTRY (40 samples, 0.20%)</title><rect x="968.5" y="549" width="2.4" height="15.0" fill="rgb(241,118,35)" rx="2" ry="2" />
<text x="971.51" y="559.5" ></text>
</g>
<g >
<title>_IO_default_xsputn (6 samples, 0.03%)</title><rect x="1183.5" y="549" width="0.3" height="15.0" fill="rgb(224,7,37)" rx="2" ry="2" />
<text x="1186.45" y="559.5" ></text>
</g>
<g >
<title>stream_process_tcp_allpkt (28 samples, 0.14%)</title><rect x="1086.2" y="517" width="1.6" height="15.0" fill="rgb(211,186,9)" rx="2" ry="2" />
<text x="1089.19" y="527.5" ></text>
</g>
<g >
<title>sprintf (2 samples, 0.01%)</title><rect x="892.3" y="453" width="0.1" height="15.0" fill="rgb(218,202,14)" rx="2" ry="2" />
<text x="895.30" y="463.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (6 samples, 0.03%)</title><rect x="786.1" y="613" width="0.3" height="15.0" fill="rgb(217,51,39)" rx="2" ry="2" />
<text x="789.07" y="623.5" ></text>
</g>
<g >
<title>bitmap_increment (22 samples, 0.11%)</title><rect x="1021.1" y="421" width="1.3" height="15.0" fill="rgb(236,180,11)" rx="2" ry="2" />
<text x="1024.07" y="431.5" ></text>
</g>
<g >
<title>sprintf (2 samples, 0.01%)</title><rect x="894.6" y="581" width="0.1" height="15.0" fill="rgb(239,213,38)" rx="2" ry="2" />
<text x="897.60" y="591.5" ></text>
</g>
<g >
<title>ASN1_mbstring_ncopy (3 samples, 0.01%)</title><rect x="883.3" y="229" width="0.2" height="15.0" fill="rgb(250,185,10)" rx="2" ry="2" />
<text x="886.34" y="239.5" ></text>
</g>
<g >
<title>[tsg_master.so] (5 samples, 0.02%)</title><rect x="1188.3" y="485" width="0.3" height="15.0" fill="rgb(207,45,12)" rx="2" ry="2" />
<text x="1191.29" y="495.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="981.2" y="517" width="0.1" height="15.0" fill="rgb(240,178,19)" rx="2" ry="2" />
<text x="984.19" y="527.5" ></text>
</g>
<g >
<title>CAPTURE_UDP_PACKET_ENTRY (16 samples, 0.08%)</title><rect x="967.5" y="549" width="1.0" height="15.0" fill="rgb(209,212,37)" rx="2" ry="2" />
<text x="970.51" y="559.5" ></text>
</g>
<g >
<title>tsg_get_subscribe_id (2 samples, 0.01%)</title><rect x="885.5" y="485" width="0.1" height="15.0" fill="rgb(240,10,12)" rx="2" ry="2" />
<text x="888.46" y="495.5" ></text>
</g>
<g >
<title>del_stream_by_time (11 samples, 0.05%)</title><rect x="943.1" y="517" width="0.7" height="15.0" fill="rgb(233,173,36)" rx="2" ry="2" />
<text x="946.15" y="527.5" ></text>
</g>
<g >
<title>copy_stream_info_to_heap (2 samples, 0.01%)</title><rect x="949.6" y="533" width="0.1" height="15.0" fill="rgb(207,176,3)" rx="2" ry="2" />
<text x="952.58" y="543.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (5 samples, 0.02%)</title><rect x="888.3" y="149" width="0.3" height="15.0" fill="rgb(253,200,9)" rx="2" ry="2" />
<text x="891.35" y="159.5" ></text>
</g>
<g >
<title>ssl_analyseStream (45 samples, 0.22%)</title><rect x="888.2" y="501" width="2.6" height="15.0" fill="rgb(254,172,1)" rx="2" ry="2" />
<text x="891.17" y="511.5" ></text>
</g>
<g >
<title>stream_process (2 samples, 0.01%)</title><rect x="885.5" y="549" width="0.1" height="15.0" fill="rgb(254,190,54)" rx="2" ry="2" />
<text x="888.46" y="559.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (22 samples, 0.11%)</title><rect x="882.9" y="405" width="1.3" height="15.0" fill="rgb(246,79,0)" rx="2" ry="2" />
<text x="885.86" y="415.5" ></text>
</g>
<g >
<title>grab_mid (3 samples, 0.01%)</title><rect x="1180.0" y="517" width="0.1" height="15.0" fill="rgb(227,180,45)" rx="2" ry="2" />
<text x="1182.97" y="527.5" ></text>
</g>
<g >
<title>MESA_handle_runtime_log (4 samples, 0.02%)</title><rect x="887.2" y="565" width="0.3" height="15.0" fill="rgb(219,201,29)" rx="2" ry="2" />
<text x="890.23" y="575.5" ></text>
</g>
<g >
<title>[tsg_master.so] (29 samples, 0.14%)</title><rect x="937.9" y="469" width="1.7" height="15.0" fill="rgb(222,81,48)" rx="2" ry="2" />
<text x="940.90" y="479.5" ></text>
</g>
<g >
<title>counting_bloom_add (18 samples, 0.09%)</title><rect x="891.1" y="341" width="1.0" height="15.0" fill="rgb(216,130,52)" rx="2" ry="2" />
<text x="894.06" y="351.5" ></text>
</g>
<g >
<title>stream_bridge_sync_data_put (5 samples, 0.02%)</title><rect x="1084.8" y="453" width="0.3" height="15.0" fill="rgb(243,151,52)" rx="2" ry="2" />
<text x="1087.77" y="463.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (3 samples, 0.01%)</title><rect x="1083.2" y="261" width="0.2" height="15.0" fill="rgb(221,209,51)" rx="2" ry="2" />
<text x="1086.24" y="271.5" ></text>
</g>
<g >
<title>[tsg_master.so] (25 samples, 0.12%)</title><rect x="890.8" y="501" width="1.5" height="15.0" fill="rgb(234,175,8)" rx="2" ry="2" />
<text x="893.83" y="511.5" ></text>
</g>
<g >
<title>APP_SKETCH_UDP_PLUG_ENTRY (3 samples, 0.01%)</title><rect x="1175.9" y="581" width="0.2" height="15.0" fill="rgb(207,107,54)" rx="2" ry="2" />
<text x="1178.90" y="591.5" ></text>
</g>
<g >
<title>malloc (4 samples, 0.02%)</title><rect x="890.1" y="309" width="0.3" height="15.0" fill="rgb(249,142,41)" rx="2" ry="2" />
<text x="893.12" y="319.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.5] (3 samples, 0.01%)</title><rect x="781.0" y="517" width="0.2" height="15.0" fill="rgb(248,134,29)" rx="2" ry="2" />
<text x="784.00" y="527.5" ></text>
</g>
<g >
<title>_IO_vsprintf (3 samples, 0.01%)</title><rect x="887.7" y="501" width="0.2" height="15.0" fill="rgb(220,189,14)" rx="2" ry="2" />
<text x="890.70" y="511.5" ></text>
</g>
<g >
<title>Maat_clean_status (4 samples, 0.02%)</title><rect x="963.6" y="517" width="0.3" height="15.0" fill="rgb(222,81,33)" rx="2" ry="2" />
<text x="966.61" y="527.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (6 samples, 0.03%)</title><rect x="1176.3" y="565" width="0.3" height="15.0" fill="rgb(207,13,48)" rx="2" ry="2" />
<text x="1179.26" y="575.5" ></text>
</g>
<g >
<title>SSL_ENTRY (45 samples, 0.22%)</title><rect x="888.2" y="517" width="2.6" height="15.0" fill="rgb(237,62,53)" rx="2" ry="2" />
<text x="891.17" y="527.5" ></text>
</g>
<g >
<title>[sapp] (24 samples, 0.12%)</title><rect x="779.9" y="629" width="1.4" height="15.0" fill="rgb(217,74,11)" rx="2" ry="2" />
<text x="782.88" y="639.5" ></text>
</g>
<g >
<title>[sapp] (2 samples, 0.01%)</title><rect x="952.5" y="469" width="0.1" height="15.0" fill="rgb(237,165,37)" rx="2" ry="2" />
<text x="955.53" y="479.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.5] (2 samples, 0.01%)</title><rect x="961.4" y="405" width="0.2" height="15.0" fill="rgb(208,185,34)" rx="2" ry="2" />
<text x="964.43" y="415.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.5] (2 samples, 0.01%)</title><rect x="1145.8" y="437" width="0.1" height="15.0" fill="rgb(237,130,8)" rx="2" ry="2" />
<text x="1148.82" y="447.5" ></text>
</g>
<g >
<title>sk_pop_free (2 samples, 0.01%)</title><rect x="889.6" y="245" width="0.2" height="15.0" fill="rgb(248,67,45)" rx="2" ry="2" />
<text x="892.65" y="255.5" ></text>
</g>
<g >
<title>ssl_doWithServerHello (3 samples, 0.01%)</title><rect x="884.8" y="453" width="0.1" height="15.0" fill="rgb(231,224,15)" rx="2" ry="2" />
<text x="887.75" y="463.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="889.8" y="309" width="0.1" height="15.0" fill="rgb(215,185,9)" rx="2" ry="2" />
<text x="892.77" y="319.5" ></text>
</g>
<g >
<title>APP_SKETCH_UDP_PLUG_ENTRY (7 samples, 0.03%)</title><rect x="1177.1" y="629" width="0.4" height="15.0" fill="rgb(205,171,22)" rx="2" ry="2" />
<text x="1180.08" y="639.5" ></text>
</g>
<g >
<title>[libprotoident.so] (72 samples, 0.36%)</title><rect x="1148.4" y="501" width="4.3" height="15.0" fill="rgb(234,222,39)" rx="2" ry="2" />
<text x="1151.42" y="511.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (8 samples, 0.04%)</title><rect x="882.9" y="261" width="0.4" height="15.0" fill="rgb(235,40,6)" rx="2" ry="2" />
<text x="885.86" y="271.5" ></text>
</g>
<g >
<title>do_page_fault (17 samples, 0.08%)</title><rect x="891.1" y="293" width="1.0" height="15.0" fill="rgb(218,131,11)" rx="2" ry="2" />
<text x="894.12" y="303.5" ></text>
</g>
<g >
<title>APP_SKETCH_TCP_PLUG_ENTRY (5 samples, 0.02%)</title><rect x="882.5" y="517" width="0.2" height="15.0" fill="rgb(209,146,11)" rx="2" ry="2" />
<text x="885.45" y="527.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (2 samples, 0.01%)</title><rect x="896.5" y="469" width="0.1" height="15.0" fill="rgb(218,211,20)" rx="2" ry="2" />
<text x="899.49" y="479.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.01%)</title><rect x="1121.0" y="485" width="0.2" height="15.0" fill="rgb(214,125,4)" rx="2" ry="2" />
<text x="1124.05" y="495.5" ></text>
</g>
<g >
<title>vfprintf (2 samples, 0.01%)</title><rect x="888.1" y="437" width="0.1" height="15.0" fill="rgb(215,51,19)" rx="2" ry="2" />
<text x="891.05" y="447.5" ></text>
</g>
<g >
<title>dealipv4udppkt (6 samples, 0.03%)</title><rect x="1182.0" y="677" width="0.3" height="15.0" fill="rgb(252,76,27)" rx="2" ry="2" />
<text x="1184.98" y="687.5" ></text>
</g>
<g >
<title>http_deleteEmptyRow (419 samples, 2.09%)</title><rect x="1025.0" y="421" width="24.7" height="15.0" fill="rgb(212,96,50)" rx="2" ry="2" />
<text x="1027.96" y="431.5" >h..</text>
</g>
<g >
<title>tsg_scan_nesting_addr (2 samples, 0.01%)</title><rect x="885.7" y="517" width="0.1" height="15.0" fill="rgb(240,67,47)" rx="2" ry="2" />
<text x="888.70" y="527.5" ></text>
</g>
<g >
<title>tsg_get_ip_asn (2 samples, 0.01%)</title><rect x="1086.0" y="437" width="0.1" height="15.0" fill="rgb(239,100,21)" rx="2" ry="2" />
<text x="1088.95" y="447.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (9 samples, 0.04%)</title><rect x="1188.1" y="501" width="0.5" height="15.0" fill="rgb(236,175,53)" rx="2" ry="2" />
<text x="1191.05" y="511.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (2 samples, 0.01%)</title><rect x="888.1" y="501" width="0.1" height="15.0" fill="rgb(206,159,46)" rx="2" ry="2" />
<text x="891.05" y="511.5" ></text>
</g>
<g >
<title>sys_sendto (12 samples, 0.06%)</title><rect x="896.0" y="693" width="0.7" height="15.0" fill="rgb(246,188,17)" rx="2" ry="2" />
<text x="899.02" y="703.5" ></text>
</g>
<g >
<title>tsg_get_ip_asn (2 samples, 0.01%)</title><rect x="940.1" y="437" width="0.1" height="15.0" fill="rgb(217,116,33)" rx="2" ry="2" />
<text x="943.08" y="447.5" ></text>
</g>
<g >
<title>dealipv4tcppkt (8 samples, 0.04%)</title><rect x="1187.5" y="581" width="0.5" height="15.0" fill="rgb(236,150,22)" rx="2" ry="2" />
<text x="1190.52" y="591.5" ></text>
</g>
<g >
<title>tsg_get_fqdn_category_id (3 samples, 0.01%)</title><rect x="1182.7" y="645" width="0.2" height="15.0" fill="rgb(223,217,50)" rx="2" ry="2" />
<text x="1185.69" y="655.5" ></text>
</g>
<g >
<title>tsg_get_subscribe_id (3 samples, 0.01%)</title><rect x="893.9" y="549" width="0.2" height="15.0" fill="rgb(254,2,5)" rx="2" ry="2" />
<text x="896.89" y="559.5" ></text>
</g>
<g >
<title>ASN1_item_ex_i2d (6 samples, 0.03%)</title><rect x="889.3" y="245" width="0.3" height="15.0" fill="rgb(253,112,13)" rx="2" ry="2" />
<text x="892.29" y="255.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (8 samples, 0.04%)</title><rect x="881.0" y="293" width="0.4" height="15.0" fill="rgb(205,5,7)" rx="2" ry="2" />
<text x="883.98" y="303.5" ></text>
</g>
<g >
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="1182.7" y="629" width="0.2" height="15.0" fill="rgb(250,186,48)" rx="2" ry="2" />
<text x="1185.69" y="639.5" ></text>
</g>
<g >
<title>[libprotoident.so] (6 samples, 0.03%)</title><rect x="956.3" y="437" width="0.4" height="15.0" fill="rgb(251,217,6)" rx="2" ry="2" />
<text x="959.30" y="447.5" ></text>
</g>
<g >
<title>get_one_resource_record (3 samples, 0.01%)</title><rect x="1185.6" y="709" width="0.2" height="15.0" fill="rgb(227,44,28)" rx="2" ry="2" />
<text x="1188.64" y="719.5" ></text>
</g>
<g >
<title>CBoolExprMatch::search_expr (79 samples, 0.39%)</title><rect x="804.5" y="677" width="4.7" height="15.0" fill="rgb(208,205,27)" rx="2" ry="2" />
<text x="807.53" y="687.5" ></text>
</g>
<g >
<title>[sapp] (70 samples, 0.35%)</title><rect x="781.8" y="629" width="4.1" height="15.0" fill="rgb(233,54,34)" rx="2" ry="2" />
<text x="784.76" y="639.5" ></text>
</g>
<g >
<title>rulescan_computeresult (4 samples, 0.02%)</title><rect x="812.3" y="693" width="0.3" height="15.0" fill="rgb(240,176,36)" rx="2" ry="2" />
<text x="815.32" y="703.5" ></text>
</g>
<g >
<title>ssl_analyseSsl (36 samples, 0.18%)</title><rect x="934.2" y="437" width="2.1" height="15.0" fill="rgb(235,129,37)" rx="2" ry="2" />
<text x="937.18" y="447.5" ></text>
</g>
<g >
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="890.6" y="389" width="0.2" height="15.0" fill="rgb(239,107,50)" rx="2" ry="2" />
<text x="893.65" y="399.5" ></text>
</g>
<g >
<title>plugin_call_appentry (3 samples, 0.01%)</title><rect x="884.8" y="389" width="0.1" height="15.0" fill="rgb(254,20,17)" rx="2" ry="2" />
<text x="887.75" y="399.5" ></text>
</g>
<g >
<title>stream_process (48 samples, 0.24%)</title><rect x="960.4" y="533" width="2.9" height="15.0" fill="rgb(210,175,33)" rx="2" ry="2" />
<text x="963.43" y="543.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.5] (3 samples, 0.01%)</title><rect x="1177.3" y="565" width="0.2" height="15.0" fill="rgb(227,171,4)" rx="2" ry="2" />
<text x="1180.32" y="575.5" ></text>
</g>
<g >
<title>ipv6_entry (10 samples, 0.05%)</title><rect x="1188.1" y="645" width="0.5" height="15.0" fill="rgb(239,104,33)" rx="2" ry="2" />
<text x="1191.05" y="655.5" ></text>
</g>
<g >
<title>Maat_fqdn_plugin_get_EX_data (3 samples, 0.01%)</title><rect x="1182.7" y="613" width="0.2" height="15.0" fill="rgb(207,63,30)" rx="2" ry="2" />
<text x="1185.69" y="623.5" ></text>
</g>
<g >
<title>dealipv4tcppkt (14 samples, 0.07%)</title><rect x="1178.1" y="677" width="0.9" height="15.0" fill="rgb(237,28,13)" rx="2" ry="2" />
<text x="1181.14" y="687.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="890.9" y="453" width="0.2" height="15.0" fill="rgb(207,55,37)" rx="2" ry="2" />
<text x="893.94" y="463.5" ></text>
</g>
<g >
<title>PROT_PROCESS (8 samples, 0.04%)</title><rect x="890.1" y="405" width="0.5" height="15.0" fill="rgb(235,24,13)" rx="2" ry="2" />
<text x="893.12" y="415.5" ></text>
</g>
<g >
<title>Maat_clean_status (2 samples, 0.01%)</title><rect x="1182.5" y="645" width="0.1" height="15.0" fill="rgb(226,139,51)" rx="2" ry="2" />
<text x="1185.51" y="655.5" ></text>
</g>
<g >
<title>CIPv4Match::SearchIP@plt (3 samples, 0.01%)</title><rect x="879.6" y="725" width="0.2" height="15.0" fill="rgb(249,56,20)" rx="2" ry="2" />
<text x="882.62" y="735.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.5] (4 samples, 0.02%)</title><rect x="1113.0" y="389" width="0.3" height="15.0" fill="rgb(230,103,13)" rx="2" ry="2" />
<text x="1116.02" y="399.5" ></text>
</g>
<g >
<title>[sapp] (53 samples, 0.26%)</title><rect x="882.5" y="581" width="3.1" height="15.0" fill="rgb(239,143,11)" rx="2" ry="2" />
<text x="885.45" y="591.5" ></text>
</g>
<g >
<title>dealipv6udppkt (80 samples, 0.40%)</title><rect x="781.8" y="709" width="4.7" height="15.0" fill="rgb(221,117,52)" rx="2" ry="2" />
<text x="784.76" y="719.5" ></text>
</g>
<g >
<title>[libprotoident.so] (9 samples, 0.04%)</title><rect x="1114.0" y="453" width="0.6" height="15.0" fill="rgb(229,161,18)" rx="2" ry="2" />
<text x="1117.03" y="463.5" ></text>
</g>
<g >
<title>sapp_is_overlay_layer (2 samples, 0.01%)</title><rect x="1155.7" y="645" width="0.1" height="15.0" fill="rgb(221,209,22)" rx="2" ry="2" />
<text x="1158.67" y="655.5" ></text>
</g>
<g >
<title>X509_PUBKEY_get (2 samples, 0.01%)</title><rect x="936.0" y="373" width="0.1" height="15.0" fill="rgb(236,60,24)" rx="2" ry="2" />
<text x="939.01" y="383.5" ></text>
</g>
<g >
<title>inet_ntop (3 samples, 0.01%)</title><rect x="893.9" y="533" width="0.2" height="15.0" fill="rgb(240,116,43)" rx="2" ry="2" />
<text x="896.89" y="543.5" ></text>
</g>
<g >
<title>asn1_ex_c2i (2 samples, 0.01%)</title><rect x="889.8" y="261" width="0.1" height="15.0" fill="rgb(212,211,5)" rx="2" ry="2" />
<text x="892.77" y="271.5" ></text>
</g>
<g >
<title>plugin_process_data (2 samples, 0.01%)</title><rect x="888.2" y="405" width="0.1" height="15.0" fill="rgb(227,128,31)" rx="2" ry="2" />
<text x="891.17" y="415.5" ></text>
</g>
<g >
<title>[sapp] (12 samples, 0.06%)</title><rect x="1118.0" y="565" width="0.7" height="15.0" fill="rgb(210,153,34)" rx="2" ry="2" />
<text x="1120.98" y="575.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (6 samples, 0.03%)</title><rect x="882.9" y="149" width="0.4" height="15.0" fill="rgb(209,47,16)" rx="2" ry="2" />
<text x="885.92" y="159.5" ></text>
</g>
<g >
<title>stream_process_udp (3 samples, 0.01%)</title><rect x="1179.0" y="661" width="0.1" height="15.0" fill="rgb(232,149,27)" rx="2" ry="2" />
<text x="1181.97" y="671.5" ></text>
</g>
<g >
<title>dealipv4udppkt (4 samples, 0.02%)</title><rect x="885.6" y="613" width="0.2" height="15.0" fill="rgb(210,228,45)" rx="2" ry="2" />
<text x="888.58" y="623.5" ></text>
</g>
<g >
<title>__memcmp_sse4_1 (3 samples, 0.01%)</title><rect x="991.2" y="597" width="0.1" height="15.0" fill="rgb(226,198,26)" rx="2" ry="2" />
<text x="994.16" y="607.5" ></text>
</g>
<g >
<title>vfprintf (6 samples, 0.03%)</title><rect x="1183.5" y="565" width="0.3" height="15.0" fill="rgb(235,58,54)" rx="2" ry="2" />
<text x="1186.45" y="575.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.5] (2 samples, 0.01%)</title><rect x="1174.3" y="533" width="0.1" height="15.0" fill="rgb(243,169,11)" rx="2" ry="2" />
<text x="1177.25" y="543.5" ></text>
</g>
<g >
<title>inet_ntop (2 samples, 0.01%)</title><rect x="885.7" y="485" width="0.1" height="15.0" fill="rgb(254,221,19)" rx="2" ry="2" />
<text x="888.70" y="495.5" ></text>
</g>
<g >
<title>[sapp] (3 samples, 0.01%)</title><rect x="911.7" y="661" width="0.2" height="15.0" fill="rgb(226,200,28)" rx="2" ry="2" />
<text x="914.71" y="671.5" ></text>
</g>
<g >
<title>[sapp] (4,187 samples, 20.93%)</title><rect x="909.0" y="677" width="247.0" height="15.0" fill="rgb(206,122,52)" rx="2" ry="2" />
<text x="911.99" y="687.5" >[sapp]</text>
</g>
<g >
<title>TSG_MASTER_UDP_ENTRY (3 samples, 0.01%)</title><rect x="893.9" y="597" width="0.2" height="15.0" fill="rgb(212,73,13)" rx="2" ry="2" />
<text x="896.89" y="607.5" ></text>
</g>
<g >
<title>APP_SKETCH_TCP_PLUG_ENTRY (23 samples, 0.11%)</title><rect x="779.9" y="565" width="1.4" height="15.0" fill="rgb(252,15,40)" rx="2" ry="2" />
<text x="782.93" y="575.5" ></text>
</g>
<g >
<title>dealipv6udppkt (53 samples, 0.26%)</title><rect x="1179.2" y="725" width="3.1" height="15.0" fill="rgb(241,88,22)" rx="2" ry="2" />
<text x="1182.21" y="735.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="889.6" y="213" width="0.2" height="15.0" fill="rgb(213,27,20)" rx="2" ry="2" />
<text x="892.65" y="223.5" ></text>
</g>
<g >
<title>CInflate2::fn_iDecodeHuffmanCodeBlock (2 samples, 0.01%)</title><rect x="933.6" y="309" width="0.1" height="15.0" fill="rgb(226,159,24)" rx="2" ry="2" />
<text x="936.59" y="319.5" ></text>
</g>
<g >
<title>stream_process_tcp (19 samples, 0.09%)</title><rect x="1179.2" y="613" width="1.1" height="15.0" fill="rgb(253,129,24)" rx="2" ry="2" />
<text x="1182.21" y="623.5" ></text>
</g>
<g >
<title>dealipv6udppkt (3 samples, 0.01%)</title><rect x="1179.0" y="677" width="0.1" height="15.0" fill="rgb(245,17,7)" rx="2" ry="2" />
<text x="1181.97" y="687.5" ></text>
</g>
<g >
<title>ipv6_entry (21 samples, 0.10%)</title><rect x="1176.3" y="709" width="1.2" height="15.0" fill="rgb(209,44,34)" rx="2" ry="2" />
<text x="1179.26" y="719.5" ></text>
</g>
<g >
<title>tsg_get_ip_location (4 samples, 0.02%)</title><rect x="954.3" y="453" width="0.2" height="15.0" fill="rgb(216,169,31)" rx="2" ry="2" />
<text x="957.29" y="463.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (6 samples, 0.03%)</title><rect x="888.3" y="261" width="0.3" height="15.0" fill="rgb(240,149,13)" rx="2" ry="2" />
<text x="891.29" y="271.5" ></text>
</g>
<g >
<title>stream_process (4 samples, 0.02%)</title><rect x="886.1" y="581" width="0.2" height="15.0" fill="rgb(250,54,31)" rx="2" ry="2" />
<text x="889.11" y="591.5" ></text>
</g>
<g >
<title>dealipv4tcppkt (25 samples, 0.12%)</title><rect x="779.9" y="661" width="1.5" height="15.0" fill="rgb(250,153,39)" rx="2" ry="2" />
<text x="782.88" y="671.5" ></text>
</g>
<g >
<title>Maat_table_runtime_ip_plugin_get_N_ex_data (2 samples, 0.01%)</title><rect x="881.7" y="437" width="0.1" height="15.0" fill="rgb(211,131,17)" rx="2" ry="2" />
<text x="884.68" y="447.5" ></text>
</g>
<g >
<title>sprintf (6 samples, 0.03%)</title><rect x="1183.5" y="597" width="0.3" height="15.0" fill="rgb(238,48,53)" rx="2" ry="2" />
<text x="1186.45" y="607.5" ></text>
</g>
<g >
<title>checkstreamorder (7 samples, 0.03%)</title><rect x="950.4" y="517" width="0.4" height="15.0" fill="rgb(253,35,40)" rx="2" ry="2" />
<text x="953.40" y="527.5" ></text>
</g>
<g >
<title>stream_process_tcp (6 samples, 0.03%)</title><rect x="1176.3" y="597" width="0.3" height="15.0" fill="rgb(226,170,43)" rx="2" ry="2" />
<text x="1179.26" y="607.5" ></text>
</g>
<g >
<title>ipv4_entry (13 samples, 0.06%)</title><rect x="1174.4" y="709" width="0.8" height="15.0" fill="rgb(249,80,16)" rx="2" ry="2" />
<text x="1177.43" y="719.5" ></text>
</g>
<g >
<title>Maat_hierarchy_compile_mid_udpate (41 samples, 0.20%)</title><rect x="868.9" y="709" width="2.5" height="15.0" fill="rgb(238,32,43)" rx="2" ry="2" />
<text x="871.94" y="719.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="1082.8" y="293" width="0.1" height="15.0" fill="rgb(234,134,42)" rx="2" ry="2" />
<text x="1085.76" y="303.5" ></text>
</g>
<g >
<title>stream_process_tcp (16 samples, 0.08%)</title><rect x="881.0" y="549" width="0.9" height="15.0" fill="rgb(227,48,13)" rx="2" ry="2" />
<text x="883.98" y="559.5" ></text>
</g>
<g >
<title>copy_stream_info_to_heap_single_layer (3 samples, 0.01%)</title><rect x="1109.4" y="517" width="0.1" height="15.0" fill="rgb(232,58,6)" rx="2" ry="2" />
<text x="1112.37" y="527.5" ></text>
</g>
<g >
<title>http_host_parser (5 samples, 0.02%)</title><rect x="938.5" y="453" width="0.3" height="15.0" fill="rgb(219,225,47)" rx="2" ry="2" />
<text x="941.49" y="463.5" ></text>
</g>
<g >
<title>malloc_consolidate (2 samples, 0.01%)</title><rect x="890.2" y="277" width="0.2" height="15.0" fill="rgb(230,225,13)" rx="2" ry="2" />
<text x="893.24" y="287.5" ></text>
</g>
<g >
<title>inet_ntop (2 samples, 0.01%)</title><rect x="970.8" y="485" width="0.1" height="15.0" fill="rgb(246,139,16)" rx="2" ry="2" />
<text x="973.75" y="495.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="1181.8" y="565" width="0.1" height="15.0" fill="rgb(237,209,37)" rx="2" ry="2" />
<text x="1184.80" y="575.5" ></text>
</g>
<g >
<title>dealipv6udppkt (2,755 samples, 13.77%)</title><rect x="991.3" y="613" width="162.5" height="15.0" fill="rgb(238,183,41)" rx="2" ry="2" />
<text x="994.34" y="623.5" >dealipv6udppkt</text>
</g>
<g >
<title>CRefCountManager::dec_reference_count (9 samples, 0.04%)</title><rect x="850.7" y="677" width="0.5" height="15.0" fill="rgb(212,133,32)" rx="2" ry="2" />
<text x="853.66" y="687.5" ></text>
</g>
<g >
<title>lrustream (3 samples, 0.01%)</title><rect x="892.7" y="581" width="0.1" height="15.0" fill="rgb(234,206,40)" rx="2" ry="2" />
<text x="895.66" y="591.5" ></text>
</g>
<g >
<title>dealipv4udppkt (5 samples, 0.02%)</title><rect x="781.4" y="661" width="0.2" height="15.0" fill="rgb(244,198,46)" rx="2" ry="2" />
<text x="784.35" y="671.5" ></text>
</g>
<g >
<title>ipv6_entry (28 samples, 0.14%)</title><rect x="1118.0" y="581" width="1.6" height="15.0" fill="rgb(250,129,5)" rx="2" ry="2" />
<text x="1120.98" y="591.5" ></text>
</g>
<g >
<title>checkstreamorder (9 samples, 0.04%)</title><rect x="926.7" y="581" width="0.5" height="15.0" fill="rgb(254,66,49)" rx="2" ry="2" />
<text x="929.69" y="591.5" ></text>
</g>
<g >
<title>Maat_ip_plugin_get_EX_data (3 samples, 0.01%)</title><rect x="1184.6" y="613" width="0.2" height="15.0" fill="rgb(208,13,8)" rx="2" ry="2" />
<text x="1187.57" y="623.5" ></text>
</g>
<g >
<title>_IO_vsprintf (5 samples, 0.02%)</title><rect x="885.2" y="437" width="0.3" height="15.0" fill="rgb(225,167,1)" rx="2" ry="2" />
<text x="888.16" y="447.5" ></text>
</g>
<g >
<title>Maat_hierarchy_compile_mid_free (3 samples, 0.01%)</title><rect x="943.4" y="437" width="0.2" height="15.0" fill="rgb(228,82,4)" rx="2" ry="2" />
<text x="946.44" y="447.5" ></text>
</g>
<g >
<title>Maat_clean_status (35 samples, 0.17%)</title><rect x="1139.7" y="517" width="2.1" height="15.0" fill="rgb(224,24,23)" rx="2" ry="2" />
<text x="1142.69" y="527.5" ></text>
</g>
<g >
<title>hash_func (107 samples, 0.53%)</title><rect x="1124.7" y="549" width="6.3" height="15.0" fill="rgb(220,216,1)" rx="2" ry="2" />
<text x="1127.70" y="559.5" ></text>
</g>
<g >
<title>sapp_marsio_47 (19,986 samples, 99.91%)</title><rect x="10.0" y="757" width="1178.9" height="15.0" fill="rgb(227,58,47)" rx="2" ry="2" />
<text x="13.00" y="767.5" >sapp_marsio_47</text>
</g>
<g >
<title>__snprintf (2 samples, 0.01%)</title><rect x="888.1" y="469" width="0.1" height="15.0" fill="rgb(218,129,46)" rx="2" ry="2" />
<text x="891.05" y="479.5" ></text>
</g>
<g >
<title>stream_process (11 samples, 0.05%)</title><rect x="1174.4" y="613" width="0.7" height="15.0" fill="rgb(216,172,12)" rx="2" ry="2" />
<text x="1177.43" y="623.5" ></text>
</g>
<g >
<title>std::_Rb_tree_increment@plt (2 samples, 0.01%)</title><rect x="1153.2" y="501" width="0.1" height="15.0" fill="rgb(210,156,34)" rx="2" ry="2" />
<text x="1156.19" y="511.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (12 samples, 0.06%)</title><rect x="1118.9" y="517" width="0.7" height="15.0" fill="rgb(209,35,4)" rx="2" ry="2" />
<text x="1121.92" y="527.5" ></text>
</g>
<g >
<title>del_stream_by_time (2 samples, 0.01%)</title><rect x="895.5" y="709" width="0.2" height="15.0" fill="rgb(206,146,37)" rx="2" ry="2" />
<text x="898.55" y="719.5" ></text>
</g>
<g >
<title>[sapp] (4 samples, 0.02%)</title><rect x="947.4" y="453" width="0.2" height="15.0" fill="rgb(221,19,15)" rx="2" ry="2" />
<text x="950.39" y="463.5" ></text>
</g>
<g >
<title>[sapp] (4 samples, 0.02%)</title><rect x="1118.0" y="549" width="0.3" height="15.0" fill="rgb(241,217,48)" rx="2" ry="2" />
<text x="1121.04" y="559.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="1187.9" y="469" width="0.1" height="15.0" fill="rgb(240,174,9)" rx="2" ry="2" />
<text x="1190.88" y="479.5" ></text>
</g>
<g >
<title>CRYPTO_malloc (2 samples, 0.01%)</title><rect x="888.5" y="69" width="0.1" height="15.0" fill="rgb(214,157,27)" rx="2" ry="2" />
<text x="891.53" y="79.5" ></text>
</g>
<g >
<title>malloc (2 samples, 0.01%)</title><rect x="936.3" y="437" width="0.1" height="15.0" fill="rgb(213,96,33)" rx="2" ry="2" />
<text x="939.30" y="447.5" ></text>
</g>
<g >
<title>stream_process_tcp (3 samples, 0.01%)</title><rect x="1175.3" y="597" width="0.1" height="15.0" fill="rgb(245,5,8)" rx="2" ry="2" />
<text x="1178.25" y="607.5" ></text>
</g>
<g >
<title>Maat_ip_plugin_get_EX_data (2 samples, 0.01%)</title><rect x="970.5" y="485" width="0.1" height="15.0" fill="rgb(249,53,38)" rx="2" ry="2" />
<text x="973.46" y="495.5" ></text>
</g>
<g >
<title>ipv4_entry (18 samples, 0.09%)</title><rect x="1175.2" y="709" width="1.1" height="15.0" fill="rgb(237,61,28)" rx="2" ry="2" />
<text x="1178.19" y="719.5" ></text>
</g>
<g >
<title>ipv4_entry (94 samples, 0.47%)</title><rect x="882.5" y="677" width="5.5" height="15.0" fill="rgb(223,90,17)" rx="2" ry="2" />
<text x="885.45" y="687.5" ></text>
</g>
<g >
<title>fn_pGetSSLInfo (9 samples, 0.04%)</title><rect x="881.0" y="421" width="0.5" height="15.0" fill="rgb(223,162,43)" rx="2" ry="2" />
<text x="883.98" y="431.5" ></text>
</g>
<g >
<title>dealipv6udppkt (21 samples, 0.10%)</title><rect x="1176.3" y="693" width="1.2" height="15.0" fill="rgb(243,162,47)" rx="2" ry="2" />
<text x="1179.26" y="703.5" ></text>
</g>
<g >
<title>free_heap_stream_info (2 samples, 0.01%)</title><rect x="963.5" y="549" width="0.1" height="15.0" fill="rgb(211,29,33)" rx="2" ry="2" />
<text x="966.50" y="559.5" ></text>
</g>
<g >
<title>gtp_entry (609 samples, 3.04%)</title><rect x="927.3" y="597" width="36.0" height="15.0" fill="rgb(213,156,33)" rx="2" ry="2" />
<text x="930.34" y="607.5" >gtp..</text>
</g>
<g >
<title>[app_sketch_local.so] (5 samples, 0.02%)</title><rect x="1111.8" y="485" width="0.3" height="15.0" fill="rgb(230,227,47)" rx="2" ry="2" />
<text x="1114.79" y="495.5" ></text>
</g>
</g>
</svg>