Skip to content

Instantly share code, notes, and snippets.

@dolik-rce
Created February 17, 2021 06:16
Show Gist options
  • Save dolik-rce/b04153029d7f0f1be80bf2d7dbe3f7e5 to your computer and use it in GitHub Desktop.
Save dolik-rce/b04153029d7f0f1be80bf2d7dbe3f7e5 to your computer and use it in GitHub Desktop.
Flame graph for peg-based Kotlin parser in ctags
Display the source blob
Display the rendered blob
Raw
<?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="1798" onload="init(evt)" viewBox="0 0 1200 1798" 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">
.func_g:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
</style>
<script type="text/ecmascript">
<![CDATA[
var details, searchbtn, matchedtxt, svg;
function init(evt) {
details = document.getElementById("details").firstChild;
searchbtn = document.getElementById("search");
matchedtxt = document.getElementById("matched");
svg = document.getElementsByTagName("svg")[0];
searching = 0;
}
// mouse-over for info
function s(node) { // show
info = g_to_text(node);
details.nodeValue = "Function: " + info;
}
function c() { // clear
details.nodeValue = ' ';
}
// ctrl-F for search
window.addEventListener("keydown",function (e) {
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
search_prompt();
}
})
// functions
function find_child(parent, name, attr) {
var children = parent.childNodes;
for (var i=0; i<children.length;i++) {
if (children[i].tagName == name)
return (attr != undefined) ? children[i].attributes[attr].value : children[i];
}
return;
}
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") + 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;
var unzoombtn = document.getElementById("unzoom");
unzoombtn.style["opacity"] = "1.0";
var el = document.getElementsByTagName("g");
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);
// Is it an ancestor
if (0 == 0) {
var upstack = parseFloat(a["y"].value) > ymin;
} else {
var upstack = parseFloat(a["y"].value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew+fudge) >= xmax) {
e.style["opacity"] = "0.5";
zoom_parent(e);
e.onclick = function(e){unzoom(); zoom(this);};
update_text(e);
}
// not in current path
else
e.style["display"] = "none";
}
// Children maybe
else {
// no common path
if (ex < xmin || ex + fudge >= xmax) {
e.style["display"] = "none";
}
else {
zoom_child(e, xmin, ratio);
e.onclick = function(e){zoom(this);};
update_text(e);
}
}
}
}
function unzoom() {
var unzoombtn = document.getElementById("unzoom");
unzoombtn.style["opacity"] = "0.0";
var el = document.getElementsByTagName("g");
for(i=0;i<el.length;i++) {
el[i].style["display"] = "block";
el[i].style["opacity"] = "1";
zoom_reset(el[i]);
update_text(el[i]);
}
}
// search
function reset_search() {
var el = document.getElementsByTagName("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_)", "");
if (term != null) {
search(term)
}
} else {
reset_search();
searching = 0;
searchbtn.style["opacity"] = "0.1";
searchbtn.firstChild.nodeValue = "Search"
matchedtxt.style["opacity"] = "0.0";
matchedtxt.firstChild.nodeValue = ""
}
}
function search(term) {
var re = new RegExp(term);
var el = document.getElementsByTagName("g");
var matches = new Object();
var maxwidth = 0;
for (var i = 0; i < el.length; i++) {
var e = el[i];
if (e.attributes["class"].value != "func_g")
continue;
var func = g_to_func(e);
var rect = find_child(e, "rect");
if (rect == null) {
// the rect might be wrapped in an anchor
// if nameattr href is being used
if (rect = find_child(e, "a")) {
rect = find_child(r, "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.style["opacity"] = "1.0";
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.style["opacity"] = "1.0";
pct = 100 * count / maxwidth;
if (pct == 100)
pct = "100"
else
pct = pct.toFixed(1)
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
}
function searchover(e) {
searchbtn.style["opacity"] = "1.0";
}
function searchout(e) {
if (searching) {
searchbtn.style["opacity"] = "1.0";
} else {
searchbtn.style["opacity"] = "0.1";
}
}
]]>
</script>
<rect x="0.0" y="0" width="1200.0" height="1798.0" fill="url(#background)" />
<text text-anchor="middle" x="600.00" y="24" font-size="17" font-family="Verdana" fill="rgb(0,0,0)" >Flame Graph</text>
<text text-anchor="" x="10.00" y="1781" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="details" > </text>
<text text-anchor="" x="10.00" y="24" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="unzoom" onclick="unzoom()" style="opacity:0.0;cursor:pointer" >Reset Zoom</text>
<text text-anchor="" x="1090.00" y="24" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="search" onmouseover="searchover()" onmouseout="searchout()" onclick="search_prompt()" style="opacity:0.1;cursor:pointer" >Search</text>
<text text-anchor="" x="1090.00" y="1781" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="matched" > </text>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_statement (6 samples, 0.26%)</title><rect x="216.7" y="725" width="3.1" height="15.0" fill="rgb(211,65,31)" rx="2" ry="2" />
<text text-anchor="" x="219.71" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="314.3" y="1509" width="3.7" height="15.0" fill="rgb(238,122,14)" rx="2" ry="2" />
<text text-anchor="" x="317.35" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_functionBody (10 samples, 0.44%)</title><rect x="322.1" y="1653" width="5.2" height="15.0" fill="rgb(205,90,0)" rx="2" ry="2" />
<text text-anchor="" x="325.14" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="207.4" y="1365" width="3.1" height="15.0" fill="rgb(220,149,16)" rx="2" ry="2" />
<text text-anchor="" x="210.36" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (9 samples, 0.40%)</title><rect x="252.0" y="1477" width="4.7" height="15.0" fill="rgb(215,6,24)" rx="2" ry="2" />
<text text-anchor="" x="255.02" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="393.8" y="1541" width="3.1" height="15.0" fill="rgb(216,222,3)" rx="2" ry="2" />
<text text-anchor="" x="396.81" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnarySuffix (8 samples, 0.35%)</title><rect x="353.3" y="1621" width="4.2" height="15.0" fill="rgb(242,175,26)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>createTagsWithFallback (18 samples, 0.79%)</title><rect x="176.2" y="1573" width="9.3" height="15.0" fill="rgb(224,120,45)" rx="2" ry="2" />
<text text-anchor="" x="179.20" y="1583.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (9 samples, 0.40%)</title><rect x="941.7" y="709" width="4.7" height="15.0" fill="rgb(230,61,42)" rx="2" ry="2" />
<text text-anchor="" x="944.74" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_declaration (18 samples, 0.79%)</title><rect x="176.2" y="1365" width="9.3" height="15.0" fill="rgb(237,9,54)" rx="2" ry="2" />
<text text-anchor="" x="179.20" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (10 samples, 0.44%)</title><rect x="274.9" y="1413" width="5.2" height="15.0" fill="rgb(211,95,30)" rx="2" ry="2" />
<text text-anchor="" x="277.88" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_block (25 samples, 1.10%)</title><rect x="928.8" y="1269" width="12.9" height="15.0" fill="rgb(206,118,20)" rx="2" ry="2" />
<text text-anchor="" x="931.76" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_rangeExpression (6 samples, 0.26%)</title><rect x="247.4" y="597" width="3.1" height="15.0" fill="rgb(226,197,15)" rx="2" ry="2" />
<text text-anchor="" x="250.35" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_equality (6 samples, 0.26%)</title><rect x="440.6" y="1669" width="3.1" height="15.0" fill="rgb(248,59,0)" rx="2" ry="2" />
<text text-anchor="" x="443.55" y="1679.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_topLevelObject (7 samples, 0.31%)</title><rect x="193.9" y="1541" width="3.6" height="15.0" fill="rgb(238,83,37)" rx="2" ry="2" />
<text text-anchor="" x="196.86" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="247.4" y="1029" width="4.1" height="15.0" fill="rgb(237,1,29)" rx="2" ry="2" />
<text text-anchor="" x="250.35" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_additiveExpression (10 samples, 0.44%)</title><rect x="269.7" y="1493" width="5.2" height="15.0" fill="rgb(221,216,31)" rx="2" ry="2" />
<text text-anchor="" x="272.68" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="375.6" y="1573" width="3.2" height="15.0" fill="rgb(221,63,12)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="1583.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (124 samples, 5.46%)</title><rect x="749.1" y="965" width="64.4" height="15.0" fill="rgb(210,63,26)" rx="2" ry="2" />
<text text-anchor="" x="752.06" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pcc_app..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_classMemberDeclaration (6 samples, 0.26%)</title><rect x="305.0" y="1461" width="3.1" height="15.0" fill="rgb(238,76,23)" rx="2" ry="2" />
<text text-anchor="" x="308.00" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (37 samples, 1.63%)</title><rect x="1146.4" y="1061" width="19.2" height="15.0" fill="rgb(235,26,23)" rx="2" ry="2" />
<text text-anchor="" x="1149.37" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="508.1" y="1589" width="3.6" height="15.0" fill="rgb(243,87,7)" rx="2" ry="2" />
<text text-anchor="" x="511.07" y="1599.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (193 samples, 8.49%)</title><rect x="747.5" y="1061" width="100.2" height="15.0" fill="rgb(205,34,53)" rx="2" ry="2" />
<text text-anchor="" x="750.50" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pcc_apply_rule</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (9 samples, 0.40%)</title><rect x="398.5" y="1381" width="4.7" height="15.0" fill="rgb(233,215,53)" rx="2" ry="2" />
<text text-anchor="" x="401.49" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnaryExpression (7 samples, 0.31%)</title><rect x="490.4" y="1701" width="3.6" height="15.0" fill="rgb(228,169,19)" rx="2" ry="2" />
<text text-anchor="" x="493.41" y="1711.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (11 samples, 0.48%)</title><rect x="365.2" y="1445" width="5.8" height="15.0" fill="rgb(244,126,44)" rx="2" ry="2" />
<text text-anchor="" x="368.25" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_directlyAssignableExpression (9 samples, 0.40%)</title><rect x="176.2" y="981" width="4.7" height="15.0" fill="rgb(254,21,19)" rx="2" ry="2" />
<text text-anchor="" x="179.20" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="350.2" y="805" width="3.1" height="15.0" fill="rgb(239,75,48)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="236.4" y="1381" width="3.2" height="15.0" fill="rgb(249,68,45)" rx="2" ry="2" />
<text text-anchor="" x="239.44" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (9 samples, 0.40%)</title><rect x="289.4" y="1637" width="4.7" height="15.0" fill="rgb(219,71,53)" rx="2" ry="2" />
<text text-anchor="" x="292.42" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="177.2" y="325" width="3.7" height="15.0" fill="rgb(251,132,10)" rx="2" ry="2" />
<text text-anchor="" x="180.24" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_multiplicativeExpression (11 samples, 0.48%)</title><rect x="483.7" y="1701" width="5.7" height="15.0" fill="rgb(247,202,31)" rx="2" ry="2" />
<text text-anchor="" x="486.66" y="1711.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="804.6" y="453" width="4.2" height="15.0" fill="rgb(230,202,43)" rx="2" ry="2" />
<text text-anchor="" x="807.63" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_genericCallLikeComparison (6 samples, 0.26%)</title><rect x="437.4" y="1669" width="3.2" height="15.0" fill="rgb(243,151,8)" rx="2" ry="2" />
<text text-anchor="" x="440.44" y="1679.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (24 samples, 1.06%)</title><rect x="1153.1" y="757" width="12.5" height="15.0" fill="rgb(209,226,34)" rx="2" ry="2" />
<text text-anchor="" x="1156.12" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_comparison (6 samples, 0.26%)</title><rect x="225.5" y="1333" width="3.2" height="15.0" fill="rgb(225,134,43)" rx="2" ry="2" />
<text text-anchor="" x="228.54" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (46 samples, 2.02%)</title><rect x="928.8" y="1285" width="23.8" height="15.0" fill="rgb(219,167,23)" rx="2" ry="2" />
<text text-anchor="" x="931.76" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >p..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (95 samples, 4.18%)</title><rect x="749.1" y="869" width="49.3" height="15.0" fill="rgb(234,119,40)" rx="2" ry="2" />
<text text-anchor="" x="752.06" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pcc_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnaryExpression (6 samples, 0.26%)</title><rect x="483.7" y="1317" width="3.1" height="15.0" fill="rgb(221,131,29)" rx="2" ry="2" />
<text text-anchor="" x="486.66" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_statement (7 samples, 0.31%)</title><rect x="243.7" y="1429" width="3.7" height="15.0" fill="rgb(247,24,39)" rx="2" ry="2" />
<text text-anchor="" x="246.71" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="353.3" y="997" width="4.2" height="15.0" fill="rgb(244,144,13)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="216.7" y="1381" width="4.2" height="15.0" fill="rgb(249,32,15)" rx="2" ry="2" />
<text text-anchor="" x="219.71" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_valueArguments (6 samples, 0.26%)</title><rect x="247.4" y="949" width="3.1" height="15.0" fill="rgb(215,1,32)" rx="2" ry="2" />
<text text-anchor="" x="250.35" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="483.7" y="1237" width="3.1" height="15.0" fill="rgb(240,224,1)" rx="2" ry="2" />
<text text-anchor="" x="486.66" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_multiplicativeExpression (6 samples, 0.26%)</title><rect x="918.9" y="853" width="3.1" height="15.0" fill="rgb(222,177,11)" rx="2" ry="2" />
<text text-anchor="" x="921.89" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (47 samples, 2.07%)</title><rect x="1141.2" y="1333" width="24.4" height="15.0" fill="rgb(242,66,13)" rx="2" ry="2" />
<text text-anchor="" x="1144.18" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >p..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="247.4" y="805" width="3.1" height="15.0" fill="rgb(251,114,9)" rx="2" ry="2" />
<text text-anchor="" x="250.35" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="440.6" y="1429" width="3.1" height="15.0" fill="rgb(251,49,51)" rx="2" ry="2" />
<text text-anchor="" x="443.55" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="300.8" y="1477" width="4.2" height="15.0" fill="rgb(251,217,12)" rx="2" ry="2" />
<text text-anchor="" x="303.85" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (24 samples, 1.06%)</title><rect x="779.7" y="613" width="12.5" height="15.0" fill="rgb(248,199,29)" rx="2" ry="2" />
<text text-anchor="" x="782.70" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (24 samples, 1.06%)</title><rect x="756.3" y="709" width="12.5" height="15.0" fill="rgb(229,138,31)" rx="2" ry="2" />
<text text-anchor="" x="759.33" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (8 samples, 0.35%)</title><rect x="1161.4" y="149" width="4.2" height="15.0" fill="rgb(206,215,30)" rx="2" ry="2" />
<text text-anchor="" x="1164.43" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnaryExpression (8 samples, 0.35%)</title><rect x="398.5" y="981" width="4.1" height="15.0" fill="rgb(227,13,48)" rx="2" ry="2" />
<text text-anchor="" x="401.49" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnarySuffix (6 samples, 0.26%)</title><rect x="454.6" y="1317" width="3.1" height="15.0" fill="rgb(243,86,6)" rx="2" ry="2" />
<text text-anchor="" x="457.58" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (16 samples, 0.70%)</title><rect x="780.2" y="325" width="8.3" height="15.0" fill="rgb(238,110,5)" rx="2" ry="2" />
<text text-anchor="" x="783.22" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>runMainLoop (1,256 samples, 55.28%)</title><rect x="528.8" y="1669" width="652.4" height="15.0" fill="rgb(225,86,26)" rx="2" ry="2" />
<text text-anchor="" x="531.85" y="1679.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >runMainLoop</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="454.6" y="1589" width="3.1" height="15.0" fill="rgb(214,52,51)" rx="2" ry="2" />
<text text-anchor="" x="457.58" y="1599.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_classMemberDeclarations (15 samples, 0.66%)</title><rect x="243.7" y="1653" width="7.8" height="15.0" fill="rgb(247,140,50)" rx="2" ry="2" />
<text text-anchor="" x="246.71" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (28 samples, 1.23%)</title><rect x="1151.0" y="917" width="14.6" height="15.0" fill="rgb(215,170,5)" rx="2" ry="2" />
<text text-anchor="" x="1154.05" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_comparison (6 samples, 0.26%)</title><rect x="375.6" y="821" width="3.2" height="15.0" fill="rgb(231,115,34)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="350.2" y="1669" width="3.1" height="15.0" fill="rgb(242,73,40)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="1679.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnarySuffix (7 samples, 0.31%)</title><rect x="378.8" y="1333" width="3.6" height="15.0" fill="rgb(229,133,28)" rx="2" ry="2" />
<text text-anchor="" x="381.75" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_classMemberDeclarations (9 samples, 0.40%)</title><rect x="280.1" y="1589" width="4.6" height="15.0" fill="rgb(205,186,30)" rx="2" ry="2" />
<text text-anchor="" x="283.07" y="1599.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_asExpression (8 samples, 0.35%)</title><rect x="804.6" y="469" width="4.2" height="15.0" fill="rgb(208,40,4)" rx="2" ry="2" />
<text text-anchor="" x="807.63" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_label (9 samples, 0.40%)</title><rect x="820.2" y="373" width="4.7" height="15.0" fill="rgb(213,123,42)" rx="2" ry="2" />
<text text-anchor="" x="823.21" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_typeReference (7 samples, 0.31%)</title><rect x="872.7" y="917" width="3.6" height="15.0" fill="rgb(218,102,2)" rx="2" ry="2" />
<text text-anchor="" x="875.67" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (19 samples, 0.84%)</title><rect x="917.3" y="1221" width="9.9" height="15.0" fill="rgb(243,100,21)" rx="2" ry="2" />
<text text-anchor="" x="920.33" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (20 samples, 0.88%)</title><rect x="941.7" y="1221" width="10.4" height="15.0" fill="rgb(228,64,28)" rx="2" ry="2" />
<text text-anchor="" x="944.74" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (10 samples, 0.44%)</title><rect x="269.7" y="1541" width="5.2" height="15.0" fill="rgb(251,160,27)" rx="2" ry="2" />
<text text-anchor="" x="272.68" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="350.2" y="1381" width="3.1" height="15.0" fill="rgb(234,164,20)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_functionDeclaration (15 samples, 0.66%)</title><rect x="243.7" y="1557" width="7.8" height="15.0" fill="rgb(252,24,16)" rx="2" ry="2" />
<text text-anchor="" x="246.71" y="1567.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_multiplicativeExpression (7 samples, 0.31%)</title><rect x="361.6" y="1685" width="3.6" height="15.0" fill="rgb(247,133,7)" rx="2" ry="2" />
<text text-anchor="" x="364.61" y="1695.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_postfixUnaryExpression (6 samples, 0.26%)</title><rect x="247.4" y="437" width="3.1" height="15.0" fill="rgb(214,182,40)" rx="2" ry="2" />
<text text-anchor="" x="250.35" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="322.1" y="1509" width="3.2" height="15.0" fill="rgb(240,119,30)" rx="2" ry="2" />
<text text-anchor="" x="325.14" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (36 samples, 1.58%)</title><rect x="1146.9" y="1013" width="18.7" height="15.0" fill="rgb(214,10,33)" rx="2" ry="2" />
<text text-anchor="" x="1149.89" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="350.2" y="837" width="3.1" height="15.0" fill="rgb(209,7,33)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="216.7" y="997" width="3.6" height="15.0" fill="rgb(216,79,28)" rx="2" ry="2" />
<text text-anchor="" x="219.71" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_infixFunctionCall (24 samples, 1.06%)</title><rect x="884.6" y="885" width="12.5" height="15.0" fill="rgb(243,60,5)" rx="2" ry="2" />
<text text-anchor="" x="887.61" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="358.0" y="1637" width="3.6" height="15.0" fill="rgb(225,200,9)" rx="2" ry="2" />
<text text-anchor="" x="360.98" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="437.4" y="1397" width="3.2" height="15.0" fill="rgb(229,67,40)" rx="2" ry="2" />
<text text-anchor="" x="440.44" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="483.7" y="1365" width="3.1" height="15.0" fill="rgb(250,153,52)" rx="2" ry="2" />
<text text-anchor="" x="486.66" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (33 samples, 1.45%)</title><rect x="849.8" y="837" width="17.2" height="15.0" fill="rgb(241,7,0)" rx="2" ry="2" />
<text text-anchor="" x="852.82" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_callSuffix (7 samples, 0.31%)</title><rect x="398.5" y="917" width="3.6" height="15.0" fill="rgb(215,52,5)" rx="2" ry="2" />
<text text-anchor="" x="401.49" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_genericCallLikeComparison (10 samples, 0.44%)</title><rect x="274.9" y="1589" width="5.2" height="15.0" fill="rgb(240,85,36)" rx="2" ry="2" />
<text text-anchor="" x="277.88" y="1599.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_directlyAssignableExpression (6 samples, 0.26%)</title><rect x="483.7" y="1349" width="3.1" height="15.0" fill="rgb(233,221,26)" rx="2" ry="2" />
<text text-anchor="" x="486.66" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (37 samples, 1.63%)</title><rect x="1146.4" y="1189" width="19.2" height="15.0" fill="rgb(228,218,24)" rx="2" ry="2" />
<text text-anchor="" x="1149.37" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_prefixUnaryExpression (10 samples, 0.44%)</title><rect x="269.7" y="1397" width="5.2" height="15.0" fill="rgb(208,229,26)" rx="2" ry="2" />
<text text-anchor="" x="272.68" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_statement (10 samples, 0.44%)</title><rect x="236.4" y="1557" width="5.2" height="15.0" fill="rgb(224,229,36)" rx="2" ry="2" />
<text text-anchor="" x="239.44" y="1567.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="193.9" y="1461" width="3.6" height="15.0" fill="rgb(226,48,47)" rx="2" ry="2" />
<text text-anchor="" x="196.86" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="243.7" y="1381" width="3.1" height="15.0" fill="rgb(248,43,41)" rx="2" ry="2" />
<text text-anchor="" x="246.71" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="353.3" y="965" width="4.2" height="15.0" fill="rgb(240,19,1)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>createTagsForArgs (1,252 samples, 55.11%)</title><rect x="530.9" y="1637" width="650.3" height="15.0" fill="rgb(226,177,52)" rx="2" ry="2" />
<text text-anchor="" x="533.92" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >createTagsForArgs</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="207.4" y="1237" width="3.1" height="15.0" fill="rgb(236,62,12)" rx="2" ry="2" />
<text text-anchor="" x="210.36" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="252.0" y="1413" width="3.1" height="15.0" fill="rgb(223,152,40)" rx="2" ry="2" />
<text text-anchor="" x="255.02" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (53 samples, 2.33%)</title><rect x="1138.1" y="1381" width="27.5" height="15.0" fill="rgb(233,168,38)" rx="2" ry="2" />
<text text-anchor="" x="1141.06" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >p..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_disjunction (34 samples, 1.50%)</title><rect x="849.3" y="1077" width="17.7" height="15.0" fill="rgb(253,88,42)" rx="2" ry="2" />
<text text-anchor="" x="852.30" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_parameter (14 samples, 0.62%)</title><rect x="869.6" y="1077" width="7.2" height="15.0" fill="rgb(207,55,22)" rx="2" ry="2" />
<text text-anchor="" x="872.55" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_file (8 samples, 0.35%)</title><rect x="189.2" y="1509" width="4.1" height="15.0" fill="rgb(253,71,10)" rx="2" ry="2" />
<text text-anchor="" x="192.18" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="440.6" y="1685" width="3.1" height="15.0" fill="rgb(249,87,36)" rx="2" ry="2" />
<text text-anchor="" x="443.55" y="1695.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="309.2" y="1381" width="3.1" height="15.0" fill="rgb(215,168,9)" rx="2" ry="2" />
<text text-anchor="" x="312.15" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_rangeExpression (6 samples, 0.26%)</title><rect x="375.6" y="1269" width="3.2" height="15.0" fill="rgb(252,143,33)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_lr_memo_map__term (279 samples, 12.28%)</title><rect x="991.6" y="1413" width="144.9" height="15.0" fill="rgb(248,45,7)" rx="2" ry="2" />
<text text-anchor="" x="994.60" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pcc_lr_memo_map__t..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_infixFunctionCall (6 samples, 0.26%)</title><rect x="350.2" y="1269" width="3.1" height="15.0" fill="rgb(224,98,37)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="247.4" y="837" width="3.1" height="15.0" fill="rgb(206,193,4)" rx="2" ry="2" />
<text text-anchor="" x="250.35" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="300.8" y="1445" width="4.2" height="15.0" fill="rgb(244,1,4)" rx="2" ry="2" />
<text text-anchor="" x="303.85" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="225.5" y="1061" width="3.2" height="15.0" fill="rgb(247,116,19)" rx="2" ry="2" />
<text text-anchor="" x="228.54" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>createTagsWithFallback (9 samples, 0.40%)</title><rect x="202.7" y="1669" width="4.7" height="15.0" fill="rgb(250,93,16)" rx="2" ry="2" />
<text text-anchor="" x="205.68" y="1679.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_userType (7 samples, 0.31%)</title><rect x="872.7" y="885" width="3.6" height="15.0" fill="rgb(205,48,28)" rx="2" ry="2" />
<text text-anchor="" x="875.67" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (15 samples, 0.66%)</title><rect x="314.3" y="1669" width="7.8" height="15.0" fill="rgb(224,182,4)" rx="2" ry="2" />
<text text-anchor="" x="317.35" y="1679.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (13 samples, 0.57%)</title><rect x="176.2" y="1029" width="6.7" height="15.0" fill="rgb(229,136,13)" rx="2" ry="2" />
<text text-anchor="" x="179.20" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_declaration (48 samples, 2.11%)</title><rect x="815.0" y="1013" width="24.9" height="15.0" fill="rgb(222,66,36)" rx="2" ry="2" />
<text text-anchor="" x="818.02" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >p..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_equality (7 samples, 0.31%)</title><rect x="177.2" y="693" width="3.7" height="15.0" fill="rgb(223,168,4)" rx="2" ry="2" />
<text text-anchor="" x="180.24" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="503.4" y="1621" width="4.2" height="15.0" fill="rgb(241,33,2)" rx="2" ry="2" />
<text text-anchor="" x="506.40" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_prefixUnaryExpression (6 samples, 0.26%)</title><rect x="350.2" y="1109" width="3.1" height="15.0" fill="rgb(217,194,46)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_valueArgument (6 samples, 0.26%)</title><rect x="375.6" y="981" width="3.2" height="15.0" fill="rgb(221,72,26)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>batchMakeTags (18 samples, 0.79%)</title><rect x="176.2" y="1653" width="9.3" height="15.0" fill="rgb(217,170,14)" rx="2" ry="2" />
<text text-anchor="" x="179.20" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="177.2" y="357" width="3.7" height="15.0" fill="rgb(205,154,40)" rx="2" ry="2" />
<text text-anchor="" x="180.24" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="375.6" y="453" width="3.2" height="15.0" fill="rgb(212,58,11)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnarySuffix (11 samples, 0.48%)</title><rect x="378.8" y="1621" width="5.7" height="15.0" fill="rgb(205,25,50)" rx="2" ry="2" />
<text text-anchor="" x="381.75" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (9 samples, 0.40%)</title><rect x="202.7" y="1573" width="4.7" height="15.0" fill="rgb(233,184,47)" rx="2" ry="2" />
<text text-anchor="" x="205.68" y="1583.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_classDeclaration (7 samples, 0.31%)</title><rect x="309.2" y="1589" width="3.6" height="15.0" fill="rgb(233,4,50)" rx="2" ry="2" />
<text text-anchor="" x="312.15" y="1599.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_statement (6 samples, 0.26%)</title><rect x="454.6" y="1157" width="3.1" height="15.0" fill="rgb(217,74,11)" rx="2" ry="2" />
<text text-anchor="" x="457.58" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>parseMio (9 samples, 0.40%)</title><rect x="202.7" y="1685" width="4.7" height="15.0" fill="rgb(237,75,14)" rx="2" ry="2" />
<text text-anchor="" x="205.68" y="1695.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_infixOperation (6 samples, 0.26%)</title><rect x="375.6" y="757" width="3.2" height="15.0" fill="rgb(207,158,48)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="437.4" y="1429" width="3.2" height="15.0" fill="rgb(216,181,50)" rx="2" ry="2" />
<text text-anchor="" x="440.44" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnaryExpression (7 samples, 0.31%)</title><rect x="378.8" y="1365" width="3.6" height="15.0" fill="rgb(230,76,1)" rx="2" ry="2" />
<text text-anchor="" x="381.75" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_classMemberDeclarations (17 samples, 0.75%)</title><rect x="176.2" y="1269" width="8.8" height="15.0" fill="rgb(211,179,38)" rx="2" ry="2" />
<text text-anchor="" x="179.20" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_functionBody (46 samples, 2.02%)</title><rect x="928.8" y="1301" width="23.8" height="15.0" fill="rgb(234,27,6)" rx="2" ry="2" />
<text text-anchor="" x="931.76" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >p..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (10 samples, 0.44%)</title><rect x="388.6" y="1541" width="5.2" height="15.0" fill="rgb(212,34,14)" rx="2" ry="2" />
<text text-anchor="" x="391.62" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (30 samples, 1.32%)</title><rect x="849.8" y="709" width="15.6" height="15.0" fill="rgb(251,187,17)" rx="2" ry="2" />
<text text-anchor="" x="852.82" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (394 samples, 17.34%)</title><rect x="723.6" y="1317" width="204.6" height="15.0" fill="rgb(229,107,6)" rx="2" ry="2" />
<text text-anchor="" x="726.61" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pcc_apply_rule</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_prefixUnaryExpression (8 samples, 0.35%)</title><rect x="804.6" y="437" width="4.2" height="15.0" fill="rgb(212,31,4)" rx="2" ry="2" />
<text text-anchor="" x="807.63" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_additiveExpression (8 samples, 0.35%)</title><rect x="804.6" y="533" width="4.2" height="15.0" fill="rgb(220,172,35)" rx="2" ry="2" />
<text text-anchor="" x="807.63" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="300.8" y="1381" width="4.2" height="15.0" fill="rgb(249,137,23)" rx="2" ry="2" />
<text text-anchor="" x="303.85" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (9 samples, 0.40%)</title><rect x="280.1" y="1605" width="4.6" height="15.0" fill="rgb(216,18,22)" rx="2" ry="2" />
<text text-anchor="" x="283.07" y="1615.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (31 samples, 1.36%)</title><rect x="1091.8" y="1301" width="16.1" height="15.0" fill="rgb(215,48,2)" rx="2" ry="2" />
<text text-anchor="" x="1094.84" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="212.0" y="1573" width="4.2" height="15.0" fill="rgb(214,73,53)" rx="2" ry="2" />
<text text-anchor="" x="215.03" y="1583.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (37 samples, 1.63%)</title><rect x="1146.4" y="1125" width="19.2" height="15.0" fill="rgb(224,129,40)" rx="2" ry="2" />
<text text-anchor="" x="1149.37" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_block (10 samples, 0.44%)</title><rect x="231.2" y="1685" width="5.2" height="15.0" fill="rgb(209,219,19)" rx="2" ry="2" />
<text text-anchor="" x="234.25" y="1695.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (37 samples, 1.63%)</title><rect x="1146.4" y="1141" width="19.2" height="15.0" fill="rgb(216,97,30)" rx="2" ry="2" />
<text text-anchor="" x="1149.37" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_genericCallLikeComparison (8 samples, 0.35%)</title><rect x="247.4" y="1333" width="4.1" height="15.0" fill="rgb(241,67,19)" rx="2" ry="2" />
<text text-anchor="" x="250.35" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_classMemberDeclarations (6 samples, 0.26%)</title><rect x="959.9" y="1269" width="3.1" height="15.0" fill="rgb(248,102,54)" rx="2" ry="2" />
<text text-anchor="" x="962.92" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (10 samples, 0.44%)</title><rect x="309.2" y="1637" width="5.1" height="15.0" fill="rgb(208,6,5)" rx="2" ry="2" />
<text text-anchor="" x="312.15" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_multiplicativeExpression (6 samples, 0.26%)</title><rect x="247.4" y="533" width="3.1" height="15.0" fill="rgb(226,102,40)" rx="2" ry="2" />
<text text-anchor="" x="250.35" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="741.3" y="997" width="3.1" height="15.0" fill="rgb(244,172,45)" rx="2" ry="2" />
<text text-anchor="" x="744.27" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="483.7" y="1525" width="4.1" height="15.0" fill="rgb(208,204,1)" rx="2" ry="2" />
<text text-anchor="" x="486.66" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_multiplicativeExpression (6 samples, 0.26%)</title><rect x="350.2" y="565" width="3.1" height="15.0" fill="rgb(224,144,0)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnaryExpression (14 samples, 0.62%)</title><rect x="928.8" y="1109" width="7.2" height="15.0" fill="rgb(205,62,31)" rx="2" ry="2" />
<text text-anchor="" x="931.76" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pkotlin_parse (8 samples, 0.35%)</title><rect x="189.2" y="1557" width="4.1" height="15.0" fill="rgb(212,71,3)" rx="2" ry="2" />
<text text-anchor="" x="192.18" y="1567.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (37 samples, 1.63%)</title><rect x="1146.4" y="1045" width="19.2" height="15.0" fill="rgb(231,142,31)" rx="2" ry="2" />
<text text-anchor="" x="1149.37" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="274.9" y="1125" width="3.1" height="15.0" fill="rgb(225,162,54)" rx="2" ry="2" />
<text text-anchor="" x="277.88" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="378.8" y="1541" width="4.1" height="15.0" fill="rgb(247,212,11)" rx="2" ry="2" />
<text text-anchor="" x="381.75" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="350.2" y="1605" width="3.1" height="15.0" fill="rgb(240,26,38)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="1615.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_infixOperation (8 samples, 0.35%)</title><rect x="353.3" y="693" width="4.2" height="15.0" fill="rgb(234,107,4)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___libc_free (10 samples, 0.44%)</title><rect x="1128.2" y="1301" width="5.2" height="15.0" fill="rgb(210,24,14)" rx="2" ry="2" />
<text text-anchor="" x="1131.20" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="247.4" y="1189" width="4.1" height="15.0" fill="rgb(239,144,47)" rx="2" ry="2" />
<text text-anchor="" x="250.35" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_multiplicativeExpression (30 samples, 1.32%)</title><rect x="817.6" y="597" width="15.6" height="15.0" fill="rgb(251,37,4)" rx="2" ry="2" />
<text text-anchor="" x="820.61" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_asExpression (8 samples, 0.35%)</title><rect x="300.8" y="1301" width="4.2" height="15.0" fill="rgb(230,197,5)" rx="2" ry="2" />
<text text-anchor="" x="303.85" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_conjunction (34 samples, 1.50%)</title><rect x="816.6" y="885" width="17.6" height="15.0" fill="rgb(250,18,43)" rx="2" ry="2" />
<text text-anchor="" x="819.58" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_declaration (8 samples, 0.35%)</title><rect x="443.7" y="1701" width="4.1" height="15.0" fill="rgb(216,21,44)" rx="2" ry="2" />
<text text-anchor="" x="446.67" y="1711.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_directlyAssignableExpression (14 samples, 0.62%)</title><rect x="928.8" y="1141" width="7.2" height="15.0" fill="rgb(225,101,47)" rx="2" ry="2" />
<text text-anchor="" x="931.76" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_additiveExpression (6 samples, 0.26%)</title><rect x="440.6" y="1445" width="3.1" height="15.0" fill="rgb(236,155,26)" rx="2" ry="2" />
<text text-anchor="" x="443.55" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (16 samples, 0.70%)</title><rect x="365.2" y="1669" width="8.4" height="15.0" fill="rgb(233,140,26)" rx="2" ry="2" />
<text text-anchor="" x="368.25" y="1679.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_classMemberDeclarations (361 samples, 15.89%)</title><rect x="725.2" y="1269" width="187.5" height="15.0" fill="rgb(248,177,35)" rx="2" ry="2" />
<text text-anchor="" x="728.17" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pcc_evaluate_rule_classM..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (12 samples, 0.53%)</title><rect x="849.8" y="549" width="6.2" height="15.0" fill="rgb(251,172,28)" rx="2" ry="2" />
<text text-anchor="" x="852.82" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="177.2" y="837" width="3.7" height="15.0" fill="rgb(230,169,21)" rx="2" ry="2" />
<text text-anchor="" x="180.24" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="378.8" y="1221" width="3.6" height="15.0" fill="rgb(253,35,38)" rx="2" ry="2" />
<text text-anchor="" x="381.75" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="918.9" y="901" width="3.1" height="15.0" fill="rgb(244,6,31)" rx="2" ry="2" />
<text text-anchor="" x="921.89" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_additiveExpression (20 samples, 0.88%)</title><rect x="941.7" y="949" width="10.4" height="15.0" fill="rgb(247,176,52)" rx="2" ry="2" />
<text text-anchor="" x="944.74" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (10 samples, 0.44%)</title><rect x="236.4" y="1637" width="5.2" height="15.0" fill="rgb(244,107,40)" rx="2" ry="2" />
<text text-anchor="" x="239.44" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnarySuffix (6 samples, 0.26%)</title><rect x="212.0" y="1525" width="3.1" height="15.0" fill="rgb(245,168,29)" rx="2" ry="2" />
<text text-anchor="" x="215.03" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_classMemberDeclaration (359 samples, 15.80%)</title><rect x="725.2" y="1237" width="186.4" height="15.0" fill="rgb(212,100,46)" rx="2" ry="2" />
<text text-anchor="" x="728.17" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pcc_evaluate_rule_classM..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="177.2" y="165" width="3.2" height="15.0" fill="rgb(232,60,45)" rx="2" ry="2" />
<text text-anchor="" x="180.24" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_file (18 samples, 0.79%)</title><rect x="176.2" y="1461" width="9.3" height="15.0" fill="rgb(230,209,33)" rx="2" ry="2" />
<text text-anchor="" x="179.20" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (34 samples, 1.50%)</title><rect x="816.6" y="933" width="17.6" height="15.0" fill="rgb(215,22,50)" rx="2" ry="2" />
<text text-anchor="" x="819.58" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="350.2" y="1445" width="3.1" height="15.0" fill="rgb(219,81,23)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="309.2" y="1477" width="3.6" height="15.0" fill="rgb(220,13,18)" rx="2" ry="2" />
<text text-anchor="" x="312.15" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_rangeExpression (8 samples, 0.35%)</title><rect x="300.8" y="1397" width="4.2" height="15.0" fill="rgb(243,121,33)" rx="2" ry="2" />
<text text-anchor="" x="303.85" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="199.6" y="1621" width="3.1" height="15.0" fill="rgb(241,91,22)" rx="2" ry="2" />
<text text-anchor="" x="202.57" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_callSuffix (15 samples, 0.66%)</title><rect x="885.7" y="629" width="7.7" height="15.0" fill="rgb(225,107,37)" rx="2" ry="2" />
<text text-anchor="" x="888.65" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="375.6" y="933" width="3.2" height="15.0" fill="rgb(207,218,13)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (26 samples, 1.14%)</title><rect x="799.4" y="901" width="13.5" height="15.0" fill="rgb(237,19,5)" rx="2" ry="2" />
<text text-anchor="" x="802.44" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (56 samples, 2.46%)</title><rect x="1136.5" y="1477" width="29.1" height="15.0" fill="rgb(225,186,4)" rx="2" ry="2" />
<text text-anchor="" x="1139.51" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pc..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_elvisExpression (20 samples, 0.88%)</title><rect x="941.7" y="1045" width="10.4" height="15.0" fill="rgb(210,188,28)" rx="2" ry="2" />
<text text-anchor="" x="944.74" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (18 samples, 0.79%)</title><rect x="1156.2" y="597" width="9.4" height="15.0" fill="rgb(225,50,49)" rx="2" ry="2" />
<text text-anchor="" x="1159.24" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_assignment (7 samples, 0.31%)</title><rect x="314.3" y="1557" width="3.7" height="15.0" fill="rgb(229,146,0)" rx="2" ry="2" />
<text text-anchor="" x="317.35" y="1567.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (44 samples, 1.94%)</title><rect x="1142.7" y="1269" width="22.9" height="15.0" fill="rgb(252,166,13)" rx="2" ry="2" />
<text text-anchor="" x="1145.74" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >p..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>createTagsForFile (1,157 samples, 50.92%)</title><rect x="564.7" y="1541" width="600.9" height="15.0" fill="rgb(228,148,2)" rx="2" ry="2" />
<text text-anchor="" x="567.68" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >createTagsForFile</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="207.4" y="1269" width="3.1" height="15.0" fill="rgb(222,77,42)" rx="2" ry="2" />
<text text-anchor="" x="210.36" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_infixOperation (6 samples, 0.26%)</title><rect x="440.6" y="1573" width="3.1" height="15.0" fill="rgb(238,53,53)" rx="2" ry="2" />
<text text-anchor="" x="443.55" y="1583.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="440.6" y="1653" width="3.1" height="15.0" fill="rgb(253,171,47)" rx="2" ry="2" />
<text text-anchor="" x="443.55" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_receiverType (6 samples, 0.26%)</title><rect x="799.4" y="853" width="3.2" height="15.0" fill="rgb(215,100,44)" rx="2" ry="2" />
<text text-anchor="" x="802.44" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="353.3" y="645" width="4.2" height="15.0" fill="rgb(233,32,49)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_asExpression (6 samples, 0.26%)</title><rect x="350.2" y="1141" width="3.1" height="15.0" fill="rgb(228,149,39)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="893.4" y="645" width="3.7" height="15.0" fill="rgb(244,79,10)" rx="2" ry="2" />
<text text-anchor="" x="896.44" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (9 samples, 0.40%)</title><rect x="280.1" y="1477" width="4.6" height="15.0" fill="rgb(222,173,46)" rx="2" ry="2" />
<text text-anchor="" x="283.07" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="353.3" y="1157" width="4.2" height="15.0" fill="rgb(231,10,21)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnarySuffix (6 samples, 0.26%)</title><rect x="247.4" y="405" width="3.1" height="15.0" fill="rgb(249,203,54)" rx="2" ry="2" />
<text text-anchor="" x="250.35" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_annotatedLambda (8 samples, 0.35%)</title><rect x="378.8" y="1557" width="4.1" height="15.0" fill="rgb(215,94,4)" rx="2" ry="2" />
<text text-anchor="" x="381.75" y="1567.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="193.9" y="1493" width="3.6" height="15.0" fill="rgb(208,189,15)" rx="2" ry="2" />
<text text-anchor="" x="196.86" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_multiplicativeExpression (6 samples, 0.26%)</title><rect x="898.6" y="757" width="3.2" height="15.0" fill="rgb(213,78,20)" rx="2" ry="2" />
<text text-anchor="" x="901.64" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="216.7" y="805" width="3.1" height="15.0" fill="rgb(239,182,39)" rx="2" ry="2" />
<text text-anchor="" x="219.71" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_statement (7 samples, 0.31%)</title><rect x="358.0" y="1621" width="3.6" height="15.0" fill="rgb(215,27,44)" rx="2" ry="2" />
<text text-anchor="" x="360.98" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_prefixUnaryExpression (20 samples, 0.88%)</title><rect x="780.2" y="373" width="10.4" height="15.0" fill="rgb(207,128,15)" rx="2" ry="2" />
<text text-anchor="" x="783.22" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (361 samples, 15.89%)</title><rect x="725.2" y="1253" width="187.5" height="15.0" fill="rgb(248,212,8)" rx="2" ry="2" />
<text text-anchor="" x="728.17" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pcc_apply_rule</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="231.2" y="1573" width="3.2" height="15.0" fill="rgb(224,153,37)" rx="2" ry="2" />
<text text-anchor="" x="234.25" y="1583.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (17 samples, 0.75%)</title><rect x="176.2" y="1253" width="8.8" height="15.0" fill="rgb(241,85,23)" rx="2" ry="2" />
<text text-anchor="" x="179.20" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="274.9" y="1157" width="3.1" height="15.0" fill="rgb(207,212,20)" rx="2" ry="2" />
<text text-anchor="" x="277.88" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="247.4" y="1413" width="4.1" height="15.0" fill="rgb(241,115,10)" rx="2" ry="2" />
<text text-anchor="" x="250.35" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_additiveExpression (8 samples, 0.35%)</title><rect x="353.3" y="1173" width="4.2" height="15.0" fill="rgb(227,176,33)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="918.9" y="1157" width="3.6" height="15.0" fill="rgb(206,2,1)" rx="2" ry="2" />
<text text-anchor="" x="921.89" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_asExpression (29 samples, 1.28%)</title><rect x="817.6" y="565" width="15.1" height="15.0" fill="rgb(239,182,35)" rx="2" ry="2" />
<text text-anchor="" x="820.61" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_lambdaLiteral (8 samples, 0.35%)</title><rect x="378.8" y="1525" width="4.1" height="15.0" fill="rgb(218,92,2)" rx="2" ry="2" />
<text text-anchor="" x="381.75" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_statement (13 samples, 0.57%)</title><rect x="216.2" y="1589" width="6.7" height="15.0" fill="rgb(240,176,7)" rx="2" ry="2" />
<text text-anchor="" x="219.19" y="1599.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_asExpression (6 samples, 0.26%)</title><rect x="375.6" y="1173" width="3.2" height="15.0" fill="rgb(228,1,17)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_commit_buffer (281 samples, 12.37%)</title><rect x="990.6" y="1477" width="145.9" height="15.0" fill="rgb(219,165,6)" rx="2" ry="2" />
<text text-anchor="" x="993.56" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pcc_commit_buffer</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_infixFunctionCall (8 samples, 0.35%)</title><rect x="247.4" y="1237" width="4.1" height="15.0" fill="rgb(245,17,24)" rx="2" ry="2" />
<text text-anchor="" x="250.35" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (20 samples, 0.88%)</title><rect x="941.7" y="1061" width="10.4" height="15.0" fill="rgb(239,129,51)" rx="2" ry="2" />
<text text-anchor="" x="944.74" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="353.3" y="613" width="4.2" height="15.0" fill="rgb(230,27,34)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="508.1" y="1557" width="3.6" height="15.0" fill="rgb(249,87,27)" rx="2" ry="2" />
<text text-anchor="" x="511.07" y="1567.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="189.2" y="1525" width="4.1" height="15.0" fill="rgb(223,212,26)" rx="2" ry="2" />
<text text-anchor="" x="192.18" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_asExpression (30 samples, 1.32%)</title><rect x="849.8" y="725" width="15.6" height="15.0" fill="rgb(254,141,35)" rx="2" ry="2" />
<text text-anchor="" x="852.82" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_statements (9 samples, 0.40%)</title><rect x="398.5" y="1397" width="4.7" height="15.0" fill="rgb(207,172,14)" rx="2" ry="2" />
<text text-anchor="" x="401.49" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_classDeclaration (7 samples, 0.31%)</title><rect x="189.2" y="1381" width="3.6" height="15.0" fill="rgb(241,174,14)" rx="2" ry="2" />
<text text-anchor="" x="192.18" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (9 samples, 0.40%)</title><rect x="322.1" y="1605" width="4.7" height="15.0" fill="rgb(211,101,27)" rx="2" ry="2" />
<text text-anchor="" x="325.14" y="1615.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_assignment (9 samples, 0.40%)</title><rect x="176.2" y="1013" width="4.7" height="15.0" fill="rgb(251,183,53)" rx="2" ry="2" />
<text text-anchor="" x="179.20" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (26 samples, 1.14%)</title><rect x="818.7" y="517" width="13.5" height="15.0" fill="rgb(250,170,26)" rx="2" ry="2" />
<text text-anchor="" x="821.65" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_functionBody (10 samples, 0.44%)</title><rect x="257.7" y="1589" width="5.2" height="15.0" fill="rgb(243,25,53)" rx="2" ry="2" />
<text text-anchor="" x="260.74" y="1599.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_additiveExpression (31 samples, 1.36%)</title><rect x="849.8" y="789" width="16.1" height="15.0" fill="rgb(219,228,2)" rx="2" ry="2" />
<text text-anchor="" x="852.82" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (21 samples, 0.92%)</title><rect x="917.3" y="1285" width="10.9" height="15.0" fill="rgb(232,134,26)" rx="2" ry="2" />
<text text-anchor="" x="920.33" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (14 samples, 0.62%)</title><rect x="236.4" y="1669" width="7.3" height="15.0" fill="rgb(223,201,52)" rx="2" ry="2" />
<text text-anchor="" x="239.44" y="1679.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_classDeclaration (6 samples, 0.26%)</title><rect x="207.4" y="1445" width="3.1" height="15.0" fill="rgb(228,104,26)" rx="2" ry="2" />
<text text-anchor="" x="210.36" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_lambdaLiteral (6 samples, 0.26%)</title><rect x="216.7" y="789" width="3.1" height="15.0" fill="rgb(228,86,3)" rx="2" ry="2" />
<text text-anchor="" x="219.71" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (23 samples, 1.01%)</title><rect x="756.3" y="677" width="12.0" height="15.0" fill="rgb(244,28,42)" rx="2" ry="2" />
<text text-anchor="" x="759.33" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_directlyAssignableExpression (6 samples, 0.26%)</title><rect x="243.7" y="1365" width="3.1" height="15.0" fill="rgb(227,105,24)" rx="2" ry="2" />
<text text-anchor="" x="246.71" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (18 samples, 0.79%)</title><rect x="974.5" y="1285" width="9.3" height="15.0" fill="rgb(213,11,29)" rx="2" ry="2" />
<text text-anchor="" x="977.46" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_additiveExpression (8 samples, 0.35%)</title><rect x="329.9" y="1621" width="4.2" height="15.0" fill="rgb(250,160,37)" rx="2" ry="2" />
<text text-anchor="" x="332.93" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="329.9" y="1573" width="4.2" height="15.0" fill="rgb(225,120,1)" rx="2" ry="2" />
<text text-anchor="" x="332.93" y="1583.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="898.6" y="933" width="3.2" height="15.0" fill="rgb(230,34,52)" rx="2" ry="2" />
<text text-anchor="" x="901.64" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="483.7" y="1269" width="3.1" height="15.0" fill="rgb(250,11,31)" rx="2" ry="2" />
<text text-anchor="" x="486.66" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_filePart (8 samples, 0.35%)</title><rect x="305.0" y="1653" width="4.2" height="15.0" fill="rgb(214,58,40)" rx="2" ry="2" />
<text text-anchor="" x="308.00" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="225.5" y="1221" width="3.2" height="15.0" fill="rgb(252,68,46)" rx="2" ry="2" />
<text text-anchor="" x="228.54" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_classBody (6 samples, 0.26%)</title><rect x="305.0" y="1525" width="3.1" height="15.0" fill="rgb(248,10,7)" rx="2" ry="2" />
<text text-anchor="" x="308.00" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="454.6" y="1557" width="3.1" height="15.0" fill="rgb(215,126,21)" rx="2" ry="2" />
<text text-anchor="" x="457.58" y="1567.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_prefixUnaryExpression (6 samples, 0.26%)</title><rect x="898.6" y="693" width="3.2" height="15.0" fill="rgb(235,172,28)" rx="2" ry="2" />
<text text-anchor="" x="901.64" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_conjunction (8 samples, 0.35%)</title><rect x="247.4" y="1429" width="4.1" height="15.0" fill="rgb(210,119,27)" rx="2" ry="2" />
<text text-anchor="" x="250.35" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="353.3" y="677" width="4.2" height="15.0" fill="rgb(239,26,54)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (43 samples, 1.89%)</title><rect x="1143.3" y="1253" width="22.3" height="15.0" fill="rgb(206,207,23)" rx="2" ry="2" />
<text text-anchor="" x="1146.26" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >p..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_directlyAssignableExpression (6 samples, 0.26%)</title><rect x="231.2" y="1557" width="3.2" height="15.0" fill="rgb(236,67,52)" rx="2" ry="2" />
<text text-anchor="" x="234.25" y="1567.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="353.3" y="1125" width="4.2" height="15.0" fill="rgb(209,79,22)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (7 samples, 0.31%)</title><rect x="1162.0" y="117" width="3.6" height="15.0" fill="rgb(223,0,4)" rx="2" ry="2" />
<text text-anchor="" x="1164.95" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (9 samples, 0.40%)</title><rect x="280.1" y="1445" width="4.6" height="15.0" fill="rgb(244,80,3)" rx="2" ry="2" />
<text text-anchor="" x="283.07" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (23 samples, 1.01%)</title><rect x="885.1" y="677" width="12.0" height="15.0" fill="rgb(248,190,48)" rx="2" ry="2" />
<text text-anchor="" x="888.13" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_valueArgument (8 samples, 0.35%)</title><rect x="353.3" y="917" width="4.2" height="15.0" fill="rgb(241,91,13)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (51 samples, 2.24%)</title><rect x="1139.1" y="1365" width="26.5" height="15.0" fill="rgb(244,3,19)" rx="2" ry="2" />
<text text-anchor="" x="1142.10" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >p..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="440.6" y="1397" width="3.1" height="15.0" fill="rgb(238,72,51)" rx="2" ry="2" />
<text text-anchor="" x="443.55" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="216.7" y="837" width="3.1" height="15.0" fill="rgb(208,6,14)" rx="2" ry="2" />
<text text-anchor="" x="219.71" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_filePart (10 samples, 0.44%)</title><rect x="309.2" y="1685" width="5.1" height="15.0" fill="rgb(211,144,47)" rx="2" ry="2" />
<text text-anchor="" x="312.15" y="1695.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_receiverType (7 samples, 0.31%)</title><rect x="872.7" y="981" width="3.6" height="15.0" fill="rgb(211,94,22)" rx="2" ry="2" />
<text text-anchor="" x="875.67" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_callSuffix (8 samples, 0.35%)</title><rect x="483.7" y="1541" width="4.1" height="15.0" fill="rgb(221,164,27)" rx="2" ry="2" />
<text text-anchor="" x="486.66" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="872.7" y="933" width="3.6" height="15.0" fill="rgb(231,131,29)" rx="2" ry="2" />
<text text-anchor="" x="875.67" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_directlyAssignableExpression (8 samples, 0.35%)</title><rect x="398.5" y="1013" width="4.1" height="15.0" fill="rgb(233,120,20)" rx="2" ry="2" />
<text text-anchor="" x="401.49" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="177.2" y="805" width="3.7" height="15.0" fill="rgb(227,111,6)" rx="2" ry="2" />
<text text-anchor="" x="180.24" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="177.2" y="197" width="3.2" height="15.0" fill="rgb(249,194,17)" rx="2" ry="2" />
<text text-anchor="" x="180.24" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (9 samples, 0.40%)</title><rect x="398.5" y="1445" width="4.7" height="15.0" fill="rgb(248,173,2)" rx="2" ry="2" />
<text text-anchor="" x="401.49" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (10 samples, 0.44%)</title><rect x="236.4" y="1509" width="5.2" height="15.0" fill="rgb(224,123,47)" rx="2" ry="2" />
<text text-anchor="" x="239.44" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="931.9" y="1061" width="3.6" height="15.0" fill="rgb(249,142,24)" rx="2" ry="2" />
<text text-anchor="" x="934.88" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_declaration (7 samples, 0.31%)</title><rect x="309.2" y="1461" width="3.6" height="15.0" fill="rgb(207,171,26)" rx="2" ry="2" />
<text text-anchor="" x="312.15" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (14 samples, 0.62%)</title><rect x="941.7" y="773" width="7.3" height="15.0" fill="rgb(211,202,43)" rx="2" ry="2" />
<text text-anchor="" x="944.74" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>createTagsWithFallback1 (9 samples, 0.40%)</title><rect x="202.7" y="1653" width="4.7" height="15.0" fill="rgb(218,107,51)" rx="2" ry="2" />
<text text-anchor="" x="205.68" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_disjunction (28 samples, 1.23%)</title><rect x="779.7" y="757" width="14.5" height="15.0" fill="rgb(244,133,8)" rx="2" ry="2" />
<text text-anchor="" x="782.70" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="271.8" y="1317" width="3.1" height="15.0" fill="rgb(225,210,12)" rx="2" ry="2" />
<text text-anchor="" x="274.76" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="309.2" y="1445" width="3.6" height="15.0" fill="rgb(232,194,25)" rx="2" ry="2" />
<text text-anchor="" x="312.15" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="350.2" y="1477" width="3.1" height="15.0" fill="rgb(211,26,28)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (25 samples, 1.10%)</title><rect x="928.8" y="1189" width="12.9" height="15.0" fill="rgb(230,26,4)" rx="2" ry="2" />
<text text-anchor="" x="931.76" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_infixOperation (8 samples, 0.35%)</title><rect x="300.8" y="1493" width="4.2" height="15.0" fill="rgb(214,55,34)" rx="2" ry="2" />
<text text-anchor="" x="303.85" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_valueArgument (6 samples, 0.26%)</title><rect x="225.5" y="1493" width="3.2" height="15.0" fill="rgb(225,3,26)" rx="2" ry="2" />
<text text-anchor="" x="228.54" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>main_arena (8 samples, 0.35%)</title><rect x="1183.2" y="1717" width="4.2" height="15.0" fill="rgb(254,92,23)" rx="2" ry="2" />
<text text-anchor="" x="1186.25" y="1727.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_additiveExpression (24 samples, 1.06%)</title><rect x="779.7" y="469" width="12.5" height="15.0" fill="rgb(246,155,41)" rx="2" ry="2" />
<text text-anchor="" x="782.70" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_elvisExpression (7 samples, 0.31%)</title><rect x="177.2" y="565" width="3.7" height="15.0" fill="rgb(211,48,21)" rx="2" ry="2" />
<text text-anchor="" x="180.24" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (10 samples, 0.44%)</title><rect x="398.5" y="1541" width="5.2" height="15.0" fill="rgb(230,190,9)" rx="2" ry="2" />
<text text-anchor="" x="401.49" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_context__destroy (298 samples, 13.12%)</title><rect x="564.7" y="1493" width="154.8" height="15.0" fill="rgb(216,26,19)" rx="2" ry="2" />
<text text-anchor="" x="567.68" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pcc_context__destroy</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_statements (13 samples, 0.57%)</title><rect x="314.3" y="1621" width="6.8" height="15.0" fill="rgb(213,167,34)" rx="2" ry="2" />
<text text-anchor="" x="317.35" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_callSuffix (6 samples, 0.26%)</title><rect x="247.4" y="981" width="3.1" height="15.0" fill="rgb(232,63,7)" rx="2" ry="2" />
<text text-anchor="" x="250.35" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_hardKeyword (19 samples, 0.84%)</title><rect x="974.5" y="1301" width="9.8" height="15.0" fill="rgb(254,196,0)" rx="2" ry="2" />
<text text-anchor="" x="977.46" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (25 samples, 1.10%)</title><rect x="779.7" y="645" width="13.0" height="15.0" fill="rgb(252,123,53)" rx="2" ry="2" />
<text text-anchor="" x="782.70" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_genericCallLikeComparison (25 samples, 1.10%)</title><rect x="884.6" y="981" width="13.0" height="15.0" fill="rgb(219,18,19)" rx="2" ry="2" />
<text text-anchor="" x="887.61" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (24 samples, 1.06%)</title><rect x="1153.1" y="741" width="12.5" height="15.0" fill="rgb(243,198,32)" rx="2" ry="2" />
<text text-anchor="" x="1156.12" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (10 samples, 0.44%)</title><rect x="519.5" y="1397" width="5.2" height="15.0" fill="rgb(205,200,35)" rx="2" ry="2" />
<text text-anchor="" x="522.50" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (10 samples, 0.44%)</title><rect x="373.6" y="1669" width="5.2" height="15.0" fill="rgb(212,142,41)" rx="2" ry="2" />
<text text-anchor="" x="376.56" y="1679.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="918.9" y="997" width="3.1" height="15.0" fill="rgb(224,22,16)" rx="2" ry="2" />
<text text-anchor="" x="921.89" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (9 samples, 0.40%)</title><rect x="202.7" y="1509" width="4.7" height="15.0" fill="rgb(236,133,1)" rx="2" ry="2" />
<text text-anchor="" x="205.68" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_elvisExpression (6 samples, 0.26%)</title><rect x="350.2" y="1301" width="3.1" height="15.0" fill="rgb(226,215,44)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="329.9" y="1445" width="3.7" height="15.0" fill="rgb(215,4,3)" rx="2" ry="2" />
<text text-anchor="" x="332.93" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_functionBody (15 samples, 0.66%)</title><rect x="243.7" y="1525" width="7.8" height="15.0" fill="rgb(223,54,0)" rx="2" ry="2" />
<text text-anchor="" x="246.71" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_conjunction (7 samples, 0.31%)</title><rect x="177.2" y="725" width="3.7" height="15.0" fill="rgb(237,163,40)" rx="2" ry="2" />
<text text-anchor="" x="180.24" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="305.0" y="1477" width="3.1" height="15.0" fill="rgb(211,124,47)" rx="2" ry="2" />
<text text-anchor="" x="308.00" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_infixFunctionCall (6 samples, 0.26%)</title><rect x="350.2" y="661" width="3.1" height="15.0" fill="rgb(214,184,4)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>findKotlinTags (8 samples, 0.35%)</title><rect x="189.2" y="1573" width="4.1" height="15.0" fill="rgb(227,7,36)" rx="2" ry="2" />
<text text-anchor="" x="192.18" y="1583.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (27 samples, 1.19%)</title><rect x="1151.6" y="901" width="14.0" height="15.0" fill="rgb(251,97,17)" rx="2" ry="2" />
<text text-anchor="" x="1154.57" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="252.0" y="1349" width="3.1" height="15.0" fill="rgb(222,25,19)" rx="2" ry="2" />
<text text-anchor="" x="255.02" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (18 samples, 0.79%)</title><rect x="1156.2" y="565" width="9.4" height="15.0" fill="rgb(215,133,42)" rx="2" ry="2" />
<text text-anchor="" x="1159.24" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (21 samples, 0.92%)</title><rect x="1028.0" y="1333" width="10.9" height="15.0" fill="rgb(206,116,37)" rx="2" ry="2" />
<text text-anchor="" x="1030.96" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="334.1" y="1445" width="3.1" height="15.0" fill="rgb(244,46,53)" rx="2" ry="2" />
<text text-anchor="" x="337.08" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_elvisExpression (6 samples, 0.26%)</title><rect x="334.1" y="1653" width="3.1" height="15.0" fill="rgb(219,2,25)" rx="2" ry="2" />
<text text-anchor="" x="337.08" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_importHeader (38 samples, 1.67%)</title><rect x="966.2" y="1397" width="19.7" height="15.0" fill="rgb(229,72,32)" rx="2" ry="2" />
<text text-anchor="" x="969.15" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="247.4" y="741" width="3.1" height="15.0" fill="rgb(240,17,29)" rx="2" ry="2" />
<text text-anchor="" x="250.35" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (13 samples, 0.57%)</title><rect x="176.2" y="1093" width="6.7" height="15.0" fill="rgb(252,33,31)" rx="2" ry="2" />
<text text-anchor="" x="179.20" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_comparison (6 samples, 0.26%)</title><rect x="918.9" y="1077" width="3.1" height="15.0" fill="rgb(236,115,32)" rx="2" ry="2" />
<text text-anchor="" x="921.89" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (9 samples, 0.40%)</title><rect x="264.5" y="1573" width="4.7" height="15.0" fill="rgb(222,119,42)" rx="2" ry="2" />
<text text-anchor="" x="267.49" y="1583.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pkotlin_parse (859 samples, 37.81%)</title><rect x="719.5" y="1493" width="446.1" height="15.0" fill="rgb(246,148,13)" rx="2" ry="2" />
<text text-anchor="" x="722.45" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pkotlin_parse</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="437.4" y="1365" width="3.2" height="15.0" fill="rgb(228,92,42)" rx="2" ry="2" />
<text text-anchor="" x="440.44" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="216.7" y="1221" width="4.2" height="15.0" fill="rgb(227,133,27)" rx="2" ry="2" />
<text text-anchor="" x="219.71" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_lambdaLiteral (10 samples, 0.44%)</title><rect x="236.4" y="1621" width="5.2" height="15.0" fill="rgb(237,47,44)" rx="2" ry="2" />
<text text-anchor="" x="239.44" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (11 samples, 0.48%)</title><rect x="225.5" y="1669" width="5.7" height="15.0" fill="rgb(215,84,13)" rx="2" ry="2" />
<text text-anchor="" x="228.54" y="1679.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (11 samples, 0.48%)</title><rect x="483.7" y="1653" width="5.7" height="15.0" fill="rgb(253,197,0)" rx="2" ry="2" />
<text text-anchor="" x="486.66" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_genericCallLikeComparison (8 samples, 0.35%)</title><rect x="353.3" y="725" width="4.2" height="15.0" fill="rgb(252,215,28)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="225.5" y="1445" width="3.2" height="15.0" fill="rgb(244,122,26)" rx="2" ry="2" />
<text text-anchor="" x="228.54" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nominateLanguageCandidatesForPattern (63 samples, 2.77%)</title><rect x="532.0" y="1525" width="32.7" height="15.0" fill="rgb(209,223,46)" rx="2" ry="2" />
<text text-anchor="" x="534.96" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >no..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_multiplicativeExpression (6 samples, 0.26%)</title><rect x="454.6" y="1445" width="3.1" height="15.0" fill="rgb(225,149,46)" rx="2" ry="2" />
<text text-anchor="" x="457.58" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnarySuffix (7 samples, 0.31%)</title><rect x="398.5" y="949" width="3.6" height="15.0" fill="rgb(253,3,47)" rx="2" ry="2" />
<text text-anchor="" x="401.49" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_infixFunctionCall (8 samples, 0.35%)</title><rect x="353.3" y="629" width="4.2" height="15.0" fill="rgb(233,141,28)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_expression (6 samples, 0.26%)</title><rect x="839.9" y="1013" width="3.2" height="15.0" fill="rgb(223,80,15)" rx="2" ry="2" />
<text text-anchor="" x="842.95" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="353.3" y="1541" width="4.2" height="15.0" fill="rgb(252,228,26)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="519.5" y="1301" width="3.1" height="15.0" fill="rgb(229,97,38)" rx="2" ry="2" />
<text text-anchor="" x="522.50" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_disjunction (8 samples, 0.35%)</title><rect x="804.6" y="821" width="4.2" height="15.0" fill="rgb(231,118,32)" rx="2" ry="2" />
<text text-anchor="" x="807.63" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (466 samples, 20.51%)</title><rect x="723.6" y="1381" width="242.0" height="15.0" fill="rgb(224,85,4)" rx="2" ry="2" />
<text text-anchor="" x="726.61" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pcc_apply_rule</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>findKotlinTags (18 samples, 0.79%)</title><rect x="176.2" y="1525" width="9.3" height="15.0" fill="rgb(244,193,32)" rx="2" ry="2" />
<text text-anchor="" x="179.20" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_classDeclaration (6 samples, 0.26%)</title><rect x="202.7" y="1429" width="3.1" height="15.0" fill="rgb(219,92,53)" rx="2" ry="2" />
<text text-anchor="" x="205.68" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_asExpression (7 samples, 0.31%)</title><rect x="361.6" y="1653" width="3.6" height="15.0" fill="rgb(237,206,35)" rx="2" ry="2" />
<text text-anchor="" x="364.61" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="843.1" y="965" width="3.6" height="15.0" fill="rgb(224,154,19)" rx="2" ry="2" />
<text text-anchor="" x="846.06" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ptrArrayClear (17 samples, 0.75%)</title><rect x="1168.7" y="1493" width="8.8" height="15.0" fill="rgb(224,86,54)" rx="2" ry="2" />
<text text-anchor="" x="1171.71" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_elvisExpression (24 samples, 1.06%)</title><rect x="779.7" y="565" width="12.5" height="15.0" fill="rgb(225,35,8)" rx="2" ry="2" />
<text text-anchor="" x="782.70" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (11 samples, 0.48%)</title><rect x="378.8" y="1573" width="5.7" height="15.0" fill="rgb(207,110,47)" rx="2" ry="2" />
<text text-anchor="" x="381.75" y="1583.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (37 samples, 1.63%)</title><rect x="1146.4" y="1077" width="19.2" height="15.0" fill="rgb(245,43,3)" rx="2" ry="2" />
<text text-anchor="" x="1149.37" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown &lt;f&gt;] (8 samples, 0.35%)</title><rect x="163.2" y="1717" width="4.2" height="15.0" fill="rgb(246,56,6)" rx="2" ry="2" />
<text text-anchor="" x="166.21" y="1727.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_callSuffix (6 samples, 0.26%)</title><rect x="212.0" y="1493" width="3.1" height="15.0" fill="rgb(211,69,21)" rx="2" ry="2" />
<text text-anchor="" x="215.03" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (9 samples, 0.40%)</title><rect x="519.5" y="1333" width="4.7" height="15.0" fill="rgb(211,111,50)" rx="2" ry="2" />
<text text-anchor="" x="522.50" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_receiverTypeAndDot (8 samples, 0.35%)</title><rect x="878.9" y="1141" width="4.2" height="15.0" fill="rgb(239,10,20)" rx="2" ry="2" />
<text text-anchor="" x="881.90" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="350.2" y="741" width="3.1" height="15.0" fill="rgb(241,91,34)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_declaration (7 samples, 0.31%)</title><rect x="207.4" y="1477" width="3.6" height="15.0" fill="rgb(233,72,38)" rx="2" ry="2" />
<text text-anchor="" x="210.36" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_elvisExpression (6 samples, 0.26%)</title><rect x="437.4" y="1605" width="3.2" height="15.0" fill="rgb(232,138,16)" rx="2" ry="2" />
<text text-anchor="" x="440.44" y="1615.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_statement (25 samples, 1.10%)</title><rect x="928.8" y="1205" width="12.9" height="15.0" fill="rgb(252,210,30)" rx="2" ry="2" />
<text text-anchor="" x="931.76" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="872.7" y="1029" width="4.1" height="15.0" fill="rgb(247,172,12)" rx="2" ry="2" />
<text text-anchor="" x="875.67" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="334.1" y="1477" width="3.1" height="15.0" fill="rgb(223,133,38)" rx="2" ry="2" />
<text text-anchor="" x="337.08" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (11 samples, 0.48%)</title><rect x="398.5" y="1605" width="5.7" height="15.0" fill="rgb(240,75,52)" rx="2" ry="2" />
<text text-anchor="" x="401.49" y="1615.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_infixOperation (6 samples, 0.26%)</title><rect x="918.9" y="1013" width="3.1" height="15.0" fill="rgb(219,111,40)" rx="2" ry="2" />
<text text-anchor="" x="921.89" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_topLevelObject (10 samples, 0.44%)</title><rect x="309.2" y="1653" width="5.1" height="15.0" fill="rgb(211,120,13)" rx="2" ry="2" />
<text text-anchor="" x="312.15" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_primaryConstructor (21 samples, 0.92%)</title><rect x="917.3" y="1301" width="10.9" height="15.0" fill="rgb(228,77,31)" rx="2" ry="2" />
<text text-anchor="" x="920.33" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (25 samples, 1.10%)</title><rect x="1152.6" y="853" width="13.0" height="15.0" fill="rgb(240,139,54)" rx="2" ry="2" />
<text text-anchor="" x="1155.61" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnarySuffix (10 samples, 0.44%)</title><rect x="373.6" y="1685" width="5.2" height="15.0" fill="rgb(246,150,33)" rx="2" ry="2" />
<text text-anchor="" x="376.56" y="1695.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (24 samples, 1.06%)</title><rect x="779.7" y="549" width="12.5" height="15.0" fill="rgb(248,23,50)" rx="2" ry="2" />
<text text-anchor="" x="782.70" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>findKotlinTags (6 samples, 0.26%)</title><rect x="199.6" y="1701" width="3.1" height="15.0" fill="rgb(224,195,9)" rx="2" ry="2" />
<text text-anchor="" x="202.57" y="1711.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_expression (6 samples, 0.26%)</title><rect x="247.4" y="885" width="3.1" height="15.0" fill="rgb(246,142,41)" rx="2" ry="2" />
<text text-anchor="" x="250.35" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="483.7" y="1429" width="3.6" height="15.0" fill="rgb(229,173,53)" rx="2" ry="2" />
<text text-anchor="" x="486.66" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_genericCallLikeComparison (6 samples, 0.26%)</title><rect x="375.6" y="1397" width="3.2" height="15.0" fill="rgb(210,222,17)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="414.1" y="1685" width="4.1" height="15.0" fill="rgb(216,111,48)" rx="2" ry="2" />
<text text-anchor="" x="417.07" y="1695.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="353.3" y="421" width="4.2" height="15.0" fill="rgb(227,158,15)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="207.4" y="1397" width="3.1" height="15.0" fill="rgb(250,17,45)" rx="2" ry="2" />
<text text-anchor="" x="210.36" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (53 samples, 2.33%)</title><rect x="1138.1" y="1397" width="27.5" height="15.0" fill="rgb(252,99,49)" rx="2" ry="2" />
<text text-anchor="" x="1141.06" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >p..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_disjunction (6 samples, 0.26%)</title><rect x="350.2" y="1493" width="3.1" height="15.0" fill="rgb(218,102,43)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (23 samples, 1.01%)</title><rect x="1153.6" y="693" width="12.0" height="15.0" fill="rgb(232,49,2)" rx="2" ry="2" />
<text text-anchor="" x="1156.64" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_statement (9 samples, 0.40%)</title><rect x="728.8" y="885" width="4.7" height="15.0" fill="rgb(209,116,30)" rx="2" ry="2" />
<text text-anchor="" x="731.80" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_asExpression (6 samples, 0.26%)</title><rect x="898.6" y="725" width="3.2" height="15.0" fill="rgb(205,159,19)" rx="2" ry="2" />
<text text-anchor="" x="901.64" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_genericCallLikeComparison (10 samples, 0.44%)</title><rect x="269.7" y="1653" width="5.2" height="15.0" fill="rgb(252,115,26)" rx="2" ry="2" />
<text text-anchor="" x="272.68" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_rangeExpression (6 samples, 0.26%)</title><rect x="350.2" y="629" width="3.1" height="15.0" fill="rgb(211,144,49)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (10 samples, 0.44%)</title><rect x="1160.4" y="197" width="5.2" height="15.0" fill="rgb(252,98,44)" rx="2" ry="2" />
<text text-anchor="" x="1163.40" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_conjunction (6 samples, 0.26%)</title><rect x="350.2" y="1461" width="3.1" height="15.0" fill="rgb(244,139,51)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_prefixUnaryExpression (8 samples, 0.35%)</title><rect x="300.8" y="1269" width="4.2" height="15.0" fill="rgb(229,208,15)" rx="2" ry="2" />
<text text-anchor="" x="303.85" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_assignment (17 samples, 0.75%)</title><rect x="388.6" y="1653" width="8.8" height="15.0" fill="rgb(250,54,17)" rx="2" ry="2" />
<text text-anchor="" x="391.62" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_multiplicativeExpression (6 samples, 0.26%)</title><rect x="334.1" y="1525" width="3.1" height="15.0" fill="rgb(212,172,48)" rx="2" ry="2" />
<text text-anchor="" x="337.08" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="918.9" y="965" width="3.1" height="15.0" fill="rgb(250,47,46)" rx="2" ry="2" />
<text text-anchor="" x="921.89" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (9 samples, 0.40%)</title><rect x="432.2" y="1685" width="4.7" height="15.0" fill="rgb(225,137,40)" rx="2" ry="2" />
<text text-anchor="" x="435.24" y="1695.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_conjunction (8 samples, 0.35%)</title><rect x="353.3" y="821" width="4.2" height="15.0" fill="rgb(219,222,28)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnarySuffix (6 samples, 0.26%)</title><rect x="375.6" y="1077" width="3.2" height="15.0" fill="rgb(221,16,3)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_infixFunctionCall (8 samples, 0.35%)</title><rect x="300.8" y="1429" width="4.2" height="15.0" fill="rgb(226,96,9)" rx="2" ry="2" />
<text text-anchor="" x="303.85" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="305.0" y="1445" width="3.1" height="15.0" fill="rgb(242,72,32)" rx="2" ry="2" />
<text text-anchor="" x="308.00" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_conjunction (8 samples, 0.35%)</title><rect x="353.3" y="1429" width="4.2" height="15.0" fill="rgb(217,51,15)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_callSuffix (6 samples, 0.26%)</title><rect x="483.7" y="1253" width="3.1" height="15.0" fill="rgb(218,26,48)" rx="2" ry="2" />
<text text-anchor="" x="486.66" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_rangeExpression (8 samples, 0.35%)</title><rect x="353.3" y="597" width="4.2" height="15.0" fill="rgb(208,149,29)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (25 samples, 1.10%)</title><rect x="884.6" y="1061" width="13.0" height="15.0" fill="rgb(246,109,30)" rx="2" ry="2" />
<text text-anchor="" x="887.61" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_simpleUserType (6 samples, 0.26%)</title><rect x="872.7" y="853" width="3.1" height="15.0" fill="rgb(231,132,53)" rx="2" ry="2" />
<text text-anchor="" x="875.67" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (17 samples, 0.75%)</title><rect x="756.3" y="581" width="8.9" height="15.0" fill="rgb(246,162,12)" rx="2" ry="2" />
<text text-anchor="" x="759.33" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnarySuffix (17 samples, 0.75%)</title><rect x="849.8" y="629" width="8.8" height="15.0" fill="rgb(227,144,49)" rx="2" ry="2" />
<text text-anchor="" x="852.82" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="835.8" y="933" width="3.1" height="15.0" fill="rgb(212,89,42)" rx="2" ry="2" />
<text text-anchor="" x="838.79" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_assignment (6 samples, 0.26%)</title><rect x="418.2" y="1701" width="3.1" height="15.0" fill="rgb(253,99,39)" rx="2" ry="2" />
<text text-anchor="" x="421.22" y="1711.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="843.1" y="997" width="3.6" height="15.0" fill="rgb(239,68,25)" rx="2" ry="2" />
<text text-anchor="" x="846.06" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="247.4" y="1093" width="4.1" height="15.0" fill="rgb(220,137,1)" rx="2" ry="2" />
<text text-anchor="" x="250.35" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="350.2" y="1221" width="3.1" height="15.0" fill="rgb(236,8,7)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="375.6" y="1509" width="3.2" height="15.0" fill="rgb(243,134,31)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnarySuffix (14 samples, 0.62%)</title><rect x="365.2" y="1653" width="7.3" height="15.0" fill="rgb(235,39,44)" rx="2" ry="2" />
<text text-anchor="" x="368.25" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_primaryExpression (6 samples, 0.26%)</title><rect x="393.8" y="1557" width="3.1" height="15.0" fill="rgb(229,210,3)" rx="2" ry="2" />
<text text-anchor="" x="396.81" y="1567.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_propertyDeclaration (6 samples, 0.26%)</title><rect x="318.0" y="1525" width="3.1" height="15.0" fill="rgb(220,207,42)" rx="2" ry="2" />
<text text-anchor="" x="320.98" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_functionDeclaration (10 samples, 0.44%)</title><rect x="322.1" y="1685" width="5.2" height="15.0" fill="rgb(213,13,46)" rx="2" ry="2" />
<text text-anchor="" x="325.14" y="1695.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnaryExpression (11 samples, 0.48%)</title><rect x="216.7" y="1493" width="5.7" height="15.0" fill="rgb(218,204,32)" rx="2" ry="2" />
<text text-anchor="" x="219.71" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_multiplicativeExpression (24 samples, 1.06%)</title><rect x="779.7" y="437" width="12.5" height="15.0" fill="rgb(214,186,32)" rx="2" ry="2" />
<text text-anchor="" x="782.70" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_classBody (9 samples, 0.40%)</title><rect x="280.1" y="1621" width="4.6" height="15.0" fill="rgb(246,49,32)" rx="2" ry="2" />
<text text-anchor="" x="283.07" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_expression (28 samples, 1.23%)</title><rect x="779.7" y="789" width="14.5" height="15.0" fill="rgb(239,30,31)" rx="2" ry="2" />
<text text-anchor="" x="782.70" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_comparison (10 samples, 0.44%)</title><rect x="274.9" y="1621" width="5.2" height="15.0" fill="rgb(241,131,44)" rx="2" ry="2" />
<text text-anchor="" x="277.88" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_conjunction (6 samples, 0.26%)</title><rect x="350.2" y="853" width="3.1" height="15.0" fill="rgb(252,121,41)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="225.5" y="1477" width="3.2" height="15.0" fill="rgb(235,51,0)" rx="2" ry="2" />
<text text-anchor="" x="228.54" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_equality (6 samples, 0.26%)</title><rect x="375.6" y="1461" width="3.2" height="15.0" fill="rgb(252,84,17)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_label (6 samples, 0.26%)</title><rect x="177.2" y="213" width="3.2" height="15.0" fill="rgb(234,166,33)" rx="2" ry="2" />
<text text-anchor="" x="180.24" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (11 samples, 0.48%)</title><rect x="378.8" y="1637" width="5.7" height="15.0" fill="rgb(250,158,27)" rx="2" ry="2" />
<text text-anchor="" x="381.75" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnaryExpression (7 samples, 0.31%)</title><rect x="314.3" y="1493" width="3.7" height="15.0" fill="rgb(220,199,43)" rx="2" ry="2" />
<text text-anchor="" x="317.35" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnarySuffix (8 samples, 0.35%)</title><rect x="216.7" y="1173" width="4.2" height="15.0" fill="rgb(211,58,18)" rx="2" ry="2" />
<text text-anchor="" x="219.71" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_label (6 samples, 0.26%)</title><rect x="849.8" y="533" width="3.1" height="15.0" fill="rgb(217,217,15)" rx="2" ry="2" />
<text text-anchor="" x="852.82" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_elvisExpression (6 samples, 0.26%)</title><rect x="454.6" y="1573" width="3.1" height="15.0" fill="rgb(250,40,39)" rx="2" ry="2" />
<text text-anchor="" x="457.58" y="1583.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_additiveExpression (31 samples, 1.36%)</title><rect x="817.6" y="629" width="16.1" height="15.0" fill="rgb(236,150,50)" rx="2" ry="2" />
<text text-anchor="" x="820.61" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (10 samples, 0.44%)</title><rect x="274.9" y="1349" width="5.2" height="15.0" fill="rgb(240,81,52)" rx="2" ry="2" />
<text text-anchor="" x="277.88" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_statements (12 samples, 0.53%)</title><rect x="365.2" y="1525" width="6.3" height="15.0" fill="rgb(253,108,50)" rx="2" ry="2" />
<text text-anchor="" x="368.25" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (9 samples, 0.40%)</title><rect x="432.2" y="1653" width="4.7" height="15.0" fill="rgb(223,175,33)" rx="2" ry="2" />
<text text-anchor="" x="435.24" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_infixOperation (7 samples, 0.31%)</title><rect x="177.2" y="597" width="3.7" height="15.0" fill="rgb(223,174,31)" rx="2" ry="2" />
<text text-anchor="" x="180.24" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="872.7" y="869" width="3.6" height="15.0" fill="rgb(220,213,25)" rx="2" ry="2" />
<text text-anchor="" x="875.67" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_thunk_array__term (26 samples, 1.14%)</title><rect x="1121.4" y="1333" width="13.5" height="15.0" fill="rgb(241,129,49)" rx="2" ry="2" />
<text text-anchor="" x="1124.44" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (11 samples, 0.48%)</title><rect x="758.9" y="485" width="5.7" height="15.0" fill="rgb(241,26,52)" rx="2" ry="2" />
<text text-anchor="" x="761.93" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (10 samples, 0.44%)</title><rect x="236.4" y="1573" width="5.2" height="15.0" fill="rgb(230,0,1)" rx="2" ry="2" />
<text text-anchor="" x="239.44" y="1583.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_prefixUnaryExpression (6 samples, 0.26%)</title><rect x="334.1" y="1461" width="3.1" height="15.0" fill="rgb(254,164,31)" rx="2" ry="2" />
<text text-anchor="" x="337.08" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (16 samples, 0.70%)</title><rect x="388.6" y="1605" width="8.3" height="15.0" fill="rgb(212,58,23)" rx="2" ry="2" />
<text text-anchor="" x="391.62" y="1615.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_declaration (17 samples, 0.75%)</title><rect x="176.2" y="1205" width="8.8" height="15.0" fill="rgb(228,166,35)" rx="2" ry="2" />
<text text-anchor="" x="179.20" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_statements (6 samples, 0.26%)</title><rect x="274.9" y="1141" width="3.1" height="15.0" fill="rgb(235,168,37)" rx="2" ry="2" />
<text text-anchor="" x="277.88" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_lambdaLiteral (6 samples, 0.26%)</title><rect x="329.9" y="1365" width="3.1" height="15.0" fill="rgb(242,85,33)" rx="2" ry="2" />
<text text-anchor="" x="332.93" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_infixOperation (34 samples, 1.50%)</title><rect x="849.3" y="917" width="17.7" height="15.0" fill="rgb(247,87,26)" rx="2" ry="2" />
<text text-anchor="" x="852.30" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_assignment (129 samples, 5.68%)</title><rect x="748.0" y="1013" width="67.0" height="15.0" fill="rgb(217,194,16)" rx="2" ry="2" />
<text text-anchor="" x="751.02" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pcc_eva..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (25 samples, 1.10%)</title><rect x="928.8" y="1253" width="12.9" height="15.0" fill="rgb(223,38,7)" rx="2" ry="2" />
<text text-anchor="" x="931.76" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (24 samples, 1.06%)</title><rect x="1153.1" y="725" width="12.5" height="15.0" fill="rgb(240,204,36)" rx="2" ry="2" />
<text text-anchor="" x="1156.12" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="959.9" y="1285" width="3.1" height="15.0" fill="rgb(218,98,39)" rx="2" ry="2" />
<text text-anchor="" x="962.92" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="378.8" y="1381" width="3.6" height="15.0" fill="rgb(209,172,27)" rx="2" ry="2" />
<text text-anchor="" x="381.75" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="804.6" y="869" width="4.2" height="15.0" fill="rgb(231,149,17)" rx="2" ry="2" />
<text text-anchor="" x="807.63" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>batchMakeTags (1,256 samples, 55.28%)</title><rect x="528.8" y="1653" width="652.4" height="15.0" fill="rgb(244,105,36)" rx="2" ry="2" />
<text text-anchor="" x="531.85" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >batchMakeTags</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_conjunction (10 samples, 0.44%)</title><rect x="274.9" y="1685" width="5.2" height="15.0" fill="rgb(229,218,51)" rx="2" ry="2" />
<text text-anchor="" x="277.88" y="1695.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (12 samples, 0.53%)</title><rect x="365.2" y="1541" width="6.3" height="15.0" fill="rgb(211,185,2)" rx="2" ry="2" />
<text text-anchor="" x="368.25" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="398.5" y="869" width="3.1" height="15.0" fill="rgb(232,155,35)" rx="2" ry="2" />
<text text-anchor="" x="401.49" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_prefixUnaryExpression (8 samples, 0.35%)</title><rect x="414.1" y="1669" width="4.1" height="15.0" fill="rgb(227,37,40)" rx="2" ry="2" />
<text text-anchor="" x="417.07" y="1679.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="329.9" y="1381" width="3.1" height="15.0" fill="rgb(223,185,18)" rx="2" ry="2" />
<text text-anchor="" x="332.93" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_callSuffix (8 samples, 0.35%)</title><rect x="353.3" y="981" width="4.2" height="15.0" fill="rgb(219,176,13)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="329.9" y="1509" width="4.2" height="15.0" fill="rgb(225,24,49)" rx="2" ry="2" />
<text text-anchor="" x="332.93" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ctags_cli_main (1,257 samples, 55.33%)</title><rect x="528.3" y="1685" width="652.9" height="15.0" fill="rgb(222,113,21)" rx="2" ry="2" />
<text text-anchor="" x="531.33" y="1695.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ctags_cli_main</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="353.3" y="1317" width="4.2" height="15.0" fill="rgb(246,92,47)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_lr_entry__destroy (118 samples, 5.19%)</title><rect x="1048.7" y="1333" width="61.3" height="15.0" fill="rgb(214,191,4)" rx="2" ry="2" />
<text text-anchor="" x="1051.73" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pcc_lr..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_functionBody (7 samples, 0.31%)</title><rect x="284.7" y="1621" width="3.7" height="15.0" fill="rgb(226,203,17)" rx="2" ry="2" />
<text text-anchor="" x="287.74" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="414.1" y="1653" width="4.1" height="15.0" fill="rgb(211,20,14)" rx="2" ry="2" />
<text text-anchor="" x="417.07" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="898.6" y="869" width="3.2" height="15.0" fill="rgb(234,191,21)" rx="2" ry="2" />
<text text-anchor="" x="901.64" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_functionBody (17 samples, 0.75%)</title><rect x="176.2" y="1141" width="8.8" height="15.0" fill="rgb(234,47,34)" rx="2" ry="2" />
<text text-anchor="" x="179.20" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="353.3" y="901" width="4.2" height="15.0" fill="rgb(242,225,43)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="207.4" y="1429" width="3.1" height="15.0" fill="rgb(207,129,51)" rx="2" ry="2" />
<text text-anchor="" x="210.36" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_postfixUnaryExpression (6 samples, 0.26%)</title><rect x="350.2" y="1685" width="3.1" height="15.0" fill="rgb(253,217,51)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="1695.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (24 samples, 1.06%)</title><rect x="884.6" y="901" width="12.5" height="15.0" fill="rgb(242,134,2)" rx="2" ry="2" />
<text text-anchor="" x="887.61" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (26 samples, 1.14%)</title><rect x="1152.1" y="885" width="13.5" height="15.0" fill="rgb(215,42,16)" rx="2" ry="2" />
<text text-anchor="" x="1155.09" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="483.7" y="1397" width="3.6" height="15.0" fill="rgb(234,203,22)" rx="2" ry="2" />
<text text-anchor="" x="486.66" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="216.7" y="741" width="3.1" height="15.0" fill="rgb(241,46,17)" rx="2" ry="2" />
<text text-anchor="" x="219.71" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (18 samples, 0.79%)</title><rect x="1156.2" y="581" width="9.4" height="15.0" fill="rgb(234,101,27)" rx="2" ry="2" />
<text text-anchor="" x="1159.24" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="454.6" y="1525" width="3.1" height="15.0" fill="rgb(225,158,40)" rx="2" ry="2" />
<text text-anchor="" x="457.58" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_functionDeclaration (6 samples, 0.26%)</title><rect x="189.7" y="1221" width="3.1" height="15.0" fill="rgb(233,21,52)" rx="2" ry="2" />
<text text-anchor="" x="192.70" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_lambdaLiteral (6 samples, 0.26%)</title><rect x="852.9" y="533" width="3.1" height="15.0" fill="rgb(221,128,1)" rx="2" ry="2" />
<text text-anchor="" x="855.93" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnarySuffix (6 samples, 0.26%)</title><rect x="350.2" y="1653" width="3.1" height="15.0" fill="rgb(234,75,2)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_elvisExpression (8 samples, 0.35%)</title><rect x="353.3" y="661" width="4.2" height="15.0" fill="rgb(224,166,40)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_thunk_chunk__destroy (51 samples, 2.24%)</title><rect x="1110.0" y="1365" width="26.5" height="15.0" fill="rgb(218,186,50)" rx="2" ry="2" />
<text text-anchor="" x="1113.02" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >p..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pkotlin_parse (12 samples, 0.53%)</title><rect x="519.5" y="1701" width="6.2" height="15.0" fill="rgb(246,182,40)" rx="2" ry="2" />
<text text-anchor="" x="522.50" y="1711.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (7 samples, 0.31%)</title><rect x="1162.0" y="85" width="3.6" height="15.0" fill="rgb(245,129,51)" rx="2" ry="2" />
<text text-anchor="" x="1164.95" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_rangeExpression (6 samples, 0.26%)</title><rect x="350.2" y="1237" width="3.1" height="15.0" fill="rgb(211,93,40)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="440.6" y="1365" width="3.1" height="15.0" fill="rgb(253,136,17)" rx="2" ry="2" />
<text text-anchor="" x="443.55" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_postfixUnaryExpression (7 samples, 0.31%)</title><rect x="177.2" y="341" width="3.7" height="15.0" fill="rgb(210,34,0)" rx="2" ry="2" />
<text text-anchor="" x="180.24" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="300.8" y="1221" width="4.2" height="15.0" fill="rgb(252,137,36)" rx="2" ry="2" />
<text text-anchor="" x="303.85" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (10 samples, 0.44%)</title><rect x="216.7" y="1413" width="5.2" height="15.0" fill="rgb(246,58,8)" rx="2" ry="2" />
<text text-anchor="" x="219.71" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="804.6" y="581" width="4.2" height="15.0" fill="rgb(234,65,1)" rx="2" ry="2" />
<text text-anchor="" x="807.63" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_expression (6 samples, 0.26%)</title><rect x="898.6" y="1109" width="3.2" height="15.0" fill="rgb(223,121,45)" rx="2" ry="2" />
<text text-anchor="" x="901.64" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="231.2" y="1509" width="3.2" height="15.0" fill="rgb(240,151,29)" rx="2" ry="2" />
<text text-anchor="" x="234.25" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_classMemberDeclarations (10 samples, 0.44%)</title><rect x="519.5" y="1477" width="5.2" height="15.0" fill="rgb(217,220,0)" rx="2" ry="2" />
<text text-anchor="" x="522.50" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (17 samples, 0.75%)</title><rect x="176.2" y="1189" width="8.8" height="15.0" fill="rgb(229,2,12)" rx="2" ry="2" />
<text text-anchor="" x="179.20" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="247.4" y="1349" width="4.1" height="15.0" fill="rgb(222,211,37)" rx="2" ry="2" />
<text text-anchor="" x="250.35" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>createTagsWithFallback1 (7 samples, 0.31%)</title><rect x="193.9" y="1701" width="3.6" height="15.0" fill="rgb(211,0,8)" rx="2" ry="2" />
<text text-anchor="" x="196.86" y="1711.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="353.3" y="549" width="4.2" height="15.0" fill="rgb(219,85,20)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_lambdaLiteral (7 samples, 0.31%)</title><rect x="483.7" y="1477" width="3.6" height="15.0" fill="rgb(236,201,22)" rx="2" ry="2" />
<text text-anchor="" x="486.66" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pkotlin_parse (8 samples, 0.35%)</title><rect x="189.2" y="1541" width="4.1" height="15.0" fill="rgb(236,33,11)" rx="2" ry="2" />
<text text-anchor="" x="192.18" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (24 samples, 1.06%)</title><rect x="779.7" y="421" width="12.5" height="15.0" fill="rgb(237,181,34)" rx="2" ry="2" />
<text text-anchor="" x="782.70" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (522 samples, 22.98%)</title><rect x="719.5" y="1477" width="271.1" height="15.0" fill="rgb(236,175,18)" rx="2" ry="2" />
<text text-anchor="" x="722.45" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pcc_apply_rule</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (346 samples, 15.23%)</title><rect x="727.8" y="1189" width="179.7" height="15.0" fill="rgb(222,171,49)" rx="2" ry="2" />
<text text-anchor="" x="730.76" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pcc_apply_rule</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (10 samples, 0.44%)</title><rect x="322.1" y="1669" width="5.2" height="15.0" fill="rgb(211,216,40)" rx="2" ry="2" />
<text text-anchor="" x="325.14" y="1679.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_infixFunctionCall (6 samples, 0.26%)</title><rect x="247.4" y="629" width="3.1" height="15.0" fill="rgb(234,108,21)" rx="2" ry="2" />
<text text-anchor="" x="250.35" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="353.3" y="1285" width="4.2" height="15.0" fill="rgb(226,173,8)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (263 samples, 11.58%)</title><rect x="747.5" y="1157" width="136.6" height="15.0" fill="rgb(241,94,35)" rx="2" ry="2" />
<text text-anchor="" x="750.50" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pcc_apply_rule</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_conjunction (6 samples, 0.26%)</title><rect x="898.6" y="1045" width="3.2" height="15.0" fill="rgb(231,137,4)" rx="2" ry="2" />
<text text-anchor="" x="901.64" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (11 samples, 0.48%)</title><rect x="251.5" y="1541" width="5.7" height="15.0" fill="rgb(235,226,4)" rx="2" ry="2" />
<text text-anchor="" x="254.51" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="490.4" y="1685" width="3.6" height="15.0" fill="rgb(209,18,8)" rx="2" ry="2" />
<text text-anchor="" x="493.41" y="1695.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (17 samples, 0.75%)</title><rect x="1156.8" y="533" width="8.8" height="15.0" fill="rgb(218,11,11)" rx="2" ry="2" />
<text text-anchor="" x="1159.76" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_statement (13 samples, 0.57%)</title><rect x="176.2" y="1045" width="6.7" height="15.0" fill="rgb(210,107,48)" rx="2" ry="2" />
<text text-anchor="" x="179.20" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="225.5" y="1381" width="3.2" height="15.0" fill="rgb(207,110,25)" rx="2" ry="2" />
<text text-anchor="" x="228.54" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_declaration (10 samples, 0.44%)</title><rect x="519.5" y="1413" width="5.2" height="15.0" fill="rgb(226,89,17)" rx="2" ry="2" />
<text text-anchor="" x="522.50" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_genericCallLikeComparison (6 samples, 0.26%)</title><rect x="350.2" y="757" width="3.1" height="15.0" fill="rgb(211,192,32)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (13 samples, 0.57%)</title><rect x="257.2" y="1637" width="6.8" height="15.0" fill="rgb(240,227,37)" rx="2" ry="2" />
<text text-anchor="" x="260.22" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (38 samples, 1.67%)</title><rect x="966.2" y="1381" width="19.7" height="15.0" fill="rgb(226,126,2)" rx="2" ry="2" />
<text text-anchor="" x="969.15" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (10 samples, 0.44%)</title><rect x="519.5" y="1429" width="5.2" height="15.0" fill="rgb(232,30,39)" rx="2" ry="2" />
<text text-anchor="" x="522.50" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="936.0" y="1157" width="3.7" height="15.0" fill="rgb(229,36,2)" rx="2" ry="2" />
<text text-anchor="" x="939.03" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_asExpression (11 samples, 0.48%)</title><rect x="483.7" y="1669" width="5.7" height="15.0" fill="rgb(254,169,48)" rx="2" ry="2" />
<text text-anchor="" x="486.66" y="1679.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="177.2" y="741" width="3.7" height="15.0" fill="rgb(249,139,36)" rx="2" ry="2" />
<text text-anchor="" x="180.24" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnarySuffix (6 samples, 0.26%)</title><rect x="243.7" y="1301" width="3.1" height="15.0" fill="rgb(207,71,17)" rx="2" ry="2" />
<text text-anchor="" x="246.71" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (19 samples, 0.84%)</title><rect x="941.7" y="901" width="9.9" height="15.0" fill="rgb(211,195,34)" rx="2" ry="2" />
<text text-anchor="" x="944.74" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_declaration (6 samples, 0.26%)</title><rect x="202.7" y="1301" width="3.1" height="15.0" fill="rgb(219,173,38)" rx="2" ry="2" />
<text text-anchor="" x="205.68" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="918.9" y="1125" width="3.1" height="15.0" fill="rgb(211,118,31)" rx="2" ry="2" />
<text text-anchor="" x="921.89" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>createTagsForEntry (18 samples, 0.79%)</title><rect x="176.2" y="1621" width="9.3" height="15.0" fill="rgb(218,154,24)" rx="2" ry="2" />
<text text-anchor="" x="179.20" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (11 samples, 0.48%)</title><rect x="758.9" y="517" width="5.7" height="15.0" fill="rgb(209,135,4)" rx="2" ry="2" />
<text text-anchor="" x="761.93" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_callSuffix (6 samples, 0.26%)</title><rect x="274.9" y="1237" width="3.1" height="15.0" fill="rgb(206,103,10)" rx="2" ry="2" />
<text text-anchor="" x="277.88" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="483.7" y="1557" width="4.1" height="15.0" fill="rgb(232,148,34)" rx="2" ry="2" />
<text text-anchor="" x="486.66" y="1567.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (20 samples, 0.88%)</title><rect x="780.2" y="357" width="10.4" height="15.0" fill="rgb(212,74,38)" rx="2" ry="2" />
<text text-anchor="" x="783.22" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_infixFunctionCall (6 samples, 0.26%)</title><rect x="334.1" y="1621" width="3.1" height="15.0" fill="rgb(236,218,16)" rx="2" ry="2" />
<text text-anchor="" x="337.08" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_topLevelObject (6 samples, 0.26%)</title><rect x="460.3" y="1669" width="3.1" height="15.0" fill="rgb(223,195,10)" rx="2" ry="2" />
<text text-anchor="" x="463.29" y="1679.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (34 samples, 1.50%)</title><rect x="816.6" y="869" width="17.6" height="15.0" fill="rgb(252,200,25)" rx="2" ry="2" />
<text text-anchor="" x="819.58" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnarySuffix (7 samples, 0.31%)</title><rect x="329.9" y="1461" width="3.7" height="15.0" fill="rgb(210,126,22)" rx="2" ry="2" />
<text text-anchor="" x="332.93" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="375.6" y="869" width="3.2" height="15.0" fill="rgb(242,172,50)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (18 samples, 0.79%)</title><rect x="280.1" y="1669" width="9.3" height="15.0" fill="rgb(223,45,12)" rx="2" ry="2" />
<text text-anchor="" x="283.07" y="1679.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_lambdaLiteral (12 samples, 0.53%)</title><rect x="365.2" y="1557" width="6.3" height="15.0" fill="rgb(234,26,42)" rx="2" ry="2" />
<text text-anchor="" x="368.25" y="1567.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="959.9" y="1317" width="3.1" height="15.0" fill="rgb(247,24,5)" rx="2" ry="2" />
<text text-anchor="" x="962.92" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="375.6" y="1605" width="3.2" height="15.0" fill="rgb(223,2,8)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="1615.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (15 samples, 0.66%)</title><rect x="398.5" y="1669" width="7.8" height="15.0" fill="rgb(253,99,34)" rx="2" ry="2" />
<text text-anchor="" x="401.49" y="1679.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (10 samples, 0.44%)</title><rect x="750.1" y="805" width="5.2" height="15.0" fill="rgb(215,100,1)" rx="2" ry="2" />
<text text-anchor="" x="753.10" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="350.2" y="1061" width="3.1" height="15.0" fill="rgb(242,53,18)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="289.4" y="1605" width="3.1" height="15.0" fill="rgb(243,44,41)" rx="2" ry="2" />
<text text-anchor="" x="292.42" y="1615.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_classMemberDeclarations (9 samples, 0.40%)</title><rect x="432.2" y="1701" width="4.7" height="15.0" fill="rgb(252,134,20)" rx="2" ry="2" />
<text text-anchor="" x="435.24" y="1711.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_disjunction (6 samples, 0.26%)</title><rect x="898.6" y="1077" width="3.2" height="15.0" fill="rgb(211,93,9)" rx="2" ry="2" />
<text text-anchor="" x="901.64" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (97 samples, 4.27%)</title><rect x="749.1" y="901" width="50.3" height="15.0" fill="rgb(239,112,9)" rx="2" ry="2" />
<text text-anchor="" x="752.06" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pcc_a..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_assignment (6 samples, 0.26%)</title><rect x="322.1" y="1525" width="3.2" height="15.0" fill="rgb(228,85,43)" rx="2" ry="2" />
<text text-anchor="" x="325.14" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="247.4" y="1253" width="4.1" height="15.0" fill="rgb(254,134,39)" rx="2" ry="2" />
<text text-anchor="" x="250.35" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_classMemberDeclarations (6 samples, 0.26%)</title><rect x="207.4" y="1381" width="3.1" height="15.0" fill="rgb(231,151,46)" rx="2" ry="2" />
<text text-anchor="" x="210.36" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>findKotlinTags (9 samples, 0.40%)</title><rect x="202.7" y="1621" width="4.7" height="15.0" fill="rgb(207,138,36)" rx="2" ry="2" />
<text text-anchor="" x="205.68" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (522 samples, 22.98%)</title><rect x="719.5" y="1445" width="271.1" height="15.0" fill="rgb(252,217,33)" rx="2" ry="2" />
<text text-anchor="" x="722.45" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pcc_apply_rule</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_classDeclaration (9 samples, 0.40%)</title><rect x="280.1" y="1653" width="4.6" height="15.0" fill="rgb(247,195,48)" rx="2" ry="2" />
<text text-anchor="" x="283.07" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_directlyAssignableExpression (9 samples, 0.40%)</title><rect x="289.4" y="1685" width="4.7" height="15.0" fill="rgb(214,41,26)" rx="2" ry="2" />
<text text-anchor="" x="292.42" y="1695.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_infixOperation (25 samples, 1.10%)</title><rect x="884.6" y="949" width="13.0" height="15.0" fill="rgb(253,16,49)" rx="2" ry="2" />
<text text-anchor="" x="887.61" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_assignment (6 samples, 0.26%)</title><rect x="378.8" y="1141" width="3.1" height="15.0" fill="rgb(243,20,38)" rx="2" ry="2" />
<text text-anchor="" x="381.75" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnaryExpression (11 samples, 0.48%)</title><rect x="378.8" y="1653" width="5.7" height="15.0" fill="rgb(229,53,4)" rx="2" ry="2" />
<text text-anchor="" x="381.75" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_declaration (10 samples, 0.44%)</title><rect x="309.2" y="1621" width="5.1" height="15.0" fill="rgb(236,138,22)" rx="2" ry="2" />
<text text-anchor="" x="312.15" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_statements (6 samples, 0.26%)</title><rect x="329.9" y="1333" width="3.1" height="15.0" fill="rgb(236,34,43)" rx="2" ry="2" />
<text text-anchor="" x="332.93" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (17 samples, 0.75%)</title><rect x="849.8" y="613" width="8.8" height="15.0" fill="rgb(215,121,28)" rx="2" ry="2" />
<text text-anchor="" x="852.82" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="736.6" y="933" width="3.1" height="15.0" fill="rgb(232,3,37)" rx="2" ry="2" />
<text text-anchor="" x="739.59" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (9 samples, 0.40%)</title><rect x="225.5" y="1605" width="4.7" height="15.0" fill="rgb(220,201,11)" rx="2" ry="2" />
<text text-anchor="" x="228.54" y="1615.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (11 samples, 0.48%)</title><rect x="483.7" y="1685" width="5.7" height="15.0" fill="rgb(226,39,10)" rx="2" ry="2" />
<text text-anchor="" x="486.66" y="1695.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_callSuffix (7 samples, 0.31%)</title><rect x="378.8" y="1301" width="3.6" height="15.0" fill="rgb(241,0,38)" rx="2" ry="2" />
<text text-anchor="" x="381.75" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (34 samples, 1.50%)</title><rect x="849.3" y="1061" width="17.7" height="15.0" fill="rgb(236,88,37)" rx="2" ry="2" />
<text text-anchor="" x="852.30" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="375.6" y="581" width="3.2" height="15.0" fill="rgb(238,114,44)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="243.7" y="1413" width="3.7" height="15.0" fill="rgb(228,153,37)" rx="2" ry="2" />
<text text-anchor="" x="246.71" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (13 samples, 0.57%)</title><rect x="216.2" y="1541" width="6.7" height="15.0" fill="rgb(208,157,28)" rx="2" ry="2" />
<text text-anchor="" x="219.19" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_callSuffix (10 samples, 0.44%)</title><rect x="373.6" y="1653" width="5.2" height="15.0" fill="rgb(233,177,45)" rx="2" ry="2" />
<text text-anchor="" x="376.56" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="440.6" y="1557" width="3.1" height="15.0" fill="rgb(252,202,17)" rx="2" ry="2" />
<text text-anchor="" x="443.55" y="1567.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="216.7" y="1061" width="3.6" height="15.0" fill="rgb(247,202,39)" rx="2" ry="2" />
<text text-anchor="" x="219.71" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>parseFileWithMio (1,251 samples, 55.06%)</title><rect x="531.4" y="1605" width="649.8" height="15.0" fill="rgb(210,39,37)" rx="2" ry="2" />
<text text-anchor="" x="534.44" y="1615.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >parseFileWithMio</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (11 samples, 0.48%)</title><rect x="758.9" y="453" width="5.7" height="15.0" fill="rgb(208,109,48)" rx="2" ry="2" />
<text text-anchor="" x="761.93" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnarySuffix (9 samples, 0.40%)</title><rect x="176.2" y="917" width="4.7" height="15.0" fill="rgb(217,184,13)" rx="2" ry="2" />
<text text-anchor="" x="179.20" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>findKotlinTags (1,157 samples, 50.92%)</title><rect x="564.7" y="1525" width="600.9" height="15.0" fill="rgb(249,135,10)" rx="2" ry="2" />
<text text-anchor="" x="567.68" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >findKotlinTags</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_statements (6 samples, 0.26%)</title><rect x="519.5" y="1285" width="3.1" height="15.0" fill="rgb(213,34,16)" rx="2" ry="2" />
<text text-anchor="" x="522.50" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (43 samples, 1.89%)</title><rect x="1143.3" y="1237" width="22.3" height="15.0" fill="rgb(251,92,51)" rx="2" ry="2" />
<text text-anchor="" x="1146.26" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >p..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_classMemberDeclarations (6 samples, 0.26%)</title><rect x="202.7" y="1365" width="3.1" height="15.0" fill="rgb(206,51,43)" rx="2" ry="2" />
<text text-anchor="" x="205.68" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (19 samples, 0.84%)</title><rect x="1155.7" y="629" width="9.9" height="15.0" fill="rgb(232,74,9)" rx="2" ry="2" />
<text text-anchor="" x="1158.72" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_valueArguments (7 samples, 0.31%)</title><rect x="177.2" y="853" width="3.7" height="15.0" fill="rgb(230,112,24)" rx="2" ry="2" />
<text text-anchor="" x="180.24" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="454.6" y="1397" width="3.1" height="15.0" fill="rgb(217,93,46)" rx="2" ry="2" />
<text text-anchor="" x="457.58" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (33 samples, 1.45%)</title><rect x="849.8" y="901" width="17.2" height="15.0" fill="rgb(233,142,25)" rx="2" ry="2" />
<text text-anchor="" x="852.82" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_statements (7 samples, 0.31%)</title><rect x="216.7" y="1045" width="3.6" height="15.0" fill="rgb(215,136,14)" rx="2" ry="2" />
<text text-anchor="" x="219.71" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_statement (192 samples, 8.45%)</title><rect x="748.0" y="1045" width="99.7" height="15.0" fill="rgb(249,96,40)" rx="2" ry="2" />
<text text-anchor="" x="751.02" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pcc_evaluate..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (15 samples, 0.66%)</title><rect x="885.7" y="645" width="7.7" height="15.0" fill="rgb(210,40,21)" rx="2" ry="2" />
<text text-anchor="" x="888.65" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (9 samples, 0.40%)</title><rect x="398.5" y="1285" width="4.7" height="15.0" fill="rgb(235,199,42)" rx="2" ry="2" />
<text text-anchor="" x="401.49" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_statement (7 samples, 0.31%)</title><rect x="483.7" y="1413" width="3.6" height="15.0" fill="rgb(242,95,51)" rx="2" ry="2" />
<text text-anchor="" x="486.66" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="350.2" y="901" width="3.1" height="15.0" fill="rgb(219,37,9)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_directlyAssignableExpression (8 samples, 0.35%)</title><rect x="236.4" y="1493" width="4.2" height="15.0" fill="rgb(231,96,19)" rx="2" ry="2" />
<text text-anchor="" x="239.44" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_functionDeclaration (9 samples, 0.40%)</title><rect x="252.0" y="1525" width="4.7" height="15.0" fill="rgb(240,139,45)" rx="2" ry="2" />
<text text-anchor="" x="255.02" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (18 samples, 0.79%)</title><rect x="176.2" y="1413" width="9.3" height="15.0" fill="rgb(208,166,7)" rx="2" ry="2" />
<text text-anchor="" x="179.20" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_statement (7 samples, 0.31%)</title><rect x="378.8" y="1173" width="3.6" height="15.0" fill="rgb(210,217,36)" rx="2" ry="2" />
<text text-anchor="" x="381.75" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_block (9 samples, 0.40%)</title><rect x="322.1" y="1621" width="4.7" height="15.0" fill="rgb(247,138,48)" rx="2" ry="2" />
<text text-anchor="" x="325.14" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_infixFunctionCall (8 samples, 0.35%)</title><rect x="353.3" y="1237" width="4.2" height="15.0" fill="rgb(239,130,25)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (17 samples, 0.75%)</title><rect x="818.7" y="453" width="8.8" height="15.0" fill="rgb(223,16,26)" rx="2" ry="2" />
<text text-anchor="" x="821.65" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="247.4" y="549" width="3.1" height="15.0" fill="rgb(219,90,16)" rx="2" ry="2" />
<text text-anchor="" x="250.35" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_functionValueParameter (6 samples, 0.26%)</title><rect x="736.6" y="949" width="3.1" height="15.0" fill="rgb(219,215,43)" rx="2" ry="2" />
<text text-anchor="" x="739.59" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="350.2" y="1317" width="3.1" height="15.0" fill="rgb(228,210,34)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (10 samples, 0.44%)</title><rect x="269.7" y="1477" width="5.2" height="15.0" fill="rgb(249,211,46)" rx="2" ry="2" />
<text text-anchor="" x="272.68" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (20 samples, 0.88%)</title><rect x="941.7" y="1157" width="10.4" height="15.0" fill="rgb(229,2,24)" rx="2" ry="2" />
<text text-anchor="" x="944.74" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc_consolidate (9 samples, 0.40%)</title><rect x="564.7" y="1429" width="4.7" height="15.0" fill="rgb(240,33,50)" rx="2" ry="2" />
<text text-anchor="" x="567.68" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_realloc (6 samples, 0.26%)</title><rect x="119.1" y="1701" width="3.1" height="15.0" fill="rgb(218,99,12)" rx="2" ry="2" />
<text text-anchor="" x="122.07" y="1711.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pkotlin_parse (9 samples, 0.40%)</title><rect x="202.7" y="1605" width="4.7" height="15.0" fill="rgb(227,158,22)" rx="2" ry="2" />
<text text-anchor="" x="205.68" y="1615.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="820.7" y="325" width="4.2" height="15.0" fill="rgb(254,141,9)" rx="2" ry="2" />
<text text-anchor="" x="823.73" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_equality (6 samples, 0.26%)</title><rect x="918.9" y="1109" width="3.1" height="15.0" fill="rgb(221,143,40)" rx="2" ry="2" />
<text text-anchor="" x="921.89" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="189.2" y="1237" width="3.6" height="15.0" fill="rgb(210,207,15)" rx="2" ry="2" />
<text text-anchor="" x="192.18" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (15 samples, 0.66%)</title><rect x="243.7" y="1573" width="7.8" height="15.0" fill="rgb(237,24,16)" rx="2" ry="2" />
<text text-anchor="" x="246.71" y="1583.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnaryExpression (9 samples, 0.40%)</title><rect x="176.2" y="949" width="4.7" height="15.0" fill="rgb(216,55,31)" rx="2" ry="2" />
<text text-anchor="" x="179.20" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_simpleIdentifier (6 samples, 0.26%)</title><rect x="772.9" y="693" width="3.2" height="15.0" fill="rgb(217,175,30)" rx="2" ry="2" />
<text text-anchor="" x="775.95" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="398.5" y="1189" width="4.1" height="15.0" fill="rgb(215,148,44)" rx="2" ry="2" />
<text text-anchor="" x="401.49" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_statements (11 samples, 0.48%)</title><rect x="758.9" y="501" width="5.7" height="15.0" fill="rgb(218,129,53)" rx="2" ry="2" />
<text text-anchor="" x="761.93" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="177.2" y="421" width="3.7" height="15.0" fill="rgb(211,98,36)" rx="2" ry="2" />
<text text-anchor="" x="180.24" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="318.0" y="1509" width="3.1" height="15.0" fill="rgb(217,36,54)" rx="2" ry="2" />
<text text-anchor="" x="320.98" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_genericCallLikeComparison (6 samples, 0.26%)</title><rect x="225.5" y="1301" width="3.2" height="15.0" fill="rgb(229,73,42)" rx="2" ry="2" />
<text text-anchor="" x="228.54" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_functionBody (6 samples, 0.26%)</title><rect x="189.7" y="1189" width="3.1" height="15.0" fill="rgb(209,20,9)" rx="2" ry="2" />
<text text-anchor="" x="192.70" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_classDeclaration (395 samples, 17.39%)</title><rect x="723.6" y="1333" width="205.2" height="15.0" fill="rgb(235,147,44)" rx="2" ry="2" />
<text text-anchor="" x="726.61" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pcc_evaluate_rule_classDec..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_filePart (7 samples, 0.31%)</title><rect x="207.4" y="1541" width="3.6" height="15.0" fill="rgb(254,193,47)" rx="2" ry="2" />
<text text-anchor="" x="210.36" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (8 samples, 0.35%)</title><rect x="1161.4" y="133" width="4.2" height="15.0" fill="rgb(249,183,19)" rx="2" ry="2" />
<text text-anchor="" x="1164.43" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_filePart (9 samples, 0.40%)</title><rect x="202.7" y="1525" width="4.7" height="15.0" fill="rgb(231,81,23)" rx="2" ry="2" />
<text text-anchor="" x="205.68" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="375.6" y="1029" width="3.2" height="15.0" fill="rgb(230,134,6)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (40 samples, 1.76%)</title><rect x="755.8" y="741" width="20.8" height="15.0" fill="rgb(214,40,38)" rx="2" ry="2" />
<text text-anchor="" x="758.81" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="199.6" y="1525" width="3.1" height="15.0" fill="rgb(211,122,11)" rx="2" ry="2" />
<text text-anchor="" x="202.57" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="225.5" y="997" width="3.2" height="15.0" fill="rgb(216,18,43)" rx="2" ry="2" />
<text text-anchor="" x="228.54" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_topLevelObject (8 samples, 0.35%)</title><rect x="189.2" y="1445" width="4.1" height="15.0" fill="rgb(241,215,23)" rx="2" ry="2" />
<text text-anchor="" x="192.18" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="334.1" y="1605" width="3.1" height="15.0" fill="rgb(241,189,32)" rx="2" ry="2" />
<text text-anchor="" x="337.08" y="1615.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pkotlin_parse (859 samples, 37.81%)</title><rect x="719.5" y="1509" width="446.1" height="15.0" fill="rgb(250,58,34)" rx="2" ry="2" />
<text text-anchor="" x="722.45" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pkotlin_parse</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_declaration (9 samples, 0.40%)</title><rect x="280.1" y="1525" width="4.6" height="15.0" fill="rgb(249,1,10)" rx="2" ry="2" />
<text text-anchor="" x="283.07" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="350.2" y="549" width="3.1" height="15.0" fill="rgb(229,80,14)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_statement (10 samples, 0.44%)</title><rect x="508.1" y="1669" width="5.2" height="15.0" fill="rgb(206,193,32)" rx="2" ry="2" />
<text text-anchor="" x="511.07" y="1679.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (15 samples, 0.66%)</title><rect x="1157.8" y="485" width="7.8" height="15.0" fill="rgb(233,28,37)" rx="2" ry="2" />
<text text-anchor="" x="1160.80" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (15 samples, 0.66%)</title><rect x="1157.8" y="501" width="7.8" height="15.0" fill="rgb(221,49,42)" rx="2" ry="2" />
<text text-anchor="" x="1160.80" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>parserCandidateNew (63 samples, 2.77%)</title><rect x="532.0" y="1509" width="32.7" height="15.0" fill="rgb(234,59,37)" rx="2" ry="2" />
<text text-anchor="" x="534.96" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pa..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="216.7" y="1285" width="4.2" height="15.0" fill="rgb(242,199,46)" rx="2" ry="2" />
<text text-anchor="" x="219.71" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="243.7" y="1317" width="3.1" height="15.0" fill="rgb(216,159,1)" rx="2" ry="2" />
<text text-anchor="" x="246.71" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_statement (10 samples, 0.44%)</title><rect x="231.2" y="1621" width="5.2" height="15.0" fill="rgb(232,62,22)" rx="2" ry="2" />
<text text-anchor="" x="234.25" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="247.4" y="901" width="3.1" height="15.0" fill="rgb(213,18,14)" rx="2" ry="2" />
<text text-anchor="" x="250.35" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (12 samples, 0.53%)</title><rect x="519.5" y="1557" width="6.2" height="15.0" fill="rgb(238,175,24)" rx="2" ry="2" />
<text text-anchor="" x="522.50" y="1567.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (9 samples, 0.40%)</title><rect x="398.5" y="1317" width="4.7" height="15.0" fill="rgb(230,149,37)" rx="2" ry="2" />
<text text-anchor="" x="401.49" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_annotatedLambda (12 samples, 0.53%)</title><rect x="849.8" y="565" width="6.2" height="15.0" fill="rgb(205,139,14)" rx="2" ry="2" />
<text text-anchor="" x="852.82" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (13 samples, 0.57%)</title><rect x="216.2" y="1605" width="6.7" height="15.0" fill="rgb(213,27,51)" rx="2" ry="2" />
<text text-anchor="" x="219.19" y="1615.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="189.2" y="1365" width="3.6" height="15.0" fill="rgb(232,164,43)" rx="2" ry="2" />
<text text-anchor="" x="192.18" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_genericCallLikeComparison (7 samples, 0.31%)</title><rect x="177.2" y="629" width="3.7" height="15.0" fill="rgb(205,127,23)" rx="2" ry="2" />
<text text-anchor="" x="180.24" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="305.0" y="1637" width="4.2" height="15.0" fill="rgb(248,215,43)" rx="2" ry="2" />
<text text-anchor="" x="308.00" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="799.4" y="869" width="3.2" height="15.0" fill="rgb(239,199,17)" rx="2" ry="2" />
<text text-anchor="" x="802.44" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_lambdaLiteral (13 samples, 0.57%)</title><rect x="216.2" y="1653" width="6.7" height="15.0" fill="rgb(236,127,44)" rx="2" ry="2" />
<text text-anchor="" x="219.19" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_statements (7 samples, 0.31%)</title><rect x="358.0" y="1653" width="3.6" height="15.0" fill="rgb(228,196,35)" rx="2" ry="2" />
<text text-anchor="" x="360.98" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="406.3" y="1637" width="3.6" height="15.0" fill="rgb(246,60,45)" rx="2" ry="2" />
<text text-anchor="" x="409.28" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_additiveExpression (10 samples, 0.44%)</title><rect x="274.9" y="1429" width="5.2" height="15.0" fill="rgb(249,29,11)" rx="2" ry="2" />
<text text-anchor="" x="277.88" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (10 samples, 0.44%)</title><rect x="269.7" y="1445" width="5.2" height="15.0" fill="rgb(220,161,48)" rx="2" ry="2" />
<text text-anchor="" x="272.68" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (10 samples, 0.44%)</title><rect x="231.2" y="1637" width="5.2" height="15.0" fill="rgb(216,128,3)" rx="2" ry="2" />
<text text-anchor="" x="234.25" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (20 samples, 0.88%)</title><rect x="941.7" y="1125" width="10.4" height="15.0" fill="rgb(213,182,2)" rx="2" ry="2" />
<text text-anchor="" x="944.74" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="350.2" y="1285" width="3.1" height="15.0" fill="rgb(206,180,17)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_lambdaLiteral (8 samples, 0.35%)</title><rect x="398.5" y="1141" width="4.1" height="15.0" fill="rgb(221,173,36)" rx="2" ry="2" />
<text text-anchor="" x="401.49" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (8 samples, 0.35%)</title><rect x="1117.3" y="1301" width="4.1" height="15.0" fill="rgb(209,161,5)" rx="2" ry="2" />
<text text-anchor="" x="1120.29" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_statement (6 samples, 0.26%)</title><rect x="852.9" y="469" width="3.1" height="15.0" fill="rgb(247,201,20)" rx="2" ry="2" />
<text text-anchor="" x="855.93" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnaryExpression (9 samples, 0.40%)</title><rect x="225.5" y="1621" width="4.7" height="15.0" fill="rgb(217,10,4)" rx="2" ry="2" />
<text text-anchor="" x="228.54" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_annotatedLambda (12 samples, 0.53%)</title><rect x="885.7" y="597" width="6.2" height="15.0" fill="rgb(246,187,23)" rx="2" ry="2" />
<text text-anchor="" x="888.65" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_genericCallLikeComparison (6 samples, 0.26%)</title><rect x="454.6" y="1637" width="3.1" height="15.0" fill="rgb(252,185,8)" rx="2" ry="2" />
<text text-anchor="" x="457.58" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_declaration (11 samples, 0.48%)</title><rect x="251.5" y="1557" width="5.7" height="15.0" fill="rgb(227,229,33)" rx="2" ry="2" />
<text text-anchor="" x="254.51" y="1567.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="212.0" y="1637" width="4.2" height="15.0" fill="rgb(222,153,41)" rx="2" ry="2" />
<text text-anchor="" x="215.03" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="499.8" y="1493" width="3.1" height="15.0" fill="rgb(248,60,0)" rx="2" ry="2" />
<text text-anchor="" x="502.76" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (19 samples, 0.84%)</title><rect x="1155.7" y="613" width="9.9" height="15.0" fill="rgb(220,202,31)" rx="2" ry="2" />
<text text-anchor="" x="1158.72" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnarySuffix (7 samples, 0.31%)</title><rect x="353.3" y="405" width="3.6" height="15.0" fill="rgb(222,185,34)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (13 samples, 0.57%)</title><rect x="314.3" y="1637" width="6.8" height="15.0" fill="rgb(207,101,2)" rx="2" ry="2" />
<text text-anchor="" x="317.35" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (10 samples, 0.44%)</title><rect x="274.9" y="1605" width="5.2" height="15.0" fill="rgb(250,75,19)" rx="2" ry="2" />
<text text-anchor="" x="277.88" y="1615.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="193.9" y="1333" width="3.6" height="15.0" fill="rgb(213,218,33)" rx="2" ry="2" />
<text text-anchor="" x="196.86" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_expression (20 samples, 0.88%)</title><rect x="941.7" y="1269" width="10.4" height="15.0" fill="rgb(253,160,30)" rx="2" ry="2" />
<text text-anchor="" x="944.74" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (9 samples, 0.40%)</title><rect x="728.8" y="933" width="4.7" height="15.0" fill="rgb(250,8,35)" rx="2" ry="2" />
<text text-anchor="" x="731.80" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_statements (7 samples, 0.31%)</title><rect x="243.7" y="1461" width="3.7" height="15.0" fill="rgb(209,184,49)" rx="2" ry="2" />
<text text-anchor="" x="246.71" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (29 samples, 1.28%)</title><rect x="969.8" y="1317" width="15.1" height="15.0" fill="rgb(227,35,36)" rx="2" ry="2" />
<text text-anchor="" x="972.79" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_elvisExpression (6 samples, 0.26%)</title><rect x="225.5" y="1237" width="3.2" height="15.0" fill="rgb(254,123,12)" rx="2" ry="2" />
<text text-anchor="" x="228.54" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_primaryExpression (26 samples, 1.14%)</title><rect x="799.4" y="917" width="13.5" height="15.0" fill="rgb(230,104,51)" rx="2" ry="2" />
<text text-anchor="" x="802.44" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="300.8" y="1541" width="4.2" height="15.0" fill="rgb(222,85,47)" rx="2" ry="2" />
<text text-anchor="" x="303.85" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnarySuffix (6 samples, 0.26%)</title><rect x="177.2" y="309" width="3.2" height="15.0" fill="rgb(211,31,27)" rx="2" ry="2" />
<text text-anchor="" x="180.24" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_objectDeclaration (6 samples, 0.26%)</title><rect x="959.9" y="1333" width="3.1" height="15.0" fill="rgb(237,196,19)" rx="2" ry="2" />
<text text-anchor="" x="962.92" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_prefixUnaryExpression (6 samples, 0.26%)</title><rect x="454.6" y="1381" width="3.1" height="15.0" fill="rgb(232,100,13)" rx="2" ry="2" />
<text text-anchor="" x="457.58" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnaryExpression (6 samples, 0.26%)</title><rect x="252.0" y="1301" width="3.1" height="15.0" fill="rgb(207,81,47)" rx="2" ry="2" />
<text text-anchor="" x="255.02" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (15 samples, 0.66%)</title><rect x="885.7" y="613" width="7.7" height="15.0" fill="rgb(243,197,32)" rx="2" ry="2" />
<text text-anchor="" x="888.65" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="437.4" y="1589" width="3.2" height="15.0" fill="rgb(230,170,16)" rx="2" ry="2" />
<text text-anchor="" x="440.44" y="1599.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="898.6" y="1029" width="3.2" height="15.0" fill="rgb(205,41,47)" rx="2" ry="2" />
<text text-anchor="" x="901.64" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_genericCallLikeComparison (8 samples, 0.35%)</title><rect x="804.6" y="693" width="4.2" height="15.0" fill="rgb(248,113,35)" rx="2" ry="2" />
<text text-anchor="" x="807.63" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_equality (6 samples, 0.26%)</title><rect x="898.6" y="1013" width="3.2" height="15.0" fill="rgb(217,214,34)" rx="2" ry="2" />
<text text-anchor="" x="901.64" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_genericCallLikeComparison (24 samples, 1.06%)</title><rect x="779.7" y="629" width="12.5" height="15.0" fill="rgb(228,229,11)" rx="2" ry="2" />
<text text-anchor="" x="782.70" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="454.6" y="1205" width="3.1" height="15.0" fill="rgb(245,73,18)" rx="2" ry="2" />
<text text-anchor="" x="457.58" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="216.7" y="1317" width="4.2" height="15.0" fill="rgb(210,154,33)" rx="2" ry="2" />
<text text-anchor="" x="219.71" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="243.7" y="1285" width="3.1" height="15.0" fill="rgb(216,80,52)" rx="2" ry="2" />
<text text-anchor="" x="246.71" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="414.1" y="1621" width="4.1" height="15.0" fill="rgb(230,118,14)" rx="2" ry="2" />
<text text-anchor="" x="417.07" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="353.3" y="1061" width="4.2" height="15.0" fill="rgb(234,125,3)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnarySuffix (6 samples, 0.26%)</title><rect x="375.6" y="469" width="3.2" height="15.0" fill="rgb(217,222,39)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_multiplicativeExpression (8 samples, 0.35%)</title><rect x="300.8" y="1333" width="4.2" height="15.0" fill="rgb(219,86,6)" rx="2" ry="2" />
<text text-anchor="" x="303.85" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_postfixUnaryExpression (8 samples, 0.35%)</title><rect x="353.3" y="437" width="4.2" height="15.0" fill="rgb(205,221,11)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (26 samples, 1.14%)</title><rect x="1152.1" y="869" width="13.5" height="15.0" fill="rgb(209,97,35)" rx="2" ry="2" />
<text text-anchor="" x="1155.09" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="300.8" y="1605" width="4.2" height="15.0" fill="rgb(244,116,39)" rx="2" ry="2" />
<text text-anchor="" x="303.85" y="1615.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (23 samples, 1.01%)</title><rect x="867.0" y="1125" width="11.9" height="15.0" fill="rgb(251,155,42)" rx="2" ry="2" />
<text text-anchor="" x="869.95" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_callSuffix (9 samples, 0.40%)</title><rect x="176.2" y="885" width="4.7" height="15.0" fill="rgb(216,115,22)" rx="2" ry="2" />
<text text-anchor="" x="179.20" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (9 samples, 0.40%)</title><rect x="820.2" y="357" width="4.7" height="15.0" fill="rgb(228,144,22)" rx="2" ry="2" />
<text text-anchor="" x="823.21" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_directlyAssignableExpression (10 samples, 0.44%)</title><rect x="398.5" y="1589" width="5.2" height="15.0" fill="rgb(226,46,29)" rx="2" ry="2" />
<text text-anchor="" x="401.49" y="1599.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="207.4" y="1493" width="3.6" height="15.0" fill="rgb(205,141,0)" rx="2" ry="2" />
<text text-anchor="" x="210.36" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_infixFunctionCall (8 samples, 0.35%)</title><rect x="804.6" y="597" width="4.2" height="15.0" fill="rgb(241,229,9)" rx="2" ry="2" />
<text text-anchor="" x="807.63" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_modifiers (6 samples, 0.26%)</title><rect x="907.5" y="1173" width="3.1" height="15.0" fill="rgb(217,169,40)" rx="2" ry="2" />
<text text-anchor="" x="910.46" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>createTagsWithFallback1 (18 samples, 0.79%)</title><rect x="176.2" y="1557" width="9.3" height="15.0" fill="rgb(219,52,27)" rx="2" ry="2" />
<text text-anchor="" x="179.20" y="1567.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_infixOperation (6 samples, 0.26%)</title><rect x="225.5" y="1269" width="3.2" height="15.0" fill="rgb(232,37,38)" rx="2" ry="2" />
<text text-anchor="" x="228.54" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_conjunction (6 samples, 0.26%)</title><rect x="918.9" y="1141" width="3.1" height="15.0" fill="rgb(243,147,22)" rx="2" ry="2" />
<text text-anchor="" x="921.89" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="794.2" y="773" width="4.2" height="15.0" fill="rgb(224,40,53)" rx="2" ry="2" />
<text text-anchor="" x="797.24" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_directlyAssignableExpression (125 samples, 5.50%)</title><rect x="749.1" y="981" width="64.9" height="15.0" fill="rgb(251,71,28)" rx="2" ry="2" />
<text text-anchor="" x="752.06" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pcc_eva..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_functionBody (230 samples, 10.12%)</title><rect x="747.5" y="1141" width="119.5" height="15.0" fill="rgb(207,14,28)" rx="2" ry="2" />
<text text-anchor="" x="750.50" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pcc_evaluate_r..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (24 samples, 1.06%)</title><rect x="1153.1" y="709" width="12.5" height="15.0" fill="rgb(243,81,19)" rx="2" ry="2" />
<text text-anchor="" x="1156.12" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_disjunction (20 samples, 0.88%)</title><rect x="941.7" y="1237" width="10.4" height="15.0" fill="rgb(238,0,36)" rx="2" ry="2" />
<text text-anchor="" x="944.74" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="365.2" y="1381" width="3.2" height="15.0" fill="rgb(223,203,37)" rx="2" ry="2" />
<text text-anchor="" x="368.25" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_equality (6 samples, 0.26%)</title><rect x="225.5" y="1365" width="3.2" height="15.0" fill="rgb(239,119,9)" rx="2" ry="2" />
<text text-anchor="" x="228.54" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_functionDeclaration (60 samples, 2.64%)</title><rect x="928.8" y="1333" width="31.1" height="15.0" fill="rgb(225,169,8)" rx="2" ry="2" />
<text text-anchor="" x="931.76" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pc..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_classMemberDeclaration (6 samples, 0.26%)</title><rect x="207.4" y="1349" width="3.1" height="15.0" fill="rgb(240,32,8)" rx="2" ry="2" />
<text text-anchor="" x="210.36" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (9 samples, 0.40%)</title><rect x="432.2" y="1621" width="4.7" height="15.0" fill="rgb(236,95,33)" rx="2" ry="2" />
<text text-anchor="" x="435.24" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (31 samples, 1.36%)</title><rect x="1149.5" y="949" width="16.1" height="15.0" fill="rgb(216,11,16)" rx="2" ry="2" />
<text text-anchor="" x="1152.49" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc_consolidate (16 samples, 0.70%)</title><rect x="1169.2" y="1429" width="8.3" height="15.0" fill="rgb(223,72,17)" rx="2" ry="2" />
<text text-anchor="" x="1172.23" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_classMemberDeclarations (7 samples, 0.31%)</title><rect x="189.2" y="1317" width="3.6" height="15.0" fill="rgb(220,38,32)" rx="2" ry="2" />
<text text-anchor="" x="192.18" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_disjunction (7 samples, 0.31%)</title><rect x="177.2" y="757" width="3.7" height="15.0" fill="rgb(205,198,15)" rx="2" ry="2" />
<text text-anchor="" x="180.24" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="839.9" y="933" width="3.2" height="15.0" fill="rgb(245,68,27)" rx="2" ry="2" />
<text text-anchor="" x="842.95" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_assignment (6 samples, 0.26%)</title><rect x="216.7" y="981" width="3.1" height="15.0" fill="rgb(221,142,34)" rx="2" ry="2" />
<text text-anchor="" x="219.71" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_filePart (473 samples, 20.82%)</title><rect x="720.5" y="1429" width="245.7" height="15.0" fill="rgb(250,6,53)" rx="2" ry="2" />
<text text-anchor="" x="723.49" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pcc_evaluate_rule_filePart</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_annotatedLambda (8 samples, 0.35%)</title><rect x="398.5" y="1173" width="4.1" height="15.0" fill="rgb(239,196,33)" rx="2" ry="2" />
<text text-anchor="" x="401.49" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_classBody (7 samples, 0.31%)</title><rect x="309.2" y="1557" width="3.6" height="15.0" fill="rgb(214,38,28)" rx="2" ry="2" />
<text text-anchor="" x="312.15" y="1567.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (10 samples, 0.44%)</title><rect x="274.9" y="1669" width="5.2" height="15.0" fill="rgb(215,147,27)" rx="2" ry="2" />
<text text-anchor="" x="277.88" y="1679.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="300.8" y="1285" width="4.2" height="15.0" fill="rgb(224,42,25)" rx="2" ry="2" />
<text text-anchor="" x="303.85" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (20 samples, 0.88%)</title><rect x="941.7" y="997" width="10.4" height="15.0" fill="rgb(219,138,31)" rx="2" ry="2" />
<text text-anchor="" x="944.74" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="207.4" y="1461" width="3.6" height="15.0" fill="rgb(249,42,13)" rx="2" ry="2" />
<text text-anchor="" x="210.36" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_equality (20 samples, 0.88%)</title><rect x="941.7" y="1173" width="10.4" height="15.0" fill="rgb(250,114,43)" rx="2" ry="2" />
<text text-anchor="" x="944.74" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnaryExpression (23 samples, 1.01%)</title><rect x="885.1" y="693" width="12.0" height="15.0" fill="rgb(244,58,23)" rx="2" ry="2" />
<text text-anchor="" x="888.13" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (13 samples, 0.57%)</title><rect x="216.2" y="1669" width="6.7" height="15.0" fill="rgb(236,5,24)" rx="2" ry="2" />
<text text-anchor="" x="219.19" y="1679.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (24 samples, 1.06%)</title><rect x="1153.1" y="789" width="12.5" height="15.0" fill="rgb(251,36,43)" rx="2" ry="2" />
<text text-anchor="" x="1156.12" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (12 samples, 0.53%)</title><rect x="519.5" y="1589" width="6.2" height="15.0" fill="rgb(208,188,43)" rx="2" ry="2" />
<text text-anchor="" x="522.50" y="1599.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_multiplicativeExpression (10 samples, 0.44%)</title><rect x="274.9" y="1397" width="5.2" height="15.0" fill="rgb(205,37,8)" rx="2" ry="2" />
<text text-anchor="" x="277.88" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_declaration (30 samples, 1.32%)</title><rect x="728.8" y="1045" width="15.6" height="15.0" fill="rgb(205,171,43)" rx="2" ry="2" />
<text text-anchor="" x="731.80" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_Identifier (8 samples, 0.35%)</title><rect x="969.8" y="1301" width="4.1" height="15.0" fill="rgb(225,88,30)" rx="2" ry="2" />
<text text-anchor="" x="972.79" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_prefixUnaryExpression (11 samples, 0.48%)</title><rect x="483.7" y="1637" width="5.7" height="15.0" fill="rgb(238,16,4)" rx="2" ry="2" />
<text text-anchor="" x="486.66" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="274.9" y="1221" width="3.1" height="15.0" fill="rgb(246,187,47)" rx="2" ry="2" />
<text text-anchor="" x="277.88" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="378.8" y="1445" width="4.1" height="15.0" fill="rgb(223,228,46)" rx="2" ry="2" />
<text text-anchor="" x="381.75" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_statement (8 samples, 0.35%)</title><rect x="216.7" y="1301" width="4.2" height="15.0" fill="rgb(231,39,43)" rx="2" ry="2" />
<text text-anchor="" x="219.71" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="350.2" y="1541" width="3.1" height="15.0" fill="rgb(234,207,0)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_classBody (6 samples, 0.26%)</title><rect x="207.4" y="1413" width="3.1" height="15.0" fill="rgb(206,39,12)" rx="2" ry="2" />
<text text-anchor="" x="210.36" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnarySuffix (8 samples, 0.35%)</title><rect x="483.7" y="1573" width="4.1" height="15.0" fill="rgb(217,114,54)" rx="2" ry="2" />
<text text-anchor="" x="486.66" y="1583.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (10 samples, 0.44%)</title><rect x="269.7" y="1381" width="5.2" height="15.0" fill="rgb(243,189,30)" rx="2" ry="2" />
<text text-anchor="" x="272.68" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="375.6" y="1189" width="3.2" height="15.0" fill="rgb(231,89,14)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="804.6" y="709" width="4.2" height="15.0" fill="rgb(225,16,17)" rx="2" ry="2" />
<text text-anchor="" x="807.63" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_functionBody (9 samples, 0.40%)</title><rect x="519.5" y="1349" width="4.7" height="15.0" fill="rgb(228,134,22)" rx="2" ry="2" />
<text text-anchor="" x="522.50" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_genericCallLikeComparison (8 samples, 0.35%)</title><rect x="300.8" y="1525" width="4.2" height="15.0" fill="rgb(237,107,44)" rx="2" ry="2" />
<text text-anchor="" x="303.85" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_infixFunctionCall (24 samples, 1.06%)</title><rect x="779.7" y="533" width="12.5" height="15.0" fill="rgb(241,141,13)" rx="2" ry="2" />
<text text-anchor="" x="782.70" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_classMemberDeclaration (13 samples, 0.57%)</title><rect x="257.2" y="1685" width="6.8" height="15.0" fill="rgb(242,161,2)" rx="2" ry="2" />
<text text-anchor="" x="260.22" y="1695.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_classMemberDeclaration (7 samples, 0.31%)</title><rect x="309.2" y="1493" width="3.6" height="15.0" fill="rgb(220,159,54)" rx="2" ry="2" />
<text text-anchor="" x="312.15" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (10 samples, 0.44%)</title><rect x="519.5" y="1525" width="5.2" height="15.0" fill="rgb(234,61,11)" rx="2" ry="2" />
<text text-anchor="" x="522.50" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="959.9" y="1221" width="3.1" height="15.0" fill="rgb(205,150,34)" rx="2" ry="2" />
<text text-anchor="" x="962.92" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="398.5" y="1029" width="4.1" height="15.0" fill="rgb(205,191,45)" rx="2" ry="2" />
<text text-anchor="" x="401.49" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_classMemberDeclaration (6 samples, 0.26%)</title><rect x="202.7" y="1333" width="3.1" height="15.0" fill="rgb(216,226,5)" rx="2" ry="2" />
<text text-anchor="" x="205.68" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="177.2" y="261" width="3.2" height="15.0" fill="rgb(247,103,20)" rx="2" ry="2" />
<text text-anchor="" x="180.24" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (20 samples, 0.88%)</title><rect x="1155.2" y="645" width="10.4" height="15.0" fill="rgb(241,37,41)" rx="2" ry="2" />
<text text-anchor="" x="1158.20" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (22 samples, 0.97%)</title><rect x="1154.2" y="661" width="11.4" height="15.0" fill="rgb(214,53,33)" rx="2" ry="2" />
<text text-anchor="" x="1157.16" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="353.3" y="741" width="4.2" height="15.0" fill="rgb(207,124,8)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="437.4" y="1557" width="3.2" height="15.0" fill="rgb(223,156,53)" rx="2" ry="2" />
<text text-anchor="" x="440.44" y="1567.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="878.9" y="1125" width="4.2" height="15.0" fill="rgb(219,47,12)" rx="2" ry="2" />
<text text-anchor="" x="881.90" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (24 samples, 1.06%)</title><rect x="884.6" y="741" width="12.5" height="15.0" fill="rgb(237,134,7)" rx="2" ry="2" />
<text text-anchor="" x="887.61" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (60 samples, 2.64%)</title><rect x="928.8" y="1317" width="31.1" height="15.0" fill="rgb(236,93,52)" rx="2" ry="2" />
<text text-anchor="" x="931.76" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pc..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="216.7" y="901" width="3.1" height="15.0" fill="rgb(222,160,13)" rx="2" ry="2" />
<text text-anchor="" x="219.71" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (25 samples, 1.10%)</title><rect x="1152.6" y="805" width="13.0" height="15.0" fill="rgb(246,130,1)" rx="2" ry="2" />
<text text-anchor="" x="1155.61" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="300.8" y="1669" width="4.2" height="15.0" fill="rgb(235,87,22)" rx="2" ry="2" />
<text text-anchor="" x="303.85" y="1679.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="193.9" y="1301" width="3.6" height="15.0" fill="rgb(233,124,33)" rx="2" ry="2" />
<text text-anchor="" x="196.86" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_functionDeclaration (7 samples, 0.31%)</title><rect x="284.7" y="1653" width="3.7" height="15.0" fill="rgb(233,28,9)" rx="2" ry="2" />
<text text-anchor="" x="287.74" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_comparison (6 samples, 0.26%)</title><rect x="375.6" y="1429" width="3.2" height="15.0" fill="rgb(225,104,18)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_elvisExpression (8 samples, 0.35%)</title><rect x="247.4" y="1269" width="4.1" height="15.0" fill="rgb(229,83,18)" rx="2" ry="2" />
<text text-anchor="" x="250.35" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (11 samples, 0.48%)</title><rect x="216.7" y="1509" width="5.7" height="15.0" fill="rgb(254,155,47)" rx="2" ry="2" />
<text text-anchor="" x="219.71" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (25 samples, 1.10%)</title><rect x="1152.6" y="821" width="13.0" height="15.0" fill="rgb(245,48,30)" rx="2" ry="2" />
<text text-anchor="" x="1155.61" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_callSuffix (14 samples, 0.62%)</title><rect x="236.4" y="1685" width="7.3" height="15.0" fill="rgb(212,136,17)" rx="2" ry="2" />
<text text-anchor="" x="239.44" y="1695.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="503.4" y="1589" width="4.2" height="15.0" fill="rgb(205,139,15)" rx="2" ry="2" />
<text text-anchor="" x="506.40" y="1599.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnaryExpression (7 samples, 0.31%)</title><rect x="499.8" y="1541" width="3.6" height="15.0" fill="rgb(247,119,51)" rx="2" ry="2" />
<text text-anchor="" x="502.76" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_statement (13 samples, 0.57%)</title><rect x="314.3" y="1589" width="6.8" height="15.0" fill="rgb(250,123,1)" rx="2" ry="2" />
<text text-anchor="" x="317.35" y="1599.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="225.5" y="1157" width="3.2" height="15.0" fill="rgb(230,229,48)" rx="2" ry="2" />
<text text-anchor="" x="228.54" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>createTagsWithFallback1 (1,187 samples, 52.24%)</title><rect x="564.7" y="1557" width="616.5" height="15.0" fill="rgb(219,92,2)" rx="2" ry="2" />
<text text-anchor="" x="567.68" y="1567.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >createTagsWithFallback1</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_lambdaLiteral (11 samples, 0.48%)</title><rect x="758.9" y="533" width="5.7" height="15.0" fill="rgb(236,208,2)" rx="2" ry="2" />
<text text-anchor="" x="761.93" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="898.6" y="709" width="3.2" height="15.0" fill="rgb(208,147,44)" rx="2" ry="2" />
<text text-anchor="" x="901.64" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (20 samples, 0.88%)</title><rect x="941.7" y="965" width="10.4" height="15.0" fill="rgb(206,0,53)" rx="2" ry="2" />
<text text-anchor="" x="944.74" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_assignment (24 samples, 1.06%)</title><rect x="756.3" y="725" width="12.5" height="15.0" fill="rgb(248,171,51)" rx="2" ry="2" />
<text text-anchor="" x="759.33" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_infixFunctionCall (6 samples, 0.26%)</title><rect x="440.6" y="1509" width="3.1" height="15.0" fill="rgb(226,70,4)" rx="2" ry="2" />
<text text-anchor="" x="443.55" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_classDeclaration (7 samples, 0.31%)</title><rect x="193.9" y="1477" width="3.6" height="15.0" fill="rgb(208,59,27)" rx="2" ry="2" />
<text text-anchor="" x="196.86" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (33 samples, 1.45%)</title><rect x="816.6" y="773" width="17.1" height="15.0" fill="rgb(254,57,13)" rx="2" ry="2" />
<text text-anchor="" x="819.58" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (24 samples, 1.06%)</title><rect x="1153.1" y="773" width="12.5" height="15.0" fill="rgb(244,175,35)" rx="2" ry="2" />
<text text-anchor="" x="1156.12" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="378.8" y="1477" width="4.1" height="15.0" fill="rgb(225,183,24)" rx="2" ry="2" />
<text text-anchor="" x="381.75" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_expression (6 samples, 0.26%)</title><rect x="225.5" y="1461" width="3.2" height="15.0" fill="rgb(208,86,28)" rx="2" ry="2" />
<text text-anchor="" x="228.54" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="907.5" y="1189" width="3.1" height="15.0" fill="rgb(235,165,53)" rx="2" ry="2" />
<text text-anchor="" x="910.46" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_comparison (25 samples, 1.10%)</title><rect x="884.6" y="1013" width="13.0" height="15.0" fill="rgb(215,59,22)" rx="2" ry="2" />
<text text-anchor="" x="887.61" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (29 samples, 1.28%)</title><rect x="1150.5" y="933" width="15.1" height="15.0" fill="rgb(223,177,46)" rx="2" ry="2" />
<text text-anchor="" x="1153.53" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="177.2" y="549" width="3.7" height="15.0" fill="rgb(226,216,6)" rx="2" ry="2" />
<text text-anchor="" x="180.24" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_rangeExpression (8 samples, 0.35%)</title><rect x="353.3" y="1205" width="4.2" height="15.0" fill="rgb(223,154,16)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="454.6" y="1429" width="3.1" height="15.0" fill="rgb(235,207,47)" rx="2" ry="2" />
<text text-anchor="" x="457.58" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_simpleIdentifier (8 samples, 0.35%)</title><rect x="794.2" y="789" width="4.2" height="15.0" fill="rgb(210,95,15)" rx="2" ry="2" />
<text text-anchor="" x="797.24" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="361.6" y="1573" width="3.6" height="15.0" fill="rgb(248,168,12)" rx="2" ry="2" />
<text text-anchor="" x="364.61" y="1583.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="300.8" y="1317" width="4.2" height="15.0" fill="rgb(229,123,13)" rx="2" ry="2" />
<text text-anchor="" x="303.85" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="440.6" y="1589" width="3.1" height="15.0" fill="rgb(211,161,30)" rx="2" ry="2" />
<text text-anchor="" x="443.55" y="1599.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="202.7" y="1349" width="3.1" height="15.0" fill="rgb(241,131,15)" rx="2" ry="2" />
<text text-anchor="" x="205.68" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (11 samples, 0.48%)</title><rect x="483.7" y="1621" width="5.7" height="15.0" fill="rgb(221,181,51)" rx="2" ry="2" />
<text text-anchor="" x="486.66" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (18 samples, 0.79%)</title><rect x="1156.2" y="549" width="9.4" height="15.0" fill="rgb(247,69,23)" rx="2" ry="2" />
<text text-anchor="" x="1159.24" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="334.1" y="1669" width="3.1" height="15.0" fill="rgb(222,55,39)" rx="2" ry="2" />
<text text-anchor="" x="337.08" y="1679.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_callSuffix (10 samples, 0.44%)</title><rect x="216.7" y="1429" width="5.2" height="15.0" fill="rgb(207,85,12)" rx="2" ry="2" />
<text text-anchor="" x="219.71" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_functionDeclaration (263 samples, 11.58%)</title><rect x="747.5" y="1173" width="136.6" height="15.0" fill="rgb(254,29,16)" rx="2" ry="2" />
<text text-anchor="" x="750.50" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pcc_evaluate_rule..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_declaration (7 samples, 0.31%)</title><rect x="193.9" y="1509" width="3.6" height="15.0" fill="rgb(212,41,16)" rx="2" ry="2" />
<text text-anchor="" x="196.86" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (473 samples, 20.82%)</title><rect x="720.5" y="1413" width="245.7" height="15.0" fill="rgb(232,122,46)" rx="2" ry="2" />
<text text-anchor="" x="723.49" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pcc_apply_rule</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="353.3" y="1221" width="4.2" height="15.0" fill="rgb(250,29,21)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (9 samples, 0.40%)</title><rect x="280.1" y="1541" width="4.6" height="15.0" fill="rgb(251,91,31)" rx="2" ry="2" />
<text text-anchor="" x="283.07" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_prefixUnaryExpression (10 samples, 0.44%)</title><rect x="274.9" y="1333" width="5.2" height="15.0" fill="rgb(248,110,23)" rx="2" ry="2" />
<text text-anchor="" x="277.88" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_statement (6 samples, 0.26%)</title><rect x="252.0" y="1397" width="3.1" height="15.0" fill="rgb(244,229,31)" rx="2" ry="2" />
<text text-anchor="" x="255.02" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="247.4" y="421" width="3.1" height="15.0" fill="rgb(254,183,18)" rx="2" ry="2" />
<text text-anchor="" x="250.35" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (10 samples, 0.44%)</title><rect x="274.9" y="1573" width="5.2" height="15.0" fill="rgb(218,74,42)" rx="2" ry="2" />
<text text-anchor="" x="277.88" y="1583.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="225.5" y="1125" width="3.2" height="15.0" fill="rgb(244,53,35)" rx="2" ry="2" />
<text text-anchor="" x="228.54" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="309.2" y="1541" width="3.6" height="15.0" fill="rgb(238,68,2)" rx="2" ry="2" />
<text text-anchor="" x="312.15" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_prefixUnaryExpression (6 samples, 0.26%)</title><rect x="247.4" y="469" width="3.1" height="15.0" fill="rgb(228,180,5)" rx="2" ry="2" />
<text text-anchor="" x="250.35" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ctags_cli_main (18 samples, 0.79%)</title><rect x="176.2" y="1685" width="9.3" height="15.0" fill="rgb(229,120,0)" rx="2" ry="2" />
<text text-anchor="" x="179.20" y="1695.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="375.6" y="709" width="3.2" height="15.0" fill="rgb(252,157,18)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="189.2" y="1269" width="3.6" height="15.0" fill="rgb(235,149,4)" rx="2" ry="2" />
<text text-anchor="" x="192.18" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_equality (8 samples, 0.35%)</title><rect x="247.4" y="1397" width="4.1" height="15.0" fill="rgb(214,101,25)" rx="2" ry="2" />
<text text-anchor="" x="250.35" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_primaryExpression (8 samples, 0.35%)</title><rect x="931.9" y="1077" width="4.1" height="15.0" fill="rgb(240,22,26)" rx="2" ry="2" />
<text text-anchor="" x="934.88" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (9 samples, 0.40%)</title><rect x="176.2" y="901" width="4.7" height="15.0" fill="rgb(205,198,47)" rx="2" ry="2" />
<text text-anchor="" x="179.20" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="378.8" y="1157" width="3.6" height="15.0" fill="rgb(206,30,42)" rx="2" ry="2" />
<text text-anchor="" x="381.75" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>createTagsForFile (7 samples, 0.31%)</title><rect x="193.9" y="1685" width="3.6" height="15.0" fill="rgb(244,80,3)" rx="2" ry="2" />
<text text-anchor="" x="196.86" y="1695.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_additiveExpression (8 samples, 0.35%)</title><rect x="300.8" y="1365" width="4.2" height="15.0" fill="rgb(214,26,4)" rx="2" ry="2" />
<text text-anchor="" x="303.85" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="375.6" y="1413" width="3.2" height="15.0" fill="rgb(234,6,25)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (9 samples, 0.40%)</title><rect x="176.2" y="965" width="4.7" height="15.0" fill="rgb(219,192,51)" rx="2" ry="2" />
<text text-anchor="" x="179.20" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnarySuffix (6 samples, 0.26%)</title><rect x="247.4" y="1013" width="3.1" height="15.0" fill="rgb(205,129,1)" rx="2" ry="2" />
<text text-anchor="" x="250.35" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_filePart (8 samples, 0.35%)</title><rect x="189.2" y="1477" width="4.1" height="15.0" fill="rgb(220,129,39)" rx="2" ry="2" />
<text text-anchor="" x="192.18" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_classParameters (19 samples, 0.84%)</title><rect x="917.3" y="1269" width="9.9" height="15.0" fill="rgb(233,114,17)" rx="2" ry="2" />
<text text-anchor="" x="920.33" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_primaryExpression (7 samples, 0.31%)</title><rect x="893.4" y="661" width="3.7" height="15.0" fill="rgb(214,70,50)" rx="2" ry="2" />
<text text-anchor="" x="896.44" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (25 samples, 1.10%)</title><rect x="884.6" y="997" width="13.0" height="15.0" fill="rgb(254,113,2)" rx="2" ry="2" />
<text text-anchor="" x="887.61" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_asExpression (6 samples, 0.26%)</title><rect x="334.1" y="1493" width="3.1" height="15.0" fill="rgb(212,167,49)" rx="2" ry="2" />
<text text-anchor="" x="337.08" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_annotatedLambda (12 samples, 0.53%)</title><rect x="818.7" y="405" width="6.2" height="15.0" fill="rgb(213,103,47)" rx="2" ry="2" />
<text text-anchor="" x="821.65" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_asExpression (6 samples, 0.26%)</title><rect x="437.4" y="1445" width="3.2" height="15.0" fill="rgb(253,188,20)" rx="2" ry="2" />
<text text-anchor="" x="440.44" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_comparison (8 samples, 0.35%)</title><rect x="353.3" y="757" width="4.2" height="15.0" fill="rgb(244,69,21)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (31 samples, 1.36%)</title><rect x="849.8" y="773" width="16.1" height="15.0" fill="rgb(214,79,5)" rx="2" ry="2" />
<text text-anchor="" x="852.82" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (385 samples, 16.95%)</title><rect x="211.0" y="1701" width="200.0" height="15.0" fill="rgb(217,111,50)" rx="2" ry="2" />
<text text-anchor="" x="213.99" y="1711.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pcc_apply_rule</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (41 samples, 1.80%)</title><rect x="755.3" y="805" width="21.3" height="15.0" fill="rgb(227,5,35)" rx="2" ry="2" />
<text text-anchor="" x="758.29" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >p..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_rangeExpression (31 samples, 1.36%)</title><rect x="817.6" y="661" width="16.1" height="15.0" fill="rgb(248,157,18)" rx="2" ry="2" />
<text text-anchor="" x="820.61" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (28 samples, 1.23%)</title><rect x="779.7" y="741" width="14.5" height="15.0" fill="rgb(245,5,23)" rx="2" ry="2" />
<text text-anchor="" x="782.70" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="289.4" y="1573" width="3.1" height="15.0" fill="rgb(226,157,38)" rx="2" ry="2" />
<text text-anchor="" x="292.42" y="1583.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="898.6" y="1093" width="3.2" height="15.0" fill="rgb(248,46,3)" rx="2" ry="2" />
<text text-anchor="" x="901.64" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_functionBody (14 samples, 0.62%)</title><rect x="728.8" y="981" width="7.3" height="15.0" fill="rgb(239,81,27)" rx="2" ry="2" />
<text text-anchor="" x="731.80" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="216.7" y="1125" width="4.2" height="15.0" fill="rgb(245,82,20)" rx="2" ry="2" />
<text text-anchor="" x="219.71" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_filePart (7 samples, 0.31%)</title><rect x="193.9" y="1573" width="3.6" height="15.0" fill="rgb(243,89,30)" rx="2" ry="2" />
<text text-anchor="" x="196.86" y="1583.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc_consolidate (63 samples, 2.77%)</title><rect x="532.0" y="1445" width="32.7" height="15.0" fill="rgb(243,85,1)" rx="2" ry="2" />
<text text-anchor="" x="534.96" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ma..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_importList (38 samples, 1.67%)</title><rect x="966.2" y="1429" width="19.7" height="15.0" fill="rgb(248,152,3)" rx="2" ry="2" />
<text text-anchor="" x="969.15" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnarySuffix (10 samples, 0.44%)</title><rect x="216.7" y="1461" width="5.2" height="15.0" fill="rgb(253,150,26)" rx="2" ry="2" />
<text text-anchor="" x="219.71" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_elvisExpression (8 samples, 0.35%)</title><rect x="804.6" y="629" width="4.2" height="15.0" fill="rgb(219,11,18)" rx="2" ry="2" />
<text text-anchor="" x="807.63" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="334.1" y="1541" width="3.1" height="15.0" fill="rgb(241,48,26)" rx="2" ry="2" />
<text text-anchor="" x="337.08" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnarySuffix (10 samples, 0.44%)</title><rect x="388.6" y="1557" width="5.2" height="15.0" fill="rgb(213,183,13)" rx="2" ry="2" />
<text text-anchor="" x="391.62" y="1567.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_assignment (8 samples, 0.35%)</title><rect x="398.5" y="1045" width="4.1" height="15.0" fill="rgb(246,146,1)" rx="2" ry="2" />
<text text-anchor="" x="401.49" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (48 samples, 2.11%)</title><rect x="1140.7" y="1349" width="24.9" height="15.0" fill="rgb(242,205,5)" rx="2" ry="2" />
<text text-anchor="" x="1143.66" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >p..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_callSuffix (10 samples, 0.44%)</title><rect x="398.5" y="1493" width="5.2" height="15.0" fill="rgb(206,18,40)" rx="2" ry="2" />
<text text-anchor="" x="401.49" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_rangeExpression (6 samples, 0.26%)</title><rect x="437.4" y="1541" width="3.2" height="15.0" fill="rgb(238,79,50)" rx="2" ry="2" />
<text text-anchor="" x="440.44" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="247.4" y="645" width="3.1" height="15.0" fill="rgb(245,13,13)" rx="2" ry="2" />
<text text-anchor="" x="250.35" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_functionDeclaration (6 samples, 0.26%)</title><rect x="207.4" y="1285" width="3.1" height="15.0" fill="rgb(217,114,48)" rx="2" ry="2" />
<text text-anchor="" x="210.36" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="454.6" y="1237" width="3.1" height="15.0" fill="rgb(211,105,51)" rx="2" ry="2" />
<text text-anchor="" x="457.58" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_declaration (6 samples, 0.26%)</title><rect x="207.4" y="1317" width="3.1" height="15.0" fill="rgb(212,226,35)" rx="2" ry="2" />
<text text-anchor="" x="210.36" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_conjunction (6 samples, 0.26%)</title><rect x="225.5" y="1397" width="3.2" height="15.0" fill="rgb(243,197,4)" rx="2" ry="2" />
<text text-anchor="" x="228.54" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_annotatedLambda (16 samples, 0.70%)</title><rect x="756.3" y="565" width="8.3" height="15.0" fill="rgb(238,74,15)" rx="2" ry="2" />
<text text-anchor="" x="759.33" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnarySuffix (8 samples, 0.35%)</title><rect x="398.5" y="1237" width="4.1" height="15.0" fill="rgb(209,159,50)" rx="2" ry="2" />
<text text-anchor="" x="401.49" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (41 samples, 1.80%)</title><rect x="1144.3" y="1221" width="21.3" height="15.0" fill="rgb(220,141,33)" rx="2" ry="2" />
<text text-anchor="" x="1147.30" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >p..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_asExpression (6 samples, 0.26%)</title><rect x="454.6" y="1413" width="3.1" height="15.0" fill="rgb(208,213,15)" rx="2" ry="2" />
<text text-anchor="" x="457.58" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_assignment (6 samples, 0.26%)</title><rect x="231.2" y="1589" width="3.2" height="15.0" fill="rgb(234,193,54)" rx="2" ry="2" />
<text text-anchor="" x="234.25" y="1599.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="353.3" y="1445" width="4.2" height="15.0" fill="rgb(234,227,18)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_elvisExpression (10 samples, 0.44%)</title><rect x="269.7" y="1589" width="5.2" height="15.0" fill="rgb(240,96,9)" rx="2" ry="2" />
<text text-anchor="" x="272.68" y="1599.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_classMemberDeclaration (17 samples, 0.75%)</title><rect x="176.2" y="1237" width="8.8" height="15.0" fill="rgb(241,145,1)" rx="2" ry="2" />
<text text-anchor="" x="179.20" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>getFileLanguageForRequestInternal (64 samples, 2.82%)</title><rect x="531.4" y="1573" width="33.3" height="15.0" fill="rgb(250,154,52)" rx="2" ry="2" />
<text text-anchor="" x="534.44" y="1583.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ge..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (34 samples, 1.50%)</title><rect x="728.8" y="1125" width="17.7" height="15.0" fill="rgb(221,132,51)" rx="2" ry="2" />
<text text-anchor="" x="731.80" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_genericCallLikeComparison (33 samples, 1.45%)</title><rect x="816.6" y="789" width="17.1" height="15.0" fill="rgb(226,11,21)" rx="2" ry="2" />
<text text-anchor="" x="819.58" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="212.0" y="1477" width="3.1" height="15.0" fill="rgb(233,13,39)" rx="2" ry="2" />
<text text-anchor="" x="215.03" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (30 samples, 1.32%)</title><rect x="817.6" y="581" width="15.6" height="15.0" fill="rgb(224,224,37)" rx="2" ry="2" />
<text text-anchor="" x="820.61" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="225.5" y="1541" width="3.2" height="15.0" fill="rgb(237,62,19)" rx="2" ry="2" />
<text text-anchor="" x="228.54" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_functionDeclaration (6 samples, 0.26%)</title><rect x="432.8" y="1605" width="3.1" height="15.0" fill="rgb(245,91,14)" rx="2" ry="2" />
<text text-anchor="" x="435.76" y="1615.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (9 samples, 0.40%)</title><rect x="728.8" y="869" width="4.7" height="15.0" fill="rgb(245,91,12)" rx="2" ry="2" />
<text text-anchor="" x="731.80" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (10 samples, 0.44%)</title><rect x="264.0" y="1605" width="5.2" height="15.0" fill="rgb(243,66,32)" rx="2" ry="2" />
<text text-anchor="" x="266.97" y="1615.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_multiplicativeExpression (8 samples, 0.35%)</title><rect x="212.0" y="1653" width="4.2" height="15.0" fill="rgb(242,102,11)" rx="2" ry="2" />
<text text-anchor="" x="215.03" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="350.2" y="1157" width="3.1" height="15.0" fill="rgb(216,55,26)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_classBody (17 samples, 0.75%)</title><rect x="176.2" y="1301" width="8.8" height="15.0" fill="rgb(227,61,51)" rx="2" ry="2" />
<text text-anchor="" x="179.20" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_additiveExpression (6 samples, 0.26%)</title><rect x="334.1" y="1557" width="3.1" height="15.0" fill="rgb(212,135,1)" rx="2" ry="2" />
<text text-anchor="" x="337.08" y="1567.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="350.2" y="645" width="3.1" height="15.0" fill="rgb(229,165,2)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="284.7" y="1605" width="3.7" height="15.0" fill="rgb(237,71,33)" rx="2" ry="2" />
<text text-anchor="" x="287.74" y="1615.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (10 samples, 0.44%)</title><rect x="269.7" y="1637" width="5.2" height="15.0" fill="rgb(229,14,30)" rx="2" ry="2" />
<text text-anchor="" x="272.68" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_callSuffix (6 samples, 0.26%)</title><rect x="454.6" y="1285" width="3.1" height="15.0" fill="rgb(223,200,15)" rx="2" ry="2" />
<text text-anchor="" x="457.58" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_directlyAssignableExpression (23 samples, 1.01%)</title><rect x="756.3" y="693" width="12.0" height="15.0" fill="rgb(238,219,15)" rx="2" ry="2" />
<text text-anchor="" x="759.33" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (11 samples, 0.48%)</title><rect x="251.5" y="1605" width="5.7" height="15.0" fill="rgb(237,210,0)" rx="2" ry="2" />
<text text-anchor="" x="254.51" y="1615.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_multiplicativeExpression (8 samples, 0.35%)</title><rect x="353.3" y="533" width="4.2" height="15.0" fill="rgb(223,150,31)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___libc_free (10 samples, 0.44%)</title><rect x="1116.2" y="1317" width="5.2" height="15.0" fill="rgb(208,99,43)" rx="2" ry="2" />
<text text-anchor="" x="1119.25" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (17 samples, 0.75%)</title><rect x="388.6" y="1637" width="8.8" height="15.0" fill="rgb(218,110,36)" rx="2" ry="2" />
<text text-anchor="" x="391.62" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_classMemberDeclaration (10 samples, 0.44%)</title><rect x="264.0" y="1653" width="5.2" height="15.0" fill="rgb(237,53,22)" rx="2" ry="2" />
<text text-anchor="" x="266.97" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="440.6" y="1525" width="3.1" height="15.0" fill="rgb(249,202,6)" rx="2" ry="2" />
<text text-anchor="" x="443.55" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (53 samples, 2.33%)</title><rect x="749.1" y="837" width="27.5" height="15.0" fill="rgb(207,16,2)" rx="2" ry="2" />
<text text-anchor="" x="752.06" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >p..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_infixOperation (24 samples, 1.06%)</title><rect x="779.7" y="597" width="12.5" height="15.0" fill="rgb(241,116,48)" rx="2" ry="2" />
<text text-anchor="" x="782.70" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (15 samples, 0.66%)</title><rect x="243.7" y="1669" width="7.8" height="15.0" fill="rgb(206,111,1)" rx="2" ry="2" />
<text text-anchor="" x="246.71" y="1679.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_functionBody (6 samples, 0.26%)</title><rect x="309.2" y="1397" width="3.1" height="15.0" fill="rgb(234,13,1)" rx="2" ry="2" />
<text text-anchor="" x="312.15" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="350.2" y="613" width="3.1" height="15.0" fill="rgb(224,65,30)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="440.6" y="1621" width="3.1" height="15.0" fill="rgb(243,75,40)" rx="2" ry="2" />
<text text-anchor="" x="443.55" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="454.6" y="1365" width="3.1" height="15.0" fill="rgb(214,86,39)" rx="2" ry="2" />
<text text-anchor="" x="457.58" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="216.7" y="1157" width="4.2" height="15.0" fill="rgb(216,220,36)" rx="2" ry="2" />
<text text-anchor="" x="219.71" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_asExpression (6 samples, 0.26%)</title><rect x="375.6" y="565" width="3.2" height="15.0" fill="rgb(226,201,41)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_asExpression (20 samples, 0.88%)</title><rect x="780.2" y="405" width="10.4" height="15.0" fill="rgb(240,85,24)" rx="2" ry="2" />
<text text-anchor="" x="783.22" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="216.7" y="965" width="3.1" height="15.0" fill="rgb(214,75,8)" rx="2" ry="2" />
<text text-anchor="" x="219.71" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="247.4" y="677" width="3.1" height="15.0" fill="rgb(249,9,53)" rx="2" ry="2" />
<text text-anchor="" x="250.35" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (15 samples, 0.66%)</title><rect x="243.7" y="1509" width="7.8" height="15.0" fill="rgb(224,143,45)" rx="2" ry="2" />
<text text-anchor="" x="246.71" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (9 samples, 0.40%)</title><rect x="176.2" y="997" width="4.7" height="15.0" fill="rgb(251,182,10)" rx="2" ry="2" />
<text text-anchor="" x="179.20" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="918.9" y="1061" width="3.1" height="15.0" fill="rgb(225,202,49)" rx="2" ry="2" />
<text text-anchor="" x="921.89" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_prefixUnaryExpression (7 samples, 0.31%)</title><rect x="177.2" y="373" width="3.7" height="15.0" fill="rgb(208,2,15)" rx="2" ry="2" />
<text text-anchor="" x="180.24" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_disjunction (8 samples, 0.35%)</title><rect x="353.3" y="1461" width="4.2" height="15.0" fill="rgb(236,28,44)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="305.0" y="1541" width="3.1" height="15.0" fill="rgb(254,14,35)" rx="2" ry="2" />
<text text-anchor="" x="308.00" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="199.6" y="1653" width="3.1" height="15.0" fill="rgb(208,66,34)" rx="2" ry="2" />
<text text-anchor="" x="202.57" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="353.3" y="1669" width="4.2" height="15.0" fill="rgb(206,180,22)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="1679.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (33 samples, 1.45%)</title><rect x="728.8" y="1061" width="17.1" height="15.0" fill="rgb(216,164,6)" rx="2" ry="2" />
<text text-anchor="" x="731.80" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnarySuffix (6 samples, 0.26%)</title><rect x="274.9" y="1269" width="3.1" height="15.0" fill="rgb(247,4,19)" rx="2" ry="2" />
<text text-anchor="" x="277.88" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_conjunction (34 samples, 1.50%)</title><rect x="849.3" y="1045" width="17.7" height="15.0" fill="rgb(250,13,6)" rx="2" ry="2" />
<text text-anchor="" x="852.30" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (25 samples, 1.10%)</title><rect x="884.6" y="965" width="13.0" height="15.0" fill="rgb(217,106,17)" rx="2" ry="2" />
<text text-anchor="" x="887.61" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_expression (8 samples, 0.35%)</title><rect x="300.8" y="1685" width="4.2" height="15.0" fill="rgb(205,175,30)" rx="2" ry="2" />
<text text-anchor="" x="303.85" y="1695.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (10 samples, 0.44%)</title><rect x="398.5" y="1477" width="5.2" height="15.0" fill="rgb(249,220,15)" rx="2" ry="2" />
<text text-anchor="" x="401.49" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_comparison (7 samples, 0.31%)</title><rect x="177.2" y="661" width="3.7" height="15.0" fill="rgb(211,139,45)" rx="2" ry="2" />
<text text-anchor="" x="180.24" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="361.6" y="1605" width="3.6" height="15.0" fill="rgb(237,133,45)" rx="2" ry="2" />
<text text-anchor="" x="364.61" y="1615.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_comparison (8 samples, 0.35%)</title><rect x="353.3" y="1365" width="4.2" height="15.0" fill="rgb(233,219,51)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>createTagsForFile (9 samples, 0.40%)</title><rect x="202.7" y="1637" width="4.7" height="15.0" fill="rgb(208,53,27)" rx="2" ry="2" />
<text text-anchor="" x="205.68" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="375.6" y="1093" width="3.2" height="15.0" fill="rgb(229,45,1)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (6 samples, 0.26%)</title><rect x="1162.5" y="69" width="3.1" height="15.0" fill="rgb(249,200,34)" rx="2" ry="2" />
<text text-anchor="" x="1165.47" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_declaration (9 samples, 0.40%)</title><rect x="432.2" y="1637" width="4.7" height="15.0" fill="rgb(236,11,52)" rx="2" ry="2" />
<text text-anchor="" x="435.24" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_rangeExpression (24 samples, 1.06%)</title><rect x="779.7" y="501" width="12.5" height="15.0" fill="rgb(247,64,48)" rx="2" ry="2" />
<text text-anchor="" x="782.70" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (13 samples, 0.57%)</title><rect x="314.3" y="1573" width="6.8" height="15.0" fill="rgb(218,120,33)" rx="2" ry="2" />
<text text-anchor="" x="317.35" y="1583.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_multiplicativeExpression (6 samples, 0.26%)</title><rect x="350.2" y="1173" width="3.1" height="15.0" fill="rgb(234,81,33)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_callSuffix (14 samples, 0.62%)</title><rect x="365.2" y="1621" width="7.3" height="15.0" fill="rgb(237,137,25)" rx="2" ry="2" />
<text text-anchor="" x="368.25" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="350.2" y="1125" width="3.1" height="15.0" fill="rgb(208,70,21)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_asExpression (8 samples, 0.35%)</title><rect x="247.4" y="1109" width="4.1" height="15.0" fill="rgb(227,132,40)" rx="2" ry="2" />
<text text-anchor="" x="250.35" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_topLevelObject (18 samples, 0.79%)</title><rect x="176.2" y="1397" width="9.3" height="15.0" fill="rgb(236,211,44)" rx="2" ry="2" />
<text text-anchor="" x="179.20" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (18 samples, 0.79%)</title><rect x="176.2" y="1349" width="9.3" height="15.0" fill="rgb(232,159,41)" rx="2" ry="2" />
<text text-anchor="" x="179.20" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="329.9" y="1605" width="4.2" height="15.0" fill="rgb(249,194,1)" rx="2" ry="2" />
<text text-anchor="" x="332.93" y="1615.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (36 samples, 1.58%)</title><rect x="1146.9" y="1029" width="18.7" height="15.0" fill="rgb(239,133,1)" rx="2" ry="2" />
<text text-anchor="" x="1149.89" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_infixOperation (8 samples, 0.35%)</title><rect x="247.4" y="1301" width="4.1" height="15.0" fill="rgb(208,110,50)" rx="2" ry="2" />
<text text-anchor="" x="250.35" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="350.2" y="677" width="3.1" height="15.0" fill="rgb(214,115,53)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (14 samples, 0.62%)</title><rect x="928.8" y="1093" width="7.2" height="15.0" fill="rgb(252,119,30)" rx="2" ry="2" />
<text text-anchor="" x="931.76" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="189.7" y="1205" width="3.1" height="15.0" fill="rgb(231,55,43)" rx="2" ry="2" />
<text text-anchor="" x="192.70" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_callSuffix (6 samples, 0.26%)</title><rect x="375.6" y="437" width="3.2" height="15.0" fill="rgb(232,166,21)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_propertyDeclaration (42 samples, 1.85%)</title><rect x="884.6" y="1173" width="21.8" height="15.0" fill="rgb(228,195,14)" rx="2" ry="2" />
<text text-anchor="" x="887.61" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >p..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="247.4" y="613" width="3.1" height="15.0" fill="rgb(240,14,25)" rx="2" ry="2" />
<text text-anchor="" x="250.35" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="353.3" y="1477" width="4.2" height="15.0" fill="rgb(205,118,16)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (37 samples, 1.63%)</title><rect x="1146.4" y="1173" width="19.2" height="15.0" fill="rgb(242,181,37)" rx="2" ry="2" />
<text text-anchor="" x="1149.37" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_conjunction (8 samples, 0.35%)</title><rect x="804.6" y="789" width="4.2" height="15.0" fill="rgb(214,44,45)" rx="2" ry="2" />
<text text-anchor="" x="807.63" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_filePart (6 samples, 0.26%)</title><rect x="199.6" y="1605" width="3.1" height="15.0" fill="rgb(226,75,54)" rx="2" ry="2" />
<text text-anchor="" x="202.57" y="1615.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_infixOperation (10 samples, 0.44%)</title><rect x="269.7" y="1621" width="5.2" height="15.0" fill="rgb(221,138,45)" rx="2" ry="2" />
<text text-anchor="" x="272.68" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnaryExpression (27 samples, 1.19%)</title><rect x="849.8" y="661" width="14.0" height="15.0" fill="rgb(223,35,29)" rx="2" ry="2" />
<text text-anchor="" x="852.82" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_lr_answer__destroy (270 samples, 11.88%)</title><rect x="996.3" y="1397" width="140.2" height="15.0" fill="rgb(241,35,40)" rx="2" ry="2" />
<text text-anchor="" x="999.28" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pcc_lr_answer__de..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (230 samples, 10.12%)</title><rect x="747.5" y="1125" width="119.5" height="15.0" fill="rgb(233,85,42)" rx="2" ry="2" />
<text text-anchor="" x="750.50" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pcc_apply_rule</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="199.6" y="1557" width="3.1" height="15.0" fill="rgb(253,83,9)" rx="2" ry="2" />
<text text-anchor="" x="202.57" y="1567.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_functionDeclaration (23 samples, 1.01%)</title><rect x="728.8" y="1013" width="11.9" height="15.0" fill="rgb(241,23,41)" rx="2" ry="2" />
<text text-anchor="" x="731.80" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>parseFileWithMio (9 samples, 0.40%)</title><rect x="202.7" y="1701" width="4.7" height="15.0" fill="rgb(253,132,25)" rx="2" ry="2" />
<text text-anchor="" x="205.68" y="1711.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_directlyAssignableExpression (6 samples, 0.26%)</title><rect x="252.0" y="1333" width="3.1" height="15.0" fill="rgb(237,175,36)" rx="2" ry="2" />
<text text-anchor="" x="255.02" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_multiplicativeExpression (8 samples, 0.35%)</title><rect x="329.9" y="1589" width="4.2" height="15.0" fill="rgb(245,168,26)" rx="2" ry="2" />
<text text-anchor="" x="332.93" y="1599.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="189.2" y="1397" width="4.1" height="15.0" fill="rgb(208,22,51)" rx="2" ry="2" />
<text text-anchor="" x="192.18" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="353.3" y="1605" width="4.2" height="15.0" fill="rgb(228,91,28)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="1615.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnaryExpression (6 samples, 0.26%)</title><rect x="365.2" y="1397" width="3.2" height="15.0" fill="rgb(207,123,42)" rx="2" ry="2" />
<text text-anchor="" x="368.25" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="378.8" y="1285" width="3.6" height="15.0" fill="rgb(239,59,10)" rx="2" ry="2" />
<text text-anchor="" x="381.75" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_expression (8 samples, 0.35%)</title><rect x="247.4" y="1493" width="4.1" height="15.0" fill="rgb(242,195,42)" rx="2" ry="2" />
<text text-anchor="" x="250.35" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_prefixUnaryExpression (19 samples, 0.84%)</title><rect x="941.7" y="853" width="9.9" height="15.0" fill="rgb(207,165,38)" rx="2" ry="2" />
<text text-anchor="" x="944.74" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="375.6" y="773" width="3.2" height="15.0" fill="rgb(208,20,12)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnarySuffix (11 samples, 0.48%)</title><rect x="780.7" y="309" width="5.8" height="15.0" fill="rgb(240,164,12)" rx="2" ry="2" />
<text text-anchor="" x="783.74" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (37 samples, 1.63%)</title><rect x="1146.4" y="1109" width="19.2" height="15.0" fill="rgb(213,42,51)" rx="2" ry="2" />
<text text-anchor="" x="1149.37" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="443.7" y="1685" width="4.1" height="15.0" fill="rgb(222,14,46)" rx="2" ry="2" />
<text text-anchor="" x="446.67" y="1695.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="177.2" y="677" width="3.7" height="15.0" fill="rgb(239,226,23)" rx="2" ry="2" />
<text text-anchor="" x="180.24" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_comparison (10 samples, 0.44%)</title><rect x="269.7" y="1685" width="5.2" height="15.0" fill="rgb(229,1,35)" rx="2" ry="2" />
<text text-anchor="" x="272.68" y="1695.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (9 samples, 0.40%)</title><rect x="322.1" y="1541" width="4.7" height="15.0" fill="rgb(251,151,53)" rx="2" ry="2" />
<text text-anchor="" x="325.14" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="375.6" y="1349" width="3.2" height="15.0" fill="rgb(223,134,37)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_postfixUnaryExpression (6 samples, 0.26%)</title><rect x="375.6" y="501" width="3.2" height="15.0" fill="rgb(215,39,37)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (19 samples, 0.84%)</title><rect x="941.7" y="837" width="9.9" height="15.0" fill="rgb(230,26,0)" rx="2" ry="2" />
<text text-anchor="" x="944.74" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_disjunction (34 samples, 1.50%)</title><rect x="816.6" y="917" width="17.6" height="15.0" fill="rgb(210,105,37)" rx="2" ry="2" />
<text text-anchor="" x="819.58" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_additiveExpression (24 samples, 1.06%)</title><rect x="884.6" y="821" width="12.5" height="15.0" fill="rgb(208,186,54)" rx="2" ry="2" />
<text text-anchor="" x="887.61" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_callSuffix (6 samples, 0.26%)</title><rect x="225.5" y="1557" width="3.2" height="15.0" fill="rgb(218,210,25)" rx="2" ry="2" />
<text text-anchor="" x="228.54" y="1567.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="503.4" y="1653" width="4.2" height="15.0" fill="rgb(235,94,3)" rx="2" ry="2" />
<text text-anchor="" x="506.40" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_classDeclaration (6 samples, 0.26%)</title><rect x="305.0" y="1557" width="3.1" height="15.0" fill="rgb(206,119,54)" rx="2" ry="2" />
<text text-anchor="" x="308.00" y="1567.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_callSuffix (7 samples, 0.31%)</title><rect x="353.3" y="373" width="3.6" height="15.0" fill="rgb(205,4,14)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="361.6" y="1669" width="3.6" height="15.0" fill="rgb(205,84,27)" rx="2" ry="2" />
<text text-anchor="" x="364.61" y="1679.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (15 samples, 0.66%)</title><rect x="243.7" y="1605" width="7.8" height="15.0" fill="rgb(247,24,27)" rx="2" ry="2" />
<text text-anchor="" x="246.71" y="1615.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_directlyAssignableExpression (16 samples, 0.70%)</title><rect x="388.6" y="1621" width="8.3" height="15.0" fill="rgb(242,172,16)" rx="2" ry="2" />
<text text-anchor="" x="391.62" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="225.5" y="1317" width="3.2" height="15.0" fill="rgb(236,30,3)" rx="2" ry="2" />
<text text-anchor="" x="228.54" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_equality (34 samples, 1.50%)</title><rect x="816.6" y="853" width="17.6" height="15.0" fill="rgb(221,187,5)" rx="2" ry="2" />
<text text-anchor="" x="819.58" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="353.3" y="805" width="4.2" height="15.0" fill="rgb(240,170,8)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (24 samples, 1.06%)</title><rect x="884.6" y="805" width="12.5" height="15.0" fill="rgb(233,60,45)" rx="2" ry="2" />
<text text-anchor="" x="887.61" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="353.3" y="357" width="3.6" height="15.0" fill="rgb(238,99,49)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="247.4" y="997" width="3.1" height="15.0" fill="rgb(207,154,45)" rx="2" ry="2" />
<text text-anchor="" x="250.35" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (10 samples, 0.44%)</title><rect x="274.9" y="1509" width="5.2" height="15.0" fill="rgb(220,83,40)" rx="2" ry="2" />
<text text-anchor="" x="277.88" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_annotatedLambda (6 samples, 0.26%)</title><rect x="398.5" y="885" width="3.1" height="15.0" fill="rgb(206,17,48)" rx="2" ry="2" />
<text text-anchor="" x="401.49" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="329.9" y="1285" width="3.1" height="15.0" fill="rgb(206,145,45)" rx="2" ry="2" />
<text text-anchor="" x="332.93" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_comparison (6 samples, 0.26%)</title><rect x="437.4" y="1701" width="3.2" height="15.0" fill="rgb(207,170,3)" rx="2" ry="2" />
<text text-anchor="" x="440.44" y="1711.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_additiveExpression (8 samples, 0.35%)</title><rect x="353.3" y="565" width="4.2" height="15.0" fill="rgb(234,144,19)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_declaration (7 samples, 0.31%)</title><rect x="406.3" y="1653" width="3.6" height="15.0" fill="rgb(250,108,41)" rx="2" ry="2" />
<text text-anchor="" x="409.28" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_filePart (18 samples, 0.79%)</title><rect x="176.2" y="1429" width="9.3" height="15.0" fill="rgb(234,52,27)" rx="2" ry="2" />
<text text-anchor="" x="179.20" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>getSpecLanguageCommon (64 samples, 2.82%)</title><rect x="531.4" y="1541" width="33.3" height="15.0" fill="rgb(227,82,50)" rx="2" ry="2" />
<text text-anchor="" x="534.44" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ge..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_statement (19 samples, 0.84%)</title><rect x="388.6" y="1685" width="9.9" height="15.0" fill="rgb(239,78,29)" rx="2" ry="2" />
<text text-anchor="" x="391.62" y="1695.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_valueArgument (39 samples, 1.72%)</title><rect x="778.1" y="821" width="20.3" height="15.0" fill="rgb(226,108,11)" rx="2" ry="2" />
<text text-anchor="" x="781.14" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="804.6" y="389" width="3.7" height="15.0" fill="rgb(235,220,36)" rx="2" ry="2" />
<text text-anchor="" x="807.63" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_callSuffix (17 samples, 0.75%)</title><rect x="756.3" y="597" width="8.9" height="15.0" fill="rgb(218,204,43)" rx="2" ry="2" />
<text text-anchor="" x="759.33" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_equality (34 samples, 1.50%)</title><rect x="849.3" y="1013" width="17.7" height="15.0" fill="rgb(241,12,39)" rx="2" ry="2" />
<text text-anchor="" x="852.30" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (34 samples, 1.50%)</title><rect x="849.3" y="997" width="17.7" height="15.0" fill="rgb(213,154,1)" rx="2" ry="2" />
<text text-anchor="" x="852.30" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnaryExpression (10 samples, 0.44%)</title><rect x="398.5" y="1557" width="5.2" height="15.0" fill="rgb(242,169,11)" rx="2" ry="2" />
<text text-anchor="" x="401.49" y="1567.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="375.6" y="517" width="3.2" height="15.0" fill="rgb(223,145,8)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="804.6" y="485" width="4.2" height="15.0" fill="rgb(224,221,22)" rx="2" ry="2" />
<text text-anchor="" x="807.63" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="189.2" y="1429" width="4.1" height="15.0" fill="rgb(236,203,54)" rx="2" ry="2" />
<text text-anchor="" x="192.18" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_rangeExpression (8 samples, 0.35%)</title><rect x="804.6" y="565" width="4.2" height="15.0" fill="rgb(247,19,17)" rx="2" ry="2" />
<text text-anchor="" x="807.63" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_additiveExpression (6 samples, 0.26%)</title><rect x="350.2" y="597" width="3.1" height="15.0" fill="rgb(247,167,9)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (54 samples, 2.38%)</title><rect x="1137.5" y="1413" width="28.1" height="15.0" fill="rgb(249,207,50)" rx="2" ry="2" />
<text text-anchor="" x="1140.54" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >p..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_infixOperation (33 samples, 1.45%)</title><rect x="816.6" y="757" width="17.1" height="15.0" fill="rgb(227,212,29)" rx="2" ry="2" />
<text text-anchor="" x="819.58" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="177.2" y="613" width="3.7" height="15.0" fill="rgb(242,107,50)" rx="2" ry="2" />
<text text-anchor="" x="180.24" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="202.7" y="1413" width="3.1" height="15.0" fill="rgb(231,71,32)" rx="2" ry="2" />
<text text-anchor="" x="205.68" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (26 samples, 1.14%)</title><rect x="779.7" y="677" width="13.5" height="15.0" fill="rgb(217,51,38)" rx="2" ry="2" />
<text text-anchor="" x="782.70" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_functionDeclaration (7 samples, 0.31%)</title><rect x="193.9" y="1317" width="3.6" height="15.0" fill="rgb(226,102,18)" rx="2" ry="2" />
<text text-anchor="" x="196.86" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (39 samples, 1.72%)</title><rect x="1145.3" y="1205" width="20.3" height="15.0" fill="rgb(230,167,33)" rx="2" ry="2" />
<text text-anchor="" x="1148.33" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="199.6" y="1589" width="3.1" height="15.0" fill="rgb(222,111,36)" rx="2" ry="2" />
<text text-anchor="" x="202.57" y="1599.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (33 samples, 1.45%)</title><rect x="1148.5" y="965" width="17.1" height="15.0" fill="rgb(218,185,11)" rx="2" ry="2" />
<text text-anchor="" x="1151.45" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="398.5" y="933" width="3.6" height="15.0" fill="rgb(225,29,53)" rx="2" ry="2" />
<text text-anchor="" x="401.49" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (35 samples, 1.54%)</title><rect x="1147.4" y="981" width="18.2" height="15.0" fill="rgb(221,122,37)" rx="2" ry="2" />
<text text-anchor="" x="1150.41" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc_consolidate (282 samples, 12.41%)</title><rect x="572.0" y="1429" width="146.4" height="15.0" fill="rgb(230,22,29)" rx="2" ry="2" />
<text text-anchor="" x="574.95" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >malloc_consolidate</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="329.9" y="1669" width="4.2" height="15.0" fill="rgb(220,155,33)" rx="2" ry="2" />
<text text-anchor="" x="332.93" y="1679.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnaryExpression (6 samples, 0.26%)</title><rect x="440.6" y="1317" width="3.1" height="15.0" fill="rgb(214,97,39)" rx="2" ry="2" />
<text text-anchor="" x="443.55" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_classMemberDeclarations (7 samples, 0.31%)</title><rect x="193.9" y="1413" width="3.6" height="15.0" fill="rgb(237,159,16)" rx="2" ry="2" />
<text text-anchor="" x="196.86" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (14 samples, 0.62%)</title><rect x="365.2" y="1637" width="7.3" height="15.0" fill="rgb(241,159,4)" rx="2" ry="2" />
<text text-anchor="" x="368.25" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_file (7 samples, 0.31%)</title><rect x="193.9" y="1605" width="3.6" height="15.0" fill="rgb(220,202,10)" rx="2" ry="2" />
<text text-anchor="" x="196.86" y="1615.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_declaration (10 samples, 0.44%)</title><rect x="264.0" y="1621" width="5.2" height="15.0" fill="rgb(206,107,17)" rx="2" ry="2" />
<text text-anchor="" x="266.97" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_functionBody (9 samples, 0.40%)</title><rect x="264.5" y="1557" width="4.7" height="15.0" fill="rgb(222,176,25)" rx="2" ry="2" />
<text text-anchor="" x="267.49" y="1567.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnarySuffix (6 samples, 0.26%)</title><rect x="289.4" y="1621" width="3.1" height="15.0" fill="rgb(228,174,6)" rx="2" ry="2" />
<text text-anchor="" x="292.42" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="350.2" y="997" width="3.1" height="15.0" fill="rgb(230,220,43)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_statement (9 samples, 0.40%)</title><rect x="398.5" y="1365" width="4.7" height="15.0" fill="rgb(252,133,5)" rx="2" ry="2" />
<text text-anchor="" x="401.49" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_propertyDelegate (6 samples, 0.26%)</title><rect x="898.6" y="1141" width="3.2" height="15.0" fill="rgb(226,115,35)" rx="2" ry="2" />
<text text-anchor="" x="901.64" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (32 samples, 1.41%)</title><rect x="817.1" y="709" width="16.6" height="15.0" fill="rgb(240,19,20)" rx="2" ry="2" />
<text text-anchor="" x="820.10" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (9 samples, 0.40%)</title><rect x="508.1" y="1621" width="4.6" height="15.0" fill="rgb(233,7,41)" rx="2" ry="2" />
<text text-anchor="" x="511.07" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_asExpression (6 samples, 0.26%)</title><rect x="225.5" y="1077" width="3.2" height="15.0" fill="rgb(225,42,5)" rx="2" ry="2" />
<text text-anchor="" x="228.54" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="353.3" y="837" width="4.2" height="15.0" fill="rgb(242,72,48)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="225.5" y="1285" width="3.2" height="15.0" fill="rgb(215,36,32)" rx="2" ry="2" />
<text text-anchor="" x="228.54" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="247.4" y="965" width="3.1" height="15.0" fill="rgb(236,15,39)" rx="2" ry="2" />
<text text-anchor="" x="250.35" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (24 samples, 1.06%)</title><rect x="884.6" y="837" width="12.5" height="15.0" fill="rgb(220,40,8)" rx="2" ry="2" />
<text text-anchor="" x="887.61" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_rangeExpression (8 samples, 0.35%)</title><rect x="329.9" y="1653" width="4.2" height="15.0" fill="rgb(243,25,14)" rx="2" ry="2" />
<text text-anchor="" x="332.93" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_multiplicativeExpression (6 samples, 0.26%)</title><rect x="440.6" y="1413" width="3.1" height="15.0" fill="rgb(219,75,53)" rx="2" ry="2" />
<text text-anchor="" x="443.55" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_equality (8 samples, 0.35%)</title><rect x="300.8" y="1589" width="4.2" height="15.0" fill="rgb(223,85,18)" rx="2" ry="2" />
<text text-anchor="" x="303.85" y="1599.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="329.9" y="1317" width="3.1" height="15.0" fill="rgb(209,191,48)" rx="2" ry="2" />
<text text-anchor="" x="332.93" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="353.3" y="1381" width="4.2" height="15.0" fill="rgb(215,178,41)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (45 samples, 1.98%)</title><rect x="1142.2" y="1285" width="23.4" height="15.0" fill="rgb(227,12,27)" rx="2" ry="2" />
<text text-anchor="" x="1145.22" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >p..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (46 samples, 2.02%)</title><rect x="1141.7" y="1301" width="23.9" height="15.0" fill="rgb(231,60,8)" rx="2" ry="2" />
<text text-anchor="" x="1144.70" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >p..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="898.6" y="773" width="3.2" height="15.0" fill="rgb(251,26,25)" rx="2" ry="2" />
<text text-anchor="" x="901.64" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_elvisExpression (10 samples, 0.44%)</title><rect x="274.9" y="1525" width="5.2" height="15.0" fill="rgb(221,118,8)" rx="2" ry="2" />
<text text-anchor="" x="277.88" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_classBody (10 samples, 0.44%)</title><rect x="519.5" y="1509" width="5.2" height="15.0" fill="rgb(222,210,20)" rx="2" ry="2" />
<text text-anchor="" x="522.50" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_expression (7 samples, 0.31%)</title><rect x="918.9" y="1205" width="3.6" height="15.0" fill="rgb(221,67,42)" rx="2" ry="2" />
<text text-anchor="" x="921.89" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (37 samples, 1.63%)</title><rect x="1146.4" y="1093" width="19.2" height="15.0" fill="rgb(250,98,49)" rx="2" ry="2" />
<text text-anchor="" x="1149.37" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_comparison (8 samples, 0.35%)</title><rect x="804.6" y="725" width="4.2" height="15.0" fill="rgb(228,129,37)" rx="2" ry="2" />
<text text-anchor="" x="807.63" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown &lt;ffffffffffffffff&gt;] (686 samples, 30.19%)</title><rect x="170.0" y="1717" width="356.2" height="15.0" fill="rgb(223,104,3)" rx="2" ry="2" />
<text text-anchor="" x="172.96" y="1727.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown &lt;ffffffffffffffff&gt;]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>createTagsForArgs (18 samples, 0.79%)</title><rect x="176.2" y="1637" width="9.3" height="15.0" fill="rgb(209,191,21)" rx="2" ry="2" />
<text text-anchor="" x="179.20" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="375.6" y="1253" width="3.2" height="15.0" fill="rgb(214,205,28)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_directlyAssignableExpression (11 samples, 0.48%)</title><rect x="216.7" y="1525" width="5.7" height="15.0" fill="rgb(239,223,54)" rx="2" ry="2" />
<text text-anchor="" x="219.71" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="378.8" y="1317" width="3.6" height="15.0" fill="rgb(233,170,52)" rx="2" ry="2" />
<text text-anchor="" x="381.75" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_disjunction (7 samples, 0.31%)</title><rect x="918.9" y="1173" width="3.6" height="15.0" fill="rgb(212,124,48)" rx="2" ry="2" />
<text text-anchor="" x="921.89" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="398.5" y="773" width="3.1" height="15.0" fill="rgb(209,154,7)" rx="2" ry="2" />
<text text-anchor="" x="401.49" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (12 samples, 0.53%)</title><rect x="365.2" y="1477" width="6.3" height="15.0" fill="rgb(208,211,4)" rx="2" ry="2" />
<text text-anchor="" x="368.25" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="804.6" y="773" width="4.2" height="15.0" fill="rgb(232,83,12)" rx="2" ry="2" />
<text text-anchor="" x="807.63" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_elvisExpression (6 samples, 0.26%)</title><rect x="375.6" y="1333" width="3.2" height="15.0" fill="rgb(242,23,39)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="398.5" y="1093" width="4.1" height="15.0" fill="rgb(220,212,28)" rx="2" ry="2" />
<text text-anchor="" x="401.49" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnaryExpression (16 samples, 0.70%)</title><rect x="388.6" y="1589" width="8.3" height="15.0" fill="rgb(230,206,3)" rx="2" ry="2" />
<text text-anchor="" x="391.62" y="1599.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (25 samples, 1.10%)</title><rect x="884.6" y="1125" width="13.0" height="15.0" fill="rgb(231,18,42)" rx="2" ry="2" />
<text text-anchor="" x="887.61" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="177.2" y="645" width="3.7" height="15.0" fill="rgb(225,141,54)" rx="2" ry="2" />
<text text-anchor="" x="180.24" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_block (9 samples, 0.40%)</title><rect x="728.8" y="949" width="4.7" height="15.0" fill="rgb(243,91,2)" rx="2" ry="2" />
<text text-anchor="" x="731.80" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___libc_free (282 samples, 12.41%)</title><rect x="572.0" y="1461" width="146.4" height="15.0" fill="rgb(227,15,11)" rx="2" ry="2" />
<text text-anchor="" x="574.95" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__GI___libc_free</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_lambdaLiteral (41 samples, 1.80%)</title><rect x="755.3" y="821" width="21.3" height="15.0" fill="rgb(245,216,27)" rx="2" ry="2" />
<text text-anchor="" x="758.29" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >p..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnaryExpression (8 samples, 0.35%)</title><rect x="329.9" y="1493" width="4.2" height="15.0" fill="rgb(244,104,3)" rx="2" ry="2" />
<text text-anchor="" x="332.93" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_filePart (12 samples, 0.53%)</title><rect x="519.5" y="1637" width="6.2" height="15.0" fill="rgb(233,158,21)" rx="2" ry="2" />
<text text-anchor="" x="522.50" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (11 samples, 0.48%)</title><rect x="251.5" y="1669" width="5.7" height="15.0" fill="rgb(243,229,20)" rx="2" ry="2" />
<text text-anchor="" x="254.51" y="1679.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_block (13 samples, 0.57%)</title><rect x="176.2" y="1109" width="6.7" height="15.0" fill="rgb(220,6,41)" rx="2" ry="2" />
<text text-anchor="" x="179.20" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_additiveExpression (7 samples, 0.31%)</title><rect x="499.8" y="1669" width="3.6" height="15.0" fill="rgb(245,104,48)" rx="2" ry="2" />
<text text-anchor="" x="502.76" y="1679.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="350.2" y="965" width="3.1" height="15.0" fill="rgb(229,168,20)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_equality (10 samples, 0.44%)</title><rect x="274.9" y="1653" width="5.2" height="15.0" fill="rgb(218,19,28)" rx="2" ry="2" />
<text text-anchor="" x="277.88" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_valueArgument (6 samples, 0.26%)</title><rect x="350.2" y="949" width="3.1" height="15.0" fill="rgb(247,64,36)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (12 samples, 0.53%)</title><rect x="1159.4" y="357" width="6.2" height="15.0" fill="rgb(224,25,8)" rx="2" ry="2" />
<text text-anchor="" x="1162.36" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_block (13 samples, 0.57%)</title><rect x="314.3" y="1653" width="6.8" height="15.0" fill="rgb(213,163,9)" rx="2" ry="2" />
<text text-anchor="" x="317.35" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_lambdaLiteral (8 samples, 0.35%)</title><rect x="216.7" y="1365" width="4.2" height="15.0" fill="rgb(205,181,44)" rx="2" ry="2" />
<text text-anchor="" x="219.71" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (16 samples, 0.70%)</title><rect x="1169.2" y="1445" width="8.3" height="15.0" fill="rgb(248,165,36)" rx="2" ry="2" />
<text text-anchor="" x="1172.23" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (56 samples, 2.46%)</title><rect x="1136.5" y="1429" width="29.1" height="15.0" fill="rgb(243,93,53)" rx="2" ry="2" />
<text text-anchor="" x="1139.51" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pc..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_elvisExpression (6 samples, 0.26%)</title><rect x="440.6" y="1541" width="3.1" height="15.0" fill="rgb(232,52,15)" rx="2" ry="2" />
<text text-anchor="" x="443.55" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_postfixUnaryExpression (8 samples, 0.35%)</title><rect x="353.3" y="1653" width="4.2" height="15.0" fill="rgb(242,173,14)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_functionValueParameter (21 samples, 0.92%)</title><rect x="868.0" y="1109" width="10.9" height="15.0" fill="rgb(253,68,8)" rx="2" ry="2" />
<text text-anchor="" x="870.99" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_rangeExpression (7 samples, 0.31%)</title><rect x="499.8" y="1701" width="3.6" height="15.0" fill="rgb(244,170,43)" rx="2" ry="2" />
<text text-anchor="" x="502.76" y="1711.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (34 samples, 1.50%)</title><rect x="849.3" y="965" width="17.7" height="15.0" fill="rgb(232,13,28)" rx="2" ry="2" />
<text text-anchor="" x="852.30" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="375.6" y="485" width="3.2" height="15.0" fill="rgb(215,188,16)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="804.6" y="517" width="4.2" height="15.0" fill="rgb(243,91,43)" rx="2" ry="2" />
<text text-anchor="" x="807.63" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="454.6" y="1269" width="3.1" height="15.0" fill="rgb(227,224,41)" rx="2" ry="2" />
<text text-anchor="" x="457.58" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="772.9" y="677" width="3.2" height="15.0" fill="rgb(231,35,10)" rx="2" ry="2" />
<text text-anchor="" x="775.95" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (10 samples, 0.44%)</title><rect x="264.0" y="1669" width="5.2" height="15.0" fill="rgb(245,3,12)" rx="2" ry="2" />
<text text-anchor="" x="266.97" y="1679.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_identifier (36 samples, 1.58%)</title><rect x="966.7" y="1365" width="18.7" height="15.0" fill="rgb(215,168,31)" rx="2" ry="2" />
<text text-anchor="" x="969.67" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="986.4" y="1381" width="3.6" height="15.0" fill="rgb(249,229,49)" rx="2" ry="2" />
<text text-anchor="" x="989.41" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_declaration (13 samples, 0.57%)</title><rect x="257.2" y="1653" width="6.8" height="15.0" fill="rgb(239,30,35)" rx="2" ry="2" />
<text text-anchor="" x="260.22" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="437.4" y="1525" width="3.2" height="15.0" fill="rgb(227,172,35)" rx="2" ry="2" />
<text text-anchor="" x="440.44" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_expression (6 samples, 0.26%)</title><rect x="375.6" y="1557" width="3.2" height="15.0" fill="rgb(214,162,28)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="1567.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="398.5" y="805" width="3.1" height="15.0" fill="rgb(239,200,7)" rx="2" ry="2" />
<text text-anchor="" x="401.49" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="207.4" y="1333" width="3.1" height="15.0" fill="rgb(219,170,15)" rx="2" ry="2" />
<text text-anchor="" x="210.36" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="418.2" y="1653" width="3.1" height="15.0" fill="rgb(234,187,18)" rx="2" ry="2" />
<text text-anchor="" x="421.22" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnarySuffix (8 samples, 0.35%)</title><rect x="353.3" y="1013" width="4.2" height="15.0" fill="rgb(238,162,38)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="375.6" y="837" width="3.2" height="15.0" fill="rgb(239,45,37)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="804.6" y="805" width="4.2" height="15.0" fill="rgb(245,7,27)" rx="2" ry="2" />
<text text-anchor="" x="807.63" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (34 samples, 1.50%)</title><rect x="816.6" y="837" width="17.6" height="15.0" fill="rgb(214,25,25)" rx="2" ry="2" />
<text text-anchor="" x="819.58" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="309.2" y="1573" width="3.6" height="15.0" fill="rgb(206,107,37)" rx="2" ry="2" />
<text text-anchor="" x="312.15" y="1583.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (20 samples, 0.88%)</title><rect x="780.2" y="389" width="10.4" height="15.0" fill="rgb(227,50,4)" rx="2" ry="2" />
<text text-anchor="" x="783.22" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_simpleIdentifier (29 samples, 1.28%)</title><rect x="969.8" y="1333" width="15.1" height="15.0" fill="rgb(249,142,12)" rx="2" ry="2" />
<text text-anchor="" x="972.79" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_prefixUnaryExpression (8 samples, 0.35%)</title><rect x="353.3" y="1077" width="4.2" height="15.0" fill="rgb(250,224,41)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_classMemberDeclarations (34 samples, 1.50%)</title><rect x="728.8" y="1109" width="17.7" height="15.0" fill="rgb(236,199,33)" rx="2" ry="2" />
<text text-anchor="" x="731.80" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_functionBody (15 samples, 0.66%)</title><rect x="314.3" y="1685" width="7.8" height="15.0" fill="rgb(245,98,11)" rx="2" ry="2" />
<text text-anchor="" x="317.35" y="1695.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (16 samples, 0.70%)</title><rect x="756.3" y="549" width="8.3" height="15.0" fill="rgb(213,98,39)" rx="2" ry="2" />
<text text-anchor="" x="759.33" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="375.6" y="1381" width="3.2" height="15.0" fill="rgb(220,204,6)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_rangeExpression (8 samples, 0.35%)</title><rect x="247.4" y="1205" width="4.1" height="15.0" fill="rgb(228,197,24)" rx="2" ry="2" />
<text text-anchor="" x="250.35" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (18 samples, 0.79%)</title><rect x="176.2" y="1445" width="9.3" height="15.0" fill="rgb(213,201,48)" rx="2" ry="2" />
<text text-anchor="" x="179.20" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (9 samples, 0.40%)</title><rect x="176.2" y="933" width="4.7" height="15.0" fill="rgb(226,8,35)" rx="2" ry="2" />
<text text-anchor="" x="179.20" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_infixFunctionCall (6 samples, 0.26%)</title><rect x="375.6" y="693" width="3.2" height="15.0" fill="rgb(243,67,25)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_multiplicativeExpression (8 samples, 0.35%)</title><rect x="353.3" y="1141" width="4.2" height="15.0" fill="rgb(220,209,53)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (9 samples, 0.40%)</title><rect x="280.1" y="1573" width="4.6" height="15.0" fill="rgb(234,85,31)" rx="2" ry="2" />
<text text-anchor="" x="283.07" y="1583.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_infixFunctionCall (6 samples, 0.26%)</title><rect x="898.6" y="853" width="3.2" height="15.0" fill="rgb(213,38,52)" rx="2" ry="2" />
<text text-anchor="" x="901.64" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="353.3" y="1253" width="4.2" height="15.0" fill="rgb(208,18,16)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="329.9" y="1637" width="4.2" height="15.0" fill="rgb(235,195,46)" rx="2" ry="2" />
<text text-anchor="" x="332.93" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="499.8" y="1557" width="3.6" height="15.0" fill="rgb(220,5,17)" rx="2" ry="2" />
<text text-anchor="" x="502.76" y="1567.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>createTagsForFile (8 samples, 0.35%)</title><rect x="189.2" y="1589" width="4.1" height="15.0" fill="rgb(238,156,23)" rx="2" ry="2" />
<text text-anchor="" x="192.18" y="1599.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="898.6" y="805" width="3.2" height="15.0" fill="rgb(227,78,53)" rx="2" ry="2" />
<text text-anchor="" x="901.64" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_callSuffix (95 samples, 4.18%)</title><rect x="749.1" y="885" width="49.3" height="15.0" fill="rgb(253,6,2)" rx="2" ry="2" />
<text text-anchor="" x="752.06" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pcc_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_elvisExpression (6 samples, 0.26%)</title><rect x="247.4" y="661" width="3.1" height="15.0" fill="rgb(252,41,12)" rx="2" ry="2" />
<text text-anchor="" x="250.35" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_valueArgument (6 samples, 0.26%)</title><rect x="350.2" y="1557" width="3.1" height="15.0" fill="rgb(237,40,6)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="1567.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="243.7" y="1445" width="3.7" height="15.0" fill="rgb(247,53,22)" rx="2" ry="2" />
<text text-anchor="" x="246.71" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="247.4" y="453" width="3.1" height="15.0" fill="rgb(224,151,12)" rx="2" ry="2" />
<text text-anchor="" x="250.35" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_prefixUnaryExpression (6 samples, 0.26%)</title><rect x="437.4" y="1413" width="3.2" height="15.0" fill="rgb(232,47,33)" rx="2" ry="2" />
<text text-anchor="" x="440.44" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_classMemberDeclaration (6 samples, 0.26%)</title><rect x="959.9" y="1237" width="3.1" height="15.0" fill="rgb(238,186,32)" rx="2" ry="2" />
<text text-anchor="" x="962.92" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (10 samples, 0.44%)</title><rect x="274.9" y="1541" width="5.2" height="15.0" fill="rgb(220,110,9)" rx="2" ry="2" />
<text text-anchor="" x="277.88" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_expression (7 samples, 0.31%)</title><rect x="177.2" y="789" width="3.7" height="15.0" fill="rgb(211,154,46)" rx="2" ry="2" />
<text text-anchor="" x="180.24" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_label (10 samples, 0.44%)</title><rect x="750.1" y="821" width="5.2" height="15.0" fill="rgb(220,136,47)" rx="2" ry="2" />
<text text-anchor="" x="753.10" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_expression (8 samples, 0.35%)</title><rect x="804.6" y="853" width="4.2" height="15.0" fill="rgb(209,17,5)" rx="2" ry="2" />
<text text-anchor="" x="807.63" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_statement (6 samples, 0.26%)</title><rect x="519.5" y="1253" width="3.1" height="15.0" fill="rgb(248,90,50)" rx="2" ry="2" />
<text text-anchor="" x="522.50" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_infixFunctionCall (6 samples, 0.26%)</title><rect x="437.4" y="1573" width="3.2" height="15.0" fill="rgb(234,29,24)" rx="2" ry="2" />
<text text-anchor="" x="440.44" y="1583.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnaryExpression (7 samples, 0.31%)</title><rect x="804.6" y="405" width="3.7" height="15.0" fill="rgb(205,35,53)" rx="2" ry="2" />
<text text-anchor="" x="807.63" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_asExpression (24 samples, 1.06%)</title><rect x="884.6" y="757" width="12.5" height="15.0" fill="rgb(215,105,45)" rx="2" ry="2" />
<text text-anchor="" x="887.61" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>createTagsForEntry (1,252 samples, 55.11%)</title><rect x="530.9" y="1621" width="650.3" height="15.0" fill="rgb(248,52,47)" rx="2" ry="2" />
<text text-anchor="" x="533.92" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >createTagsForEntry</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_label (7 samples, 0.31%)</title><rect x="843.1" y="1013" width="3.6" height="15.0" fill="rgb(232,20,1)" rx="2" ry="2" />
<text text-anchor="" x="846.06" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_classDeclaration (38 samples, 1.67%)</title><rect x="727.8" y="1173" width="19.7" height="15.0" fill="rgb(225,140,36)" rx="2" ry="2" />
<text text-anchor="" x="730.76" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="361.6" y="1637" width="3.6" height="15.0" fill="rgb(224,34,13)" rx="2" ry="2" />
<text text-anchor="" x="364.61" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="499.8" y="1653" width="3.6" height="15.0" fill="rgb(251,24,47)" rx="2" ry="2" />
<text text-anchor="" x="502.76" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_infixOperation (10 samples, 0.44%)</title><rect x="274.9" y="1557" width="5.2" height="15.0" fill="rgb(227,208,22)" rx="2" ry="2" />
<text text-anchor="" x="277.88" y="1567.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_statement (8 samples, 0.35%)</title><rect x="378.8" y="1461" width="4.1" height="15.0" fill="rgb(216,161,45)" rx="2" ry="2" />
<text text-anchor="" x="381.75" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_infixOperation (6 samples, 0.26%)</title><rect x="334.1" y="1685" width="3.1" height="15.0" fill="rgb(221,212,8)" rx="2" ry="2" />
<text text-anchor="" x="337.08" y="1695.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="350.2" y="453" width="3.1" height="15.0" fill="rgb(228,178,28)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="189.2" y="1461" width="4.1" height="15.0" fill="rgb(233,21,5)" rx="2" ry="2" />
<text text-anchor="" x="192.18" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_statements (7 samples, 0.31%)</title><rect x="378.8" y="1205" width="3.6" height="15.0" fill="rgb(229,162,23)" rx="2" ry="2" />
<text text-anchor="" x="381.75" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_prefixUnaryExpression (7 samples, 0.31%)</title><rect x="499.8" y="1573" width="3.6" height="15.0" fill="rgb(214,151,40)" rx="2" ry="2" />
<text text-anchor="" x="502.76" y="1583.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="353.3" y="485" width="4.2" height="15.0" fill="rgb(239,13,13)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_propertyDeclaration (6 samples, 0.26%)</title><rect x="741.3" y="1013" width="3.1" height="15.0" fill="rgb(243,188,46)" rx="2" ry="2" />
<text text-anchor="" x="744.27" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (17 samples, 0.75%)</title><rect x="176.2" y="1125" width="8.8" height="15.0" fill="rgb(219,49,40)" rx="2" ry="2" />
<text text-anchor="" x="179.20" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_type (8 samples, 0.35%)</title><rect x="872.7" y="1045" width="4.1" height="15.0" fill="rgb(237,123,29)" rx="2" ry="2" />
<text text-anchor="" x="875.67" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="247.4" y="1285" width="4.1" height="15.0" fill="rgb(221,66,19)" rx="2" ry="2" />
<text text-anchor="" x="250.35" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (32 samples, 1.41%)</title><rect x="817.1" y="741" width="16.6" height="15.0" fill="rgb(247,157,20)" rx="2" ry="2" />
<text text-anchor="" x="820.10" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_classMemberDeclarations (7 samples, 0.31%)</title><rect x="309.2" y="1525" width="3.6" height="15.0" fill="rgb(239,153,54)" rx="2" ry="2" />
<text text-anchor="" x="312.15" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (24 samples, 1.06%)</title><rect x="884.6" y="773" width="12.5" height="15.0" fill="rgb(239,116,8)" rx="2" ry="2" />
<text text-anchor="" x="887.61" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="460.3" y="1621" width="3.1" height="15.0" fill="rgb(227,147,52)" rx="2" ry="2" />
<text text-anchor="" x="463.29" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="216.7" y="933" width="3.1" height="15.0" fill="rgb(228,199,54)" rx="2" ry="2" />
<text text-anchor="" x="219.71" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="284.7" y="1637" width="3.7" height="15.0" fill="rgb(217,176,17)" rx="2" ry="2" />
<text text-anchor="" x="287.74" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_genericCallLikeComparison (6 samples, 0.26%)</title><rect x="375.6" y="789" width="3.2" height="15.0" fill="rgb(206,0,44)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="353.3" y="773" width="4.2" height="15.0" fill="rgb(248,195,47)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_statements (8 samples, 0.35%)</title><rect x="398.5" y="1109" width="4.1" height="15.0" fill="rgb(233,110,36)" rx="2" ry="2" />
<text text-anchor="" x="401.49" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_statements (194 samples, 8.54%)</title><rect x="747.5" y="1077" width="100.8" height="15.0" fill="rgb(224,178,9)" rx="2" ry="2" />
<text text-anchor="" x="750.50" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pcc_evaluate..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="432.8" y="1557" width="3.1" height="15.0" fill="rgb(226,76,45)" rx="2" ry="2" />
<text text-anchor="" x="435.76" y="1567.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="898.6" y="837" width="3.2" height="15.0" fill="rgb(254,206,53)" rx="2" ry="2" />
<text text-anchor="" x="901.64" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (10 samples, 0.44%)</title><rect x="269.7" y="1605" width="5.2" height="15.0" fill="rgb(225,219,32)" rx="2" ry="2" />
<text text-anchor="" x="272.68" y="1615.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (13 samples, 0.57%)</title><rect x="1158.8" y="389" width="6.8" height="15.0" fill="rgb(214,110,44)" rx="2" ry="2" />
<text text-anchor="" x="1161.84" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="243.7" y="1477" width="3.7" height="15.0" fill="rgb(219,173,26)" rx="2" ry="2" />
<text text-anchor="" x="246.71" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="969.8" y="1285" width="4.1" height="15.0" fill="rgb(217,57,51)" rx="2" ry="2" />
<text text-anchor="" x="972.79" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="503.4" y="1525" width="3.1" height="15.0" fill="rgb(226,35,14)" rx="2" ry="2" />
<text text-anchor="" x="506.40" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="353.3" y="1349" width="4.2" height="15.0" fill="rgb(222,9,34)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (11 samples, 0.48%)</title><rect x="251.5" y="1637" width="5.7" height="15.0" fill="rgb(238,157,36)" rx="2" ry="2" />
<text text-anchor="" x="254.51" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_functionValueParameters (23 samples, 1.01%)</title><rect x="867.0" y="1141" width="11.9" height="15.0" fill="rgb(231,163,18)" rx="2" ry="2" />
<text text-anchor="" x="869.95" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnarySuffix (6 samples, 0.26%)</title><rect x="928.8" y="1077" width="3.1" height="15.0" fill="rgb(217,187,16)" rx="2" ry="2" />
<text text-anchor="" x="931.76" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="329.9" y="1477" width="4.2" height="15.0" fill="rgb(212,25,16)" rx="2" ry="2" />
<text text-anchor="" x="332.93" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_packageHeader (8 samples, 0.35%)</title><rect x="985.9" y="1429" width="4.1" height="15.0" fill="rgb(225,11,52)" rx="2" ry="2" />
<text text-anchor="" x="988.89" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="483.7" y="1333" width="3.1" height="15.0" fill="rgb(209,53,37)" rx="2" ry="2" />
<text text-anchor="" x="486.66" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="398.5" y="837" width="3.1" height="15.0" fill="rgb(230,140,43)" rx="2" ry="2" />
<text text-anchor="" x="401.49" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_genericCallLikeComparison (8 samples, 0.35%)</title><rect x="353.3" y="1333" width="4.2" height="15.0" fill="rgb(217,194,39)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_classBody (362 samples, 15.93%)</title><rect x="724.6" y="1301" width="188.1" height="15.0" fill="rgb(232,186,41)" rx="2" ry="2" />
<text text-anchor="" x="727.65" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pcc_evaluate_rule_classB..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_declaration (6 samples, 0.26%)</title><rect x="460.3" y="1637" width="3.1" height="15.0" fill="rgb(215,121,53)" rx="2" ry="2" />
<text text-anchor="" x="463.29" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="375.6" y="805" width="3.2" height="15.0" fill="rgb(243,75,9)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="804.6" y="837" width="4.2" height="15.0" fill="rgb(249,19,9)" rx="2" ry="2" />
<text text-anchor="" x="807.63" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (10 samples, 0.44%)</title><rect x="269.7" y="1413" width="5.2" height="15.0" fill="rgb(219,46,41)" rx="2" ry="2" />
<text text-anchor="" x="272.68" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="350.2" y="1573" width="3.1" height="15.0" fill="rgb(234,211,32)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="1583.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (12 samples, 0.53%)</title><rect x="519.5" y="1685" width="6.2" height="15.0" fill="rgb(240,42,40)" rx="2" ry="2" />
<text text-anchor="" x="522.50" y="1695.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="177.2" y="293" width="3.2" height="15.0" fill="rgb(240,35,6)" rx="2" ry="2" />
<text text-anchor="" x="180.24" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>eMalloc (63 samples, 2.77%)</title><rect x="532.0" y="1493" width="32.7" height="15.0" fill="rgb(250,179,48)" rx="2" ry="2" />
<text text-anchor="" x="534.96" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >eM..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (25 samples, 1.10%)</title><rect x="884.6" y="933" width="13.0" height="15.0" fill="rgb(252,181,53)" rx="2" ry="2" />
<text text-anchor="" x="887.61" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnaryExpression (8 samples, 0.35%)</title><rect x="247.4" y="1045" width="4.1" height="15.0" fill="rgb(222,8,20)" rx="2" ry="2" />
<text text-anchor="" x="250.35" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnarySuffix (6 samples, 0.26%)</title><rect x="225.5" y="1589" width="3.2" height="15.0" fill="rgb(213,192,0)" rx="2" ry="2" />
<text text-anchor="" x="228.54" y="1599.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (18 samples, 0.79%)</title><rect x="176.2" y="1477" width="9.3" height="15.0" fill="rgb(246,84,38)" rx="2" ry="2" />
<text text-anchor="" x="179.20" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_classBody (11 samples, 0.48%)</title><rect x="251.5" y="1653" width="5.7" height="15.0" fill="rgb(253,163,5)" rx="2" ry="2" />
<text text-anchor="" x="254.51" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (10 samples, 0.44%)</title><rect x="264.0" y="1637" width="5.2" height="15.0" fill="rgb(212,140,5)" rx="2" ry="2" />
<text text-anchor="" x="266.97" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_rangeExpression (6 samples, 0.26%)</title><rect x="375.6" y="661" width="3.2" height="15.0" fill="rgb(238,43,1)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_prefixUnaryExpression (23 samples, 1.01%)</title><rect x="885.1" y="725" width="12.0" height="15.0" fill="rgb(210,66,25)" rx="2" ry="2" />
<text text-anchor="" x="888.13" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="959.9" y="1253" width="3.1" height="15.0" fill="rgb(242,24,20)" rx="2" ry="2" />
<text text-anchor="" x="962.92" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_classMemberDeclarations (10 samples, 0.44%)</title><rect x="264.0" y="1685" width="5.2" height="15.0" fill="rgb(220,139,23)" rx="2" ry="2" />
<text text-anchor="" x="266.97" y="1695.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_label (6 samples, 0.26%)</title><rect x="772.9" y="725" width="3.2" height="15.0" fill="rgb(243,75,31)" rx="2" ry="2" />
<text text-anchor="" x="775.95" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_classMemberDeclarations (11 samples, 0.48%)</title><rect x="251.5" y="1621" width="5.7" height="15.0" fill="rgb(251,158,34)" rx="2" ry="2" />
<text text-anchor="" x="254.51" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="353.3" y="517" width="4.2" height="15.0" fill="rgb(227,148,35)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (17 samples, 0.75%)</title><rect x="176.2" y="1157" width="8.8" height="15.0" fill="rgb(210,124,39)" rx="2" ry="2" />
<text text-anchor="" x="179.20" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="274.9" y="1253" width="3.1" height="15.0" fill="rgb(237,19,46)" rx="2" ry="2" />
<text text-anchor="" x="277.88" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="247.4" y="1317" width="4.1" height="15.0" fill="rgb(213,71,25)" rx="2" ry="2" />
<text text-anchor="" x="250.35" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_directlyAssignableExpression (9 samples, 0.40%)</title><rect x="225.5" y="1653" width="4.7" height="15.0" fill="rgb(217,143,19)" rx="2" ry="2" />
<text text-anchor="" x="228.54" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_assignment (6 samples, 0.26%)</title><rect x="483.7" y="1381" width="3.1" height="15.0" fill="rgb(230,155,32)" rx="2" ry="2" />
<text text-anchor="" x="486.66" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ctags (2,271 samples, 99.96%)</title><rect x="10.0" y="1733" width="1179.5" height="15.0" fill="rgb(209,46,52)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1743.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ctags</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_callSuffix (10 samples, 0.44%)</title><rect x="388.6" y="1525" width="5.2" height="15.0" fill="rgb(206,55,32)" rx="2" ry="2" />
<text text-anchor="" x="391.62" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_annotatedLambda (6 samples, 0.26%)</title><rect x="216.7" y="821" width="3.1" height="15.0" fill="rgb(239,40,20)" rx="2" ry="2" />
<text text-anchor="" x="219.71" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_prefixUnaryExpression (11 samples, 0.48%)</title><rect x="378.8" y="1685" width="5.7" height="15.0" fill="rgb(241,201,6)" rx="2" ry="2" />
<text text-anchor="" x="381.75" y="1695.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_statement (12 samples, 0.53%)</title><rect x="365.2" y="1493" width="6.3" height="15.0" fill="rgb(211,169,16)" rx="2" ry="2" />
<text text-anchor="" x="368.25" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (23 samples, 1.01%)</title><rect x="728.8" y="997" width="11.9" height="15.0" fill="rgb(207,21,2)" rx="2" ry="2" />
<text text-anchor="" x="731.80" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_disjunction (6 samples, 0.26%)</title><rect x="375.6" y="1525" width="3.2" height="15.0" fill="rgb(213,41,16)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_elvisExpression (6 samples, 0.26%)</title><rect x="918.9" y="981" width="3.1" height="15.0" fill="rgb(218,184,14)" rx="2" ry="2" />
<text text-anchor="" x="921.89" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_asExpression (8 samples, 0.35%)</title><rect x="353.3" y="1109" width="4.2" height="15.0" fill="rgb(206,8,37)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_callSuffix (11 samples, 0.48%)</title><rect x="378.8" y="1589" width="5.7" height="15.0" fill="rgb(239,84,54)" rx="2" ry="2" />
<text text-anchor="" x="381.75" y="1599.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_elvisExpression (8 samples, 0.35%)</title><rect x="353.3" y="1269" width="4.2" height="15.0" fill="rgb(242,109,5)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="378.8" y="1413" width="4.1" height="15.0" fill="rgb(210,78,50)" rx="2" ry="2" />
<text text-anchor="" x="381.75" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_prefixUnaryExpression (6 samples, 0.26%)</title><rect x="375.6" y="533" width="3.2" height="15.0" fill="rgb(219,157,54)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (9 samples, 0.40%)</title><rect x="202.7" y="1445" width="4.7" height="15.0" fill="rgb(228,130,30)" rx="2" ry="2" />
<text text-anchor="" x="205.68" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_disjunction (25 samples, 1.10%)</title><rect x="884.6" y="1109" width="13.0" height="15.0" fill="rgb(252,174,14)" rx="2" ry="2" />
<text text-anchor="" x="887.61" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_rangeExpression (33 samples, 1.45%)</title><rect x="849.8" y="821" width="17.2" height="15.0" fill="rgb(251,1,36)" rx="2" ry="2" />
<text text-anchor="" x="852.82" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (12 samples, 0.53%)</title><rect x="519.5" y="1653" width="6.2" height="15.0" fill="rgb(242,145,11)" rx="2" ry="2" />
<text text-anchor="" x="522.50" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="365.2" y="1413" width="3.2" height="15.0" fill="rgb(249,52,37)" rx="2" ry="2" />
<text text-anchor="" x="368.25" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_genericCallLikeComparison (20 samples, 0.88%)</title><rect x="941.7" y="1109" width="10.4" height="15.0" fill="rgb(213,167,37)" rx="2" ry="2" />
<text text-anchor="" x="944.74" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_asExpression (6 samples, 0.26%)</title><rect x="247.4" y="501" width="3.1" height="15.0" fill="rgb(212,150,18)" rx="2" ry="2" />
<text text-anchor="" x="250.35" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_directlyAssignableExpression (6 samples, 0.26%)</title><rect x="365.2" y="1429" width="3.2" height="15.0" fill="rgb(247,108,12)" rx="2" ry="2" />
<text text-anchor="" x="368.25" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>createTagsForFile (18 samples, 0.79%)</title><rect x="176.2" y="1541" width="9.3" height="15.0" fill="rgb(243,26,52)" rx="2" ry="2" />
<text text-anchor="" x="179.20" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (28 samples, 1.23%)</title><rect x="779.7" y="709" width="14.5" height="15.0" fill="rgb(246,98,3)" rx="2" ry="2" />
<text text-anchor="" x="782.70" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="300.8" y="1573" width="4.2" height="15.0" fill="rgb(217,192,49)" rx="2" ry="2" />
<text text-anchor="" x="303.85" y="1583.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (24 samples, 1.06%)</title><rect x="779.7" y="517" width="12.5" height="15.0" fill="rgb(229,46,27)" rx="2" ry="2" />
<text text-anchor="" x="782.70" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unlink_chunk.constprop.0 (8 samples, 0.35%)</title><rect x="1183.2" y="1701" width="4.2" height="15.0" fill="rgb(209,90,20)" rx="2" ry="2" />
<text text-anchor="" x="1186.25" y="1711.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_prefixUnaryExpression (8 samples, 0.35%)</title><rect x="212.0" y="1589" width="4.2" height="15.0" fill="rgb(215,120,48)" rx="2" ry="2" />
<text text-anchor="" x="215.03" y="1599.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___libc_free (9 samples, 0.40%)</title><rect x="564.7" y="1461" width="4.7" height="15.0" fill="rgb(234,156,49)" rx="2" ry="2" />
<text text-anchor="" x="567.68" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (27 samples, 1.19%)</title><rect x="849.8" y="645" width="14.0" height="15.0" fill="rgb(217,84,47)" rx="2" ry="2" />
<text text-anchor="" x="852.82" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_statements (6 samples, 0.26%)</title><rect x="252.0" y="1429" width="3.1" height="15.0" fill="rgb(232,11,7)" rx="2" ry="2" />
<text text-anchor="" x="255.02" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_asExpression (6 samples, 0.26%)</title><rect x="350.2" y="533" width="3.1" height="15.0" fill="rgb(206,35,39)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pkotlin_parse (18 samples, 0.79%)</title><rect x="176.2" y="1509" width="9.3" height="15.0" fill="rgb(248,1,6)" rx="2" ry="2" />
<text text-anchor="" x="179.20" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_callSuffix (8 samples, 0.35%)</title><rect x="353.3" y="1589" width="4.2" height="15.0" fill="rgb(232,192,1)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="1599.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnaryExpression (10 samples, 0.44%)</title><rect x="269.7" y="1365" width="5.2" height="15.0" fill="rgb(209,227,43)" rx="2" ry="2" />
<text text-anchor="" x="272.68" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="353.3" y="1093" width="4.2" height="15.0" fill="rgb(226,54,20)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_classMemberDeclaration (15 samples, 0.66%)</title><rect x="243.7" y="1621" width="7.8" height="15.0" fill="rgb(238,62,27)" rx="2" ry="2" />
<text text-anchor="" x="246.71" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="334.1" y="1509" width="3.1" height="15.0" fill="rgb(237,20,17)" rx="2" ry="2" />
<text text-anchor="" x="337.08" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_lambdaLiteral (6 samples, 0.26%)</title><rect x="454.6" y="1221" width="3.1" height="15.0" fill="rgb(254,146,19)" rx="2" ry="2" />
<text text-anchor="" x="457.58" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (11 samples, 0.48%)</title><rect x="1159.9" y="341" width="5.7" height="15.0" fill="rgb(247,23,17)" rx="2" ry="2" />
<text text-anchor="" x="1162.88" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (10 samples, 0.44%)</title><rect x="269.7" y="1669" width="5.2" height="15.0" fill="rgb(235,28,52)" rx="2" ry="2" />
<text text-anchor="" x="272.68" y="1679.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="252.0" y="1285" width="3.1" height="15.0" fill="rgb(215,78,51)" rx="2" ry="2" />
<text text-anchor="" x="255.02" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_expression (25 samples, 1.10%)</title><rect x="884.6" y="1141" width="13.0" height="15.0" fill="rgb(230,180,53)" rx="2" ry="2" />
<text text-anchor="" x="887.61" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (11 samples, 0.48%)</title><rect x="1159.9" y="325" width="5.7" height="15.0" fill="rgb(252,68,0)" rx="2" ry="2" />
<text text-anchor="" x="1162.88" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="432.8" y="1589" width="3.1" height="15.0" fill="rgb(213,163,0)" rx="2" ry="2" />
<text text-anchor="" x="435.76" y="1599.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (10 samples, 0.44%)</title><rect x="274.9" y="1317" width="5.2" height="15.0" fill="rgb(208,95,23)" rx="2" ry="2" />
<text text-anchor="" x="277.88" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_lambdaLiteral (6 samples, 0.26%)</title><rect x="888.8" y="565" width="3.1" height="15.0" fill="rgb(207,139,6)" rx="2" ry="2" />
<text text-anchor="" x="891.77" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_comparison (6 samples, 0.26%)</title><rect x="898.6" y="981" width="3.2" height="15.0" fill="rgb(235,129,50)" rx="2" ry="2" />
<text text-anchor="" x="901.64" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_classParameter (19 samples, 0.84%)</title><rect x="917.3" y="1237" width="9.9" height="15.0" fill="rgb(245,76,42)" rx="2" ry="2" />
<text text-anchor="" x="920.33" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (11 samples, 0.48%)</title><rect x="1159.9" y="277" width="5.7" height="15.0" fill="rgb(206,25,41)" rx="2" ry="2" />
<text text-anchor="" x="1162.88" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (15 samples, 0.66%)</title><rect x="1157.8" y="469" width="7.8" height="15.0" fill="rgb(238,223,42)" rx="2" ry="2" />
<text text-anchor="" x="1160.80" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (9 samples, 0.40%)</title><rect x="728.8" y="901" width="4.7" height="15.0" fill="rgb(250,150,41)" rx="2" ry="2" />
<text text-anchor="" x="731.80" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_equality (6 samples, 0.26%)</title><rect x="350.2" y="1429" width="3.1" height="15.0" fill="rgb(248,20,41)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="225.5" y="1509" width="3.2" height="15.0" fill="rgb(215,50,10)" rx="2" ry="2" />
<text text-anchor="" x="228.54" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_expression (34 samples, 1.50%)</title><rect x="849.3" y="1109" width="17.7" height="15.0" fill="rgb(209,69,32)" rx="2" ry="2" />
<text text-anchor="" x="852.30" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_infixFunctionCall (33 samples, 1.45%)</title><rect x="849.8" y="853" width="17.2" height="15.0" fill="rgb(229,111,21)" rx="2" ry="2" />
<text text-anchor="" x="852.82" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_statements (8 samples, 0.35%)</title><rect x="378.8" y="1493" width="4.1" height="15.0" fill="rgb(213,119,7)" rx="2" ry="2" />
<text text-anchor="" x="381.75" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_lr_answer__destroy (172 samples, 7.57%)</title><rect x="1020.7" y="1365" width="89.3" height="15.0" fill="rgb(218,75,21)" rx="2" ry="2" />
<text text-anchor="" x="1023.69" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pcc_lr_ans..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_additiveExpression (6 samples, 0.26%)</title><rect x="437.4" y="1509" width="3.2" height="15.0" fill="rgb(251,182,19)" rx="2" ry="2" />
<text text-anchor="" x="440.44" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="483.7" y="1301" width="3.1" height="15.0" fill="rgb(208,214,28)" rx="2" ry="2" />
<text text-anchor="" x="486.66" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_infixFunctionCall (20 samples, 0.88%)</title><rect x="941.7" y="1013" width="10.4" height="15.0" fill="rgb(250,91,17)" rx="2" ry="2" />
<text text-anchor="" x="944.74" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_asExpression (10 samples, 0.44%)</title><rect x="269.7" y="1429" width="5.2" height="15.0" fill="rgb(227,186,8)" rx="2" ry="2" />
<text text-anchor="" x="272.68" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="375.6" y="1477" width="3.2" height="15.0" fill="rgb(218,68,38)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_classBody (7 samples, 0.31%)</title><rect x="193.9" y="1445" width="3.6" height="15.0" fill="rgb(222,88,24)" rx="2" ry="2" />
<text text-anchor="" x="196.86" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_malloc (63 samples, 2.77%)</title><rect x="532.0" y="1461" width="32.7" height="15.0" fill="rgb(218,8,4)" rx="2" ry="2" />
<text text-anchor="" x="534.96" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_i..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_start (1,263 samples, 55.59%)</title><rect x="526.2" y="1717" width="656.0" height="15.0" fill="rgb(243,44,3)" rx="2" ry="2" />
<text text-anchor="" x="529.25" y="1727.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_start</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnaryExpression (23 samples, 1.01%)</title><rect x="818.7" y="501" width="11.9" height="15.0" fill="rgb(238,98,24)" rx="2" ry="2" />
<text text-anchor="" x="821.65" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (47 samples, 2.07%)</title><rect x="1141.2" y="1317" width="24.4" height="15.0" fill="rgb(208,183,40)" rx="2" ry="2" />
<text text-anchor="" x="1144.18" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >p..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_multiplicativeExpression (7 samples, 0.31%)</title><rect x="177.2" y="437" width="3.7" height="15.0" fill="rgb(236,162,1)" rx="2" ry="2" />
<text text-anchor="" x="180.24" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="193.9" y="1525" width="3.6" height="15.0" fill="rgb(211,205,53)" rx="2" ry="2" />
<text text-anchor="" x="196.86" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_classDeclaration (10 samples, 0.44%)</title><rect x="519.5" y="1541" width="5.2" height="15.0" fill="rgb(222,91,42)" rx="2" ry="2" />
<text text-anchor="" x="522.50" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_annotatedLambda (6 samples, 0.26%)</title><rect x="329.9" y="1397" width="3.1" height="15.0" fill="rgb(249,162,49)" rx="2" ry="2" />
<text text-anchor="" x="332.93" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_statement (6 samples, 0.26%)</title><rect x="274.9" y="1109" width="3.1" height="15.0" fill="rgb(217,226,4)" rx="2" ry="2" />
<text text-anchor="" x="277.88" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnaryExpression (8 samples, 0.35%)</title><rect x="212.0" y="1557" width="4.2" height="15.0" fill="rgb(240,148,25)" rx="2" ry="2" />
<text text-anchor="" x="215.03" y="1567.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_annotatedLambda (53 samples, 2.33%)</title><rect x="749.1" y="853" width="27.5" height="15.0" fill="rgb(205,116,31)" rx="2" ry="2" />
<text text-anchor="" x="752.06" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >p..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="499.8" y="1589" width="3.6" height="15.0" fill="rgb(229,154,36)" rx="2" ry="2" />
<text text-anchor="" x="502.76" y="1599.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>getPatternLanguage (64 samples, 2.82%)</title><rect x="531.4" y="1557" width="33.3" height="15.0" fill="rgb(247,119,24)" rx="2" ry="2" />
<text text-anchor="" x="534.44" y="1567.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ge..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_postfixUnaryExpression (6 samples, 0.26%)</title><rect x="225.5" y="1013" width="3.2" height="15.0" fill="rgb(232,189,12)" rx="2" ry="2" />
<text text-anchor="" x="228.54" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (36 samples, 1.58%)</title><rect x="1146.9" y="997" width="18.7" height="15.0" fill="rgb(216,30,29)" rx="2" ry="2" />
<text text-anchor="" x="1149.89" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnaryExpression (9 samples, 0.40%)</title><rect x="289.4" y="1653" width="4.7" height="15.0" fill="rgb(220,24,0)" rx="2" ry="2" />
<text text-anchor="" x="292.42" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (40 samples, 1.76%)</title><rect x="755.8" y="773" width="20.8" height="15.0" fill="rgb(224,147,12)" rx="2" ry="2" />
<text text-anchor="" x="758.81" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_equality (6 samples, 0.26%)</title><rect x="247.4" y="789" width="3.1" height="15.0" fill="rgb(252,45,44)" rx="2" ry="2" />
<text text-anchor="" x="250.35" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>createTagsWithFallback1 (8 samples, 0.35%)</title><rect x="189.2" y="1605" width="4.1" height="15.0" fill="rgb(225,131,15)" rx="2" ry="2" />
<text text-anchor="" x="192.18" y="1615.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (24 samples, 1.06%)</title><rect x="779.7" y="485" width="12.5" height="15.0" fill="rgb(230,75,29)" rx="2" ry="2" />
<text text-anchor="" x="782.70" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_start_main (18 samples, 0.79%)</title><rect x="176.2" y="1701" width="9.3" height="15.0" fill="rgb(220,226,27)" rx="2" ry="2" />
<text text-anchor="" x="179.20" y="1711.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (14 samples, 0.62%)</title><rect x="365.2" y="1605" width="7.3" height="15.0" fill="rgb(242,41,52)" rx="2" ry="2" />
<text text-anchor="" x="368.25" y="1615.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="247.4" y="933" width="3.1" height="15.0" fill="rgb(239,159,48)" rx="2" ry="2" />
<text text-anchor="" x="250.35" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_functionValueParameters (7 samples, 0.31%)</title><rect x="736.1" y="981" width="3.6" height="15.0" fill="rgb(233,141,12)" rx="2" ry="2" />
<text text-anchor="" x="739.07" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="252.0" y="1317" width="3.1" height="15.0" fill="rgb(217,179,52)" rx="2" ry="2" />
<text text-anchor="" x="255.02" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>parseFileWithMio (8 samples, 0.35%)</title><rect x="189.2" y="1653" width="4.1" height="15.0" fill="rgb(224,62,12)" rx="2" ry="2" />
<text text-anchor="" x="192.18" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnaryExpression (7 samples, 0.31%)</title><rect x="508.1" y="1573" width="3.6" height="15.0" fill="rgb(208,124,12)" rx="2" ry="2" />
<text text-anchor="" x="511.07" y="1583.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (196 samples, 8.63%)</title><rect x="747.5" y="1093" width="101.8" height="15.0" fill="rgb(238,223,46)" rx="2" ry="2" />
<text text-anchor="" x="750.50" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pcc_apply_rule</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="305.0" y="1509" width="3.1" height="15.0" fill="rgb(218,168,52)" rx="2" ry="2" />
<text text-anchor="" x="308.00" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="189.2" y="1493" width="4.1" height="15.0" fill="rgb(252,221,35)" rx="2" ry="2" />
<text text-anchor="" x="192.18" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_topLevelObject (466 samples, 20.51%)</title><rect x="723.6" y="1397" width="242.0" height="15.0" fill="rgb(219,41,46)" rx="2" ry="2" />
<text text-anchor="" x="726.61" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pcc_evaluate_rule_topLevelObject</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (15 samples, 0.66%)</title><rect x="243.7" y="1541" width="7.8" height="15.0" fill="rgb(246,147,22)" rx="2" ry="2" />
<text text-anchor="" x="246.71" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="918.9" y="1029" width="3.1" height="15.0" fill="rgb(211,105,6)" rx="2" ry="2" />
<text text-anchor="" x="921.89" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (9 samples, 0.40%)</title><rect x="202.7" y="1477" width="4.7" height="15.0" fill="rgb(210,129,52)" rx="2" ry="2" />
<text text-anchor="" x="205.68" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="418.2" y="1685" width="3.1" height="15.0" fill="rgb(211,184,1)" rx="2" ry="2" />
<text text-anchor="" x="421.22" y="1695.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="177.2" y="453" width="3.7" height="15.0" fill="rgb(230,53,28)" rx="2" ry="2" />
<text text-anchor="" x="180.24" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (18 samples, 0.79%)</title><rect x="756.3" y="613" width="9.4" height="15.0" fill="rgb(228,197,13)" rx="2" ry="2" />
<text text-anchor="" x="759.33" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (7 samples, 0.31%)</title><rect x="1162.0" y="101" width="3.6" height="15.0" fill="rgb(222,23,19)" rx="2" ry="2" />
<text text-anchor="" x="1164.95" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (14 samples, 0.62%)</title><rect x="728.8" y="965" width="7.3" height="15.0" fill="rgb(236,106,44)" rx="2" ry="2" />
<text text-anchor="" x="731.80" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_file (7 samples, 0.31%)</title><rect x="207.4" y="1573" width="3.6" height="15.0" fill="rgb(243,159,42)" rx="2" ry="2" />
<text text-anchor="" x="210.36" y="1583.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_additiveExpression (6 samples, 0.26%)</title><rect x="350.2" y="1205" width="3.1" height="15.0" fill="rgb(219,37,38)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="207.4" y="1301" width="3.1" height="15.0" fill="rgb(230,146,46)" rx="2" ry="2" />
<text text-anchor="" x="210.36" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (15 samples, 0.66%)</title><rect x="243.7" y="1637" width="7.8" height="15.0" fill="rgb(252,212,17)" rx="2" ry="2" />
<text text-anchor="" x="246.71" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (18 samples, 0.79%)</title><rect x="176.2" y="1381" width="9.3" height="15.0" fill="rgb(251,23,14)" rx="2" ry="2" />
<text text-anchor="" x="179.20" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="350.2" y="933" width="3.1" height="15.0" fill="rgb(220,158,40)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_functionDeclaration (9 samples, 0.40%)</title><rect x="264.5" y="1589" width="4.7" height="15.0" fill="rgb(223,227,0)" rx="2" ry="2" />
<text text-anchor="" x="267.49" y="1599.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="274.9" y="1093" width="3.1" height="15.0" fill="rgb(249,158,30)" rx="2" ry="2" />
<text text-anchor="" x="277.88" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="375.6" y="1445" width="3.2" height="15.0" fill="rgb(210,13,31)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_statements (40 samples, 1.76%)</title><rect x="755.8" y="789" width="20.8" height="15.0" fill="rgb(232,46,1)" rx="2" ry="2" />
<text text-anchor="" x="758.81" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_statements (6 samples, 0.26%)</title><rect x="852.9" y="501" width="3.1" height="15.0" fill="rgb(226,227,27)" rx="2" ry="2" />
<text text-anchor="" x="855.93" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_asExpression (7 samples, 0.31%)</title><rect x="177.2" y="405" width="3.7" height="15.0" fill="rgb(243,85,47)" rx="2" ry="2" />
<text text-anchor="" x="180.24" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_callSuffix (6 samples, 0.26%)</title><rect x="216.7" y="853" width="3.1" height="15.0" fill="rgb(250,227,35)" rx="2" ry="2" />
<text text-anchor="" x="219.71" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_assignment (10 samples, 0.44%)</title><rect x="236.4" y="1525" width="5.2" height="15.0" fill="rgb(207,29,15)" rx="2" ry="2" />
<text text-anchor="" x="239.44" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="499.8" y="1685" width="3.6" height="15.0" fill="rgb(225,65,48)" rx="2" ry="2" />
<text text-anchor="" x="502.76" y="1695.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (10 samples, 0.44%)</title><rect x="274.9" y="1285" width="5.2" height="15.0" fill="rgb(227,106,32)" rx="2" ry="2" />
<text text-anchor="" x="277.88" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="353.3" y="1637" width="4.2" height="15.0" fill="rgb(214,25,30)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnaryExpression (8 samples, 0.35%)</title><rect x="414.1" y="1637" width="4.1" height="15.0" fill="rgb(218,176,50)" rx="2" ry="2" />
<text text-anchor="" x="417.07" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_functionBody (6 samples, 0.26%)</title><rect x="432.8" y="1573" width="3.1" height="15.0" fill="rgb(248,103,13)" rx="2" ry="2" />
<text text-anchor="" x="435.76" y="1583.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_rangeExpression (6 samples, 0.26%)</title><rect x="918.9" y="917" width="3.1" height="15.0" fill="rgb(234,137,12)" rx="2" ry="2" />
<text text-anchor="" x="921.89" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (13 samples, 0.57%)</title><rect x="216.2" y="1573" width="6.7" height="15.0" fill="rgb(238,26,4)" rx="2" ry="2" />
<text text-anchor="" x="219.19" y="1583.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_equality (6 samples, 0.26%)</title><rect x="375.6" y="853" width="3.2" height="15.0" fill="rgb(249,126,37)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (34 samples, 1.50%)</title><rect x="849.3" y="933" width="17.7" height="15.0" fill="rgb(234,17,53)" rx="2" ry="2" />
<text text-anchor="" x="852.30" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_assignment (8 samples, 0.35%)</title><rect x="503.4" y="1669" width="4.2" height="15.0" fill="rgb(237,51,3)" rx="2" ry="2" />
<text text-anchor="" x="506.40" y="1679.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="216.7" y="1093" width="3.6" height="15.0" fill="rgb(220,142,44)" rx="2" ry="2" />
<text text-anchor="" x="219.71" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_elvisExpression (6 samples, 0.26%)</title><rect x="375.6" y="725" width="3.2" height="15.0" fill="rgb(250,60,28)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (9 samples, 0.40%)</title><rect x="564.7" y="1445" width="4.7" height="15.0" fill="rgb(223,190,15)" rx="2" ry="2" />
<text text-anchor="" x="567.68" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (15 samples, 0.66%)</title><rect x="1157.8" y="453" width="7.8" height="15.0" fill="rgb(230,206,53)" rx="2" ry="2" />
<text text-anchor="" x="1160.80" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_multiplicativeExpression (19 samples, 0.84%)</title><rect x="941.7" y="917" width="9.9" height="15.0" fill="rgb(229,41,10)" rx="2" ry="2" />
<text text-anchor="" x="944.74" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_classBody (6 samples, 0.26%)</title><rect x="959.9" y="1301" width="3.1" height="15.0" fill="rgb(219,131,39)" rx="2" ry="2" />
<text text-anchor="" x="962.92" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_identifier (7 samples, 0.31%)</title><rect x="986.4" y="1397" width="3.6" height="15.0" fill="rgb(253,217,14)" rx="2" ry="2" />
<text text-anchor="" x="989.41" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnaryExpression (8 samples, 0.35%)</title><rect x="300.8" y="1237" width="4.2" height="15.0" fill="rgb(209,3,18)" rx="2" ry="2" />
<text text-anchor="" x="303.85" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="503.4" y="1557" width="3.1" height="15.0" fill="rgb(222,103,1)" rx="2" ry="2" />
<text text-anchor="" x="506.40" y="1567.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (11 samples, 0.48%)</title><rect x="1159.9" y="245" width="5.7" height="15.0" fill="rgb(254,44,49)" rx="2" ry="2" />
<text text-anchor="" x="1162.88" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_annotatedLambda (8 samples, 0.35%)</title><rect x="216.7" y="1397" width="4.2" height="15.0" fill="rgb(214,53,12)" rx="2" ry="2" />
<text text-anchor="" x="219.71" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="985.9" y="1413" width="4.1" height="15.0" fill="rgb(209,42,51)" rx="2" ry="2" />
<text text-anchor="" x="988.89" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_declaration (6 samples, 0.26%)</title><rect x="318.0" y="1557" width="3.1" height="15.0" fill="rgb(231,121,41)" rx="2" ry="2" />
<text text-anchor="" x="320.98" y="1567.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (362 samples, 15.93%)</title><rect x="724.6" y="1285" width="188.1" height="15.0" fill="rgb(233,95,27)" rx="2" ry="2" />
<text text-anchor="" x="727.65" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pcc_apply_rule</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="918.9" y="1189" width="3.6" height="15.0" fill="rgb(219,84,24)" rx="2" ry="2" />
<text text-anchor="" x="921.89" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="247.4" y="1125" width="4.1" height="15.0" fill="rgb(224,229,10)" rx="2" ry="2" />
<text text-anchor="" x="250.35" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (17 samples, 0.75%)</title><rect x="176.2" y="1285" width="8.8" height="15.0" fill="rgb(220,15,46)" rx="2" ry="2" />
<text text-anchor="" x="179.20" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (33 samples, 1.45%)</title><rect x="816.6" y="805" width="17.1" height="15.0" fill="rgb(234,69,26)" rx="2" ry="2" />
<text text-anchor="" x="819.58" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_infixOperation (6 samples, 0.26%)</title><rect x="454.6" y="1605" width="3.1" height="15.0" fill="rgb(215,92,9)" rx="2" ry="2" />
<text text-anchor="" x="457.58" y="1615.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_equality (8 samples, 0.35%)</title><rect x="353.3" y="1397" width="4.2" height="15.0" fill="rgb(214,127,12)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_topLevelObject (8 samples, 0.35%)</title><rect x="305.0" y="1621" width="4.2" height="15.0" fill="rgb(224,83,45)" rx="2" ry="2" />
<text text-anchor="" x="308.00" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="274.9" y="1189" width="3.1" height="15.0" fill="rgb(218,28,36)" rx="2" ry="2" />
<text text-anchor="" x="277.88" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnarySuffix (17 samples, 0.75%)</title><rect x="818.7" y="469" width="8.8" height="15.0" fill="rgb(225,31,10)" rx="2" ry="2" />
<text text-anchor="" x="821.65" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="300.8" y="1637" width="4.2" height="15.0" fill="rgb(252,102,36)" rx="2" ry="2" />
<text text-anchor="" x="303.85" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_asExpression (19 samples, 0.84%)</title><rect x="941.7" y="885" width="9.9" height="15.0" fill="rgb(223,160,1)" rx="2" ry="2" />
<text text-anchor="" x="944.74" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_prefixUnaryExpression (8 samples, 0.35%)</title><rect x="353.3" y="1685" width="4.2" height="15.0" fill="rgb(231,125,26)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="1695.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___libc_free (29 samples, 1.28%)</title><rect x="996.8" y="1381" width="15.1" height="15.0" fill="rgb(250,213,18)" rx="2" ry="2" />
<text text-anchor="" x="999.80" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="804.6" y="741" width="4.2" height="15.0" fill="rgb(221,194,25)" rx="2" ry="2" />
<text text-anchor="" x="807.63" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (14 samples, 0.62%)</title><rect x="818.7" y="421" width="7.2" height="15.0" fill="rgb(231,39,40)" rx="2" ry="2" />
<text text-anchor="" x="821.65" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="375.6" y="1221" width="3.2" height="15.0" fill="rgb(205,105,10)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (13 samples, 0.57%)</title><rect x="314.3" y="1605" width="6.8" height="15.0" fill="rgb(222,104,14)" rx="2" ry="2" />
<text text-anchor="" x="317.35" y="1615.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="193.9" y="1589" width="3.6" height="15.0" fill="rgb(232,186,23)" rx="2" ry="2" />
<text text-anchor="" x="196.86" y="1599.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_comparison (20 samples, 0.88%)</title><rect x="941.7" y="1141" width="10.4" height="15.0" fill="rgb(242,132,50)" rx="2" ry="2" />
<text text-anchor="" x="944.74" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_declaration (466 samples, 20.51%)</title><rect x="723.6" y="1365" width="242.0" height="15.0" fill="rgb(234,224,40)" rx="2" ry="2" />
<text text-anchor="" x="726.61" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pcc_evaluate_rule_declaration</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="350.2" y="1509" width="3.1" height="15.0" fill="rgb(213,38,54)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_valueArguments (6 samples, 0.26%)</title><rect x="225.5" y="1525" width="3.2" height="15.0" fill="rgb(227,215,39)" rx="2" ry="2" />
<text text-anchor="" x="228.54" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (10 samples, 0.44%)</title><rect x="269.7" y="1349" width="5.2" height="15.0" fill="rgb(216,74,53)" rx="2" ry="2" />
<text text-anchor="" x="272.68" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="212.0" y="1605" width="4.2" height="15.0" fill="rgb(244,228,0)" rx="2" ry="2" />
<text text-anchor="" x="215.03" y="1615.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnarySuffix (18 samples, 0.79%)</title><rect x="756.3" y="629" width="9.4" height="15.0" fill="rgb(253,95,53)" rx="2" ry="2" />
<text text-anchor="" x="759.33" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (10 samples, 0.44%)</title><rect x="274.9" y="1637" width="5.2" height="15.0" fill="rgb(244,110,3)" rx="2" ry="2" />
<text text-anchor="" x="277.88" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="177.2" y="229" width="3.2" height="15.0" fill="rgb(228,111,8)" rx="2" ry="2" />
<text text-anchor="" x="180.24" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_postfixUnaryExpression (8 samples, 0.35%)</title><rect x="353.3" y="1045" width="4.2" height="15.0" fill="rgb(228,195,13)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_elvisExpression (6 samples, 0.26%)</title><rect x="898.6" y="885" width="3.2" height="15.0" fill="rgb(233,204,53)" rx="2" ry="2" />
<text text-anchor="" x="901.64" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="398.5" y="1061" width="4.1" height="15.0" fill="rgb(236,103,10)" rx="2" ry="2" />
<text text-anchor="" x="401.49" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_functionBody (7 samples, 0.31%)</title><rect x="193.9" y="1285" width="3.6" height="15.0" fill="rgb(224,214,46)" rx="2" ry="2" />
<text text-anchor="" x="196.86" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="852.9" y="485" width="3.1" height="15.0" fill="rgb(218,187,3)" rx="2" ry="2" />
<text text-anchor="" x="855.93" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (13 samples, 0.57%)</title><rect x="216.2" y="1637" width="6.7" height="15.0" fill="rgb(215,134,45)" rx="2" ry="2" />
<text text-anchor="" x="219.19" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_asExpression (8 samples, 0.35%)</title><rect x="414.1" y="1701" width="4.1" height="15.0" fill="rgb(251,87,34)" rx="2" ry="2" />
<text text-anchor="" x="417.07" y="1711.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="216.7" y="869" width="3.1" height="15.0" fill="rgb(233,192,2)" rx="2" ry="2" />
<text text-anchor="" x="219.71" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_topLevelObject (9 samples, 0.40%)</title><rect x="202.7" y="1493" width="4.7" height="15.0" fill="rgb(233,195,42)" rx="2" ry="2" />
<text text-anchor="" x="205.68" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_multiplicativeExpression (7 samples, 0.31%)</title><rect x="499.8" y="1637" width="3.6" height="15.0" fill="rgb(217,181,2)" rx="2" ry="2" />
<text text-anchor="" x="502.76" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnaryExpression (6 samples, 0.26%)</title><rect x="898.6" y="661" width="3.2" height="15.0" fill="rgb(242,191,10)" rx="2" ry="2" />
<text text-anchor="" x="901.64" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (23 samples, 1.01%)</title><rect x="885.1" y="709" width="12.0" height="15.0" fill="rgb(248,20,21)" rx="2" ry="2" />
<text text-anchor="" x="888.13" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_topLevelObject (7 samples, 0.31%)</title><rect x="406.3" y="1685" width="3.6" height="15.0" fill="rgb(245,208,29)" rx="2" ry="2" />
<text text-anchor="" x="409.28" y="1695.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="437.4" y="1621" width="3.2" height="15.0" fill="rgb(247,77,10)" rx="2" ry="2" />
<text text-anchor="" x="440.44" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnaryExpression (8 samples, 0.35%)</title><rect x="236.4" y="1461" width="4.2" height="15.0" fill="rgb(228,100,1)" rx="2" ry="2" />
<text text-anchor="" x="239.44" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_callSuffix (6 samples, 0.26%)</title><rect x="350.2" y="1621" width="3.1" height="15.0" fill="rgb(209,175,5)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="305.0" y="1605" width="4.2" height="15.0" fill="rgb(237,146,40)" rx="2" ry="2" />
<text text-anchor="" x="308.00" y="1615.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="353.3" y="709" width="4.2" height="15.0" fill="rgb(230,21,9)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (10 samples, 0.44%)</title><rect x="508.1" y="1653" width="5.2" height="15.0" fill="rgb(248,79,17)" rx="2" ry="2" />
<text text-anchor="" x="511.07" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_multiplicativeExpression (8 samples, 0.35%)</title><rect x="247.4" y="1141" width="4.1" height="15.0" fill="rgb(246,100,48)" rx="2" ry="2" />
<text text-anchor="" x="250.35" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="898.6" y="741" width="3.2" height="15.0" fill="rgb(241,125,48)" rx="2" ry="2" />
<text text-anchor="" x="901.64" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (9 samples, 0.40%)</title><rect x="519.5" y="1365" width="4.7" height="15.0" fill="rgb(214,133,43)" rx="2" ry="2" />
<text text-anchor="" x="522.50" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (38 samples, 1.67%)</title><rect x="727.8" y="1157" width="19.7" height="15.0" fill="rgb(220,208,27)" rx="2" ry="2" />
<text text-anchor="" x="730.76" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_callableReference (6 samples, 0.26%)</title><rect x="799.4" y="885" width="3.2" height="15.0" fill="rgb(231,37,41)" rx="2" ry="2" />
<text text-anchor="" x="802.44" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (10 samples, 0.44%)</title><rect x="231.2" y="1605" width="5.2" height="15.0" fill="rgb(239,228,53)" rx="2" ry="2" />
<text text-anchor="" x="234.25" y="1615.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>parseMio (8 samples, 0.35%)</title><rect x="189.2" y="1637" width="4.1" height="15.0" fill="rgb(223,103,17)" rx="2" ry="2" />
<text text-anchor="" x="192.18" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_capture_table__term (11 samples, 0.48%)</title><rect x="1115.7" y="1333" width="5.7" height="15.0" fill="rgb(215,105,33)" rx="2" ry="2" />
<text text-anchor="" x="1118.73" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_prefixUnaryExpression (6 samples, 0.26%)</title><rect x="350.2" y="501" width="3.1" height="15.0" fill="rgb(217,70,46)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="353.3" y="1413" width="4.2" height="15.0" fill="rgb(243,201,28)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_conjunction (28 samples, 1.23%)</title><rect x="779.7" y="725" width="14.5" height="15.0" fill="rgb(252,85,5)" rx="2" ry="2" />
<text text-anchor="" x="782.70" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_conjunction (8 samples, 0.35%)</title><rect x="300.8" y="1621" width="4.2" height="15.0" fill="rgb(252,65,54)" rx="2" ry="2" />
<text text-anchor="" x="303.85" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="440.6" y="1301" width="3.1" height="15.0" fill="rgb(230,72,28)" rx="2" ry="2" />
<text text-anchor="" x="443.55" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_infixFunctionCall (6 samples, 0.26%)</title><rect x="225.5" y="1205" width="3.2" height="15.0" fill="rgb(212,23,27)" rx="2" ry="2" />
<text text-anchor="" x="228.54" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_statements (10 samples, 0.44%)</title><rect x="231.2" y="1653" width="5.2" height="15.0" fill="rgb(224,107,31)" rx="2" ry="2" />
<text text-anchor="" x="234.25" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="398.5" y="901" width="3.6" height="15.0" fill="rgb(212,112,42)" rx="2" ry="2" />
<text text-anchor="" x="401.49" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (16 samples, 0.70%)</title><rect x="1157.3" y="517" width="8.3" height="15.0" fill="rgb(237,204,8)" rx="2" ry="2" />
<text text-anchor="" x="1160.28" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="454.6" y="1461" width="3.1" height="15.0" fill="rgb(248,31,34)" rx="2" ry="2" />
<text text-anchor="" x="457.58" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="247.4" y="1157" width="4.1" height="15.0" fill="rgb(241,178,6)" rx="2" ry="2" />
<text text-anchor="" x="250.35" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (17 samples, 0.75%)</title><rect x="176.2" y="1317" width="8.8" height="15.0" fill="rgb(233,41,50)" rx="2" ry="2" />
<text text-anchor="" x="179.20" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="334.1" y="1637" width="3.1" height="15.0" fill="rgb(217,134,16)" rx="2" ry="2" />
<text text-anchor="" x="337.08" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (30 samples, 1.32%)</title><rect x="728.8" y="1029" width="15.6" height="15.0" fill="rgb(212,164,45)" rx="2" ry="2" />
<text text-anchor="" x="731.80" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_statement (9 samples, 0.40%)</title><rect x="503.4" y="1701" width="4.7" height="15.0" fill="rgb(214,3,35)" rx="2" ry="2" />
<text text-anchor="" x="506.40" y="1711.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_comparison (8 samples, 0.35%)</title><rect x="247.4" y="1365" width="4.1" height="15.0" fill="rgb(250,203,26)" rx="2" ry="2" />
<text text-anchor="" x="250.35" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_callSuffix (7 samples, 0.31%)</title><rect x="329.9" y="1429" width="3.7" height="15.0" fill="rgb(220,207,54)" rx="2" ry="2" />
<text text-anchor="" x="332.93" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnaryExpression (18 samples, 0.79%)</title><rect x="941.7" y="821" width="9.4" height="15.0" fill="rgb(224,45,10)" rx="2" ry="2" />
<text text-anchor="" x="944.74" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_infixFunctionCall (7 samples, 0.31%)</title><rect x="177.2" y="533" width="3.7" height="15.0" fill="rgb(225,57,17)" rx="2" ry="2" />
<text text-anchor="" x="180.24" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_file (8 samples, 0.35%)</title><rect x="305.0" y="1685" width="4.2" height="15.0" fill="rgb(209,196,28)" rx="2" ry="2" />
<text text-anchor="" x="308.00" y="1695.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="202.7" y="1381" width="3.1" height="15.0" fill="rgb(229,187,51)" rx="2" ry="2" />
<text text-anchor="" x="205.68" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (30 samples, 1.32%)</title><rect x="849.8" y="677" width="15.6" height="15.0" fill="rgb(212,153,2)" rx="2" ry="2" />
<text text-anchor="" x="852.82" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_additiveExpression (6 samples, 0.26%)</title><rect x="898.6" y="789" width="3.2" height="15.0" fill="rgb(208,137,26)" rx="2" ry="2" />
<text text-anchor="" x="901.64" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="499.8" y="1525" width="3.6" height="15.0" fill="rgb(247,154,24)" rx="2" ry="2" />
<text text-anchor="" x="502.76" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="177.2" y="581" width="3.7" height="15.0" fill="rgb(225,123,18)" rx="2" ry="2" />
<text text-anchor="" x="180.24" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_assignment (6 samples, 0.26%)</title><rect x="252.0" y="1365" width="3.1" height="15.0" fill="rgb(249,104,12)" rx="2" ry="2" />
<text text-anchor="" x="255.02" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_file (12 samples, 0.53%)</title><rect x="519.5" y="1669" width="6.2" height="15.0" fill="rgb(216,117,47)" rx="2" ry="2" />
<text text-anchor="" x="522.50" y="1679.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="353.3" y="1189" width="4.2" height="15.0" fill="rgb(250,132,36)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (9 samples, 0.40%)</title><rect x="280.1" y="1509" width="4.6" height="15.0" fill="rgb(239,84,9)" rx="2" ry="2" />
<text text-anchor="" x="283.07" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_functionDeclaration (6 samples, 0.26%)</title><rect x="309.2" y="1429" width="3.1" height="15.0" fill="rgb(252,85,52)" rx="2" ry="2" />
<text text-anchor="" x="312.15" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_rangeExpression (7 samples, 0.31%)</title><rect x="177.2" y="501" width="3.7" height="15.0" fill="rgb(216,196,13)" rx="2" ry="2" />
<text text-anchor="" x="180.24" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_elvisExpression (8 samples, 0.35%)</title><rect x="300.8" y="1461" width="4.2" height="15.0" fill="rgb(226,155,26)" rx="2" ry="2" />
<text text-anchor="" x="303.85" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___libc_free (114 samples, 5.02%)</title><rect x="1048.7" y="1317" width="59.2" height="15.0" fill="rgb(217,23,22)" rx="2" ry="2" />
<text text-anchor="" x="1051.73" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__GI__..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="247.4" y="389" width="3.1" height="15.0" fill="rgb(209,129,33)" rx="2" ry="2" />
<text text-anchor="" x="250.35" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_additiveExpression (6 samples, 0.26%)</title><rect x="454.6" y="1477" width="3.1" height="15.0" fill="rgb(228,180,19)" rx="2" ry="2" />
<text text-anchor="" x="457.58" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="375.6" y="741" width="3.2" height="15.0" fill="rgb(207,193,13)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_declaration (9 samples, 0.40%)</title><rect x="202.7" y="1461" width="4.7" height="15.0" fill="rgb(205,83,14)" rx="2" ry="2" />
<text text-anchor="" x="205.68" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_lr_table__shift (281 samples, 12.37%)</title><rect x="990.6" y="1461" width="145.9" height="15.0" fill="rgb(235,194,11)" rx="2" ry="2" />
<text text-anchor="" x="993.56" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pcc_lr_table__shift</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_assignment (11 samples, 0.48%)</title><rect x="398.5" y="1621" width="5.7" height="15.0" fill="rgb(235,46,31)" rx="2" ry="2" />
<text text-anchor="" x="401.49" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="309.2" y="1509" width="3.6" height="15.0" fill="rgb(236,31,18)" rx="2" ry="2" />
<text text-anchor="" x="312.15" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="305.0" y="1573" width="4.2" height="15.0" fill="rgb(232,132,32)" rx="2" ry="2" />
<text text-anchor="" x="308.00" y="1583.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="519.5" y="1269" width="3.1" height="15.0" fill="rgb(247,11,40)" rx="2" ry="2" />
<text text-anchor="" x="522.50" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (36 samples, 1.58%)</title><rect x="966.7" y="1349" width="18.7" height="15.0" fill="rgb(240,208,16)" rx="2" ry="2" />
<text text-anchor="" x="969.67" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (9 samples, 0.40%)</title><rect x="176.2" y="869" width="4.7" height="15.0" fill="rgb(224,170,1)" rx="2" ry="2" />
<text text-anchor="" x="179.20" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_conjunction (6 samples, 0.26%)</title><rect x="375.6" y="885" width="3.2" height="15.0" fill="rgb(225,79,0)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="852.9" y="517" width="3.1" height="15.0" fill="rgb(249,82,38)" rx="2" ry="2" />
<text text-anchor="" x="855.93" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (9 samples, 0.40%)</title><rect x="322.1" y="1573" width="4.7" height="15.0" fill="rgb(215,106,35)" rx="2" ry="2" />
<text text-anchor="" x="325.14" y="1583.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>writeTagEntry (7 samples, 0.31%)</title><rect x="1177.5" y="1525" width="3.7" height="15.0" fill="rgb(227,1,44)" rx="2" ry="2" />
<text text-anchor="" x="1180.54" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_comparison (25 samples, 1.10%)</title><rect x="779.7" y="661" width="13.0" height="15.0" fill="rgb(240,38,12)" rx="2" ry="2" />
<text text-anchor="" x="782.70" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>deleteTagEnry (16 samples, 0.70%)</title><rect x="1169.2" y="1477" width="8.3" height="15.0" fill="rgb(244,100,28)" rx="2" ry="2" />
<text text-anchor="" x="1172.23" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (359 samples, 15.80%)</title><rect x="725.2" y="1221" width="186.4" height="15.0" fill="rgb(218,146,45)" rx="2" ry="2" />
<text text-anchor="" x="728.17" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pcc_apply_rule</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="839.9" y="965" width="3.2" height="15.0" fill="rgb(218,80,32)" rx="2" ry="2" />
<text text-anchor="" x="842.95" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (33 samples, 1.45%)</title><rect x="849.8" y="869" width="17.2" height="15.0" fill="rgb(233,153,2)" rx="2" ry="2" />
<text text-anchor="" x="852.82" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>parseMio (1,187 samples, 52.24%)</title><rect x="564.7" y="1589" width="616.5" height="15.0" fill="rgb(250,151,21)" rx="2" ry="2" />
<text text-anchor="" x="567.68" y="1599.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >parseMio</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (11 samples, 0.48%)</title><rect x="1159.9" y="261" width="5.7" height="15.0" fill="rgb(223,46,51)" rx="2" ry="2" />
<text text-anchor="" x="1162.88" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_prefixUnaryExpression (7 samples, 0.31%)</title><rect x="361.6" y="1621" width="3.6" height="15.0" fill="rgb(252,194,0)" rx="2" ry="2" />
<text text-anchor="" x="364.61" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (48 samples, 2.11%)</title><rect x="815.0" y="997" width="24.9" height="15.0" fill="rgb(208,95,44)" rx="2" ry="2" />
<text text-anchor="" x="818.02" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >p..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_multiplicativeExpression (10 samples, 0.44%)</title><rect x="269.7" y="1461" width="5.2" height="15.0" fill="rgb(253,58,13)" rx="2" ry="2" />
<text text-anchor="" x="272.68" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>findKotlinTags (7 samples, 0.31%)</title><rect x="207.4" y="1637" width="3.6" height="15.0" fill="rgb(236,7,44)" rx="2" ry="2" />
<text text-anchor="" x="210.36" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="216.7" y="1029" width="3.6" height="15.0" fill="rgb(220,185,39)" rx="2" ry="2" />
<text text-anchor="" x="219.71" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="350.2" y="869" width="3.1" height="15.0" fill="rgb(232,14,31)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_assignment (11 samples, 0.48%)</title><rect x="225.5" y="1685" width="5.7" height="15.0" fill="rgb(237,139,53)" rx="2" ry="2" />
<text text-anchor="" x="228.54" y="1695.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_thunk__destroy (20 samples, 0.88%)</title><rect x="1124.6" y="1317" width="10.3" height="15.0" fill="rgb(250,39,48)" rx="2" ry="2" />
<text text-anchor="" x="1127.56" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_additiveExpression (8 samples, 0.35%)</title><rect x="247.4" y="1173" width="4.1" height="15.0" fill="rgb(249,178,4)" rx="2" ry="2" />
<text text-anchor="" x="250.35" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="247.4" y="581" width="3.1" height="15.0" fill="rgb(213,122,25)" rx="2" ry="2" />
<text text-anchor="" x="250.35" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_asExpression (8 samples, 0.35%)</title><rect x="353.3" y="501" width="4.2" height="15.0" fill="rgb(246,45,40)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_infixFunctionCall (8 samples, 0.35%)</title><rect x="329.9" y="1685" width="4.2" height="15.0" fill="rgb(208,150,27)" rx="2" ry="2" />
<text text-anchor="" x="332.93" y="1695.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_expression (8 samples, 0.35%)</title><rect x="353.3" y="1493" width="4.2" height="15.0" fill="rgb(225,32,50)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_valueArguments (6 samples, 0.26%)</title><rect x="375.6" y="1621" width="3.2" height="15.0" fill="rgb(220,75,41)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_simpleIdentifier (9 samples, 0.40%)</title><rect x="820.2" y="341" width="4.7" height="15.0" fill="rgb(209,26,35)" rx="2" ry="2" />
<text text-anchor="" x="823.21" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (6 samples, 0.26%)</title><rect x="1162.5" y="53" width="3.1" height="15.0" fill="rgb(246,52,54)" rx="2" ry="2" />
<text text-anchor="" x="1165.47" y="63.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="398.5" y="1221" width="4.1" height="15.0" fill="rgb(246,23,35)" rx="2" ry="2" />
<text text-anchor="" x="401.49" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="440.6" y="1333" width="3.1" height="15.0" fill="rgb(241,145,39)" rx="2" ry="2" />
<text text-anchor="" x="443.55" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (39 samples, 1.72%)</title><rect x="778.1" y="805" width="20.3" height="15.0" fill="rgb(221,111,24)" rx="2" ry="2" />
<text text-anchor="" x="781.14" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="454.6" y="1493" width="3.1" height="15.0" fill="rgb(227,148,6)" rx="2" ry="2" />
<text text-anchor="" x="457.58" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="918.9" y="1093" width="3.1" height="15.0" fill="rgb(234,99,36)" rx="2" ry="2" />
<text text-anchor="" x="921.89" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="375.6" y="1061" width="3.2" height="15.0" fill="rgb(249,144,36)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="318.0" y="1541" width="3.1" height="15.0" fill="rgb(239,46,10)" rx="2" ry="2" />
<text text-anchor="" x="320.98" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="177.2" y="389" width="3.7" height="15.0" fill="rgb(247,124,18)" rx="2" ry="2" />
<text text-anchor="" x="180.24" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_declaration (7 samples, 0.31%)</title><rect x="189.2" y="1253" width="3.6" height="15.0" fill="rgb(235,107,39)" rx="2" ry="2" />
<text text-anchor="" x="192.18" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unlink_chunk.constprop.0 (18 samples, 0.79%)</title><rect x="555.3" y="1429" width="9.4" height="15.0" fill="rgb(214,35,19)" rx="2" ry="2" />
<text text-anchor="" x="558.33" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="236.4" y="1445" width="4.2" height="15.0" fill="rgb(220,139,41)" rx="2" ry="2" />
<text text-anchor="" x="239.44" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnaryExpression (11 samples, 0.48%)</title><rect x="483.7" y="1605" width="5.7" height="15.0" fill="rgb(217,159,23)" rx="2" ry="2" />
<text text-anchor="" x="486.66" y="1615.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="519.5" y="1237" width="3.1" height="15.0" fill="rgb(236,185,5)" rx="2" ry="2" />
<text text-anchor="" x="522.50" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnarySuffix (97 samples, 4.27%)</title><rect x="749.1" y="917" width="50.3" height="15.0" fill="rgb(249,203,33)" rx="2" ry="2" />
<text text-anchor="" x="752.06" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pcc_e..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_topLevelObject (6 samples, 0.26%)</title><rect x="199.6" y="1573" width="3.1" height="15.0" fill="rgb(210,100,39)" rx="2" ry="2" />
<text text-anchor="" x="202.57" y="1583.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_rangeExpression (6 samples, 0.26%)</title><rect x="334.1" y="1589" width="3.1" height="15.0" fill="rgb(218,207,19)" rx="2" ry="2" />
<text text-anchor="" x="337.08" y="1599.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnaryExpression (6 samples, 0.26%)</title><rect x="216.7" y="917" width="3.1" height="15.0" fill="rgb(215,89,24)" rx="2" ry="2" />
<text text-anchor="" x="219.71" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="350.2" y="581" width="3.1" height="15.0" fill="rgb(216,3,44)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (12 samples, 0.53%)</title><rect x="941.7" y="741" width="6.3" height="15.0" fill="rgb(249,145,16)" rx="2" ry="2" />
<text text-anchor="" x="944.74" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_comparison (6 samples, 0.26%)</title><rect x="247.4" y="757" width="3.1" height="15.0" fill="rgb(249,24,6)" rx="2" ry="2" />
<text text-anchor="" x="250.35" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_directlyAssignableExpression (9 samples, 0.40%)</title><rect x="398.5" y="1301" width="4.7" height="15.0" fill="rgb(218,17,50)" rx="2" ry="2" />
<text text-anchor="" x="401.49" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="247.4" y="869" width="3.1" height="15.0" fill="rgb(211,156,11)" rx="2" ry="2" />
<text text-anchor="" x="250.35" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ptrArrayDelete (22 samples, 0.97%)</title><rect x="1166.1" y="1525" width="11.4" height="15.0" fill="rgb(240,224,49)" rx="2" ry="2" />
<text text-anchor="" x="1169.11" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_asExpression (10 samples, 0.44%)</title><rect x="274.9" y="1365" width="5.2" height="15.0" fill="rgb(234,79,36)" rx="2" ry="2" />
<text text-anchor="" x="277.88" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_lambdaLiteral (7 samples, 0.31%)</title><rect x="216.7" y="1077" width="3.6" height="15.0" fill="rgb(207,170,11)" rx="2" ry="2" />
<text text-anchor="" x="219.71" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnaryExpression (6 samples, 0.26%)</title><rect x="334.1" y="1429" width="3.1" height="15.0" fill="rgb(206,56,28)" rx="2" ry="2" />
<text text-anchor="" x="337.08" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_statements (13 samples, 0.57%)</title><rect x="176.2" y="1077" width="6.7" height="15.0" fill="rgb(209,136,43)" rx="2" ry="2" />
<text text-anchor="" x="179.20" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_block (7 samples, 0.31%)</title><rect x="243.7" y="1493" width="3.7" height="15.0" fill="rgb(237,12,53)" rx="2" ry="2" />
<text text-anchor="" x="246.71" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_secondaryConstructor (6 samples, 0.26%)</title><rect x="907.5" y="1205" width="3.1" height="15.0" fill="rgb(223,121,20)" rx="2" ry="2" />
<text text-anchor="" x="910.46" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_callSuffix (6 samples, 0.26%)</title><rect x="289.4" y="1589" width="3.1" height="15.0" fill="rgb(211,130,29)" rx="2" ry="2" />
<text text-anchor="" x="292.42" y="1599.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_additiveExpression (8 samples, 0.35%)</title><rect x="212.0" y="1685" width="4.2" height="15.0" fill="rgb(223,18,21)" rx="2" ry="2" />
<text text-anchor="" x="215.03" y="1695.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_lr_answer__destroy (134 samples, 5.90%)</title><rect x="1040.4" y="1349" width="69.6" height="15.0" fill="rgb(224,50,31)" rx="2" ry="2" />
<text text-anchor="" x="1043.42" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pcc_lr_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_simpleIdentifier (7 samples, 0.31%)</title><rect x="843.1" y="981" width="3.6" height="15.0" fill="rgb(249,135,3)" rx="2" ry="2" />
<text text-anchor="" x="846.06" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_statements (15 samples, 0.66%)</title><rect x="398.5" y="1685" width="7.8" height="15.0" fill="rgb(206,121,33)" rx="2" ry="2" />
<text text-anchor="" x="401.49" y="1695.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_rangeExpression (6 samples, 0.26%)</title><rect x="898.6" y="821" width="3.2" height="15.0" fill="rgb(239,125,40)" rx="2" ry="2" />
<text text-anchor="" x="901.64" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_directlyAssignableExpression (7 samples, 0.31%)</title><rect x="314.3" y="1525" width="3.7" height="15.0" fill="rgb(250,53,9)" rx="2" ry="2" />
<text text-anchor="" x="317.35" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_genericCallLikeComparison (6 samples, 0.26%)</title><rect x="247.4" y="725" width="3.1" height="15.0" fill="rgb(224,40,29)" rx="2" ry="2" />
<text text-anchor="" x="250.35" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (25 samples, 1.10%)</title><rect x="1152.6" y="837" width="13.0" height="15.0" fill="rgb(212,225,40)" rx="2" ry="2" />
<text text-anchor="" x="1155.61" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (20 samples, 0.88%)</title><rect x="941.7" y="933" width="10.4" height="15.0" fill="rgb(254,52,8)" rx="2" ry="2" />
<text text-anchor="" x="944.74" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="193.9" y="1621" width="3.6" height="15.0" fill="rgb(226,25,37)" rx="2" ry="2" />
<text text-anchor="" x="196.86" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_elvisExpression (33 samples, 1.45%)</title><rect x="849.8" y="885" width="17.2" height="15.0" fill="rgb(217,25,38)" rx="2" ry="2" />
<text text-anchor="" x="852.82" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_functionDeclaration (17 samples, 0.75%)</title><rect x="176.2" y="1173" width="8.8" height="15.0" fill="rgb(236,156,53)" rx="2" ry="2" />
<text text-anchor="" x="179.20" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pkotlin_parse (7 samples, 0.31%)</title><rect x="207.4" y="1621" width="3.6" height="15.0" fill="rgb(216,120,24)" rx="2" ry="2" />
<text text-anchor="" x="210.36" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_prefixUnaryExpression (8 samples, 0.35%)</title><rect x="247.4" y="1077" width="4.1" height="15.0" fill="rgb(253,225,20)" rx="2" ry="2" />
<text text-anchor="" x="250.35" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_statements (10 samples, 0.44%)</title><rect x="236.4" y="1589" width="5.2" height="15.0" fill="rgb(210,53,1)" rx="2" ry="2" />
<text text-anchor="" x="239.44" y="1599.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_infixOperation (6 samples, 0.26%)</title><rect x="350.2" y="1333" width="3.1" height="15.0" fill="rgb(241,218,30)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_equality (25 samples, 1.10%)</title><rect x="884.6" y="1045" width="13.0" height="15.0" fill="rgb(224,156,42)" rx="2" ry="2" />
<text text-anchor="" x="887.61" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_classMemberDeclaration (7 samples, 0.31%)</title><rect x="193.9" y="1381" width="3.6" height="15.0" fill="rgb(250,210,28)" rx="2" ry="2" />
<text text-anchor="" x="196.86" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_classDeclaration (17 samples, 0.75%)</title><rect x="176.2" y="1333" width="8.8" height="15.0" fill="rgb(209,212,28)" rx="2" ry="2" />
<text text-anchor="" x="179.20" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_infixFunctionCall (10 samples, 0.44%)</title><rect x="274.9" y="1493" width="5.2" height="15.0" fill="rgb(207,33,38)" rx="2" ry="2" />
<text text-anchor="" x="277.88" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_multiplicativeExpression (24 samples, 1.06%)</title><rect x="884.6" y="789" width="12.5" height="15.0" fill="rgb(240,205,51)" rx="2" ry="2" />
<text text-anchor="" x="887.61" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnaryExpression (6 samples, 0.26%)</title><rect x="437.4" y="1381" width="3.2" height="15.0" fill="rgb(247,12,36)" rx="2" ry="2" />
<text text-anchor="" x="440.44" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="839.9" y="997" width="3.2" height="15.0" fill="rgb(211,55,12)" rx="2" ry="2" />
<text text-anchor="" x="842.95" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (11 samples, 0.48%)</title><rect x="483.7" y="1589" width="5.7" height="15.0" fill="rgb(213,110,8)" rx="2" ry="2" />
<text text-anchor="" x="486.66" y="1599.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="225.5" y="1573" width="3.2" height="15.0" fill="rgb(220,188,39)" rx="2" ry="2" />
<text text-anchor="" x="228.54" y="1583.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_infixFunctionCall (31 samples, 1.36%)</title><rect x="817.6" y="693" width="16.1" height="15.0" fill="rgb(252,159,18)" rx="2" ry="2" />
<text text-anchor="" x="820.61" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (9 samples, 0.40%)</title><rect x="252.0" y="1509" width="4.7" height="15.0" fill="rgb(235,20,38)" rx="2" ry="2" />
<text text-anchor="" x="255.02" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (46 samples, 2.02%)</title><rect x="816.1" y="965" width="23.8" height="15.0" fill="rgb(219,187,47)" rx="2" ry="2" />
<text text-anchor="" x="819.06" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >p..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (23 samples, 1.01%)</title><rect x="1153.6" y="677" width="12.0" height="15.0" fill="rgb(239,69,26)" rx="2" ry="2" />
<text text-anchor="" x="1156.64" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_declaration (346 samples, 15.23%)</title><rect x="727.8" y="1205" width="179.7" height="15.0" fill="rgb(215,186,52)" rx="2" ry="2" />
<text text-anchor="" x="730.76" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pcc_evaluate_rule_decla..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_expression (6 samples, 0.26%)</title><rect x="350.2" y="917" width="3.1" height="15.0" fill="rgb(206,30,24)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (10 samples, 0.44%)</title><rect x="1160.4" y="213" width="5.2" height="15.0" fill="rgb(224,213,31)" rx="2" ry="2" />
<text text-anchor="" x="1163.40" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="314.3" y="1477" width="3.7" height="15.0" fill="rgb(225,116,20)" rx="2" ry="2" />
<text text-anchor="" x="317.35" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>createTagsWithFallback (7 samples, 0.31%)</title><rect x="207.4" y="1685" width="3.6" height="15.0" fill="rgb(225,134,32)" rx="2" ry="2" />
<text text-anchor="" x="210.36" y="1695.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="305.0" y="1669" width="4.2" height="15.0" fill="rgb(214,71,46)" rx="2" ry="2" />
<text text-anchor="" x="308.00" y="1679.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="898.6" y="1061" width="3.2" height="15.0" fill="rgb(239,184,24)" rx="2" ry="2" />
<text text-anchor="" x="901.64" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_statements (6 samples, 0.26%)</title><rect x="216.7" y="757" width="3.1" height="15.0" fill="rgb(236,227,40)" rx="2" ry="2" />
<text text-anchor="" x="219.71" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="300.8" y="1509" width="4.2" height="15.0" fill="rgb(224,201,25)" rx="2" ry="2" />
<text text-anchor="" x="303.85" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (28 samples, 1.23%)</title><rect x="779.7" y="773" width="14.5" height="15.0" fill="rgb(253,5,16)" rx="2" ry="2" />
<text text-anchor="" x="782.70" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>getFileLanguageForRequest (64 samples, 2.82%)</title><rect x="531.4" y="1589" width="33.3" height="15.0" fill="rgb(206,198,14)" rx="2" ry="2" />
<text text-anchor="" x="534.44" y="1599.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ge..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_conjunction (6 samples, 0.26%)</title><rect x="839.9" y="949" width="3.2" height="15.0" fill="rgb(209,87,54)" rx="2" ry="2" />
<text text-anchor="" x="842.95" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnarySuffix (14 samples, 0.62%)</title><rect x="941.7" y="789" width="7.3" height="15.0" fill="rgb(226,85,46)" rx="2" ry="2" />
<text text-anchor="" x="944.74" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_propertyDeclaration (46 samples, 2.02%)</title><rect x="816.1" y="981" width="23.8" height="15.0" fill="rgb(213,155,0)" rx="2" ry="2" />
<text text-anchor="" x="819.06" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >p..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_declaration (6 samples, 0.26%)</title><rect x="305.0" y="1429" width="3.1" height="15.0" fill="rgb(223,110,50)" rx="2" ry="2" />
<text text-anchor="" x="308.00" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (10 samples, 0.44%)</title><rect x="231.2" y="1669" width="5.2" height="15.0" fill="rgb(221,19,49)" rx="2" ry="2" />
<text text-anchor="" x="234.25" y="1679.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="454.6" y="1621" width="3.1" height="15.0" fill="rgb(225,172,36)" rx="2" ry="2" />
<text text-anchor="" x="457.58" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (10 samples, 0.44%)</title><rect x="508.1" y="1685" width="5.2" height="15.0" fill="rgb(227,27,5)" rx="2" ry="2" />
<text text-anchor="" x="511.07" y="1695.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="334.1" y="1573" width="3.1" height="15.0" fill="rgb(225,156,20)" rx="2" ry="2" />
<text text-anchor="" x="337.08" y="1583.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___libc_malloc (63 samples, 2.77%)</title><rect x="532.0" y="1477" width="32.7" height="15.0" fill="rgb(222,20,5)" rx="2" ry="2" />
<text text-anchor="" x="534.96" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_valueArgument (6 samples, 0.26%)</title><rect x="375.6" y="1589" width="3.2" height="15.0" fill="rgb(244,224,13)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="1599.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_equality (6 samples, 0.26%)</title><rect x="454.6" y="1701" width="3.1" height="15.0" fill="rgb(241,217,50)" rx="2" ry="2" />
<text text-anchor="" x="457.58" y="1711.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="406.3" y="1669" width="3.6" height="15.0" fill="rgb(224,228,21)" rx="2" ry="2" />
<text text-anchor="" x="409.28" y="1679.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="353.3" y="1029" width="4.2" height="15.0" fill="rgb(232,69,17)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="212.0" y="1669" width="4.2" height="15.0" fill="rgb(207,7,6)" rx="2" ry="2" />
<text text-anchor="" x="215.03" y="1679.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (42 samples, 1.85%)</title><rect x="776.6" y="837" width="21.8" height="15.0" fill="rgb(209,45,52)" rx="2" ry="2" />
<text text-anchor="" x="779.58" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >p..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="193.9" y="1557" width="3.6" height="15.0" fill="rgb(244,217,42)" rx="2" ry="2" />
<text text-anchor="" x="196.86" y="1567.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_directlyAssignableExpression (8 samples, 0.35%)</title><rect x="216.7" y="1237" width="4.2" height="15.0" fill="rgb(215,84,43)" rx="2" ry="2" />
<text text-anchor="" x="219.71" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_prefixUnaryExpression (6 samples, 0.26%)</title><rect x="440.6" y="1349" width="3.1" height="15.0" fill="rgb(221,79,40)" rx="2" ry="2" />
<text text-anchor="" x="443.55" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (31 samples, 1.36%)</title><rect x="849.8" y="741" width="16.1" height="15.0" fill="rgb(239,29,1)" rx="2" ry="2" />
<text text-anchor="" x="852.82" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_assignment (9 samples, 0.40%)</title><rect x="398.5" y="1333" width="4.7" height="15.0" fill="rgb(247,79,36)" rx="2" ry="2" />
<text text-anchor="" x="401.49" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="236.4" y="1477" width="4.2" height="15.0" fill="rgb(243,90,45)" rx="2" ry="2" />
<text text-anchor="" x="239.44" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_rangeExpression (6 samples, 0.26%)</title><rect x="440.6" y="1477" width="3.1" height="15.0" fill="rgb(208,80,54)" rx="2" ry="2" />
<text text-anchor="" x="443.55" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_elvisExpression (32 samples, 1.41%)</title><rect x="817.1" y="725" width="16.6" height="15.0" fill="rgb(233,104,10)" rx="2" ry="2" />
<text text-anchor="" x="820.10" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="375.6" y="1285" width="3.2" height="15.0" fill="rgb(237,140,12)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_thunk_chunk__destroy (43 samples, 1.89%)</title><rect x="1114.2" y="1349" width="22.3" height="15.0" fill="rgb(218,6,33)" rx="2" ry="2" />
<text text-anchor="" x="1117.17" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >p..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_directlyAssignableExpression (7 samples, 0.31%)</title><rect x="378.8" y="1397" width="3.6" height="15.0" fill="rgb(236,172,26)" rx="2" ry="2" />
<text text-anchor="" x="381.75" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="872.7" y="901" width="3.6" height="15.0" fill="rgb(223,76,51)" rx="2" ry="2" />
<text text-anchor="" x="875.67" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_rangeExpression (6 samples, 0.26%)</title><rect x="454.6" y="1509" width="3.1" height="15.0" fill="rgb(212,168,37)" rx="2" ry="2" />
<text text-anchor="" x="457.58" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_rangeExpression (6 samples, 0.26%)</title><rect x="225.5" y="1173" width="3.2" height="15.0" fill="rgb(221,179,4)" rx="2" ry="2" />
<text text-anchor="" x="228.54" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (12 samples, 0.53%)</title><rect x="365.2" y="1509" width="6.3" height="15.0" fill="rgb(228,44,15)" rx="2" ry="2" />
<text text-anchor="" x="368.25" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (11 samples, 0.48%)</title><rect x="378.8" y="1605" width="5.7" height="15.0" fill="rgb(227,68,0)" rx="2" ry="2" />
<text text-anchor="" x="381.75" y="1615.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="378.8" y="1349" width="3.6" height="15.0" fill="rgb(227,96,24)" rx="2" ry="2" />
<text text-anchor="" x="381.75" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (10 samples, 0.44%)</title><rect x="750.1" y="773" width="5.2" height="15.0" fill="rgb(209,39,39)" rx="2" ry="2" />
<text text-anchor="" x="753.10" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (9 samples, 0.40%)</title><rect x="858.6" y="613" width="4.7" height="15.0" fill="rgb(217,169,23)" rx="2" ry="2" />
<text text-anchor="" x="861.64" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnarySuffix (6 samples, 0.26%)</title><rect x="216.7" y="885" width="3.1" height="15.0" fill="rgb(241,72,52)" rx="2" ry="2" />
<text text-anchor="" x="219.71" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_declaration (8 samples, 0.35%)</title><rect x="189.2" y="1413" width="4.1" height="15.0" fill="rgb(234,220,51)" rx="2" ry="2" />
<text text-anchor="" x="192.18" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="225.5" y="1253" width="3.2" height="15.0" fill="rgb(236,212,50)" rx="2" ry="2" />
<text text-anchor="" x="228.54" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="898.6" y="901" width="3.2" height="15.0" fill="rgb(224,37,36)" rx="2" ry="2" />
<text text-anchor="" x="901.64" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="454.6" y="1653" width="3.1" height="15.0" fill="rgb(250,150,24)" rx="2" ry="2" />
<text text-anchor="" x="457.58" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (16 samples, 0.70%)</title><rect x="1003.5" y="1365" width="8.4" height="15.0" fill="rgb(205,86,28)" rx="2" ry="2" />
<text text-anchor="" x="1006.55" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (10 samples, 0.44%)</title><rect x="274.9" y="1445" width="5.2" height="15.0" fill="rgb(220,44,25)" rx="2" ry="2" />
<text text-anchor="" x="277.88" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="329.9" y="1349" width="3.1" height="15.0" fill="rgb(205,114,4)" rx="2" ry="2" />
<text text-anchor="" x="332.93" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="437.4" y="1685" width="3.2" height="15.0" fill="rgb(253,24,53)" rx="2" ry="2" />
<text text-anchor="" x="440.44" y="1695.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="329.9" y="1541" width="4.2" height="15.0" fill="rgb(224,196,10)" rx="2" ry="2" />
<text text-anchor="" x="332.93" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_annotatedLambda (6 samples, 0.26%)</title><rect x="274.9" y="1205" width="3.1" height="15.0" fill="rgb(215,47,25)" rx="2" ry="2" />
<text text-anchor="" x="277.88" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (11 samples, 0.48%)</title><rect x="1159.9" y="309" width="5.7" height="15.0" fill="rgb(248,63,24)" rx="2" ry="2" />
<text text-anchor="" x="1162.88" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (15 samples, 0.66%)</title><rect x="1157.8" y="437" width="7.8" height="15.0" fill="rgb(217,188,40)" rx="2" ry="2" />
<text text-anchor="" x="1160.80" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="216.7" y="709" width="3.1" height="15.0" fill="rgb(243,184,48)" rx="2" ry="2" />
<text text-anchor="" x="219.71" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_declaration (7 samples, 0.31%)</title><rect x="193.9" y="1349" width="3.6" height="15.0" fill="rgb(243,127,36)" rx="2" ry="2" />
<text text-anchor="" x="196.86" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_genericCallLikeComparison (6 samples, 0.26%)</title><rect x="350.2" y="1365" width="3.1" height="15.0" fill="rgb(207,90,30)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (24 samples, 1.06%)</title><rect x="884.6" y="869" width="12.5" height="15.0" fill="rgb(213,36,49)" rx="2" ry="2" />
<text text-anchor="" x="887.61" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_statement (6 samples, 0.26%)</title><rect x="398.5" y="789" width="3.1" height="15.0" fill="rgb(232,37,31)" rx="2" ry="2" />
<text text-anchor="" x="401.49" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_genericCallLikeComparison (6 samples, 0.26%)</title><rect x="440.6" y="1605" width="3.1" height="15.0" fill="rgb(210,88,42)" rx="2" ry="2" />
<text text-anchor="" x="443.55" y="1615.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnaryExpression (6 samples, 0.26%)</title><rect x="231.2" y="1525" width="3.2" height="15.0" fill="rgb(234,38,52)" rx="2" ry="2" />
<text text-anchor="" x="234.25" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_comparison (8 samples, 0.35%)</title><rect x="300.8" y="1557" width="4.2" height="15.0" fill="rgb(210,143,29)" rx="2" ry="2" />
<text text-anchor="" x="303.85" y="1567.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="353.3" y="869" width="4.2" height="15.0" fill="rgb(210,114,21)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (21 samples, 0.92%)</title><rect x="868.0" y="1093" width="10.9" height="15.0" fill="rgb(246,191,15)" rx="2" ry="2" />
<text text-anchor="" x="870.99" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_multiplicativeExpression (6 samples, 0.26%)</title><rect x="375.6" y="1205" width="3.2" height="15.0" fill="rgb(220,7,0)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_postfixUnaryExpression (16 samples, 0.70%)</title><rect x="780.2" y="341" width="8.3" height="15.0" fill="rgb(249,57,35)" rx="2" ry="2" />
<text text-anchor="" x="783.22" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (9 samples, 0.40%)</title><rect x="1160.9" y="165" width="4.7" height="15.0" fill="rgb(214,222,53)" rx="2" ry="2" />
<text text-anchor="" x="1163.92" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (9 samples, 0.40%)</title><rect x="503.4" y="1685" width="4.7" height="15.0" fill="rgb(247,43,2)" rx="2" ry="2" />
<text text-anchor="" x="506.40" y="1695.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnaryExpression (6 samples, 0.26%)</title><rect x="454.6" y="1349" width="3.1" height="15.0" fill="rgb(216,27,23)" rx="2" ry="2" />
<text text-anchor="" x="457.58" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (10 samples, 0.44%)</title><rect x="1160.4" y="181" width="5.2" height="15.0" fill="rgb(230,164,14)" rx="2" ry="2" />
<text text-anchor="" x="1163.40" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pkotlin_parse (7 samples, 0.31%)</title><rect x="193.9" y="1653" width="3.6" height="15.0" fill="rgb(206,140,47)" rx="2" ry="2" />
<text text-anchor="" x="196.86" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___libc_free (34 samples, 1.50%)</title><rect x="1021.2" y="1349" width="17.7" height="15.0" fill="rgb(211,17,23)" rx="2" ry="2" />
<text text-anchor="" x="1024.21" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnaryExpression (7 samples, 0.31%)</title><rect x="361.6" y="1589" width="3.6" height="15.0" fill="rgb(208,31,10)" rx="2" ry="2" />
<text text-anchor="" x="364.61" y="1599.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="772.9" y="709" width="3.2" height="15.0" fill="rgb(213,204,35)" rx="2" ry="2" />
<text text-anchor="" x="775.95" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="804.6" y="549" width="4.2" height="15.0" fill="rgb(236,153,37)" rx="2" ry="2" />
<text text-anchor="" x="807.63" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_declaration (15 samples, 0.66%)</title><rect x="243.7" y="1589" width="7.8" height="15.0" fill="rgb(205,9,53)" rx="2" ry="2" />
<text text-anchor="" x="246.71" y="1599.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_assignment (14 samples, 0.62%)</title><rect x="928.8" y="1173" width="7.2" height="15.0" fill="rgb(230,208,44)" rx="2" ry="2" />
<text text-anchor="" x="931.76" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_prefixUnaryExpression (8 samples, 0.35%)</title><rect x="353.3" y="469" width="4.2" height="15.0" fill="rgb(227,82,5)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_annotatedLambda (9 samples, 0.40%)</title><rect x="398.5" y="1461" width="4.7" height="15.0" fill="rgb(209,46,47)" rx="2" ry="2" />
<text text-anchor="" x="401.49" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_equality (6 samples, 0.26%)</title><rect x="350.2" y="821" width="3.1" height="15.0" fill="rgb(219,62,26)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="247.4" y="1381" width="4.1" height="15.0" fill="rgb(237,4,10)" rx="2" ry="2" />
<text text-anchor="" x="250.35" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (31 samples, 1.36%)</title><rect x="817.6" y="645" width="16.1" height="15.0" fill="rgb(239,154,5)" rx="2" ry="2" />
<text text-anchor="" x="820.61" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (17 samples, 0.75%)</title><rect x="176.2" y="1221" width="8.8" height="15.0" fill="rgb(250,112,19)" rx="2" ry="2" />
<text text-anchor="" x="179.20" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_lambdaLiteral (6 samples, 0.26%)</title><rect x="398.5" y="853" width="3.1" height="15.0" fill="rgb(250,118,8)" rx="2" ry="2" />
<text text-anchor="" x="401.49" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_postfixUnaryExpression (6 samples, 0.26%)</title><rect x="350.2" y="469" width="3.1" height="15.0" fill="rgb(254,139,31)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pkotlin_parse (6 samples, 0.26%)</title><rect x="199.6" y="1685" width="3.1" height="15.0" fill="rgb(217,160,46)" rx="2" ry="2" />
<text text-anchor="" x="202.57" y="1695.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="231.2" y="1541" width="3.2" height="15.0" fill="rgb(234,26,21)" rx="2" ry="2" />
<text text-anchor="" x="234.25" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_disjunction (8 samples, 0.35%)</title><rect x="247.4" y="1461" width="4.1" height="15.0" fill="rgb(237,78,49)" rx="2" ry="2" />
<text text-anchor="" x="250.35" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="483.7" y="1493" width="3.6" height="15.0" fill="rgb(236,55,32)" rx="2" ry="2" />
<text text-anchor="" x="486.66" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (282 samples, 12.41%)</title><rect x="572.0" y="1445" width="146.4" height="15.0" fill="rgb(242,40,22)" rx="2" ry="2" />
<text text-anchor="" x="574.95" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_int_free</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_callSuffix (8 samples, 0.35%)</title><rect x="398.5" y="1205" width="4.1" height="15.0" fill="rgb(223,2,25)" rx="2" ry="2" />
<text text-anchor="" x="401.49" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_callSuffix (6 samples, 0.26%)</title><rect x="503.4" y="1541" width="3.1" height="15.0" fill="rgb(229,211,1)" rx="2" ry="2" />
<text text-anchor="" x="506.40" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="378.8" y="1125" width="3.1" height="15.0" fill="rgb(207,106,46)" rx="2" ry="2" />
<text text-anchor="" x="381.75" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="353.3" y="581" width="4.2" height="15.0" fill="rgb(212,185,19)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (20 samples, 0.88%)</title><rect x="941.7" y="1093" width="10.4" height="15.0" fill="rgb(208,104,27)" rx="2" ry="2" />
<text text-anchor="" x="944.74" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (11 samples, 0.48%)</title><rect x="1159.9" y="293" width="5.7" height="15.0" fill="rgb(241,50,36)" rx="2" ry="2" />
<text text-anchor="" x="1162.88" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (31 samples, 1.36%)</title><rect x="817.6" y="613" width="16.1" height="15.0" fill="rgb(236,136,19)" rx="2" ry="2" />
<text text-anchor="" x="820.61" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="189.2" y="1333" width="3.6" height="15.0" fill="rgb(224,51,32)" rx="2" ry="2" />
<text text-anchor="" x="192.18" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_disjunction (6 samples, 0.26%)</title><rect x="350.2" y="885" width="3.1" height="15.0" fill="rgb(233,124,39)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (10 samples, 0.44%)</title><rect x="274.9" y="1477" width="5.2" height="15.0" fill="rgb(243,227,53)" rx="2" ry="2" />
<text text-anchor="" x="277.88" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (12 samples, 0.53%)</title><rect x="885.7" y="581" width="6.2" height="15.0" fill="rgb(241,201,49)" rx="2" ry="2" />
<text text-anchor="" x="888.65" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="353.3" y="389" width="3.6" height="15.0" fill="rgb(221,21,40)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (10 samples, 0.44%)</title><rect x="519.5" y="1461" width="5.2" height="15.0" fill="rgb(226,41,45)" rx="2" ry="2" />
<text text-anchor="" x="522.50" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="225.5" y="1349" width="3.2" height="15.0" fill="rgb(207,38,8)" rx="2" ry="2" />
<text text-anchor="" x="228.54" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_statement (6 samples, 0.26%)</title><rect x="720.5" y="1397" width="3.1" height="15.0" fill="rgb(214,64,13)" rx="2" ry="2" />
<text text-anchor="" x="723.49" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_functionDeclaration (9 samples, 0.40%)</title><rect x="280.1" y="1493" width="4.6" height="15.0" fill="rgb(236,92,17)" rx="2" ry="2" />
<text text-anchor="" x="283.07" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_classMemberDeclaration (33 samples, 1.45%)</title><rect x="728.8" y="1077" width="17.1" height="15.0" fill="rgb(207,30,20)" rx="2" ry="2" />
<text text-anchor="" x="731.80" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>parseFileWithMio (18 samples, 0.79%)</title><rect x="176.2" y="1605" width="9.3" height="15.0" fill="rgb(221,190,29)" rx="2" ry="2" />
<text text-anchor="" x="179.20" y="1615.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_classMemberDeclaration (9 samples, 0.40%)</title><rect x="432.2" y="1669" width="4.7" height="15.0" fill="rgb(252,160,36)" rx="2" ry="2" />
<text text-anchor="" x="435.24" y="1679.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_type (6 samples, 0.26%)</title><rect x="924.1" y="1205" width="3.1" height="15.0" fill="rgb(207,152,35)" rx="2" ry="2" />
<text text-anchor="" x="927.08" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (19 samples, 0.84%)</title><rect x="941.7" y="869" width="9.9" height="15.0" fill="rgb(210,74,20)" rx="2" ry="2" />
<text text-anchor="" x="944.74" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="375.6" y="1317" width="3.2" height="15.0" fill="rgb(222,210,32)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_simpleIdentifier (10 samples, 0.44%)</title><rect x="750.1" y="789" width="5.2" height="15.0" fill="rgb(222,119,1)" rx="2" ry="2" />
<text text-anchor="" x="753.10" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="177.2" y="709" width="3.7" height="15.0" fill="rgb(250,123,21)" rx="2" ry="2" />
<text text-anchor="" x="180.24" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_prefixUnaryExpression (30 samples, 1.32%)</title><rect x="849.8" y="693" width="15.6" height="15.0" fill="rgb(227,162,43)" rx="2" ry="2" />
<text text-anchor="" x="852.82" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___libc_free (8 samples, 0.35%)</title><rect x="1110.0" y="1349" width="4.2" height="15.0" fill="rgb(206,220,38)" rx="2" ry="2" />
<text text-anchor="" x="1113.02" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="378.8" y="1253" width="3.6" height="15.0" fill="rgb(235,166,1)" rx="2" ry="2" />
<text text-anchor="" x="381.75" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="918.9" y="933" width="3.1" height="15.0" fill="rgb(248,35,41)" rx="2" ry="2" />
<text text-anchor="" x="921.89" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_annotatedLambda (10 samples, 0.44%)</title><rect x="236.4" y="1653" width="5.2" height="15.0" fill="rgb(250,8,39)" rx="2" ry="2" />
<text text-anchor="" x="239.44" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_conjunction (20 samples, 0.88%)</title><rect x="941.7" y="1205" width="10.4" height="15.0" fill="rgb(253,11,7)" rx="2" ry="2" />
<text text-anchor="" x="944.74" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnarySuffix (6 samples, 0.26%)</title><rect x="503.4" y="1573" width="3.1" height="15.0" fill="rgb(209,150,10)" rx="2" ry="2" />
<text text-anchor="" x="506.40" y="1583.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (123 samples, 5.41%)</title><rect x="749.1" y="933" width="63.8" height="15.0" fill="rgb(252,116,5)" rx="2" ry="2" />
<text text-anchor="" x="752.06" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pcc_app..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="375.6" y="901" width="3.2" height="15.0" fill="rgb(253,80,34)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_valueArgument (8 samples, 0.35%)</title><rect x="353.3" y="1525" width="4.2" height="15.0" fill="rgb(238,132,44)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="193.9" y="1365" width="3.6" height="15.0" fill="rgb(223,90,39)" rx="2" ry="2" />
<text text-anchor="" x="196.86" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnarySuffix (6 samples, 0.26%)</title><rect x="236.4" y="1429" width="3.2" height="15.0" fill="rgb(231,64,32)" rx="2" ry="2" />
<text text-anchor="" x="239.44" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (34 samples, 1.50%)</title><rect x="816.6" y="901" width="17.6" height="15.0" fill="rgb(246,37,32)" rx="2" ry="2" />
<text text-anchor="" x="819.58" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (31 samples, 1.36%)</title><rect x="817.6" y="677" width="16.1" height="15.0" fill="rgb(216,125,12)" rx="2" ry="2" />
<text text-anchor="" x="820.61" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_valueArguments (8 samples, 0.35%)</title><rect x="353.3" y="949" width="4.2" height="15.0" fill="rgb(223,223,32)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="350.2" y="1029" width="3.1" height="15.0" fill="rgb(244,87,43)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (10 samples, 0.44%)</title><rect x="322.1" y="1637" width="5.2" height="15.0" fill="rgb(207,194,12)" rx="2" ry="2" />
<text text-anchor="" x="325.14" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_functionDeclaration (10 samples, 0.44%)</title><rect x="257.7" y="1621" width="5.2" height="15.0" fill="rgb(208,40,18)" rx="2" ry="2" />
<text text-anchor="" x="260.74" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_callSuffix (6 samples, 0.26%)</title><rect x="243.7" y="1269" width="3.1" height="15.0" fill="rgb(251,104,49)" rx="2" ry="2" />
<text text-anchor="" x="246.71" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_infixOperation (6 samples, 0.26%)</title><rect x="898.6" y="917" width="3.2" height="15.0" fill="rgb(211,12,30)" rx="2" ry="2" />
<text text-anchor="" x="901.64" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_multiplicativeExpression (31 samples, 1.36%)</title><rect x="849.8" y="757" width="16.1" height="15.0" fill="rgb(245,7,15)" rx="2" ry="2" />
<text text-anchor="" x="852.82" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (13 samples, 0.57%)</title><rect x="257.2" y="1669" width="6.8" height="15.0" fill="rgb(226,116,6)" rx="2" ry="2" />
<text text-anchor="" x="260.22" y="1679.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_declaration (6 samples, 0.26%)</title><rect x="199.6" y="1541" width="3.1" height="15.0" fill="rgb(220,88,4)" rx="2" ry="2" />
<text text-anchor="" x="202.57" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_conjunction (6 samples, 0.26%)</title><rect x="375.6" y="1493" width="3.2" height="15.0" fill="rgb(244,59,12)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_topLevelObject (12 samples, 0.53%)</title><rect x="519.5" y="1605" width="6.2" height="15.0" fill="rgb(235,105,54)" rx="2" ry="2" />
<text text-anchor="" x="522.50" y="1615.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnarySuffix (6 samples, 0.26%)</title><rect x="499.8" y="1509" width="3.1" height="15.0" fill="rgb(208,22,10)" rx="2" ry="2" />
<text text-anchor="" x="502.76" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="454.6" y="1173" width="3.1" height="15.0" fill="rgb(247,44,10)" rx="2" ry="2" />
<text text-anchor="" x="457.58" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (129 samples, 5.68%)</title><rect x="748.0" y="997" width="67.0" height="15.0" fill="rgb(229,197,32)" rx="2" ry="2" />
<text text-anchor="" x="751.02" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pcc_app..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_simpleIdentifier (6 samples, 0.26%)</title><rect x="177.2" y="181" width="3.2" height="15.0" fill="rgb(236,59,3)" rx="2" ry="2" />
<text text-anchor="" x="180.24" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_prefixUnaryExpression (6 samples, 0.26%)</title><rect x="375.6" y="1141" width="3.2" height="15.0" fill="rgb(219,168,17)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_rangeExpression (10 samples, 0.44%)</title><rect x="269.7" y="1525" width="5.2" height="15.0" fill="rgb(241,15,5)" rx="2" ry="2" />
<text text-anchor="" x="272.68" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="300.8" y="1413" width="4.2" height="15.0" fill="rgb(253,78,39)" rx="2" ry="2" />
<text text-anchor="" x="303.85" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_block (196 samples, 8.63%)</title><rect x="747.5" y="1109" width="101.8" height="15.0" fill="rgb(206,132,18)" rx="2" ry="2" />
<text text-anchor="" x="750.50" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pcc_evaluate..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_infixOperation (8 samples, 0.35%)</title><rect x="353.3" y="1301" width="4.2" height="15.0" fill="rgb(237,156,11)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="207.4" y="1525" width="3.6" height="15.0" fill="rgb(253,166,3)" rx="2" ry="2" />
<text text-anchor="" x="210.36" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_conjunction (6 samples, 0.26%)</title><rect x="440.6" y="1701" width="3.1" height="15.0" fill="rgb(249,6,12)" rx="2" ry="2" />
<text text-anchor="" x="443.55" y="1711.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="375.6" y="549" width="3.2" height="15.0" fill="rgb(251,150,31)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="252.0" y="1445" width="3.1" height="15.0" fill="rgb(232,40,7)" rx="2" ry="2" />
<text text-anchor="" x="255.02" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_expression (34 samples, 1.50%)</title><rect x="816.6" y="949" width="17.6" height="15.0" fill="rgb(210,9,12)" rx="2" ry="2" />
<text text-anchor="" x="819.58" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_block (6 samples, 0.26%)</title><rect x="519.5" y="1317" width="3.1" height="15.0" fill="rgb(249,216,37)" rx="2" ry="2" />
<text text-anchor="" x="522.50" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (34 samples, 1.50%)</title><rect x="849.3" y="1029" width="17.7" height="15.0" fill="rgb(215,39,53)" rx="2" ry="2" />
<text text-anchor="" x="852.30" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (15 samples, 0.66%)</title><rect x="398.5" y="1637" width="7.8" height="15.0" fill="rgb(227,94,47)" rx="2" ry="2" />
<text text-anchor="" x="401.49" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_callSuffix (14 samples, 0.62%)</title><rect x="818.7" y="437" width="7.2" height="15.0" fill="rgb(249,117,19)" rx="2" ry="2" />
<text text-anchor="" x="821.65" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_genericCallLikeComparison (6 samples, 0.26%)</title><rect x="898.6" y="949" width="3.2" height="15.0" fill="rgb(210,152,42)" rx="2" ry="2" />
<text text-anchor="" x="901.64" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_topLevelObject (7 samples, 0.31%)</title><rect x="207.4" y="1509" width="3.6" height="15.0" fill="rgb(225,206,7)" rx="2" ry="2" />
<text text-anchor="" x="210.36" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="212.0" y="1541" width="4.2" height="15.0" fill="rgb(214,4,37)" rx="2" ry="2" />
<text text-anchor="" x="215.03" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_nullableType (7 samples, 0.31%)</title><rect x="872.7" y="949" width="3.6" height="15.0" fill="rgb(211,158,10)" rx="2" ry="2" />
<text text-anchor="" x="875.67" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (6 samples, 0.26%)</title><rect x="1162.5" y="37" width="3.1" height="15.0" fill="rgb(216,7,45)" rx="2" ry="2" />
<text text-anchor="" x="1165.47" y="47.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (9 samples, 0.40%)</title><rect x="225.5" y="1637" width="4.7" height="15.0" fill="rgb(207,229,32)" rx="2" ry="2" />
<text text-anchor="" x="228.54" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnaryExpression (124 samples, 5.46%)</title><rect x="749.1" y="949" width="64.4" height="15.0" fill="rgb(212,186,6)" rx="2" ry="2" />
<text text-anchor="" x="752.06" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pcc_eva..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___libc_realloc (6 samples, 0.26%)</title><rect x="173.1" y="1701" width="3.1" height="15.0" fill="rgb(243,23,8)" rx="2" ry="2" />
<text text-anchor="" x="176.08" y="1711.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (10 samples, 0.44%)</title><rect x="398.5" y="1509" width="5.2" height="15.0" fill="rgb(252,67,51)" rx="2" ry="2" />
<text text-anchor="" x="401.49" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="375.6" y="421" width="3.2" height="15.0" fill="rgb(207,99,47)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="454.6" y="1141" width="3.1" height="15.0" fill="rgb(214,177,32)" rx="2" ry="2" />
<text text-anchor="" x="457.58" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_statement (6 samples, 0.26%)</title><rect x="329.9" y="1301" width="3.1" height="15.0" fill="rgb(220,197,44)" rx="2" ry="2" />
<text text-anchor="" x="332.93" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_declaration (7 samples, 0.31%)</title><rect x="936.0" y="1173" width="3.7" height="15.0" fill="rgb(252,150,49)" rx="2" ry="2" />
<text text-anchor="" x="939.03" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (9 samples, 0.40%)</title><rect x="202.7" y="1541" width="4.7" height="15.0" fill="rgb(253,56,52)" rx="2" ry="2" />
<text text-anchor="" x="205.68" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>createTagsForFile (7 samples, 0.31%)</title><rect x="207.4" y="1653" width="3.6" height="15.0" fill="rgb(238,116,30)" rx="2" ry="2" />
<text text-anchor="" x="210.36" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="247.4" y="1477" width="4.1" height="15.0" fill="rgb(220,180,18)" rx="2" ry="2" />
<text text-anchor="" x="250.35" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_primaryExpression (9 samples, 0.40%)</title><rect x="858.6" y="629" width="4.7" height="15.0" fill="rgb(224,220,50)" rx="2" ry="2" />
<text text-anchor="" x="861.64" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>writeCtagsEntry (7 samples, 0.31%)</title><rect x="1177.5" y="1509" width="3.7" height="15.0" fill="rgb(216,229,9)" rx="2" ry="2" />
<text text-anchor="" x="1180.54" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="247.4" y="709" width="3.1" height="15.0" fill="rgb(224,145,49)" rx="2" ry="2" />
<text text-anchor="" x="250.35" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_additiveExpression (6 samples, 0.26%)</title><rect x="375.6" y="1237" width="3.2" height="15.0" fill="rgb(217,60,24)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="309.2" y="1413" width="3.1" height="15.0" fill="rgb(241,42,10)" rx="2" ry="2" />
<text text-anchor="" x="312.15" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_valueArguments (42 samples, 1.85%)</title><rect x="776.6" y="853" width="21.8" height="15.0" fill="rgb(231,195,17)" rx="2" ry="2" />
<text text-anchor="" x="779.58" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >p..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnarySuffix (6 samples, 0.26%)</title><rect x="350.2" y="1045" width="3.1" height="15.0" fill="rgb(218,149,53)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_statements (8 samples, 0.35%)</title><rect x="216.7" y="1333" width="4.2" height="15.0" fill="rgb(245,103,25)" rx="2" ry="2" />
<text text-anchor="" x="219.71" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="252.0" y="1381" width="3.1" height="15.0" fill="rgb(210,182,24)" rx="2" ry="2" />
<text text-anchor="" x="255.02" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_multiplicativeExpression (6 samples, 0.26%)</title><rect x="225.5" y="1109" width="3.2" height="15.0" fill="rgb(213,101,33)" rx="2" ry="2" />
<text text-anchor="" x="228.54" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_additiveExpression (6 samples, 0.26%)</title><rect x="375.6" y="629" width="3.2" height="15.0" fill="rgb(216,53,20)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="216.7" y="1189" width="4.2" height="15.0" fill="rgb(225,96,0)" rx="2" ry="2" />
<text text-anchor="" x="219.71" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (23 samples, 1.01%)</title><rect x="818.7" y="485" width="11.9" height="15.0" fill="rgb(212,195,38)" rx="2" ry="2" />
<text text-anchor="" x="821.65" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_prefixUnaryExpression (8 samples, 0.35%)</title><rect x="329.9" y="1525" width="4.2" height="15.0" fill="rgb(244,201,46)" rx="2" ry="2" />
<text text-anchor="" x="332.93" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="225.5" y="1093" width="3.2" height="15.0" fill="rgb(223,158,30)" rx="2" ry="2" />
<text text-anchor="" x="228.54" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_comparison (34 samples, 1.50%)</title><rect x="849.3" y="981" width="17.7" height="15.0" fill="rgb(241,180,18)" rx="2" ry="2" />
<text text-anchor="" x="852.30" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="852.9" y="453" width="3.1" height="15.0" fill="rgb(244,185,27)" rx="2" ry="2" />
<text text-anchor="" x="855.93" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="189.2" y="1301" width="3.6" height="15.0" fill="rgb(222,188,11)" rx="2" ry="2" />
<text text-anchor="" x="192.18" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_genericCallLikeComparison (34 samples, 1.50%)</title><rect x="849.3" y="949" width="17.7" height="15.0" fill="rgb(253,211,11)" rx="2" ry="2" />
<text text-anchor="" x="852.30" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_classBody (7 samples, 0.31%)</title><rect x="189.2" y="1349" width="3.6" height="15.0" fill="rgb(232,104,48)" rx="2" ry="2" />
<text text-anchor="" x="192.18" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_infixOperation (8 samples, 0.35%)</title><rect x="804.6" y="661" width="4.2" height="15.0" fill="rgb(235,58,11)" rx="2" ry="2" />
<text text-anchor="" x="807.63" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_statements (13 samples, 0.57%)</title><rect x="216.2" y="1621" width="6.7" height="15.0" fill="rgb(232,38,16)" rx="2" ry="2" />
<text text-anchor="" x="219.19" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (19 samples, 0.84%)</title><rect x="388.6" y="1669" width="9.9" height="15.0" fill="rgb(215,85,53)" rx="2" ry="2" />
<text text-anchor="" x="391.62" y="1679.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="872.7" y="837" width="3.1" height="15.0" fill="rgb(237,78,48)" rx="2" ry="2" />
<text text-anchor="" x="875.67" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_annotatedLambda (13 samples, 0.57%)</title><rect x="216.2" y="1685" width="6.7" height="15.0" fill="rgb(207,199,45)" rx="2" ry="2" />
<text text-anchor="" x="219.19" y="1695.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_statement (9 samples, 0.40%)</title><rect x="322.1" y="1557" width="4.7" height="15.0" fill="rgb(252,134,23)" rx="2" ry="2" />
<text text-anchor="" x="325.14" y="1567.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (466 samples, 20.51%)</title><rect x="723.6" y="1349" width="242.0" height="15.0" fill="rgb(224,157,46)" rx="2" ry="2" />
<text text-anchor="" x="726.61" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pcc_apply_rule</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="353.3" y="1509" width="4.2" height="15.0" fill="rgb(209,102,19)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (10 samples, 0.44%)</title><rect x="373.6" y="1637" width="5.2" height="15.0" fill="rgb(211,171,7)" rx="2" ry="2" />
<text text-anchor="" x="376.56" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (10 samples, 0.44%)</title><rect x="519.5" y="1493" width="5.2" height="15.0" fill="rgb(223,70,18)" rx="2" ry="2" />
<text text-anchor="" x="522.50" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_directlyAssignableExpression (8 samples, 0.35%)</title><rect x="503.4" y="1637" width="4.2" height="15.0" fill="rgb(227,214,5)" rx="2" ry="2" />
<text text-anchor="" x="506.40" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_file (6 samples, 0.26%)</title><rect x="199.6" y="1637" width="3.1" height="15.0" fill="rgb(213,180,41)" rx="2" ry="2" />
<text text-anchor="" x="202.57" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_assignment (6 samples, 0.26%)</title><rect x="243.7" y="1397" width="3.1" height="15.0" fill="rgb(231,2,19)" rx="2" ry="2" />
<text text-anchor="" x="246.71" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_functionBody (9 samples, 0.40%)</title><rect x="280.1" y="1461" width="4.6" height="15.0" fill="rgb(221,76,26)" rx="2" ry="2" />
<text text-anchor="" x="283.07" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="350.2" y="1413" width="3.1" height="15.0" fill="rgb(241,68,54)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (10 samples, 0.44%)</title><rect x="269.7" y="1573" width="5.2" height="15.0" fill="rgb(252,13,20)" rx="2" ry="2" />
<text text-anchor="" x="272.68" y="1583.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (19 samples, 0.84%)</title><rect x="917.3" y="1253" width="9.9" height="15.0" fill="rgb(243,105,3)" rx="2" ry="2" />
<text text-anchor="" x="920.33" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (20 samples, 0.88%)</title><rect x="941.7" y="1253" width="10.4" height="15.0" fill="rgb(251,13,37)" rx="2" ry="2" />
<text text-anchor="" x="944.74" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>uncorkTagFile (30 samples, 1.32%)</title><rect x="1165.6" y="1541" width="15.6" height="15.0" fill="rgb(225,88,6)" rx="2" ry="2" />
<text text-anchor="" x="1168.59" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (18 samples, 0.79%)</title><rect x="941.7" y="805" width="9.4" height="15.0" fill="rgb(248,14,47)" rx="2" ry="2" />
<text text-anchor="" x="944.74" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="350.2" y="709" width="3.1" height="15.0" fill="rgb(236,90,44)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnarySuffix (15 samples, 0.66%)</title><rect x="885.7" y="661" width="7.7" height="15.0" fill="rgb(210,191,20)" rx="2" ry="2" />
<text text-anchor="" x="888.65" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_comparison (33 samples, 1.45%)</title><rect x="816.6" y="821" width="17.1" height="15.0" fill="rgb(227,21,23)" rx="2" ry="2" />
<text text-anchor="" x="819.58" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_asExpression (8 samples, 0.35%)</title><rect x="329.9" y="1557" width="4.2" height="15.0" fill="rgb(240,136,2)" rx="2" ry="2" />
<text text-anchor="" x="332.93" y="1567.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pkotlin_parse (7 samples, 0.31%)</title><rect x="193.9" y="1637" width="3.6" height="15.0" fill="rgb(218,171,38)" rx="2" ry="2" />
<text text-anchor="" x="196.86" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_annotatedLambda (6 samples, 0.26%)</title><rect x="454.6" y="1253" width="3.1" height="15.0" fill="rgb(251,160,45)" rx="2" ry="2" />
<text text-anchor="" x="457.58" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>all (2,272 samples, 100%)</title><rect x="10.0" y="1749" width="1180.0" height="15.0" fill="rgb(223,61,1)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1759.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_file (522 samples, 22.98%)</title><rect x="719.5" y="1461" width="271.1" height="15.0" fill="rgb(233,193,39)" rx="2" ry="2" />
<text text-anchor="" x="722.45" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pcc_evaluate_rule_file</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_valueArguments (6 samples, 0.26%)</title><rect x="375.6" y="1013" width="3.2" height="15.0" fill="rgb(219,194,18)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_additiveExpression (6 samples, 0.26%)</title><rect x="225.5" y="1141" width="3.2" height="15.0" fill="rgb(227,58,11)" rx="2" ry="2" />
<text text-anchor="" x="228.54" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (14 samples, 0.62%)</title><rect x="869.6" y="1061" width="7.2" height="15.0" fill="rgb(233,146,32)" rx="2" ry="2" />
<text text-anchor="" x="872.55" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="454.6" y="1685" width="3.1" height="15.0" fill="rgb(226,102,26)" rx="2" ry="2" />
<text text-anchor="" x="457.58" y="1695.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (14 samples, 0.62%)</title><rect x="849.8" y="581" width="7.3" height="15.0" fill="rgb(207,76,50)" rx="2" ry="2" />
<text text-anchor="" x="852.82" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_assignment (8 samples, 0.35%)</title><rect x="378.8" y="1429" width="4.1" height="15.0" fill="rgb(235,68,11)" rx="2" ry="2" />
<text text-anchor="" x="381.75" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_infixOperation (6 samples, 0.26%)</title><rect x="247.4" y="693" width="3.1" height="15.0" fill="rgb(239,48,21)" rx="2" ry="2" />
<text text-anchor="" x="250.35" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="437.4" y="1653" width="3.2" height="15.0" fill="rgb(206,0,40)" rx="2" ry="2" />
<text text-anchor="" x="440.44" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnaryExpression (9 samples, 0.40%)</title><rect x="398.5" y="1269" width="4.7" height="15.0" fill="rgb(237,2,32)" rx="2" ry="2" />
<text text-anchor="" x="401.49" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnaryExpression (22 samples, 0.97%)</title><rect x="756.3" y="661" width="11.5" height="15.0" fill="rgb(211,19,47)" rx="2" ry="2" />
<text text-anchor="" x="759.33" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_statement (8 samples, 0.35%)</title><rect x="398.5" y="1077" width="4.1" height="15.0" fill="rgb(237,148,52)" rx="2" ry="2" />
<text text-anchor="" x="401.49" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (24 samples, 1.06%)</title><rect x="779.7" y="581" width="12.5" height="15.0" fill="rgb(241,70,45)" rx="2" ry="2" />
<text text-anchor="" x="782.70" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnaryExpression (8 samples, 0.35%)</title><rect x="216.7" y="1205" width="4.2" height="15.0" fill="rgb(220,4,12)" rx="2" ry="2" />
<text text-anchor="" x="219.71" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_assignment (9 samples, 0.40%)</title><rect x="508.1" y="1637" width="4.6" height="15.0" fill="rgb(254,155,36)" rx="2" ry="2" />
<text text-anchor="" x="511.07" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnaryExpression (6 samples, 0.26%)</title><rect x="243.7" y="1333" width="3.1" height="15.0" fill="rgb(208,66,51)" rx="2" ry="2" />
<text text-anchor="" x="246.71" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_lr_table_entry__destroy (280 samples, 12.32%)</title><rect x="991.1" y="1429" width="145.4" height="15.0" fill="rgb(230,120,52)" rx="2" ry="2" />
<text text-anchor="" x="994.08" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pcc_lr_table_entry..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="483.7" y="1461" width="3.6" height="15.0" fill="rgb(233,64,49)" rx="2" ry="2" />
<text text-anchor="" x="486.66" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_assignment (11 samples, 0.48%)</title><rect x="365.2" y="1461" width="5.8" height="15.0" fill="rgb(230,214,54)" rx="2" ry="2" />
<text text-anchor="" x="368.25" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>createTagsWithFallback (8 samples, 0.35%)</title><rect x="189.2" y="1621" width="4.1" height="15.0" fill="rgb(230,59,2)" rx="2" ry="2" />
<text text-anchor="" x="192.18" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="236.4" y="1413" width="3.2" height="15.0" fill="rgb(228,88,39)" rx="2" ry="2" />
<text text-anchor="" x="239.44" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_conjunction (6 samples, 0.26%)</title><rect x="247.4" y="821" width="3.1" height="15.0" fill="rgb(232,57,47)" rx="2" ry="2" />
<text text-anchor="" x="250.35" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (25 samples, 1.10%)</title><rect x="884.6" y="1029" width="13.0" height="15.0" fill="rgb(213,170,21)" rx="2" ry="2" />
<text text-anchor="" x="887.61" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_callSuffix (6 samples, 0.26%)</title><rect x="375.6" y="1045" width="3.2" height="15.0" fill="rgb(211,112,28)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_infixFunctionCall (10 samples, 0.44%)</title><rect x="269.7" y="1557" width="5.2" height="15.0" fill="rgb(226,91,47)" rx="2" ry="2" />
<text text-anchor="" x="272.68" y="1567.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="804.6" y="421" width="4.2" height="15.0" fill="rgb(216,98,40)" rx="2" ry="2" />
<text text-anchor="" x="807.63" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_infixFunctionCall (6 samples, 0.26%)</title><rect x="454.6" y="1541" width="3.1" height="15.0" fill="rgb(217,93,6)" rx="2" ry="2" />
<text text-anchor="" x="457.58" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="247.4" y="1445" width="4.1" height="15.0" fill="rgb(205,72,44)" rx="2" ry="2" />
<text text-anchor="" x="250.35" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (11 samples, 0.48%)</title><rect x="378.8" y="1669" width="5.7" height="15.0" fill="rgb(214,11,30)" rx="2" ry="2" />
<text text-anchor="" x="381.75" y="1679.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_classMemberDeclaration (9 samples, 0.40%)</title><rect x="280.1" y="1557" width="4.6" height="15.0" fill="rgb(221,193,25)" rx="2" ry="2" />
<text text-anchor="" x="283.07" y="1567.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_asExpression (7 samples, 0.31%)</title><rect x="499.8" y="1605" width="3.6" height="15.0" fill="rgb(212,40,5)" rx="2" ry="2" />
<text text-anchor="" x="502.76" y="1615.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_equality (26 samples, 1.14%)</title><rect x="779.7" y="693" width="13.5" height="15.0" fill="rgb(222,53,30)" rx="2" ry="2" />
<text text-anchor="" x="782.70" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_infixOperation (6 samples, 0.26%)</title><rect x="350.2" y="725" width="3.1" height="15.0" fill="rgb(248,179,2)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_functionDeclaration (9 samples, 0.40%)</title><rect x="519.5" y="1381" width="4.7" height="15.0" fill="rgb(225,210,43)" rx="2" ry="2" />
<text text-anchor="" x="522.50" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnarySuffix (6 samples, 0.26%)</title><rect x="483.7" y="1285" width="3.1" height="15.0" fill="rgb(239,100,47)" rx="2" ry="2" />
<text text-anchor="" x="486.66" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="193.9" y="1269" width="3.6" height="15.0" fill="rgb(229,37,30)" rx="2" ry="2" />
<text text-anchor="" x="196.86" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="375.6" y="1541" width="3.2" height="15.0" fill="rgb(237,35,13)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_statements (9 samples, 0.40%)</title><rect x="322.1" y="1589" width="4.7" height="15.0" fill="rgb(251,116,53)" rx="2" ry="2" />
<text text-anchor="" x="325.14" y="1599.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (9 samples, 0.40%)</title><rect x="398.5" y="1413" width="4.7" height="15.0" fill="rgb(215,180,35)" rx="2" ry="2" />
<text text-anchor="" x="401.49" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="350.2" y="1189" width="3.1" height="15.0" fill="rgb(210,129,52)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_infixOperation (6 samples, 0.26%)</title><rect x="437.4" y="1637" width="3.2" height="15.0" fill="rgb(240,180,25)" rx="2" ry="2" />
<text text-anchor="" x="440.44" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_additiveExpression (7 samples, 0.31%)</title><rect x="177.2" y="469" width="3.7" height="15.0" fill="rgb(212,3,46)" rx="2" ry="2" />
<text text-anchor="" x="180.24" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (16 samples, 0.70%)</title><rect x="388.6" y="1573" width="8.3" height="15.0" fill="rgb(211,163,20)" rx="2" ry="2" />
<text text-anchor="" x="391.62" y="1583.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_simpleIdentifier (6 samples, 0.26%)</title><rect x="849.8" y="501" width="3.1" height="15.0" fill="rgb(242,29,32)" rx="2" ry="2" />
<text text-anchor="" x="852.82" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_elvisExpression (6 samples, 0.26%)</title><rect x="350.2" y="693" width="3.1" height="15.0" fill="rgb(248,134,41)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (10 samples, 0.44%)</title><rect x="1160.4" y="229" width="5.2" height="15.0" fill="rgb(242,89,4)" rx="2" ry="2" />
<text text-anchor="" x="1163.40" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="212.0" y="1509" width="3.1" height="15.0" fill="rgb(219,97,11)" rx="2" ry="2" />
<text text-anchor="" x="215.03" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_infixFunctionCall (6 samples, 0.26%)</title><rect x="375.6" y="1301" width="3.2" height="15.0" fill="rgb(241,71,9)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (10 samples, 0.44%)</title><rect x="274.9" y="1381" width="5.2" height="15.0" fill="rgb(235,189,25)" rx="2" ry="2" />
<text text-anchor="" x="277.88" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="736.1" y="965" width="3.6" height="15.0" fill="rgb(254,192,54)" rx="2" ry="2" />
<text text-anchor="" x="739.07" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_multiplicativeExpression (8 samples, 0.35%)</title><rect x="804.6" y="501" width="4.2" height="15.0" fill="rgb(206,153,34)" rx="2" ry="2" />
<text text-anchor="" x="807.63" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_filePart (6 samples, 0.26%)</title><rect x="460.3" y="1701" width="3.1" height="15.0" fill="rgb(252,17,35)" rx="2" ry="2" />
<text text-anchor="" x="463.29" y="1711.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_valueArguments (6 samples, 0.26%)</title><rect x="350.2" y="981" width="3.1" height="15.0" fill="rgb(254,27,31)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_classBody (15 samples, 0.66%)</title><rect x="243.7" y="1685" width="7.8" height="15.0" fill="rgb(238,194,13)" rx="2" ry="2" />
<text text-anchor="" x="246.71" y="1695.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="202.7" y="1317" width="3.1" height="15.0" fill="rgb(241,95,16)" rx="2" ry="2" />
<text text-anchor="" x="205.68" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (10 samples, 0.44%)</title><rect x="388.6" y="1509" width="5.2" height="15.0" fill="rgb(234,117,50)" rx="2" ry="2" />
<text text-anchor="" x="391.62" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="300.8" y="1349" width="4.2" height="15.0" fill="rgb(206,138,36)" rx="2" ry="2" />
<text text-anchor="" x="303.85" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_primaryExpression (6 samples, 0.26%)</title><rect x="271.8" y="1333" width="3.1" height="15.0" fill="rgb(205,19,4)" rx="2" ry="2" />
<text text-anchor="" x="274.76" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_valueArguments (8 samples, 0.35%)</title><rect x="353.3" y="1557" width="4.2" height="15.0" fill="rgb(208,44,1)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="1567.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnaryExpression (8 samples, 0.35%)</title><rect x="503.4" y="1605" width="4.2" height="15.0" fill="rgb(246,3,42)" rx="2" ry="2" />
<text text-anchor="" x="506.40" y="1615.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="177.2" y="517" width="3.7" height="15.0" fill="rgb(229,8,39)" rx="2" ry="2" />
<text text-anchor="" x="180.24" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_disjunction (6 samples, 0.26%)</title><rect x="225.5" y="1429" width="3.2" height="15.0" fill="rgb(214,13,40)" rx="2" ry="2" />
<text text-anchor="" x="228.54" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (34 samples, 1.50%)</title><rect x="849.3" y="1093" width="17.7" height="15.0" fill="rgb(212,46,44)" rx="2" ry="2" />
<text text-anchor="" x="852.30" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="907.5" y="1157" width="3.1" height="15.0" fill="rgb(225,40,52)" rx="2" ry="2" />
<text text-anchor="" x="910.46" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="334.1" y="1413" width="3.1" height="15.0" fill="rgb(226,43,2)" rx="2" ry="2" />
<text text-anchor="" x="337.08" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="375.6" y="613" width="3.2" height="15.0" fill="rgb(246,4,36)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_prefixUnaryExpression (6 samples, 0.26%)</title><rect x="225.5" y="1045" width="3.2" height="15.0" fill="rgb(253,62,5)" rx="2" ry="2" />
<text text-anchor="" x="228.54" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_classBody (6 samples, 0.26%)</title><rect x="202.7" y="1397" width="3.1" height="15.0" fill="rgb(253,89,50)" rx="2" ry="2" />
<text text-anchor="" x="205.68" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_comparison (6 samples, 0.26%)</title><rect x="440.6" y="1637" width="3.1" height="15.0" fill="rgb(248,81,54)" rx="2" ry="2" />
<text text-anchor="" x="443.55" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_classMemberDeclaration (10 samples, 0.44%)</title><rect x="519.5" y="1445" width="5.2" height="15.0" fill="rgb(250,142,14)" rx="2" ry="2" />
<text text-anchor="" x="522.50" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_rangeExpression (20 samples, 0.88%)</title><rect x="941.7" y="981" width="10.4" height="15.0" fill="rgb(242,125,38)" rx="2" ry="2" />
<text text-anchor="" x="944.74" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="378.8" y="1509" width="4.1" height="15.0" fill="rgb(252,142,30)" rx="2" ry="2" />
<text text-anchor="" x="381.75" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (10 samples, 0.44%)</title><rect x="257.7" y="1573" width="5.2" height="15.0" fill="rgb(250,189,43)" rx="2" ry="2" />
<text text-anchor="" x="260.74" y="1583.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="350.2" y="1093" width="3.1" height="15.0" fill="rgb(242,141,23)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_additiveExpression (6 samples, 0.26%)</title><rect x="247.4" y="565" width="3.1" height="15.0" fill="rgb(211,22,46)" rx="2" ry="2" />
<text text-anchor="" x="250.35" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_statement (40 samples, 1.76%)</title><rect x="755.8" y="757" width="20.8" height="15.0" fill="rgb(246,84,34)" rx="2" ry="2" />
<text text-anchor="" x="758.81" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="193.9" y="1397" width="3.6" height="15.0" fill="rgb(222,209,42)" rx="2" ry="2" />
<text text-anchor="" x="196.86" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_conjunction (25 samples, 1.10%)</title><rect x="884.6" y="1077" width="13.0" height="15.0" fill="rgb(236,117,23)" rx="2" ry="2" />
<text text-anchor="" x="887.61" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_declaration (8 samples, 0.35%)</title><rect x="305.0" y="1589" width="4.2" height="15.0" fill="rgb(254,178,46)" rx="2" ry="2" />
<text text-anchor="" x="308.00" y="1599.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="329.9" y="1413" width="3.7" height="15.0" fill="rgb(240,167,32)" rx="2" ry="2" />
<text text-anchor="" x="332.93" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (14 samples, 0.62%)</title><rect x="928.8" y="1125" width="7.2" height="15.0" fill="rgb(246,88,30)" rx="2" ry="2" />
<text text-anchor="" x="931.76" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_declaration (12 samples, 0.53%)</title><rect x="519.5" y="1573" width="6.2" height="15.0" fill="rgb(230,22,49)" rx="2" ry="2" />
<text text-anchor="" x="522.50" y="1583.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pkotlin_parse (9 samples, 0.40%)</title><rect x="202.7" y="1589" width="4.7" height="15.0" fill="rgb(237,155,24)" rx="2" ry="2" />
<text text-anchor="" x="205.68" y="1599.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_annotatedLambda (9 samples, 0.40%)</title><rect x="941.7" y="725" width="4.7" height="15.0" fill="rgb(215,43,16)" rx="2" ry="2" />
<text text-anchor="" x="944.74" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_statement (7 samples, 0.31%)</title><rect x="216.7" y="1013" width="3.6" height="15.0" fill="rgb(230,201,20)" rx="2" ry="2" />
<text text-anchor="" x="219.71" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnarySuffix (10 samples, 0.44%)</title><rect x="398.5" y="1525" width="5.2" height="15.0" fill="rgb(206,198,43)" rx="2" ry="2" />
<text text-anchor="" x="401.49" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="437.4" y="1461" width="3.2" height="15.0" fill="rgb(249,153,20)" rx="2" ry="2" />
<text text-anchor="" x="440.44" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="247.4" y="1221" width="4.1" height="15.0" fill="rgb(235,141,10)" rx="2" ry="2" />
<text text-anchor="" x="250.35" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_disjunction (6 samples, 0.26%)</title><rect x="375.6" y="917" width="3.2" height="15.0" fill="rgb(207,120,21)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_classMemberDeclarations (6 samples, 0.26%)</title><rect x="305.0" y="1493" width="3.1" height="15.0" fill="rgb(215,80,36)" rx="2" ry="2" />
<text text-anchor="" x="308.00" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="398.5" y="965" width="4.1" height="15.0" fill="rgb(221,133,10)" rx="2" ry="2" />
<text text-anchor="" x="401.49" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="378.8" y="1189" width="3.6" height="15.0" fill="rgb(208,155,27)" rx="2" ry="2" />
<text text-anchor="" x="381.75" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="918.9" y="869" width="3.1" height="15.0" fill="rgb(206,87,2)" rx="2" ry="2" />
<text text-anchor="" x="921.89" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="177.2" y="773" width="3.7" height="15.0" fill="rgb(251,5,0)" rx="2" ry="2" />
<text text-anchor="" x="180.24" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="358.0" y="1605" width="3.6" height="15.0" fill="rgb(244,17,54)" rx="2" ry="2" />
<text text-anchor="" x="360.98" y="1615.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (10 samples, 0.44%)</title><rect x="309.2" y="1669" width="5.1" height="15.0" fill="rgb(209,154,2)" rx="2" ry="2" />
<text text-anchor="" x="312.15" y="1679.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="375.6" y="677" width="3.2" height="15.0" fill="rgb(232,174,38)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="804.6" y="645" width="4.2" height="15.0" fill="rgb(231,129,16)" rx="2" ry="2" />
<text text-anchor="" x="807.63" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="375.6" y="1125" width="3.2" height="15.0" fill="rgb(208,132,46)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_callSuffix (6 samples, 0.26%)</title><rect x="236.4" y="1397" width="3.2" height="15.0" fill="rgb(207,192,11)" rx="2" ry="2" />
<text text-anchor="" x="239.44" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="898.6" y="645" width="3.2" height="15.0" fill="rgb(222,137,46)" rx="2" ry="2" />
<text text-anchor="" x="901.64" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (11 samples, 0.48%)</title><rect x="251.5" y="1573" width="5.7" height="15.0" fill="rgb(225,18,26)" rx="2" ry="2" />
<text text-anchor="" x="254.51" y="1583.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_classDeclaration (11 samples, 0.48%)</title><rect x="251.5" y="1685" width="5.7" height="15.0" fill="rgb(240,9,30)" rx="2" ry="2" />
<text text-anchor="" x="254.51" y="1695.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>createTagsWithFallback1 (7 samples, 0.31%)</title><rect x="207.4" y="1669" width="3.6" height="15.0" fill="rgb(250,42,24)" rx="2" ry="2" />
<text text-anchor="" x="210.36" y="1679.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (15 samples, 0.66%)</title><rect x="1157.8" y="421" width="7.8" height="15.0" fill="rgb(208,181,40)" rx="2" ry="2" />
<text text-anchor="" x="1160.80" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_callSuffix (6 samples, 0.26%)</title><rect x="177.2" y="277" width="3.2" height="15.0" fill="rgb(235,98,11)" rx="2" ry="2" />
<text text-anchor="" x="180.24" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (38 samples, 1.67%)</title><rect x="966.2" y="1413" width="19.7" height="15.0" fill="rgb(242,178,49)" rx="2" ry="2" />
<text text-anchor="" x="969.15" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_infixOperation (20 samples, 0.88%)</title><rect x="941.7" y="1077" width="10.4" height="15.0" fill="rgb(253,173,48)" rx="2" ry="2" />
<text text-anchor="" x="944.74" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pkotlin_parse (6 samples, 0.26%)</title><rect x="199.6" y="1669" width="3.1" height="15.0" fill="rgb(208,87,45)" rx="2" ry="2" />
<text text-anchor="" x="202.57" y="1679.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="225.5" y="1413" width="3.2" height="15.0" fill="rgb(227,190,54)" rx="2" ry="2" />
<text text-anchor="" x="228.54" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="207.4" y="1557" width="3.6" height="15.0" fill="rgb(212,6,19)" rx="2" ry="2" />
<text text-anchor="" x="210.36" y="1567.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ptrArrayDelete (22 samples, 0.97%)</title><rect x="1166.1" y="1509" width="11.4" height="15.0" fill="rgb(244,99,37)" rx="2" ry="2" />
<text text-anchor="" x="1169.11" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_annotatedLambda (6 samples, 0.26%)</title><rect x="177.2" y="245" width="3.2" height="15.0" fill="rgb(252,123,47)" rx="2" ry="2" />
<text text-anchor="" x="180.24" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="454.6" y="1333" width="3.1" height="15.0" fill="rgb(230,169,44)" rx="2" ry="2" />
<text text-anchor="" x="457.58" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="440.6" y="1493" width="3.1" height="15.0" fill="rgb(232,145,40)" rx="2" ry="2" />
<text text-anchor="" x="443.55" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="305.0" y="1413" width="3.1" height="15.0" fill="rgb(245,203,28)" rx="2" ry="2" />
<text text-anchor="" x="308.00" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_setter (6 samples, 0.26%)</title><rect x="835.8" y="949" width="3.1" height="15.0" fill="rgb(205,28,26)" rx="2" ry="2" />
<text text-anchor="" x="838.79" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnaryExpression (16 samples, 0.70%)</title><rect x="365.2" y="1685" width="8.4" height="15.0" fill="rgb(205,100,39)" rx="2" ry="2" />
<text text-anchor="" x="368.25" y="1695.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_lambdaLiteral (7 samples, 0.31%)</title><rect x="358.0" y="1685" width="3.6" height="15.0" fill="rgb(245,219,28)" rx="2" ry="2" />
<text text-anchor="" x="360.98" y="1695.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (14 samples, 0.62%)</title><rect x="928.8" y="1157" width="7.2" height="15.0" fill="rgb(210,132,8)" rx="2" ry="2" />
<text text-anchor="" x="931.76" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (24 samples, 1.06%)</title><rect x="779.7" y="453" width="12.5" height="15.0" fill="rgb(230,86,48)" rx="2" ry="2" />
<text text-anchor="" x="782.70" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_statement (15 samples, 0.66%)</title><rect x="398.5" y="1653" width="7.8" height="15.0" fill="rgb(213,12,16)" rx="2" ry="2" />
<text text-anchor="" x="401.49" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (20 samples, 0.88%)</title><rect x="941.7" y="1029" width="10.4" height="15.0" fill="rgb(222,78,1)" rx="2" ry="2" />
<text text-anchor="" x="944.74" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>findKotlinTags (7 samples, 0.31%)</title><rect x="193.9" y="1669" width="3.6" height="15.0" fill="rgb(216,124,13)" rx="2" ry="2" />
<text text-anchor="" x="196.86" y="1679.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="202.7" y="1285" width="3.1" height="15.0" fill="rgb(206,111,6)" rx="2" ry="2" />
<text text-anchor="" x="205.68" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (6 samples, 0.26%)</title><rect x="1111.1" y="1333" width="3.1" height="15.0" fill="rgb(247,124,40)" rx="2" ry="2" />
<text text-anchor="" x="1114.06" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_expression (6 samples, 0.26%)</title><rect x="350.2" y="1525" width="3.1" height="15.0" fill="rgb(206,35,30)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="177.2" y="485" width="3.7" height="15.0" fill="rgb(223,109,24)" rx="2" ry="2" />
<text text-anchor="" x="180.24" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>parseMio (7 samples, 0.31%)</title><rect x="207.4" y="1701" width="3.6" height="15.0" fill="rgb(221,19,53)" rx="2" ry="2" />
<text text-anchor="" x="210.36" y="1711.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (34 samples, 1.50%)</title><rect x="728.8" y="1093" width="17.7" height="15.0" fill="rgb(245,12,21)" rx="2" ry="2" />
<text text-anchor="" x="731.80" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="804.6" y="613" width="4.2" height="15.0" fill="rgb(227,64,45)" rx="2" ry="2" />
<text text-anchor="" x="807.63" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>batchMakeTags (8 samples, 0.35%)</title><rect x="189.2" y="1701" width="4.1" height="15.0" fill="rgb(239,54,43)" rx="2" ry="2" />
<text text-anchor="" x="192.18" y="1711.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="300.8" y="1253" width="4.2" height="15.0" fill="rgb(221,196,46)" rx="2" ry="2" />
<text text-anchor="" x="303.85" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>parseMio (18 samples, 0.79%)</title><rect x="176.2" y="1589" width="9.3" height="15.0" fill="rgb(215,155,10)" rx="2" ry="2" />
<text text-anchor="" x="179.20" y="1599.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pkotlin_destroy (298 samples, 13.12%)</title><rect x="564.7" y="1509" width="154.8" height="15.0" fill="rgb(211,167,5)" rx="2" ry="2" />
<text text-anchor="" x="567.68" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pkotlin_destroy</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="898.6" y="677" width="3.2" height="15.0" fill="rgb(218,82,28)" rx="2" ry="2" />
<text text-anchor="" x="901.64" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (12 samples, 0.53%)</title><rect x="1159.4" y="373" width="6.2" height="15.0" fill="rgb(241,229,12)" rx="2" ry="2" />
<text text-anchor="" x="1162.36" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="225.5" y="1189" width="3.2" height="15.0" fill="rgb(217,206,17)" rx="2" ry="2" />
<text text-anchor="" x="228.54" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_callSuffix (14 samples, 0.62%)</title><rect x="849.8" y="597" width="7.3" height="15.0" fill="rgb(235,11,54)" rx="2" ry="2" />
<text text-anchor="" x="852.82" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_file (9 samples, 0.40%)</title><rect x="202.7" y="1557" width="4.7" height="15.0" fill="rgb(208,113,24)" rx="2" ry="2" />
<text text-anchor="" x="205.68" y="1567.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_asExpression (6 samples, 0.26%)</title><rect x="440.6" y="1381" width="3.1" height="15.0" fill="rgb(206,106,3)" rx="2" ry="2" />
<text text-anchor="" x="443.55" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_elvisExpression (24 samples, 1.06%)</title><rect x="884.6" y="917" width="12.5" height="15.0" fill="rgb(206,194,42)" rx="2" ry="2" />
<text text-anchor="" x="887.61" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_valueArguments (6 samples, 0.26%)</title><rect x="350.2" y="1589" width="3.1" height="15.0" fill="rgb(243,177,27)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="1599.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="898.6" y="1125" width="3.2" height="15.0" fill="rgb(208,12,52)" rx="2" ry="2" />
<text text-anchor="" x="901.64" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>runMainLoop (18 samples, 0.79%)</title><rect x="176.2" y="1669" width="9.3" height="15.0" fill="rgb(227,213,36)" rx="2" ry="2" />
<text text-anchor="" x="179.20" y="1679.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (11 samples, 0.48%)</title><rect x="216.7" y="1477" width="5.7" height="15.0" fill="rgb(216,121,12)" rx="2" ry="2" />
<text text-anchor="" x="219.71" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="460.3" y="1685" width="3.1" height="15.0" fill="rgb(248,185,33)" rx="2" ry="2" />
<text text-anchor="" x="463.29" y="1695.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_additiveExpression (6 samples, 0.26%)</title><rect x="918.9" y="885" width="3.1" height="15.0" fill="rgb(207,199,12)" rx="2" ry="2" />
<text text-anchor="" x="921.89" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_comparison (6 samples, 0.26%)</title><rect x="350.2" y="789" width="3.1" height="15.0" fill="rgb(253,41,12)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_expression (8 samples, 0.35%)</title><rect x="353.3" y="885" width="4.2" height="15.0" fill="rgb(242,5,25)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="720.5" y="1381" width="3.1" height="15.0" fill="rgb(208,130,25)" rx="2" ry="2" />
<text text-anchor="" x="723.49" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_infixOperation (6 samples, 0.26%)</title><rect x="375.6" y="1365" width="3.2" height="15.0" fill="rgb(234,131,13)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="216.7" y="773" width="3.1" height="15.0" fill="rgb(241,41,25)" rx="2" ry="2" />
<text text-anchor="" x="219.71" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_lr_table__term (284 samples, 12.50%)</title><rect x="572.0" y="1477" width="147.5" height="15.0" fill="rgb(234,30,0)" rx="2" ry="2" />
<text text-anchor="" x="574.95" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pcc_lr_table__term</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pkotlin_parse (7 samples, 0.31%)</title><rect x="207.4" y="1605" width="3.6" height="15.0" fill="rgb(235,60,24)" rx="2" ry="2" />
<text text-anchor="" x="210.36" y="1615.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="353.3" y="933" width="4.2" height="15.0" fill="rgb(236,217,50)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_valueArgument (6 samples, 0.26%)</title><rect x="247.4" y="917" width="3.1" height="15.0" fill="rgb(244,11,32)" rx="2" ry="2" />
<text text-anchor="" x="250.35" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="189.7" y="1173" width="3.1" height="15.0" fill="rgb(228,6,38)" rx="2" ry="2" />
<text text-anchor="" x="192.70" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_classMemberDeclaration (11 samples, 0.48%)</title><rect x="251.5" y="1589" width="5.7" height="15.0" fill="rgb(212,117,40)" rx="2" ry="2" />
<text text-anchor="" x="254.51" y="1599.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (12 samples, 0.53%)</title><rect x="519.5" y="1621" width="6.2" height="15.0" fill="rgb(234,205,10)" rx="2" ry="2" />
<text text-anchor="" x="522.50" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_directlyAssignableExpression (6 samples, 0.26%)</title><rect x="216.7" y="949" width="3.1" height="15.0" fill="rgb(243,15,40)" rx="2" ry="2" />
<text text-anchor="" x="219.71" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_annotatedLambda (12 samples, 0.53%)</title><rect x="365.2" y="1589" width="6.3" height="15.0" fill="rgb(241,100,41)" rx="2" ry="2" />
<text text-anchor="" x="368.25" y="1599.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (10 samples, 0.44%)</title><rect x="236.4" y="1541" width="5.2" height="15.0" fill="rgb(215,42,27)" rx="2" ry="2" />
<text text-anchor="" x="239.44" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="398.5" y="997" width="4.1" height="15.0" fill="rgb(252,113,28)" rx="2" ry="2" />
<text text-anchor="" x="401.49" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_annotatedLambda (7 samples, 0.31%)</title><rect x="216.7" y="1109" width="3.6" height="15.0" fill="rgb(230,153,48)" rx="2" ry="2" />
<text text-anchor="" x="219.71" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_start_main (1,257 samples, 55.33%)</title><rect x="528.3" y="1701" width="652.9" height="15.0" fill="rgb(222,172,0)" rx="2" ry="2" />
<text text-anchor="" x="531.33" y="1711.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__libc_start_main</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_postfixUnaryExpression (6 samples, 0.26%)</title><rect x="375.6" y="1109" width="3.2" height="15.0" fill="rgb(211,92,37)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_equality (8 samples, 0.35%)</title><rect x="804.6" y="757" width="4.2" height="15.0" fill="rgb(234,196,19)" rx="2" ry="2" />
<text text-anchor="" x="807.63" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_statements (6 samples, 0.26%)</title><rect x="454.6" y="1189" width="3.1" height="15.0" fill="rgb(244,9,12)" rx="2" ry="2" />
<text text-anchor="" x="457.58" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="375.6" y="645" width="3.2" height="15.0" fill="rgb(242,77,8)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="804.6" y="677" width="4.2" height="15.0" fill="rgb(249,62,5)" rx="2" ry="2" />
<text text-anchor="" x="807.63" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (12 samples, 0.53%)</title><rect x="365.2" y="1573" width="6.3" height="15.0" fill="rgb(218,13,19)" rx="2" ry="2" />
<text text-anchor="" x="368.25" y="1583.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (25 samples, 1.10%)</title><rect x="928.8" y="1221" width="12.9" height="15.0" fill="rgb(241,88,10)" rx="2" ry="2" />
<text text-anchor="" x="931.76" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="375.6" y="1157" width="3.2" height="15.0" fill="rgb(215,21,8)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_valueArgument (7 samples, 0.31%)</title><rect x="177.2" y="821" width="3.7" height="15.0" fill="rgb(229,205,12)" rx="2" ry="2" />
<text text-anchor="" x="180.24" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (10 samples, 0.44%)</title><rect x="257.7" y="1605" width="5.2" height="15.0" fill="rgb(232,111,44)" rx="2" ry="2" />
<text text-anchor="" x="260.74" y="1615.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_lr_table_entry__destroy (281 samples, 12.37%)</title><rect x="990.6" y="1445" width="145.9" height="15.0" fill="rgb(211,129,54)" rx="2" ry="2" />
<text text-anchor="" x="993.56" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pcc_lr_table_entry..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_expression (6 samples, 0.26%)</title><rect x="375.6" y="949" width="3.2" height="15.0" fill="rgb(244,132,46)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_disjunction (6 samples, 0.26%)</title><rect x="247.4" y="853" width="3.1" height="15.0" fill="rgb(210,72,36)" rx="2" ry="2" />
<text text-anchor="" x="250.35" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="314.3" y="1541" width="3.7" height="15.0" fill="rgb(213,229,18)" rx="2" ry="2" />
<text text-anchor="" x="317.35" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (9 samples, 0.40%)</title><rect x="289.4" y="1669" width="4.7" height="15.0" fill="rgb(242,108,17)" rx="2" ry="2" />
<text text-anchor="" x="292.42" y="1679.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_comparison (6 samples, 0.26%)</title><rect x="350.2" y="1397" width="3.1" height="15.0" fill="rgb(220,73,6)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_statements (10 samples, 0.44%)</title><rect x="508.1" y="1701" width="5.2" height="15.0" fill="rgb(218,61,25)" rx="2" ry="2" />
<text text-anchor="" x="511.07" y="1711.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_assignment (13 samples, 0.57%)</title><rect x="216.2" y="1557" width="6.7" height="15.0" fill="rgb(236,75,35)" rx="2" ry="2" />
<text text-anchor="" x="219.19" y="1567.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_directlyAssignableExpression (7 samples, 0.31%)</title><rect x="508.1" y="1605" width="3.6" height="15.0" fill="rgb(222,105,49)" rx="2" ry="2" />
<text text-anchor="" x="511.07" y="1615.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unlink_chunk.constprop.0 (84 samples, 3.70%)</title><rect x="674.8" y="1413" width="43.6" height="15.0" fill="rgb(246,168,40)" rx="2" ry="2" />
<text text-anchor="" x="677.79" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >unli..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="247.4" y="1061" width="4.1" height="15.0" fill="rgb(219,211,22)" rx="2" ry="2" />
<text text-anchor="" x="250.35" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="247.4" y="485" width="3.1" height="15.0" fill="rgb(240,43,25)" rx="2" ry="2" />
<text text-anchor="" x="250.35" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_lambdaLiteral (7 samples, 0.31%)</title><rect x="378.8" y="1237" width="3.6" height="15.0" fill="rgb(243,229,35)" rx="2" ry="2" />
<text text-anchor="" x="381.75" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_classBody (34 samples, 1.50%)</title><rect x="728.8" y="1141" width="17.7" height="15.0" fill="rgb(230,97,39)" rx="2" ry="2" />
<text text-anchor="" x="731.80" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="799.4" y="837" width="3.2" height="15.0" fill="rgb(247,43,36)" rx="2" ry="2" />
<text text-anchor="" x="802.44" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="849.8" y="485" width="3.1" height="15.0" fill="rgb(210,188,39)" rx="2" ry="2" />
<text text-anchor="" x="852.82" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_genericCallLikeComparison (6 samples, 0.26%)</title><rect x="918.9" y="1045" width="3.1" height="15.0" fill="rgb(248,114,34)" rx="2" ry="2" />
<text text-anchor="" x="921.89" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (192 samples, 8.45%)</title><rect x="748.0" y="1029" width="99.7" height="15.0" fill="rgb(220,143,25)" rx="2" ry="2" />
<text text-anchor="" x="751.02" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pcc_apply_rule</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="350.2" y="1253" width="3.1" height="15.0" fill="rgb(252,142,31)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_declaration (18 samples, 0.79%)</title><rect x="280.1" y="1685" width="9.3" height="15.0" fill="rgb(220,124,9)" rx="2" ry="2" />
<text text-anchor="" x="283.07" y="1695.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (9 samples, 0.40%)</title><rect x="398.5" y="1349" width="4.7" height="15.0" fill="rgb(214,102,45)" rx="2" ry="2" />
<text text-anchor="" x="401.49" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_comparison (6 samples, 0.26%)</title><rect x="454.6" y="1669" width="3.1" height="15.0" fill="rgb(219,45,2)" rx="2" ry="2" />
<text text-anchor="" x="457.58" y="1679.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>createTagsWithFallback (1,187 samples, 52.24%)</title><rect x="564.7" y="1573" width="616.5" height="15.0" fill="rgb(220,228,54)" rx="2" ry="2" />
<text text-anchor="" x="567.68" y="1583.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >createTagsWithFallback</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="375.6" y="965" width="3.2" height="15.0" fill="rgb(228,67,29)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="454.6" y="1301" width="3.1" height="15.0" fill="rgb(205,102,6)" rx="2" ry="2" />
<text text-anchor="" x="457.58" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_classMemberDeclaration (7 samples, 0.31%)</title><rect x="189.2" y="1285" width="3.6" height="15.0" fill="rgb(248,97,40)" rx="2" ry="2" />
<text text-anchor="" x="192.18" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="440.6" y="1461" width="3.1" height="15.0" fill="rgb(238,219,29)" rx="2" ry="2" />
<text text-anchor="" x="443.55" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (42 samples, 1.85%)</title><rect x="884.6" y="1157" width="21.8" height="15.0" fill="rgb(239,191,43)" rx="2" ry="2" />
<text text-anchor="" x="887.61" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >p..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_disjunction (6 samples, 0.26%)</title><rect x="839.9" y="981" width="3.2" height="15.0" fill="rgb(242,110,21)" rx="2" ry="2" />
<text text-anchor="" x="842.95" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="398.5" y="1125" width="4.1" height="15.0" fill="rgb(253,82,21)" rx="2" ry="2" />
<text text-anchor="" x="401.49" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (25 samples, 1.10%)</title><rect x="884.6" y="1093" width="13.0" height="15.0" fill="rgb(254,208,50)" rx="2" ry="2" />
<text text-anchor="" x="887.61" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_functionBody (9 samples, 0.40%)</title><rect x="252.0" y="1493" width="4.7" height="15.0" fill="rgb(209,196,32)" rx="2" ry="2" />
<text text-anchor="" x="255.02" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="872.7" y="997" width="3.6" height="15.0" fill="rgb(240,176,19)" rx="2" ry="2" />
<text text-anchor="" x="875.67" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_lr_answer__destroy (239 samples, 10.52%)</title><rect x="1012.4" y="1381" width="124.1" height="15.0" fill="rgb(250,111,52)" rx="2" ry="2" />
<text text-anchor="" x="1015.38" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pcc_lr_answer__..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (12 samples, 0.53%)</title><rect x="818.7" y="389" width="6.2" height="15.0" fill="rgb(211,32,53)" rx="2" ry="2" />
<text text-anchor="" x="821.65" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_callSuffix (12 samples, 0.53%)</title><rect x="941.7" y="757" width="6.3" height="15.0" fill="rgb(219,143,48)" rx="2" ry="2" />
<text text-anchor="" x="944.74" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (22 samples, 0.97%)</title><rect x="756.3" y="645" width="11.5" height="15.0" fill="rgb(221,152,42)" rx="2" ry="2" />
<text text-anchor="" x="759.33" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown &lt;1f&gt;] (9 samples, 0.40%)</title><rect x="117.5" y="1717" width="4.7" height="15.0" fill="rgb(251,173,48)" rx="2" ry="2" />
<text text-anchor="" x="120.51" y="1727.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pkotlin_parse (18 samples, 0.79%)</title><rect x="176.2" y="1493" width="9.3" height="15.0" fill="rgb(254,23,0)" rx="2" ry="2" />
<text text-anchor="" x="179.20" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_multiplicativeExpression (6 samples, 0.26%)</title><rect x="437.4" y="1477" width="3.2" height="15.0" fill="rgb(213,5,33)" rx="2" ry="2" />
<text text-anchor="" x="440.44" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_rangeExpression (10 samples, 0.44%)</title><rect x="274.9" y="1461" width="5.2" height="15.0" fill="rgb(205,167,20)" rx="2" ry="2" />
<text text-anchor="" x="277.88" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_statement (11 samples, 0.48%)</title><rect x="758.9" y="469" width="5.7" height="15.0" fill="rgb(231,133,8)" rx="2" ry="2" />
<text text-anchor="" x="761.93" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_disjunction (8 samples, 0.35%)</title><rect x="300.8" y="1653" width="4.2" height="15.0" fill="rgb(214,4,20)" rx="2" ry="2" />
<text text-anchor="" x="303.85" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_char_array__term (9 samples, 0.40%)</title><rect x="564.7" y="1477" width="4.7" height="15.0" fill="rgb(252,91,48)" rx="2" ry="2" />
<text text-anchor="" x="567.68" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="216.7" y="1349" width="4.2" height="15.0" fill="rgb(240,21,29)" rx="2" ry="2" />
<text text-anchor="" x="219.71" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (10 samples, 0.44%)</title><rect x="216.7" y="1445" width="5.2" height="15.0" fill="rgb(232,16,33)" rx="2" ry="2" />
<text text-anchor="" x="219.71" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_lambdaLiteral (9 samples, 0.40%)</title><rect x="398.5" y="1429" width="4.7" height="15.0" fill="rgb(237,109,18)" rx="2" ry="2" />
<text text-anchor="" x="401.49" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_block (6 samples, 0.26%)</title><rect x="252.0" y="1461" width="3.1" height="15.0" fill="rgb(253,1,40)" rx="2" ry="2" />
<text text-anchor="" x="255.02" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="353.3" y="453" width="4.2" height="15.0" fill="rgb(236,64,0)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_disjunction (8 samples, 0.35%)</title><rect x="353.3" y="853" width="4.2" height="15.0" fill="rgb(210,151,53)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="898.6" y="997" width="3.2" height="15.0" fill="rgb(243,150,54)" rx="2" ry="2" />
<text text-anchor="" x="901.64" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (15 samples, 0.66%)</title><rect x="1157.8" y="405" width="7.8" height="15.0" fill="rgb(242,127,3)" rx="2" ry="2" />
<text text-anchor="" x="1160.80" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="243.7" y="1253" width="3.1" height="15.0" fill="rgb(232,70,49)" rx="2" ry="2" />
<text text-anchor="" x="246.71" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="350.2" y="485" width="3.1" height="15.0" fill="rgb(221,195,17)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="460.3" y="1653" width="3.1" height="15.0" fill="rgb(220,66,5)" rx="2" ry="2" />
<text text-anchor="" x="463.29" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_functionType (7 samples, 0.31%)</title><rect x="872.7" y="1013" width="3.6" height="15.0" fill="rgb(244,37,27)" rx="2" ry="2" />
<text text-anchor="" x="875.67" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_lambdaLiteral (6 samples, 0.26%)</title><rect x="274.9" y="1173" width="3.1" height="15.0" fill="rgb(250,193,27)" rx="2" ry="2" />
<text text-anchor="" x="277.88" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (9 samples, 0.40%)</title><rect x="398.5" y="1253" width="4.7" height="15.0" fill="rgb(214,185,46)" rx="2" ry="2" />
<text text-anchor="" x="401.49" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (10 samples, 0.44%)</title><rect x="269.7" y="1509" width="5.2" height="15.0" fill="rgb(223,59,18)" rx="2" ry="2" />
<text text-anchor="" x="272.68" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (20 samples, 0.88%)</title><rect x="941.7" y="1189" width="10.4" height="15.0" fill="rgb(236,128,27)" rx="2" ry="2" />
<text text-anchor="" x="944.74" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="924.1" y="1189" width="3.1" height="15.0" fill="rgb(227,226,52)" rx="2" ry="2" />
<text text-anchor="" x="927.08" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="928.8" y="1061" width="3.1" height="15.0" fill="rgb(231,141,32)" rx="2" ry="2" />
<text text-anchor="" x="931.76" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="350.2" y="1349" width="3.1" height="15.0" fill="rgb(217,19,35)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="247.4" y="517" width="3.1" height="15.0" fill="rgb(216,101,5)" rx="2" ry="2" />
<text text-anchor="" x="250.35" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="193.9" y="1429" width="3.6" height="15.0" fill="rgb(250,125,25)" rx="2" ry="2" />
<text text-anchor="" x="196.86" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="849.8" y="517" width="3.1" height="15.0" fill="rgb(242,214,12)" rx="2" ry="2" />
<text text-anchor="" x="852.82" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_annotatedLambda (7 samples, 0.31%)</title><rect x="483.7" y="1509" width="3.6" height="15.0" fill="rgb(216,85,10)" rx="2" ry="2" />
<text text-anchor="" x="486.66" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_postfixUnaryExpression (6 samples, 0.26%)</title><rect x="350.2" y="1077" width="3.1" height="15.0" fill="rgb(252,16,4)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_directlyAssignableExpression (6 samples, 0.26%)</title><rect x="418.2" y="1669" width="3.1" height="15.0" fill="rgb(249,31,12)" rx="2" ry="2" />
<text text-anchor="" x="421.22" y="1679.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="350.2" y="773" width="3.1" height="15.0" fill="rgb(214,17,12)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_statements (6 samples, 0.26%)</title><rect x="398.5" y="821" width="3.1" height="15.0" fill="rgb(241,204,20)" rx="2" ry="2" />
<text text-anchor="" x="401.49" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_multiplicativeExpression (6 samples, 0.26%)</title><rect x="375.6" y="597" width="3.2" height="15.0" fill="rgb(254,134,2)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_statements (7 samples, 0.31%)</title><rect x="483.7" y="1445" width="3.6" height="15.0" fill="rgb(224,51,43)" rx="2" ry="2" />
<text text-anchor="" x="486.66" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_assignment (8 samples, 0.35%)</title><rect x="216.7" y="1269" width="4.2" height="15.0" fill="rgb(225,25,7)" rx="2" ry="2" />
<text text-anchor="" x="219.71" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_statements (25 samples, 1.10%)</title><rect x="928.8" y="1237" width="12.9" height="15.0" fill="rgb(231,206,4)" rx="2" ry="2" />
<text text-anchor="" x="931.76" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (10 samples, 0.44%)</title><rect x="236.4" y="1605" width="5.2" height="15.0" fill="rgb(228,204,3)" rx="2" ry="2" />
<text text-anchor="" x="239.44" y="1615.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_rangeExpression (24 samples, 1.06%)</title><rect x="884.6" y="853" width="12.5" height="15.0" fill="rgb(244,181,42)" rx="2" ry="2" />
<text text-anchor="" x="887.61" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (9 samples, 0.40%)</title><rect x="1128.7" y="1285" width="4.7" height="15.0" fill="rgb(242,17,23)" rx="2" ry="2" />
<text text-anchor="" x="1131.71" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="499.8" y="1621" width="3.6" height="15.0" fill="rgb(208,166,46)" rx="2" ry="2" />
<text text-anchor="" x="502.76" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_inside_equality (8 samples, 0.35%)</title><rect x="353.3" y="789" width="4.2" height="15.0" fill="rgb(215,2,27)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_jumpExpression (8 samples, 0.35%)</title><rect x="804.6" y="885" width="4.2" height="15.0" fill="rgb(253,175,42)" rx="2" ry="2" />
<text text-anchor="" x="807.63" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_statements (9 samples, 0.40%)</title><rect x="728.8" y="917" width="4.7" height="15.0" fill="rgb(233,12,43)" rx="2" ry="2" />
<text text-anchor="" x="731.80" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="353.3" y="1573" width="4.2" height="15.0" fill="rgb(214,64,22)" rx="2" ry="2" />
<text text-anchor="" x="356.30" y="1583.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (11 samples, 0.48%)</title><rect x="780.7" y="293" width="5.8" height="15.0" fill="rgb(215,17,28)" rx="2" ry="2" />
<text text-anchor="" x="783.74" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (56 samples, 2.46%)</title><rect x="1136.5" y="1445" width="29.1" height="15.0" fill="rgb(227,5,0)" rx="2" ry="2" />
<text text-anchor="" x="1139.51" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pc..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___libc_free (16 samples, 0.70%)</title><rect x="1169.2" y="1461" width="8.3" height="15.0" fill="rgb(217,152,29)" rx="2" ry="2" />
<text text-anchor="" x="1172.23" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_asExpression (8 samples, 0.35%)</title><rect x="212.0" y="1621" width="4.2" height="15.0" fill="rgb(252,20,38)" rx="2" ry="2" />
<text text-anchor="" x="215.03" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (56 samples, 2.46%)</title><rect x="1136.5" y="1461" width="29.1" height="15.0" fill="rgb(246,171,52)" rx="2" ry="2" />
<text text-anchor="" x="1139.51" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pc..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_callSuffix (8 samples, 0.35%)</title><rect x="216.7" y="1141" width="4.2" height="15.0" fill="rgb(248,33,22)" rx="2" ry="2" />
<text text-anchor="" x="219.71" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_infixFunctionCall (6 samples, 0.26%)</title><rect x="918.9" y="949" width="3.1" height="15.0" fill="rgb(216,43,31)" rx="2" ry="2" />
<text text-anchor="" x="921.89" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_callSuffix (6 samples, 0.26%)</title><rect x="350.2" y="1013" width="3.1" height="15.0" fill="rgb(244,78,42)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (28 samples, 1.23%)</title><rect x="818.1" y="549" width="14.6" height="15.0" fill="rgb(214,3,0)" rx="2" ry="2" />
<text text-anchor="" x="821.13" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="247.4" y="773" width="3.1" height="15.0" fill="rgb(213,175,15)" rx="2" ry="2" />
<text text-anchor="" x="250.35" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="350.2" y="1637" width="3.1" height="15.0" fill="rgb(236,36,17)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="243.7" y="1349" width="3.1" height="15.0" fill="rgb(232,194,25)" rx="2" ry="2" />
<text text-anchor="" x="246.71" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>createTagsForArgs (8 samples, 0.35%)</title><rect x="189.2" y="1685" width="4.1" height="15.0" fill="rgb(222,5,21)" rx="2" ry="2" />
<text text-anchor="" x="192.18" y="1695.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="207.4" y="1589" width="3.6" height="15.0" fill="rgb(223,184,21)" rx="2" ry="2" />
<text text-anchor="" x="210.36" y="1599.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_functionBody (6 samples, 0.26%)</title><rect x="207.4" y="1253" width="3.1" height="15.0" fill="rgb(210,27,49)" rx="2" ry="2" />
<text text-anchor="" x="210.36" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (32 samples, 1.41%)</title><rect x="849.8" y="805" width="16.6" height="15.0" fill="rgb(234,45,53)" rx="2" ry="2" />
<text text-anchor="" x="852.82" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="350.2" y="517" width="3.1" height="15.0" fill="rgb(250,171,6)" rx="2" ry="2" />
<text text-anchor="" x="353.18" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="216.7" y="1253" width="4.2" height="15.0" fill="rgb(246,58,43)" rx="2" ry="2" />
<text text-anchor="" x="219.71" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="898.6" y="965" width="3.2" height="15.0" fill="rgb(220,129,10)" rx="2" ry="2" />
<text text-anchor="" x="901.64" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (13 samples, 0.57%)</title><rect x="176.2" y="1061" width="6.7" height="15.0" fill="rgb(221,210,7)" rx="2" ry="2" />
<text text-anchor="" x="179.20" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="225.5" y="1029" width="3.2" height="15.0" fill="rgb(205,167,14)" rx="2" ry="2" />
<text text-anchor="" x="228.54" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (9 samples, 0.40%)</title><rect x="264.5" y="1541" width="4.7" height="15.0" fill="rgb(211,98,54)" rx="2" ry="2" />
<text text-anchor="" x="267.49" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnaryExpression (10 samples, 0.44%)</title><rect x="274.9" y="1301" width="5.2" height="15.0" fill="rgb(210,216,8)" rx="2" ry="2" />
<text text-anchor="" x="277.88" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>createTagsForEntry (8 samples, 0.35%)</title><rect x="189.2" y="1669" width="4.1" height="15.0" fill="rgb(213,135,5)" rx="2" ry="2" />
<text text-anchor="" x="192.18" y="1679.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="375.6" y="997" width="3.2" height="15.0" fill="rgb(213,125,49)" rx="2" ry="2" />
<text text-anchor="" x="378.63" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="358.0" y="1669" width="3.6" height="15.0" fill="rgb(242,172,10)" rx="2" ry="2" />
<text text-anchor="" x="360.98" y="1679.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_prefixUnaryExpression (26 samples, 1.14%)</title><rect x="818.7" y="533" width="13.5" height="15.0" fill="rgb(224,146,50)" rx="2" ry="2" />
<text text-anchor="" x="821.65" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (10 samples, 0.44%)</title><rect x="398.5" y="1573" width="5.2" height="15.0" fill="rgb(216,56,49)" rx="2" ry="2" />
<text text-anchor="" x="401.49" y="1583.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_annotatedLambda (7 samples, 0.31%)</title><rect x="378.8" y="1269" width="3.6" height="15.0" fill="rgb(219,72,43)" rx="2" ry="2" />
<text text-anchor="" x="381.75" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (8 samples, 0.35%)</title><rect x="398.5" y="1157" width="4.1" height="15.0" fill="rgb(232,175,17)" rx="2" ry="2" />
<text text-anchor="" x="401.49" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_do_action (37 samples, 1.63%)</title><rect x="1146.4" y="1157" width="19.2" height="15.0" fill="rgb(239,181,54)" rx="2" ry="2" />
<text text-anchor="" x="1149.37" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (9 samples, 0.40%)</title><rect x="280.1" y="1637" width="4.6" height="15.0" fill="rgb(211,16,4)" rx="2" ry="2" />
<text text-anchor="" x="283.07" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_evaluate_rule_postfixUnaryExpression (6 samples, 0.26%)</title><rect x="418.2" y="1637" width="3.1" height="15.0" fill="rgb(245,108,41)" rx="2" ry="2" />
<text text-anchor="" x="421.22" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="418.2" y="1621" width="3.1" height="15.0" fill="rgb(224,122,34)" rx="2" ry="2" />
<text text-anchor="" x="421.22" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (6 samples, 0.26%)</title><rect x="437.4" y="1493" width="3.2" height="15.0" fill="rgb(217,63,40)" rx="2" ry="2" />
<text text-anchor="" x="440.44" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (7 samples, 0.31%)</title><rect x="872.7" y="965" width="3.6" height="15.0" fill="rgb(240,54,22)" rx="2" ry="2" />
<text text-anchor="" x="875.67" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pcc_apply_rule (10 samples, 0.44%)</title><rect x="309.2" y="1605" width="5.1" height="15.0" fill="rgb(254,160,37)" rx="2" ry="2" />
<text text-anchor="" x="312.15" y="1615.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
</svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment