Skip to content

Instantly share code, notes, and snippets.

@eed3si9n
Created April 1, 2018 20:05
Show Gist options
  • Save eed3si9n/82d43acc95a002876d357bd8ad5f40d5 to your computer and use it in GitHub Desktop.
Save eed3si9n/82d43acc95a002876d357bd8ad5f40d5 to your computer and use it in GitHub Desktop.
sbt exit
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="4662" onload="init(evt)" viewBox="0 0 1200 4662" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<style type="text/css">
text { font-family:Verdana; font-size:12px; fill:black; }
.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" y="0" width="100%" height="100%" fill="rgb(240,240,220)"/>
<text x="600" y="24" text-anchor="middle" style="font-size:17px">Flame Graph</text>
<text x="10" y="4645" id="details"> </text>
<text x="10" y="24" id="unzoom" onclick="unzoom()" style="opacity:0.0;cursor:pointer">Reset Zoom</text>
<text x="1090" y="24" id="search" onmouseover="searchover()" onmouseout="searchout()" onclick="search_prompt()" style="opacity:0.1;cursor:pointer">Search</text>
<text x="1090" y="4645" id="matched"> </text>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>all (9825 samples, 100.00%)</title><rect x="10.0" y="4611.0" width="1180.0" height="15" fill="#c83232" rx="2" ry="2"/>
<text x="13.0" y="4622.0">all</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Thread.run (2928 samples, 29.80%)</title><rect x="10.0" y="4595.0" width="351.7" height="15" fill="#39cf39" rx="2" ry="2"/>
<text x="13.0" y="4606.0">java/lang/Thread.run</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ThreadPoolExecutor$Worker.run (2915 samples, 29.67%)</title><rect x="11.4" y="4579.0" width="350.1" height="15" fill="#5ff15f" rx="2" ry="2"/>
<text x="14.4" y="4590.0">java/util/concurrent/ThreadPoolExecutor$Worker.run</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ThreadPoolExecutor.runWorker (2915 samples, 29.67%)</title><rect x="11.4" y="4563.0" width="350.1" height="15" fill="#4de14d" rx="2" ry="2"/>
<text x="14.4" y="4574.0">java/util/concurrent/ThreadPoolExecutor.runWorker</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/lmax/disruptor/BatchEventProcessor.run (59 samples, 0.60%)</title><rect x="12.5" y="4547.0" width="7.1" height="15" fill="#51e551" rx="2" ry="2"/>
<text x="15.5" y="4558.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/lmax/disruptor/ProcessingSequenceBarrier.waitFor (30 samples, 0.31%)</title><rect x="12.6" y="4531.0" width="3.6" height="15" fill="#3fd43f" rx="2" ry="2"/>
<text x="15.6" y="4542.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/lmax/disruptor/TimeoutBlockingWaitStrategy.waitFor (30 samples, 0.31%)</title><rect x="12.6" y="4515.0" width="3.6" height="15" fill="#34ca34" rx="2" ry="2"/>
<text x="15.6" y="4526.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject.awaitNanos (30 samples, 0.31%)</title><rect x="12.6" y="4499.0" width="3.6" height="15" fill="#5aed5a" rx="2" ry="2"/>
<text x="15.6" y="4510.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/LockSupport.parkNanos (29 samples, 0.30%)</title><rect x="12.8" y="4483.0" width="3.4" height="15" fill="#5aed5a" rx="2" ry="2"/>
<text x="15.8" y="4494.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/misc/Unsafe.park (28 samples, 0.28%)</title><rect x="12.9" y="4467.0" width="3.3" height="15" fill="#6afb6a" rx="2" ry="2"/>
<text x="15.9" y="4478.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/logging/log4j/core/async/RingBufferLogEventHandler.onEvent (28 samples, 0.28%)</title><rect x="16.2" y="4531.0" width="3.4" height="15" fill="#49dd49" rx="2" ry="2"/>
<text x="19.2" y="4542.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/logging/log4j/core/async/RingBufferLogEventHandler.onEvent (28 samples, 0.28%)</title><rect x="16.2" y="4515.0" width="3.4" height="15" fill="#51e451" rx="2" ry="2"/>
<text x="19.2" y="4526.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/logging/log4j/core/async/RingBufferLogEvent.execute (28 samples, 0.28%)</title><rect x="16.2" y="4499.0" width="3.4" height="15" fill="#63f563" rx="2" ry="2"/>
<text x="19.2" y="4510.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/logging/log4j/core/async/AsyncLogger.actualAsyncLog (28 samples, 0.28%)</title><rect x="16.2" y="4483.0" width="3.4" height="15" fill="#34c934" rx="2" ry="2"/>
<text x="19.2" y="4494.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/logging/log4j/core/config/AwaitCompletionReliabilityStrategy.log (28 samples, 0.28%)</title><rect x="16.2" y="4467.0" width="3.4" height="15" fill="#35ca35" rx="2" ry="2"/>
<text x="19.2" y="4478.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/logging/log4j/core/config/LoggerConfig.log (28 samples, 0.28%)</title><rect x="16.2" y="4451.0" width="3.4" height="15" fill="#51e551" rx="2" ry="2"/>
<text x="19.2" y="4462.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/logging/log4j/core/config/LoggerConfig.processLogEvent (28 samples, 0.28%)</title><rect x="16.2" y="4435.0" width="3.4" height="15" fill="#5aec5a" rx="2" ry="2"/>
<text x="19.2" y="4446.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/logging/log4j/core/config/LoggerConfig.callAppenders (28 samples, 0.28%)</title><rect x="16.2" y="4419.0" width="3.4" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="19.2" y="4430.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/logging/log4j/core/config/AppenderControl.callAppender (28 samples, 0.28%)</title><rect x="16.2" y="4403.0" width="3.4" height="15" fill="#49dd49" rx="2" ry="2"/>
<text x="19.2" y="4414.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/logging/log4j/core/config/AppenderControl.callAppenderPreventRecursion (28 samples, 0.28%)</title><rect x="16.2" y="4387.0" width="3.4" height="15" fill="#36cb36" rx="2" ry="2"/>
<text x="19.2" y="4398.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/logging/log4j/core/config/AppenderControl.callAppender0 (28 samples, 0.28%)</title><rect x="16.2" y="4371.0" width="3.4" height="15" fill="#4bde4b" rx="2" ry="2"/>
<text x="19.2" y="4382.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/logging/log4j/core/config/AppenderControl.tryCallAppender (28 samples, 0.28%)</title><rect x="16.2" y="4355.0" width="3.4" height="15" fill="#5bed5b" rx="2" ry="2"/>
<text x="19.2" y="4366.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/ConsoleAppender.append (28 samples, 0.28%)</title><rect x="16.2" y="4339.0" width="3.4" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="19.2" y="4350.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/ConsoleAppender.appendMessage (26 samples, 0.26%)</title><rect x="16.5" y="4323.0" width="3.1" height="15" fill="#69fb69" rx="2" ry="2"/>
<text x="19.5" y="4334.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/ConsoleAppender.appendMessageContent (26 samples, 0.26%)</title><rect x="16.5" y="4307.0" width="3.1" height="15" fill="#64f664" rx="2" ry="2"/>
<text x="19.5" y="4318.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractIterable.foreach (26 samples, 0.26%)</title><rect x="16.5" y="4291.0" width="3.1" height="15" fill="#51e451" rx="2" ry="2"/>
<text x="19.5" y="4302.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IterableLike.foreach$ (26 samples, 0.26%)</title><rect x="16.5" y="4275.0" width="3.1" height="15" fill="#37cd37" rx="2" ry="2"/>
<text x="19.5" y="4286.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IterableLike.foreach (26 samples, 0.26%)</title><rect x="16.5" y="4259.0" width="3.1" height="15" fill="#59eb59" rx="2" ry="2"/>
<text x="19.5" y="4270.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractIterator.foreach (26 samples, 0.26%)</title><rect x="16.5" y="4243.0" width="3.1" height="15" fill="#4ade4a" rx="2" ry="2"/>
<text x="19.5" y="4254.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/Iterator.foreach$ (26 samples, 0.26%)</title><rect x="16.5" y="4227.0" width="3.1" height="15" fill="#5cee5c" rx="2" ry="2"/>
<text x="19.5" y="4238.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/Iterator.foreach (26 samples, 0.26%)</title><rect x="16.5" y="4211.0" width="3.1" height="15" fill="#68fa68" rx="2" ry="2"/>
<text x="19.5" y="4222.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/ConsoleAppender$$Lambda$314/903145591.apply (26 samples, 0.26%)</title><rect x="16.5" y="4195.0" width="3.1" height="15" fill="#5ff15f" rx="2" ry="2"/>
<text x="19.5" y="4206.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/ConsoleAppender.$anonfun$appendMessageContent$6$adapted (26 samples, 0.26%)</title><rect x="16.5" y="4179.0" width="3.1" height="15" fill="#41d641" rx="2" ry="2"/>
<text x="19.5" y="4190.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/ConsoleAppender.$anonfun$appendMessageContent$6 (26 samples, 0.26%)</title><rect x="16.5" y="4163.0" width="3.1" height="15" fill="#34ca34" rx="2" ry="2"/>
<text x="19.5" y="4174.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/ConsoleAppender.appendLog (26 samples, 0.26%)</title><rect x="16.5" y="4147.0" width="3.1" height="15" fill="#5ef05e" rx="2" ry="2"/>
<text x="19.5" y="4158.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/ConsoleAppender.appendLog (26 samples, 0.26%)</title><rect x="16.5" y="4131.0" width="3.1" height="15" fill="#45da45" rx="2" ry="2"/>
<text x="19.5" y="4142.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractIterator.foreach (24 samples, 0.24%)</title><rect x="16.6" y="4115.0" width="2.9" height="15" fill="#57ea57" rx="2" ry="2"/>
<text x="19.6" y="4126.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/Iterator.foreach$ (24 samples, 0.24%)</title><rect x="16.6" y="4099.0" width="2.9" height="15" fill="#5ff15f" rx="2" ry="2"/>
<text x="19.6" y="4110.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/Iterator.foreach (24 samples, 0.24%)</title><rect x="16.6" y="4083.0" width="2.9" height="15" fill="#6dfe6d" rx="2" ry="2"/>
<text x="19.6" y="4094.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/ConsoleAppender$$Lambda$317/2049837702.apply (18 samples, 0.18%)</title><rect x="16.6" y="4067.0" width="2.2" height="15" fill="#47dc47" rx="2" ry="2"/>
<text x="19.6" y="4078.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/ConsoleAppender.$anonfun$appendLog$1$adapted (18 samples, 0.18%)</title><rect x="16.6" y="4051.0" width="2.2" height="15" fill="#40d540" rx="2" ry="2"/>
<text x="19.6" y="4062.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/ConsoleAppender.$anonfun$appendLog$1 (18 samples, 0.18%)</title><rect x="16.6" y="4035.0" width="2.2" height="15" fill="#6cfe6c" rx="2" ry="2"/>
<text x="19.6" y="4046.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/ConsoleAppender.write (18 samples, 0.18%)</title><rect x="16.6" y="4019.0" width="2.2" height="15" fill="#5def5d" rx="2" ry="2"/>
<text x="19.6" y="4030.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/ConsoleOut$$anon$3.println (16 samples, 0.16%)</title><rect x="16.8" y="4003.0" width="2.0" height="15" fill="#5ff15f" rx="2" ry="2"/>
<text x="19.8" y="4014.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/PrintWriter.flush (14 samples, 0.14%)</title><rect x="16.8" y="3987.0" width="1.7" height="15" fill="#59eb59" rx="2" ry="2"/>
<text x="19.8" y="3998.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/BufferedWriter.flush (13 samples, 0.13%)</title><rect x="16.8" y="3971.0" width="1.6" height="15" fill="#36cb36" rx="2" ry="2"/>
<text x="19.8" y="3982.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/OutputStreamWriter.flush (12 samples, 0.12%)</title><rect x="17.0" y="3955.0" width="1.4" height="15" fill="#57ea57" rx="2" ry="2"/>
<text x="20.0" y="3966.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/cs/StreamEncoder.flush (12 samples, 0.12%)</title><rect x="17.0" y="3939.0" width="1.4" height="15" fill="#67f867" rx="2" ry="2"/>
<text x="20.0" y="3950.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/cs/StreamEncoder.implFlush (12 samples, 0.12%)</title><rect x="17.0" y="3923.0" width="1.4" height="15" fill="#42d642" rx="2" ry="2"/>
<text x="20.0" y="3934.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/cs/StreamEncoder.implFlushBuffer (12 samples, 0.12%)</title><rect x="17.0" y="3907.0" width="1.4" height="15" fill="#4ce04c" rx="2" ry="2"/>
<text x="20.0" y="3918.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/cs/StreamEncoder.writeBytes (12 samples, 0.12%)</title><rect x="17.0" y="3891.0" width="1.4" height="15" fill="#5ff25f" rx="2" ry="2"/>
<text x="20.0" y="3902.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/FileOutputStream.write (12 samples, 0.12%)</title><rect x="17.0" y="3875.0" width="1.4" height="15" fill="#4ee24e" rx="2" ry="2"/>
<text x="20.0" y="3886.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/FileOutputStream.writeBytes (12 samples, 0.12%)</title><rect x="17.0" y="3859.0" width="1.4" height="15" fill="#40d540" rx="2" ry="2"/>
<text x="20.0" y="3870.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/FutureTask.run (1748 samples, 17.79%)</title><rect x="19.7" y="4547.0" width="210.0" height="15" fill="#42d742" rx="2" ry="2"/>
<text x="22.7" y="4558.0">java/util/concurrent/Future..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/Executors$RunnableAdapter.call (1727 samples, 17.58%)</title><rect x="19.7" y="4531.0" width="207.4" height="15" fill="#47db47" rx="2" ry="2"/>
<text x="22.7" y="4542.0">java/util/concurrent/Execut..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/FutureTask.run (1727 samples, 17.58%)</title><rect x="19.7" y="4515.0" width="207.4" height="15" fill="#3bd13b" rx="2" ry="2"/>
<text x="22.7" y="4526.0">java/util/concurrent/Future..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/CompletionService$$anon$2.call (1727 samples, 17.58%)</title><rect x="19.7" y="4499.0" width="207.4" height="15" fill="#4fe24f" rx="2" ry="2"/>
<text x="22.7" y="4510.0">sbt/CompletionService$$anon..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/ConcurrentRestrictions$$anon$4$$Lambda$1849/584349634.apply (1727 samples, 17.58%)</title><rect x="19.7" y="4483.0" width="207.4" height="15" fill="#67f967" rx="2" ry="2"/>
<text x="22.7" y="4494.0">sbt/ConcurrentRestrictions$..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/ConcurrentRestrictions$$anon$4.$anonfun$submitValid$1 (1727 samples, 17.58%)</title><rect x="19.7" y="4467.0" width="207.4" height="15" fill="#68fa68" rx="2" ry="2"/>
<text x="22.7" y="4478.0">sbt/ConcurrentRestrictions$..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Execute$$Lambda$1842/1014135205.apply (1720 samples, 17.51%)</title><rect x="20.6" y="4451.0" width="206.5" height="15" fill="#35cb35" rx="2" ry="2"/>
<text x="23.6" y="4462.0">sbt/Execute$$Lambda$1842/10..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Execute.$anonfun$submit$1 (1720 samples, 17.51%)</title><rect x="20.6" y="4435.0" width="206.5" height="15" fill="#68f968" rx="2" ry="2"/>
<text x="23.6" y="4446.0">sbt/Execute.$anonfun$submit$1</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Execute.work (1720 samples, 17.51%)</title><rect x="20.6" y="4419.0" width="206.5" height="15" fill="#50e350" rx="2" ry="2"/>
<text x="23.6" y="4430.0">sbt/Execute.work</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/ErrorHandling$.wideConvert (1717 samples, 17.48%)</title><rect x="20.9" y="4403.0" width="206.2" height="15" fill="#50e450" rx="2" ry="2"/>
<text x="23.9" y="4414.0">sbt/internal/util/ErrorHand..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Execute$$Lambda$1851/925371009.apply (1717 samples, 17.48%)</title><rect x="20.9" y="4387.0" width="206.2" height="15" fill="#45d945" rx="2" ry="2"/>
<text x="23.9" y="4398.0">sbt/Execute$$Lambda$1851/92..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Execute.$anonfun$submit$2 (1717 samples, 17.48%)</title><rect x="20.9" y="4371.0" width="206.2" height="15" fill="#6dfe6d" rx="2" ry="2"/>
<text x="23.9" y="4382.0">sbt/Execute.$anonfun$submit$2</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/std/Transform$$anon$4.work (1717 samples, 17.48%)</title><rect x="20.9" y="4355.0" width="206.2" height="15" fill="#4fe34f" rx="2" ry="2"/>
<text x="23.9" y="4366.0">sbt/std/Transform$$anon$4.w..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/$tilde$greater$$Lambda$1834/869758554.apply (1713 samples, 17.44%)</title><rect x="20.9" y="4339.0" width="205.8" height="15" fill="#41d641" rx="2" ry="2"/>
<text x="23.9" y="4350.0">sbt/internal/util/$tilde$gr..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/$tilde$greater.$anonfun$$u2219$1 (1713 samples, 17.44%)</title><rect x="20.9" y="4323.0" width="205.8" height="15" fill="#37cc37" rx="2" ry="2"/>
<text x="23.9" y="4334.0">sbt/internal/util/$tilde$gr..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/Function1$$Lambda$596/566698125.apply (1712 samples, 17.42%)</title><rect x="21.0" y="4307.0" width="205.7" height="15" fill="#6afc6a" rx="2" ry="2"/>
<text x="24.0" y="4318.0">scala/Function1$$Lambda$596..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/Function1.$anonfun$compose$1 (1711 samples, 17.41%)</title><rect x="21.2" y="4291.0" width="205.5" height="15" fill="#36cc36" rx="2" ry="2"/>
<text x="24.2" y="4302.0">scala/Function1.$anonfun$co..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Classpaths$$$Lambda$1069/397639322.apply (11 samples, 0.11%)</title><rect x="22.7" y="4275.0" width="1.4" height="15" fill="#50e350" rx="2" ry="2"/>
<text x="25.7" y="4286.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Classpaths$.$anonfun$depMap$1 (11 samples, 0.11%)</title><rect x="22.7" y="4259.0" width="1.4" height="15" fill="#49dd49" rx="2" ry="2"/>
<text x="25.7" y="4270.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/std/Streams$$anon$3$$anon$2.log (10 samples, 0.10%)</title><rect x="22.9" y="4243.0" width="1.2" height="15" fill="#42d742" rx="2" ry="2"/>
<text x="25.9" y="4254.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/std/Streams$$anon$3$$anon$2.log$lzycompute (10 samples, 0.10%)</title><rect x="22.9" y="4227.0" width="1.2" height="15" fill="#68fa68" rx="2" ry="2"/>
<text x="25.9" y="4238.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/std/TaskStreams.log$ (10 samples, 0.10%)</title><rect x="22.9" y="4211.0" width="1.2" height="15" fill="#51e551" rx="2" ry="2"/>
<text x="25.9" y="4222.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/std/TaskStreams.log (10 samples, 0.10%)</title><rect x="22.9" y="4195.0" width="1.2" height="15" fill="#4de14d" rx="2" ry="2"/>
<text x="25.9" y="4206.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/std/Streams$$anon$3$$anon$2.log (10 samples, 0.10%)</title><rect x="22.9" y="4179.0" width="1.2" height="15" fill="#6afb6a" rx="2" ry="2"/>
<text x="25.9" y="4190.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Classpaths$$$Lambda$1090/153950082.apply (11 samples, 0.11%)</title><rect x="24.7" y="4275.0" width="1.3" height="15" fill="#35ca35" rx="2" ry="2"/>
<text x="27.7" y="4286.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Classpaths$.$anonfun$ivyBaseSettings$57 (11 samples, 0.11%)</title><rect x="24.7" y="4259.0" width="1.3" height="15" fill="#5ff15f" rx="2" ry="2"/>
<text x="27.7" y="4270.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Classpaths$$$Lambda$1100/1645557354.apply (85 samples, 0.87%)</title><rect x="26.0" y="4275.0" width="10.2" height="15" fill="#60f260" rx="2" ry="2"/>
<text x="29.0" y="4286.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Classpaths$.$anonfun$dependencyPositionsTask$1 (85 samples, 0.87%)</title><rect x="26.0" y="4259.0" width="10.2" height="15" fill="#63f563" rx="2" ry="2"/>
<text x="29.0" y="4270.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/util/Tracked$$$Lambda$1927/390092508.apply (80 samples, 0.81%)</title><rect x="26.6" y="4243.0" width="9.6" height="15" fill="#39ce39" rx="2" ry="2"/>
<text x="29.6" y="4254.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/util/Tracked$.$anonfun$inputChanged$1 (80 samples, 0.81%)</title><rect x="26.6" y="4227.0" width="9.6" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="29.6" y="4238.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Classpaths$$$Lambda$1919/933203634.apply (45 samples, 0.46%)</title><rect x="26.8" y="4211.0" width="5.4" height="15" fill="#5bed5b" rx="2" ry="2"/>
<text x="29.8" y="4222.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Classpaths$.$anonfun$dependencyPositionsTask$5$adapted (45 samples, 0.46%)</title><rect x="26.8" y="4195.0" width="5.4" height="15" fill="#66f766" rx="2" ry="2"/>
<text x="29.8" y="4206.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Classpaths$.$anonfun$dependencyPositionsTask$5 (45 samples, 0.46%)</title><rect x="26.8" y="4179.0" width="5.4" height="15" fill="#57ea57" rx="2" ry="2"/>
<text x="29.8" y="4190.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/util/Tracked$$$Lambda$1968/1978410501.apply (37 samples, 0.38%)</title><rect x="27.3" y="4163.0" width="4.4" height="15" fill="#5ef05e" rx="2" ry="2"/>
<text x="30.3" y="4174.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/util/Tracked$.$anonfun$lastOutput$1 (37 samples, 0.38%)</title><rect x="27.3" y="4147.0" width="4.4" height="15" fill="#5def5d" rx="2" ry="2"/>
<text x="30.3" y="4158.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/util/FileBasedStore.write (11 samples, 0.11%)</title><rect x="27.4" y="4131.0" width="1.3" height="15" fill="#6dfe6d" rx="2" ry="2"/>
<text x="30.4" y="4142.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/io/Using.apply (11 samples, 0.11%)</title><rect x="27.4" y="4115.0" width="1.3" height="15" fill="#67f867" rx="2" ry="2"/>
<text x="30.4" y="4126.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/util/FileBasedStore$$Lambda$1988/2084487070.apply (10 samples, 0.10%)</title><rect x="27.5" y="4099.0" width="1.2" height="15" fill="#3fd43f" rx="2" ry="2"/>
<text x="30.5" y="4110.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/util/FileBasedStore.$anonfun$write$1$adapted (10 samples, 0.10%)</title><rect x="27.5" y="4083.0" width="1.2" height="15" fill="#44d844" rx="2" ry="2"/>
<text x="30.5" y="4094.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/util/FileBasedStore.$anonfun$write$1 (10 samples, 0.10%)</title><rect x="27.5" y="4067.0" width="1.2" height="15" fill="#47db47" rx="2" ry="2"/>
<text x="30.5" y="4078.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/util/PlainOutput.write (10 samples, 0.10%)</title><rect x="27.5" y="4051.0" width="1.2" height="15" fill="#50e450" rx="2" ry="2"/>
<text x="30.5" y="4062.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/util/Try$.apply (25 samples, 0.25%)</title><rect x="28.7" y="4131.0" width="3.0" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="31.7" y="4142.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/util/Tracked$$$Lambda$1969/1835642010.apply (25 samples, 0.25%)</title><rect x="28.7" y="4115.0" width="3.0" height="15" fill="#64f664" rx="2" ry="2"/>
<text x="31.7" y="4126.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/util/Tracked$.$anonfun$lastOutput$2 (25 samples, 0.25%)</title><rect x="28.7" y="4099.0" width="3.0" height="15" fill="#4ade4a" rx="2" ry="2"/>
<text x="31.7" y="4110.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/util/FileBasedStore.read (25 samples, 0.25%)</title><rect x="28.7" y="4083.0" width="3.0" height="15" fill="#64f664" rx="2" ry="2"/>
<text x="31.7" y="4094.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/io/Using.apply (25 samples, 0.25%)</title><rect x="28.7" y="4067.0" width="3.0" height="15" fill="#42d642" rx="2" ry="2"/>
<text x="31.7" y="4078.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/util/FileBasedStore$$Lambda$1932/1051075878.apply (25 samples, 0.25%)</title><rect x="28.7" y="4051.0" width="3.0" height="15" fill="#4ade4a" rx="2" ry="2"/>
<text x="31.7" y="4062.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/util/FileBasedStore.$anonfun$read$1 (25 samples, 0.25%)</title><rect x="28.7" y="4035.0" width="3.0" height="15" fill="#52e552" rx="2" ry="2"/>
<text x="31.7" y="4046.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/util/PlainInput.read (25 samples, 0.25%)</title><rect x="28.7" y="4019.0" width="3.0" height="15" fill="#4ee14e" rx="2" ry="2"/>
<text x="31.7" y="4030.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/Converter$.fromJson (20 samples, 0.20%)</title><rect x="29.3" y="4003.0" width="2.4" height="15" fill="#43d743" rx="2" ry="2"/>
<text x="32.3" y="4014.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/SupportConverter.fromJson$ (20 samples, 0.20%)</title><rect x="29.3" y="3987.0" width="2.4" height="15" fill="#3cd13c" rx="2" ry="2"/>
<text x="32.3" y="3998.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/SupportConverter.fromJson (20 samples, 0.20%)</title><rect x="29.3" y="3971.0" width="2.4" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="32.3" y="3982.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/util/Try$.apply (20 samples, 0.20%)</title><rect x="29.3" y="3955.0" width="2.4" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="32.3" y="3966.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/SupportConverter$$Lambda$1952/1775324110.apply (19 samples, 0.19%)</title><rect x="29.5" y="3939.0" width="2.2" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="32.5" y="3950.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/SupportConverter.$anonfun$fromJson$1 (19 samples, 0.19%)</title><rect x="29.5" y="3923.0" width="2.2" height="15" fill="#33c933" rx="2" ry="2"/>
<text x="32.5" y="3934.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/Converter$.fromJsonOptionUnsafe (19 samples, 0.19%)</title><rect x="29.5" y="3907.0" width="2.2" height="15" fill="#52e552" rx="2" ry="2"/>
<text x="32.5" y="3918.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/SupportConverter.fromJsonOptionUnsafe$ (19 samples, 0.19%)</title><rect x="29.5" y="3891.0" width="2.2" height="15" fill="#4fe34f" rx="2" ry="2"/>
<text x="32.5" y="3902.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/SupportConverter.fromJsonOptionUnsafe (19 samples, 0.19%)</title><rect x="29.5" y="3875.0" width="2.2" height="15" fill="#6bfc6b" rx="2" ry="2"/>
<text x="32.5" y="3886.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/CollectionFormats$$anon$1.read (19 samples, 0.19%)</title><rect x="29.5" y="3859.0" width="2.2" height="15" fill="#5ef15e" rx="2" ry="2"/>
<text x="32.5" y="3870.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/CollectionFormats$$anon$1.read (19 samples, 0.19%)</title><rect x="29.5" y="3843.0" width="2.2" height="15" fill="#53e653" rx="2" ry="2"/>
<text x="32.5" y="3854.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/List.map (16 samples, 0.16%)</title><rect x="29.6" y="3827.0" width="1.9" height="15" fill="#67f867" rx="2" ry="2"/>
<text x="32.6" y="3838.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/CollectionFormats$$anon$1$$Lambda$1974/834590329.apply (16 samples, 0.16%)</title><rect x="29.6" y="3811.0" width="1.9" height="15" fill="#57ea57" rx="2" ry="2"/>
<text x="32.6" y="3822.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/CollectionFormats$$anon$1.$anonfun$read$1$adapted (16 samples, 0.16%)</title><rect x="29.6" y="3795.0" width="1.9" height="15" fill="#64f664" rx="2" ry="2"/>
<text x="32.6" y="3806.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/CollectionFormats$$anon$1.$anonfun$read$1 (16 samples, 0.16%)</title><rect x="29.6" y="3779.0" width="1.9" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="32.6" y="3790.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/util/Tracked$CacheHelp.changed (33 samples, 0.34%)</title><rect x="32.2" y="4211.0" width="4.0" height="15" fill="#3ed33e" rx="2" ry="2"/>
<text x="35.2" y="4222.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/util/Try$.apply (21 samples, 0.21%)</title><rect x="32.5" y="4195.0" width="2.5" height="15" fill="#5cef5c" rx="2" ry="2"/>
<text x="35.5" y="4206.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/runtime/java8/JFunction0$mcJ$sp.apply (21 samples, 0.21%)</title><rect x="32.5" y="4179.0" width="2.5" height="15" fill="#39cf39" rx="2" ry="2"/>
<text x="35.5" y="4190.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/util/Tracked$CacheHelp$$Lambda$1931/1779607458.apply$mcJ$sp (21 samples, 0.21%)</title><rect x="32.5" y="4163.0" width="2.5" height="15" fill="#37cd37" rx="2" ry="2"/>
<text x="35.5" y="4174.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/util/Tracked$CacheHelp.$anonfun$changed$1 (21 samples, 0.21%)</title><rect x="32.5" y="4147.0" width="2.5" height="15" fill="#42d742" rx="2" ry="2"/>
<text x="35.5" y="4158.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/util/FileBasedStore.read (21 samples, 0.21%)</title><rect x="32.5" y="4131.0" width="2.5" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="35.5" y="4142.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/io/Using.apply (21 samples, 0.21%)</title><rect x="32.5" y="4115.0" width="2.5" height="15" fill="#4ade4a" rx="2" ry="2"/>
<text x="35.5" y="4126.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/util/FileBasedStore$$Lambda$1932/1051075878.apply (20 samples, 0.20%)</title><rect x="32.6" y="4099.0" width="2.4" height="15" fill="#33c933" rx="2" ry="2"/>
<text x="35.6" y="4110.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/util/FileBasedStore.$anonfun$read$1 (20 samples, 0.20%)</title><rect x="32.6" y="4083.0" width="2.4" height="15" fill="#5cef5c" rx="2" ry="2"/>
<text x="35.6" y="4094.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/util/PlainInput.read (18 samples, 0.18%)</title><rect x="32.8" y="4067.0" width="2.2" height="15" fill="#6afb6a" rx="2" ry="2"/>
<text x="35.8" y="4078.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/IsoString$$anon$1.from (13 samples, 0.13%)</title><rect x="32.9" y="4051.0" width="1.6" height="15" fill="#40d540" rx="2" ry="2"/>
<text x="35.9" y="4062.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/BuildStreams$$$Lambda$1812/1768641212.apply (13 samples, 0.13%)</title><rect x="32.9" y="4035.0" width="1.6" height="15" fill="#3cd13c" rx="2" ry="2"/>
<text x="35.9" y="4046.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/BuildStreams$.$anonfun$mkStreams$3 (13 samples, 0.13%)</title><rect x="32.9" y="4019.0" width="1.6" height="15" fill="#45d945" rx="2" ry="2"/>
<text x="35.9" y="4030.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/Parser$.parseUnsafe (9 samples, 0.09%)</title><rect x="33.4" y="4003.0" width="1.1" height="15" fill="#67f867" rx="2" ry="2"/>
<text x="36.4" y="4014.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jawn/SupportParser.parseUnsafe$ (9 samples, 0.09%)</title><rect x="33.4" y="3987.0" width="1.1" height="15" fill="#59eb59" rx="2" ry="2"/>
<text x="36.4" y="3998.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jawn/SupportParser.parseUnsafe (9 samples, 0.09%)</title><rect x="33.4" y="3971.0" width="1.1" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="36.4" y="3982.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/murmurhash/Hasher$.hash (10 samples, 0.10%)</title><rect x="35.0" y="4195.0" width="1.2" height="15" fill="#5aed5a" rx="2" ry="2"/>
<text x="38.0" y="4206.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/SupportHasher.hash$ (10 samples, 0.10%)</title><rect x="35.0" y="4179.0" width="1.2" height="15" fill="#49dd49" rx="2" ry="2"/>
<text x="38.0" y="4190.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/SupportHasher.hash (10 samples, 0.10%)</title><rect x="35.0" y="4163.0" width="1.2" height="15" fill="#49dd49" rx="2" ry="2"/>
<text x="38.0" y="4174.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/util/Try$.apply (10 samples, 0.10%)</title><rect x="35.0" y="4147.0" width="1.2" height="15" fill="#4fe34f" rx="2" ry="2"/>
<text x="38.0" y="4158.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/SupportHasher$$Lambda$1955/1419844526.apply (10 samples, 0.10%)</title><rect x="35.0" y="4131.0" width="1.2" height="15" fill="#3ad03a" rx="2" ry="2"/>
<text x="38.0" y="4142.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/SupportHasher.$anonfun$hash$1 (10 samples, 0.10%)</title><rect x="35.0" y="4115.0" width="1.2" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="38.0" y="4126.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/murmurhash/Hasher$.hashUnsafe (10 samples, 0.10%)</title><rect x="35.0" y="4099.0" width="1.2" height="15" fill="#64f664" rx="2" ry="2"/>
<text x="38.0" y="4110.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/SupportHasher.hashUnsafe$ (10 samples, 0.10%)</title><rect x="35.0" y="4083.0" width="1.2" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="38.0" y="4094.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/SupportHasher.hashUnsafe (10 samples, 0.10%)</title><rect x="35.0" y="4067.0" width="1.2" height="15" fill="#6bfc6b" rx="2" ry="2"/>
<text x="38.0" y="4078.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Classpaths$$$Lambda$1105/1794705481.apply (510 samples, 5.19%)</title><rect x="36.3" y="4275.0" width="61.3" height="15" fill="#53e653" rx="2" ry="2"/>
<text x="39.3" y="4286.0">sbt/Cl..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Classpaths$.$anonfun$updateTask$5 (510 samples, 5.19%)</title><rect x="36.3" y="4259.0" width="61.3" height="15" fill="#3ad03a" rx="2" ry="2"/>
<text x="39.3" y="4270.0">sbt/Cl..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/LibraryManagement$.cachedUpdate (508 samples, 5.17%)</title><rect x="36.4" y="4243.0" width="61.0" height="15" fill="#6cfe6c" rx="2" ry="2"/>
<text x="39.4" y="4254.0">sbt/in..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/librarymanagement/IvySbt$Module.extraInputHash (25 samples, 0.25%)</title><rect x="37.1" y="4227.0" width="3.0" height="15" fill="#4ade4a" rx="2" ry="2"/>
<text x="40.1" y="4238.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/librarymanagement/IvySbt$Module.AltLibraryManagementCodec (20 samples, 0.20%)</title><rect x="37.6" y="4211.0" width="2.4" height="15" fill="#3acf3a" rx="2" ry="2"/>
<text x="40.6" y="4222.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/librarymanagement/IvySbt$Module.AltLibraryManagementCodec$lzycompute$1 (20 samples, 0.20%)</title><rect x="37.6" y="4195.0" width="2.4" height="15" fill="#53e753" rx="2" ry="2"/>
<text x="40.6" y="4206.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.loadClass (12 samples, 0.12%)</title><rect x="38.6" y="4179.0" width="1.4" height="15" fill="#41d541" rx="2" ry="2"/>
<text x="41.6" y="4190.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.loadClass (12 samples, 0.12%)</title><rect x="38.6" y="4163.0" width="1.4" height="15" fill="#4fe24f" rx="2" ry="2"/>
<text x="41.6" y="4174.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.findClass (12 samples, 0.12%)</title><rect x="38.6" y="4147.0" width="1.4" height="15" fill="#4de14d" rx="2" ry="2"/>
<text x="41.6" y="4158.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/security/AccessController.doPrivileged (12 samples, 0.12%)</title><rect x="38.6" y="4131.0" width="1.4" height="15" fill="#6bfc6b" rx="2" ry="2"/>
<text x="41.6" y="4142.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader$1.run (12 samples, 0.12%)</title><rect x="38.6" y="4115.0" width="1.4" height="15" fill="#39ce39" rx="2" ry="2"/>
<text x="41.6" y="4126.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader$1.run (12 samples, 0.12%)</title><rect x="38.6" y="4099.0" width="1.4" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="41.6" y="4110.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.access$100 (12 samples, 0.12%)</title><rect x="38.6" y="4083.0" width="1.4" height="15" fill="#45d945" rx="2" ry="2"/>
<text x="41.6" y="4094.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.defineClass (12 samples, 0.12%)</title><rect x="38.6" y="4067.0" width="1.4" height="15" fill="#57ea57" rx="2" ry="2"/>
<text x="41.6" y="4078.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/security/SecureClassLoader.defineClass (11 samples, 0.11%)</title><rect x="38.6" y="4051.0" width="1.3" height="15" fill="#39ce39" rx="2" ry="2"/>
<text x="41.6" y="4062.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.defineClass (11 samples, 0.11%)</title><rect x="38.6" y="4035.0" width="1.3" height="15" fill="#59eb59" rx="2" ry="2"/>
<text x="41.6" y="4046.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.defineClass1 (11 samples, 0.11%)</title><rect x="38.6" y="4019.0" width="1.3" height="15" fill="#57ea57" rx="2" ry="2"/>
<text x="41.6" y="4030.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/util/Tracked$$$Lambda$1927/390092508.apply (477 samples, 4.85%)</title><rect x="40.1" y="4227.0" width="57.3" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="43.1" y="4238.0">sbt/ut..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/util/Tracked$.$anonfun$inputChanged$1 (477 samples, 4.85%)</title><rect x="40.1" y="4211.0" width="57.3" height="15" fill="#40d540" rx="2" ry="2"/>
<text x="43.1" y="4222.0">sbt/ut..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/LibraryManagement$$$Lambda$2006/1409612495.apply (457 samples, 4.65%)</title><rect x="40.1" y="4195.0" width="54.9" height="15" fill="#4ee24e" rx="2" ry="2"/>
<text x="43.1" y="4206.0">sbt/i..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/LibraryManagement$.$anonfun$cachedUpdate$11$adapted (457 samples, 4.65%)</title><rect x="40.1" y="4179.0" width="54.9" height="15" fill="#49dd49" rx="2" ry="2"/>
<text x="43.1" y="4190.0">sbt/i..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/LibraryManagement$.$anonfun$cachedUpdate$11 (457 samples, 4.65%)</title><rect x="40.1" y="4163.0" width="54.9" height="15" fill="#3ed33e" rx="2" ry="2"/>
<text x="43.1" y="4174.0">sbt/i..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/util/control/Exception$Catch.apply (456 samples, 4.64%)</title><rect x="40.3" y="4147.0" width="54.7" height="15" fill="#33c933" rx="2" ry="2"/>
<text x="43.3" y="4158.0">scala..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/LibraryManagement$$$Lambda$2012/1274815508.apply (456 samples, 4.64%)</title><rect x="40.3" y="4131.0" width="54.7" height="15" fill="#68f968" rx="2" ry="2"/>
<text x="43.3" y="4142.0">sbt/i..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/LibraryManagement$.$anonfun$cachedUpdate$19 (456 samples, 4.64%)</title><rect x="40.3" y="4115.0" width="54.7" height="15" fill="#4bdf4b" rx="2" ry="2"/>
<text x="43.3" y="4126.0">sbt/i..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/util/Tracked$$$Lambda$1968/1978410501.apply (456 samples, 4.64%)</title><rect x="40.3" y="4099.0" width="54.7" height="15" fill="#3acf3a" rx="2" ry="2"/>
<text x="43.3" y="4110.0">sbt/u..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/util/Tracked$.$anonfun$lastOutput$1 (456 samples, 4.64%)</title><rect x="40.3" y="4083.0" width="54.7" height="15" fill="#6afc6a" rx="2" ry="2"/>
<text x="43.3" y="4094.0">sbt/u..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/LibraryManagement$$$Lambda$2010/74528209.apply (24 samples, 0.24%)</title><rect x="40.3" y="4067.0" width="2.8" height="15" fill="#4ade4a" rx="2" ry="2"/>
<text x="43.3" y="4078.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/LibraryManagement$.$anonfun$cachedUpdate$12 (24 samples, 0.24%)</title><rect x="40.3" y="4051.0" width="2.8" height="15" fill="#39cf39" rx="2" ry="2"/>
<text x="43.3" y="4062.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/LibraryManagement$.upToDate$1 (24 samples, 0.24%)</title><rect x="40.3" y="4035.0" width="2.8" height="15" fill="#67f867" rx="2" ry="2"/>
<text x="43.3" y="4046.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/librarymanagement/RichUpdateReport.allFiles (11 samples, 0.11%)</title><rect x="40.4" y="4019.0" width="1.3" height="15" fill="#37cd37" rx="2" ry="2"/>
<text x="43.4" y="4030.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractIterable.forall (11 samples, 0.11%)</title><rect x="41.8" y="4019.0" width="1.3" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="44.8" y="4030.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IterableLike.forall$ (11 samples, 0.11%)</title><rect x="41.8" y="4003.0" width="1.3" height="15" fill="#36cb36" rx="2" ry="2"/>
<text x="44.8" y="4014.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IterableLike.forall (11 samples, 0.11%)</title><rect x="41.8" y="3987.0" width="1.3" height="15" fill="#47dc47" rx="2" ry="2"/>
<text x="44.8" y="3998.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractIterator.forall (11 samples, 0.11%)</title><rect x="41.8" y="3971.0" width="1.3" height="15" fill="#41d541" rx="2" ry="2"/>
<text x="44.8" y="3982.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/Iterator.forall$ (11 samples, 0.11%)</title><rect x="41.8" y="3955.0" width="1.3" height="15" fill="#3acf3a" rx="2" ry="2"/>
<text x="44.8" y="3966.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/Iterator.forall (11 samples, 0.11%)</title><rect x="41.8" y="3939.0" width="1.3" height="15" fill="#60f360" rx="2" ry="2"/>
<text x="44.8" y="3950.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/LibraryManagement$$$Lambda$2035/1221973178.apply (11 samples, 0.11%)</title><rect x="41.8" y="3923.0" width="1.3" height="15" fill="#4de14d" rx="2" ry="2"/>
<text x="44.8" y="3934.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/LibraryManagement$.$anonfun$cachedUpdate$9$adapted (11 samples, 0.11%)</title><rect x="41.8" y="3907.0" width="1.3" height="15" fill="#46db46" rx="2" ry="2"/>
<text x="44.8" y="3918.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/LibraryManagement$.$anonfun$cachedUpdate$9 (11 samples, 0.11%)</title><rect x="41.8" y="3891.0" width="1.3" height="15" fill="#4de04d" rx="2" ry="2"/>
<text x="44.8" y="3902.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/LibraryManagement$.fileUptodate (11 samples, 0.11%)</title><rect x="41.8" y="3875.0" width="1.3" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="44.8" y="3886.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/Option.forall (11 samples, 0.11%)</title><rect x="41.8" y="3859.0" width="1.3" height="15" fill="#69fb69" rx="2" ry="2"/>
<text x="44.8" y="3870.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/runtime/java8/JFunction1$mcZJ$sp.apply (11 samples, 0.11%)</title><rect x="41.8" y="3843.0" width="1.3" height="15" fill="#59eb59" rx="2" ry="2"/>
<text x="44.8" y="3854.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/LibraryManagement$$$Lambda$2036/10554967.apply$mcZJ$sp (11 samples, 0.11%)</title><rect x="41.8" y="3827.0" width="1.3" height="15" fill="#3ed33e" rx="2" ry="2"/>
<text x="44.8" y="3838.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/LibraryManagement$.$anonfun$fileUptodate$1 (11 samples, 0.11%)</title><rect x="41.8" y="3811.0" width="1.3" height="15" fill="#5aed5a" rx="2" ry="2"/>
<text x="44.8" y="3822.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/io/IO$.getModifiedTimeOrZero (11 samples, 0.11%)</title><rect x="41.8" y="3795.0" width="1.3" height="15" fill="#68f968" rx="2" ry="2"/>
<text x="44.8" y="3806.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/io/IO$.getModifiedTime (11 samples, 0.11%)</title><rect x="41.8" y="3779.0" width="1.3" height="15" fill="#41d541" rx="2" ry="2"/>
<text x="44.8" y="3790.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/io/Milli$.getModifiedTime (11 samples, 0.11%)</title><rect x="41.8" y="3763.0" width="1.3" height="15" fill="#65f765" rx="2" ry="2"/>
<text x="44.8" y="3774.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/io/MilliNative.getModifiedTime (11 samples, 0.11%)</title><rect x="41.8" y="3747.0" width="1.3" height="15" fill="#4ee14e" rx="2" ry="2"/>
<text x="44.8" y="3758.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/io/MacMilli$.getModifiedTimeNative (11 samples, 0.11%)</title><rect x="41.8" y="3731.0" width="1.3" height="15" fill="#50e350" rx="2" ry="2"/>
<text x="44.8" y="3742.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/io/MacMilli$.getModifiedTimeNative (11 samples, 0.11%)</title><rect x="41.8" y="3715.0" width="1.3" height="15" fill="#56e956" rx="2" ry="2"/>
<text x="44.8" y="3726.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/io/MilliPosixBase.checkedIO (9 samples, 0.09%)</title><rect x="42.1" y="3699.0" width="1.0" height="15" fill="#63f463" rx="2" ry="2"/>
<text x="45.1" y="3710.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/io/MacMilli$$$Lambda$883/1372124716.apply$mcI$sp (9 samples, 0.09%)</title><rect x="42.1" y="3683.0" width="1.0" height="15" fill="#5ff15f" rx="2" ry="2"/>
<text x="45.1" y="3694.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/io/MacMilli$.$anonfun$getModifiedTimeNative$4 (9 samples, 0.09%)</title><rect x="42.1" y="3667.0" width="1.0" height="15" fill="#4de14d" rx="2" ry="2"/>
<text x="45.1" y="3678.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/sun/proxy/$Proxy11.getattrlist (9 samples, 0.09%)</title><rect x="42.1" y="3651.0" width="1.0" height="15" fill="#6bfc6b" rx="2" ry="2"/>
<text x="45.1" y="3662.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/sun/jna/Library$Handler.invoke (9 samples, 0.09%)</title><rect x="42.1" y="3635.0" width="1.0" height="15" fill="#57ea57" rx="2" ry="2"/>
<text x="45.1" y="3646.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/sun/jna/Function.invoke (9 samples, 0.09%)</title><rect x="42.1" y="3619.0" width="1.0" height="15" fill="#4ce04c" rx="2" ry="2"/>
<text x="45.1" y="3630.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/util/FileBasedStore.write (159 samples, 1.62%)</title><rect x="43.1" y="4067.0" width="19.1" height="15" fill="#63f563" rx="2" ry="2"/>
<text x="46.1" y="4078.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/io/Using.apply (159 samples, 1.62%)</title><rect x="43.1" y="4051.0" width="19.1" height="15" fill="#5bed5b" rx="2" ry="2"/>
<text x="46.1" y="4062.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/util/FileBasedStore$$Lambda$1988/2084487070.apply (159 samples, 1.62%)</title><rect x="43.1" y="4035.0" width="19.1" height="15" fill="#5cee5c" rx="2" ry="2"/>
<text x="46.1" y="4046.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/util/FileBasedStore.$anonfun$write$1$adapted (159 samples, 1.62%)</title><rect x="43.1" y="4019.0" width="19.1" height="15" fill="#6dfe6d" rx="2" ry="2"/>
<text x="46.1" y="4030.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/util/FileBasedStore.$anonfun$write$1 (159 samples, 1.62%)</title><rect x="43.1" y="4003.0" width="19.1" height="15" fill="#6bfc6b" rx="2" ry="2"/>
<text x="46.1" y="4014.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/util/PlainOutput.write (159 samples, 1.62%)</title><rect x="43.1" y="3987.0" width="19.1" height="15" fill="#65f665" rx="2" ry="2"/>
<text x="46.1" y="3998.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/io/Using.apply (9 samples, 0.09%)</title><rect x="43.1" y="3971.0" width="1.1" height="15" fill="#43d743" rx="2" ry="2"/>
<text x="46.1" y="3982.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/util/PlainOutput$$Lambda$1995/248801270.apply (9 samples, 0.09%)</title><rect x="43.1" y="3955.0" width="1.1" height="15" fill="#52e552" rx="2" ry="2"/>
<text x="46.1" y="3966.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/util/PlainOutput.$anonfun$write$1$adapted (9 samples, 0.09%)</title><rect x="43.1" y="3939.0" width="1.1" height="15" fill="#50e450" rx="2" ry="2"/>
<text x="46.1" y="3950.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/util/PlainOutput.$anonfun$write$1 (9 samples, 0.09%)</title><rect x="43.1" y="3923.0" width="1.1" height="15" fill="#38cd38" rx="2" ry="2"/>
<text x="46.1" y="3934.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/PrintWriter.print (9 samples, 0.09%)</title><rect x="43.1" y="3907.0" width="1.1" height="15" fill="#4ade4a" rx="2" ry="2"/>
<text x="46.1" y="3918.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/PrintWriter.write (9 samples, 0.09%)</title><rect x="43.1" y="3891.0" width="1.1" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="46.1" y="3902.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/PrintWriter.write (9 samples, 0.09%)</title><rect x="43.1" y="3875.0" width="1.1" height="15" fill="#66f866" rx="2" ry="2"/>
<text x="46.1" y="3886.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/BufferedWriter.write (9 samples, 0.09%)</title><rect x="43.1" y="3859.0" width="1.1" height="15" fill="#4ce04c" rx="2" ry="2"/>
<text x="46.1" y="3870.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/BufferedWriter.flushBuffer (9 samples, 0.09%)</title><rect x="43.1" y="3843.0" width="1.1" height="15" fill="#5df05d" rx="2" ry="2"/>
<text x="46.1" y="3854.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/OutputStreamWriter.write (9 samples, 0.09%)</title><rect x="43.1" y="3827.0" width="1.1" height="15" fill="#66f766" rx="2" ry="2"/>
<text x="46.1" y="3838.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/cs/StreamEncoder.write (9 samples, 0.09%)</title><rect x="43.1" y="3811.0" width="1.1" height="15" fill="#5cef5c" rx="2" ry="2"/>
<text x="46.1" y="3822.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/cs/StreamEncoder.implWrite (9 samples, 0.09%)</title><rect x="43.1" y="3795.0" width="1.1" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="46.1" y="3806.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/IsoString$$anon$1.to (53 samples, 0.54%)</title><rect x="44.2" y="3971.0" width="6.4" height="15" fill="#5cee5c" rx="2" ry="2"/>
<text x="47.2" y="3982.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/BuildStreams$$$Lambda$1811/379833480.apply (53 samples, 0.54%)</title><rect x="44.2" y="3955.0" width="6.4" height="15" fill="#5ef05e" rx="2" ry="2"/>
<text x="47.2" y="3966.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/BuildStreams$.$anonfun$mkStreams$2 (53 samples, 0.54%)</title><rect x="44.2" y="3939.0" width="6.4" height="15" fill="#33c933" rx="2" ry="2"/>
<text x="47.2" y="3950.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter$.apply (53 samples, 0.54%)</title><rect x="44.2" y="3923.0" width="6.4" height="15" fill="#67f867" rx="2" ry="2"/>
<text x="47.2" y="3934.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/JsonPrinter.apply$ (53 samples, 0.54%)</title><rect x="44.2" y="3907.0" width="6.4" height="15" fill="#51e451" rx="2" ry="2"/>
<text x="47.2" y="3918.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/JsonPrinter.apply (53 samples, 0.54%)</title><rect x="44.2" y="3891.0" width="6.4" height="15" fill="#4de14d" rx="2" ry="2"/>
<text x="47.2" y="3902.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter$.apply (53 samples, 0.54%)</title><rect x="44.2" y="3875.0" width="6.4" height="15" fill="#35cb35" rx="2" ry="2"/>
<text x="47.2" y="3886.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/JsonPrinter.apply$ (53 samples, 0.54%)</title><rect x="44.2" y="3859.0" width="6.4" height="15" fill="#5cef5c" rx="2" ry="2"/>
<text x="47.2" y="3870.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/JsonPrinter.apply (53 samples, 0.54%)</title><rect x="44.2" y="3843.0" width="6.4" height="15" fill="#4fe24f" rx="2" ry="2"/>
<text x="47.2" y="3854.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter$.print (53 samples, 0.54%)</title><rect x="44.2" y="3827.0" width="6.4" height="15" fill="#5aec5a" rx="2" ry="2"/>
<text x="47.2" y="3838.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter.print$ (53 samples, 0.54%)</title><rect x="44.2" y="3811.0" width="6.4" height="15" fill="#5aed5a" rx="2" ry="2"/>
<text x="47.2" y="3822.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter.print (53 samples, 0.54%)</title><rect x="44.2" y="3795.0" width="6.4" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="47.2" y="3806.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter$.printJObject (53 samples, 0.54%)</title><rect x="44.2" y="3779.0" width="6.4" height="15" fill="#68fa68" rx="2" ry="2"/>
<text x="47.2" y="3790.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter.printJObject$ (53 samples, 0.54%)</title><rect x="44.2" y="3763.0" width="6.4" height="15" fill="#65f765" rx="2" ry="2"/>
<text x="47.2" y="3774.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter.printJObject (53 samples, 0.54%)</title><rect x="44.2" y="3747.0" width="6.4" height="15" fill="#67f867" rx="2" ry="2"/>
<text x="47.2" y="3758.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter$.printArray (53 samples, 0.54%)</title><rect x="44.2" y="3731.0" width="6.4" height="15" fill="#52e552" rx="2" ry="2"/>
<text x="47.2" y="3742.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/JsonPrinter.printArray$ (53 samples, 0.54%)</title><rect x="44.2" y="3715.0" width="6.4" height="15" fill="#3acf3a" rx="2" ry="2"/>
<text x="47.2" y="3726.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/JsonPrinter.printArray (53 samples, 0.54%)</title><rect x="44.2" y="3699.0" width="6.4" height="15" fill="#4de04d" rx="2" ry="2"/>
<text x="47.2" y="3710.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/mutable/ArrayOps$ofRef.foreach (53 samples, 0.54%)</title><rect x="44.2" y="3683.0" width="6.4" height="15" fill="#6dfe6d" rx="2" ry="2"/>
<text x="47.2" y="3694.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IndexedSeqOptimized.foreach$ (53 samples, 0.54%)</title><rect x="44.2" y="3667.0" width="6.4" height="15" fill="#3ed33e" rx="2" ry="2"/>
<text x="47.2" y="3678.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IndexedSeqOptimized.foreach (53 samples, 0.54%)</title><rect x="44.2" y="3651.0" width="6.4" height="15" fill="#4ce04c" rx="2" ry="2"/>
<text x="47.2" y="3662.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/JsonPrinter$$Lambda$1992/1155222207.apply (53 samples, 0.54%)</title><rect x="44.2" y="3635.0" width="6.4" height="15" fill="#44d944" rx="2" ry="2"/>
<text x="47.2" y="3646.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/JsonPrinter.$anonfun$printArray$1$adapted (53 samples, 0.54%)</title><rect x="44.2" y="3619.0" width="6.4" height="15" fill="#50e450" rx="2" ry="2"/>
<text x="47.2" y="3630.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/JsonPrinter.$anonfun$printArray$1 (53 samples, 0.54%)</title><rect x="44.2" y="3603.0" width="6.4" height="15" fill="#66f866" rx="2" ry="2"/>
<text x="47.2" y="3614.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter$$Lambda$1991/1405262959.apply (53 samples, 0.54%)</title><rect x="44.2" y="3587.0" width="6.4" height="15" fill="#4ce04c" rx="2" ry="2"/>
<text x="47.2" y="3598.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter.$anonfun$printJObject$2$adapted (53 samples, 0.54%)</title><rect x="44.2" y="3571.0" width="6.4" height="15" fill="#4ee14e" rx="2" ry="2"/>
<text x="47.2" y="3582.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter.$anonfun$printJObject$2 (53 samples, 0.54%)</title><rect x="44.2" y="3555.0" width="6.4" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="47.2" y="3566.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter$.print (53 samples, 0.54%)</title><rect x="44.2" y="3539.0" width="6.4" height="15" fill="#47dc47" rx="2" ry="2"/>
<text x="47.2" y="3550.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter.print$ (53 samples, 0.54%)</title><rect x="44.2" y="3523.0" width="6.4" height="15" fill="#3ed33e" rx="2" ry="2"/>
<text x="47.2" y="3534.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter.print (53 samples, 0.54%)</title><rect x="44.2" y="3507.0" width="6.4" height="15" fill="#6dfe6d" rx="2" ry="2"/>
<text x="47.2" y="3518.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter$.printJArray (53 samples, 0.54%)</title><rect x="44.2" y="3491.0" width="6.4" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="47.2" y="3502.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter.printJArray$ (53 samples, 0.54%)</title><rect x="44.2" y="3475.0" width="6.4" height="15" fill="#57ea57" rx="2" ry="2"/>
<text x="47.2" y="3486.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter.printJArray (53 samples, 0.54%)</title><rect x="44.2" y="3459.0" width="6.4" height="15" fill="#56e956" rx="2" ry="2"/>
<text x="47.2" y="3470.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter$.printArray (53 samples, 0.54%)</title><rect x="44.2" y="3443.0" width="6.4" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="47.2" y="3454.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/JsonPrinter.printArray$ (53 samples, 0.54%)</title><rect x="44.2" y="3427.0" width="6.4" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="47.2" y="3438.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/JsonPrinter.printArray (53 samples, 0.54%)</title><rect x="44.2" y="3411.0" width="6.4" height="15" fill="#60f260" rx="2" ry="2"/>
<text x="47.2" y="3422.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/mutable/ArrayOps$ofRef.foreach (53 samples, 0.54%)</title><rect x="44.2" y="3395.0" width="6.4" height="15" fill="#5df05d" rx="2" ry="2"/>
<text x="47.2" y="3406.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IndexedSeqOptimized.foreach$ (53 samples, 0.54%)</title><rect x="44.2" y="3379.0" width="6.4" height="15" fill="#45d945" rx="2" ry="2"/>
<text x="47.2" y="3390.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IndexedSeqOptimized.foreach (53 samples, 0.54%)</title><rect x="44.2" y="3363.0" width="6.4" height="15" fill="#4bde4b" rx="2" ry="2"/>
<text x="47.2" y="3374.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/JsonPrinter$$Lambda$1992/1155222207.apply (53 samples, 0.54%)</title><rect x="44.2" y="3347.0" width="6.4" height="15" fill="#5aed5a" rx="2" ry="2"/>
<text x="47.2" y="3358.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/JsonPrinter.$anonfun$printArray$1$adapted (53 samples, 0.54%)</title><rect x="44.2" y="3331.0" width="6.4" height="15" fill="#5aed5a" rx="2" ry="2"/>
<text x="47.2" y="3342.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/JsonPrinter.$anonfun$printArray$1 (53 samples, 0.54%)</title><rect x="44.2" y="3315.0" width="6.4" height="15" fill="#3ed33e" rx="2" ry="2"/>
<text x="47.2" y="3326.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter$$Lambda$1994/1622855186.apply (53 samples, 0.54%)</title><rect x="44.2" y="3299.0" width="6.4" height="15" fill="#64f664" rx="2" ry="2"/>
<text x="47.2" y="3310.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter.$anonfun$printJArray$2$adapted (53 samples, 0.54%)</title><rect x="44.2" y="3283.0" width="6.4" height="15" fill="#5cee5c" rx="2" ry="2"/>
<text x="47.2" y="3294.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter.$anonfun$printJArray$2 (53 samples, 0.54%)</title><rect x="44.2" y="3267.0" width="6.4" height="15" fill="#63f563" rx="2" ry="2"/>
<text x="47.2" y="3278.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter$.print (53 samples, 0.54%)</title><rect x="44.2" y="3251.0" width="6.4" height="15" fill="#37cd37" rx="2" ry="2"/>
<text x="47.2" y="3262.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter.print$ (53 samples, 0.54%)</title><rect x="44.2" y="3235.0" width="6.4" height="15" fill="#36cc36" rx="2" ry="2"/>
<text x="47.2" y="3246.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter.print (53 samples, 0.54%)</title><rect x="44.2" y="3219.0" width="6.4" height="15" fill="#5ff25f" rx="2" ry="2"/>
<text x="47.2" y="3230.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter$.printJObject (53 samples, 0.54%)</title><rect x="44.2" y="3203.0" width="6.4" height="15" fill="#57ea57" rx="2" ry="2"/>
<text x="47.2" y="3214.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter.printJObject$ (53 samples, 0.54%)</title><rect x="44.2" y="3187.0" width="6.4" height="15" fill="#3ed33e" rx="2" ry="2"/>
<text x="47.2" y="3198.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter.printJObject (53 samples, 0.54%)</title><rect x="44.2" y="3171.0" width="6.4" height="15" fill="#3ed33e" rx="2" ry="2"/>
<text x="47.2" y="3182.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter$.printArray (53 samples, 0.54%)</title><rect x="44.2" y="3155.0" width="6.4" height="15" fill="#36cc36" rx="2" ry="2"/>
<text x="47.2" y="3166.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/JsonPrinter.printArray$ (53 samples, 0.54%)</title><rect x="44.2" y="3139.0" width="6.4" height="15" fill="#49dd49" rx="2" ry="2"/>
<text x="47.2" y="3150.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/JsonPrinter.printArray (53 samples, 0.54%)</title><rect x="44.2" y="3123.0" width="6.4" height="15" fill="#6bfc6b" rx="2" ry="2"/>
<text x="47.2" y="3134.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/mutable/ArrayOps$ofRef.foreach (53 samples, 0.54%)</title><rect x="44.2" y="3107.0" width="6.4" height="15" fill="#6afc6a" rx="2" ry="2"/>
<text x="47.2" y="3118.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IndexedSeqOptimized.foreach$ (53 samples, 0.54%)</title><rect x="44.2" y="3091.0" width="6.4" height="15" fill="#49dd49" rx="2" ry="2"/>
<text x="47.2" y="3102.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IndexedSeqOptimized.foreach (53 samples, 0.54%)</title><rect x="44.2" y="3075.0" width="6.4" height="15" fill="#42d642" rx="2" ry="2"/>
<text x="47.2" y="3086.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/JsonPrinter$$Lambda$1992/1155222207.apply (53 samples, 0.54%)</title><rect x="44.2" y="3059.0" width="6.4" height="15" fill="#5bee5b" rx="2" ry="2"/>
<text x="47.2" y="3070.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/JsonPrinter.$anonfun$printArray$1$adapted (53 samples, 0.54%)</title><rect x="44.2" y="3043.0" width="6.4" height="15" fill="#43d743" rx="2" ry="2"/>
<text x="47.2" y="3054.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/JsonPrinter.$anonfun$printArray$1 (53 samples, 0.54%)</title><rect x="44.2" y="3027.0" width="6.4" height="15" fill="#60f260" rx="2" ry="2"/>
<text x="47.2" y="3038.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter$$Lambda$1991/1405262959.apply (53 samples, 0.54%)</title><rect x="44.2" y="3011.0" width="6.4" height="15" fill="#61f361" rx="2" ry="2"/>
<text x="47.2" y="3022.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter.$anonfun$printJObject$2$adapted (53 samples, 0.54%)</title><rect x="44.2" y="2995.0" width="6.4" height="15" fill="#4bdf4b" rx="2" ry="2"/>
<text x="47.2" y="3006.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter.$anonfun$printJObject$2 (53 samples, 0.54%)</title><rect x="44.2" y="2979.0" width="6.4" height="15" fill="#42d742" rx="2" ry="2"/>
<text x="47.2" y="2990.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter$.print (53 samples, 0.54%)</title><rect x="44.2" y="2963.0" width="6.4" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="47.2" y="2974.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter.print$ (53 samples, 0.54%)</title><rect x="44.2" y="2947.0" width="6.4" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="47.2" y="2958.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter.print (53 samples, 0.54%)</title><rect x="44.2" y="2931.0" width="6.4" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="47.2" y="2942.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter$.printJArray (53 samples, 0.54%)</title><rect x="44.2" y="2915.0" width="6.4" height="15" fill="#6cfe6c" rx="2" ry="2"/>
<text x="47.2" y="2926.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter.printJArray$ (53 samples, 0.54%)</title><rect x="44.2" y="2899.0" width="6.4" height="15" fill="#40d540" rx="2" ry="2"/>
<text x="47.2" y="2910.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter.printJArray (53 samples, 0.54%)</title><rect x="44.2" y="2883.0" width="6.4" height="15" fill="#63f563" rx="2" ry="2"/>
<text x="47.2" y="2894.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter$.printArray (53 samples, 0.54%)</title><rect x="44.2" y="2867.0" width="6.4" height="15" fill="#3acf3a" rx="2" ry="2"/>
<text x="47.2" y="2878.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/JsonPrinter.printArray$ (53 samples, 0.54%)</title><rect x="44.2" y="2851.0" width="6.4" height="15" fill="#49dd49" rx="2" ry="2"/>
<text x="47.2" y="2862.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/JsonPrinter.printArray (53 samples, 0.54%)</title><rect x="44.2" y="2835.0" width="6.4" height="15" fill="#56e956" rx="2" ry="2"/>
<text x="47.2" y="2846.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/mutable/ArrayOps$ofRef.foreach (53 samples, 0.54%)</title><rect x="44.2" y="2819.0" width="6.4" height="15" fill="#3cd13c" rx="2" ry="2"/>
<text x="47.2" y="2830.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IndexedSeqOptimized.foreach$ (53 samples, 0.54%)</title><rect x="44.2" y="2803.0" width="6.4" height="15" fill="#63f563" rx="2" ry="2"/>
<text x="47.2" y="2814.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IndexedSeqOptimized.foreach (53 samples, 0.54%)</title><rect x="44.2" y="2787.0" width="6.4" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="47.2" y="2798.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/JsonPrinter$$Lambda$1992/1155222207.apply (53 samples, 0.54%)</title><rect x="44.2" y="2771.0" width="6.4" height="15" fill="#6dfe6d" rx="2" ry="2"/>
<text x="47.2" y="2782.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/JsonPrinter.$anonfun$printArray$1$adapted (53 samples, 0.54%)</title><rect x="44.2" y="2755.0" width="6.4" height="15" fill="#41d641" rx="2" ry="2"/>
<text x="47.2" y="2766.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/JsonPrinter.$anonfun$printArray$1 (53 samples, 0.54%)</title><rect x="44.2" y="2739.0" width="6.4" height="15" fill="#40d440" rx="2" ry="2"/>
<text x="47.2" y="2750.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter$$Lambda$1994/1622855186.apply (53 samples, 0.54%)</title><rect x="44.2" y="2723.0" width="6.4" height="15" fill="#38cd38" rx="2" ry="2"/>
<text x="47.2" y="2734.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter.$anonfun$printJArray$2$adapted (53 samples, 0.54%)</title><rect x="44.2" y="2707.0" width="6.4" height="15" fill="#3fd43f" rx="2" ry="2"/>
<text x="47.2" y="2718.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter.$anonfun$printJArray$2 (53 samples, 0.54%)</title><rect x="44.2" y="2691.0" width="6.4" height="15" fill="#58ea58" rx="2" ry="2"/>
<text x="47.2" y="2702.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter$.print (53 samples, 0.54%)</title><rect x="44.2" y="2675.0" width="6.4" height="15" fill="#5bee5b" rx="2" ry="2"/>
<text x="47.2" y="2686.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter.print$ (53 samples, 0.54%)</title><rect x="44.2" y="2659.0" width="6.4" height="15" fill="#61f361" rx="2" ry="2"/>
<text x="47.2" y="2670.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter.print (53 samples, 0.54%)</title><rect x="44.2" y="2643.0" width="6.4" height="15" fill="#5bee5b" rx="2" ry="2"/>
<text x="47.2" y="2654.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter$.printJObject (53 samples, 0.54%)</title><rect x="44.2" y="2627.0" width="6.4" height="15" fill="#5ff15f" rx="2" ry="2"/>
<text x="47.2" y="2638.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter.printJObject$ (53 samples, 0.54%)</title><rect x="44.2" y="2611.0" width="6.4" height="15" fill="#5aec5a" rx="2" ry="2"/>
<text x="47.2" y="2622.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter.printJObject (53 samples, 0.54%)</title><rect x="44.2" y="2595.0" width="6.4" height="15" fill="#58ea58" rx="2" ry="2"/>
<text x="47.2" y="2606.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter$.printArray (53 samples, 0.54%)</title><rect x="44.2" y="2579.0" width="6.4" height="15" fill="#35cb35" rx="2" ry="2"/>
<text x="47.2" y="2590.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/JsonPrinter.printArray$ (53 samples, 0.54%)</title><rect x="44.2" y="2563.0" width="6.4" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="47.2" y="2574.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/JsonPrinter.printArray (53 samples, 0.54%)</title><rect x="44.2" y="2547.0" width="6.4" height="15" fill="#3fd43f" rx="2" ry="2"/>
<text x="47.2" y="2558.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/mutable/ArrayOps$ofRef.foreach (53 samples, 0.54%)</title><rect x="44.2" y="2531.0" width="6.4" height="15" fill="#45d945" rx="2" ry="2"/>
<text x="47.2" y="2542.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IndexedSeqOptimized.foreach$ (53 samples, 0.54%)</title><rect x="44.2" y="2515.0" width="6.4" height="15" fill="#5bee5b" rx="2" ry="2"/>
<text x="47.2" y="2526.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IndexedSeqOptimized.foreach (53 samples, 0.54%)</title><rect x="44.2" y="2499.0" width="6.4" height="15" fill="#39ce39" rx="2" ry="2"/>
<text x="47.2" y="2510.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/JsonPrinter$$Lambda$1992/1155222207.apply (53 samples, 0.54%)</title><rect x="44.2" y="2483.0" width="6.4" height="15" fill="#5ff15f" rx="2" ry="2"/>
<text x="47.2" y="2494.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/JsonPrinter.$anonfun$printArray$1$adapted (53 samples, 0.54%)</title><rect x="44.2" y="2467.0" width="6.4" height="15" fill="#51e451" rx="2" ry="2"/>
<text x="47.2" y="2478.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/JsonPrinter.$anonfun$printArray$1 (53 samples, 0.54%)</title><rect x="44.2" y="2451.0" width="6.4" height="15" fill="#53e653" rx="2" ry="2"/>
<text x="47.2" y="2462.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter$$Lambda$1991/1405262959.apply (53 samples, 0.54%)</title><rect x="44.2" y="2435.0" width="6.4" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="47.2" y="2446.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter.$anonfun$printJObject$2$adapted (53 samples, 0.54%)</title><rect x="44.2" y="2419.0" width="6.4" height="15" fill="#45da45" rx="2" ry="2"/>
<text x="47.2" y="2430.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter.$anonfun$printJObject$2 (53 samples, 0.54%)</title><rect x="44.2" y="2403.0" width="6.4" height="15" fill="#5cee5c" rx="2" ry="2"/>
<text x="47.2" y="2414.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter$.print (53 samples, 0.54%)</title><rect x="44.2" y="2387.0" width="6.4" height="15" fill="#3acf3a" rx="2" ry="2"/>
<text x="47.2" y="2398.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter.print$ (53 samples, 0.54%)</title><rect x="44.2" y="2371.0" width="6.4" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="47.2" y="2382.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter.print (53 samples, 0.54%)</title><rect x="44.2" y="2355.0" width="6.4" height="15" fill="#4fe24f" rx="2" ry="2"/>
<text x="47.2" y="2366.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter$.printJArray (49 samples, 0.50%)</title><rect x="44.2" y="2339.0" width="5.9" height="15" fill="#65f765" rx="2" ry="2"/>
<text x="47.2" y="2350.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter.printJArray$ (49 samples, 0.50%)</title><rect x="44.2" y="2323.0" width="5.9" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="47.2" y="2334.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter.printJArray (49 samples, 0.50%)</title><rect x="44.2" y="2307.0" width="5.9" height="15" fill="#53e653" rx="2" ry="2"/>
<text x="47.2" y="2318.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter$.printArray (46 samples, 0.47%)</title><rect x="44.6" y="2291.0" width="5.5" height="15" fill="#5ef05e" rx="2" ry="2"/>
<text x="47.6" y="2302.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/JsonPrinter.printArray$ (46 samples, 0.47%)</title><rect x="44.6" y="2275.0" width="5.5" height="15" fill="#44d944" rx="2" ry="2"/>
<text x="47.6" y="2286.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/JsonPrinter.printArray (46 samples, 0.47%)</title><rect x="44.6" y="2259.0" width="5.5" height="15" fill="#3acf3a" rx="2" ry="2"/>
<text x="47.6" y="2270.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/mutable/ArrayOps$ofRef.foreach (45 samples, 0.46%)</title><rect x="44.7" y="2243.0" width="5.4" height="15" fill="#51e551" rx="2" ry="2"/>
<text x="47.7" y="2254.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IndexedSeqOptimized.foreach$ (45 samples, 0.46%)</title><rect x="44.7" y="2227.0" width="5.4" height="15" fill="#44d944" rx="2" ry="2"/>
<text x="47.7" y="2238.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IndexedSeqOptimized.foreach (45 samples, 0.46%)</title><rect x="44.7" y="2211.0" width="5.4" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="47.7" y="2222.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/JsonPrinter$$Lambda$1992/1155222207.apply (45 samples, 0.46%)</title><rect x="44.7" y="2195.0" width="5.4" height="15" fill="#51e451" rx="2" ry="2"/>
<text x="47.7" y="2206.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/JsonPrinter.$anonfun$printArray$1$adapted (45 samples, 0.46%)</title><rect x="44.7" y="2179.0" width="5.4" height="15" fill="#4bdf4b" rx="2" ry="2"/>
<text x="47.7" y="2190.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/JsonPrinter.$anonfun$printArray$1 (45 samples, 0.46%)</title><rect x="44.7" y="2163.0" width="5.4" height="15" fill="#41d641" rx="2" ry="2"/>
<text x="47.7" y="2174.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter$$Lambda$1994/1622855186.apply (45 samples, 0.46%)</title><rect x="44.7" y="2147.0" width="5.4" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="47.7" y="2158.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter.$anonfun$printJArray$2$adapted (45 samples, 0.46%)</title><rect x="44.7" y="2131.0" width="5.4" height="15" fill="#49dd49" rx="2" ry="2"/>
<text x="47.7" y="2142.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter.$anonfun$printJArray$2 (45 samples, 0.46%)</title><rect x="44.7" y="2115.0" width="5.4" height="15" fill="#4ce04c" rx="2" ry="2"/>
<text x="47.7" y="2126.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter$.print (45 samples, 0.46%)</title><rect x="44.7" y="2099.0" width="5.4" height="15" fill="#4ee24e" rx="2" ry="2"/>
<text x="47.7" y="2110.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter.print$ (45 samples, 0.46%)</title><rect x="44.7" y="2083.0" width="5.4" height="15" fill="#49dd49" rx="2" ry="2"/>
<text x="47.7" y="2094.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter.print (45 samples, 0.46%)</title><rect x="44.7" y="2067.0" width="5.4" height="15" fill="#42d742" rx="2" ry="2"/>
<text x="47.7" y="2078.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter$.printJObject (39 samples, 0.40%)</title><rect x="45.4" y="2051.0" width="4.7" height="15" fill="#36cc36" rx="2" ry="2"/>
<text x="48.4" y="2062.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter.printJObject$ (39 samples, 0.40%)</title><rect x="45.4" y="2035.0" width="4.7" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="48.4" y="2046.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter.printJObject (39 samples, 0.40%)</title><rect x="45.4" y="2019.0" width="4.7" height="15" fill="#41d541" rx="2" ry="2"/>
<text x="48.4" y="2030.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter$.printArray (35 samples, 0.36%)</title><rect x="45.9" y="2003.0" width="4.2" height="15" fill="#5aec5a" rx="2" ry="2"/>
<text x="48.9" y="2014.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/JsonPrinter.printArray$ (35 samples, 0.36%)</title><rect x="45.9" y="1987.0" width="4.2" height="15" fill="#5aed5a" rx="2" ry="2"/>
<text x="48.9" y="1998.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/JsonPrinter.printArray (35 samples, 0.36%)</title><rect x="45.9" y="1971.0" width="4.2" height="15" fill="#50e450" rx="2" ry="2"/>
<text x="48.9" y="1982.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/mutable/ArrayOps$ofRef.foreach (33 samples, 0.34%)</title><rect x="45.9" y="1955.0" width="4.0" height="15" fill="#5df05d" rx="2" ry="2"/>
<text x="48.9" y="1966.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IndexedSeqOptimized.foreach$ (33 samples, 0.34%)</title><rect x="45.9" y="1939.0" width="4.0" height="15" fill="#5def5d" rx="2" ry="2"/>
<text x="48.9" y="1950.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IndexedSeqOptimized.foreach (33 samples, 0.34%)</title><rect x="45.9" y="1923.0" width="4.0" height="15" fill="#6afb6a" rx="2" ry="2"/>
<text x="48.9" y="1934.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/JsonPrinter$$Lambda$1992/1155222207.apply (33 samples, 0.34%)</title><rect x="45.9" y="1907.0" width="4.0" height="15" fill="#4de14d" rx="2" ry="2"/>
<text x="48.9" y="1918.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/JsonPrinter.$anonfun$printArray$1$adapted (33 samples, 0.34%)</title><rect x="45.9" y="1891.0" width="4.0" height="15" fill="#6afb6a" rx="2" ry="2"/>
<text x="48.9" y="1902.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/JsonPrinter.$anonfun$printArray$1 (33 samples, 0.34%)</title><rect x="45.9" y="1875.0" width="4.0" height="15" fill="#45d945" rx="2" ry="2"/>
<text x="48.9" y="1886.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter$$Lambda$1991/1405262959.apply (33 samples, 0.34%)</title><rect x="45.9" y="1859.0" width="4.0" height="15" fill="#4de14d" rx="2" ry="2"/>
<text x="48.9" y="1870.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter.$anonfun$printJObject$2$adapted (33 samples, 0.34%)</title><rect x="45.9" y="1843.0" width="4.0" height="15" fill="#51e451" rx="2" ry="2"/>
<text x="48.9" y="1854.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter.$anonfun$printJObject$2 (33 samples, 0.34%)</title><rect x="45.9" y="1827.0" width="4.0" height="15" fill="#59ec59" rx="2" ry="2"/>
<text x="48.9" y="1838.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter$.print (33 samples, 0.34%)</title><rect x="45.9" y="1811.0" width="4.0" height="15" fill="#4ade4a" rx="2" ry="2"/>
<text x="48.9" y="1822.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter.print$ (33 samples, 0.34%)</title><rect x="45.9" y="1795.0" width="4.0" height="15" fill="#56e956" rx="2" ry="2"/>
<text x="48.9" y="1806.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter.print (33 samples, 0.34%)</title><rect x="45.9" y="1779.0" width="4.0" height="15" fill="#6dfe6d" rx="2" ry="2"/>
<text x="48.9" y="1790.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter$.printJArray (21 samples, 0.21%)</title><rect x="45.9" y="1763.0" width="2.5" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="48.9" y="1774.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter.printJArray$ (21 samples, 0.21%)</title><rect x="45.9" y="1747.0" width="2.5" height="15" fill="#5aec5a" rx="2" ry="2"/>
<text x="48.9" y="1758.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter.printJArray (21 samples, 0.21%)</title><rect x="45.9" y="1731.0" width="2.5" height="15" fill="#46da46" rx="2" ry="2"/>
<text x="48.9" y="1742.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter$.printArray (19 samples, 0.19%)</title><rect x="46.2" y="1715.0" width="2.2" height="15" fill="#52e552" rx="2" ry="2"/>
<text x="49.2" y="1726.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/JsonPrinter.printArray$ (19 samples, 0.19%)</title><rect x="46.2" y="1699.0" width="2.2" height="15" fill="#51e451" rx="2" ry="2"/>
<text x="49.2" y="1710.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/JsonPrinter.printArray (19 samples, 0.19%)</title><rect x="46.2" y="1683.0" width="2.2" height="15" fill="#63f563" rx="2" ry="2"/>
<text x="49.2" y="1694.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/mutable/ArrayOps$ofRef.foreach (18 samples, 0.18%)</title><rect x="46.3" y="1667.0" width="2.1" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="49.3" y="1678.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IndexedSeqOptimized.foreach$ (18 samples, 0.18%)</title><rect x="46.3" y="1651.0" width="2.1" height="15" fill="#42d742" rx="2" ry="2"/>
<text x="49.3" y="1662.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IndexedSeqOptimized.foreach (18 samples, 0.18%)</title><rect x="46.3" y="1635.0" width="2.1" height="15" fill="#58eb58" rx="2" ry="2"/>
<text x="49.3" y="1646.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/JsonPrinter$$Lambda$1992/1155222207.apply (18 samples, 0.18%)</title><rect x="46.3" y="1619.0" width="2.1" height="15" fill="#52e652" rx="2" ry="2"/>
<text x="49.3" y="1630.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/JsonPrinter.$anonfun$printArray$1$adapted (18 samples, 0.18%)</title><rect x="46.3" y="1603.0" width="2.1" height="15" fill="#69fa69" rx="2" ry="2"/>
<text x="49.3" y="1614.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/JsonPrinter.$anonfun$printArray$1 (18 samples, 0.18%)</title><rect x="46.3" y="1587.0" width="2.1" height="15" fill="#41d641" rx="2" ry="2"/>
<text x="49.3" y="1598.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter$$Lambda$1994/1622855186.apply (18 samples, 0.18%)</title><rect x="46.3" y="1571.0" width="2.1" height="15" fill="#6cfd6c" rx="2" ry="2"/>
<text x="49.3" y="1582.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter.$anonfun$printJArray$2$adapted (18 samples, 0.18%)</title><rect x="46.3" y="1555.0" width="2.1" height="15" fill="#40d540" rx="2" ry="2"/>
<text x="49.3" y="1566.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter.$anonfun$printJArray$2 (18 samples, 0.18%)</title><rect x="46.3" y="1539.0" width="2.1" height="15" fill="#64f664" rx="2" ry="2"/>
<text x="49.3" y="1550.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter$.print (18 samples, 0.18%)</title><rect x="46.3" y="1523.0" width="2.1" height="15" fill="#5bee5b" rx="2" ry="2"/>
<text x="49.3" y="1534.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter.print$ (18 samples, 0.18%)</title><rect x="46.3" y="1507.0" width="2.1" height="15" fill="#4de14d" rx="2" ry="2"/>
<text x="49.3" y="1518.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter.print (18 samples, 0.18%)</title><rect x="46.3" y="1491.0" width="2.1" height="15" fill="#63f463" rx="2" ry="2"/>
<text x="49.3" y="1502.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter$.printJObject (15 samples, 0.15%)</title><rect x="46.6" y="1475.0" width="1.8" height="15" fill="#33c933" rx="2" ry="2"/>
<text x="49.6" y="1486.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter.printJObject$ (15 samples, 0.15%)</title><rect x="46.6" y="1459.0" width="1.8" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="49.6" y="1470.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter.printJObject (15 samples, 0.15%)</title><rect x="46.6" y="1443.0" width="1.8" height="15" fill="#5cee5c" rx="2" ry="2"/>
<text x="49.6" y="1454.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter$.printArray (15 samples, 0.15%)</title><rect x="46.6" y="1427.0" width="1.8" height="15" fill="#5cee5c" rx="2" ry="2"/>
<text x="49.6" y="1438.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/JsonPrinter.printArray$ (15 samples, 0.15%)</title><rect x="46.6" y="1411.0" width="1.8" height="15" fill="#4ce04c" rx="2" ry="2"/>
<text x="49.6" y="1422.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/JsonPrinter.printArray (15 samples, 0.15%)</title><rect x="46.6" y="1395.0" width="1.8" height="15" fill="#54e854" rx="2" ry="2"/>
<text x="49.6" y="1406.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/mutable/ArrayOps$ofRef.foreach (14 samples, 0.14%)</title><rect x="46.6" y="1379.0" width="1.7" height="15" fill="#5ff15f" rx="2" ry="2"/>
<text x="49.6" y="1390.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IndexedSeqOptimized.foreach$ (14 samples, 0.14%)</title><rect x="46.6" y="1363.0" width="1.7" height="15" fill="#6dfe6d" rx="2" ry="2"/>
<text x="49.6" y="1374.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IndexedSeqOptimized.foreach (14 samples, 0.14%)</title><rect x="46.6" y="1347.0" width="1.7" height="15" fill="#5bee5b" rx="2" ry="2"/>
<text x="49.6" y="1358.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/JsonPrinter$$Lambda$1992/1155222207.apply (14 samples, 0.14%)</title><rect x="46.6" y="1331.0" width="1.7" height="15" fill="#42d742" rx="2" ry="2"/>
<text x="49.6" y="1342.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/JsonPrinter.$anonfun$printArray$1$adapted (14 samples, 0.14%)</title><rect x="46.6" y="1315.0" width="1.7" height="15" fill="#5ff15f" rx="2" ry="2"/>
<text x="49.6" y="1326.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/JsonPrinter.$anonfun$printArray$1 (14 samples, 0.14%)</title><rect x="46.6" y="1299.0" width="1.7" height="15" fill="#3cd13c" rx="2" ry="2"/>
<text x="49.6" y="1310.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter$$Lambda$1991/1405262959.apply (14 samples, 0.14%)</title><rect x="46.6" y="1283.0" width="1.7" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="49.6" y="1294.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter.$anonfun$printJObject$2$adapted (14 samples, 0.14%)</title><rect x="46.6" y="1267.0" width="1.7" height="15" fill="#4fe34f" rx="2" ry="2"/>
<text x="49.6" y="1278.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter.$anonfun$printJObject$2 (14 samples, 0.14%)</title><rect x="46.6" y="1251.0" width="1.7" height="15" fill="#36cc36" rx="2" ry="2"/>
<text x="49.6" y="1262.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter$.print (12 samples, 0.12%)</title><rect x="46.6" y="1235.0" width="1.5" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="49.6" y="1246.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter.print$ (12 samples, 0.12%)</title><rect x="46.6" y="1219.0" width="1.5" height="15" fill="#68f968" rx="2" ry="2"/>
<text x="49.6" y="1230.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter.print (12 samples, 0.12%)</title><rect x="46.6" y="1203.0" width="1.5" height="15" fill="#60f360" rx="2" ry="2"/>
<text x="49.6" y="1214.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter$.printJObject (9 samples, 0.09%)</title><rect x="48.4" y="1763.0" width="1.1" height="15" fill="#5ef15e" rx="2" ry="2"/>
<text x="51.4" y="1774.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter.printJObject$ (9 samples, 0.09%)</title><rect x="48.4" y="1747.0" width="1.1" height="15" fill="#4ce04c" rx="2" ry="2"/>
<text x="51.4" y="1758.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter.printJObject (9 samples, 0.09%)</title><rect x="48.4" y="1731.0" width="1.1" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="51.4" y="1742.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/Converter$.toJson (97 samples, 0.99%)</title><rect x="50.6" y="3971.0" width="11.6" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="53.6" y="3982.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/SupportConverter.toJson$ (97 samples, 0.99%)</title><rect x="50.6" y="3955.0" width="11.6" height="15" fill="#51e451" rx="2" ry="2"/>
<text x="53.6" y="3966.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/SupportConverter.toJson (97 samples, 0.99%)</title><rect x="50.6" y="3939.0" width="11.6" height="15" fill="#36cb36" rx="2" ry="2"/>
<text x="53.6" y="3950.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/util/Try$.apply (97 samples, 0.99%)</title><rect x="50.6" y="3923.0" width="11.6" height="15" fill="#52e552" rx="2" ry="2"/>
<text x="53.6" y="3934.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/SupportConverter$$Lambda$1989/482031976.apply (97 samples, 0.99%)</title><rect x="50.6" y="3907.0" width="11.6" height="15" fill="#49dd49" rx="2" ry="2"/>
<text x="53.6" y="3918.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/SupportConverter.$anonfun$toJson$1 (97 samples, 0.99%)</title><rect x="50.6" y="3891.0" width="11.6" height="15" fill="#3ed33e" rx="2" ry="2"/>
<text x="53.6" y="3902.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/Converter$.toJsonUnsafe (97 samples, 0.99%)</title><rect x="50.6" y="3875.0" width="11.6" height="15" fill="#49dd49" rx="2" ry="2"/>
<text x="53.6" y="3886.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/SupportConverter.toJsonUnsafe$ (97 samples, 0.99%)</title><rect x="50.6" y="3859.0" width="11.6" height="15" fill="#57ea57" rx="2" ry="2"/>
<text x="53.6" y="3870.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/SupportConverter.toJsonUnsafe (97 samples, 0.99%)</title><rect x="50.6" y="3843.0" width="11.6" height="15" fill="#59ec59" rx="2" ry="2"/>
<text x="53.6" y="3854.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/librarymanagement/UpdateReportFormats$$anon$1.write (97 samples, 0.99%)</title><rect x="50.6" y="3827.0" width="11.6" height="15" fill="#5cef5c" rx="2" ry="2"/>
<text x="53.6" y="3838.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/librarymanagement/UpdateReportFormats$$anon$1.write (97 samples, 0.99%)</title><rect x="50.6" y="3811.0" width="11.6" height="15" fill="#52e552" rx="2" ry="2"/>
<text x="53.6" y="3822.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/Builder.addField (97 samples, 0.99%)</title><rect x="50.6" y="3795.0" width="11.6" height="15" fill="#42d742" rx="2" ry="2"/>
<text x="53.6" y="3806.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/CollectionFormats$$anon$2.addField (95 samples, 0.97%)</title><rect x="50.7" y="3779.0" width="11.4" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="53.7" y="3790.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/JsonWriter.addField$ (95 samples, 0.97%)</title><rect x="50.7" y="3763.0" width="11.4" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="53.7" y="3774.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/JsonWriter.addField (95 samples, 0.97%)</title><rect x="50.7" y="3747.0" width="11.4" height="15" fill="#5bed5b" rx="2" ry="2"/>
<text x="53.7" y="3758.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/CollectionFormats$$anon$2.write (95 samples, 0.97%)</title><rect x="50.7" y="3731.0" width="11.4" height="15" fill="#44d944" rx="2" ry="2"/>
<text x="53.7" y="3742.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/CollectionFormats$$anon$2.write (95 samples, 0.97%)</title><rect x="50.7" y="3715.0" width="11.4" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="53.7" y="3726.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractIterable.foreach (95 samples, 0.97%)</title><rect x="50.7" y="3699.0" width="11.4" height="15" fill="#38cd38" rx="2" ry="2"/>
<text x="53.7" y="3710.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IterableLike.foreach$ (95 samples, 0.97%)</title><rect x="50.7" y="3683.0" width="11.4" height="15" fill="#51e451" rx="2" ry="2"/>
<text x="53.7" y="3694.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IterableLike.foreach (95 samples, 0.97%)</title><rect x="50.7" y="3667.0" width="11.4" height="15" fill="#60f260" rx="2" ry="2"/>
<text x="53.7" y="3678.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractIterator.foreach (95 samples, 0.97%)</title><rect x="50.7" y="3651.0" width="11.4" height="15" fill="#3fd43f" rx="2" ry="2"/>
<text x="53.7" y="3662.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/Iterator.foreach$ (95 samples, 0.97%)</title><rect x="50.7" y="3635.0" width="11.4" height="15" fill="#35cb35" rx="2" ry="2"/>
<text x="53.7" y="3646.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/Iterator.foreach (95 samples, 0.97%)</title><rect x="50.7" y="3619.0" width="11.4" height="15" fill="#36cb36" rx="2" ry="2"/>
<text x="53.7" y="3630.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/CollectionFormats$$anon$2$$Lambda$1956/889491564.apply (95 samples, 0.97%)</title><rect x="50.7" y="3603.0" width="11.4" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="53.7" y="3614.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/CollectionFormats$$anon$2.$anonfun$write$2$adapted (95 samples, 0.97%)</title><rect x="50.7" y="3587.0" width="11.4" height="15" fill="#5def5d" rx="2" ry="2"/>
<text x="53.7" y="3598.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/CollectionFormats$$anon$2.$anonfun$write$2 (95 samples, 0.97%)</title><rect x="50.7" y="3571.0" width="11.4" height="15" fill="#43d843" rx="2" ry="2"/>
<text x="53.7" y="3582.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/librarymanagement/ConfigurationReportFormats$$anon$1.write (95 samples, 0.97%)</title><rect x="50.7" y="3555.0" width="11.4" height="15" fill="#35ca35" rx="2" ry="2"/>
<text x="53.7" y="3566.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/librarymanagement/ConfigurationReportFormats$$anon$1.write (95 samples, 0.97%)</title><rect x="50.7" y="3539.0" width="11.4" height="15" fill="#4ee24e" rx="2" ry="2"/>
<text x="53.7" y="3550.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/Builder.addField (95 samples, 0.97%)</title><rect x="50.7" y="3523.0" width="11.4" height="15" fill="#4de14d" rx="2" ry="2"/>
<text x="53.7" y="3534.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/CollectionFormats$$anon$2.addField (95 samples, 0.97%)</title><rect x="50.7" y="3507.0" width="11.4" height="15" fill="#51e451" rx="2" ry="2"/>
<text x="53.7" y="3518.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/JsonWriter.addField$ (95 samples, 0.97%)</title><rect x="50.7" y="3491.0" width="11.4" height="15" fill="#4ce04c" rx="2" ry="2"/>
<text x="53.7" y="3502.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/JsonWriter.addField (95 samples, 0.97%)</title><rect x="50.7" y="3475.0" width="11.4" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="53.7" y="3486.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/CollectionFormats$$anon$2.write (95 samples, 0.97%)</title><rect x="50.7" y="3459.0" width="11.4" height="15" fill="#43d743" rx="2" ry="2"/>
<text x="53.7" y="3470.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/CollectionFormats$$anon$2.write (95 samples, 0.97%)</title><rect x="50.7" y="3443.0" width="11.4" height="15" fill="#64f564" rx="2" ry="2"/>
<text x="53.7" y="3454.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractIterable.foreach (95 samples, 0.97%)</title><rect x="50.7" y="3427.0" width="11.4" height="15" fill="#5bee5b" rx="2" ry="2"/>
<text x="53.7" y="3438.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IterableLike.foreach$ (95 samples, 0.97%)</title><rect x="50.7" y="3411.0" width="11.4" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="53.7" y="3422.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IterableLike.foreach (95 samples, 0.97%)</title><rect x="50.7" y="3395.0" width="11.4" height="15" fill="#5aed5a" rx="2" ry="2"/>
<text x="53.7" y="3406.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractIterator.foreach (95 samples, 0.97%)</title><rect x="50.7" y="3379.0" width="11.4" height="15" fill="#45da45" rx="2" ry="2"/>
<text x="53.7" y="3390.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/Iterator.foreach$ (95 samples, 0.97%)</title><rect x="50.7" y="3363.0" width="11.4" height="15" fill="#35cb35" rx="2" ry="2"/>
<text x="53.7" y="3374.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/Iterator.foreach (95 samples, 0.97%)</title><rect x="50.7" y="3347.0" width="11.4" height="15" fill="#6dfe6d" rx="2" ry="2"/>
<text x="53.7" y="3358.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/CollectionFormats$$anon$2$$Lambda$1956/889491564.apply (95 samples, 0.97%)</title><rect x="50.7" y="3331.0" width="11.4" height="15" fill="#52e552" rx="2" ry="2"/>
<text x="53.7" y="3342.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/CollectionFormats$$anon$2.$anonfun$write$2$adapted (95 samples, 0.97%)</title><rect x="50.7" y="3315.0" width="11.4" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="53.7" y="3326.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/CollectionFormats$$anon$2.$anonfun$write$2 (95 samples, 0.97%)</title><rect x="50.7" y="3299.0" width="11.4" height="15" fill="#65f765" rx="2" ry="2"/>
<text x="53.7" y="3310.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/librarymanagement/ModuleReportFormats$$anon$1.write (46 samples, 0.47%)</title><rect x="50.7" y="3283.0" width="5.5" height="15" fill="#33c933" rx="2" ry="2"/>
<text x="53.7" y="3294.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/librarymanagement/ModuleReportFormats$$anon$1.write (46 samples, 0.47%)</title><rect x="50.7" y="3267.0" width="5.5" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="53.7" y="3278.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/Builder.addField (44 samples, 0.45%)</title><rect x="51.0" y="3251.0" width="5.2" height="15" fill="#4fe24f" rx="2" ry="2"/>
<text x="54.0" y="3262.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/CollectionFormats$$anon$2.addField (36 samples, 0.37%)</title><rect x="51.2" y="3235.0" width="4.3" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="54.2" y="3246.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/JsonWriter.addField$ (36 samples, 0.37%)</title><rect x="51.2" y="3219.0" width="4.3" height="15" fill="#5ef05e" rx="2" ry="2"/>
<text x="54.2" y="3230.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/JsonWriter.addField (36 samples, 0.37%)</title><rect x="51.2" y="3203.0" width="4.3" height="15" fill="#5aed5a" rx="2" ry="2"/>
<text x="54.2" y="3214.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/CollectionFormats$$anon$2.write (36 samples, 0.37%)</title><rect x="51.2" y="3187.0" width="4.3" height="15" fill="#52e552" rx="2" ry="2"/>
<text x="54.2" y="3198.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/CollectionFormats$$anon$2.write (36 samples, 0.37%)</title><rect x="51.2" y="3171.0" width="4.3" height="15" fill="#34c934" rx="2" ry="2"/>
<text x="54.2" y="3182.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractIterable.foreach (35 samples, 0.36%)</title><rect x="51.2" y="3155.0" width="4.2" height="15" fill="#39ce39" rx="2" ry="2"/>
<text x="54.2" y="3166.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IterableLike.foreach$ (35 samples, 0.36%)</title><rect x="51.2" y="3139.0" width="4.2" height="15" fill="#6cfd6c" rx="2" ry="2"/>
<text x="54.2" y="3150.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IterableLike.foreach (35 samples, 0.36%)</title><rect x="51.2" y="3123.0" width="4.2" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="54.2" y="3134.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractIterator.foreach (33 samples, 0.34%)</title><rect x="51.2" y="3107.0" width="4.0" height="15" fill="#47db47" rx="2" ry="2"/>
<text x="54.2" y="3118.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/Iterator.foreach$ (33 samples, 0.34%)</title><rect x="51.2" y="3091.0" width="4.0" height="15" fill="#56e956" rx="2" ry="2"/>
<text x="54.2" y="3102.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/Iterator.foreach (33 samples, 0.34%)</title><rect x="51.2" y="3075.0" width="4.0" height="15" fill="#56e956" rx="2" ry="2"/>
<text x="54.2" y="3086.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/CollectionFormats$$anon$2$$Lambda$1956/889491564.apply (33 samples, 0.34%)</title><rect x="51.2" y="3059.0" width="4.0" height="15" fill="#39ce39" rx="2" ry="2"/>
<text x="54.2" y="3070.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/CollectionFormats$$anon$2.$anonfun$write$2$adapted (33 samples, 0.34%)</title><rect x="51.2" y="3043.0" width="4.0" height="15" fill="#53e653" rx="2" ry="2"/>
<text x="54.2" y="3054.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/CollectionFormats$$anon$2.$anonfun$write$2 (33 samples, 0.34%)</title><rect x="51.2" y="3027.0" width="4.0" height="15" fill="#6bfc6b" rx="2" ry="2"/>
<text x="54.2" y="3038.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/librarymanagement/CallerFormats$$anon$1.write (10 samples, 0.10%)</title><rect x="51.2" y="3011.0" width="1.2" height="15" fill="#47db47" rx="2" ry="2"/>
<text x="54.2" y="3022.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/librarymanagement/CallerFormats$$anon$1.write (10 samples, 0.10%)</title><rect x="51.2" y="2995.0" width="1.2" height="15" fill="#64f664" rx="2" ry="2"/>
<text x="54.2" y="3006.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/Builder.addField (10 samples, 0.10%)</title><rect x="51.2" y="2979.0" width="1.2" height="15" fill="#6cfd6c" rx="2" ry="2"/>
<text x="54.2" y="2990.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/TupleFormats$$anon$2.write (20 samples, 0.20%)</title><rect x="52.8" y="3011.0" width="2.4" height="15" fill="#41d641" rx="2" ry="2"/>
<text x="55.8" y="3022.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/TupleFormats$$anon$2.write (20 samples, 0.20%)</title><rect x="52.8" y="2995.0" width="2.4" height="15" fill="#41d541" rx="2" ry="2"/>
<text x="55.8" y="3006.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/IsoFormats$$anon$2.write (18 samples, 0.18%)</title><rect x="53.0" y="2979.0" width="2.2" height="15" fill="#4bdf4b" rx="2" ry="2"/>
<text x="56.0" y="2990.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/IsoString$$anon$1.to (18 samples, 0.18%)</title><rect x="53.0" y="2963.0" width="2.2" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="56.0" y="2974.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/JavaExtraFormats$$Lambda$496/382252989.apply (18 samples, 0.18%)</title><rect x="53.0" y="2947.0" width="2.2" height="15" fill="#67f967" rx="2" ry="2"/>
<text x="56.0" y="2958.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/JavaExtraFormats.$anonfun$fileStringIso$1 (18 samples, 0.18%)</title><rect x="53.0" y="2931.0" width="2.2" height="15" fill="#40d540" rx="2" ry="2"/>
<text x="56.0" y="2942.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/fs/UnixPath.toUri (18 samples, 0.18%)</title><rect x="53.0" y="2915.0" width="2.2" height="15" fill="#5ff15f" rx="2" ry="2"/>
<text x="56.0" y="2926.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/fs/UnixUriUtils.toUri (18 samples, 0.18%)</title><rect x="53.0" y="2899.0" width="2.2" height="15" fill="#5bee5b" rx="2" ry="2"/>
<text x="56.0" y="2910.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/fs/UnixFileAttributes.get (16 samples, 0.16%)</title><rect x="53.2" y="2883.0" width="2.0" height="15" fill="#4de04d" rx="2" ry="2"/>
<text x="56.2" y="2894.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/fs/UnixNativeDispatcher.stat (16 samples, 0.16%)</title><rect x="53.2" y="2867.0" width="2.0" height="15" fill="#41d641" rx="2" ry="2"/>
<text x="56.2" y="2878.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/fs/UnixNativeDispatcher.stat0 (15 samples, 0.15%)</title><rect x="53.4" y="2851.0" width="1.8" height="15" fill="#59ec59" rx="2" ry="2"/>
<text x="56.4" y="2862.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/librarymanagement/OrganizationArtifactReportFormats$$anon$1.write (49 samples, 0.50%)</title><rect x="56.2" y="3283.0" width="5.9" height="15" fill="#38ce38" rx="2" ry="2"/>
<text x="59.2" y="3294.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/librarymanagement/OrganizationArtifactReportFormats$$anon$1.write (49 samples, 0.50%)</title><rect x="56.2" y="3267.0" width="5.9" height="15" fill="#3ed33e" rx="2" ry="2"/>
<text x="59.2" y="3278.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/Builder.addField (47 samples, 0.48%)</title><rect x="56.2" y="3251.0" width="5.7" height="15" fill="#38ce38" rx="2" ry="2"/>
<text x="59.2" y="3262.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/CollectionFormats$$anon$2.addField (47 samples, 0.48%)</title><rect x="56.2" y="3235.0" width="5.7" height="15" fill="#52e652" rx="2" ry="2"/>
<text x="59.2" y="3246.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/JsonWriter.addField$ (47 samples, 0.48%)</title><rect x="56.2" y="3219.0" width="5.7" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="59.2" y="3230.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/JsonWriter.addField (47 samples, 0.48%)</title><rect x="56.2" y="3203.0" width="5.7" height="15" fill="#3cd13c" rx="2" ry="2"/>
<text x="59.2" y="3214.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/CollectionFormats$$anon$2.write (47 samples, 0.48%)</title><rect x="56.2" y="3187.0" width="5.7" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="59.2" y="3198.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/CollectionFormats$$anon$2.write (47 samples, 0.48%)</title><rect x="56.2" y="3171.0" width="5.7" height="15" fill="#4bdf4b" rx="2" ry="2"/>
<text x="59.2" y="3182.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractIterable.foreach (47 samples, 0.48%)</title><rect x="56.2" y="3155.0" width="5.7" height="15" fill="#36cc36" rx="2" ry="2"/>
<text x="59.2" y="3166.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IterableLike.foreach$ (47 samples, 0.48%)</title><rect x="56.2" y="3139.0" width="5.7" height="15" fill="#5bed5b" rx="2" ry="2"/>
<text x="59.2" y="3150.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IterableLike.foreach (47 samples, 0.48%)</title><rect x="56.2" y="3123.0" width="5.7" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="59.2" y="3134.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractIterator.foreach (47 samples, 0.48%)</title><rect x="56.2" y="3107.0" width="5.7" height="15" fill="#64f564" rx="2" ry="2"/>
<text x="59.2" y="3118.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/Iterator.foreach$ (47 samples, 0.48%)</title><rect x="56.2" y="3091.0" width="5.7" height="15" fill="#39ce39" rx="2" ry="2"/>
<text x="59.2" y="3102.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/Iterator.foreach (47 samples, 0.48%)</title><rect x="56.2" y="3075.0" width="5.7" height="15" fill="#6cfd6c" rx="2" ry="2"/>
<text x="59.2" y="3086.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/CollectionFormats$$anon$2$$Lambda$1956/889491564.apply (47 samples, 0.48%)</title><rect x="56.2" y="3059.0" width="5.7" height="15" fill="#33c933" rx="2" ry="2"/>
<text x="59.2" y="3070.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/CollectionFormats$$anon$2.$anonfun$write$2$adapted (47 samples, 0.48%)</title><rect x="56.2" y="3043.0" width="5.7" height="15" fill="#36cc36" rx="2" ry="2"/>
<text x="59.2" y="3054.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/CollectionFormats$$anon$2.$anonfun$write$2 (47 samples, 0.48%)</title><rect x="56.2" y="3027.0" width="5.7" height="15" fill="#4fe34f" rx="2" ry="2"/>
<text x="59.2" y="3038.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/librarymanagement/ModuleReportFormats$$anon$1.write (47 samples, 0.48%)</title><rect x="56.2" y="3011.0" width="5.7" height="15" fill="#60f260" rx="2" ry="2"/>
<text x="59.2" y="3022.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/librarymanagement/ModuleReportFormats$$anon$1.write (47 samples, 0.48%)</title><rect x="56.2" y="2995.0" width="5.7" height="15" fill="#6afb6a" rx="2" ry="2"/>
<text x="59.2" y="3006.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/Builder.addField (46 samples, 0.47%)</title><rect x="56.4" y="2979.0" width="5.5" height="15" fill="#41d541" rx="2" ry="2"/>
<text x="59.4" y="2990.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/CollectionFormats$$anon$2.addField (38 samples, 0.39%)</title><rect x="56.7" y="2963.0" width="4.6" height="15" fill="#47db47" rx="2" ry="2"/>
<text x="59.7" y="2974.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/JsonWriter.addField$ (38 samples, 0.39%)</title><rect x="56.7" y="2947.0" width="4.6" height="15" fill="#60f260" rx="2" ry="2"/>
<text x="59.7" y="2958.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/JsonWriter.addField (38 samples, 0.39%)</title><rect x="56.7" y="2931.0" width="4.6" height="15" fill="#4fe34f" rx="2" ry="2"/>
<text x="59.7" y="2942.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/CollectionFormats$$anon$2.write (38 samples, 0.39%)</title><rect x="56.7" y="2915.0" width="4.6" height="15" fill="#5ef15e" rx="2" ry="2"/>
<text x="59.7" y="2926.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/CollectionFormats$$anon$2.write (38 samples, 0.39%)</title><rect x="56.7" y="2899.0" width="4.6" height="15" fill="#5aec5a" rx="2" ry="2"/>
<text x="59.7" y="2910.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractIterable.foreach (34 samples, 0.35%)</title><rect x="56.8" y="2883.0" width="4.1" height="15" fill="#5aed5a" rx="2" ry="2"/>
<text x="59.8" y="2894.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IterableLike.foreach$ (34 samples, 0.35%)</title><rect x="56.8" y="2867.0" width="4.1" height="15" fill="#5ff15f" rx="2" ry="2"/>
<text x="59.8" y="2878.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IterableLike.foreach (34 samples, 0.35%)</title><rect x="56.8" y="2851.0" width="4.1" height="15" fill="#34ca34" rx="2" ry="2"/>
<text x="59.8" y="2862.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractIterator.foreach (34 samples, 0.35%)</title><rect x="56.8" y="2835.0" width="4.1" height="15" fill="#3fd43f" rx="2" ry="2"/>
<text x="59.8" y="2846.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/Iterator.foreach$ (34 samples, 0.35%)</title><rect x="56.8" y="2819.0" width="4.1" height="15" fill="#3fd43f" rx="2" ry="2"/>
<text x="59.8" y="2830.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/Iterator.foreach (34 samples, 0.35%)</title><rect x="56.8" y="2803.0" width="4.1" height="15" fill="#53e653" rx="2" ry="2"/>
<text x="59.8" y="2814.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/CollectionFormats$$anon$2$$Lambda$1956/889491564.apply (34 samples, 0.35%)</title><rect x="56.8" y="2787.0" width="4.1" height="15" fill="#59eb59" rx="2" ry="2"/>
<text x="59.8" y="2798.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/CollectionFormats$$anon$2.$anonfun$write$2$adapted (34 samples, 0.35%)</title><rect x="56.8" y="2771.0" width="4.1" height="15" fill="#56e956" rx="2" ry="2"/>
<text x="59.8" y="2782.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/CollectionFormats$$anon$2.$anonfun$write$2 (34 samples, 0.35%)</title><rect x="56.8" y="2755.0" width="4.1" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="59.8" y="2766.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/librarymanagement/CallerFormats$$anon$1.write (11 samples, 0.11%)</title><rect x="56.8" y="2739.0" width="1.4" height="15" fill="#3fd43f" rx="2" ry="2"/>
<text x="59.8" y="2750.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/librarymanagement/CallerFormats$$anon$1.write (11 samples, 0.11%)</title><rect x="56.8" y="2723.0" width="1.4" height="15" fill="#40d440" rx="2" ry="2"/>
<text x="59.8" y="2734.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/Builder.addField (10 samples, 0.10%)</title><rect x="56.8" y="2707.0" width="1.2" height="15" fill="#59eb59" rx="2" ry="2"/>
<text x="59.8" y="2718.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/TupleFormats$$anon$2.write (20 samples, 0.20%)</title><rect x="58.5" y="2739.0" width="2.4" height="15" fill="#3bd13b" rx="2" ry="2"/>
<text x="61.5" y="2750.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/TupleFormats$$anon$2.write (20 samples, 0.20%)</title><rect x="58.5" y="2723.0" width="2.4" height="15" fill="#5ef05e" rx="2" ry="2"/>
<text x="61.5" y="2734.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/IsoFormats$$anon$2.write (18 samples, 0.18%)</title><rect x="58.8" y="2707.0" width="2.1" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="61.8" y="2718.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/IsoString$$anon$1.to (18 samples, 0.18%)</title><rect x="58.8" y="2691.0" width="2.1" height="15" fill="#34ca34" rx="2" ry="2"/>
<text x="61.8" y="2702.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/JavaExtraFormats$$Lambda$496/382252989.apply (18 samples, 0.18%)</title><rect x="58.8" y="2675.0" width="2.1" height="15" fill="#59ec59" rx="2" ry="2"/>
<text x="61.8" y="2686.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/JavaExtraFormats.$anonfun$fileStringIso$1 (18 samples, 0.18%)</title><rect x="58.8" y="2659.0" width="2.1" height="15" fill="#39ce39" rx="2" ry="2"/>
<text x="61.8" y="2670.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/fs/UnixPath.toUri (15 samples, 0.15%)</title><rect x="59.1" y="2643.0" width="1.8" height="15" fill="#6afc6a" rx="2" ry="2"/>
<text x="62.1" y="2654.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/fs/UnixUriUtils.toUri (15 samples, 0.15%)</title><rect x="59.1" y="2627.0" width="1.8" height="15" fill="#4fe24f" rx="2" ry="2"/>
<text x="62.1" y="2638.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/fs/UnixFileAttributes.get (14 samples, 0.14%)</title><rect x="59.2" y="2611.0" width="1.7" height="15" fill="#57ea57" rx="2" ry="2"/>
<text x="62.2" y="2622.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/fs/UnixNativeDispatcher.stat (14 samples, 0.14%)</title><rect x="59.2" y="2595.0" width="1.7" height="15" fill="#68fa68" rx="2" ry="2"/>
<text x="62.2" y="2606.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/fs/UnixNativeDispatcher.stat0 (14 samples, 0.14%)</title><rect x="59.2" y="2579.0" width="1.7" height="15" fill="#33c833" rx="2" ry="2"/>
<text x="62.2" y="2590.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/util/Try$.apply (273 samples, 2.78%)</title><rect x="62.2" y="4067.0" width="32.8" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="65.2" y="4078.0">sc..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/util/Tracked$$$Lambda$1969/1835642010.apply (273 samples, 2.78%)</title><rect x="62.2" y="4051.0" width="32.8" height="15" fill="#5def5d" rx="2" ry="2"/>
<text x="65.2" y="4062.0">sb..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/util/Tracked$.$anonfun$lastOutput$2 (273 samples, 2.78%)</title><rect x="62.2" y="4035.0" width="32.8" height="15" fill="#4fe34f" rx="2" ry="2"/>
<text x="65.2" y="4046.0">sb..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/util/FileBasedStore.read (273 samples, 2.78%)</title><rect x="62.2" y="4019.0" width="32.8" height="15" fill="#35ca35" rx="2" ry="2"/>
<text x="65.2" y="4030.0">sb..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/io/Using.apply (273 samples, 2.78%)</title><rect x="62.2" y="4003.0" width="32.8" height="15" fill="#4ce04c" rx="2" ry="2"/>
<text x="65.2" y="4014.0">sb..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/util/FileBasedStore$$Lambda$1932/1051075878.apply (272 samples, 2.77%)</title><rect x="62.4" y="3987.0" width="32.6" height="15" fill="#51e451" rx="2" ry="2"/>
<text x="65.4" y="3998.0">sb..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/util/FileBasedStore.$anonfun$read$1 (272 samples, 2.77%)</title><rect x="62.4" y="3971.0" width="32.6" height="15" fill="#60f260" rx="2" ry="2"/>
<text x="65.4" y="3982.0">sb..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/util/PlainInput.read (272 samples, 2.77%)</title><rect x="62.4" y="3955.0" width="32.6" height="15" fill="#35cb35" rx="2" ry="2"/>
<text x="65.4" y="3966.0">sb..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/util/PlainInput.readFully (13 samples, 0.13%)</title><rect x="62.4" y="3939.0" width="1.5" height="15" fill="#4ce04c" rx="2" ry="2"/>
<text x="65.4" y="3950.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/io/Using.apply (13 samples, 0.13%)</title><rect x="62.4" y="3923.0" width="1.5" height="15" fill="#6cfd6c" rx="2" ry="2"/>
<text x="65.4" y="3934.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/util/PlainInput$$Lambda$1935/342869232.apply (12 samples, 0.12%)</title><rect x="62.5" y="3907.0" width="1.4" height="15" fill="#4ee14e" rx="2" ry="2"/>
<text x="65.5" y="3918.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/util/PlainInput.$anonfun$readFully$1 (12 samples, 0.12%)</title><rect x="62.5" y="3891.0" width="1.4" height="15" fill="#45da45" rx="2" ry="2"/>
<text x="65.5" y="3902.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/InputStreamReader.read (12 samples, 0.12%)</title><rect x="62.5" y="3875.0" width="1.4" height="15" fill="#4ce04c" rx="2" ry="2"/>
<text x="65.5" y="3886.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/cs/StreamDecoder.read (12 samples, 0.12%)</title><rect x="62.5" y="3859.0" width="1.4" height="15" fill="#5ef05e" rx="2" ry="2"/>
<text x="65.5" y="3870.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/cs/StreamDecoder.implRead (12 samples, 0.12%)</title><rect x="62.5" y="3843.0" width="1.4" height="15" fill="#3ed33e" rx="2" ry="2"/>
<text x="65.5" y="3854.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/cs/StreamDecoder.readBytes (12 samples, 0.12%)</title><rect x="62.5" y="3827.0" width="1.4" height="15" fill="#3cd13c" rx="2" ry="2"/>
<text x="65.5" y="3838.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/BufferedInputStream.read (12 samples, 0.12%)</title><rect x="62.5" y="3811.0" width="1.4" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="65.5" y="3822.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/BufferedInputStream.read1 (11 samples, 0.11%)</title><rect x="62.6" y="3795.0" width="1.3" height="15" fill="#6afb6a" rx="2" ry="2"/>
<text x="65.6" y="3806.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/FileInputStream.read (11 samples, 0.11%)</title><rect x="62.6" y="3779.0" width="1.3" height="15" fill="#6bfd6b" rx="2" ry="2"/>
<text x="65.6" y="3790.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/FileInputStream.readBytes (11 samples, 0.11%)</title><rect x="62.6" y="3763.0" width="1.3" height="15" fill="#41d641" rx="2" ry="2"/>
<text x="65.6" y="3774.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/IsoString$$anon$1.from (26 samples, 0.26%)</title><rect x="63.9" y="3939.0" width="3.1" height="15" fill="#36cb36" rx="2" ry="2"/>
<text x="66.9" y="3950.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/BuildStreams$$$Lambda$1812/1768641212.apply (26 samples, 0.26%)</title><rect x="63.9" y="3923.0" width="3.1" height="15" fill="#39ce39" rx="2" ry="2"/>
<text x="66.9" y="3934.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/BuildStreams$.$anonfun$mkStreams$3 (26 samples, 0.26%)</title><rect x="63.9" y="3907.0" width="3.1" height="15" fill="#51e451" rx="2" ry="2"/>
<text x="66.9" y="3918.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/Parser$.parseUnsafe (26 samples, 0.26%)</title><rect x="63.9" y="3891.0" width="3.1" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="66.9" y="3902.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jawn/SupportParser.parseUnsafe$ (26 samples, 0.26%)</title><rect x="63.9" y="3875.0" width="3.1" height="15" fill="#51e451" rx="2" ry="2"/>
<text x="66.9" y="3886.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jawn/SupportParser.parseUnsafe (26 samples, 0.26%)</title><rect x="63.9" y="3859.0" width="3.1" height="15" fill="#38cd38" rx="2" ry="2"/>
<text x="66.9" y="3870.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jawn/SyncParser.parse (26 samples, 0.26%)</title><rect x="63.9" y="3843.0" width="3.1" height="15" fill="#64f664" rx="2" ry="2"/>
<text x="66.9" y="3854.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jawn/Parser.parse (26 samples, 0.26%)</title><rect x="63.9" y="3827.0" width="3.1" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="66.9" y="3838.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jawn/Parser.rparse (26 samples, 0.26%)</title><rect x="63.9" y="3811.0" width="3.1" height="15" fill="#4bdf4b" rx="2" ry="2"/>
<text x="66.9" y="3822.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jawn/StringParser.parseString (9 samples, 0.09%)</title><rect x="65.0" y="3795.0" width="1.1" height="15" fill="#45d945" rx="2" ry="2"/>
<text x="68.0" y="3806.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jawn/CharBasedParser.parseString$ (9 samples, 0.09%)</title><rect x="65.0" y="3779.0" width="1.1" height="15" fill="#5cef5c" rx="2" ry="2"/>
<text x="68.0" y="3790.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jawn/CharBasedParser.parseString (9 samples, 0.09%)</title><rect x="65.0" y="3763.0" width="1.1" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="68.0" y="3774.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/Converter$.fromJson (233 samples, 2.37%)</title><rect x="67.0" y="3939.0" width="28.0" height="15" fill="#66f766" rx="2" ry="2"/>
<text x="70.0" y="3950.0">s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/SupportConverter.fromJson$ (233 samples, 2.37%)</title><rect x="67.0" y="3923.0" width="28.0" height="15" fill="#5ff15f" rx="2" ry="2"/>
<text x="70.0" y="3934.0">s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/SupportConverter.fromJson (233 samples, 2.37%)</title><rect x="67.0" y="3907.0" width="28.0" height="15" fill="#64f664" rx="2" ry="2"/>
<text x="70.0" y="3918.0">s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/util/Try$.apply (233 samples, 2.37%)</title><rect x="67.0" y="3891.0" width="28.0" height="15" fill="#5bee5b" rx="2" ry="2"/>
<text x="70.0" y="3902.0">s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/SupportConverter$$Lambda$1952/1775324110.apply (233 samples, 2.37%)</title><rect x="67.0" y="3875.0" width="28.0" height="15" fill="#49dd49" rx="2" ry="2"/>
<text x="70.0" y="3886.0">s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/SupportConverter.$anonfun$fromJson$1 (233 samples, 2.37%)</title><rect x="67.0" y="3859.0" width="28.0" height="15" fill="#6afb6a" rx="2" ry="2"/>
<text x="70.0" y="3870.0">s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/Converter$.fromJsonOptionUnsafe (233 samples, 2.37%)</title><rect x="67.0" y="3843.0" width="28.0" height="15" fill="#56e956" rx="2" ry="2"/>
<text x="70.0" y="3854.0">s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/SupportConverter.fromJsonOptionUnsafe$ (233 samples, 2.37%)</title><rect x="67.0" y="3827.0" width="28.0" height="15" fill="#47db47" rx="2" ry="2"/>
<text x="70.0" y="3838.0">s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/SupportConverter.fromJsonOptionUnsafe (233 samples, 2.37%)</title><rect x="67.0" y="3811.0" width="28.0" height="15" fill="#52e552" rx="2" ry="2"/>
<text x="70.0" y="3822.0">s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/librarymanagement/UpdateReportFormats$$anon$1.read (233 samples, 2.37%)</title><rect x="67.0" y="3795.0" width="28.0" height="15" fill="#4de14d" rx="2" ry="2"/>
<text x="70.0" y="3806.0">s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/librarymanagement/UpdateReportFormats$$anon$1.read (233 samples, 2.37%)</title><rect x="67.0" y="3779.0" width="28.0" height="15" fill="#4ade4a" rx="2" ry="2"/>
<text x="70.0" y="3790.0">s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/Unbuilder.readField (231 samples, 2.35%)</title><rect x="67.3" y="3763.0" width="27.7" height="15" fill="#40d540" rx="2" ry="2"/>
<text x="70.3" y="3774.0">s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/CollectionFormats$$anon$2.read (229 samples, 2.33%)</title><rect x="67.5" y="3747.0" width="27.5" height="15" fill="#36cc36" rx="2" ry="2"/>
<text x="70.5" y="3758.0">s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/CollectionFormats$$anon$2.read (229 samples, 2.33%)</title><rect x="67.5" y="3731.0" width="27.5" height="15" fill="#4bdf4b" rx="2" ry="2"/>
<text x="70.5" y="3742.0">s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/List.map (229 samples, 2.33%)</title><rect x="67.5" y="3715.0" width="27.5" height="15" fill="#4ee14e" rx="2" ry="2"/>
<text x="70.5" y="3726.0">s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/CollectionFormats$$anon$2$$Lambda$1977/1701024145.apply (229 samples, 2.33%)</title><rect x="67.5" y="3699.0" width="27.5" height="15" fill="#43d743" rx="2" ry="2"/>
<text x="70.5" y="3710.0">s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/CollectionFormats$$anon$2.$anonfun$read$2$adapted (229 samples, 2.33%)</title><rect x="67.5" y="3683.0" width="27.5" height="15" fill="#38cd38" rx="2" ry="2"/>
<text x="70.5" y="3694.0">s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/CollectionFormats$$anon$2.$anonfun$read$2 (229 samples, 2.33%)</title><rect x="67.5" y="3667.0" width="27.5" height="15" fill="#3ed33e" rx="2" ry="2"/>
<text x="70.5" y="3678.0">s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/librarymanagement/ConfigurationReportFormats$$anon$1.read (229 samples, 2.33%)</title><rect x="67.5" y="3651.0" width="27.5" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="70.5" y="3662.0">s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/librarymanagement/ConfigurationReportFormats$$anon$1.read (229 samples, 2.33%)</title><rect x="67.5" y="3635.0" width="27.5" height="15" fill="#51e551" rx="2" ry="2"/>
<text x="70.5" y="3646.0">s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/Unbuilder.readField (227 samples, 2.31%)</title><rect x="67.8" y="3619.0" width="27.2" height="15" fill="#5aec5a" rx="2" ry="2"/>
<text x="70.8" y="3630.0">s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/CollectionFormats$$anon$2.read (227 samples, 2.31%)</title><rect x="67.8" y="3603.0" width="27.2" height="15" fill="#65f765" rx="2" ry="2"/>
<text x="70.8" y="3614.0">s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/CollectionFormats$$anon$2.read (227 samples, 2.31%)</title><rect x="67.8" y="3587.0" width="27.2" height="15" fill="#40d540" rx="2" ry="2"/>
<text x="70.8" y="3598.0">s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/List.map (227 samples, 2.31%)</title><rect x="67.8" y="3571.0" width="27.2" height="15" fill="#5cef5c" rx="2" ry="2"/>
<text x="70.8" y="3582.0">s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/CollectionFormats$$anon$2$$Lambda$1977/1701024145.apply (227 samples, 2.31%)</title><rect x="67.8" y="3555.0" width="27.2" height="15" fill="#41d641" rx="2" ry="2"/>
<text x="70.8" y="3566.0">s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/CollectionFormats$$anon$2.$anonfun$read$2$adapted (227 samples, 2.31%)</title><rect x="67.8" y="3539.0" width="27.2" height="15" fill="#48dd48" rx="2" ry="2"/>
<text x="70.8" y="3550.0">s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/CollectionFormats$$anon$2.$anonfun$read$2 (227 samples, 2.31%)</title><rect x="67.8" y="3523.0" width="27.2" height="15" fill="#36cc36" rx="2" ry="2"/>
<text x="70.8" y="3534.0">s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/librarymanagement/ModuleReportFormats$$anon$1.read (129 samples, 1.31%)</title><rect x="67.8" y="3507.0" width="15.5" height="15" fill="#4de14d" rx="2" ry="2"/>
<text x="70.8" y="3518.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/librarymanagement/ModuleReportFormats$$anon$1.read (129 samples, 1.31%)</title><rect x="67.8" y="3491.0" width="15.5" height="15" fill="#3fd43f" rx="2" ry="2"/>
<text x="70.8" y="3502.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/Unbuilder.readField (122 samples, 1.24%)</title><rect x="68.6" y="3475.0" width="14.7" height="15" fill="#61f361" rx="2" ry="2"/>
<text x="71.6" y="3486.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/librarymanagement/ModuleIDFormats$$anon$1.read (10 samples, 0.10%)</title><rect x="68.6" y="3459.0" width="1.2" height="15" fill="#4fe34f" rx="2" ry="2"/>
<text x="71.6" y="3470.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/librarymanagement/ModuleIDFormats$$anon$1.read (10 samples, 0.10%)</title><rect x="68.6" y="3443.0" width="1.2" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="71.6" y="3454.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/CollectionFormats$$anon$2.read (55 samples, 0.56%)</title><rect x="70.1" y="3459.0" width="6.6" height="15" fill="#41d641" rx="2" ry="2"/>
<text x="73.1" y="3470.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/CollectionFormats$$anon$2.read (55 samples, 0.56%)</title><rect x="70.1" y="3443.0" width="6.6" height="15" fill="#59ec59" rx="2" ry="2"/>
<text x="73.1" y="3454.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/List.map (49 samples, 0.50%)</title><rect x="70.3" y="3427.0" width="5.9" height="15" fill="#4bdf4b" rx="2" ry="2"/>
<text x="73.3" y="3438.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/CollectionFormats$$anon$2$$Lambda$1977/1701024145.apply (48 samples, 0.49%)</title><rect x="70.4" y="3411.0" width="5.8" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="73.4" y="3422.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/CollectionFormats$$anon$2.$anonfun$read$2$adapted (48 samples, 0.49%)</title><rect x="70.4" y="3395.0" width="5.8" height="15" fill="#6bfc6b" rx="2" ry="2"/>
<text x="73.4" y="3406.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/CollectionFormats$$anon$2.$anonfun$read$2 (48 samples, 0.49%)</title><rect x="70.4" y="3379.0" width="5.8" height="15" fill="#3acf3a" rx="2" ry="2"/>
<text x="73.4" y="3390.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/librarymanagement/CallerFormats$$anon$1.read (40 samples, 0.41%)</title><rect x="70.4" y="3363.0" width="4.8" height="15" fill="#61f361" rx="2" ry="2"/>
<text x="73.4" y="3374.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/librarymanagement/CallerFormats$$anon$1.read (40 samples, 0.41%)</title><rect x="70.4" y="3347.0" width="4.8" height="15" fill="#6afc6a" rx="2" ry="2"/>
<text x="73.4" y="3358.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/Unbuilder.readField (32 samples, 0.33%)</title><rect x="71.4" y="3331.0" width="3.8" height="15" fill="#3cd13c" rx="2" ry="2"/>
<text x="74.4" y="3342.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/librarymanagement/ModuleIDFormats$$anon$1.read (23 samples, 0.23%)</title><rect x="71.4" y="3315.0" width="2.7" height="15" fill="#56e956" rx="2" ry="2"/>
<text x="74.4" y="3326.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/librarymanagement/ModuleIDFormats$$anon$1.read (23 samples, 0.23%)</title><rect x="71.4" y="3299.0" width="2.7" height="15" fill="#35cb35" rx="2" ry="2"/>
<text x="74.4" y="3310.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/Unbuilder.readField (16 samples, 0.16%)</title><rect x="72.2" y="3283.0" width="1.9" height="15" fill="#46db46" rx="2" ry="2"/>
<text x="75.2" y="3294.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/FlatUnionFormats$$anon$5.read (12 samples, 0.12%)</title><rect x="72.6" y="3267.0" width="1.4" height="15" fill="#43d843" rx="2" ry="2"/>
<text x="75.6" y="3278.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/librarymanagement/DisabledFormats$$anon$1.read (9 samples, 0.09%)</title><rect x="72.6" y="3251.0" width="1.1" height="15" fill="#50e450" rx="2" ry="2"/>
<text x="75.6" y="3262.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/librarymanagement/DisabledFormats$$anon$1.read (9 samples, 0.09%)</title><rect x="72.6" y="3235.0" width="1.1" height="15" fill="#63f563" rx="2" ry="2"/>
<text x="75.6" y="3246.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/StandardFormats$OptionFormat.read (54 samples, 0.55%)</title><rect x="76.7" y="3459.0" width="6.4" height="15" fill="#64f564" rx="2" ry="2"/>
<text x="79.7" y="3470.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/StandardFormats$OptionFormat.read (53 samples, 0.54%)</title><rect x="76.8" y="3443.0" width="6.3" height="15" fill="#5def5d" rx="2" ry="2"/>
<text x="79.8" y="3454.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/IsoFormats$$anon$2.read (52 samples, 0.53%)</title><rect x="76.8" y="3427.0" width="6.2" height="15" fill="#45da45" rx="2" ry="2"/>
<text x="79.8" y="3438.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/IsoString$$anon$1.from (52 samples, 0.53%)</title><rect x="76.8" y="3411.0" width="6.2" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="79.8" y="3422.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/CalendarFormats$$Lambda$503/362432678.apply (52 samples, 0.53%)</title><rect x="76.8" y="3395.0" width="6.2" height="15" fill="#57ea57" rx="2" ry="2"/>
<text x="79.8" y="3406.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/CalendarFormats.$anonfun$calendarStringIso$2 (52 samples, 0.53%)</title><rect x="76.8" y="3379.0" width="6.2" height="15" fill="#34ca34" rx="2" ry="2"/>
<text x="79.8" y="3390.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/time/ZonedDateTime.parse (24 samples, 0.24%)</title><rect x="76.9" y="3363.0" width="2.9" height="15" fill="#34ca34" rx="2" ry="2"/>
<text x="79.9" y="3374.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/time/format/DateTimeFormatter.parse (23 samples, 0.23%)</title><rect x="77.0" y="3347.0" width="2.8" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="80.0" y="3358.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/time/format/DateTimeFormatter.parseResolved0 (19 samples, 0.19%)</title><rect x="77.0" y="3331.0" width="2.3" height="15" fill="#60f260" rx="2" ry="2"/>
<text x="80.0" y="3342.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/time/format/DateTimeParseContext.toResolved (11 samples, 0.11%)</title><rect x="78.0" y="3315.0" width="1.3" height="15" fill="#35cb35" rx="2" ry="2"/>
<text x="81.0" y="3326.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/time/format/Parsed.resolve (11 samples, 0.11%)</title><rect x="78.0" y="3299.0" width="1.3" height="15" fill="#51e451" rx="2" ry="2"/>
<text x="81.0" y="3310.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/time/format/DateTimeFormatter.&lt;clinit&gt; (14 samples, 0.14%)</title><rect x="79.8" y="3363.0" width="1.7" height="15" fill="#69fb69" rx="2" ry="2"/>
<text x="82.8" y="3374.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/GregorianCalendar.from (13 samples, 0.13%)</title><rect x="81.5" y="3363.0" width="1.5" height="15" fill="#3fd43f" rx="2" ry="2"/>
<text x="84.5" y="3374.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/librarymanagement/OrganizationArtifactReportFormats$$anon$1.read (98 samples, 1.00%)</title><rect x="83.3" y="3507.0" width="11.7" height="15" fill="#3ed33e" rx="2" ry="2"/>
<text x="86.3" y="3518.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/librarymanagement/OrganizationArtifactReportFormats$$anon$1.read (98 samples, 1.00%)</title><rect x="83.3" y="3491.0" width="11.7" height="15" fill="#37cc37" rx="2" ry="2"/>
<text x="86.3" y="3502.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/Unbuilder.readField (97 samples, 0.99%)</title><rect x="83.4" y="3475.0" width="11.6" height="15" fill="#5bee5b" rx="2" ry="2"/>
<text x="86.4" y="3486.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/CollectionFormats$$anon$2.read (97 samples, 0.99%)</title><rect x="83.4" y="3459.0" width="11.6" height="15" fill="#5cee5c" rx="2" ry="2"/>
<text x="86.4" y="3470.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/CollectionFormats$$anon$2.read (97 samples, 0.99%)</title><rect x="83.4" y="3443.0" width="11.6" height="15" fill="#4fe34f" rx="2" ry="2"/>
<text x="86.4" y="3454.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/List.map (97 samples, 0.99%)</title><rect x="83.4" y="3427.0" width="11.6" height="15" fill="#41d641" rx="2" ry="2"/>
<text x="86.4" y="3438.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/CollectionFormats$$anon$2$$Lambda$1977/1701024145.apply (97 samples, 0.99%)</title><rect x="83.4" y="3411.0" width="11.6" height="15" fill="#5cef5c" rx="2" ry="2"/>
<text x="86.4" y="3422.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/CollectionFormats$$anon$2.$anonfun$read$2$adapted (97 samples, 0.99%)</title><rect x="83.4" y="3395.0" width="11.6" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="86.4" y="3406.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/CollectionFormats$$anon$2.$anonfun$read$2 (97 samples, 0.99%)</title><rect x="83.4" y="3379.0" width="11.6" height="15" fill="#3ed33e" rx="2" ry="2"/>
<text x="86.4" y="3390.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/librarymanagement/ModuleReportFormats$$anon$1.read (97 samples, 0.99%)</title><rect x="83.4" y="3363.0" width="11.6" height="15" fill="#3fd43f" rx="2" ry="2"/>
<text x="86.4" y="3374.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/librarymanagement/ModuleReportFormats$$anon$1.read (97 samples, 0.99%)</title><rect x="83.4" y="3347.0" width="11.6" height="15" fill="#4cdf4c" rx="2" ry="2"/>
<text x="86.4" y="3358.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/Unbuilder.readField (90 samples, 0.92%)</title><rect x="84.2" y="3331.0" width="10.8" height="15" fill="#4ee14e" rx="2" ry="2"/>
<text x="87.2" y="3342.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/CollectionFormats$$anon$2.read (55 samples, 0.56%)</title><rect x="84.9" y="3315.0" width="6.6" height="15" fill="#65f765" rx="2" ry="2"/>
<text x="87.9" y="3326.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/CollectionFormats$$anon$2.read (55 samples, 0.56%)</title><rect x="84.9" y="3299.0" width="6.6" height="15" fill="#6cfd6c" rx="2" ry="2"/>
<text x="87.9" y="3310.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/List.map (49 samples, 0.50%)</title><rect x="85.2" y="3283.0" width="5.9" height="15" fill="#4ce04c" rx="2" ry="2"/>
<text x="88.2" y="3294.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/CollectionFormats$$anon$2$$Lambda$1977/1701024145.apply (48 samples, 0.49%)</title><rect x="85.3" y="3267.0" width="5.8" height="15" fill="#34c934" rx="2" ry="2"/>
<text x="88.3" y="3278.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/CollectionFormats$$anon$2.$anonfun$read$2$adapted (48 samples, 0.49%)</title><rect x="85.3" y="3251.0" width="5.8" height="15" fill="#51e451" rx="2" ry="2"/>
<text x="88.3" y="3262.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/CollectionFormats$$anon$2.$anonfun$read$2 (48 samples, 0.49%)</title><rect x="85.3" y="3235.0" width="5.8" height="15" fill="#33c933" rx="2" ry="2"/>
<text x="88.3" y="3246.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/librarymanagement/CallerFormats$$anon$1.read (35 samples, 0.36%)</title><rect x="85.3" y="3219.0" width="4.2" height="15" fill="#5ff15f" rx="2" ry="2"/>
<text x="88.3" y="3230.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/librarymanagement/CallerFormats$$anon$1.read (35 samples, 0.36%)</title><rect x="85.3" y="3203.0" width="4.2" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="88.3" y="3214.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/Unbuilder.readField (32 samples, 0.33%)</title><rect x="85.7" y="3187.0" width="3.8" height="15" fill="#63f563" rx="2" ry="2"/>
<text x="88.7" y="3198.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/librarymanagement/ModuleIDFormats$$anon$1.read (23 samples, 0.23%)</title><rect x="85.7" y="3171.0" width="2.7" height="15" fill="#45da45" rx="2" ry="2"/>
<text x="88.7" y="3182.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/librarymanagement/ModuleIDFormats$$anon$1.read (23 samples, 0.23%)</title><rect x="85.7" y="3155.0" width="2.7" height="15" fill="#3fd43f" rx="2" ry="2"/>
<text x="88.7" y="3166.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/Unbuilder.readField (19 samples, 0.19%)</title><rect x="86.1" y="3139.0" width="2.3" height="15" fill="#52e552" rx="2" ry="2"/>
<text x="89.1" y="3150.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/FlatUnionFormats$$anon$5.read (11 samples, 0.11%)</title><rect x="87.0" y="3123.0" width="1.3" height="15" fill="#4bdf4b" rx="2" ry="2"/>
<text x="90.0" y="3134.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/StandardFormats$OptionFormat.read (29 samples, 0.30%)</title><rect x="91.5" y="3315.0" width="3.5" height="15" fill="#4ade4a" rx="2" ry="2"/>
<text x="94.5" y="3326.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/StandardFormats$OptionFormat.read (29 samples, 0.30%)</title><rect x="91.5" y="3299.0" width="3.5" height="15" fill="#6dfe6d" rx="2" ry="2"/>
<text x="94.5" y="3310.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/IsoFormats$$anon$2.read (28 samples, 0.28%)</title><rect x="91.5" y="3283.0" width="3.4" height="15" fill="#6cfd6c" rx="2" ry="2"/>
<text x="94.5" y="3294.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/IsoString$$anon$1.from (28 samples, 0.28%)</title><rect x="91.5" y="3267.0" width="3.4" height="15" fill="#65f665" rx="2" ry="2"/>
<text x="94.5" y="3278.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/CalendarFormats$$Lambda$503/362432678.apply (28 samples, 0.28%)</title><rect x="91.5" y="3251.0" width="3.4" height="15" fill="#66f766" rx="2" ry="2"/>
<text x="94.5" y="3262.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/CalendarFormats.$anonfun$calendarStringIso$2 (28 samples, 0.28%)</title><rect x="91.5" y="3235.0" width="3.4" height="15" fill="#44d944" rx="2" ry="2"/>
<text x="94.5" y="3246.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/time/ZonedDateTime.parse (14 samples, 0.14%)</title><rect x="91.5" y="3219.0" width="1.7" height="15" fill="#3ad03a" rx="2" ry="2"/>
<text x="94.5" y="3230.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/time/format/DateTimeFormatter.parse (13 samples, 0.13%)</title><rect x="91.5" y="3203.0" width="1.6" height="15" fill="#6dfe6d" rx="2" ry="2"/>
<text x="94.5" y="3214.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/GregorianCalendar.from (14 samples, 0.14%)</title><rect x="93.2" y="3219.0" width="1.7" height="15" fill="#58eb58" rx="2" ry="2"/>
<text x="96.2" y="3230.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/util/Tracked$CacheHelp.changed (20 samples, 0.20%)</title><rect x="95.0" y="4195.0" width="2.4" height="15" fill="#4ee14e" rx="2" ry="2"/>
<text x="98.0" y="4206.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/murmurhash/Hasher$.hash (19 samples, 0.19%)</title><rect x="95.2" y="4179.0" width="2.2" height="15" fill="#69fb69" rx="2" ry="2"/>
<text x="98.2" y="4190.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/SupportHasher.hash$ (19 samples, 0.19%)</title><rect x="95.2" y="4163.0" width="2.2" height="15" fill="#5bed5b" rx="2" ry="2"/>
<text x="98.2" y="4174.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/SupportHasher.hash (19 samples, 0.19%)</title><rect x="95.2" y="4147.0" width="2.2" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="98.2" y="4158.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/util/Try$.apply (19 samples, 0.19%)</title><rect x="95.2" y="4131.0" width="2.2" height="15" fill="#52e552" rx="2" ry="2"/>
<text x="98.2" y="4142.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/SupportHasher$$Lambda$1955/1419844526.apply (19 samples, 0.19%)</title><rect x="95.2" y="4115.0" width="2.2" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="98.2" y="4126.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/SupportHasher.$anonfun$hash$1 (19 samples, 0.19%)</title><rect x="95.2" y="4099.0" width="2.2" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="98.2" y="4110.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/murmurhash/Hasher$.hashUnsafe (19 samples, 0.19%)</title><rect x="95.2" y="4083.0" width="2.2" height="15" fill="#6afb6a" rx="2" ry="2"/>
<text x="98.2" y="4094.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/SupportHasher.hashUnsafe$ (19 samples, 0.19%)</title><rect x="95.2" y="4067.0" width="2.2" height="15" fill="#63f563" rx="2" ry="2"/>
<text x="98.2" y="4078.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/SupportHasher.hashUnsafe (19 samples, 0.19%)</title><rect x="95.2" y="4051.0" width="2.2" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="98.2" y="4062.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/ImplicitHashWriters$$anon$1.write (19 samples, 0.19%)</title><rect x="95.2" y="4035.0" width="2.2" height="15" fill="#34ca34" rx="2" ry="2"/>
<text x="98.2" y="4046.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/TupleFormats$$anon$3.write (19 samples, 0.19%)</title><rect x="95.2" y="4019.0" width="2.2" height="15" fill="#46da46" rx="2" ry="2"/>
<text x="98.2" y="4030.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/TupleFormats$$anon$3.write (19 samples, 0.19%)</title><rect x="95.2" y="4003.0" width="2.2" height="15" fill="#38ce38" rx="2" ry="2"/>
<text x="98.2" y="4014.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/FlatUnionFormats$$anon$3.write (16 samples, 0.16%)</title><rect x="95.4" y="3987.0" width="1.9" height="15" fill="#37cd37" rx="2" ry="2"/>
<text x="98.4" y="3998.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/librarymanagement/ModuleDescriptorConfigurationFormats$$anon$1.write (16 samples, 0.16%)</title><rect x="95.4" y="3971.0" width="1.9" height="15" fill="#51e451" rx="2" ry="2"/>
<text x="98.4" y="3982.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/librarymanagement/ModuleDescriptorConfigurationFormats$$anon$1.write (16 samples, 0.16%)</title><rect x="95.4" y="3955.0" width="1.9" height="15" fill="#33c933" rx="2" ry="2"/>
<text x="98.4" y="3966.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/Builder.addField (16 samples, 0.16%)</title><rect x="95.4" y="3939.0" width="1.9" height="15" fill="#53e653" rx="2" ry="2"/>
<text x="98.4" y="3950.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/AdditionalFormats$$anon$7.addField (14 samples, 0.14%)</title><rect x="95.5" y="3923.0" width="1.7" height="15" fill="#65f765" rx="2" ry="2"/>
<text x="98.5" y="3934.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/librarymanagement/formats/NodeSeqFormat$$Lambda$519/1876259196.apply (14 samples, 0.14%)</title><rect x="95.5" y="3907.0" width="1.7" height="15" fill="#51e451" rx="2" ry="2"/>
<text x="98.5" y="3918.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/librarymanagement/formats/NodeSeqFormat.$anonfun$NodeSeqFormat$1 (14 samples, 0.14%)</title><rect x="95.5" y="3891.0" width="1.7" height="15" fill="#5aed5a" rx="2" ry="2"/>
<text x="98.5" y="3902.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Classpaths$$$Lambda$1179/1174694918.apply (23 samples, 0.23%)</title><rect x="98.4" y="4275.0" width="2.8" height="15" fill="#5ef05e" rx="2" ry="2"/>
<text x="101.4" y="4286.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Classpaths$.$anonfun$classpaths$6 (23 samples, 0.23%)</title><rect x="98.4" y="4259.0" width="2.8" height="15" fill="#5bee5b" rx="2" ry="2"/>
<text x="101.4" y="4270.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Classpaths$.managedJars (23 samples, 0.23%)</title><rect x="98.4" y="4243.0" width="2.8" height="15" fill="#33c933" rx="2" ry="2"/>
<text x="101.4" y="4254.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/librarymanagement/RichUpdateReport.filter (13 samples, 0.13%)</title><rect x="99.1" y="4227.0" width="1.6" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="102.1" y="4238.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/librarymanagement/RichUpdateReport.moduleReportMap (11 samples, 0.11%)</title><rect x="99.4" y="4211.0" width="1.3" height="15" fill="#5aec5a" rx="2" ry="2"/>
<text x="102.4" y="4222.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractTraversable.map (11 samples, 0.11%)</title><rect x="99.4" y="4195.0" width="1.3" height="15" fill="#46db46" rx="2" ry="2"/>
<text x="102.4" y="4206.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.map$ (11 samples, 0.11%)</title><rect x="99.4" y="4179.0" width="1.3" height="15" fill="#35cb35" rx="2" ry="2"/>
<text x="102.4" y="4190.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.map (11 samples, 0.11%)</title><rect x="99.4" y="4163.0" width="1.3" height="15" fill="#3acf3a" rx="2" ry="2"/>
<text x="102.4" y="4174.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractIterable.foreach (11 samples, 0.11%)</title><rect x="99.4" y="4147.0" width="1.3" height="15" fill="#69fa69" rx="2" ry="2"/>
<text x="102.4" y="4158.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IterableLike.foreach$ (11 samples, 0.11%)</title><rect x="99.4" y="4131.0" width="1.3" height="15" fill="#3fd43f" rx="2" ry="2"/>
<text x="102.4" y="4142.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IterableLike.foreach (11 samples, 0.11%)</title><rect x="99.4" y="4115.0" width="1.3" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="102.4" y="4126.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractIterator.foreach (11 samples, 0.11%)</title><rect x="99.4" y="4099.0" width="1.3" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="102.4" y="4110.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/Iterator.foreach$ (11 samples, 0.11%)</title><rect x="99.4" y="4083.0" width="1.3" height="15" fill="#3cd13c" rx="2" ry="2"/>
<text x="102.4" y="4094.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/Iterator.foreach (11 samples, 0.11%)</title><rect x="99.4" y="4067.0" width="1.3" height="15" fill="#33c933" rx="2" ry="2"/>
<text x="102.4" y="4078.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike$$Lambda$42/728885526.apply (11 samples, 0.11%)</title><rect x="99.4" y="4051.0" width="1.3" height="15" fill="#5bee5b" rx="2" ry="2"/>
<text x="102.4" y="4062.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.$anonfun$map$1 (11 samples, 0.11%)</title><rect x="99.4" y="4035.0" width="1.3" height="15" fill="#5ff15f" rx="2" ry="2"/>
<text x="102.4" y="4046.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/librarymanagement/RichUpdateReport$$Lambda$2051/1920946410.apply (11 samples, 0.11%)</title><rect x="99.4" y="4019.0" width="1.3" height="15" fill="#5cef5c" rx="2" ry="2"/>
<text x="102.4" y="4030.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/librarymanagement/RichUpdateReport.$anonfun$moduleReportMap$1 (11 samples, 0.11%)</title><rect x="99.4" y="4003.0" width="1.3" height="15" fill="#36cc36" rx="2" ry="2"/>
<text x="102.4" y="4014.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractTraversable.map (9 samples, 0.09%)</title><rect x="99.6" y="3987.0" width="1.1" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="102.6" y="3998.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.map$ (9 samples, 0.09%)</title><rect x="99.6" y="3971.0" width="1.1" height="15" fill="#69fa69" rx="2" ry="2"/>
<text x="102.6" y="3982.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.map (9 samples, 0.09%)</title><rect x="99.6" y="3955.0" width="1.1" height="15" fill="#69fb69" rx="2" ry="2"/>
<text x="102.6" y="3966.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractIterable.foreach (9 samples, 0.09%)</title><rect x="99.6" y="3939.0" width="1.1" height="15" fill="#4bdf4b" rx="2" ry="2"/>
<text x="102.6" y="3950.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IterableLike.foreach$ (9 samples, 0.09%)</title><rect x="99.6" y="3923.0" width="1.1" height="15" fill="#50e350" rx="2" ry="2"/>
<text x="102.6" y="3934.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IterableLike.foreach (9 samples, 0.09%)</title><rect x="99.6" y="3907.0" width="1.1" height="15" fill="#63f563" rx="2" ry="2"/>
<text x="102.6" y="3918.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Classpaths$$$Lambda$1197/1276002922.apply (11 samples, 0.11%)</title><rect x="101.8" y="4275.0" width="1.3" height="15" fill="#69fa69" rx="2" ry="2"/>
<text x="104.8" y="4286.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Classpaths$.$anonfun$exportClasspath$2 (11 samples, 0.11%)</title><rect x="101.8" y="4259.0" width="1.3" height="15" fill="#56e956" rx="2" ry="2"/>
<text x="104.8" y="4270.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Classpaths$.exportClasspath (11 samples, 0.11%)</title><rect x="101.8" y="4243.0" width="1.3" height="15" fill="#5def5d" rx="2" ry="2"/>
<text x="104.8" y="4254.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Defaults$$$Lambda$1208/260727363.apply (9 samples, 0.09%)</title><rect x="105.5" y="4275.0" width="1.1" height="15" fill="#51e451" rx="2" ry="2"/>
<text x="108.5" y="4286.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Defaults$.$anonfun$compileInputsSettings$2 (9 samples, 0.09%)</title><rect x="105.5" y="4259.0" width="1.1" height="15" fill="#4fe24f" rx="2" ry="2"/>
<text x="108.5" y="4270.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Defaults$$$Lambda$1211/378227888.apply (383 samples, 3.90%)</title><rect x="106.6" y="4275.0" width="46.0" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="109.6" y="4286.0">sbt/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Defaults$.$anonfun$compileAnalysisSettings$1 (383 samples, 3.90%)</title><rect x="106.6" y="4259.0" width="46.0" height="15" fill="#6cfd6c" rx="2" ry="2"/>
<text x="109.6" y="4270.0">sbt/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/AnalysisStore$SyncedAnalysisStore.get (354 samples, 3.60%)</title><rect x="106.8" y="4243.0" width="42.5" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="109.8" y="4254.0">sbt/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/AnalysisStore$CachedAnalysisStore.get (354 samples, 3.60%)</title><rect x="106.8" y="4227.0" width="42.5" height="15" fill="#42d742" rx="2" ry="2"/>
<text x="109.8" y="4238.0">sbt/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/FileAnalysisStore$BinaryFileStore.get (354 samples, 3.60%)</title><rect x="106.8" y="4211.0" width="42.5" height="15" fill="#51e551" rx="2" ry="2"/>
<text x="109.8" y="4222.0">sbt/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/util/control/Exception$Catch.opt (354 samples, 3.60%)</title><rect x="106.8" y="4195.0" width="42.5" height="15" fill="#5bee5b" rx="2" ry="2"/>
<text x="109.8" y="4206.0">scal..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/util/control/Exception$Catch.apply (354 samples, 3.60%)</title><rect x="106.8" y="4179.0" width="42.5" height="15" fill="#5aec5a" rx="2" ry="2"/>
<text x="109.8" y="4190.0">scal..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/util/control/Exception$Catch$$Lambda$656/2189588.apply (354 samples, 3.60%)</title><rect x="106.8" y="4163.0" width="42.5" height="15" fill="#37cd37" rx="2" ry="2"/>
<text x="109.8" y="4174.0">scal..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/util/control/Exception$Catch.$anonfun$opt$1 (354 samples, 3.60%)</title><rect x="106.8" y="4147.0" width="42.5" height="15" fill="#52e652" rx="2" ry="2"/>
<text x="109.8" y="4158.0">scal..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/FileAnalysisStore$BinaryFileStore$$Lambda$2085/2041904091.apply (354 samples, 3.60%)</title><rect x="106.8" y="4131.0" width="42.5" height="15" fill="#56e956" rx="2" ry="2"/>
<text x="109.8" y="4142.0">sbt/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/FileAnalysisStore$BinaryFileStore.$anonfun$get$1 (354 samples, 3.60%)</title><rect x="106.8" y="4115.0" width="42.5" height="15" fill="#5aec5a" rx="2" ry="2"/>
<text x="109.8" y="4126.0">sbt/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/io/Using.apply (354 samples, 3.60%)</title><rect x="106.8" y="4099.0" width="42.5" height="15" fill="#4fe34f" rx="2" ry="2"/>
<text x="109.8" y="4110.0">sbt/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/FileAnalysisStore$BinaryFileStore$$Lambda$2444/1923805347.apply (353 samples, 3.59%)</title><rect x="106.8" y="4083.0" width="42.4" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="109.8" y="4094.0">sbt/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/FileAnalysisStore$BinaryFileStore.$anonfun$get$2 (353 samples, 3.59%)</title><rect x="106.8" y="4067.0" width="42.4" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="109.8" y="4078.0">sbt/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/binary/BinaryAnalysisFormat.read (245 samples, 2.49%)</title><rect x="107.5" y="4051.0" width="29.4" height="15" fill="#4ce04c" rx="2" ry="2"/>
<text x="110.5" y="4062.0">sb..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/binary/converters/ProtobufReaders.fromAnalysisFile (73 samples, 0.74%)</title><rect x="108.0" y="4035.0" width="8.8" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="111.0" y="4046.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/binary/converters/ProtobufReaders$OptionReader.read (71 samples, 0.72%)</title><rect x="108.2" y="4019.0" width="8.6" height="15" fill="#50e350" rx="2" ry="2"/>
<text x="111.2" y="4030.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/Option.fold (71 samples, 0.72%)</title><rect x="108.2" y="4003.0" width="8.6" height="15" fill="#5df05d" rx="2" ry="2"/>
<text x="111.2" y="4014.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/binary/converters/ProtobufReaders$$Lambda$2524/785395373.apply (69 samples, 0.70%)</title><rect x="108.2" y="3987.0" width="8.3" height="15" fill="#33c933" rx="2" ry="2"/>
<text x="111.2" y="3998.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/binary/converters/ProtobufReaders.$anonfun$fromAnalysisFile$2 (69 samples, 0.70%)</title><rect x="108.2" y="3971.0" width="8.3" height="15" fill="#35ca35" rx="2" ry="2"/>
<text x="111.2" y="3982.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/binary/converters/ProtobufReaders.fromAnalysis (69 samples, 0.70%)</title><rect x="108.2" y="3955.0" width="8.3" height="15" fill="#51e451" rx="2" ry="2"/>
<text x="111.2" y="3966.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/binary/converters/ProtobufReaders$OptionReader.read (67 samples, 0.68%)</title><rect x="108.5" y="3939.0" width="8.0" height="15" fill="#45d945" rx="2" ry="2"/>
<text x="111.5" y="3950.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/Option.fold (67 samples, 0.68%)</title><rect x="108.5" y="3923.0" width="8.0" height="15" fill="#34c934" rx="2" ry="2"/>
<text x="111.5" y="3934.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/binary/converters/ProtobufReaders$$Lambda$2532/1276095610.apply (62 samples, 0.63%)</title><rect x="108.7" y="3907.0" width="7.5" height="15" fill="#40d540" rx="2" ry="2"/>
<text x="111.7" y="3918.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/binary/converters/ProtobufReaders.$anonfun$fromAnalysis$4 (62 samples, 0.63%)</title><rect x="108.7" y="3891.0" width="7.5" height="15" fill="#38cd38" rx="2" ry="2"/>
<text x="111.7" y="3902.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/binary/converters/ProtobufReaders.fromRelations (62 samples, 0.63%)</title><rect x="108.7" y="3875.0" width="7.5" height="15" fill="#48dd48" rx="2" ry="2"/>
<text x="111.7" y="3886.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/binary/converters/ProtobufReaders.fromMap$1 (35 samples, 0.36%)</title><rect x="109.0" y="3859.0" width="4.2" height="15" fill="#53e653" rx="2" ry="2"/>
<text x="112.0" y="3870.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Relation$.reconstruct (34 samples, 0.35%)</title><rect x="109.1" y="3843.0" width="4.1" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="112.1" y="3854.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IterableLike$$anon$1.withFilter (10 samples, 0.10%)</title><rect x="110.3" y="3827.0" width="1.2" height="15" fill="#56e956" rx="2" ry="2"/>
<text x="113.3" y="3838.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableViewLike.withFilter$ (10 samples, 0.10%)</title><rect x="110.3" y="3811.0" width="1.2" height="15" fill="#6afb6a" rx="2" ry="2"/>
<text x="113.3" y="3822.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableViewLike.withFilter (10 samples, 0.10%)</title><rect x="110.3" y="3795.0" width="1.2" height="15" fill="#60f260" rx="2" ry="2"/>
<text x="113.3" y="3806.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IterableLike$$anon$1.newFiltered (10 samples, 0.10%)</title><rect x="110.3" y="3779.0" width="1.2" height="15" fill="#50e450" rx="2" ry="2"/>
<text x="113.3" y="3790.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IterableViewLike$AbstractTransformed.$div$colon (10 samples, 0.10%)</title><rect x="111.6" y="3827.0" width="1.2" height="15" fill="#4fe24f" rx="2" ry="2"/>
<text x="114.6" y="3838.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.$div$colon$ (10 samples, 0.10%)</title><rect x="111.6" y="3811.0" width="1.2" height="15" fill="#59eb59" rx="2" ry="2"/>
<text x="114.6" y="3822.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.$div$colon (10 samples, 0.10%)</title><rect x="111.6" y="3795.0" width="1.2" height="15" fill="#5bee5b" rx="2" ry="2"/>
<text x="114.6" y="3806.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IterableViewLike$AbstractTransformed.foldLeft (10 samples, 0.10%)</title><rect x="111.6" y="3779.0" width="1.2" height="15" fill="#4ade4a" rx="2" ry="2"/>
<text x="114.6" y="3790.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.foldLeft$ (10 samples, 0.10%)</title><rect x="111.6" y="3763.0" width="1.2" height="15" fill="#4fe24f" rx="2" ry="2"/>
<text x="114.6" y="3774.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.foldLeft (10 samples, 0.10%)</title><rect x="111.6" y="3747.0" width="1.2" height="15" fill="#4ee24e" rx="2" ry="2"/>
<text x="114.6" y="3758.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IterableViewLike$$anon$5.foreach (10 samples, 0.10%)</title><rect x="111.6" y="3731.0" width="1.2" height="15" fill="#5cef5c" rx="2" ry="2"/>
<text x="114.6" y="3742.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableViewLike$FlatMapped.foreach$ (10 samples, 0.10%)</title><rect x="111.6" y="3715.0" width="1.2" height="15" fill="#52e552" rx="2" ry="2"/>
<text x="114.6" y="3726.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableViewLike$FlatMapped.foreach (10 samples, 0.10%)</title><rect x="111.6" y="3699.0" width="1.2" height="15" fill="#42d742" rx="2" ry="2"/>
<text x="114.6" y="3710.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IterableViewLike$$anon$6.foreach (9 samples, 0.09%)</title><rect x="111.7" y="3683.0" width="1.1" height="15" fill="#56e956" rx="2" ry="2"/>
<text x="114.7" y="3694.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableViewLike$Filtered.foreach$ (9 samples, 0.09%)</title><rect x="111.7" y="3667.0" width="1.1" height="15" fill="#42d742" rx="2" ry="2"/>
<text x="114.7" y="3678.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableViewLike$Filtered.foreach (9 samples, 0.09%)</title><rect x="111.7" y="3651.0" width="1.1" height="15" fill="#5cee5c" rx="2" ry="2"/>
<text x="114.7" y="3662.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IterableLike$$anon$1.foreach (9 samples, 0.09%)</title><rect x="111.7" y="3635.0" width="1.1" height="15" fill="#51e551" rx="2" ry="2"/>
<text x="114.7" y="3646.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IterableLike.foreach$ (9 samples, 0.09%)</title><rect x="111.7" y="3619.0" width="1.1" height="15" fill="#6afb6a" rx="2" ry="2"/>
<text x="114.7" y="3630.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IterableLike.foreach (9 samples, 0.09%)</title><rect x="111.7" y="3603.0" width="1.1" height="15" fill="#40d440" rx="2" ry="2"/>
<text x="114.7" y="3614.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractIterator.foreach (9 samples, 0.09%)</title><rect x="111.7" y="3587.0" width="1.1" height="15" fill="#4ade4a" rx="2" ry="2"/>
<text x="114.7" y="3598.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/Iterator.foreach$ (9 samples, 0.09%)</title><rect x="111.7" y="3571.0" width="1.1" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="114.7" y="3582.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/Iterator.foreach (9 samples, 0.09%)</title><rect x="111.7" y="3555.0" width="1.1" height="15" fill="#60f360" rx="2" ry="2"/>
<text x="114.7" y="3566.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableViewLike$Filtered$$Lambda$2539/992291826.apply (9 samples, 0.09%)</title><rect x="111.7" y="3539.0" width="1.1" height="15" fill="#69fa69" rx="2" ry="2"/>
<text x="114.7" y="3550.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableViewLike$Filtered.$anonfun$foreach$5 (9 samples, 0.09%)</title><rect x="111.7" y="3523.0" width="1.1" height="15" fill="#5aed5a" rx="2" ry="2"/>
<text x="114.7" y="3534.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/binary/converters/ProtobufReaders.fromUsedNamesMap$1 (25 samples, 0.25%)</title><rect x="113.2" y="3859.0" width="3.0" height="15" fill="#63f563" rx="2" ry="2"/>
<text x="116.2" y="3870.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Relation$.reconstruct (24 samples, 0.24%)</title><rect x="113.3" y="3843.0" width="2.9" height="15" fill="#51e551" rx="2" ry="2"/>
<text x="116.3" y="3854.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IterableViewLike$AbstractTransformed.$div$colon (20 samples, 0.20%)</title><rect x="113.8" y="3827.0" width="2.4" height="15" fill="#3fd43f" rx="2" ry="2"/>
<text x="116.8" y="3838.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.$div$colon$ (20 samples, 0.20%)</title><rect x="113.8" y="3811.0" width="2.4" height="15" fill="#3acf3a" rx="2" ry="2"/>
<text x="116.8" y="3822.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.$div$colon (20 samples, 0.20%)</title><rect x="113.8" y="3795.0" width="2.4" height="15" fill="#67f967" rx="2" ry="2"/>
<text x="116.8" y="3806.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IterableViewLike$AbstractTransformed.foldLeft (20 samples, 0.20%)</title><rect x="113.8" y="3779.0" width="2.4" height="15" fill="#41d541" rx="2" ry="2"/>
<text x="116.8" y="3790.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.foldLeft$ (20 samples, 0.20%)</title><rect x="113.8" y="3763.0" width="2.4" height="15" fill="#59eb59" rx="2" ry="2"/>
<text x="116.8" y="3774.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.foldLeft (20 samples, 0.20%)</title><rect x="113.8" y="3747.0" width="2.4" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="116.8" y="3758.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IterableViewLike$$anon$5.foreach (20 samples, 0.20%)</title><rect x="113.8" y="3731.0" width="2.4" height="15" fill="#6afb6a" rx="2" ry="2"/>
<text x="116.8" y="3742.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableViewLike$FlatMapped.foreach$ (20 samples, 0.20%)</title><rect x="113.8" y="3715.0" width="2.4" height="15" fill="#42d742" rx="2" ry="2"/>
<text x="116.8" y="3726.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableViewLike$FlatMapped.foreach (20 samples, 0.20%)</title><rect x="113.8" y="3699.0" width="2.4" height="15" fill="#65f765" rx="2" ry="2"/>
<text x="116.8" y="3710.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IterableViewLike$$anon$6.foreach (20 samples, 0.20%)</title><rect x="113.8" y="3683.0" width="2.4" height="15" fill="#42d742" rx="2" ry="2"/>
<text x="116.8" y="3694.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableViewLike$Filtered.foreach$ (20 samples, 0.20%)</title><rect x="113.8" y="3667.0" width="2.4" height="15" fill="#6bfc6b" rx="2" ry="2"/>
<text x="116.8" y="3678.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableViewLike$Filtered.foreach (20 samples, 0.20%)</title><rect x="113.8" y="3651.0" width="2.4" height="15" fill="#50e350" rx="2" ry="2"/>
<text x="116.8" y="3662.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IterableLike$$anon$1.foreach (20 samples, 0.20%)</title><rect x="113.8" y="3635.0" width="2.4" height="15" fill="#39ce39" rx="2" ry="2"/>
<text x="116.8" y="3646.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IterableLike.foreach$ (20 samples, 0.20%)</title><rect x="113.8" y="3619.0" width="2.4" height="15" fill="#4ade4a" rx="2" ry="2"/>
<text x="116.8" y="3630.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IterableLike.foreach (20 samples, 0.20%)</title><rect x="113.8" y="3603.0" width="2.4" height="15" fill="#5cee5c" rx="2" ry="2"/>
<text x="116.8" y="3614.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractIterator.foreach (20 samples, 0.20%)</title><rect x="113.8" y="3587.0" width="2.4" height="15" fill="#4ce04c" rx="2" ry="2"/>
<text x="116.8" y="3598.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/Iterator.foreach$ (20 samples, 0.20%)</title><rect x="113.8" y="3571.0" width="2.4" height="15" fill="#38cd38" rx="2" ry="2"/>
<text x="116.8" y="3582.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/Iterator.foreach (20 samples, 0.20%)</title><rect x="113.8" y="3555.0" width="2.4" height="15" fill="#5ff25f" rx="2" ry="2"/>
<text x="116.8" y="3566.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/Iterator$$anon$10.next (14 samples, 0.14%)</title><rect x="113.8" y="3539.0" width="1.6" height="15" fill="#37cd37" rx="2" ry="2"/>
<text x="116.8" y="3550.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/MapLike$MappedValues$$Lambda$1460/1283634655.apply (14 samples, 0.14%)</title><rect x="113.8" y="3523.0" width="1.6" height="15" fill="#4ce04c" rx="2" ry="2"/>
<text x="116.8" y="3534.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/MapLike$MappedValues.$anonfun$iterator$3 (14 samples, 0.14%)</title><rect x="113.8" y="3507.0" width="1.6" height="15" fill="#46da46" rx="2" ry="2"/>
<text x="116.8" y="3518.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/binary/converters/ProtobufReaders$$Lambda$2550/1411276877.apply (14 samples, 0.14%)</title><rect x="113.8" y="3491.0" width="1.6" height="15" fill="#43d843" rx="2" ry="2"/>
<text x="116.8" y="3502.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/binary/converters/ProtobufReaders.$anonfun$fromRelations$3 (14 samples, 0.14%)</title><rect x="113.8" y="3475.0" width="1.6" height="15" fill="#5ff15f" rx="2" ry="2"/>
<text x="116.8" y="3486.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractIterator.toSet (13 samples, 0.13%)</title><rect x="113.9" y="3459.0" width="1.5" height="15" fill="#46da46" rx="2" ry="2"/>
<text x="116.9" y="3470.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.toSet$ (13 samples, 0.13%)</title><rect x="113.9" y="3443.0" width="1.5" height="15" fill="#45da45" rx="2" ry="2"/>
<text x="116.9" y="3454.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.toSet (13 samples, 0.13%)</title><rect x="113.9" y="3427.0" width="1.5" height="15" fill="#35cb35" rx="2" ry="2"/>
<text x="116.9" y="3438.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractIterator.to (13 samples, 0.13%)</title><rect x="113.9" y="3411.0" width="1.5" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="116.9" y="3422.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.to$ (13 samples, 0.13%)</title><rect x="113.9" y="3395.0" width="1.5" height="15" fill="#4fe24f" rx="2" ry="2"/>
<text x="116.9" y="3406.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.to (13 samples, 0.13%)</title><rect x="113.9" y="3379.0" width="1.5" height="15" fill="#3ed33e" rx="2" ry="2"/>
<text x="116.9" y="3390.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/mutable/SetBuilder.$plus$plus$eq (13 samples, 0.13%)</title><rect x="113.9" y="3363.0" width="1.5" height="15" fill="#38ce38" rx="2" ry="2"/>
<text x="116.9" y="3374.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/generic/Growable.$plus$plus$eq$ (13 samples, 0.13%)</title><rect x="113.9" y="3347.0" width="1.5" height="15" fill="#6cfd6c" rx="2" ry="2"/>
<text x="116.9" y="3358.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/generic/Growable.$plus$plus$eq (13 samples, 0.13%)</title><rect x="113.9" y="3331.0" width="1.5" height="15" fill="#65f765" rx="2" ry="2"/>
<text x="116.9" y="3342.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractIterator.foreach (13 samples, 0.13%)</title><rect x="113.9" y="3315.0" width="1.5" height="15" fill="#4fe34f" rx="2" ry="2"/>
<text x="116.9" y="3326.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/Iterator.foreach$ (13 samples, 0.13%)</title><rect x="113.9" y="3299.0" width="1.5" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="116.9" y="3310.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/Iterator.foreach (13 samples, 0.13%)</title><rect x="113.9" y="3283.0" width="1.5" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="116.9" y="3294.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/Iterator$$anon$10.next (11 samples, 0.11%)</title><rect x="113.9" y="3267.0" width="1.3" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="116.9" y="3278.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/binary/converters/ProtobufReaders$$Lambda$2551/697117340.apply (11 samples, 0.11%)</title><rect x="113.9" y="3251.0" width="1.3" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="116.9" y="3262.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/binary/converters/ProtobufReaders.$anonfun$fromRelations$4 (11 samples, 0.11%)</title><rect x="113.9" y="3235.0" width="1.3" height="15" fill="#35cb35" rx="2" ry="2"/>
<text x="116.9" y="3246.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/binary/converters/ProtobufReaders.fromUsedName$1 (11 samples, 0.11%)</title><rect x="113.9" y="3219.0" width="1.3" height="15" fill="#3ad03a" rx="2" ry="2"/>
<text x="116.9" y="3230.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/UsedName$.apply (9 samples, 0.09%)</title><rect x="114.1" y="3203.0" width="1.1" height="15" fill="#4ee14e" rx="2" ry="2"/>
<text x="117.1" y="3214.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/schema/AnalysisFile$.parseFrom (168 samples, 1.71%)</title><rect x="116.8" y="4035.0" width="20.1" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="119.8" y="4046.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/trueaccord/scalapb/GeneratedMessageCompanion.parseFrom$ (168 samples, 1.71%)</title><rect x="116.8" y="4019.0" width="20.1" height="15" fill="#67f867" rx="2" ry="2"/>
<text x="119.8" y="4030.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/trueaccord/scalapb/GeneratedMessageCompanion.parseFrom (168 samples, 1.71%)</title><rect x="116.8" y="4003.0" width="20.1" height="15" fill="#4bdf4b" rx="2" ry="2"/>
<text x="119.8" y="4014.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/trueaccord/scalapb/LiteParser$.parseFrom (167 samples, 1.70%)</title><rect x="116.8" y="3987.0" width="20.0" height="15" fill="#4ade4a" rx="2" ry="2"/>
<text x="119.8" y="3998.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/schema/AnalysisFile.mergeFrom (163 samples, 1.66%)</title><rect x="117.3" y="3971.0" width="19.5" height="15" fill="#59eb59" rx="2" ry="2"/>
<text x="120.3" y="3982.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/schema/AnalysisFile.mergeFrom (163 samples, 1.66%)</title><rect x="117.3" y="3955.0" width="19.5" height="15" fill="#44d844" rx="2" ry="2"/>
<text x="120.3" y="3966.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/trueaccord/scalapb/LiteParser$.readMessage (150 samples, 1.53%)</title><rect x="117.3" y="3939.0" width="18.0" height="15" fill="#35cb35" rx="2" ry="2"/>
<text x="120.3" y="3950.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/schema/Analysis.mergeFrom (140 samples, 1.42%)</title><rect x="117.3" y="3923.0" width="16.8" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="120.3" y="3934.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/schema/Analysis.mergeFrom (140 samples, 1.42%)</title><rect x="117.3" y="3907.0" width="16.8" height="15" fill="#67f967" rx="2" ry="2"/>
<text x="120.3" y="3918.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/trueaccord/scalapb/LiteParser$.readMessage (89 samples, 0.91%)</title><rect x="117.3" y="3891.0" width="10.6" height="15" fill="#69fa69" rx="2" ry="2"/>
<text x="120.3" y="3902.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/schema/Compilations.mergeFrom (12 samples, 0.12%)</title><rect x="117.3" y="3875.0" width="1.4" height="15" fill="#68f968" rx="2" ry="2"/>
<text x="120.3" y="3886.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/schema/Compilations.mergeFrom (12 samples, 0.12%)</title><rect x="117.3" y="3859.0" width="1.4" height="15" fill="#60f260" rx="2" ry="2"/>
<text x="120.3" y="3870.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/schema/Relations.mergeFrom (37 samples, 0.38%)</title><rect x="118.7" y="3875.0" width="4.4" height="15" fill="#3cd13c" rx="2" ry="2"/>
<text x="121.7" y="3886.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/schema/Relations.mergeFrom (37 samples, 0.38%)</title><rect x="118.7" y="3859.0" width="4.4" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="121.7" y="3870.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/trueaccord/scalapb/LiteParser$.readMessage (22 samples, 0.22%)</title><rect x="118.7" y="3843.0" width="2.6" height="15" fill="#33c933" rx="2" ry="2"/>
<text x="121.7" y="3854.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/schema/Relations$NamesEntry.mergeFrom (12 samples, 0.12%)</title><rect x="119.3" y="3827.0" width="1.4" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="122.3" y="3838.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/schema/Relations$NamesEntry.mergeFrom (12 samples, 0.12%)</title><rect x="119.3" y="3811.0" width="1.4" height="15" fill="#51e451" rx="2" ry="2"/>
<text x="122.3" y="3822.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/Option.getOrElse (9 samples, 0.09%)</title><rect x="121.9" y="3843.0" width="1.1" height="15" fill="#65f765" rx="2" ry="2"/>
<text x="124.9" y="3854.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/schema/Relations$$Lambda$2504/1895964793.apply (9 samples, 0.09%)</title><rect x="121.9" y="3827.0" width="1.1" height="15" fill="#42d742" rx="2" ry="2"/>
<text x="124.9" y="3838.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/schema/Relations.$anonfun$mergeFrom$1 (9 samples, 0.09%)</title><rect x="121.9" y="3811.0" width="1.1" height="15" fill="#66f766" rx="2" ry="2"/>
<text x="124.9" y="3822.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/schema/SourceInfos.mergeFrom (21 samples, 0.21%)</title><rect x="123.1" y="3875.0" width="2.6" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="126.1" y="3886.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/schema/SourceInfos.mergeFrom (21 samples, 0.21%)</title><rect x="123.1" y="3859.0" width="2.6" height="15" fill="#49dd49" rx="2" ry="2"/>
<text x="126.1" y="3870.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/trueaccord/scalapb/LiteParser$.readMessage (16 samples, 0.16%)</title><rect x="123.1" y="3843.0" width="2.0" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="126.1" y="3854.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/schema/SourceInfos$SourceInfosEntry.mergeFrom (16 samples, 0.16%)</title><rect x="123.1" y="3827.0" width="2.0" height="15" fill="#51e451" rx="2" ry="2"/>
<text x="126.1" y="3838.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/schema/SourceInfos$SourceInfosEntry.mergeFrom (16 samples, 0.16%)</title><rect x="123.1" y="3811.0" width="2.0" height="15" fill="#6afb6a" rx="2" ry="2"/>
<text x="126.1" y="3822.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/trueaccord/scalapb/LiteParser$.readMessage (11 samples, 0.11%)</title><rect x="123.1" y="3795.0" width="1.4" height="15" fill="#4bdf4b" rx="2" ry="2"/>
<text x="126.1" y="3806.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/schema/SourceInfo.mergeFrom (11 samples, 0.11%)</title><rect x="123.1" y="3779.0" width="1.4" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="126.1" y="3790.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/schema/SourceInfo.mergeFrom (11 samples, 0.11%)</title><rect x="123.1" y="3763.0" width="1.4" height="15" fill="#5ef15e" rx="2" ry="2"/>
<text x="126.1" y="3774.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/schema/Stamps.mergeFrom (19 samples, 0.19%)</title><rect x="125.7" y="3875.0" width="2.2" height="15" fill="#66f866" rx="2" ry="2"/>
<text x="128.7" y="3886.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/schema/Stamps.mergeFrom (19 samples, 0.19%)</title><rect x="125.7" y="3859.0" width="2.2" height="15" fill="#46da46" rx="2" ry="2"/>
<text x="128.7" y="3870.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/trueaccord/scalapb/LiteParser$.readMessage (14 samples, 0.14%)</title><rect x="125.7" y="3843.0" width="1.6" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="128.7" y="3854.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/schema/Stamps$ProductStampsEntry.mergeFrom (9 samples, 0.09%)</title><rect x="125.7" y="3827.0" width="1.0" height="15" fill="#5ef05e" rx="2" ry="2"/>
<text x="128.7" y="3838.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/schema/Stamps$ProductStampsEntry.mergeFrom (9 samples, 0.09%)</title><rect x="125.7" y="3811.0" width="1.0" height="15" fill="#5def5d" rx="2" ry="2"/>
<text x="128.7" y="3822.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/Option.getOrElse (48 samples, 0.49%)</title><rect x="128.3" y="3891.0" width="5.8" height="15" fill="#66f866" rx="2" ry="2"/>
<text x="131.3" y="3902.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/schema/Analysis$$Lambda$2446/1539931736.apply (17 samples, 0.17%)</title><rect x="128.3" y="3875.0" width="2.0" height="15" fill="#36cc36" rx="2" ry="2"/>
<text x="131.3" y="3886.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/schema/Analysis.$anonfun$mergeFrom$1 (17 samples, 0.17%)</title><rect x="128.3" y="3859.0" width="2.0" height="15" fill="#5cef5c" rx="2" ry="2"/>
<text x="131.3" y="3870.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/schema/Stamps$.&lt;clinit&gt; (15 samples, 0.15%)</title><rect x="128.4" y="3843.0" width="1.8" height="15" fill="#66f866" rx="2" ry="2"/>
<text x="131.4" y="3854.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/schema/Stamps$.&lt;init&gt; (15 samples, 0.15%)</title><rect x="128.4" y="3827.0" width="1.8" height="15" fill="#47db47" rx="2" ry="2"/>
<text x="131.4" y="3838.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/schema/Stamps$ProductStampsEntry$.&lt;clinit&gt; (10 samples, 0.10%)</title><rect x="128.9" y="3811.0" width="1.2" height="15" fill="#37cc37" rx="2" ry="2"/>
<text x="131.9" y="3822.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/schema/Stamps$ProductStampsEntry$.&lt;init&gt; (10 samples, 0.10%)</title><rect x="128.9" y="3795.0" width="1.2" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="131.9" y="3806.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/schema/Analysis$$Lambda$2479/807799844.apply (22 samples, 0.22%)</title><rect x="130.3" y="3875.0" width="2.7" height="15" fill="#4bde4b" rx="2" ry="2"/>
<text x="133.3" y="3886.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/schema/Analysis.$anonfun$mergeFrom$2 (22 samples, 0.22%)</title><rect x="130.3" y="3859.0" width="2.7" height="15" fill="#37cd37" rx="2" ry="2"/>
<text x="133.3" y="3870.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/schema/Relations$.&lt;clinit&gt; (15 samples, 0.15%)</title><rect x="130.7" y="3843.0" width="1.8" height="15" fill="#5aed5a" rx="2" ry="2"/>
<text x="133.7" y="3854.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/schema/Relations$.&lt;init&gt; (15 samples, 0.15%)</title><rect x="130.7" y="3827.0" width="1.8" height="15" fill="#53e653" rx="2" ry="2"/>
<text x="133.7" y="3838.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/schema/MiniSetup.mergeFrom (10 samples, 0.10%)</title><rect x="134.1" y="3923.0" width="1.2" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="137.1" y="3934.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/schema/MiniSetup.mergeFrom (10 samples, 0.10%)</title><rect x="134.1" y="3907.0" width="1.2" height="15" fill="#66f866" rx="2" ry="2"/>
<text x="137.1" y="3918.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/Option.getOrElse (10 samples, 0.10%)</title><rect x="135.6" y="3939.0" width="1.2" height="15" fill="#60f260" rx="2" ry="2"/>
<text x="138.6" y="3950.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/util/control/Exception$Catch.opt (101 samples, 1.03%)</title><rect x="137.1" y="4051.0" width="12.1" height="15" fill="#58ea58" rx="2" ry="2"/>
<text x="140.1" y="4062.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/util/control/Exception$Catch.apply (101 samples, 1.03%)</title><rect x="137.1" y="4035.0" width="12.1" height="15" fill="#67f967" rx="2" ry="2"/>
<text x="140.1" y="4046.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/util/control/Exception$Catch$$Lambda$656/2189588.apply (101 samples, 1.03%)</title><rect x="137.1" y="4019.0" width="12.1" height="15" fill="#66f866" rx="2" ry="2"/>
<text x="140.1" y="4030.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/util/control/Exception$Catch.$anonfun$opt$1 (101 samples, 1.03%)</title><rect x="137.1" y="4003.0" width="12.1" height="15" fill="#4fe24f" rx="2" ry="2"/>
<text x="140.1" y="4014.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/FileAnalysisStore$BinaryFileStore$$Lambda$2575/203187734.apply (101 samples, 1.03%)</title><rect x="137.1" y="3987.0" width="12.1" height="15" fill="#38ce38" rx="2" ry="2"/>
<text x="140.1" y="3998.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/FileAnalysisStore$BinaryFileStore.$anonfun$get$3 (101 samples, 1.03%)</title><rect x="137.1" y="3971.0" width="12.1" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="140.1" y="3982.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/binary/BinaryAnalysisFormat.readAPIs (101 samples, 1.03%)</title><rect x="137.1" y="3955.0" width="12.1" height="15" fill="#48dd48" rx="2" ry="2"/>
<text x="140.1" y="3966.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/schema/APIsFile$.parseFrom (100 samples, 1.02%)</title><rect x="137.2" y="3939.0" width="12.0" height="15" fill="#5bed5b" rx="2" ry="2"/>
<text x="140.2" y="3950.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/trueaccord/scalapb/GeneratedMessageCompanion.parseFrom$ (100 samples, 1.02%)</title><rect x="137.2" y="3923.0" width="12.0" height="15" fill="#39ce39" rx="2" ry="2"/>
<text x="140.2" y="3934.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/trueaccord/scalapb/GeneratedMessageCompanion.parseFrom (100 samples, 1.02%)</title><rect x="137.2" y="3907.0" width="12.0" height="15" fill="#36cc36" rx="2" ry="2"/>
<text x="140.2" y="3918.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/trueaccord/scalapb/LiteParser$.parseFrom (100 samples, 1.02%)</title><rect x="137.2" y="3891.0" width="12.0" height="15" fill="#3acf3a" rx="2" ry="2"/>
<text x="140.2" y="3902.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/schema/APIsFile.mergeFrom (99 samples, 1.01%)</title><rect x="137.3" y="3875.0" width="11.9" height="15" fill="#4ee24e" rx="2" ry="2"/>
<text x="140.3" y="3886.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/schema/APIsFile.mergeFrom (99 samples, 1.01%)</title><rect x="137.3" y="3859.0" width="11.9" height="15" fill="#5cee5c" rx="2" ry="2"/>
<text x="140.3" y="3870.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/trueaccord/scalapb/LiteParser$.readMessage (92 samples, 0.94%)</title><rect x="137.4" y="3843.0" width="11.1" height="15" fill="#40d540" rx="2" ry="2"/>
<text x="140.4" y="3854.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/schema/APIs.mergeFrom (92 samples, 0.94%)</title><rect x="137.4" y="3827.0" width="11.1" height="15" fill="#49dd49" rx="2" ry="2"/>
<text x="140.4" y="3838.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/schema/APIs.mergeFrom (92 samples, 0.94%)</title><rect x="137.4" y="3811.0" width="11.1" height="15" fill="#6cfd6c" rx="2" ry="2"/>
<text x="140.4" y="3822.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/trueaccord/scalapb/LiteParser$.readMessage (90 samples, 0.92%)</title><rect x="137.4" y="3795.0" width="10.8" height="15" fill="#57ea57" rx="2" ry="2"/>
<text x="140.4" y="3806.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/schema/APIs$InternalEntry.mergeFrom (90 samples, 0.92%)</title><rect x="137.4" y="3779.0" width="10.8" height="15" fill="#5aed5a" rx="2" ry="2"/>
<text x="140.4" y="3790.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/schema/APIs$InternalEntry.mergeFrom (90 samples, 0.92%)</title><rect x="137.4" y="3763.0" width="10.8" height="15" fill="#68f968" rx="2" ry="2"/>
<text x="140.4" y="3774.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/trueaccord/scalapb/LiteParser$.readMessage (86 samples, 0.88%)</title><rect x="137.4" y="3747.0" width="10.4" height="15" fill="#47db47" rx="2" ry="2"/>
<text x="140.4" y="3758.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/schema/AnalyzedClass.mergeFrom (86 samples, 0.88%)</title><rect x="137.4" y="3731.0" width="10.4" height="15" fill="#65f765" rx="2" ry="2"/>
<text x="140.4" y="3742.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/schema/AnalyzedClass.mergeFrom (86 samples, 0.88%)</title><rect x="137.4" y="3715.0" width="10.4" height="15" fill="#61f361" rx="2" ry="2"/>
<text x="140.4" y="3726.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/trueaccord/scalapb/LiteParser$.readMessage (77 samples, 0.78%)</title><rect x="137.8" y="3699.0" width="9.2" height="15" fill="#4bdf4b" rx="2" ry="2"/>
<text x="140.8" y="3710.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/schema/Companions.mergeFrom (76 samples, 0.77%)</title><rect x="137.8" y="3683.0" width="9.1" height="15" fill="#36cc36" rx="2" ry="2"/>
<text x="140.8" y="3694.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/schema/Companions.mergeFrom (76 samples, 0.77%)</title><rect x="137.8" y="3667.0" width="9.1" height="15" fill="#4fe34f" rx="2" ry="2"/>
<text x="140.8" y="3678.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/trueaccord/scalapb/LiteParser$.readMessage (65 samples, 0.66%)</title><rect x="137.8" y="3651.0" width="7.8" height="15" fill="#4fe24f" rx="2" ry="2"/>
<text x="140.8" y="3662.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/schema/ClassLike.mergeFrom (65 samples, 0.66%)</title><rect x="137.8" y="3635.0" width="7.8" height="15" fill="#4de04d" rx="2" ry="2"/>
<text x="140.8" y="3646.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/schema/ClassLike.mergeFrom (65 samples, 0.66%)</title><rect x="137.8" y="3619.0" width="7.8" height="15" fill="#4fe34f" rx="2" ry="2"/>
<text x="140.8" y="3630.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/trueaccord/scalapb/LiteParser$.readMessage (43 samples, 0.44%)</title><rect x="137.8" y="3603.0" width="5.2" height="15" fill="#5ef05e" rx="2" ry="2"/>
<text x="140.8" y="3614.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/schema/Type$Structure.mergeFrom (36 samples, 0.37%)</title><rect x="138.3" y="3587.0" width="4.3" height="15" fill="#69fb69" rx="2" ry="2"/>
<text x="141.3" y="3598.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/schema/Type$Structure.mergeFrom (36 samples, 0.37%)</title><rect x="138.3" y="3571.0" width="4.3" height="15" fill="#44d844" rx="2" ry="2"/>
<text x="141.3" y="3582.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/trueaccord/scalapb/LiteParser$.readMessage (35 samples, 0.36%)</title><rect x="138.3" y="3555.0" width="4.2" height="15" fill="#3ad03a" rx="2" ry="2"/>
<text x="141.3" y="3566.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/schema/Type.mergeFrom (35 samples, 0.36%)</title><rect x="138.3" y="3539.0" width="4.2" height="15" fill="#38ce38" rx="2" ry="2"/>
<text x="141.3" y="3550.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/schema/Type.mergeFrom (35 samples, 0.36%)</title><rect x="138.3" y="3523.0" width="4.2" height="15" fill="#36cc36" rx="2" ry="2"/>
<text x="141.3" y="3534.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/trueaccord/scalapb/LiteParser$.readMessage (28 samples, 0.28%)</title><rect x="138.4" y="3507.0" width="3.4" height="15" fill="#6cfd6c" rx="2" ry="2"/>
<text x="141.4" y="3518.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/schema/Type$Projection.mergeFrom (27 samples, 0.27%)</title><rect x="138.5" y="3491.0" width="3.3" height="15" fill="#4ade4a" rx="2" ry="2"/>
<text x="141.5" y="3502.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/schema/Type$Projection.mergeFrom (27 samples, 0.27%)</title><rect x="138.5" y="3475.0" width="3.3" height="15" fill="#40d540" rx="2" ry="2"/>
<text x="141.5" y="3486.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/trueaccord/scalapb/LiteParser$.readMessage (24 samples, 0.24%)</title><rect x="138.9" y="3459.0" width="2.9" height="15" fill="#6bfc6b" rx="2" ry="2"/>
<text x="141.9" y="3470.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/schema/Type.mergeFrom (24 samples, 0.24%)</title><rect x="138.9" y="3443.0" width="2.9" height="15" fill="#64f564" rx="2" ry="2"/>
<text x="141.9" y="3454.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/schema/Type.mergeFrom (24 samples, 0.24%)</title><rect x="138.9" y="3427.0" width="2.9" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="141.9" y="3438.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/trueaccord/scalapb/LiteParser$.readMessage (20 samples, 0.20%)</title><rect x="139.0" y="3411.0" width="2.4" height="15" fill="#39cf39" rx="2" ry="2"/>
<text x="142.0" y="3422.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/schema/Type$Singleton.mergeFrom (19 samples, 0.19%)</title><rect x="139.1" y="3395.0" width="2.3" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="142.1" y="3406.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/schema/Type$Singleton.mergeFrom (19 samples, 0.19%)</title><rect x="139.1" y="3379.0" width="2.3" height="15" fill="#46da46" rx="2" ry="2"/>
<text x="142.1" y="3390.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/trueaccord/scalapb/LiteParser$.readMessage (15 samples, 0.15%)</title><rect x="139.1" y="3363.0" width="1.8" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="142.1" y="3374.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/schema/Path.mergeFrom (15 samples, 0.15%)</title><rect x="139.1" y="3347.0" width="1.8" height="15" fill="#4ce04c" rx="2" ry="2"/>
<text x="142.1" y="3358.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/schema/Path.mergeFrom (15 samples, 0.15%)</title><rect x="139.1" y="3331.0" width="1.8" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="142.1" y="3342.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/trueaccord/scalapb/LiteParser$.readMessage (9 samples, 0.09%)</title><rect x="139.2" y="3315.0" width="1.1" height="15" fill="#4bdf4b" rx="2" ry="2"/>
<text x="142.2" y="3326.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/schema/Path$PathComponent.mergeFrom (9 samples, 0.09%)</title><rect x="139.2" y="3299.0" width="1.1" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="142.2" y="3310.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/schema/Path$PathComponent.mergeFrom (9 samples, 0.09%)</title><rect x="139.2" y="3283.0" width="1.1" height="15" fill="#48dd48" rx="2" ry="2"/>
<text x="142.2" y="3294.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/Option.getOrElse (15 samples, 0.15%)</title><rect x="143.8" y="3603.0" width="1.8" height="15" fill="#56e956" rx="2" ry="2"/>
<text x="146.8" y="3614.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/Option.getOrElse (9 samples, 0.09%)</title><rect x="145.8" y="3651.0" width="1.1" height="15" fill="#4bdf4b" rx="2" ry="2"/>
<text x="148.8" y="3662.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/schema/Companions$$Lambda$2583/1994412659.apply (9 samples, 0.09%)</title><rect x="145.8" y="3635.0" width="1.1" height="15" fill="#3ad03a" rx="2" ry="2"/>
<text x="148.8" y="3646.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/schema/Companions.$anonfun$mergeFrom$1 (9 samples, 0.09%)</title><rect x="145.8" y="3619.0" width="1.1" height="15" fill="#5aec5a" rx="2" ry="2"/>
<text x="148.8" y="3630.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/MixedAnalyzingCompiler$.staticCachedStore (27 samples, 0.27%)</title><rect x="149.3" y="4243.0" width="3.3" height="15" fill="#6dfe6d" rx="2" ry="2"/>
<text x="152.3" y="4254.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/FileAnalysisStore$.binary (22 samples, 0.22%)</title><rect x="149.7" y="4227.0" width="2.6" height="15" fill="#5bee5b" rx="2" ry="2"/>
<text x="152.7" y="4238.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/FileAnalysisStore$BinaryFileStore.&lt;init&gt; (21 samples, 0.21%)</title><rect x="149.8" y="4211.0" width="2.5" height="15" fill="#4ade4a" rx="2" ry="2"/>
<text x="152.8" y="4222.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/binary/BinaryAnalysisFormat.&lt;init&gt; (20 samples, 0.20%)</title><rect x="149.9" y="4195.0" width="2.4" height="15" fill="#64f664" rx="2" ry="2"/>
<text x="152.9" y="4206.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.loadClass (12 samples, 0.12%)</title><rect x="150.8" y="4179.0" width="1.4" height="15" fill="#63f563" rx="2" ry="2"/>
<text x="153.8" y="4190.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.loadClass (12 samples, 0.12%)</title><rect x="150.8" y="4163.0" width="1.4" height="15" fill="#61f361" rx="2" ry="2"/>
<text x="153.8" y="4174.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Defaults$$$Lambda$1215/497333241.apply (352 samples, 3.58%)</title><rect x="152.6" y="4275.0" width="42.2" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="155.6" y="4286.0">sbt/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Defaults$.$anonfun$compileIncrementalTask$1 (352 samples, 3.58%)</title><rect x="152.6" y="4259.0" width="42.2" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="155.6" y="4270.0">sbt/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Defaults$.compileIncrementalTaskImpl (352 samples, 3.58%)</title><rect x="152.6" y="4243.0" width="42.2" height="15" fill="#4ee24e" rx="2" ry="2"/>
<text x="155.6" y="4254.0">sbt/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/IncrementalCompilerImpl.compile (324 samples, 3.30%)</title><rect x="152.6" y="4227.0" width="38.9" height="15" fill="#58eb58" rx="2" ry="2"/>
<text x="155.6" y="4238.0">sbt..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/IncrementalCompilerImpl.compileIncrementally (323 samples, 3.29%)</title><rect x="152.7" y="4211.0" width="38.8" height="15" fill="#58eb58" rx="2" ry="2"/>
<text x="155.7" y="4222.0">sbt..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/IncrementalCompilerImpl.handleCompilationError (322 samples, 3.28%)</title><rect x="152.8" y="4195.0" width="38.7" height="15" fill="#58eb58" rx="2" ry="2"/>
<text x="155.8" y="4206.0">sbt..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/IncrementalCompilerImpl$$Lambda$2089/1142226948.apply (322 samples, 3.28%)</title><rect x="152.8" y="4179.0" width="38.7" height="15" fill="#61f361" rx="2" ry="2"/>
<text x="155.8" y="4190.0">sbt..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/IncrementalCompilerImpl.$anonfun$compileIncrementally$1 (322 samples, 3.28%)</title><rect x="152.8" y="4163.0" width="38.7" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="155.8" y="4174.0">sbt..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/Analysis$.empty (42 samples, 0.43%)</title><rect x="152.9" y="4147.0" width="5.1" height="15" fill="#47db47" rx="2" ry="2"/>
<text x="155.9" y="4158.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/APIs$.&lt;clinit&gt; (9 samples, 0.09%)</title><rect x="153.9" y="4131.0" width="1.1" height="15" fill="#49dd49" rx="2" ry="2"/>
<text x="156.9" y="4142.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/APIs$.&lt;init&gt; (9 samples, 0.09%)</title><rect x="153.9" y="4115.0" width="1.1" height="15" fill="#46da46" rx="2" ry="2"/>
<text x="156.9" y="4126.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/Stamps$.empty (14 samples, 0.14%)</title><rect x="156.3" y="4131.0" width="1.7" height="15" fill="#5bee5b" rx="2" ry="2"/>
<text x="159.3" y="4142.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/IncrementalCompilerImpl.compileInternal (181 samples, 1.84%)</title><rect x="158.0" y="4147.0" width="21.7" height="15" fill="#3acf3a" rx="2" ry="2"/>
<text x="161.0" y="4158.0">s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/Incremental$.prune (17 samples, 0.17%)</title><rect x="158.9" y="4131.0" width="2.1" height="15" fill="#43d843" rx="2" ry="2"/>
<text x="161.9" y="4142.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/Incremental$.prune (15 samples, 0.15%)</title><rect x="159.2" y="4115.0" width="1.8" height="15" fill="#5aec5a" rx="2" ry="2"/>
<text x="162.2" y="4126.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/MAnalysis.$minus$minus (14 samples, 0.14%)</title><rect x="159.3" y="4099.0" width="1.7" height="15" fill="#65f665" rx="2" ry="2"/>
<text x="162.3" y="4110.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/MStamps.filter (11 samples, 0.11%)</title><rect x="159.6" y="4083.0" width="1.4" height="15" fill="#44d944" rx="2" ry="2"/>
<text x="162.6" y="4094.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/TreeMap.filterKeys (11 samples, 0.11%)</title><rect x="159.6" y="4067.0" width="1.4" height="15" fill="#3acf3a" rx="2" ry="2"/>
<text x="162.6" y="4078.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/IncrementalCompile$.apply (153 samples, 1.56%)</title><rect x="161.0" y="4131.0" width="18.3" height="15" fill="#56e956" rx="2" ry="2"/>
<text x="164.0" y="4142.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/Incremental$.compile (151 samples, 1.54%)</title><rect x="161.1" y="4115.0" width="18.1" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="164.1" y="4126.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/IncrementalCommon.changedInitial (135 samples, 1.37%)</title><rect x="162.0" y="4099.0" width="16.3" height="15" fill="#69fa69" rx="2" ry="2"/>
<text x="165.0" y="4110.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/Option.getOrElse (128 samples, 1.30%)</title><rect x="162.9" y="4083.0" width="15.4" height="15" fill="#48dd48" rx="2" ry="2"/>
<text x="165.9" y="4094.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/IncrementalCommon$$Lambda$2172/366620823.apply (11 samples, 0.11%)</title><rect x="162.9" y="4067.0" width="1.3" height="15" fill="#50e450" rx="2" ry="2"/>
<text x="165.9" y="4078.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/IncrementalCommon.$anonfun$changedInitial$1 (11 samples, 0.11%)</title><rect x="162.9" y="4051.0" width="1.3" height="15" fill="#46da46" rx="2" ry="2"/>
<text x="165.9" y="4062.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/IncrementalCommon$$Lambda$2181/438203387.apply (109 samples, 1.11%)</title><rect x="165.2" y="4067.0" width="13.1" height="15" fill="#41d641" rx="2" ry="2"/>
<text x="168.2" y="4078.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/IncrementalCommon.$anonfun$changedInitial$5 (109 samples, 1.11%)</title><rect x="165.2" y="4051.0" width="13.1" height="15" fill="#43d843" rx="2" ry="2"/>
<text x="168.2" y="4062.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractTraversable.filter (109 samples, 1.11%)</title><rect x="165.2" y="4035.0" width="13.1" height="15" fill="#64f564" rx="2" ry="2"/>
<text x="168.2" y="4046.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.filter$ (109 samples, 1.11%)</title><rect x="165.2" y="4019.0" width="13.1" height="15" fill="#39ce39" rx="2" ry="2"/>
<text x="168.2" y="4030.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.filter (109 samples, 1.11%)</title><rect x="165.2" y="4003.0" width="13.1" height="15" fill="#58ea58" rx="2" ry="2"/>
<text x="168.2" y="4014.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractTraversable.filterImpl (109 samples, 1.11%)</title><rect x="165.2" y="3987.0" width="13.1" height="15" fill="#34ca34" rx="2" ry="2"/>
<text x="168.2" y="3998.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.filterImpl$ (109 samples, 1.11%)</title><rect x="165.2" y="3971.0" width="13.1" height="15" fill="#4de14d" rx="2" ry="2"/>
<text x="168.2" y="3982.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.filterImpl (109 samples, 1.11%)</title><rect x="165.2" y="3955.0" width="13.1" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="168.2" y="3966.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/MapLike$DefaultKeySet.foreach (109 samples, 1.11%)</title><rect x="165.2" y="3939.0" width="13.1" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="168.2" y="3950.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractIterator.foreach (109 samples, 1.11%)</title><rect x="165.2" y="3923.0" width="13.1" height="15" fill="#5ff15f" rx="2" ry="2"/>
<text x="168.2" y="3934.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/Iterator.foreach$ (109 samples, 1.11%)</title><rect x="165.2" y="3907.0" width="13.1" height="15" fill="#59ec59" rx="2" ry="2"/>
<text x="168.2" y="3918.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/Iterator.foreach (109 samples, 1.11%)</title><rect x="165.2" y="3891.0" width="13.1" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="168.2" y="3902.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike$$Lambda$121/173791568.apply (109 samples, 1.11%)</title><rect x="165.2" y="3875.0" width="13.1" height="15" fill="#61f361" rx="2" ry="2"/>
<text x="168.2" y="3886.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.$anonfun$filterImpl$1 (109 samples, 1.11%)</title><rect x="165.2" y="3859.0" width="13.1" height="15" fill="#53e653" rx="2" ry="2"/>
<text x="168.2" y="3870.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/IncrementalCommon$$Lambda$2182/1935243945.apply (109 samples, 1.11%)</title><rect x="165.2" y="3843.0" width="13.1" height="15" fill="#43d743" rx="2" ry="2"/>
<text x="168.2" y="3854.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/IncrementalCommon.$anonfun$externalBinaryModified$1$adapted (109 samples, 1.11%)</title><rect x="165.2" y="3827.0" width="13.1" height="15" fill="#4ade4a" rx="2" ry="2"/>
<text x="168.2" y="3838.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/IncrementalCommon.$anonfun$externalBinaryModified$1 (109 samples, 1.11%)</title><rect x="165.2" y="3811.0" width="13.1" height="15" fill="#45d945" rx="2" ry="2"/>
<text x="168.2" y="3822.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/IncrementalCommon.dependencyModified$1 (109 samples, 1.11%)</title><rect x="165.2" y="3795.0" width="13.1" height="15" fill="#50e450" rx="2" ry="2"/>
<text x="168.2" y="3806.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/Set$Set1.exists (100 samples, 1.02%)</title><rect x="165.2" y="3779.0" width="12.0" height="15" fill="#5def5d" rx="2" ry="2"/>
<text x="168.2" y="3790.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/IncrementalCommon$$Lambda$2619/778244568.apply (100 samples, 1.02%)</title><rect x="165.2" y="3763.0" width="12.0" height="15" fill="#64f664" rx="2" ry="2"/>
<text x="168.2" y="3774.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/IncrementalCommon.$anonfun$externalBinaryModified$3$adapted (100 samples, 1.02%)</title><rect x="165.2" y="3747.0" width="12.0" height="15" fill="#3fd43f" rx="2" ry="2"/>
<text x="168.2" y="3758.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/IncrementalCommon.$anonfun$externalBinaryModified$3 (100 samples, 1.02%)</title><rect x="165.2" y="3731.0" width="12.0" height="15" fill="#4de14d" rx="2" ry="2"/>
<text x="168.2" y="3742.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/LookupImpl.lookupOnClasspath (99 samples, 1.01%)</title><rect x="165.3" y="3715.0" width="11.9" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="168.3" y="3726.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/Locate$$$Lambda$2148/610804880.apply (99 samples, 1.01%)</title><rect x="165.3" y="3699.0" width="11.9" height="15" fill="#35ca35" rx="2" ry="2"/>
<text x="168.3" y="3710.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/Locate$.$anonfun$entry$2 (99 samples, 1.01%)</title><rect x="165.3" y="3683.0" width="11.9" height="15" fill="#36cc36" rx="2" ry="2"/>
<text x="168.3" y="3694.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractTraversable.collectFirst (99 samples, 1.01%)</title><rect x="165.3" y="3667.0" width="11.9" height="15" fill="#3ed33e" rx="2" ry="2"/>
<text x="168.3" y="3678.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.collectFirst$ (99 samples, 1.01%)</title><rect x="165.3" y="3651.0" width="11.9" height="15" fill="#53e753" rx="2" ry="2"/>
<text x="168.3" y="3662.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.collectFirst (99 samples, 1.01%)</title><rect x="165.3" y="3635.0" width="11.9" height="15" fill="#63f563" rx="2" ry="2"/>
<text x="168.3" y="3646.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/StreamIterator.hasNext (94 samples, 0.96%)</title><rect x="165.7" y="3619.0" width="11.2" height="15" fill="#4bdf4b" rx="2" ry="2"/>
<text x="168.7" y="3630.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/StreamIterator$LazyCell.v (94 samples, 0.96%)</title><rect x="165.7" y="3603.0" width="11.2" height="15" fill="#64f664" rx="2" ry="2"/>
<text x="168.7" y="3614.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/StreamIterator$LazyCell.v$lzycompute (94 samples, 0.96%)</title><rect x="165.7" y="3587.0" width="11.2" height="15" fill="#43d843" rx="2" ry="2"/>
<text x="168.7" y="3598.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/StreamIterator$$Lambda$2621/2098777852.apply (94 samples, 0.96%)</title><rect x="165.7" y="3571.0" width="11.2" height="15" fill="#3cd13c" rx="2" ry="2"/>
<text x="168.7" y="3582.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/StreamIterator.$anonfun$next$1 (94 samples, 0.96%)</title><rect x="165.7" y="3555.0" width="11.2" height="15" fill="#47db47" rx="2" ry="2"/>
<text x="168.7" y="3566.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/Stream$Cons.tail (94 samples, 0.96%)</title><rect x="165.7" y="3539.0" width="11.2" height="15" fill="#6afb6a" rx="2" ry="2"/>
<text x="168.7" y="3550.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/Stream$Cons.tail (94 samples, 0.96%)</title><rect x="165.7" y="3523.0" width="11.2" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="168.7" y="3534.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/Stream$$Lambda$1482/400593724.apply (26 samples, 0.26%)</title><rect x="165.7" y="3507.0" width="3.1" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="168.7" y="3518.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/Stream.$anonfun$map$1 (26 samples, 0.26%)</title><rect x="165.7" y="3491.0" width="3.1" height="15" fill="#4de14d" rx="2" ry="2"/>
<text x="168.7" y="3502.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/Locate$$$Lambda$2145/276136219.apply (26 samples, 0.26%)</title><rect x="165.7" y="3475.0" width="3.1" height="15" fill="#57ea57" rx="2" ry="2"/>
<text x="168.7" y="3486.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/Locate$.$anonfun$entry$1 (26 samples, 0.26%)</title><rect x="165.7" y="3459.0" width="3.1" height="15" fill="#6afb6a" rx="2" ry="2"/>
<text x="168.7" y="3470.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Defaults$$anon$2.definesClass (26 samples, 0.26%)</title><rect x="165.7" y="3443.0" width="3.1" height="15" fill="#4ade4a" rx="2" ry="2"/>
<text x="168.7" y="3454.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/FileValueCache0$$Lambda$1404/1194710757.apply (26 samples, 0.26%)</title><rect x="165.7" y="3427.0" width="3.1" height="15" fill="#35ca35" rx="2" ry="2"/>
<text x="168.7" y="3438.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/FileValueCache0.$anonfun$get$1 (26 samples, 0.26%)</title><rect x="165.7" y="3411.0" width="3.1" height="15" fill="#4ce04c" rx="2" ry="2"/>
<text x="168.7" y="3422.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/FileValueCache0$FileCache.get (26 samples, 0.26%)</title><rect x="165.7" y="3395.0" width="3.1" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="168.7" y="3406.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/FileValueCache0$FileCache.update (26 samples, 0.26%)</title><rect x="165.7" y="3379.0" width="3.1" height="15" fill="#5ef15e" rx="2" ry="2"/>
<text x="168.7" y="3390.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Defaults$$$Lambda$1401/1106189986.apply (26 samples, 0.26%)</title><rect x="165.7" y="3363.0" width="3.1" height="15" fill="#65f765" rx="2" ry="2"/>
<text x="168.7" y="3374.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Defaults$.$anonfun$globalJvmCore$5 (26 samples, 0.26%)</title><rect x="165.7" y="3347.0" width="3.1" height="15" fill="#39cf39" rx="2" ry="2"/>
<text x="168.7" y="3358.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/Locate$.definesClass (26 samples, 0.26%)</title><rect x="165.7" y="3331.0" width="3.1" height="15" fill="#38cd38" rx="2" ry="2"/>
<text x="168.7" y="3342.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/Locate$JarDefinesClass.&lt;init&gt; (26 samples, 0.26%)</title><rect x="165.7" y="3315.0" width="3.1" height="15" fill="#59ec59" rx="2" ry="2"/>
<text x="168.7" y="3326.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractIterator.toSet (26 samples, 0.26%)</title><rect x="165.7" y="3299.0" width="3.1" height="15" fill="#64f564" rx="2" ry="2"/>
<text x="168.7" y="3310.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.toSet$ (26 samples, 0.26%)</title><rect x="165.7" y="3283.0" width="3.1" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="168.7" y="3294.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.toSet (26 samples, 0.26%)</title><rect x="165.7" y="3267.0" width="3.1" height="15" fill="#59ec59" rx="2" ry="2"/>
<text x="168.7" y="3278.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractIterator.to (26 samples, 0.26%)</title><rect x="165.7" y="3251.0" width="3.1" height="15" fill="#6cfe6c" rx="2" ry="2"/>
<text x="168.7" y="3262.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.to$ (26 samples, 0.26%)</title><rect x="165.7" y="3235.0" width="3.1" height="15" fill="#33c933" rx="2" ry="2"/>
<text x="168.7" y="3246.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.to (26 samples, 0.26%)</title><rect x="165.7" y="3219.0" width="3.1" height="15" fill="#69fa69" rx="2" ry="2"/>
<text x="168.7" y="3230.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/mutable/SetBuilder.$plus$plus$eq (26 samples, 0.26%)</title><rect x="165.7" y="3203.0" width="3.1" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="168.7" y="3214.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/generic/Growable.$plus$plus$eq$ (26 samples, 0.26%)</title><rect x="165.7" y="3187.0" width="3.1" height="15" fill="#6cfd6c" rx="2" ry="2"/>
<text x="168.7" y="3198.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/generic/Growable.$plus$plus$eq (26 samples, 0.26%)</title><rect x="165.7" y="3171.0" width="3.1" height="15" fill="#51e451" rx="2" ry="2"/>
<text x="168.7" y="3182.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractIterator.foreach (26 samples, 0.26%)</title><rect x="165.7" y="3155.0" width="3.1" height="15" fill="#42d742" rx="2" ry="2"/>
<text x="168.7" y="3166.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/Iterator.foreach$ (26 samples, 0.26%)</title><rect x="165.7" y="3139.0" width="3.1" height="15" fill="#5def5d" rx="2" ry="2"/>
<text x="168.7" y="3150.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/Iterator.foreach (26 samples, 0.26%)</title><rect x="165.7" y="3123.0" width="3.1" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="168.7" y="3134.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/Iterator$$anon$10.next (17 samples, 0.17%)</title><rect x="165.7" y="3107.0" width="2.0" height="15" fill="#64f664" rx="2" ry="2"/>
<text x="168.7" y="3118.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/Locate$JarDefinesClass$$Lambda$2147/1614202116.apply (9 samples, 0.09%)</title><rect x="165.7" y="3091.0" width="1.0" height="15" fill="#64f564" rx="2" ry="2"/>
<text x="168.7" y="3102.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/Locate$JarDefinesClass.$anonfun$entries$1 (9 samples, 0.09%)</title><rect x="165.7" y="3075.0" width="1.0" height="15" fill="#59ec59" rx="2" ry="2"/>
<text x="168.7" y="3086.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/Locate$.toClassName (9 samples, 0.09%)</title><rect x="165.7" y="3059.0" width="1.0" height="15" fill="#5df05d" rx="2" ry="2"/>
<text x="168.7" y="3070.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/generic/Growable$$Lambda$37/1280851663.apply (9 samples, 0.09%)</title><rect x="167.7" y="3107.0" width="1.1" height="15" fill="#58eb58" rx="2" ry="2"/>
<text x="170.7" y="3118.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/generic/Growable.$anonfun$$plus$plus$eq$1 (9 samples, 0.09%)</title><rect x="167.7" y="3091.0" width="1.1" height="15" fill="#46db46" rx="2" ry="2"/>
<text x="170.7" y="3102.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/mutable/SetBuilder.$plus$eq (9 samples, 0.09%)</title><rect x="167.7" y="3075.0" width="1.1" height="15" fill="#52e552" rx="2" ry="2"/>
<text x="170.7" y="3086.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/mutable/SetBuilder.$plus$eq (9 samples, 0.09%)</title><rect x="167.7" y="3059.0" width="1.1" height="15" fill="#59ec59" rx="2" ry="2"/>
<text x="170.7" y="3070.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/HashSet.$plus (9 samples, 0.09%)</title><rect x="167.7" y="3043.0" width="1.1" height="15" fill="#45d945" rx="2" ry="2"/>
<text x="170.7" y="3054.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/HashSet.$plus (9 samples, 0.09%)</title><rect x="167.7" y="3027.0" width="1.1" height="15" fill="#66f766" rx="2" ry="2"/>
<text x="170.7" y="3038.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/HashSet$HashTrieSet.updated0 (9 samples, 0.09%)</title><rect x="167.7" y="3011.0" width="1.1" height="15" fill="#4ce04c" rx="2" ry="2"/>
<text x="170.7" y="3022.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/Stream$$Lambda$1484/1653309853.apply (68 samples, 0.69%)</title><rect x="168.8" y="3507.0" width="8.1" height="15" fill="#69fa69" rx="2" ry="2"/>
<text x="171.8" y="3518.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/Stream.$anonfun$map$1 (68 samples, 0.69%)</title><rect x="168.8" y="3491.0" width="8.1" height="15" fill="#42d742" rx="2" ry="2"/>
<text x="171.8" y="3502.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/Locate$$$Lambda$2145/276136219.apply (67 samples, 0.68%)</title><rect x="168.9" y="3475.0" width="8.0" height="15" fill="#6bfc6b" rx="2" ry="2"/>
<text x="171.9" y="3486.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/Locate$.$anonfun$entry$1 (67 samples, 0.68%)</title><rect x="168.9" y="3459.0" width="8.0" height="15" fill="#39ce39" rx="2" ry="2"/>
<text x="171.9" y="3470.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Defaults$$anon$2.definesClass (67 samples, 0.68%)</title><rect x="168.9" y="3443.0" width="8.0" height="15" fill="#4ade4a" rx="2" ry="2"/>
<text x="171.9" y="3454.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/FileValueCache0$$Lambda$1404/1194710757.apply (67 samples, 0.68%)</title><rect x="168.9" y="3427.0" width="8.0" height="15" fill="#64f664" rx="2" ry="2"/>
<text x="171.9" y="3438.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/FileValueCache0.$anonfun$get$1 (67 samples, 0.68%)</title><rect x="168.9" y="3411.0" width="8.0" height="15" fill="#6bfc6b" rx="2" ry="2"/>
<text x="171.9" y="3422.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/FileValueCache0$FileCache.get (67 samples, 0.68%)</title><rect x="168.9" y="3395.0" width="8.0" height="15" fill="#45da45" rx="2" ry="2"/>
<text x="171.9" y="3406.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/FileValueCache0$FileCache.update (61 samples, 0.62%)</title><rect x="168.9" y="3379.0" width="7.3" height="15" fill="#51e451" rx="2" ry="2"/>
<text x="171.9" y="3390.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Defaults$$$Lambda$1401/1106189986.apply (61 samples, 0.62%)</title><rect x="168.9" y="3363.0" width="7.3" height="15" fill="#52e552" rx="2" ry="2"/>
<text x="171.9" y="3374.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Defaults$.$anonfun$globalJvmCore$5 (61 samples, 0.62%)</title><rect x="168.9" y="3347.0" width="7.3" height="15" fill="#63f463" rx="2" ry="2"/>
<text x="171.9" y="3358.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/Locate$.definesClass (61 samples, 0.62%)</title><rect x="168.9" y="3331.0" width="7.3" height="15" fill="#69fb69" rx="2" ry="2"/>
<text x="171.9" y="3342.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/Locate$JarDefinesClass.&lt;init&gt; (57 samples, 0.58%)</title><rect x="169.3" y="3315.0" width="6.8" height="15" fill="#59ec59" rx="2" ry="2"/>
<text x="172.3" y="3326.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractIterator.toSet (48 samples, 0.49%)</title><rect x="170.3" y="3299.0" width="5.8" height="15" fill="#40d540" rx="2" ry="2"/>
<text x="173.3" y="3310.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.toSet$ (48 samples, 0.49%)</title><rect x="170.3" y="3283.0" width="5.8" height="15" fill="#6afb6a" rx="2" ry="2"/>
<text x="173.3" y="3294.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.toSet (48 samples, 0.49%)</title><rect x="170.3" y="3267.0" width="5.8" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="173.3" y="3278.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractIterator.to (48 samples, 0.49%)</title><rect x="170.3" y="3251.0" width="5.8" height="15" fill="#39ce39" rx="2" ry="2"/>
<text x="173.3" y="3262.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.to$ (48 samples, 0.49%)</title><rect x="170.3" y="3235.0" width="5.8" height="15" fill="#40d540" rx="2" ry="2"/>
<text x="173.3" y="3246.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.to (48 samples, 0.49%)</title><rect x="170.3" y="3219.0" width="5.8" height="15" fill="#67f867" rx="2" ry="2"/>
<text x="173.3" y="3230.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/mutable/SetBuilder.$plus$plus$eq (48 samples, 0.49%)</title><rect x="170.3" y="3203.0" width="5.8" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="173.3" y="3214.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/generic/Growable.$plus$plus$eq$ (48 samples, 0.49%)</title><rect x="170.3" y="3187.0" width="5.8" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="173.3" y="3198.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/generic/Growable.$plus$plus$eq (48 samples, 0.49%)</title><rect x="170.3" y="3171.0" width="5.8" height="15" fill="#64f564" rx="2" ry="2"/>
<text x="173.3" y="3182.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractIterator.foreach (48 samples, 0.49%)</title><rect x="170.3" y="3155.0" width="5.8" height="15" fill="#56e956" rx="2" ry="2"/>
<text x="173.3" y="3166.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/Iterator.foreach$ (48 samples, 0.49%)</title><rect x="170.3" y="3139.0" width="5.8" height="15" fill="#57ea57" rx="2" ry="2"/>
<text x="173.3" y="3150.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/Iterator.foreach (48 samples, 0.49%)</title><rect x="170.3" y="3123.0" width="5.8" height="15" fill="#64f664" rx="2" ry="2"/>
<text x="173.3" y="3134.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/Iterator$$anon$10.next (23 samples, 0.23%)</title><rect x="170.3" y="3107.0" width="2.8" height="15" fill="#5aec5a" rx="2" ry="2"/>
<text x="173.3" y="3118.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/convert/Wrappers$JEnumerationWrapper.next (16 samples, 0.16%)</title><rect x="171.2" y="3091.0" width="1.9" height="15" fill="#49dd49" rx="2" ry="2"/>
<text x="174.2" y="3102.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/zip/ZipFile$ZipEntryIterator.nextElement (16 samples, 0.16%)</title><rect x="171.2" y="3075.0" width="1.9" height="15" fill="#66f766" rx="2" ry="2"/>
<text x="174.2" y="3086.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/zip/ZipFile$ZipEntryIterator.nextElement (16 samples, 0.16%)</title><rect x="171.2" y="3059.0" width="1.9" height="15" fill="#5aec5a" rx="2" ry="2"/>
<text x="174.2" y="3070.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/zip/ZipFile$ZipEntryIterator.next (16 samples, 0.16%)</title><rect x="171.2" y="3043.0" width="1.9" height="15" fill="#38ce38" rx="2" ry="2"/>
<text x="174.2" y="3054.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/zip/ZipFile.access$900 (15 samples, 0.15%)</title><rect x="171.3" y="3027.0" width="1.8" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="174.3" y="3038.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/zip/ZipFile.getZipEntry (15 samples, 0.15%)</title><rect x="171.3" y="3011.0" width="1.8" height="15" fill="#5aed5a" rx="2" ry="2"/>
<text x="174.3" y="3022.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/generic/Growable$$Lambda$37/1280851663.apply (25 samples, 0.25%)</title><rect x="173.1" y="3107.0" width="3.0" height="15" fill="#57ea57" rx="2" ry="2"/>
<text x="176.1" y="3118.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/generic/Growable.$anonfun$$plus$plus$eq$1 (25 samples, 0.25%)</title><rect x="173.1" y="3091.0" width="3.0" height="15" fill="#4de14d" rx="2" ry="2"/>
<text x="176.1" y="3102.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/mutable/SetBuilder.$plus$eq (25 samples, 0.25%)</title><rect x="173.1" y="3075.0" width="3.0" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="176.1" y="3086.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/mutable/SetBuilder.$plus$eq (25 samples, 0.25%)</title><rect x="173.1" y="3059.0" width="3.0" height="15" fill="#33c933" rx="2" ry="2"/>
<text x="176.1" y="3070.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/HashSet.$plus (25 samples, 0.25%)</title><rect x="173.1" y="3043.0" width="3.0" height="15" fill="#47db47" rx="2" ry="2"/>
<text x="176.1" y="3054.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/HashSet.$plus (25 samples, 0.25%)</title><rect x="173.1" y="3027.0" width="3.0" height="15" fill="#65f765" rx="2" ry="2"/>
<text x="176.1" y="3038.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/HashSet$HashTrieSet.updated0 (25 samples, 0.25%)</title><rect x="173.1" y="3011.0" width="3.0" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="176.1" y="3022.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/HashSet$HashSet1.updated0 (22 samples, 0.22%)</title><rect x="173.1" y="2995.0" width="2.6" height="15" fill="#59ec59" rx="2" ry="2"/>
<text x="176.1" y="3006.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/runtime/BoxesRunTime.equals (15 samples, 0.15%)</title><rect x="173.9" y="2979.0" width="1.8" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="176.9" y="2990.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/runtime/BoxesRunTime.equals2 (15 samples, 0.15%)</title><rect x="173.9" y="2963.0" width="1.8" height="15" fill="#35cb35" rx="2" ry="2"/>
<text x="176.9" y="2974.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/Set$Set2.exists (9 samples, 0.09%)</title><rect x="177.2" y="3779.0" width="1.1" height="15" fill="#5ef05e" rx="2" ry="2"/>
<text x="180.2" y="3790.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/IncrementalCommon$$Lambda$2619/778244568.apply (9 samples, 0.09%)</title><rect x="177.2" y="3763.0" width="1.1" height="15" fill="#42d742" rx="2" ry="2"/>
<text x="180.2" y="3774.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/IncrementalCommon.$anonfun$externalBinaryModified$3$adapted (9 samples, 0.09%)</title><rect x="177.2" y="3747.0" width="1.1" height="15" fill="#4ce04c" rx="2" ry="2"/>
<text x="180.2" y="3758.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/IncrementalCommon.$anonfun$externalBinaryModified$3 (9 samples, 0.09%)</title><rect x="177.2" y="3731.0" width="1.1" height="15" fill="#3cd13c" rx="2" ry="2"/>
<text x="180.2" y="3742.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/LookupImpl.lookupOnClasspath (9 samples, 0.09%)</title><rect x="177.2" y="3715.0" width="1.1" height="15" fill="#37cd37" rx="2" ry="2"/>
<text x="180.2" y="3726.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/Locate$$$Lambda$2148/610804880.apply (9 samples, 0.09%)</title><rect x="177.2" y="3699.0" width="1.1" height="15" fill="#67f967" rx="2" ry="2"/>
<text x="180.2" y="3710.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/Locate$.$anonfun$entry$2 (9 samples, 0.09%)</title><rect x="177.2" y="3683.0" width="1.1" height="15" fill="#6dfe6d" rx="2" ry="2"/>
<text x="180.2" y="3694.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractTraversable.collectFirst (9 samples, 0.09%)</title><rect x="177.2" y="3667.0" width="1.1" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="180.2" y="3678.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.collectFirst$ (9 samples, 0.09%)</title><rect x="177.2" y="3651.0" width="1.1" height="15" fill="#33c933" rx="2" ry="2"/>
<text x="180.2" y="3662.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.collectFirst (9 samples, 0.09%)</title><rect x="177.2" y="3635.0" width="1.1" height="15" fill="#5bee5b" rx="2" ry="2"/>
<text x="180.2" y="3646.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/MixedAnalyzingCompiler$.apply (20 samples, 0.20%)</title><rect x="180.3" y="4147.0" width="2.4" height="15" fill="#4fe24f" rx="2" ry="2"/>
<text x="183.3" y="4158.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/MixedAnalyzingCompiler$.searchClasspathAndLookup (14 samples, 0.14%)</title><rect x="180.9" y="4131.0" width="1.7" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="183.9" y="4142.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/MixedAnalyzingCompiler$.makeConfig (73 samples, 0.74%)</title><rect x="182.7" y="4147.0" width="8.8" height="15" fill="#67f967" rx="2" ry="2"/>
<text x="185.7" y="4158.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/MixedAnalyzingCompiler$.doHash$1 (70 samples, 0.71%)</title><rect x="183.1" y="4131.0" width="8.4" height="15" fill="#4cdf4c" rx="2" ry="2"/>
<text x="186.1" y="4142.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/caching/ClasspathCache$.hashClasspath (69 samples, 0.70%)</title><rect x="183.2" y="4115.0" width="8.3" height="15" fill="#5bed5b" rx="2" ry="2"/>
<text x="186.2" y="4126.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/parallel/mutable/ParArray.toArray (18 samples, 0.18%)</title><rect x="184.0" y="4099.0" width="2.2" height="15" fill="#3ed33e" rx="2" ry="2"/>
<text x="187.0" y="4110.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/parallel/ParIterableLike.toArray$ (18 samples, 0.18%)</title><rect x="184.0" y="4083.0" width="2.2" height="15" fill="#4ee24e" rx="2" ry="2"/>
<text x="187.0" y="4094.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/parallel/ParIterableLike.toArray (18 samples, 0.18%)</title><rect x="184.0" y="4067.0" width="2.2" height="15" fill="#42d642" rx="2" ry="2"/>
<text x="187.0" y="4078.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/parallel/mutable/ParArray.copyToArray (18 samples, 0.18%)</title><rect x="184.0" y="4051.0" width="2.2" height="15" fill="#6afc6a" rx="2" ry="2"/>
<text x="187.0" y="4062.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/parallel/ParIterableLike.copyToArray$ (18 samples, 0.18%)</title><rect x="184.0" y="4035.0" width="2.2" height="15" fill="#40d540" rx="2" ry="2"/>
<text x="187.0" y="4046.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/parallel/ParIterableLike.copyToArray (18 samples, 0.18%)</title><rect x="184.0" y="4019.0" width="2.2" height="15" fill="#6bfc6b" rx="2" ry="2"/>
<text x="187.0" y="4030.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/parallel/mutable/ParArray.copyToArray (18 samples, 0.18%)</title><rect x="184.0" y="4003.0" width="2.2" height="15" fill="#4ee24e" rx="2" ry="2"/>
<text x="187.0" y="4014.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/parallel/ParIterableLike.copyToArray$ (18 samples, 0.18%)</title><rect x="184.0" y="3987.0" width="2.2" height="15" fill="#39ce39" rx="2" ry="2"/>
<text x="187.0" y="3998.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/parallel/ParIterableLike.copyToArray (18 samples, 0.18%)</title><rect x="184.0" y="3971.0" width="2.2" height="15" fill="#6bfc6b" rx="2" ry="2"/>
<text x="187.0" y="3982.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/parallel/mutable/ParArray.copyToArray (18 samples, 0.18%)</title><rect x="184.0" y="3955.0" width="2.2" height="15" fill="#65f765" rx="2" ry="2"/>
<text x="187.0" y="3966.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/parallel/ParIterableLike.copyToArray$ (18 samples, 0.18%)</title><rect x="184.0" y="3939.0" width="2.2" height="15" fill="#3fd33f" rx="2" ry="2"/>
<text x="187.0" y="3950.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/parallel/ParIterableLike.copyToArray (18 samples, 0.18%)</title><rect x="184.0" y="3923.0" width="2.2" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="187.0" y="3934.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/parallel/mutable/ParArray.splitter (15 samples, 0.15%)</title><rect x="184.4" y="3907.0" width="1.8" height="15" fill="#60f360" rx="2" ry="2"/>
<text x="187.4" y="3918.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/parallel/mutable/ParArray.splitter (15 samples, 0.15%)</title><rect x="184.4" y="3891.0" width="1.8" height="15" fill="#35ca35" rx="2" ry="2"/>
<text x="187.4" y="3902.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/parallel/package$CollectionsHaveToParArray.toParArray (37 samples, 0.38%)</title><rect x="187.0" y="4099.0" width="4.5" height="15" fill="#6bfc6b" rx="2" ry="2"/>
<text x="190.0" y="4110.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.loadClass (10 samples, 0.10%)</title><rect x="187.0" y="4083.0" width="1.2" height="15" fill="#58eb58" rx="2" ry="2"/>
<text x="190.0" y="4094.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.loadClass (10 samples, 0.10%)</title><rect x="187.0" y="4067.0" width="1.2" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="190.0" y="4078.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.findClass (10 samples, 0.10%)</title><rect x="187.0" y="4051.0" width="1.2" height="15" fill="#3acf3a" rx="2" ry="2"/>
<text x="190.0" y="4062.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/security/AccessController.doPrivileged (10 samples, 0.10%)</title><rect x="187.0" y="4035.0" width="1.2" height="15" fill="#39cf39" rx="2" ry="2"/>
<text x="190.0" y="4046.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader$1.run (10 samples, 0.10%)</title><rect x="187.0" y="4019.0" width="1.2" height="15" fill="#63f563" rx="2" ry="2"/>
<text x="190.0" y="4030.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader$1.run (10 samples, 0.10%)</title><rect x="187.0" y="4003.0" width="1.2" height="15" fill="#50e350" rx="2" ry="2"/>
<text x="190.0" y="4014.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.access$100 (10 samples, 0.10%)</title><rect x="187.0" y="3987.0" width="1.2" height="15" fill="#59ec59" rx="2" ry="2"/>
<text x="190.0" y="3998.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.defineClass (10 samples, 0.10%)</title><rect x="187.0" y="3971.0" width="1.2" height="15" fill="#50e350" rx="2" ry="2"/>
<text x="190.0" y="3982.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/security/SecureClassLoader.defineClass (9 samples, 0.09%)</title><rect x="187.0" y="3955.0" width="1.1" height="15" fill="#51e451" rx="2" ry="2"/>
<text x="190.0" y="3966.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.defineClass (9 samples, 0.09%)</title><rect x="187.0" y="3939.0" width="1.1" height="15" fill="#39ce39" rx="2" ry="2"/>
<text x="190.0" y="3950.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.defineClass1 (9 samples, 0.09%)</title><rect x="187.0" y="3923.0" width="1.1" height="15" fill="#68f968" rx="2" ry="2"/>
<text x="190.0" y="3934.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/parallel/mutable/ResizableParArrayCombiner$$anon$1.result (19 samples, 0.19%)</title><rect x="188.4" y="4083.0" width="2.2" height="15" fill="#5aec5a" rx="2" ry="2"/>
<text x="191.4" y="4094.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/parallel/mutable/LazyCombiner.result$ (19 samples, 0.19%)</title><rect x="188.4" y="4067.0" width="2.2" height="15" fill="#42d742" rx="2" ry="2"/>
<text x="191.4" y="4078.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/parallel/mutable/LazyCombiner.result (19 samples, 0.19%)</title><rect x="188.4" y="4051.0" width="2.2" height="15" fill="#49dd49" rx="2" ry="2"/>
<text x="191.4" y="4062.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/parallel/mutable/ResizableParArrayCombiner$$anon$1.allocateAndCopy (19 samples, 0.19%)</title><rect x="188.4" y="4035.0" width="2.2" height="15" fill="#49dd49" rx="2" ry="2"/>
<text x="191.4" y="4046.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/parallel/mutable/ResizableParArrayCombiner$$anon$1.allocateAndCopy (19 samples, 0.19%)</title><rect x="188.4" y="4019.0" width="2.2" height="15" fill="#63f563" rx="2" ry="2"/>
<text x="191.4" y="4030.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/parallel/mutable/ResizableParArrayCombiner.allocateAndCopy$ (19 samples, 0.19%)</title><rect x="188.4" y="4003.0" width="2.2" height="15" fill="#40d540" rx="2" ry="2"/>
<text x="191.4" y="4014.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/parallel/mutable/ResizableParArrayCombiner.allocateAndCopy (19 samples, 0.19%)</title><rect x="188.4" y="3987.0" width="2.2" height="15" fill="#39ce39" rx="2" ry="2"/>
<text x="191.4" y="3998.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.loadClass (13 samples, 0.13%)</title><rect x="189.0" y="3971.0" width="1.5" height="15" fill="#5df05d" rx="2" ry="2"/>
<text x="192.0" y="3982.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.loadClass (13 samples, 0.13%)</title><rect x="189.0" y="3955.0" width="1.5" height="15" fill="#58eb58" rx="2" ry="2"/>
<text x="192.0" y="3966.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.findClass (11 samples, 0.11%)</title><rect x="189.0" y="3939.0" width="1.3" height="15" fill="#3ed33e" rx="2" ry="2"/>
<text x="192.0" y="3950.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/security/AccessController.doPrivileged (11 samples, 0.11%)</title><rect x="189.0" y="3923.0" width="1.3" height="15" fill="#64f664" rx="2" ry="2"/>
<text x="192.0" y="3934.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader$1.run (11 samples, 0.11%)</title><rect x="189.0" y="3907.0" width="1.3" height="15" fill="#33c933" rx="2" ry="2"/>
<text x="192.0" y="3918.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader$1.run (11 samples, 0.11%)</title><rect x="189.0" y="3891.0" width="1.3" height="15" fill="#38cd38" rx="2" ry="2"/>
<text x="192.0" y="3902.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/Option.map (27 samples, 0.27%)</title><rect x="191.6" y="4227.0" width="3.2" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="194.6" y="4238.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Defaults$$$Lambda$2087/1411201114.apply (27 samples, 0.27%)</title><rect x="191.6" y="4211.0" width="3.2" height="15" fill="#47db47" rx="2" ry="2"/>
<text x="194.6" y="4222.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Defaults$.$anonfun$compileIncrementalTaskImpl$1$adapted (27 samples, 0.27%)</title><rect x="191.6" y="4195.0" width="3.2" height="15" fill="#60f260" rx="2" ry="2"/>
<text x="194.6" y="4206.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Defaults$.$anonfun$compileIncrementalTaskImpl$1 (27 samples, 0.27%)</title><rect x="191.6" y="4179.0" width="3.2" height="15" fill="#5def5d" rx="2" ry="2"/>
<text x="194.6" y="4190.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/server/LanguageServerReporter.resetPrevious (27 samples, 0.27%)</title><rect x="191.6" y="4163.0" width="3.2" height="15" fill="#59ec59" rx="2" ry="2"/>
<text x="194.6" y="4174.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractIterable.foreach (26 samples, 0.26%)</title><rect x="191.7" y="4147.0" width="3.1" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="194.7" y="4158.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IterableLike.foreach$ (26 samples, 0.26%)</title><rect x="191.7" y="4131.0" width="3.1" height="15" fill="#47db47" rx="2" ry="2"/>
<text x="194.7" y="4142.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IterableLike.foreach (26 samples, 0.26%)</title><rect x="191.7" y="4115.0" width="3.1" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="194.7" y="4126.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractIterator.foreach (26 samples, 0.26%)</title><rect x="191.7" y="4099.0" width="3.1" height="15" fill="#43d843" rx="2" ry="2"/>
<text x="194.7" y="4110.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/Iterator.foreach$ (26 samples, 0.26%)</title><rect x="191.7" y="4083.0" width="3.1" height="15" fill="#3cd13c" rx="2" ry="2"/>
<text x="194.7" y="4094.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/Iterator.foreach (26 samples, 0.26%)</title><rect x="191.7" y="4067.0" width="3.1" height="15" fill="#3fd43f" rx="2" ry="2"/>
<text x="194.7" y="4078.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/server/LanguageServerReporter$$Lambda$2605/1606960021.apply (26 samples, 0.26%)</title><rect x="191.7" y="4051.0" width="3.1" height="15" fill="#5aec5a" rx="2" ry="2"/>
<text x="194.7" y="4062.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/server/LanguageServerReporter.$anonfun$resetPrevious$1$adapted (26 samples, 0.26%)</title><rect x="191.7" y="4035.0" width="3.1" height="15" fill="#4ade4a" rx="2" ry="2"/>
<text x="194.7" y="4046.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/server/LanguageServerReporter.$anonfun$resetPrevious$1 (26 samples, 0.26%)</title><rect x="191.7" y="4019.0" width="3.1" height="15" fill="#67f867" rx="2" ry="2"/>
<text x="194.7" y="4030.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Defaults$$$Lambda$1241/59298126.apply (35 samples, 0.36%)</title><rect x="195.0" y="4275.0" width="4.2" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="198.0" y="4286.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Defaults$.$anonfun$copyResourcesTask$1 (35 samples, 0.36%)</title><rect x="195.0" y="4259.0" width="4.2" height="15" fill="#46da46" rx="2" ry="2"/>
<text x="198.0" y="4270.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Sync$$$Lambda$2222/2139719628.apply (25 samples, 0.25%)</title><rect x="195.0" y="4243.0" width="3.0" height="15" fill="#4ce04c" rx="2" ry="2"/>
<text x="198.0" y="4254.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Sync$.$anonfun$apply$1 (25 samples, 0.25%)</title><rect x="195.0" y="4227.0" width="3.0" height="15" fill="#5bee5b" rx="2" ry="2"/>
<text x="198.0" y="4238.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/Stream.foreach (12 samples, 0.12%)</title><rect x="196.5" y="4211.0" width="1.5" height="15" fill="#64f564" rx="2" ry="2"/>
<text x="199.5" y="4222.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/Function2$$Lambda$791/1710641643.apply (12 samples, 0.12%)</title><rect x="196.5" y="4195.0" width="1.5" height="15" fill="#61f361" rx="2" ry="2"/>
<text x="199.5" y="4206.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/Function2.$anonfun$tupled$1 (12 samples, 0.12%)</title><rect x="196.5" y="4179.0" width="1.5" height="15" fill="#64f664" rx="2" ry="2"/>
<text x="199.5" y="4190.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Sync$$$Lambda$2233/774916603.apply (12 samples, 0.12%)</title><rect x="196.5" y="4163.0" width="1.5" height="15" fill="#42d742" rx="2" ry="2"/>
<text x="199.5" y="4174.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Sync$.$anonfun$apply$5$adapted (12 samples, 0.12%)</title><rect x="196.5" y="4147.0" width="1.5" height="15" fill="#41d641" rx="2" ry="2"/>
<text x="199.5" y="4158.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Sync$.$anonfun$apply$5 (12 samples, 0.12%)</title><rect x="196.5" y="4131.0" width="1.5" height="15" fill="#3cd13c" rx="2" ry="2"/>
<text x="199.5" y="4142.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Sync$.copy (12 samples, 0.12%)</title><rect x="196.5" y="4115.0" width="1.5" height="15" fill="#52e552" rx="2" ry="2"/>
<text x="199.5" y="4126.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/io/IO$.copyFile (12 samples, 0.12%)</title><rect x="196.5" y="4099.0" width="1.5" height="15" fill="#36cc36" rx="2" ry="2"/>
<text x="199.5" y="4110.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/io/Using.apply (9 samples, 0.09%)</title><rect x="196.9" y="4083.0" width="1.1" height="15" fill="#6dfe6d" rx="2" ry="2"/>
<text x="199.9" y="4094.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/io/IO$$$Lambda$2670/909515013.apply (9 samples, 0.09%)</title><rect x="196.9" y="4067.0" width="1.1" height="15" fill="#5ff15f" rx="2" ry="2"/>
<text x="199.9" y="4078.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/io/IO$.$anonfun$copyFile$3$adapted (9 samples, 0.09%)</title><rect x="196.9" y="4051.0" width="1.1" height="15" fill="#39ce39" rx="2" ry="2"/>
<text x="199.9" y="4062.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/io/IO$.$anonfun$copyFile$3 (9 samples, 0.09%)</title><rect x="196.9" y="4035.0" width="1.1" height="15" fill="#3bd13b" rx="2" ry="2"/>
<text x="199.9" y="4046.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/io/Using.apply (9 samples, 0.09%)</title><rect x="196.9" y="4019.0" width="1.1" height="15" fill="#4bdf4b" rx="2" ry="2"/>
<text x="199.9" y="4030.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/io/IO$$$Lambda$2671/1348706703.apply (9 samples, 0.09%)</title><rect x="196.9" y="4003.0" width="1.1" height="15" fill="#60f260" rx="2" ry="2"/>
<text x="199.9" y="4014.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/io/IO$.$anonfun$copyFile$4$adapted (9 samples, 0.09%)</title><rect x="196.9" y="3987.0" width="1.1" height="15" fill="#3ed33e" rx="2" ry="2"/>
<text x="199.9" y="3998.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/io/IO$.$anonfun$copyFile$4 (9 samples, 0.09%)</title><rect x="196.9" y="3971.0" width="1.1" height="15" fill="#4cdf4c" rx="2" ry="2"/>
<text x="199.9" y="3982.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Defaults$$$Lambda$1916/1324033035.apply (31 samples, 0.32%)</title><rect x="200.1" y="4275.0" width="3.7" height="15" fill="#33c933" rx="2" ry="2"/>
<text x="203.1" y="4286.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Defaults$.$anonfun$discoverSbtPluginNames$2 (31 samples, 0.32%)</title><rect x="200.1" y="4259.0" width="3.7" height="15" fill="#69fb69" rx="2" ry="2"/>
<text x="203.1" y="4270.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/PluginDiscovery$.discoverSourceAll (31 samples, 0.32%)</title><rect x="200.1" y="4243.0" width="3.7" height="15" fill="#38cd38" rx="2" ry="2"/>
<text x="203.1" y="4254.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/PluginDiscovery$.discover$2 (31 samples, 0.32%)</title><rect x="200.1" y="4227.0" width="3.7" height="15" fill="#41d641" rx="2" ry="2"/>
<text x="203.1" y="4238.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/PluginDiscovery$.sourceModuleNames (31 samples, 0.32%)</title><rect x="200.1" y="4211.0" width="3.7" height="15" fill="#4ee24e" rx="2" ry="2"/>
<text x="203.1" y="4222.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Tests$.allDefs (19 samples, 0.19%)</title><rect x="200.7" y="4195.0" width="2.3" height="15" fill="#61f361" rx="2" ry="2"/>
<text x="203.7" y="4206.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractTraversable.toVector (18 samples, 0.18%)</title><rect x="200.8" y="4179.0" width="2.2" height="15" fill="#41d641" rx="2" ry="2"/>
<text x="203.8" y="4190.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.toVector$ (18 samples, 0.18%)</title><rect x="200.8" y="4163.0" width="2.2" height="15" fill="#3ed33e" rx="2" ry="2"/>
<text x="203.8" y="4174.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.toVector (18 samples, 0.18%)</title><rect x="200.8" y="4147.0" width="2.2" height="15" fill="#42d742" rx="2" ry="2"/>
<text x="203.8" y="4158.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractTraversable.to (18 samples, 0.18%)</title><rect x="200.8" y="4131.0" width="2.2" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="203.8" y="4142.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.to$ (18 samples, 0.18%)</title><rect x="200.8" y="4115.0" width="2.2" height="15" fill="#3ed33e" rx="2" ry="2"/>
<text x="203.8" y="4126.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.to (18 samples, 0.18%)</title><rect x="200.8" y="4099.0" width="2.2" height="15" fill="#69fb69" rx="2" ry="2"/>
<text x="203.8" y="4110.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/VectorBuilder.$plus$plus$eq (18 samples, 0.18%)</title><rect x="200.8" y="4083.0" width="2.2" height="15" fill="#5ff25f" rx="2" ry="2"/>
<text x="203.8" y="4094.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/VectorBuilder.$plus$plus$eq (18 samples, 0.18%)</title><rect x="200.8" y="4067.0" width="2.2" height="15" fill="#56e956" rx="2" ry="2"/>
<text x="203.8" y="4078.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/generic/Growable.$plus$plus$eq$ (18 samples, 0.18%)</title><rect x="200.8" y="4051.0" width="2.2" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="203.8" y="4062.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/generic/Growable.$plus$plus$eq (18 samples, 0.18%)</title><rect x="200.8" y="4035.0" width="2.2" height="15" fill="#47db47" rx="2" ry="2"/>
<text x="203.8" y="4046.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/MapLike$DefaultValuesIterable.foreach (18 samples, 0.18%)</title><rect x="200.8" y="4019.0" width="2.2" height="15" fill="#68f968" rx="2" ry="2"/>
<text x="203.8" y="4030.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractIterator.foreach (18 samples, 0.18%)</title><rect x="200.8" y="4003.0" width="2.2" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="203.8" y="4014.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/Iterator.foreach$ (18 samples, 0.18%)</title><rect x="200.8" y="3987.0" width="2.2" height="15" fill="#38ce38" rx="2" ry="2"/>
<text x="203.8" y="3998.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/Iterator.foreach (18 samples, 0.18%)</title><rect x="200.8" y="3971.0" width="2.2" height="15" fill="#61f361" rx="2" ry="2"/>
<text x="203.8" y="3982.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/MapLike$$anon$2.next (18 samples, 0.18%)</title><rect x="200.8" y="3955.0" width="2.2" height="15" fill="#5bee5b" rx="2" ry="2"/>
<text x="203.8" y="3966.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/Iterator$$anon$10.next (18 samples, 0.18%)</title><rect x="200.8" y="3939.0" width="2.2" height="15" fill="#33c933" rx="2" ry="2"/>
<text x="203.8" y="3950.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/MapLike$MappedValues$$Lambda$1460/1283634655.apply (18 samples, 0.18%)</title><rect x="200.8" y="3923.0" width="2.2" height="15" fill="#5ef15e" rx="2" ry="2"/>
<text x="203.8" y="3934.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/MapLike$MappedValues.$anonfun$iterator$3 (18 samples, 0.18%)</title><rect x="200.8" y="3907.0" width="2.2" height="15" fill="#38ce38" rx="2" ry="2"/>
<text x="203.8" y="3918.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/binary/converters/ProtobufReaders$$Lambda$2602/606423259.apply (18 samples, 0.18%)</title><rect x="200.8" y="3891.0" width="2.2" height="15" fill="#67f967" rx="2" ry="2"/>
<text x="203.8" y="3902.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/binary/converters/ProtobufReaders.$anonfun$fromApis$1 (18 samples, 0.18%)</title><rect x="200.8" y="3875.0" width="2.2" height="15" fill="#59ec59" rx="2" ry="2"/>
<text x="203.8" y="3886.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/binary/converters/ProtobufReaders.fromAnalyzedClass (18 samples, 0.18%)</title><rect x="200.8" y="3859.0" width="2.2" height="15" fill="#46db46" rx="2" ry="2"/>
<text x="203.8" y="3870.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/binary/converters/ProtobufReaders$OptionReader.read (16 samples, 0.16%)</title><rect x="201.1" y="3843.0" width="1.9" height="15" fill="#48dd48" rx="2" ry="2"/>
<text x="204.1" y="3854.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/Option.fold (16 samples, 0.16%)</title><rect x="201.1" y="3827.0" width="1.9" height="15" fill="#3ed33e" rx="2" ry="2"/>
<text x="204.1" y="3838.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/binary/converters/ProtobufReaders$$Lambda$2625/304551094.apply (16 samples, 0.16%)</title><rect x="201.1" y="3811.0" width="1.9" height="15" fill="#45da45" rx="2" ry="2"/>
<text x="204.1" y="3822.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/binary/converters/ProtobufReaders.$anonfun$fromAnalyzedClass$6 (16 samples, 0.16%)</title><rect x="201.1" y="3795.0" width="1.9" height="15" fill="#33c833" rx="2" ry="2"/>
<text x="204.1" y="3806.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/binary/converters/ProtobufReaders.fromCompanions$1 (16 samples, 0.16%)</title><rect x="201.1" y="3779.0" width="1.9" height="15" fill="#68fa68" rx="2" ry="2"/>
<text x="204.1" y="3790.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/binary/converters/ProtobufReaders$OptionReader.read (15 samples, 0.15%)</title><rect x="201.2" y="3763.0" width="1.8" height="15" fill="#61f361" rx="2" ry="2"/>
<text x="204.2" y="3774.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/Option.fold (15 samples, 0.15%)</title><rect x="201.2" y="3747.0" width="1.8" height="15" fill="#49dd49" rx="2" ry="2"/>
<text x="204.2" y="3758.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/binary/converters/ProtobufReaders$$Lambda$2627/1700731616.apply (12 samples, 0.12%)</title><rect x="201.2" y="3731.0" width="1.4" height="15" fill="#5df05d" rx="2" ry="2"/>
<text x="204.2" y="3742.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/binary/converters/ProtobufReaders.$anonfun$fromAnalyzedClass$2 (12 samples, 0.12%)</title><rect x="201.2" y="3715.0" width="1.4" height="15" fill="#63f563" rx="2" ry="2"/>
<text x="204.2" y="3726.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/binary/converters/ProtobufReaders.fromClassLike (12 samples, 0.12%)</title><rect x="201.2" y="3699.0" width="1.4" height="15" fill="#66f866" rx="2" ry="2"/>
<text x="204.2" y="3710.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/GlobalPlugin$$$Lambda$1808/967532279.apply (178 samples, 1.81%)</title><rect x="204.4" y="4275.0" width="21.4" height="15" fill="#39cf39" rx="2" ry="2"/>
<text x="207.4" y="4286.0">s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/GlobalPlugin$.$anonfun$extract$3 (178 samples, 1.81%)</title><rect x="204.4" y="4259.0" width="21.4" height="15" fill="#46da46" rx="2" ry="2"/>
<text x="207.4" y="4270.0">s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/librarymanagement/IvySbt$Module.dependencyMapping (178 samples, 1.81%)</title><rect x="204.4" y="4243.0" width="21.4" height="15" fill="#6afb6a" rx="2" ry="2"/>
<text x="207.4" y="4254.0">s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/librarymanagement/IvySbt$Module.moduleDescriptor (178 samples, 1.81%)</title><rect x="204.4" y="4227.0" width="21.4" height="15" fill="#47db47" rx="2" ry="2"/>
<text x="207.4" y="4238.0">s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/librarymanagement/IvySbt$Module.withModule (178 samples, 1.81%)</title><rect x="204.4" y="4211.0" width="21.4" height="15" fill="#47db47" rx="2" ry="2"/>
<text x="207.4" y="4222.0">s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/librarymanagement/IvySbt.withIvy (178 samples, 1.81%)</title><rect x="204.4" y="4195.0" width="21.4" height="15" fill="#36cc36" rx="2" ry="2"/>
<text x="207.4" y="4206.0">s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/librarymanagement/IvySbt.withIvy (177 samples, 1.80%)</title><rect x="204.6" y="4179.0" width="21.2" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="207.6" y="4190.0">s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/librarymanagement/IvySbt.withDefaultLogger (176 samples, 1.79%)</title><rect x="204.7" y="4163.0" width="21.1" height="15" fill="#60f260" rx="2" ry="2"/>
<text x="207.7" y="4174.0">s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/librarymanagement/IvySbt.ivyLockFile (66 samples, 0.67%)</title><rect x="204.8" y="4147.0" width="7.9" height="15" fill="#64f664" rx="2" ry="2"/>
<text x="207.8" y="4158.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/librarymanagement/IvySbt.ivyLockFile$lzycompute (66 samples, 0.67%)</title><rect x="204.8" y="4131.0" width="7.9" height="15" fill="#4fe34f" rx="2" ry="2"/>
<text x="207.8" y="4142.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/librarymanagement/IvySbt.sbt$internal$librarymanagement$IvySbt$$settings (66 samples, 0.67%)</title><rect x="204.8" y="4115.0" width="7.9" height="15" fill="#63f463" rx="2" ry="2"/>
<text x="207.8" y="4126.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/librarymanagement/IvySbt.settings$lzycompute (66 samples, 0.67%)</title><rect x="204.8" y="4099.0" width="7.9" height="15" fill="#58eb58" rx="2" ry="2"/>
<text x="207.8" y="4110.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/ivy/core/settings/IvySettings.&lt;init&gt; (24 samples, 0.24%)</title><rect x="205.4" y="4083.0" width="2.9" height="15" fill="#4cdf4c" rx="2" ry="2"/>
<text x="208.4" y="4094.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/ivy/core/settings/IvySettings.&lt;init&gt; (23 samples, 0.23%)</title><rect x="205.5" y="4067.0" width="2.8" height="15" fill="#47db47" rx="2" ry="2"/>
<text x="208.5" y="4078.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/ivy/core/settings/IvySettings.typeDefs (11 samples, 0.11%)</title><rect x="206.8" y="4051.0" width="1.4" height="15" fill="#46db46" rx="2" ry="2"/>
<text x="209.8" y="4062.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/ivy/core/settings/IvySettings.typeDefs (11 samples, 0.11%)</title><rect x="206.8" y="4035.0" width="1.4" height="15" fill="#42d742" rx="2" ry="2"/>
<text x="209.8" y="4046.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/ivy/core/settings/IvySettings.typeDef (11 samples, 0.11%)</title><rect x="206.8" y="4019.0" width="1.4" height="15" fill="#69fa69" rx="2" ry="2"/>
<text x="209.8" y="4030.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/ivy/core/settings/IvySettings.classForName (11 samples, 0.11%)</title><rect x="206.8" y="4003.0" width="1.4" height="15" fill="#57ea57" rx="2" ry="2"/>
<text x="209.8" y="4014.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.loadClass (11 samples, 0.11%)</title><rect x="206.8" y="3987.0" width="1.4" height="15" fill="#5ef05e" rx="2" ry="2"/>
<text x="209.8" y="3998.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.loadClass (11 samples, 0.11%)</title><rect x="206.8" y="3971.0" width="1.4" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="209.8" y="3982.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.findClass (10 samples, 0.10%)</title><rect x="207.0" y="3955.0" width="1.2" height="15" fill="#60f260" rx="2" ry="2"/>
<text x="210.0" y="3966.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/security/AccessController.doPrivileged (10 samples, 0.10%)</title><rect x="207.0" y="3939.0" width="1.2" height="15" fill="#41d541" rx="2" ry="2"/>
<text x="210.0" y="3950.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader$1.run (10 samples, 0.10%)</title><rect x="207.0" y="3923.0" width="1.2" height="15" fill="#56e956" rx="2" ry="2"/>
<text x="210.0" y="3934.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader$1.run (10 samples, 0.10%)</title><rect x="207.0" y="3907.0" width="1.2" height="15" fill="#65f765" rx="2" ry="2"/>
<text x="210.0" y="3918.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.access$100 (9 samples, 0.09%)</title><rect x="207.0" y="3891.0" width="1.0" height="15" fill="#44d944" rx="2" ry="2"/>
<text x="210.0" y="3902.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.defineClass (9 samples, 0.09%)</title><rect x="207.0" y="3875.0" width="1.0" height="15" fill="#56e956" rx="2" ry="2"/>
<text x="210.0" y="3886.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/librarymanagement/IvySbt$.sbt$internal$librarymanagement$IvySbt$$setResolvers (23 samples, 0.23%)</title><rect x="209.7" y="4083.0" width="2.8" height="15" fill="#39ce39" rx="2" ry="2"/>
<text x="212.7" y="4094.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/librarymanagement/IvySbt$.makeChain$1 (23 samples, 0.23%)</title><rect x="209.7" y="4067.0" width="2.8" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="212.7" y="4078.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/librarymanagement/IvySbt$.resolverChain (23 samples, 0.23%)</title><rect x="209.7" y="4051.0" width="2.8" height="15" fill="#39cf39" rx="2" ry="2"/>
<text x="212.7" y="4062.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractTraversable.map (20 samples, 0.20%)</title><rect x="210.1" y="4035.0" width="2.4" height="15" fill="#41d641" rx="2" ry="2"/>
<text x="213.1" y="4046.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.map$ (20 samples, 0.20%)</title><rect x="210.1" y="4019.0" width="2.4" height="15" fill="#39ce39" rx="2" ry="2"/>
<text x="213.1" y="4030.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.map (20 samples, 0.20%)</title><rect x="210.1" y="4003.0" width="2.4" height="15" fill="#3ed33e" rx="2" ry="2"/>
<text x="213.1" y="4014.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractIterable.foreach (20 samples, 0.20%)</title><rect x="210.1" y="3987.0" width="2.4" height="15" fill="#5ff15f" rx="2" ry="2"/>
<text x="213.1" y="3998.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IterableLike.foreach$ (20 samples, 0.20%)</title><rect x="210.1" y="3971.0" width="2.4" height="15" fill="#36cb36" rx="2" ry="2"/>
<text x="213.1" y="3982.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IterableLike.foreach (20 samples, 0.20%)</title><rect x="210.1" y="3955.0" width="2.4" height="15" fill="#4de14d" rx="2" ry="2"/>
<text x="213.1" y="3966.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractIterator.foreach (20 samples, 0.20%)</title><rect x="210.1" y="3939.0" width="2.4" height="15" fill="#6bfc6b" rx="2" ry="2"/>
<text x="213.1" y="3950.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/Iterator.foreach$ (20 samples, 0.20%)</title><rect x="210.1" y="3923.0" width="2.4" height="15" fill="#40d440" rx="2" ry="2"/>
<text x="213.1" y="3934.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/Iterator.foreach (20 samples, 0.20%)</title><rect x="210.1" y="3907.0" width="2.4" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="213.1" y="3918.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike$$Lambda$42/728885526.apply (20 samples, 0.20%)</title><rect x="210.1" y="3891.0" width="2.4" height="15" fill="#5bed5b" rx="2" ry="2"/>
<text x="213.1" y="3902.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.$anonfun$map$1 (20 samples, 0.20%)</title><rect x="210.1" y="3875.0" width="2.4" height="15" fill="#36cc36" rx="2" ry="2"/>
<text x="213.1" y="3886.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/librarymanagement/IvySbt$$$Lambda$2248/1715548024.apply (20 samples, 0.20%)</title><rect x="210.1" y="3859.0" width="2.4" height="15" fill="#65f665" rx="2" ry="2"/>
<text x="213.1" y="3870.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/librarymanagement/IvySbt$.$anonfun$resolverChain$1 (20 samples, 0.20%)</title><rect x="210.1" y="3843.0" width="2.4" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="213.1" y="3854.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/librarymanagement/ConvertResolver$.apply (20 samples, 0.20%)</title><rect x="210.1" y="3827.0" width="2.4" height="15" fill="#39ce39" rx="2" ry="2"/>
<text x="213.1" y="3838.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/runtime/AbstractPartialFunction.apply (15 samples, 0.15%)</title><rect x="210.7" y="3811.0" width="1.8" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="213.7" y="3822.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/librarymanagement/ConvertResolver$$anonfun$defaultConvert$lzycompute$1.applyOrElse (15 samples, 0.15%)</title><rect x="210.7" y="3795.0" width="1.8" height="15" fill="#6afb6a" rx="2" ry="2"/>
<text x="213.7" y="3806.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/librarymanagement/ConvertResolver$$anonfun$defaultConvert$lzycompute$1.applyOrElse (15 samples, 0.15%)</title><rect x="210.7" y="3779.0" width="1.8" height="15" fill="#34ca34" rx="2" ry="2"/>
<text x="213.7" y="3790.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>xsbt/boot/Locks$.apply (109 samples, 1.11%)</title><rect x="212.7" y="4147.0" width="13.1" height="15" fill="#35cb35" rx="2" ry="2"/>
<text x="215.7" y="4158.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>xsbt/boot/Locks$.apply0 (109 samples, 1.11%)</title><rect x="212.7" y="4131.0" width="13.1" height="15" fill="#63f563" rx="2" ry="2"/>
<text x="215.7" y="4142.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>xsbt/boot/Locks$GlobalLock.withLock (109 samples, 1.11%)</title><rect x="212.7" y="4115.0" width="13.1" height="15" fill="#3acf3a" rx="2" ry="2"/>
<text x="215.7" y="4126.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>xsbt/boot/Locks$GlobalLock.ignoringDeadlockAvoided (109 samples, 1.11%)</title><rect x="212.7" y="4099.0" width="13.1" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="215.7" y="4110.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>xsbt/boot/Using$.apply (109 samples, 1.11%)</title><rect x="212.7" y="4083.0" width="13.1" height="15" fill="#3fd43f" rx="2" ry="2"/>
<text x="215.7" y="4094.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>xsbt/boot/Using$.withResource (109 samples, 1.11%)</title><rect x="212.7" y="4067.0" width="13.1" height="15" fill="#49dd49" rx="2" ry="2"/>
<text x="215.7" y="4078.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>xsbt/boot/Locks$GlobalLock$$anonfun$withFileLock$1.apply (109 samples, 1.11%)</title><rect x="212.7" y="4051.0" width="13.1" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="215.7" y="4062.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>xsbt/boot/Locks$GlobalLock.xsbt$boot$Locks$GlobalLock$$withChannelRetries$1 (109 samples, 1.11%)</title><rect x="212.7" y="4035.0" width="13.1" height="15" fill="#59ec59" rx="2" ry="2"/>
<text x="215.7" y="4046.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>xsbt/boot/Locks$GlobalLock.withChannel$1 (109 samples, 1.11%)</title><rect x="212.7" y="4019.0" width="13.1" height="15" fill="#35ca35" rx="2" ry="2"/>
<text x="215.7" y="4030.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/librarymanagement/IvySbt$$anon$3.call (109 samples, 1.11%)</title><rect x="212.7" y="4003.0" width="13.1" height="15" fill="#6dfe6d" rx="2" ry="2"/>
<text x="215.7" y="4014.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/librarymanagement/IvySbt.sbt$internal$librarymanagement$IvySbt$$action$1 (109 samples, 1.11%)</title><rect x="212.7" y="3987.0" width="13.1" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="215.7" y="3998.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/librarymanagement/IvySbt$$Lambda$2242/1830646873.apply (109 samples, 1.11%)</title><rect x="212.7" y="3971.0" width="13.1" height="15" fill="#4ade4a" rx="2" ry="2"/>
<text x="215.7" y="3982.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/librarymanagement/IvySbt.$anonfun$withIvy$1 (109 samples, 1.11%)</title><rect x="212.7" y="3955.0" width="13.1" height="15" fill="#33c933" rx="2" ry="2"/>
<text x="215.7" y="3966.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/librarymanagement/IvySbt$Module$$Lambda$2241/881981825.apply (85 samples, 0.87%)</title><rect x="212.9" y="3939.0" width="10.2" height="15" fill="#38cd38" rx="2" ry="2"/>
<text x="215.9" y="3950.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/librarymanagement/IvySbt$Module.$anonfun$withModule$1 (85 samples, 0.87%)</title><rect x="212.9" y="3923.0" width="10.2" height="15" fill="#6cfd6c" rx="2" ry="2"/>
<text x="215.9" y="3934.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/librarymanagement/IvySbt$Module.moduleDescriptor0 (85 samples, 0.87%)</title><rect x="212.9" y="3907.0" width="10.2" height="15" fill="#66f766" rx="2" ry="2"/>
<text x="215.9" y="3918.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/librarymanagement/IvySbt$Module.moduleDescriptor0$lzycompute (85 samples, 0.87%)</title><rect x="212.9" y="3891.0" width="10.2" height="15" fill="#5aec5a" rx="2" ry="2"/>
<text x="215.9" y="3902.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/librarymanagement/IvySbt$Module.x$7 (85 samples, 0.87%)</title><rect x="212.9" y="3875.0" width="10.2" height="15" fill="#64f564" rx="2" ry="2"/>
<text x="215.9" y="3886.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/librarymanagement/IvySbt$Module.x$7$lzycompute (85 samples, 0.87%)</title><rect x="212.9" y="3859.0" width="10.2" height="15" fill="#40d540" rx="2" ry="2"/>
<text x="215.9" y="3870.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/librarymanagement/IvySbt$Module.configureInline (82 samples, 0.83%)</title><rect x="213.0" y="3843.0" width="9.8" height="15" fill="#5def5d" rx="2" ry="2"/>
<text x="216.0" y="3854.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/librarymanagement/IvySbt$.addDependencies (10 samples, 0.10%)</title><rect x="213.0" y="3827.0" width="1.2" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="216.0" y="3838.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/librarymanagement/IvySbt$.sbt$internal$librarymanagement$IvySbt$$parseIvyXML (51 samples, 0.52%)</title><rect x="214.4" y="3827.0" width="6.1" height="15" fill="#3fd43f" rx="2" ry="2"/>
<text x="217.4" y="3838.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/librarymanagement/IvySbt$.parseIvyXML (49 samples, 0.50%)</title><rect x="214.4" y="3811.0" width="5.9" height="15" fill="#3fd43f" rx="2" ry="2"/>
<text x="217.4" y="3822.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/ivy/plugins/parser/xml/XmlModuleDescriptorParser$Parser.parse (45 samples, 0.46%)</title><rect x="214.9" y="3795.0" width="5.4" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="217.9" y="3806.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/ivy/util/XMLHelper.parse (43 samples, 0.44%)</title><rect x="215.1" y="3779.0" width="5.2" height="15" fill="#4ce04c" rx="2" ry="2"/>
<text x="218.1" y="3790.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/ivy/util/XMLHelper.parse (43 samples, 0.44%)</title><rect x="215.1" y="3763.0" width="5.2" height="15" fill="#4ade4a" rx="2" ry="2"/>
<text x="218.1" y="3774.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/ivy/util/XMLHelper.newSAXParser (38 samples, 0.39%)</title><rect x="215.7" y="3747.0" width="4.6" height="15" fill="#69fb69" rx="2" ry="2"/>
<text x="218.7" y="3758.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/sun/org/apache/xerces/internal/jaxp/SAXParserFactoryImpl.newSAXParser (35 samples, 0.36%)</title><rect x="215.7" y="3731.0" width="4.2" height="15" fill="#33c933" rx="2" ry="2"/>
<text x="218.7" y="3742.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/sun/org/apache/xerces/internal/jaxp/SAXParserImpl.&lt;init&gt; (34 samples, 0.35%)</title><rect x="215.9" y="3715.0" width="4.0" height="15" fill="#50e450" rx="2" ry="2"/>
<text x="218.9" y="3726.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/sun/org/apache/xerces/internal/jaxp/SAXParserImpl$JAXPSAXParser.&lt;init&gt; (28 samples, 0.28%)</title><rect x="216.5" y="3699.0" width="3.3" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="219.5" y="3710.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/sun/org/apache/xerces/internal/parsers/SAXParser.&lt;init&gt; (28 samples, 0.28%)</title><rect x="216.5" y="3683.0" width="3.3" height="15" fill="#65f765" rx="2" ry="2"/>
<text x="219.5" y="3694.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/sun/org/apache/xerces/internal/parsers/SAXParser.&lt;init&gt; (28 samples, 0.28%)</title><rect x="216.5" y="3667.0" width="3.3" height="15" fill="#61f361" rx="2" ry="2"/>
<text x="219.5" y="3678.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/sun/org/apache/xerces/internal/parsers/XIncludeAwareParserConfiguration.&lt;init&gt; (25 samples, 0.25%)</title><rect x="216.8" y="3651.0" width="3.0" height="15" fill="#56e956" rx="2" ry="2"/>
<text x="219.8" y="3662.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/sun/org/apache/xerces/internal/parsers/XIncludeAwareParserConfiguration.&lt;init&gt; (25 samples, 0.25%)</title><rect x="216.8" y="3635.0" width="3.0" height="15" fill="#45da45" rx="2" ry="2"/>
<text x="219.8" y="3646.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/sun/org/apache/xerces/internal/parsers/XML11Configuration.&lt;init&gt; (25 samples, 0.25%)</title><rect x="216.8" y="3619.0" width="3.0" height="15" fill="#57ea57" rx="2" ry="2"/>
<text x="219.8" y="3630.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/librarymanagement/IvySbt$Module.newConfiguredModuleID (12 samples, 0.12%)</title><rect x="221.4" y="3827.0" width="1.4" height="15" fill="#59eb59" rx="2" ry="2"/>
<text x="224.4" y="3838.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/librarymanagement/IvySbt.sbt$internal$librarymanagement$IvySbt$$ivy (21 samples, 0.21%)</title><rect x="223.1" y="3939.0" width="2.5" height="15" fill="#58eb58" rx="2" ry="2"/>
<text x="226.1" y="3950.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/librarymanagement/IvySbt.ivy$lzycompute (21 samples, 0.21%)</title><rect x="223.1" y="3923.0" width="2.5" height="15" fill="#41d641" rx="2" ry="2"/>
<text x="226.1" y="3934.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/librarymanagement/IvySbt.mkIvy (21 samples, 0.21%)</title><rect x="223.1" y="3907.0" width="2.5" height="15" fill="#33c933" rx="2" ry="2"/>
<text x="226.1" y="3918.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/librarymanagement/IvySbt$IvyImplementation.bind (10 samples, 0.10%)</title><rect x="224.4" y="3891.0" width="1.2" height="15" fill="#6dfe6d" rx="2" ry="2"/>
<text x="227.4" y="3902.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/FutureTask.set (21 samples, 0.21%)</title><rect x="227.1" y="4531.0" width="2.6" height="15" fill="#3ed33e" rx="2" ry="2"/>
<text x="230.1" y="4542.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/FutureTask.finishCompletion (21 samples, 0.21%)</title><rect x="227.1" y="4515.0" width="2.6" height="15" fill="#58eb58" rx="2" ry="2"/>
<text x="230.1" y="4526.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ExecutorCompletionService$QueueingFuture.done (21 samples, 0.21%)</title><rect x="227.1" y="4499.0" width="2.6" height="15" fill="#53e653" rx="2" ry="2"/>
<text x="230.1" y="4510.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/AbstractQueue.add (21 samples, 0.21%)</title><rect x="227.1" y="4483.0" width="2.6" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="230.1" y="4494.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/LinkedBlockingQueue.offer (21 samples, 0.21%)</title><rect x="227.1" y="4467.0" width="2.6" height="15" fill="#39ce39" rx="2" ry="2"/>
<text x="230.1" y="4478.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/LinkedBlockingQueue.signalNotEmpty (21 samples, 0.21%)</title><rect x="227.1" y="4451.0" width="2.6" height="15" fill="#4ce04c" rx="2" ry="2"/>
<text x="230.1" y="4462.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/ReentrantLock.unlock (21 samples, 0.21%)</title><rect x="227.1" y="4435.0" width="2.6" height="15" fill="#3acf3a" rx="2" ry="2"/>
<text x="230.1" y="4446.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/AbstractQueuedSynchronizer.release (21 samples, 0.21%)</title><rect x="227.1" y="4419.0" width="2.6" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="230.1" y="4430.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/AbstractQueuedSynchronizer.unparkSuccessor (21 samples, 0.21%)</title><rect x="227.1" y="4403.0" width="2.6" height="15" fill="#52e552" rx="2" ry="2"/>
<text x="230.1" y="4414.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/LockSupport.unpark (21 samples, 0.21%)</title><rect x="227.1" y="4387.0" width="2.6" height="15" fill="#4fe24f" rx="2" ry="2"/>
<text x="230.1" y="4398.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/misc/Unsafe.unpark (21 samples, 0.21%)</title><rect x="227.1" y="4371.0" width="2.6" height="15" fill="#67f867" rx="2" ry="2"/>
<text x="230.1" y="4382.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ThreadPoolExecutor.getTask (96 samples, 0.98%)</title><rect x="229.8" y="4547.0" width="11.5" height="15" fill="#36cc36" rx="2" ry="2"/>
<text x="232.8" y="4558.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/LinkedBlockingQueue.take (75 samples, 0.76%)</title><rect x="229.8" y="4531.0" width="9.0" height="15" fill="#47db47" rx="2" ry="2"/>
<text x="232.8" y="4542.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject.await (14 samples, 0.14%)</title><rect x="229.9" y="4515.0" width="1.7" height="15" fill="#38cd38" rx="2" ry="2"/>
<text x="232.9" y="4526.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/LockSupport.park (14 samples, 0.14%)</title><rect x="229.9" y="4499.0" width="1.7" height="15" fill="#43d843" rx="2" ry="2"/>
<text x="232.9" y="4510.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/misc/Unsafe.park (14 samples, 0.14%)</title><rect x="229.9" y="4483.0" width="1.7" height="15" fill="#64f664" rx="2" ry="2"/>
<text x="232.9" y="4494.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/ReentrantLock.lockInterruptibly (52 samples, 0.53%)</title><rect x="231.6" y="4515.0" width="6.2" height="15" fill="#68fa68" rx="2" ry="2"/>
<text x="234.6" y="4526.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/AbstractQueuedSynchronizer.acquireInterruptibly (52 samples, 0.53%)</title><rect x="231.6" y="4499.0" width="6.2" height="15" fill="#63f563" rx="2" ry="2"/>
<text x="234.6" y="4510.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/AbstractQueuedSynchronizer.doAcquireInterruptibly (48 samples, 0.49%)</title><rect x="231.9" y="4483.0" width="5.8" height="15" fill="#6cfd6c" rx="2" ry="2"/>
<text x="234.9" y="4494.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/AbstractQueuedSynchronizer.parkAndCheckInterrupt (44 samples, 0.45%)</title><rect x="232.2" y="4467.0" width="5.3" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="235.2" y="4478.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/LockSupport.park (44 samples, 0.45%)</title><rect x="232.2" y="4451.0" width="5.3" height="15" fill="#61f361" rx="2" ry="2"/>
<text x="235.2" y="4462.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/misc/Unsafe.park (43 samples, 0.44%)</title><rect x="232.3" y="4435.0" width="5.2" height="15" fill="#64f664" rx="2" ry="2"/>
<text x="235.3" y="4446.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/SynchronousQueue.poll (20 samples, 0.20%)</title><rect x="238.8" y="4531.0" width="2.4" height="15" fill="#4ce04c" rx="2" ry="2"/>
<text x="241.8" y="4542.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/SynchronousQueue$TransferStack.transfer (20 samples, 0.20%)</title><rect x="238.8" y="4515.0" width="2.4" height="15" fill="#58eb58" rx="2" ry="2"/>
<text x="241.8" y="4526.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/SynchronousQueue$TransferStack.awaitFulfill (20 samples, 0.20%)</title><rect x="238.8" y="4499.0" width="2.4" height="15" fill="#5bee5b" rx="2" ry="2"/>
<text x="241.8" y="4510.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/LockSupport.parkNanos (19 samples, 0.19%)</title><rect x="238.9" y="4483.0" width="2.3" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="241.9" y="4494.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/misc/Unsafe.park (19 samples, 0.19%)</title><rect x="238.9" y="4467.0" width="2.3" height="15" fill="#4ee14e" rx="2" ry="2"/>
<text x="241.9" y="4478.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings$$anon$3.run (998 samples, 10.16%)</title><rect x="241.7" y="4547.0" width="119.8" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="244.7" y="4558.0">sbt/internal/ut..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings.sbt$internal$util$EvaluateSettings$$run0 (998 samples, 10.16%)</title><rect x="241.7" y="4531.0" width="119.8" height="15" fill="#4ade4a" rx="2" ry="2"/>
<text x="244.7" y="4542.0">sbt/internal/ut..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings$$Lambda$1593/1821867471.apply$mcV$sp (997 samples, 10.15%)</title><rect x="241.7" y="4515.0" width="119.7" height="15" fill="#69fb69" rx="2" ry="2"/>
<text x="244.7" y="4526.0">sbt/internal/ut..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings.$anonfun$submitEvaluate$1 (997 samples, 10.15%)</title><rect x="241.7" y="4499.0" width="119.7" height="15" fill="#4ee14e" rx="2" ry="2"/>
<text x="244.7" y="4510.0">sbt/internal/ut..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings$INode.evaluate (997 samples, 10.15%)</title><rect x="241.7" y="4483.0" width="119.7" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="244.7" y="4494.0">sbt/internal/ut..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings$BindNode.evaluate0 (54 samples, 0.55%)</title><rect x="241.9" y="4467.0" width="6.5" height="15" fill="#51e451" rx="2" ry="2"/>
<text x="244.9" y="4478.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings$$anon$1$$Lambda$1588/91273747.apply (54 samples, 0.55%)</title><rect x="241.9" y="4451.0" width="6.5" height="15" fill="#3fd43f" rx="2" ry="2"/>
<text x="244.9" y="4462.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings$$anon$1.$anonfun$apply$1 (54 samples, 0.55%)</title><rect x="241.9" y="4435.0" width="6.5" height="15" fill="#67f967" rx="2" ry="2"/>
<text x="244.9" y="4446.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$Bind$$Lambda$1573/432112141.apply (54 samples, 0.55%)</title><rect x="241.9" y="4419.0" width="6.5" height="15" fill="#6dfe6d" rx="2" ry="2"/>
<text x="244.9" y="4430.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$Bind.$anonfun$validateKeyReferenced$3 (54 samples, 0.55%)</title><rect x="241.9" y="4403.0" width="6.5" height="15" fill="#3acf3a" rx="2" ry="2"/>
<text x="244.9" y="4414.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$Bind$$Lambda$1494/2000851008.apply (50 samples, 0.51%)</title><rect x="242.3" y="4387.0" width="6.0" height="15" fill="#4de14d" rx="2" ry="2"/>
<text x="245.3" y="4398.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$Bind.$anonfun$mapReferenced$1 (50 samples, 0.51%)</title><rect x="242.3" y="4371.0" width="6.0" height="15" fill="#5bed5b" rx="2" ry="2"/>
<text x="245.3" y="4382.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$Bind$$Lambda$1499/1561668557.apply (50 samples, 0.51%)</title><rect x="242.3" y="4355.0" width="6.0" height="15" fill="#42d742" rx="2" ry="2"/>
<text x="245.3" y="4366.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$Bind.$anonfun$mapConstant$2 (50 samples, 0.51%)</title><rect x="242.3" y="4339.0" width="6.0" height="15" fill="#4ade4a" rx="2" ry="2"/>
<text x="245.3" y="4350.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$Bind$$Lambda$1494/2000851008.apply (50 samples, 0.51%)</title><rect x="242.3" y="4323.0" width="6.0" height="15" fill="#5ef05e" rx="2" ry="2"/>
<text x="245.3" y="4334.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$Bind.$anonfun$mapReferenced$1 (50 samples, 0.51%)</title><rect x="242.3" y="4307.0" width="6.0" height="15" fill="#33c933" rx="2" ry="2"/>
<text x="245.3" y="4318.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/ScopeFilter$TaskKeyAll$$Lambda$1095/972404515.apply (49 samples, 0.50%)</title><rect x="242.4" y="4291.0" width="5.9" height="15" fill="#44d844" rx="2" ry="2"/>
<text x="245.4" y="4302.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/ScopeFilter$TaskKeyAll.$anonfun$all$3 (49 samples, 0.50%)</title><rect x="242.4" y="4275.0" width="5.9" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="245.4" y="4286.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/ScopeFilter$$anon$2.apply (12 samples, 0.12%)</title><rect x="242.9" y="4259.0" width="1.4" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="245.9" y="4270.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractTraversable.filter (28 samples, 0.28%)</title><rect x="244.9" y="4259.0" width="3.4" height="15" fill="#42d742" rx="2" ry="2"/>
<text x="247.9" y="4270.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.filter$ (28 samples, 0.28%)</title><rect x="244.9" y="4243.0" width="3.4" height="15" fill="#5def5d" rx="2" ry="2"/>
<text x="247.9" y="4254.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.filter (28 samples, 0.28%)</title><rect x="244.9" y="4227.0" width="3.4" height="15" fill="#4ade4a" rx="2" ry="2"/>
<text x="247.9" y="4238.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractTraversable.filterImpl (28 samples, 0.28%)</title><rect x="244.9" y="4211.0" width="3.4" height="15" fill="#61f361" rx="2" ry="2"/>
<text x="247.9" y="4222.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.filterImpl$ (28 samples, 0.28%)</title><rect x="244.9" y="4195.0" width="3.4" height="15" fill="#5def5d" rx="2" ry="2"/>
<text x="247.9" y="4206.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.filterImpl (28 samples, 0.28%)</title><rect x="244.9" y="4179.0" width="3.4" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="247.9" y="4190.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractIterable.foreach (28 samples, 0.28%)</title><rect x="244.9" y="4163.0" width="3.4" height="15" fill="#57ea57" rx="2" ry="2"/>
<text x="247.9" y="4174.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IterableLike.foreach$ (28 samples, 0.28%)</title><rect x="244.9" y="4147.0" width="3.4" height="15" fill="#61f361" rx="2" ry="2"/>
<text x="247.9" y="4158.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IterableLike.foreach (28 samples, 0.28%)</title><rect x="244.9" y="4131.0" width="3.4" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="247.9" y="4142.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractIterator.foreach (28 samples, 0.28%)</title><rect x="244.9" y="4115.0" width="3.4" height="15" fill="#57ea57" rx="2" ry="2"/>
<text x="247.9" y="4126.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/Iterator.foreach$ (28 samples, 0.28%)</title><rect x="244.9" y="4099.0" width="3.4" height="15" fill="#46db46" rx="2" ry="2"/>
<text x="247.9" y="4110.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/Iterator.foreach (28 samples, 0.28%)</title><rect x="244.9" y="4083.0" width="3.4" height="15" fill="#4ee14e" rx="2" ry="2"/>
<text x="247.9" y="4094.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike$$Lambda$121/173791568.apply (27 samples, 0.27%)</title><rect x="245.0" y="4067.0" width="3.3" height="15" fill="#4fe34f" rx="2" ry="2"/>
<text x="248.0" y="4078.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.$anonfun$filterImpl$1 (27 samples, 0.27%)</title><rect x="245.0" y="4051.0" width="3.3" height="15" fill="#51e551" rx="2" ry="2"/>
<text x="248.0" y="4062.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/ScopeFilter$$anon$2$$Lambda$1646/236780624.apply (27 samples, 0.27%)</title><rect x="245.0" y="4035.0" width="3.3" height="15" fill="#45d945" rx="2" ry="2"/>
<text x="248.0" y="4046.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/ScopeFilter$$anon$2.$anonfun$apply$1$adapted (24 samples, 0.24%)</title><rect x="245.4" y="4019.0" width="2.9" height="15" fill="#65f765" rx="2" ry="2"/>
<text x="248.4" y="4030.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/ScopeFilter$$anon$2.$anonfun$apply$1 (24 samples, 0.24%)</title><rect x="245.4" y="4003.0" width="2.9" height="15" fill="#3acf3a" rx="2" ry="2"/>
<text x="248.4" y="4014.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/ScopeFilter$$anon$5$$Lambda$1643/688590592.apply (10 samples, 0.10%)</title><rect x="246.2" y="3987.0" width="1.2" height="15" fill="#49dd49" rx="2" ry="2"/>
<text x="249.2" y="3998.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings$MixedNode.evaluate0 (941 samples, 9.58%)</title><rect x="248.4" y="4467.0" width="113.0" height="15" fill="#49dd49" rx="2" ry="2"/>
<text x="251.4" y="4478.0">sbt/internal/u..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>bintray/BintrayPlugin$$$Lambda$3128/954207047.apply (156 samples, 1.59%)</title><rect x="248.8" y="4451.0" width="18.7" height="15" fill="#64f664" rx="2" ry="2"/>
<text x="251.8" y="4462.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>bintray/BintrayPlugin$.$anonfun$publishToBintray$1 (156 samples, 1.59%)</title><rect x="248.8" y="4435.0" width="18.7" height="15" fill="#35cb35" rx="2" ry="2"/>
<text x="251.8" y="4446.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>bintray/Bintray$.withRepo (152 samples, 1.55%)</title><rect x="248.8" y="4419.0" width="18.2" height="15" fill="#4de14d" rx="2" ry="2"/>
<text x="251.8" y="4430.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/Option.map (147 samples, 1.50%)</title><rect x="249.4" y="4403.0" width="17.6" height="15" fill="#5ff25f" rx="2" ry="2"/>
<text x="252.4" y="4414.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>bintray/Bintray$$$Lambda$3269/1773429676.apply (147 samples, 1.50%)</title><rect x="249.4" y="4387.0" width="17.6" height="15" fill="#43d843" rx="2" ry="2"/>
<text x="252.4" y="4398.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>bintray/Bintray$.$anonfun$withRepo$1 (147 samples, 1.50%)</title><rect x="249.4" y="4371.0" width="17.6" height="15" fill="#6bfc6b" rx="2" ry="2"/>
<text x="252.4" y="4382.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>bintray/Bintray$.cachedRepo (118 samples, 1.20%)</title><rect x="249.4" y="4355.0" width="14.1" height="15" fill="#6dfe6d" rx="2" ry="2"/>
<text x="252.4" y="4366.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/concurrent/TrieMap.getOrElseUpdate (117 samples, 1.19%)</title><rect x="249.5" y="4339.0" width="14.0" height="15" fill="#6dfe6d" rx="2" ry="2"/>
<text x="252.5" y="4350.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>bintray/Bintray$$$Lambda$3271/553877439.apply (115 samples, 1.17%)</title><rect x="249.5" y="4323.0" width="13.8" height="15" fill="#5ef05e" rx="2" ry="2"/>
<text x="252.5" y="4334.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>bintray/Bintray$.$anonfun$cachedRepo$1 (115 samples, 1.17%)</title><rect x="249.5" y="4307.0" width="13.8" height="15" fill="#46db46" rx="2" ry="2"/>
<text x="252.5" y="4318.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>bintray/BintrayRepo.&lt;init&gt; (115 samples, 1.17%)</title><rect x="249.5" y="4291.0" width="13.8" height="15" fill="#61f361" rx="2" ry="2"/>
<text x="252.5" y="4302.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dispatch/Http$.$lessinit$greater$default$1 (21 samples, 0.21%)</title><rect x="249.5" y="4275.0" width="2.5" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="252.5" y="4286.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dispatch/InternalDefaults$.client (21 samples, 0.21%)</title><rect x="249.5" y="4259.0" width="2.5" height="15" fill="#56e956" rx="2" ry="2"/>
<text x="252.5" y="4270.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ning/http/client/AsyncHttpClient.&lt;init&gt; (21 samples, 0.21%)</title><rect x="249.5" y="4243.0" width="2.5" height="15" fill="#52e552" rx="2" ry="2"/>
<text x="252.5" y="4254.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ning/http/client/AsyncHttpClient.loadDefaultProvider (21 samples, 0.21%)</title><rect x="249.5" y="4227.0" width="2.5" height="15" fill="#41d541" rx="2" ry="2"/>
<text x="252.5" y="4238.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/reflect/Constructor.newInstance (20 samples, 0.20%)</title><rect x="249.6" y="4211.0" width="2.4" height="15" fill="#3ed33e" rx="2" ry="2"/>
<text x="252.6" y="4222.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/DelegatingConstructorAccessorImpl.newInstance (20 samples, 0.20%)</title><rect x="249.6" y="4195.0" width="2.4" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="252.6" y="4206.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/NativeConstructorAccessorImpl.newInstance (20 samples, 0.20%)</title><rect x="249.6" y="4179.0" width="2.4" height="15" fill="#50e450" rx="2" ry="2"/>
<text x="252.6" y="4190.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/NativeConstructorAccessorImpl.newInstance0 (20 samples, 0.20%)</title><rect x="249.6" y="4163.0" width="2.4" height="15" fill="#5ef15e" rx="2" ry="2"/>
<text x="252.6" y="4174.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ning/http/client/providers/netty/NettyAsyncHttpProvider.&lt;init&gt; (20 samples, 0.20%)</title><rect x="249.6" y="4147.0" width="2.4" height="15" fill="#56e956" rx="2" ry="2"/>
<text x="252.6" y="4158.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ning/http/client/providers/netty/channel/ChannelManager.&lt;init&gt; (18 samples, 0.18%)</title><rect x="249.7" y="4131.0" width="2.2" height="15" fill="#6dfe6d" rx="2" ry="2"/>
<text x="252.7" y="4142.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jboss/netty/channel/socket/nio/NioClientSocketChannelFactory.&lt;init&gt; (18 samples, 0.18%)</title><rect x="249.7" y="4115.0" width="2.2" height="15" fill="#61f361" rx="2" ry="2"/>
<text x="252.7" y="4126.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jboss/netty/channel/socket/nio/NioClientSocketChannelFactory.&lt;init&gt; (18 samples, 0.18%)</title><rect x="249.7" y="4099.0" width="2.2" height="15" fill="#53e653" rx="2" ry="2"/>
<text x="252.7" y="4110.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jboss/netty/channel/socket/nio/NioWorkerPool.&lt;init&gt; (18 samples, 0.18%)</title><rect x="249.7" y="4083.0" width="2.2" height="15" fill="#3ad03a" rx="2" ry="2"/>
<text x="252.7" y="4094.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jboss/netty/channel/socket/nio/NioWorkerPool.&lt;init&gt; (18 samples, 0.18%)</title><rect x="249.7" y="4067.0" width="2.2" height="15" fill="#38cd38" rx="2" ry="2"/>
<text x="252.7" y="4078.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jboss/netty/channel/socket/nio/AbstractNioWorkerPool.init (18 samples, 0.18%)</title><rect x="249.7" y="4051.0" width="2.2" height="15" fill="#51e451" rx="2" ry="2"/>
<text x="252.7" y="4062.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jboss/netty/channel/socket/nio/NioWorkerPool.newWorker (17 samples, 0.17%)</title><rect x="249.8" y="4035.0" width="2.1" height="15" fill="#40d540" rx="2" ry="2"/>
<text x="252.8" y="4046.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jboss/netty/channel/socket/nio/NioWorkerPool.newWorker (17 samples, 0.17%)</title><rect x="249.8" y="4019.0" width="2.1" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="252.8" y="4030.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jboss/netty/channel/socket/nio/NioWorker.&lt;init&gt; (17 samples, 0.17%)</title><rect x="249.8" y="4003.0" width="2.1" height="15" fill="#46da46" rx="2" ry="2"/>
<text x="252.8" y="4014.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jboss/netty/channel/socket/nio/AbstractNioWorker.&lt;init&gt; (17 samples, 0.17%)</title><rect x="249.8" y="3987.0" width="2.1" height="15" fill="#5aed5a" rx="2" ry="2"/>
<text x="252.8" y="3998.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jboss/netty/channel/socket/nio/AbstractNioSelector.&lt;init&gt; (12 samples, 0.12%)</title><rect x="249.8" y="3971.0" width="1.5" height="15" fill="#36cb36" rx="2" ry="2"/>
<text x="252.8" y="3982.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jboss/netty/channel/socket/nio/AbstractNioSelector.openSelector (11 samples, 0.11%)</title><rect x="250.0" y="3955.0" width="1.3" height="15" fill="#64f664" rx="2" ry="2"/>
<text x="253.0" y="3966.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dispatch/Http$.&lt;clinit&gt; (92 samples, 0.94%)</title><rect x="252.0" y="4275.0" width="11.1" height="15" fill="#66f866" rx="2" ry="2"/>
<text x="255.0" y="4286.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dispatch/Http$.&lt;init&gt; (92 samples, 0.94%)</title><rect x="252.0" y="4259.0" width="11.1" height="15" fill="#45da45" rx="2" ry="2"/>
<text x="255.0" y="4270.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dispatch/InternalDefaults$.client (89 samples, 0.91%)</title><rect x="252.1" y="4243.0" width="10.7" height="15" fill="#3acf3a" rx="2" ry="2"/>
<text x="255.1" y="4254.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ning/http/client/AsyncHttpClient.&lt;clinit&gt; (19 samples, 0.19%)</title><rect x="252.1" y="4227.0" width="2.3" height="15" fill="#5ef05e" rx="2" ry="2"/>
<text x="255.1" y="4238.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/slf4j/LoggerFactory.getLogger (14 samples, 0.14%)</title><rect x="252.7" y="4211.0" width="1.7" height="15" fill="#59ec59" rx="2" ry="2"/>
<text x="255.7" y="4222.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/slf4j/LoggerFactory.getLogger (14 samples, 0.14%)</title><rect x="252.7" y="4195.0" width="1.7" height="15" fill="#4ade4a" rx="2" ry="2"/>
<text x="255.7" y="4206.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/logging/slf4j/Log4jLoggerFactory.getLogger (12 samples, 0.12%)</title><rect x="252.7" y="4179.0" width="1.5" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="255.7" y="4190.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/logging/log4j/spi/AbstractLoggerAdapter.getLogger (12 samples, 0.12%)</title><rect x="252.7" y="4163.0" width="1.5" height="15" fill="#53e653" rx="2" ry="2"/>
<text x="255.7" y="4174.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/logging/slf4j/Log4jLoggerFactory.newLogger (12 samples, 0.12%)</title><rect x="252.7" y="4147.0" width="1.5" height="15" fill="#4fe34f" rx="2" ry="2"/>
<text x="255.7" y="4158.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/logging/slf4j/Log4jLoggerFactory.newLogger (12 samples, 0.12%)</title><rect x="252.7" y="4131.0" width="1.5" height="15" fill="#56e956" rx="2" ry="2"/>
<text x="255.7" y="4142.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ning/http/client/AsyncHttpClient.&lt;init&gt; (62 samples, 0.63%)</title><rect x="254.4" y="4227.0" width="7.5" height="15" fill="#69fa69" rx="2" ry="2"/>
<text x="257.4" y="4238.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ning/http/client/AsyncHttpClient.loadDefaultProvider (62 samples, 0.63%)</title><rect x="254.4" y="4211.0" width="7.5" height="15" fill="#56e956" rx="2" ry="2"/>
<text x="257.4" y="4222.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/reflect/Constructor.newInstance (59 samples, 0.60%)</title><rect x="254.8" y="4195.0" width="7.1" height="15" fill="#41d641" rx="2" ry="2"/>
<text x="257.8" y="4206.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/DelegatingConstructorAccessorImpl.newInstance (59 samples, 0.60%)</title><rect x="254.8" y="4179.0" width="7.1" height="15" fill="#34ca34" rx="2" ry="2"/>
<text x="257.8" y="4190.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/NativeConstructorAccessorImpl.newInstance (59 samples, 0.60%)</title><rect x="254.8" y="4163.0" width="7.1" height="15" fill="#57ea57" rx="2" ry="2"/>
<text x="257.8" y="4174.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/NativeConstructorAccessorImpl.newInstance0 (59 samples, 0.60%)</title><rect x="254.8" y="4147.0" width="7.1" height="15" fill="#46da46" rx="2" ry="2"/>
<text x="257.8" y="4158.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ning/http/client/providers/netty/NettyAsyncHttpProvider.&lt;init&gt; (59 samples, 0.60%)</title><rect x="254.8" y="4131.0" width="7.1" height="15" fill="#33c933" rx="2" ry="2"/>
<text x="257.8" y="4142.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ning/http/client/providers/netty/channel/ChannelManager.&lt;init&gt; (37 samples, 0.38%)</title><rect x="255.4" y="4115.0" width="4.4" height="15" fill="#3cd13c" rx="2" ry="2"/>
<text x="258.4" y="4126.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jboss/netty/channel/socket/nio/NioClientSocketChannelFactory.&lt;init&gt; (23 samples, 0.23%)</title><rect x="257.0" y="4099.0" width="2.8" height="15" fill="#56e956" rx="2" ry="2"/>
<text x="260.0" y="4110.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jboss/netty/channel/socket/nio/NioClientSocketChannelFactory.&lt;init&gt; (23 samples, 0.23%)</title><rect x="257.0" y="4083.0" width="2.8" height="15" fill="#4bdf4b" rx="2" ry="2"/>
<text x="260.0" y="4094.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jboss/netty/channel/socket/nio/NioWorkerPool.&lt;init&gt; (16 samples, 0.16%)</title><rect x="257.9" y="4067.0" width="1.9" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="260.9" y="4078.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jboss/netty/channel/socket/nio/NioWorkerPool.&lt;init&gt; (16 samples, 0.16%)</title><rect x="257.9" y="4051.0" width="1.9" height="15" fill="#5df05d" rx="2" ry="2"/>
<text x="260.9" y="4062.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jboss/netty/channel/socket/nio/AbstractNioWorkerPool.init (16 samples, 0.16%)</title><rect x="257.9" y="4035.0" width="1.9" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="260.9" y="4046.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jboss/netty/channel/socket/nio/NioWorkerPool.newWorker (16 samples, 0.16%)</title><rect x="257.9" y="4019.0" width="1.9" height="15" fill="#47dc47" rx="2" ry="2"/>
<text x="260.9" y="4030.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jboss/netty/channel/socket/nio/NioWorkerPool.newWorker (16 samples, 0.16%)</title><rect x="257.9" y="4003.0" width="1.9" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="260.9" y="4014.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jboss/netty/channel/socket/nio/NioWorker.&lt;init&gt; (12 samples, 0.12%)</title><rect x="258.4" y="3987.0" width="1.4" height="15" fill="#37cc37" rx="2" ry="2"/>
<text x="261.4" y="3998.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jboss/netty/channel/socket/nio/AbstractNioWorker.&lt;init&gt; (12 samples, 0.12%)</title><rect x="258.4" y="3971.0" width="1.4" height="15" fill="#54e854" rx="2" ry="2"/>
<text x="261.4" y="3982.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jboss/netty/channel/socket/nio/AbstractNioSelector.&lt;init&gt; (10 samples, 0.10%)</title><rect x="258.5" y="3955.0" width="1.2" height="15" fill="#4bde4b" rx="2" ry="2"/>
<text x="261.5" y="3966.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jboss/netty/channel/socket/nio/AbstractNioSelector.openSelector (10 samples, 0.10%)</title><rect x="258.5" y="3939.0" width="1.2" height="15" fill="#38ce38" rx="2" ry="2"/>
<text x="261.5" y="3950.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.loadClass (10 samples, 0.10%)</title><rect x="260.7" y="4115.0" width="1.2" height="15" fill="#45d945" rx="2" ry="2"/>
<text x="263.7" y="4126.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.loadClass (10 samples, 0.10%)</title><rect x="260.7" y="4099.0" width="1.2" height="15" fill="#5bed5b" rx="2" ry="2"/>
<text x="263.7" y="4110.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.findClass (10 samples, 0.10%)</title><rect x="260.7" y="4083.0" width="1.2" height="15" fill="#53e753" rx="2" ry="2"/>
<text x="263.7" y="4094.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/security/AccessController.doPrivileged (10 samples, 0.10%)</title><rect x="260.7" y="4067.0" width="1.2" height="15" fill="#66f766" rx="2" ry="2"/>
<text x="263.7" y="4078.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader$1.run (10 samples, 0.10%)</title><rect x="260.7" y="4051.0" width="1.2" height="15" fill="#51e551" rx="2" ry="2"/>
<text x="263.7" y="4062.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader$1.run (10 samples, 0.10%)</title><rect x="260.7" y="4035.0" width="1.2" height="15" fill="#6cfd6c" rx="2" ry="2"/>
<text x="263.7" y="4046.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.access$100 (10 samples, 0.10%)</title><rect x="260.7" y="4019.0" width="1.2" height="15" fill="#35cb35" rx="2" ry="2"/>
<text x="263.7" y="4030.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.defineClass (10 samples, 0.10%)</title><rect x="260.7" y="4003.0" width="1.2" height="15" fill="#4ee24e" rx="2" ry="2"/>
<text x="263.7" y="4014.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>bintray/BintrayPlugin$$$Lambda$3258/1924197344.apply (29 samples, 0.30%)</title><rect x="263.5" y="4355.0" width="3.5" height="15" fill="#38ce38" rx="2" ry="2"/>
<text x="266.5" y="4366.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>bintray/BintrayPlugin$.$anonfun$publishToBintray$2 (29 samples, 0.30%)</title><rect x="263.5" y="4339.0" width="3.5" height="15" fill="#6dfe6d" rx="2" ry="2"/>
<text x="266.5" y="4350.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>bintray/BintrayRepo.buildPublishResolver (29 samples, 0.30%)</title><rect x="263.5" y="4323.0" width="3.5" height="15" fill="#52e652" rx="2" ry="2"/>
<text x="266.5" y="4334.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>bintray/Bintray$.publishTo (12 samples, 0.12%)</title><rect x="263.5" y="4307.0" width="1.5" height="15" fill="#5bee5b" rx="2" ry="2"/>
<text x="266.5" y="4318.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>bintray/RawRepository$.apply (9 samples, 0.09%)</title><rect x="263.9" y="4291.0" width="1.1" height="15" fill="#39ce39" rx="2" ry="2"/>
<text x="266.9" y="4302.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>bintray/RawRepository$.reflMethod$Method1 (9 samples, 0.09%)</title><rect x="263.9" y="4275.0" width="1.1" height="15" fill="#4ee24e" rx="2" ry="2"/>
<text x="266.9" y="4286.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>bintray/BintrayRepo.repo (14 samples, 0.14%)</title><rect x="265.0" y="4307.0" width="1.7" height="15" fill="#35cb35" rx="2" ry="2"/>
<text x="268.0" y="4318.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>bintray/BintrayRepo.repo$lzycompute (14 samples, 0.14%)</title><rect x="265.0" y="4291.0" width="1.7" height="15" fill="#4ce04c" rx="2" ry="2"/>
<text x="268.0" y="4302.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings$$Lambda$1582/1629032994.apply (62 samples, 0.63%)</title><rect x="270.6" y="4451.0" width="7.5" height="15" fill="#69fa69" rx="2" ry="2"/>
<text x="273.6" y="4462.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings.$anonfun$constant$1 (62 samples, 0.63%)</title><rect x="270.6" y="4435.0" width="7.5" height="15" fill="#4ce04c" rx="2" ry="2"/>
<text x="273.6" y="4446.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/typesafe/sbt/SbtGit$$$Lambda$3095/338242929.apply (22 samples, 0.22%)</title><rect x="271.8" y="4419.0" width="2.7" height="15" fill="#65f765" rx="2" ry="2"/>
<text x="274.8" y="4430.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/typesafe/sbt/SbtGit$.$anonfun$projectSettings$1 (22 samples, 0.22%)</title><rect x="271.8" y="4403.0" width="2.7" height="15" fill="#6dfe6d" rx="2" ry="2"/>
<text x="274.8" y="4414.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/typesafe/sbt/SbtGit$GitCommand$.&lt;clinit&gt; (21 samples, 0.21%)</title><rect x="271.8" y="4387.0" width="2.5" height="15" fill="#52e652" rx="2" ry="2"/>
<text x="274.8" y="4398.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/typesafe/sbt/SbtGit$GitCommand$.&lt;init&gt; (21 samples, 0.21%)</title><rect x="271.8" y="4371.0" width="2.5" height="15" fill="#39ce39" rx="2" ry="2"/>
<text x="274.8" y="4382.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/package$.complete (20 samples, 0.20%)</title><rect x="271.9" y="4355.0" width="2.4" height="15" fill="#64f664" rx="2" ry="2"/>
<text x="274.9" y="4366.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/package$.complete$lzycompute$1 (20 samples, 0.20%)</title><rect x="271.9" y="4339.0" width="2.4" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="274.9" y="4350.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Import$complete$.&lt;init&gt; (17 samples, 0.17%)</title><rect x="272.3" y="4323.0" width="2.0" height="15" fill="#59ec59" rx="2" ry="2"/>
<text x="275.3" y="4334.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$Value$$Lambda$1498/1094446968.apply (29 samples, 0.30%)</title><rect x="274.6" y="4419.0" width="3.5" height="15" fill="#59ec59" rx="2" ry="2"/>
<text x="277.6" y="4430.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$Value.$anonfun$apply$3 (29 samples, 0.30%)</title><rect x="274.6" y="4403.0" width="3.5" height="15" fill="#6cfd6c" rx="2" ry="2"/>
<text x="277.6" y="4414.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings$INode.setValue (64 samples, 0.65%)</title><rect x="278.1" y="4451.0" width="7.7" height="15" fill="#4de14d" rx="2" ry="2"/>
<text x="281.1" y="4462.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/mutable/ListBuffer.foreach (58 samples, 0.59%)</title><rect x="278.8" y="4435.0" width="7.0" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="281.8" y="4446.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/generic/TraversableForwarder.foreach$ (58 samples, 0.59%)</title><rect x="278.8" y="4419.0" width="7.0" height="15" fill="#3acf3a" rx="2" ry="2"/>
<text x="281.8" y="4430.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/generic/TraversableForwarder.foreach (58 samples, 0.59%)</title><rect x="278.8" y="4403.0" width="7.0" height="15" fill="#42d742" rx="2" ry="2"/>
<text x="281.8" y="4414.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/List.foreach (57 samples, 0.58%)</title><rect x="278.8" y="4387.0" width="6.8" height="15" fill="#6cfd6c" rx="2" ry="2"/>
<text x="281.8" y="4398.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings$INode$$Lambda$1598/565279571.apply (57 samples, 0.58%)</title><rect x="278.8" y="4371.0" width="6.8" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="281.8" y="4382.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings$INode.$anonfun$setValue$2$adapted (55 samples, 0.56%)</title><rect x="279.0" y="4355.0" width="6.6" height="15" fill="#65f665" rx="2" ry="2"/>
<text x="282.0" y="4366.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings$INode.$anonfun$setValue$2 (55 samples, 0.56%)</title><rect x="279.0" y="4339.0" width="6.6" height="15" fill="#35cb35" rx="2" ry="2"/>
<text x="282.0" y="4350.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings$INode.unblocked (55 samples, 0.56%)</title><rect x="279.0" y="4323.0" width="6.6" height="15" fill="#69fa69" rx="2" ry="2"/>
<text x="282.0" y="4334.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings$INode.schedule (46 samples, 0.47%)</title><rect x="280.1" y="4307.0" width="5.5" height="15" fill="#6afc6a" rx="2" ry="2"/>
<text x="283.1" y="4318.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings.sbt$internal$util$EvaluateSettings$$submitEvaluate (45 samples, 0.46%)</title><rect x="280.2" y="4291.0" width="5.4" height="15" fill="#4ee14e" rx="2" ry="2"/>
<text x="283.2" y="4302.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings.submit (45 samples, 0.46%)</title><rect x="280.2" y="4275.0" width="5.4" height="15" fill="#42d742" rx="2" ry="2"/>
<text x="283.2" y="4286.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ThreadPoolExecutor.execute (43 samples, 0.44%)</title><rect x="280.3" y="4259.0" width="5.2" height="15" fill="#4de14d" rx="2" ry="2"/>
<text x="283.3" y="4270.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/LinkedBlockingQueue.offer (42 samples, 0.43%)</title><rect x="280.3" y="4243.0" width="5.1" height="15" fill="#4bdf4b" rx="2" ry="2"/>
<text x="283.3" y="4254.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/ReentrantLock.lock (29 samples, 0.30%)</title><rect x="281.2" y="4227.0" width="3.5" height="15" fill="#65f765" rx="2" ry="2"/>
<text x="284.2" y="4238.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/ReentrantLock$NonfairSync.lock (29 samples, 0.30%)</title><rect x="281.2" y="4211.0" width="3.5" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="284.2" y="4222.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/AbstractQueuedSynchronizer.acquire (29 samples, 0.30%)</title><rect x="281.2" y="4195.0" width="3.5" height="15" fill="#49dd49" rx="2" ry="2"/>
<text x="284.2" y="4206.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/AbstractQueuedSynchronizer.acquireQueued (29 samples, 0.30%)</title><rect x="281.2" y="4179.0" width="3.5" height="15" fill="#5ff15f" rx="2" ry="2"/>
<text x="284.2" y="4190.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/AbstractQueuedSynchronizer.parkAndCheckInterrupt (29 samples, 0.30%)</title><rect x="281.2" y="4163.0" width="3.5" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="284.2" y="4174.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/LockSupport.park (29 samples, 0.30%)</title><rect x="281.2" y="4147.0" width="3.5" height="15" fill="#5aed5a" rx="2" ry="2"/>
<text x="284.2" y="4158.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/misc/Unsafe.park (29 samples, 0.30%)</title><rect x="281.2" y="4131.0" width="3.5" height="15" fill="#5def5d" rx="2" ry="2"/>
<text x="284.2" y="4142.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/Function1$$Lambda$596/566698125.apply (613 samples, 6.24%)</title><rect x="286.6" y="4451.0" width="73.6" height="15" fill="#5bed5b" rx="2" ry="2"/>
<text x="289.6" y="4462.0">scala/Fu..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/Function1.$anonfun$compose$1 (613 samples, 6.24%)</title><rect x="286.6" y="4435.0" width="73.6" height="15" fill="#44d944" rx="2" ry="2"/>
<text x="289.6" y="4446.0">scala/Fu..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>bintray/BintrayPlugin$$$Lambda$3130/1113284578.apply (11 samples, 0.11%)</title><rect x="287.6" y="4419.0" width="1.3" height="15" fill="#3cd13c" rx="2" ry="2"/>
<text x="290.6" y="4430.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>bintray/BintrayPlugin$.$anonfun$bintrayPublishSettings$8 (11 samples, 0.11%)</title><rect x="287.6" y="4403.0" width="1.3" height="15" fill="#5bed5b" rx="2" ry="2"/>
<text x="290.6" y="4414.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>bintray/Bintray$.ensuredCredentials (10 samples, 0.10%)</title><rect x="287.7" y="4387.0" width="1.2" height="15" fill="#69fa69" rx="2" ry="2"/>
<text x="290.7" y="4398.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/lucidchart/sbt/scalafmt/ScalafmtCorePlugin$$$Lambda$2728/685605293.apply (22 samples, 0.22%)</title><rect x="289.6" y="4419.0" width="2.6" height="15" fill="#3bd13b" rx="2" ry="2"/>
<text x="292.6" y="4430.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/lucidchart/sbt/scalafmt/ScalafmtCorePlugin$.$anonfun$buildSettings$3 (22 samples, 0.22%)</title><rect x="289.6" y="4403.0" width="2.6" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="292.6" y="4414.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/google/common/cache/CacheBuilder.build (19 samples, 0.19%)</title><rect x="289.7" y="4387.0" width="2.3" height="15" fill="#3cd13c" rx="2" ry="2"/>
<text x="292.7" y="4398.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/google/common/cache/LocalCache$LocalLoadingCache.&lt;init&gt; (18 samples, 0.18%)</title><rect x="289.7" y="4371.0" width="2.2" height="15" fill="#3cd13c" rx="2" ry="2"/>
<text x="292.7" y="4382.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/google/common/cache/LocalCache.&lt;init&gt; (12 samples, 0.12%)</title><rect x="289.8" y="4355.0" width="1.5" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="292.8" y="4366.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/typesafe/sbt/SbtGit$$$Lambda$3214/1645241964.apply (151 samples, 1.54%)</title><rect x="292.5" y="4419.0" width="18.1" height="15" fill="#5aec5a" rx="2" ry="2"/>
<text x="295.5" y="4430.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/typesafe/sbt/SbtGit$.$anonfun$buildSettings$1 (151 samples, 1.54%)</title><rect x="292.5" y="4403.0" width="18.1" height="15" fill="#5aed5a" rx="2" ry="2"/>
<text x="295.5" y="4414.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/typesafe/sbt/git/DefaultReadableGit.&lt;init&gt; (150 samples, 1.53%)</title><rect x="292.6" y="4387.0" width="18.0" height="15" fill="#51e451" rx="2" ry="2"/>
<text x="295.6" y="4398.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/typesafe/sbt/git/JGit$.apply (150 samples, 1.53%)</title><rect x="292.6" y="4371.0" width="18.0" height="15" fill="#45d945" rx="2" ry="2"/>
<text x="295.6" y="4382.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.loadClass (87 samples, 0.89%)</title><rect x="293.0" y="4355.0" width="10.4" height="15" fill="#4ee14e" rx="2" ry="2"/>
<text x="296.0" y="4366.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.loadClass (87 samples, 0.89%)</title><rect x="293.0" y="4339.0" width="10.4" height="15" fill="#45d945" rx="2" ry="2"/>
<text x="296.0" y="4350.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.findClass (87 samples, 0.89%)</title><rect x="293.0" y="4323.0" width="10.4" height="15" fill="#37cd37" rx="2" ry="2"/>
<text x="296.0" y="4334.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/security/AccessController.doPrivileged (87 samples, 0.89%)</title><rect x="293.0" y="4307.0" width="10.4" height="15" fill="#66f766" rx="2" ry="2"/>
<text x="296.0" y="4318.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader$1.run (87 samples, 0.89%)</title><rect x="293.0" y="4291.0" width="10.4" height="15" fill="#4ce04c" rx="2" ry="2"/>
<text x="296.0" y="4302.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader$1.run (87 samples, 0.89%)</title><rect x="293.0" y="4275.0" width="10.4" height="15" fill="#3ad03a" rx="2" ry="2"/>
<text x="296.0" y="4286.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.access$100 (87 samples, 0.89%)</title><rect x="293.0" y="4259.0" width="10.4" height="15" fill="#59eb59" rx="2" ry="2"/>
<text x="296.0" y="4270.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.defineClass (87 samples, 0.89%)</title><rect x="293.0" y="4243.0" width="10.4" height="15" fill="#6afb6a" rx="2" ry="2"/>
<text x="296.0" y="4254.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/misc/Resource.getByteBuffer (73 samples, 0.74%)</title><rect x="293.7" y="4227.0" width="8.7" height="15" fill="#66f866" rx="2" ry="2"/>
<text x="296.7" y="4238.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/misc/Resource.cachedInputStream (73 samples, 0.74%)</title><rect x="293.7" y="4211.0" width="8.7" height="15" fill="#59ec59" rx="2" ry="2"/>
<text x="296.7" y="4222.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/misc/URLClassPath$JarLoader$2.getInputStream (73 samples, 0.74%)</title><rect x="293.7" y="4195.0" width="8.7" height="15" fill="#3ed33e" rx="2" ry="2"/>
<text x="296.7" y="4206.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/jar/JarFile.getInputStream (73 samples, 0.74%)</title><rect x="293.7" y="4179.0" width="8.7" height="15" fill="#3cd13c" rx="2" ry="2"/>
<text x="296.7" y="4190.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/jar/JarFile.initializeVerifier (72 samples, 0.73%)</title><rect x="293.7" y="4163.0" width="8.6" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="296.7" y="4174.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/jar/JarVerifier.update (71 samples, 0.72%)</title><rect x="293.8" y="4147.0" width="8.5" height="15" fill="#3bd13b" rx="2" ry="2"/>
<text x="296.8" y="4158.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/jar/JarVerifier.processEntry (71 samples, 0.72%)</title><rect x="293.8" y="4131.0" width="8.5" height="15" fill="#38cd38" rx="2" ry="2"/>
<text x="296.8" y="4142.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/security/util/SignatureFileVerifier.&lt;init&gt; (35 samples, 0.36%)</title><rect x="294.2" y="4115.0" width="4.2" height="15" fill="#47db47" rx="2" ry="2"/>
<text x="297.2" y="4126.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/security/pkcs/PKCS7.&lt;init&gt; (34 samples, 0.35%)</title><rect x="294.3" y="4099.0" width="4.1" height="15" fill="#53e653" rx="2" ry="2"/>
<text x="297.3" y="4110.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/security/pkcs/PKCS7.parse (33 samples, 0.34%)</title><rect x="294.3" y="4083.0" width="3.9" height="15" fill="#6bfd6b" rx="2" ry="2"/>
<text x="297.3" y="4094.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/security/pkcs/PKCS7.parse (33 samples, 0.34%)</title><rect x="294.3" y="4067.0" width="3.9" height="15" fill="#40d540" rx="2" ry="2"/>
<text x="297.3" y="4078.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/security/pkcs/PKCS7.parseSignedData (29 samples, 0.30%)</title><rect x="294.8" y="4051.0" width="3.4" height="15" fill="#33c933" rx="2" ry="2"/>
<text x="297.8" y="4062.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/security/cert/CertificateFactory.generateCertificate (23 samples, 0.23%)</title><rect x="295.0" y="4035.0" width="2.8" height="15" fill="#33c933" rx="2" ry="2"/>
<text x="298.0" y="4046.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/security/provider/X509Factory.engineGenerateCertificate (23 samples, 0.23%)</title><rect x="295.0" y="4019.0" width="2.8" height="15" fill="#67f867" rx="2" ry="2"/>
<text x="298.0" y="4030.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/security/x509/X509CertImpl.&lt;init&gt; (21 samples, 0.21%)</title><rect x="295.2" y="4003.0" width="2.6" height="15" fill="#67f867" rx="2" ry="2"/>
<text x="298.2" y="4014.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/security/x509/X509CertImpl.parse (21 samples, 0.21%)</title><rect x="295.2" y="3987.0" width="2.6" height="15" fill="#68fa68" rx="2" ry="2"/>
<text x="298.2" y="3998.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/security/x509/X509CertInfo.&lt;init&gt; (20 samples, 0.20%)</title><rect x="295.4" y="3971.0" width="2.4" height="15" fill="#52e652" rx="2" ry="2"/>
<text x="298.4" y="3982.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/security/x509/X509CertInfo.parse (19 samples, 0.19%)</title><rect x="295.5" y="3955.0" width="2.3" height="15" fill="#3cd13c" rx="2" ry="2"/>
<text x="298.5" y="3966.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/security/x509/CertificateExtensions.&lt;init&gt; (9 samples, 0.09%)</title><rect x="296.0" y="3939.0" width="1.0" height="15" fill="#4fe24f" rx="2" ry="2"/>
<text x="299.0" y="3950.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/security/x509/CertificateExtensions.init (9 samples, 0.09%)</title><rect x="296.0" y="3923.0" width="1.0" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="299.0" y="3934.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/security/util/SignatureFileVerifier.process (33 samples, 0.34%)</title><rect x="298.4" y="4115.0" width="3.9" height="15" fill="#6afb6a" rx="2" ry="2"/>
<text x="301.4" y="4126.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/security/util/SignatureFileVerifier.processImpl (33 samples, 0.34%)</title><rect x="298.4" y="4099.0" width="3.9" height="15" fill="#54e854" rx="2" ry="2"/>
<text x="301.4" y="4110.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/security/pkcs/PKCS7.verify (19 samples, 0.19%)</title><rect x="299.2" y="4083.0" width="2.3" height="15" fill="#52e652" rx="2" ry="2"/>
<text x="302.2" y="4094.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/security/pkcs/PKCS7.verify (19 samples, 0.19%)</title><rect x="299.2" y="4067.0" width="2.3" height="15" fill="#4ee14e" rx="2" ry="2"/>
<text x="302.2" y="4078.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/security/pkcs/SignerInfo.verify (19 samples, 0.19%)</title><rect x="299.2" y="4051.0" width="2.3" height="15" fill="#5ff15f" rx="2" ry="2"/>
<text x="302.2" y="4062.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/security/pkcs/SignerInfo.getTimestamp (16 samples, 0.16%)</title><rect x="299.6" y="4035.0" width="1.9" height="15" fill="#45da45" rx="2" ry="2"/>
<text x="302.6" y="4046.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/security/pkcs/PKCS7.verify (12 samples, 0.12%)</title><rect x="299.8" y="4019.0" width="1.4" height="15" fill="#3cd13c" rx="2" ry="2"/>
<text x="302.8" y="4030.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/security/pkcs/PKCS7.verify (12 samples, 0.12%)</title><rect x="299.8" y="4003.0" width="1.4" height="15" fill="#50e450" rx="2" ry="2"/>
<text x="302.8" y="4014.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/security/pkcs/SignerInfo.verify (12 samples, 0.12%)</title><rect x="299.8" y="3987.0" width="1.4" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="302.8" y="3998.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/lib/BaseRepositoryBuilder.findGitDir (26 samples, 0.26%)</title><rect x="303.4" y="4355.0" width="3.1" height="15" fill="#63f563" rx="2" ry="2"/>
<text x="306.4" y="4366.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/lib/BaseRepositoryBuilder.safeFS (20 samples, 0.20%)</title><rect x="303.6" y="4339.0" width="2.5" height="15" fill="#6cfd6c" rx="2" ry="2"/>
<text x="306.6" y="4350.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/util/FS.&lt;clinit&gt; (16 samples, 0.16%)</title><rect x="304.1" y="4323.0" width="2.0" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="307.1" y="4334.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/util/FS.detect (16 samples, 0.16%)</title><rect x="304.1" y="4307.0" width="2.0" height="15" fill="#44d844" rx="2" ry="2"/>
<text x="307.1" y="4318.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/util/FS.detect (16 samples, 0.16%)</title><rect x="304.1" y="4291.0" width="2.0" height="15" fill="#4de14d" rx="2" ry="2"/>
<text x="307.1" y="4302.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/util/FS$FSFactory.detect (15 samples, 0.15%)</title><rect x="304.2" y="4275.0" width="1.9" height="15" fill="#67f867" rx="2" ry="2"/>
<text x="307.2" y="4286.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/util/SystemReader.&lt;clinit&gt; (12 samples, 0.12%)</title><rect x="304.6" y="4259.0" width="1.5" height="15" fill="#64f664" rx="2" ry="2"/>
<text x="307.6" y="4270.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/util/SystemReader.init (10 samples, 0.10%)</title><rect x="304.8" y="4243.0" width="1.3" height="15" fill="#41d541" rx="2" ry="2"/>
<text x="307.8" y="4254.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/util/SystemReader.setPlatformChecker (10 samples, 0.10%)</title><rect x="304.8" y="4227.0" width="1.3" height="15" fill="#5ef05e" rx="2" ry="2"/>
<text x="307.8" y="4238.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/storage/file/FileRepositoryBuilder.build (34 samples, 0.35%)</title><rect x="306.5" y="4355.0" width="4.1" height="15" fill="#64f664" rx="2" ry="2"/>
<text x="309.5" y="4366.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.loadClass (11 samples, 0.11%)</title><rect x="306.5" y="4339.0" width="1.4" height="15" fill="#4bdf4b" rx="2" ry="2"/>
<text x="309.5" y="4350.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.loadClass (11 samples, 0.11%)</title><rect x="306.5" y="4323.0" width="1.4" height="15" fill="#5cee5c" rx="2" ry="2"/>
<text x="309.5" y="4334.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.findClass (10 samples, 0.10%)</title><rect x="306.7" y="4307.0" width="1.2" height="15" fill="#4ade4a" rx="2" ry="2"/>
<text x="309.7" y="4318.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/security/AccessController.doPrivileged (10 samples, 0.10%)</title><rect x="306.7" y="4291.0" width="1.2" height="15" fill="#51e451" rx="2" ry="2"/>
<text x="309.7" y="4302.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader$1.run (10 samples, 0.10%)</title><rect x="306.7" y="4275.0" width="1.2" height="15" fill="#51e451" rx="2" ry="2"/>
<text x="309.7" y="4286.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader$1.run (10 samples, 0.10%)</title><rect x="306.7" y="4259.0" width="1.2" height="15" fill="#37cd37" rx="2" ry="2"/>
<text x="309.7" y="4270.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.access$100 (9 samples, 0.09%)</title><rect x="306.7" y="4243.0" width="1.0" height="15" fill="#4ade4a" rx="2" ry="2"/>
<text x="309.7" y="4254.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.defineClass (9 samples, 0.09%)</title><rect x="306.7" y="4227.0" width="1.0" height="15" fill="#60f360" rx="2" ry="2"/>
<text x="309.7" y="4238.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/internal/storage/file/FileRepository.&lt;init&gt; (16 samples, 0.16%)</title><rect x="307.9" y="4339.0" width="1.9" height="15" fill="#41d641" rx="2" ry="2"/>
<text x="310.9" y="4350.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/typesafe/sbt/SbtGit$$$Lambda$3216/368384503.apply (20 samples, 0.20%)</title><rect x="310.6" y="4419.0" width="2.4" height="15" fill="#44d844" rx="2" ry="2"/>
<text x="313.6" y="4430.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/typesafe/sbt/SbtGit$.$anonfun$buildSettings$3 (20 samples, 0.20%)</title><rect x="310.6" y="4403.0" width="2.4" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="313.6" y="4414.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/typesafe/sbt/git/DefaultReadableGit.withGit (20 samples, 0.20%)</title><rect x="310.6" y="4387.0" width="2.4" height="15" fill="#5ff15f" rx="2" ry="2"/>
<text x="313.6" y="4398.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/typesafe/sbt/SbtGit$$$Lambda$3342/783681012.apply (20 samples, 0.20%)</title><rect x="310.6" y="4371.0" width="2.4" height="15" fill="#57ea57" rx="2" ry="2"/>
<text x="313.6" y="4382.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/typesafe/sbt/SbtGit$.$anonfun$buildSettings$4 (20 samples, 0.20%)</title><rect x="310.6" y="4355.0" width="2.4" height="15" fill="#58eb58" rx="2" ry="2"/>
<text x="313.6" y="4366.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/typesafe/sbt/git/JGit.headCommitSha (20 samples, 0.20%)</title><rect x="310.6" y="4339.0" width="2.4" height="15" fill="#45da45" rx="2" ry="2"/>
<text x="313.6" y="4350.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/typesafe/sbt/git/JGit.headCommit (19 samples, 0.19%)</title><rect x="310.6" y="4323.0" width="2.3" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="313.6" y="4334.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/lib/Repository.resolve (19 samples, 0.19%)</title><rect x="310.6" y="4307.0" width="2.3" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="313.6" y="4318.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/typesafe/sbt/SbtGit$$$Lambda$3221/1635892298.apply (70 samples, 0.71%)</title><rect x="313.7" y="4419.0" width="8.4" height="15" fill="#4de14d" rx="2" ry="2"/>
<text x="316.7" y="4430.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/typesafe/sbt/SbtGit$.$anonfun$buildSettings$10 (70 samples, 0.71%)</title><rect x="313.7" y="4403.0" width="8.4" height="15" fill="#51e551" rx="2" ry="2"/>
<text x="316.7" y="4414.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/typesafe/sbt/git/DefaultReadableGit.withGit (70 samples, 0.71%)</title><rect x="313.7" y="4387.0" width="8.4" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="316.7" y="4398.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/typesafe/sbt/SbtGit$$$Lambda$3346/1577820811.apply (70 samples, 0.71%)</title><rect x="313.7" y="4371.0" width="8.4" height="15" fill="#69fa69" rx="2" ry="2"/>
<text x="316.7" y="4382.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/typesafe/sbt/SbtGit$.$anonfun$buildSettings$11 (70 samples, 0.71%)</title><rect x="313.7" y="4355.0" width="8.4" height="15" fill="#4ade4a" rx="2" ry="2"/>
<text x="316.7" y="4366.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/typesafe/sbt/git/JGit.describedVersion (70 samples, 0.71%)</title><rect x="313.7" y="4339.0" width="8.4" height="15" fill="#33c933" rx="2" ry="2"/>
<text x="316.7" y="4350.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/util/Try$.apply (70 samples, 0.71%)</title><rect x="313.7" y="4323.0" width="8.4" height="15" fill="#3cd13c" rx="2" ry="2"/>
<text x="316.7" y="4334.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/typesafe/sbt/git/JGit$$Lambda$3361/1997296973.apply (70 samples, 0.71%)</title><rect x="313.7" y="4307.0" width="8.4" height="15" fill="#53e753" rx="2" ry="2"/>
<text x="316.7" y="4318.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/typesafe/sbt/git/JGit.$anonfun$describedVersion$1 (70 samples, 0.71%)</title><rect x="313.7" y="4291.0" width="8.4" height="15" fill="#6dfe6d" rx="2" ry="2"/>
<text x="316.7" y="4302.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/api/DescribeCommand.call (69 samples, 0.70%)</title><rect x="313.7" y="4275.0" width="8.3" height="15" fill="#3acf3a" rx="2" ry="2"/>
<text x="316.7" y="4286.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/revwalk/RevWalk.next (61 samples, 0.62%)</title><rect x="314.7" y="4259.0" width="7.3" height="15" fill="#46da46" rx="2" ry="2"/>
<text x="317.7" y="4270.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/revwalk/PendingGenerator.next (60 samples, 0.61%)</title><rect x="314.7" y="4243.0" width="7.2" height="15" fill="#44d944" rx="2" ry="2"/>
<text x="317.7" y="4254.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/revwalk/RevCommit.parseHeaders (59 samples, 0.60%)</title><rect x="314.8" y="4227.0" width="7.1" height="15" fill="#47db47" rx="2" ry="2"/>
<text x="317.8" y="4238.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/revwalk/RevWalk.getCachedBytes (57 samples, 0.58%)</title><rect x="315.1" y="4211.0" width="6.8" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="318.1" y="4222.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/internal/storage/file/WindowCursor.open (56 samples, 0.57%)</title><rect x="315.1" y="4195.0" width="6.7" height="15" fill="#45d945" rx="2" ry="2"/>
<text x="318.1" y="4206.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/internal/storage/file/ObjectDirectory.openObject (56 samples, 0.57%)</title><rect x="315.1" y="4179.0" width="6.7" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="318.1" y="4190.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/internal/storage/file/ObjectDirectory.openPackedFromSelfOrAlternate (47 samples, 0.48%)</title><rect x="316.1" y="4163.0" width="5.7" height="15" fill="#58eb58" rx="2" ry="2"/>
<text x="319.1" y="4174.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/internal/storage/file/ObjectDirectory.openPackedObject (47 samples, 0.48%)</title><rect x="316.1" y="4147.0" width="5.7" height="15" fill="#56e956" rx="2" ry="2"/>
<text x="319.1" y="4158.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/internal/storage/file/PackFile.get (47 samples, 0.48%)</title><rect x="316.1" y="4131.0" width="5.7" height="15" fill="#34ca34" rx="2" ry="2"/>
<text x="319.1" y="4142.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/internal/storage/file/PackFile.load (45 samples, 0.46%)</title><rect x="316.1" y="4115.0" width="5.4" height="15" fill="#46da46" rx="2" ry="2"/>
<text x="319.1" y="4126.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/internal/storage/file/PackFile.decompress (20 samples, 0.20%)</title><rect x="316.3" y="4099.0" width="2.4" height="15" fill="#36cc36" rx="2" ry="2"/>
<text x="319.3" y="4110.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/internal/storage/file/WindowCursor.inflate (20 samples, 0.20%)</title><rect x="316.3" y="4083.0" width="2.4" height="15" fill="#52e552" rx="2" ry="2"/>
<text x="319.3" y="4094.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/internal/storage/file/WindowCursor.pin (16 samples, 0.16%)</title><rect x="316.7" y="4067.0" width="2.0" height="15" fill="#4fe34f" rx="2" ry="2"/>
<text x="319.7" y="4078.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/internal/storage/file/WindowCache.get (16 samples, 0.16%)</title><rect x="316.7" y="4051.0" width="2.0" height="15" fill="#43d743" rx="2" ry="2"/>
<text x="319.7" y="4062.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/internal/storage/file/WindowCache.getOrLoad (16 samples, 0.16%)</title><rect x="316.7" y="4035.0" width="2.0" height="15" fill="#41d541" rx="2" ry="2"/>
<text x="319.7" y="4046.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/internal/storage/file/WindowCache.load (16 samples, 0.16%)</title><rect x="316.7" y="4019.0" width="2.0" height="15" fill="#4ce04c" rx="2" ry="2"/>
<text x="319.7" y="4030.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/internal/storage/file/PackFile.read (16 samples, 0.16%)</title><rect x="316.7" y="4003.0" width="2.0" height="15" fill="#59ec59" rx="2" ry="2"/>
<text x="319.7" y="4014.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/RandomAccessFile.seek (14 samples, 0.14%)</title><rect x="317.0" y="3987.0" width="1.7" height="15" fill="#45d945" rx="2" ry="2"/>
<text x="320.0" y="3998.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/RandomAccessFile.seek0 (14 samples, 0.14%)</title><rect x="317.0" y="3971.0" width="1.7" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="320.0" y="3982.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/internal/storage/file/PackFile.readFully (24 samples, 0.24%)</title><rect x="318.7" y="4099.0" width="2.8" height="15" fill="#6cfd6c" rx="2" ry="2"/>
<text x="321.7" y="4110.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/internal/storage/file/WindowCursor.copy (24 samples, 0.24%)</title><rect x="318.7" y="4083.0" width="2.8" height="15" fill="#38cd38" rx="2" ry="2"/>
<text x="321.7" y="4094.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/internal/storage/file/WindowCursor.pin (24 samples, 0.24%)</title><rect x="318.7" y="4067.0" width="2.8" height="15" fill="#45d945" rx="2" ry="2"/>
<text x="321.7" y="4078.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/internal/storage/file/WindowCache.get (24 samples, 0.24%)</title><rect x="318.7" y="4051.0" width="2.8" height="15" fill="#6bfc6b" rx="2" ry="2"/>
<text x="321.7" y="4062.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/internal/storage/file/WindowCache.getOrLoad (24 samples, 0.24%)</title><rect x="318.7" y="4035.0" width="2.8" height="15" fill="#46db46" rx="2" ry="2"/>
<text x="321.7" y="4046.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/internal/storage/file/WindowCache.load (24 samples, 0.24%)</title><rect x="318.7" y="4019.0" width="2.8" height="15" fill="#3bd13b" rx="2" ry="2"/>
<text x="321.7" y="4030.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/internal/storage/file/PackFile.read (20 samples, 0.20%)</title><rect x="319.1" y="4003.0" width="2.4" height="15" fill="#6dfe6d" rx="2" ry="2"/>
<text x="322.1" y="4014.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/RandomAccessFile.seek (18 samples, 0.18%)</title><rect x="319.4" y="3987.0" width="2.1" height="15" fill="#38ce38" rx="2" ry="2"/>
<text x="322.4" y="3998.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/RandomAccessFile.seek0 (18 samples, 0.18%)</title><rect x="319.4" y="3971.0" width="2.1" height="15" fill="#34ca34" rx="2" ry="2"/>
<text x="322.4" y="3982.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/typesafe/sbt/SbtGit$$$Lambda$3222/117736874.apply (39 samples, 0.40%)</title><rect x="322.1" y="4419.0" width="4.7" height="15" fill="#6bfc6b" rx="2" ry="2"/>
<text x="325.1" y="4430.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/typesafe/sbt/SbtGit$.$anonfun$buildSettings$14 (39 samples, 0.40%)</title><rect x="322.1" y="4403.0" width="4.7" height="15" fill="#61f361" rx="2" ry="2"/>
<text x="325.1" y="4414.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/typesafe/sbt/git/DefaultReadableGit.withGit (39 samples, 0.40%)</title><rect x="322.1" y="4387.0" width="4.7" height="15" fill="#3fd43f" rx="2" ry="2"/>
<text x="325.1" y="4398.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/typesafe/sbt/SbtGit$$$Lambda$3348/1328667974.apply (39 samples, 0.40%)</title><rect x="322.1" y="4371.0" width="4.7" height="15" fill="#38cd38" rx="2" ry="2"/>
<text x="325.1" y="4382.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/typesafe/sbt/SbtGit$.$anonfun$buildSettings$15 (39 samples, 0.40%)</title><rect x="322.1" y="4355.0" width="4.7" height="15" fill="#41d641" rx="2" ry="2"/>
<text x="325.1" y="4366.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/typesafe/sbt/git/JGit.currentTags (39 samples, 0.40%)</title><rect x="322.1" y="4339.0" width="4.7" height="15" fill="#4ce04c" rx="2" ry="2"/>
<text x="325.1" y="4350.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/List.flatMap (38 samples, 0.39%)</title><rect x="322.3" y="4323.0" width="4.5" height="15" fill="#40d540" rx="2" ry="2"/>
<text x="325.3" y="4334.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.flatMap$ (38 samples, 0.39%)</title><rect x="322.3" y="4307.0" width="4.5" height="15" fill="#42d742" rx="2" ry="2"/>
<text x="325.3" y="4318.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.flatMap (38 samples, 0.39%)</title><rect x="322.3" y="4291.0" width="4.5" height="15" fill="#52e652" rx="2" ry="2"/>
<text x="325.3" y="4302.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/List.foreach (38 samples, 0.39%)</title><rect x="322.3" y="4275.0" width="4.5" height="15" fill="#66f866" rx="2" ry="2"/>
<text x="325.3" y="4286.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike$$Lambda$541/18601987.apply (38 samples, 0.39%)</title><rect x="322.3" y="4259.0" width="4.5" height="15" fill="#65f665" rx="2" ry="2"/>
<text x="325.3" y="4270.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.$anonfun$flatMap$1 (38 samples, 0.39%)</title><rect x="322.3" y="4243.0" width="4.5" height="15" fill="#5aec5a" rx="2" ry="2"/>
<text x="325.3" y="4254.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/typesafe/sbt/git/JGit$$Lambda$3351/2021063601.apply (38 samples, 0.39%)</title><rect x="322.3" y="4227.0" width="4.5" height="15" fill="#53e653" rx="2" ry="2"/>
<text x="325.3" y="4238.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/typesafe/sbt/git/JGit.$anonfun$currentTags$2 (38 samples, 0.39%)</title><rect x="322.3" y="4211.0" width="4.5" height="15" fill="#5ff15f" rx="2" ry="2"/>
<text x="325.3" y="4222.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractTraversable.map (28 samples, 0.28%)</title><rect x="323.5" y="4195.0" width="3.3" height="15" fill="#68f968" rx="2" ry="2"/>
<text x="326.5" y="4206.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.map$ (28 samples, 0.28%)</title><rect x="323.5" y="4179.0" width="3.3" height="15" fill="#65f665" rx="2" ry="2"/>
<text x="326.5" y="4190.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.map (28 samples, 0.28%)</title><rect x="323.5" y="4163.0" width="3.3" height="15" fill="#5ff15f" rx="2" ry="2"/>
<text x="326.5" y="4174.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractIterable.foreach (28 samples, 0.28%)</title><rect x="323.5" y="4147.0" width="3.3" height="15" fill="#40d440" rx="2" ry="2"/>
<text x="326.5" y="4158.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IterableLike.foreach$ (28 samples, 0.28%)</title><rect x="323.5" y="4131.0" width="3.3" height="15" fill="#6dfe6d" rx="2" ry="2"/>
<text x="326.5" y="4142.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IterableLike.foreach (28 samples, 0.28%)</title><rect x="323.5" y="4115.0" width="3.3" height="15" fill="#41d641" rx="2" ry="2"/>
<text x="326.5" y="4126.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractIterator.foreach (28 samples, 0.28%)</title><rect x="323.5" y="4099.0" width="3.3" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="326.5" y="4110.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/Iterator.foreach$ (28 samples, 0.28%)</title><rect x="323.5" y="4083.0" width="3.3" height="15" fill="#43d843" rx="2" ry="2"/>
<text x="326.5" y="4094.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/Iterator.foreach (28 samples, 0.28%)</title><rect x="323.5" y="4067.0" width="3.3" height="15" fill="#5ef15e" rx="2" ry="2"/>
<text x="326.5" y="4078.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike$$Lambda$42/728885526.apply (28 samples, 0.28%)</title><rect x="323.5" y="4051.0" width="3.3" height="15" fill="#6dfe6d" rx="2" ry="2"/>
<text x="326.5" y="4062.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.$anonfun$map$1 (28 samples, 0.28%)</title><rect x="323.5" y="4035.0" width="3.3" height="15" fill="#5ff25f" rx="2" ry="2"/>
<text x="326.5" y="4046.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/typesafe/sbt/git/JGit$$Lambda$3353/442990068.apply (28 samples, 0.28%)</title><rect x="323.5" y="4019.0" width="3.3" height="15" fill="#4bdf4b" rx="2" ry="2"/>
<text x="326.5" y="4030.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/typesafe/sbt/git/JGit.$anonfun$currentTags$3 (28 samples, 0.28%)</title><rect x="323.5" y="4003.0" width="3.3" height="15" fill="#58eb58" rx="2" ry="2"/>
<text x="326.5" y="4014.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/typesafe/sbt/git/JGit.tagHash (28 samples, 0.28%)</title><rect x="323.5" y="3987.0" width="3.3" height="15" fill="#4de14d" rx="2" ry="2"/>
<text x="326.5" y="3998.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/lib/Repository.peel (28 samples, 0.28%)</title><rect x="323.5" y="3971.0" width="3.3" height="15" fill="#38cd38" rx="2" ry="2"/>
<text x="326.5" y="3982.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/internal/storage/file/RefDirectory.peel (28 samples, 0.28%)</title><rect x="323.5" y="3955.0" width="3.3" height="15" fill="#3cd23c" rx="2" ry="2"/>
<text x="326.5" y="3966.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/internal/storage/file/RefDirectory.doPeel (28 samples, 0.28%)</title><rect x="323.5" y="3939.0" width="3.3" height="15" fill="#65f765" rx="2" ry="2"/>
<text x="326.5" y="3950.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/revwalk/RevWalk.parseAny (28 samples, 0.28%)</title><rect x="323.5" y="3923.0" width="3.3" height="15" fill="#50e350" rx="2" ry="2"/>
<text x="326.5" y="3934.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/lib/ObjectReader.open (28 samples, 0.28%)</title><rect x="323.5" y="3907.0" width="3.3" height="15" fill="#69fb69" rx="2" ry="2"/>
<text x="326.5" y="3918.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/internal/storage/file/WindowCursor.open (28 samples, 0.28%)</title><rect x="323.5" y="3891.0" width="3.3" height="15" fill="#67f967" rx="2" ry="2"/>
<text x="326.5" y="3902.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/internal/storage/file/ObjectDirectory.openObject (28 samples, 0.28%)</title><rect x="323.5" y="3875.0" width="3.3" height="15" fill="#43d843" rx="2" ry="2"/>
<text x="326.5" y="3886.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/internal/storage/file/ObjectDirectory.openPackedFromSelfOrAlternate (26 samples, 0.26%)</title><rect x="323.7" y="3859.0" width="3.1" height="15" fill="#57ea57" rx="2" ry="2"/>
<text x="326.7" y="3870.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/internal/storage/file/ObjectDirectory.openPackedObject (26 samples, 0.26%)</title><rect x="323.7" y="3843.0" width="3.1" height="15" fill="#6cfd6c" rx="2" ry="2"/>
<text x="326.7" y="3854.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/internal/storage/file/PackFile.get (21 samples, 0.21%)</title><rect x="324.3" y="3827.0" width="2.5" height="15" fill="#52e552" rx="2" ry="2"/>
<text x="327.3" y="3838.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/internal/storage/file/PackFile.idx (16 samples, 0.16%)</title><rect x="324.3" y="3811.0" width="1.9" height="15" fill="#63f563" rx="2" ry="2"/>
<text x="327.3" y="3822.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/internal/storage/file/PackIndex.open (14 samples, 0.14%)</title><rect x="324.5" y="3795.0" width="1.7" height="15" fill="#35cb35" rx="2" ry="2"/>
<text x="327.5" y="3806.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/internal/storage/file/PackIndex.read (12 samples, 0.12%)</title><rect x="324.8" y="3779.0" width="1.4" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="327.8" y="3790.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/internal/storage/file/PackIndexV2.&lt;init&gt; (10 samples, 0.10%)</title><rect x="324.8" y="3763.0" width="1.2" height="15" fill="#6cfd6c" rx="2" ry="2"/>
<text x="327.8" y="3774.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/util/IO.readFully (10 samples, 0.10%)</title><rect x="324.8" y="3747.0" width="1.2" height="15" fill="#5ff25f" rx="2" ry="2"/>
<text x="327.8" y="3758.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/FileInputStream.read (10 samples, 0.10%)</title><rect x="324.8" y="3731.0" width="1.2" height="15" fill="#66f766" rx="2" ry="2"/>
<text x="327.8" y="3742.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/FileInputStream.readBytes (10 samples, 0.10%)</title><rect x="324.8" y="3715.0" width="1.2" height="15" fill="#33c933" rx="2" ry="2"/>
<text x="327.8" y="3726.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/typesafe/sbt/SbtGit$$$Lambda$3224/235334787.apply (189 samples, 1.92%)</title><rect x="326.8" y="4419.0" width="22.7" height="15" fill="#51e451" rx="2" ry="2"/>
<text x="329.8" y="4430.0">c..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/typesafe/sbt/SbtGit$.$anonfun$buildSettings$19$adapted (189 samples, 1.92%)</title><rect x="326.8" y="4403.0" width="22.7" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="329.8" y="4414.0">c..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/typesafe/sbt/SbtGit$.$anonfun$buildSettings$19 (189 samples, 1.92%)</title><rect x="326.8" y="4387.0" width="22.7" height="15" fill="#6cfd6c" rx="2" ry="2"/>
<text x="329.8" y="4398.0">c..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/typesafe/sbt/git/DefaultReadableGit.withGit (189 samples, 1.92%)</title><rect x="326.8" y="4371.0" width="22.7" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="329.8" y="4382.0">c..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/typesafe/sbt/SbtGit$$$Lambda$3343/574392641.apply (189 samples, 1.92%)</title><rect x="326.8" y="4355.0" width="22.7" height="15" fill="#3fd43f" rx="2" ry="2"/>
<text x="329.8" y="4366.0">c..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/typesafe/sbt/SbtGit$.$anonfun$buildSettings$20$adapted (189 samples, 1.92%)</title><rect x="326.8" y="4339.0" width="22.7" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="329.8" y="4350.0">c..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/typesafe/sbt/SbtGit$.$anonfun$buildSettings$20 (189 samples, 1.92%)</title><rect x="326.8" y="4323.0" width="22.7" height="15" fill="#67f967" rx="2" ry="2"/>
<text x="329.8" y="4334.0">c..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/typesafe/sbt/git/JGit.hasUncommittedChanges (189 samples, 1.92%)</title><rect x="326.8" y="4307.0" width="22.7" height="15" fill="#52e652" rx="2" ry="2"/>
<text x="329.8" y="4318.0">c..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/api/StatusCommand.call (186 samples, 1.89%)</title><rect x="327.2" y="4291.0" width="22.3" height="15" fill="#37cc37" rx="2" ry="2"/>
<text x="330.2" y="4302.0">o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/lib/IndexDiff.diff (169 samples, 1.72%)</title><rect x="327.9" y="4275.0" width="20.3" height="15" fill="#60f260" rx="2" ry="2"/>
<text x="330.9" y="4286.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/lib/IndexDiff.diff (169 samples, 1.72%)</title><rect x="327.9" y="4259.0" width="20.3" height="15" fill="#60f260" rx="2" ry="2"/>
<text x="330.9" y="4270.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/lib/Repository.readDirCache (11 samples, 0.11%)</title><rect x="328.5" y="4243.0" width="1.3" height="15" fill="#5cee5c" rx="2" ry="2"/>
<text x="331.5" y="4254.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/treewalk/TreeWalk.next (149 samples, 1.52%)</title><rect x="330.3" y="4243.0" width="17.9" height="15" fill="#35ca35" rx="2" ry="2"/>
<text x="333.3" y="4254.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/treewalk/TreeWalk.enterSubtree (104 samples, 1.06%)</title><rect x="330.3" y="4227.0" width="12.5" height="15" fill="#67f867" rx="2" ry="2"/>
<text x="333.3" y="4238.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/treewalk/AbstractTreeIterator.createSubtreeIterator (91 samples, 0.93%)</title><rect x="330.3" y="4211.0" width="10.9" height="15" fill="#36cb36" rx="2" ry="2"/>
<text x="333.3" y="4222.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/treewalk/FileTreeIterator.createSubtreeIterator (91 samples, 0.93%)</title><rect x="330.3" y="4195.0" width="10.9" height="15" fill="#6dfe6d" rx="2" ry="2"/>
<text x="333.3" y="4206.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/treewalk/FileTreeIterator.&lt;init&gt; (91 samples, 0.93%)</title><rect x="330.3" y="4179.0" width="10.9" height="15" fill="#42d642" rx="2" ry="2"/>
<text x="333.3" y="4190.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/treewalk/FileTreeIterator.entries (90 samples, 0.92%)</title><rect x="330.3" y="4163.0" width="10.8" height="15" fill="#4fe34f" rx="2" ry="2"/>
<text x="333.3" y="4174.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/File.listFiles (55 samples, 0.56%)</title><rect x="330.3" y="4147.0" width="6.6" height="15" fill="#5bed5b" rx="2" ry="2"/>
<text x="333.3" y="4158.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/File.list (55 samples, 0.56%)</title><rect x="330.3" y="4131.0" width="6.6" height="15" fill="#5ef15e" rx="2" ry="2"/>
<text x="333.3" y="4142.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/UnixFileSystem.list (55 samples, 0.56%)</title><rect x="330.3" y="4115.0" width="6.6" height="15" fill="#6afb6a" rx="2" ry="2"/>
<text x="333.3" y="4126.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/treewalk/FileTreeIterator$FileEntry.&lt;init&gt; (35 samples, 0.36%)</title><rect x="336.9" y="4147.0" width="4.2" height="15" fill="#5bed5b" rx="2" ry="2"/>
<text x="339.9" y="4158.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/treewalk/FileTreeIterator$DefaultFileModeStrategy.getMode (14 samples, 0.14%)</title><rect x="337.0" y="4131.0" width="1.7" height="15" fill="#68fa68" rx="2" ry="2"/>
<text x="340.0" y="4142.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/File.exists (13 samples, 0.13%)</title><rect x="337.0" y="4115.0" width="1.6" height="15" fill="#3cd13c" rx="2" ry="2"/>
<text x="340.0" y="4126.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/UnixFileSystem.getBooleanAttributes (13 samples, 0.13%)</title><rect x="337.0" y="4099.0" width="1.6" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="340.0" y="4110.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/UnixFileSystem.getBooleanAttributes0 (13 samples, 0.13%)</title><rect x="337.0" y="4083.0" width="1.6" height="15" fill="#42d742" rx="2" ry="2"/>
<text x="340.0" y="4094.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/util/FS_POSIX.getAttributes (20 samples, 0.20%)</title><rect x="338.7" y="4131.0" width="2.4" height="15" fill="#4ee24e" rx="2" ry="2"/>
<text x="341.7" y="4142.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/util/FileUtils.getFileAttributesPosix (20 samples, 0.20%)</title><rect x="338.7" y="4115.0" width="2.4" height="15" fill="#68fa68" rx="2" ry="2"/>
<text x="341.7" y="4126.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/fs/UnixFileAttributeViews$Posix.readAttributes (20 samples, 0.20%)</title><rect x="338.7" y="4099.0" width="2.4" height="15" fill="#5cee5c" rx="2" ry="2"/>
<text x="341.7" y="4110.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/fs/UnixFileAttributeViews$Posix.readAttributes (20 samples, 0.20%)</title><rect x="338.7" y="4083.0" width="2.4" height="15" fill="#49dd49" rx="2" ry="2"/>
<text x="341.7" y="4094.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/fs/UnixFileAttributes.get (20 samples, 0.20%)</title><rect x="338.7" y="4067.0" width="2.4" height="15" fill="#3cd13c" rx="2" ry="2"/>
<text x="341.7" y="4078.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/fs/UnixNativeDispatcher.lstat (20 samples, 0.20%)</title><rect x="338.7" y="4051.0" width="2.4" height="15" fill="#68f968" rx="2" ry="2"/>
<text x="341.7" y="4062.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/fs/UnixNativeDispatcher.lstat0 (20 samples, 0.20%)</title><rect x="338.7" y="4035.0" width="2.4" height="15" fill="#3ed33e" rx="2" ry="2"/>
<text x="341.7" y="4046.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/treewalk/CanonicalTreeParser.createSubtreeIterator (13 samples, 0.13%)</title><rect x="341.2" y="4211.0" width="1.6" height="15" fill="#52e652" rx="2" ry="2"/>
<text x="344.2" y="4222.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/treewalk/CanonicalTreeParser.createSubtreeIterator (13 samples, 0.13%)</title><rect x="341.2" y="4195.0" width="1.6" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="344.2" y="4206.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/treewalk/CanonicalTreeParser.createSubtreeIterator0 (13 samples, 0.13%)</title><rect x="341.2" y="4179.0" width="1.6" height="15" fill="#41d641" rx="2" ry="2"/>
<text x="344.2" y="4190.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/treewalk/CanonicalTreeParser.reset (13 samples, 0.13%)</title><rect x="341.2" y="4163.0" width="1.6" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="344.2" y="4174.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/internal/storage/file/WindowCursor.open (12 samples, 0.12%)</title><rect x="341.2" y="4147.0" width="1.5" height="15" fill="#40d440" rx="2" ry="2"/>
<text x="344.2" y="4158.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/internal/storage/file/ObjectDirectory.openObject (12 samples, 0.12%)</title><rect x="341.2" y="4131.0" width="1.5" height="15" fill="#59ec59" rx="2" ry="2"/>
<text x="344.2" y="4142.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/treewalk/filter/AndTreeFilter$Binary.include (44 samples, 0.45%)</title><rect x="342.9" y="4227.0" width="5.3" height="15" fill="#46da46" rx="2" ry="2"/>
<text x="345.9" y="4238.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/treewalk/filter/IndexDiffFilter.include (44 samples, 0.45%)</title><rect x="342.9" y="4211.0" width="5.3" height="15" fill="#51e451" rx="2" ry="2"/>
<text x="345.9" y="4222.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/treewalk/WorkingTreeIterator.isEntryIgnored (11 samples, 0.11%)</title><rect x="342.9" y="4195.0" width="1.3" height="15" fill="#4de04d" rx="2" ry="2"/>
<text x="345.9" y="4206.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/treewalk/WorkingTreeIterator.isEntryIgnored (11 samples, 0.11%)</title><rect x="342.9" y="4179.0" width="1.3" height="15" fill="#56e956" rx="2" ry="2"/>
<text x="345.9" y="4190.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/treewalk/WorkingTreeIterator.isEntryIgnored (11 samples, 0.11%)</title><rect x="342.9" y="4163.0" width="1.3" height="15" fill="#5aec5a" rx="2" ry="2"/>
<text x="345.9" y="4174.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/treewalk/WorkingTreeIterator.isModified (33 samples, 0.34%)</title><rect x="344.2" y="4195.0" width="4.0" height="15" fill="#33c933" rx="2" ry="2"/>
<text x="347.2" y="4206.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/treewalk/WorkingTreeIterator.contentCheck (32 samples, 0.33%)</title><rect x="344.4" y="4179.0" width="3.8" height="15" fill="#63f563" rx="2" ry="2"/>
<text x="347.4" y="4190.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/treewalk/AbstractTreeIterator.getEntryObjectId (32 samples, 0.33%)</title><rect x="344.4" y="4163.0" width="3.8" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="347.4" y="4174.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/treewalk/WorkingTreeIterator.idBuffer (32 samples, 0.33%)</title><rect x="344.4" y="4147.0" width="3.8" height="15" fill="#52e552" rx="2" ry="2"/>
<text x="347.4" y="4158.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/treewalk/WorkingTreeIterator.idBufferBlob (32 samples, 0.33%)</title><rect x="344.4" y="4131.0" width="3.8" height="15" fill="#6cfd6c" rx="2" ry="2"/>
<text x="347.4" y="4142.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/treewalk/FileTreeIterator$FileEntry.openInputStream (10 samples, 0.10%)</title><rect x="344.4" y="4115.0" width="1.2" height="15" fill="#5ef15e" rx="2" ry="2"/>
<text x="347.4" y="4126.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/util/FS.isSymLink (9 samples, 0.09%)</title><rect x="344.5" y="4099.0" width="1.1" height="15" fill="#61f361" rx="2" ry="2"/>
<text x="347.5" y="4110.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/util/FileUtils.isSymlink (9 samples, 0.09%)</title><rect x="344.5" y="4083.0" width="1.1" height="15" fill="#5ff15f" rx="2" ry="2"/>
<text x="347.5" y="4094.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/nio/file/Files.isSymbolicLink (9 samples, 0.09%)</title><rect x="344.5" y="4067.0" width="1.1" height="15" fill="#4de04d" rx="2" ry="2"/>
<text x="347.5" y="4078.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/nio/file/Files.readAttributes (9 samples, 0.09%)</title><rect x="344.5" y="4051.0" width="1.1" height="15" fill="#4ade4a" rx="2" ry="2"/>
<text x="347.5" y="4062.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/fs/UnixFileSystemProvider.readAttributes (9 samples, 0.09%)</title><rect x="344.5" y="4035.0" width="1.1" height="15" fill="#40d540" rx="2" ry="2"/>
<text x="347.5" y="4046.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/fs/UnixFileAttributeViews$Basic.readAttributes (9 samples, 0.09%)</title><rect x="344.5" y="4019.0" width="1.1" height="15" fill="#5cee5c" rx="2" ry="2"/>
<text x="347.5" y="4030.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/fs/UnixFileAttributes.get (9 samples, 0.09%)</title><rect x="344.5" y="4003.0" width="1.1" height="15" fill="#3ed33e" rx="2" ry="2"/>
<text x="347.5" y="4014.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/fs/UnixNativeDispatcher.lstat (9 samples, 0.09%)</title><rect x="344.5" y="3987.0" width="1.1" height="15" fill="#59ec59" rx="2" ry="2"/>
<text x="347.5" y="3998.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/fs/UnixNativeDispatcher.lstat0 (9 samples, 0.09%)</title><rect x="344.5" y="3971.0" width="1.1" height="15" fill="#4ade4a" rx="2" ry="2"/>
<text x="347.5" y="3982.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/treewalk/WorkingTreeIterator.possiblyFilteredInputStream (18 samples, 0.18%)</title><rect x="345.6" y="4115.0" width="2.1" height="15" fill="#42d742" rx="2" ry="2"/>
<text x="348.6" y="4126.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jgit/treewalk/FileTreeIterator.&lt;init&gt; (10 samples, 0.10%)</title><rect x="348.2" y="4275.0" width="1.2" height="15" fill="#46da46" rx="2" ry="2"/>
<text x="351.2" y="4286.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Scoped$RichInitTaskBase$$Lambda$1054/736236438.apply (11 samples, 0.11%)</title><rect x="356.4" y="4419.0" width="1.3" height="15" fill="#44d844" rx="2" ry="2"/>
<text x="359.4" y="4430.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Scoped$RichInitTaskBase.$anonfun$mapR$1 (11 samples, 0.11%)</title><rect x="356.4" y="4403.0" width="1.3" height="15" fill="#5bed5b" rx="2" ry="2"/>
<text x="359.4" y="4414.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$Setting$$Lambda$1497/132372445.apply (9 samples, 0.09%)</title><rect x="357.7" y="4419.0" width="1.1" height="15" fill="#6bfc6b" rx="2" ry="2"/>
<text x="360.7" y="4430.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$Setting.$anonfun$mapInit$1 (9 samples, 0.09%)</title><rect x="357.7" y="4403.0" width="1.1" height="15" fill="#60f260" rx="2" ry="2"/>
<text x="360.7" y="4414.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/Load$$$Lambda$1496/1176254217.apply (9 samples, 0.09%)</title><rect x="357.7" y="4387.0" width="1.1" height="15" fill="#68f968" rx="2" ry="2"/>
<text x="360.7" y="4398.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/Load$.$anonfun$finalTransforms$1 (9 samples, 0.09%)</title><rect x="357.7" y="4371.0" width="1.1" height="15" fill="#33c933" rx="2" ry="2"/>
<text x="360.7" y="4382.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ref/Finalizer$FinalizerThread.run (16 samples, 0.16%)</title><rect x="362.1" y="4595.0" width="2.0" height="15" fill="#6cfd6c" rx="2" ry="2"/>
<text x="365.1" y="4606.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ref/Finalizer.access$100 (12 samples, 0.12%)</title><rect x="362.3" y="4579.0" width="1.4" height="15" fill="#35ca35" rx="2" ry="2"/>
<text x="365.3" y="4590.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ref/Finalizer.runFinalizer (12 samples, 0.12%)</title><rect x="362.3" y="4563.0" width="1.4" height="15" fill="#4ade4a" rx="2" ry="2"/>
<text x="365.3" y="4574.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/System$2.invokeFinalize (11 samples, 0.11%)</title><rect x="362.3" y="4547.0" width="1.3" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="365.3" y="4558.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ForkJoinWorkerThread.run (693 samples, 7.05%)</title><rect x="364.4" y="4595.0" width="83.3" height="15" fill="#61f361" rx="2" ry="2"/>
<text x="367.4" y="4606.0">java/util..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ForkJoinPool.runWorker (693 samples, 7.05%)</title><rect x="364.4" y="4579.0" width="83.3" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="367.4" y="4590.0">java/util..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ForkJoinPool$WorkQueue.runTask (692 samples, 7.04%)</title><rect x="364.4" y="4563.0" width="83.1" height="15" fill="#56e956" rx="2" ry="2"/>
<text x="367.4" y="4574.0">java/util..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ForkJoinTask.doExec (692 samples, 7.04%)</title><rect x="364.4" y="4547.0" width="83.1" height="15" fill="#69fa69" rx="2" ry="2"/>
<text x="367.4" y="4558.0">java/util..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/RecursiveAction.exec (692 samples, 7.04%)</title><rect x="364.4" y="4531.0" width="83.1" height="15" fill="#38ce38" rx="2" ry="2"/>
<text x="367.4" y="4542.0">java/util..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/parallel/AdaptiveWorkStealingForkJoinTasks$WrappedTask.compute (692 samples, 7.04%)</title><rect x="364.4" y="4515.0" width="83.1" height="15" fill="#52e552" rx="2" ry="2"/>
<text x="367.4" y="4526.0">scala/col..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/parallel/AdaptiveWorkStealingTasks$WrappedTask.compute$ (692 samples, 7.04%)</title><rect x="364.4" y="4499.0" width="83.1" height="15" fill="#36cc36" rx="2" ry="2"/>
<text x="367.4" y="4510.0">scala/col..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/parallel/AdaptiveWorkStealingTasks$WrappedTask.compute (692 samples, 7.04%)</title><rect x="364.4" y="4483.0" width="83.1" height="15" fill="#53e653" rx="2" ry="2"/>
<text x="367.4" y="4494.0">scala/col..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/parallel/AdaptiveWorkStealingForkJoinTasks$WrappedTask.internal (689 samples, 7.01%)</title><rect x="364.4" y="4467.0" width="82.8" height="15" fill="#49dd49" rx="2" ry="2"/>
<text x="367.4" y="4478.0">scala/col..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/parallel/AdaptiveWorkStealingTasks$WrappedTask.internal$ (689 samples, 7.01%)</title><rect x="364.4" y="4451.0" width="82.8" height="15" fill="#4ee24e" rx="2" ry="2"/>
<text x="367.4" y="4462.0">scala/col..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/parallel/AdaptiveWorkStealingTasks$WrappedTask.internal (689 samples, 7.01%)</title><rect x="364.4" y="4435.0" width="82.8" height="15" fill="#49dd49" rx="2" ry="2"/>
<text x="367.4" y="4446.0">scala/col..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/parallel/AdaptiveWorkStealingForkJoinTasks$WrappedTask.spawnSubtasks (13 samples, 0.13%)</title><rect x="364.5" y="4419.0" width="1.6" height="15" fill="#4ade4a" rx="2" ry="2"/>
<text x="367.5" y="4430.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/parallel/AdaptiveWorkStealingTasks$WrappedTask.spawnSubtasks$ (13 samples, 0.13%)</title><rect x="364.5" y="4403.0" width="1.6" height="15" fill="#53e653" rx="2" ry="2"/>
<text x="367.5" y="4414.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/parallel/AdaptiveWorkStealingTasks$WrappedTask.spawnSubtasks (13 samples, 0.13%)</title><rect x="364.5" y="4387.0" width="1.6" height="15" fill="#6afb6a" rx="2" ry="2"/>
<text x="367.5" y="4398.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/parallel/AdaptiveWorkStealingForkJoinTasks$WrappedTask.sync (33 samples, 0.34%)</title><rect x="366.1" y="4419.0" width="4.0" height="15" fill="#5bee5b" rx="2" ry="2"/>
<text x="369.1" y="4430.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/parallel/ForkJoinTasks$WrappedTask.sync$ (33 samples, 0.34%)</title><rect x="366.1" y="4403.0" width="4.0" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="369.1" y="4414.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/parallel/ForkJoinTasks$WrappedTask.sync (33 samples, 0.34%)</title><rect x="366.1" y="4387.0" width="4.0" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="369.1" y="4398.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ForkJoinTask.join (33 samples, 0.34%)</title><rect x="366.1" y="4371.0" width="4.0" height="15" fill="#42d742" rx="2" ry="2"/>
<text x="369.1" y="4382.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ForkJoinTask.doJoin (33 samples, 0.34%)</title><rect x="366.1" y="4355.0" width="4.0" height="15" fill="#49dd49" rx="2" ry="2"/>
<text x="369.1" y="4366.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ForkJoinPool.awaitJoin (33 samples, 0.34%)</title><rect x="366.1" y="4339.0" width="4.0" height="15" fill="#5ef15e" rx="2" ry="2"/>
<text x="369.1" y="4350.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ForkJoinPool.helpStealer (32 samples, 0.33%)</title><rect x="366.1" y="4323.0" width="3.8" height="15" fill="#53e753" rx="2" ry="2"/>
<text x="369.1" y="4334.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ForkJoinTask.doExec (16 samples, 0.16%)</title><rect x="368.0" y="4307.0" width="1.9" height="15" fill="#53e653" rx="2" ry="2"/>
<text x="371.0" y="4318.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/RecursiveAction.exec (16 samples, 0.16%)</title><rect x="368.0" y="4291.0" width="1.9" height="15" fill="#42d642" rx="2" ry="2"/>
<text x="371.0" y="4302.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/parallel/AdaptiveWorkStealingForkJoinTasks$WrappedTask.compute (16 samples, 0.16%)</title><rect x="368.0" y="4275.0" width="1.9" height="15" fill="#39ce39" rx="2" ry="2"/>
<text x="371.0" y="4286.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/parallel/AdaptiveWorkStealingTasks$WrappedTask.compute$ (16 samples, 0.16%)</title><rect x="368.0" y="4259.0" width="1.9" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="371.0" y="4270.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/parallel/AdaptiveWorkStealingTasks$WrappedTask.compute (16 samples, 0.16%)</title><rect x="368.0" y="4243.0" width="1.9" height="15" fill="#47db47" rx="2" ry="2"/>
<text x="371.0" y="4254.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/parallel/mutable/ParArray$Map.tryLeaf (16 samples, 0.16%)</title><rect x="368.0" y="4227.0" width="1.9" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="371.0" y="4238.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/parallel/Task.tryLeaf$ (16 samples, 0.16%)</title><rect x="368.0" y="4211.0" width="1.9" height="15" fill="#41d641" rx="2" ry="2"/>
<text x="371.0" y="4222.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/parallel/Task.tryLeaf (16 samples, 0.16%)</title><rect x="368.0" y="4195.0" width="1.9" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="371.0" y="4206.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/util/control/Breaks$$anon$1.catchBreak (16 samples, 0.16%)</title><rect x="368.0" y="4179.0" width="1.9" height="15" fill="#4ade4a" rx="2" ry="2"/>
<text x="371.0" y="4190.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/runtime/java8/JFunction0$mcV$sp.apply (16 samples, 0.16%)</title><rect x="368.0" y="4163.0" width="1.9" height="15" fill="#58eb58" rx="2" ry="2"/>
<text x="371.0" y="4174.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/parallel/Task$$Lambda$2101/1394154467.apply$mcV$sp (16 samples, 0.16%)</title><rect x="368.0" y="4147.0" width="1.9" height="15" fill="#51e551" rx="2" ry="2"/>
<text x="371.0" y="4158.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/parallel/Task.$anonfun$tryLeaf$1 (16 samples, 0.16%)</title><rect x="368.0" y="4131.0" width="1.9" height="15" fill="#36cc36" rx="2" ry="2"/>
<text x="371.0" y="4142.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/parallel/mutable/ParArray$Map.leaf (16 samples, 0.16%)</title><rect x="368.0" y="4115.0" width="1.9" height="15" fill="#4ee14e" rx="2" ry="2"/>
<text x="371.0" y="4126.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/caching/ClasspathCache$$$Lambda$2095/1715697050.apply (16 samples, 0.16%)</title><rect x="368.0" y="4099.0" width="1.9" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="371.0" y="4110.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/caching/ClasspathCache$.$anonfun$hashClasspath$1 (15 samples, 0.15%)</title><rect x="368.1" y="4083.0" width="1.8" height="15" fill="#37cd37" rx="2" ry="2"/>
<text x="371.1" y="4094.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/caching/ClasspathCache$.fromCacheOrHash$1 (15 samples, 0.15%)</title><rect x="368.1" y="4067.0" width="1.8" height="15" fill="#4fe34f" rx="2" ry="2"/>
<text x="371.1" y="4078.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/caching/ClasspathCache$.genFileHash (15 samples, 0.15%)</title><rect x="368.1" y="4051.0" width="1.8" height="15" fill="#39cf39" rx="2" ry="2"/>
<text x="371.1" y="4062.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/Stamper$$$Lambda$1402/1741892180.apply (15 samples, 0.15%)</title><rect x="368.1" y="4035.0" width="1.8" height="15" fill="#3ed33e" rx="2" ry="2"/>
<text x="371.1" y="4046.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/Stamper$.$anonfun$forHash$1 (15 samples, 0.15%)</title><rect x="368.1" y="4019.0" width="1.8" height="15" fill="#4ce04c" rx="2" ry="2"/>
<text x="371.1" y="4030.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/Stamper$.tryStamp (15 samples, 0.15%)</title><rect x="368.1" y="4003.0" width="1.8" height="15" fill="#47db47" rx="2" ry="2"/>
<text x="371.1" y="4014.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/Stamper$$$Lambda$2116/1291307796.apply (15 samples, 0.15%)</title><rect x="368.1" y="3987.0" width="1.8" height="15" fill="#6dfe6d" rx="2" ry="2"/>
<text x="371.1" y="3998.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/Stamper$.$anonfun$forHash$2 (15 samples, 0.15%)</title><rect x="368.1" y="3971.0" width="1.8" height="15" fill="#67f967" rx="2" ry="2"/>
<text x="371.1" y="3982.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/Hash$.ofFile (15 samples, 0.15%)</title><rect x="368.1" y="3955.0" width="1.8" height="15" fill="#46db46" rx="2" ry="2"/>
<text x="371.1" y="3966.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/io/Hash$.apply (15 samples, 0.15%)</title><rect x="368.1" y="3939.0" width="1.8" height="15" fill="#4ce04c" rx="2" ry="2"/>
<text x="371.1" y="3950.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/io/Using.apply (15 samples, 0.15%)</title><rect x="368.1" y="3923.0" width="1.8" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="371.1" y="3934.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/io/Hash$$$Lambda$2123/530411336.apply (15 samples, 0.15%)</title><rect x="368.1" y="3907.0" width="1.8" height="15" fill="#6cfe6c" rx="2" ry="2"/>
<text x="371.1" y="3918.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/io/Hash$.$anonfun$apply$1 (15 samples, 0.15%)</title><rect x="368.1" y="3891.0" width="1.8" height="15" fill="#44d844" rx="2" ry="2"/>
<text x="371.1" y="3902.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/io/Hash$.apply (15 samples, 0.15%)</title><rect x="368.1" y="3875.0" width="1.8" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="371.1" y="3886.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/FilterInputStream.read (15 samples, 0.15%)</title><rect x="368.1" y="3859.0" width="1.8" height="15" fill="#53e653" rx="2" ry="2"/>
<text x="371.1" y="3870.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/security/DigestInputStream.read (15 samples, 0.15%)</title><rect x="368.1" y="3843.0" width="1.8" height="15" fill="#3acf3a" rx="2" ry="2"/>
<text x="371.1" y="3854.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/BufferedInputStream.read (14 samples, 0.14%)</title><rect x="368.1" y="3827.0" width="1.7" height="15" fill="#50e350" rx="2" ry="2"/>
<text x="371.1" y="3838.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/BufferedInputStream.read1 (14 samples, 0.14%)</title><rect x="368.1" y="3811.0" width="1.7" height="15" fill="#4fe34f" rx="2" ry="2"/>
<text x="371.1" y="3822.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/FileInputStream.read (14 samples, 0.14%)</title><rect x="368.1" y="3795.0" width="1.7" height="15" fill="#5df05d" rx="2" ry="2"/>
<text x="371.1" y="3806.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/FileInputStream.readBytes (14 samples, 0.14%)</title><rect x="368.1" y="3779.0" width="1.7" height="15" fill="#36cc36" rx="2" ry="2"/>
<text x="371.1" y="3790.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/parallel/mutable/ParArray$Map.tryLeaf (641 samples, 6.52%)</title><rect x="370.2" y="4419.0" width="77.0" height="15" fill="#3fd33f" rx="2" ry="2"/>
<text x="373.2" y="4430.0">scala/co..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/parallel/Task.tryLeaf$ (641 samples, 6.52%)</title><rect x="370.2" y="4403.0" width="77.0" height="15" fill="#3cd13c" rx="2" ry="2"/>
<text x="373.2" y="4414.0">scala/co..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/parallel/Task.tryLeaf (641 samples, 6.52%)</title><rect x="370.2" y="4387.0" width="77.0" height="15" fill="#49dd49" rx="2" ry="2"/>
<text x="373.2" y="4398.0">scala/co..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/util/control/Breaks$$anon$1.catchBreak (633 samples, 6.44%)</title><rect x="371.1" y="4371.0" width="76.1" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="374.1" y="4382.0">scala/ut..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/runtime/java8/JFunction0$mcV$sp.apply (633 samples, 6.44%)</title><rect x="371.1" y="4355.0" width="76.1" height="15" fill="#41d641" rx="2" ry="2"/>
<text x="374.1" y="4366.0">scala/ru..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/parallel/Task$$Lambda$2101/1394154467.apply$mcV$sp (633 samples, 6.44%)</title><rect x="371.1" y="4339.0" width="76.1" height="15" fill="#3bd13b" rx="2" ry="2"/>
<text x="374.1" y="4350.0">scala/co..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/parallel/Task.$anonfun$tryLeaf$1 (633 samples, 6.44%)</title><rect x="371.1" y="4323.0" width="76.1" height="15" fill="#65f765" rx="2" ry="2"/>
<text x="374.1" y="4334.0">scala/co..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/parallel/mutable/ParArray$Map.leaf (633 samples, 6.44%)</title><rect x="371.1" y="4307.0" width="76.1" height="15" fill="#40d540" rx="2" ry="2"/>
<text x="374.1" y="4318.0">scala/co..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/caching/ClasspathCache$$$Lambda$2095/1715697050.apply (633 samples, 6.44%)</title><rect x="371.1" y="4291.0" width="76.1" height="15" fill="#67f967" rx="2" ry="2"/>
<text x="374.1" y="4302.0">sbt/inte..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/caching/ClasspathCache$.$anonfun$hashClasspath$1 (633 samples, 6.44%)</title><rect x="371.1" y="4275.0" width="76.1" height="15" fill="#61f361" rx="2" ry="2"/>
<text x="374.1" y="4286.0">sbt/inte..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/caching/ClasspathCache$.fromCacheOrHash$1 (633 samples, 6.44%)</title><rect x="371.1" y="4259.0" width="76.1" height="15" fill="#6bfd6b" rx="2" ry="2"/>
<text x="374.1" y="4270.0">sbt/inte..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/caching/ClasspathCache$.genFileHash (610 samples, 6.21%)</title><rect x="372.7" y="4243.0" width="73.3" height="15" fill="#41d541" rx="2" ry="2"/>
<text x="375.7" y="4254.0">sbt/inte..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/Stamper$$$Lambda$1402/1741892180.apply (609 samples, 6.20%)</title><rect x="372.8" y="4227.0" width="73.2" height="15" fill="#43d743" rx="2" ry="2"/>
<text x="375.8" y="4238.0">sbt/inte..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/Stamper$.$anonfun$forHash$1 (609 samples, 6.20%)</title><rect x="372.8" y="4211.0" width="73.2" height="15" fill="#52e652" rx="2" ry="2"/>
<text x="375.8" y="4222.0">sbt/inte..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/Stamper$.tryStamp (608 samples, 6.19%)</title><rect x="372.9" y="4195.0" width="73.1" height="15" fill="#5def5d" rx="2" ry="2"/>
<text x="375.9" y="4206.0">sbt/inte..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/Stamper$$$Lambda$2116/1291307796.apply (608 samples, 6.19%)</title><rect x="372.9" y="4179.0" width="73.1" height="15" fill="#50e450" rx="2" ry="2"/>
<text x="375.9" y="4190.0">sbt/inte..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/Stamper$.$anonfun$forHash$2 (608 samples, 6.19%)</title><rect x="372.9" y="4163.0" width="73.1" height="15" fill="#4fe24f" rx="2" ry="2"/>
<text x="375.9" y="4174.0">sbt/inte..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/Hash$.ofFile (606 samples, 6.17%)</title><rect x="373.2" y="4147.0" width="72.8" height="15" fill="#47db47" rx="2" ry="2"/>
<text x="376.2" y="4158.0">sbt/inte..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/io/Hash$.apply (602 samples, 6.13%)</title><rect x="373.2" y="4131.0" width="72.3" height="15" fill="#65f765" rx="2" ry="2"/>
<text x="376.2" y="4142.0">sbt/io/H..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/io/Using.apply (600 samples, 6.11%)</title><rect x="373.4" y="4115.0" width="72.1" height="15" fill="#4ade4a" rx="2" ry="2"/>
<text x="376.4" y="4126.0">sbt/io/U..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/io/Hash$$$Lambda$2123/530411336.apply (593 samples, 6.04%)</title><rect x="373.4" y="4099.0" width="71.2" height="15" fill="#33c933" rx="2" ry="2"/>
<text x="376.4" y="4110.0">sbt/io/H..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/io/Hash$.$anonfun$apply$1 (593 samples, 6.04%)</title><rect x="373.4" y="4083.0" width="71.2" height="15" fill="#68fa68" rx="2" ry="2"/>
<text x="376.4" y="4094.0">sbt/io/H..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/io/Hash$.apply (593 samples, 6.04%)</title><rect x="373.4" y="4067.0" width="71.2" height="15" fill="#6bfc6b" rx="2" ry="2"/>
<text x="376.4" y="4078.0">sbt/io/H..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/FilterInputStream.read (590 samples, 6.01%)</title><rect x="373.5" y="4051.0" width="70.9" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="376.5" y="4062.0">java/io/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/security/DigestInputStream.read (589 samples, 5.99%)</title><rect x="373.7" y="4035.0" width="70.7" height="15" fill="#6dfe6d" rx="2" ry="2"/>
<text x="376.7" y="4046.0">java/sec..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/BufferedInputStream.read (419 samples, 4.26%)</title><rect x="373.7" y="4019.0" width="50.3" height="15" fill="#4ade4a" rx="2" ry="2"/>
<text x="376.7" y="4030.0">java/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/BufferedInputStream.read1 (418 samples, 4.25%)</title><rect x="373.7" y="4003.0" width="50.2" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="376.7" y="4014.0">java/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/FileInputStream.read (418 samples, 4.25%)</title><rect x="373.7" y="3987.0" width="50.2" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="376.7" y="3998.0">java/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/FileInputStream.readBytes (418 samples, 4.25%)</title><rect x="373.7" y="3971.0" width="50.2" height="15" fill="#4ade4a" rx="2" ry="2"/>
<text x="376.7" y="3982.0">java/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/security/MessageDigest.update (170 samples, 1.73%)</title><rect x="424.0" y="4019.0" width="20.4" height="15" fill="#34ca34" rx="2" ry="2"/>
<text x="427.0" y="4030.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/security/MessageDigest$Delegate.engineUpdate (170 samples, 1.73%)</title><rect x="424.0" y="4003.0" width="20.4" height="15" fill="#52e552" rx="2" ry="2"/>
<text x="427.0" y="4014.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/security/provider/DigestBase.engineUpdate (170 samples, 1.73%)</title><rect x="424.0" y="3987.0" width="20.4" height="15" fill="#39cf39" rx="2" ry="2"/>
<text x="427.0" y="3998.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/security/provider/DigestBase.implCompressMultiBlock (169 samples, 1.72%)</title><rect x="424.1" y="3971.0" width="20.3" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="427.1" y="3982.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/security/provider/SHA.implCompress (167 samples, 1.70%)</title><rect x="424.4" y="3955.0" width="20.0" height="15" fill="#6cfd6c" rx="2" ry="2"/>
<text x="427.4" y="3966.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/io/IO$.getModifiedTimeOrZero (10 samples, 0.10%)</title><rect x="446.0" y="4243.0" width="1.2" height="15" fill="#5aed5a" rx="2" ry="2"/>
<text x="449.0" y="4254.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/io/IO$.getModifiedTime (10 samples, 0.10%)</title><rect x="446.0" y="4227.0" width="1.2" height="15" fill="#3ed33e" rx="2" ry="2"/>
<text x="449.0" y="4238.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/io/Milli$.getModifiedTime (10 samples, 0.10%)</title><rect x="446.0" y="4211.0" width="1.2" height="15" fill="#53e753" rx="2" ry="2"/>
<text x="449.0" y="4222.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/io/MilliNative.getModifiedTime (10 samples, 0.10%)</title><rect x="446.0" y="4195.0" width="1.2" height="15" fill="#63f563" rx="2" ry="2"/>
<text x="449.0" y="4206.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/io/MacMilli$.getModifiedTimeNative (10 samples, 0.10%)</title><rect x="446.0" y="4179.0" width="1.2" height="15" fill="#43d843" rx="2" ry="2"/>
<text x="449.0" y="4190.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/io/MacMilli$.getModifiedTimeNative (10 samples, 0.10%)</title><rect x="446.0" y="4163.0" width="1.2" height="15" fill="#44d844" rx="2" ry="2"/>
<text x="449.0" y="4174.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>xsbt/boot/Boot.main (6180 samples, 62.90%)</title><rect x="447.8" y="4595.0" width="742.2" height="15" fill="#6cfd6c" rx="2" ry="2"/>
<text x="450.8" y="4606.0">xsbt/boot/Boot.main</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>xsbt/boot/Boot$.main (6180 samples, 62.90%)</title><rect x="447.8" y="4579.0" width="742.2" height="15" fill="#6dfe6d" rx="2" ry="2"/>
<text x="450.8" y="4590.0">xsbt/boot/Boot$.main</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>xsbt/boot/Boot$.runImpl (6176 samples, 62.86%)</title><rect x="447.9" y="4563.0" width="741.7" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="450.9" y="4574.0">xsbt/boot/Boot$.runImpl</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>xsbt/boot/Launch$.apply (6174 samples, 62.84%)</title><rect x="448.1" y="4547.0" width="741.5" height="15" fill="#45da45" rx="2" ry="2"/>
<text x="451.1" y="4558.0">xsbt/boot/Launch$.apply</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>xsbt/boot/Configuration$.parse$fcb646c (30 samples, 0.31%)</title><rect x="448.7" y="4531.0" width="3.6" height="15" fill="#51e451" rx="2" ry="2"/>
<text x="451.7" y="4542.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>xsbt/boot/Using$.apply (28 samples, 0.28%)</title><rect x="449.0" y="4515.0" width="3.3" height="15" fill="#36cc36" rx="2" ry="2"/>
<text x="452.0" y="4526.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>xsbt/boot/Using$.withResource (28 samples, 0.28%)</title><rect x="449.0" y="4499.0" width="3.3" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="452.0" y="4510.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>xsbt/boot/Configuration$$anonfun$parse$1.apply (28 samples, 0.28%)</title><rect x="449.0" y="4483.0" width="3.3" height="15" fill="#5aed5a" rx="2" ry="2"/>
<text x="452.0" y="4494.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>xsbt/boot/Using$.apply (28 samples, 0.28%)</title><rect x="449.0" y="4467.0" width="3.3" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="452.0" y="4478.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>xsbt/boot/Using$.withResource (28 samples, 0.28%)</title><rect x="449.0" y="4451.0" width="3.3" height="15" fill="#3ed33e" rx="2" ry="2"/>
<text x="452.0" y="4462.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>xsbt/boot/ConfigurationParser$$anonfun$apply$3.apply (28 samples, 0.28%)</title><rect x="449.0" y="4435.0" width="3.3" height="15" fill="#3ed33e" rx="2" ry="2"/>
<text x="452.0" y="4446.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>xsbt/boot/ConfigurationParser.xsbt$boot$ConfigurationParser$$apply (28 samples, 0.28%)</title><rect x="449.0" y="4419.0" width="3.3" height="15" fill="#3bd13b" rx="2" ry="2"/>
<text x="452.0" y="4430.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>xsbt/boot/ConfigurationParser.processSection (18 samples, 0.18%)</title><rect x="449.7" y="4403.0" width="2.2" height="15" fill="#42d742" rx="2" ry="2"/>
<text x="452.7" y="4414.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>xsbt/boot/ConfigurationParser.process (18 samples, 0.18%)</title><rect x="449.7" y="4387.0" width="2.2" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="452.7" y="4398.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>xsbt/boot/ConfigurationParser$$anonfun$processSection$1.apply (18 samples, 0.18%)</title><rect x="449.7" y="4371.0" width="2.2" height="15" fill="#61f361" rx="2" ry="2"/>
<text x="452.7" y="4382.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>xsbt/boot/Launch$.launch (6133 samples, 62.42%)</title><rect x="452.7" y="4531.0" width="736.6" height="15" fill="#66f766" rx="2" ry="2"/>
<text x="455.7" y="4542.0">xsbt/boot/Launch$.launch</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>xsbt/boot/Launch$$anonfun$apply$1.apply (6133 samples, 62.42%)</title><rect x="452.7" y="4515.0" width="736.6" height="15" fill="#61f361" rx="2" ry="2"/>
<text x="455.7" y="4526.0">xsbt/boot/Launch$$anonfun$apply$1.apply</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>xsbt/boot/Launch$.run (6133 samples, 62.42%)</title><rect x="452.7" y="4499.0" width="736.6" height="15" fill="#37cc37" rx="2" ry="2"/>
<text x="455.7" y="4510.0">xsbt/boot/Launch$.run</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>xsbt/boot/Launch$$anon$6.newMain (12 samples, 0.12%)</title><rect x="452.8" y="4483.0" width="1.5" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="455.8" y="4494.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>xsbt/boot/Launch$$anon$6.entryPoint (12 samples, 0.12%)</title><rect x="452.8" y="4467.0" width="1.5" height="15" fill="#40d540" rx="2" ry="2"/>
<text x="455.8" y="4478.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>xsbt/boot/Launch$$anon$6.entryPoint$lzycompute (12 samples, 0.12%)</title><rect x="452.8" y="4451.0" width="1.5" height="15" fill="#5ff15f" rx="2" ry="2"/>
<text x="455.8" y="4462.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Class.forName (12 samples, 0.12%)</title><rect x="452.8" y="4435.0" width="1.5" height="15" fill="#51e451" rx="2" ry="2"/>
<text x="455.8" y="4446.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Class.forName0 (12 samples, 0.12%)</title><rect x="452.8" y="4419.0" width="1.5" height="15" fill="#49dd49" rx="2" ry="2"/>
<text x="455.8" y="4430.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.loadClass (12 samples, 0.12%)</title><rect x="452.8" y="4403.0" width="1.5" height="15" fill="#66f766" rx="2" ry="2"/>
<text x="455.8" y="4414.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.loadClass (12 samples, 0.12%)</title><rect x="452.8" y="4387.0" width="1.5" height="15" fill="#45da45" rx="2" ry="2"/>
<text x="455.8" y="4398.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.loadClass (12 samples, 0.12%)</title><rect x="452.8" y="4371.0" width="1.5" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="455.8" y="4382.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.loadClass (12 samples, 0.12%)</title><rect x="452.8" y="4355.0" width="1.5" height="15" fill="#60f260" rx="2" ry="2"/>
<text x="455.8" y="4366.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.findClass (12 samples, 0.12%)</title><rect x="452.8" y="4339.0" width="1.5" height="15" fill="#6dfe6d" rx="2" ry="2"/>
<text x="455.8" y="4350.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/security/AccessController.doPrivileged (12 samples, 0.12%)</title><rect x="452.8" y="4323.0" width="1.5" height="15" fill="#6bfc6b" rx="2" ry="2"/>
<text x="455.8" y="4334.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader$1.run (12 samples, 0.12%)</title><rect x="452.8" y="4307.0" width="1.5" height="15" fill="#63f563" rx="2" ry="2"/>
<text x="455.8" y="4318.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader$1.run (12 samples, 0.12%)</title><rect x="452.8" y="4291.0" width="1.5" height="15" fill="#60f260" rx="2" ry="2"/>
<text x="455.8" y="4302.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.access$100 (12 samples, 0.12%)</title><rect x="452.8" y="4275.0" width="1.5" height="15" fill="#5bed5b" rx="2" ry="2"/>
<text x="455.8" y="4286.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.defineClass (12 samples, 0.12%)</title><rect x="452.8" y="4259.0" width="1.5" height="15" fill="#64f664" rx="2" ry="2"/>
<text x="455.8" y="4270.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/security/SecureClassLoader.defineClass (12 samples, 0.12%)</title><rect x="452.8" y="4243.0" width="1.5" height="15" fill="#57ea57" rx="2" ry="2"/>
<text x="455.8" y="4254.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.defineClass (12 samples, 0.12%)</title><rect x="452.8" y="4227.0" width="1.5" height="15" fill="#60f260" rx="2" ry="2"/>
<text x="455.8" y="4238.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.defineClass1 (12 samples, 0.12%)</title><rect x="452.8" y="4211.0" width="1.5" height="15" fill="#49dd49" rx="2" ry="2"/>
<text x="455.8" y="4222.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.loadClass (11 samples, 0.11%)</title><rect x="452.9" y="4195.0" width="1.4" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="455.9" y="4206.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.loadClass (11 samples, 0.11%)</title><rect x="452.9" y="4179.0" width="1.4" height="15" fill="#4bdf4b" rx="2" ry="2"/>
<text x="455.9" y="4190.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.findClass (11 samples, 0.11%)</title><rect x="452.9" y="4163.0" width="1.4" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="455.9" y="4174.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/security/AccessController.doPrivileged (11 samples, 0.11%)</title><rect x="452.9" y="4147.0" width="1.4" height="15" fill="#4ee24e" rx="2" ry="2"/>
<text x="455.9" y="4158.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader$1.run (11 samples, 0.11%)</title><rect x="452.9" y="4131.0" width="1.4" height="15" fill="#5bed5b" rx="2" ry="2"/>
<text x="455.9" y="4142.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader$1.run (11 samples, 0.11%)</title><rect x="452.9" y="4115.0" width="1.4" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="455.9" y="4126.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.access$100 (10 samples, 0.10%)</title><rect x="452.9" y="4099.0" width="1.2" height="15" fill="#53e653" rx="2" ry="2"/>
<text x="455.9" y="4110.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.defineClass (10 samples, 0.10%)</title><rect x="452.9" y="4083.0" width="1.2" height="15" fill="#43d843" rx="2" ry="2"/>
<text x="455.9" y="4094.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/security/SecureClassLoader.defineClass (10 samples, 0.10%)</title><rect x="452.9" y="4067.0" width="1.2" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="455.9" y="4078.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.defineClass (10 samples, 0.10%)</title><rect x="452.9" y="4051.0" width="1.2" height="15" fill="#4ee24e" rx="2" ry="2"/>
<text x="455.9" y="4062.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.defineClass1 (10 samples, 0.10%)</title><rect x="452.9" y="4035.0" width="1.2" height="15" fill="#67f967" rx="2" ry="2"/>
<text x="455.9" y="4046.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>xsbt/boot/Launch$.withContextLoader (4716 samples, 48.00%)</title><rect x="454.3" y="4483.0" width="566.4" height="15" fill="#4bdf4b" rx="2" ry="2"/>
<text x="457.3" y="4494.0">xsbt/boot/Launch$.withContextLoader</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>xsbt/boot/Launch$$anonfun$run$1.apply (4716 samples, 48.00%)</title><rect x="454.3" y="4467.0" width="566.4" height="15" fill="#41d641" rx="2" ry="2"/>
<text x="457.3" y="4478.0">xsbt/boot/Launch$$anonfun$run$1.apply</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/xMain.run (4716 samples, 48.00%)</title><rect x="454.3" y="4451.0" width="566.4" height="15" fill="#4de14d" rx="2" ry="2"/>
<text x="457.3" y="4462.0">sbt/xMain.run</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.loadClass (38 samples, 0.39%)</title><rect x="454.4" y="4435.0" width="4.5" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="457.4" y="4446.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.loadClass (38 samples, 0.39%)</title><rect x="454.4" y="4419.0" width="4.5" height="15" fill="#59ec59" rx="2" ry="2"/>
<text x="457.4" y="4430.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.findClass (31 samples, 0.32%)</title><rect x="455.2" y="4403.0" width="3.7" height="15" fill="#37cd37" rx="2" ry="2"/>
<text x="458.2" y="4414.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/security/AccessController.doPrivileged (30 samples, 0.31%)</title><rect x="455.3" y="4387.0" width="3.6" height="15" fill="#53e653" rx="2" ry="2"/>
<text x="458.3" y="4398.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader$1.run (30 samples, 0.31%)</title><rect x="455.3" y="4371.0" width="3.6" height="15" fill="#5aed5a" rx="2" ry="2"/>
<text x="458.3" y="4382.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader$1.run (30 samples, 0.31%)</title><rect x="455.3" y="4355.0" width="3.6" height="15" fill="#5aec5a" rx="2" ry="2"/>
<text x="458.3" y="4366.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.access$100 (23 samples, 0.23%)</title><rect x="455.3" y="4339.0" width="2.8" height="15" fill="#5ef05e" rx="2" ry="2"/>
<text x="458.3" y="4350.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.defineClass (23 samples, 0.23%)</title><rect x="455.3" y="4323.0" width="2.8" height="15" fill="#59eb59" rx="2" ry="2"/>
<text x="458.3" y="4334.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/security/SecureClassLoader.defineClass (22 samples, 0.22%)</title><rect x="455.3" y="4307.0" width="2.7" height="15" fill="#6cfe6c" rx="2" ry="2"/>
<text x="458.3" y="4318.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.defineClass (22 samples, 0.22%)</title><rect x="455.3" y="4291.0" width="2.7" height="15" fill="#42d742" rx="2" ry="2"/>
<text x="458.3" y="4302.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.defineClass1 (22 samples, 0.22%)</title><rect x="455.3" y="4275.0" width="2.7" height="15" fill="#60f360" rx="2" ry="2"/>
<text x="458.3" y="4286.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.loadClass (15 samples, 0.15%)</title><rect x="456.2" y="4259.0" width="1.8" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="459.2" y="4270.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.loadClass (15 samples, 0.15%)</title><rect x="456.2" y="4243.0" width="1.8" height="15" fill="#37cc37" rx="2" ry="2"/>
<text x="459.2" y="4254.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.findClass (15 samples, 0.15%)</title><rect x="456.2" y="4227.0" width="1.8" height="15" fill="#35cb35" rx="2" ry="2"/>
<text x="459.2" y="4238.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/security/AccessController.doPrivileged (15 samples, 0.15%)</title><rect x="456.2" y="4211.0" width="1.8" height="15" fill="#69fa69" rx="2" ry="2"/>
<text x="459.2" y="4222.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader$1.run (15 samples, 0.15%)</title><rect x="456.2" y="4195.0" width="1.8" height="15" fill="#3ed33e" rx="2" ry="2"/>
<text x="459.2" y="4206.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader$1.run (15 samples, 0.15%)</title><rect x="456.2" y="4179.0" width="1.8" height="15" fill="#60f260" rx="2" ry="2"/>
<text x="459.2" y="4190.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.access$100 (15 samples, 0.15%)</title><rect x="456.2" y="4163.0" width="1.8" height="15" fill="#41d541" rx="2" ry="2"/>
<text x="459.2" y="4174.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.defineClass (15 samples, 0.15%)</title><rect x="456.2" y="4147.0" width="1.8" height="15" fill="#43d743" rx="2" ry="2"/>
<text x="459.2" y="4158.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/security/SecureClassLoader.defineClass (14 samples, 0.14%)</title><rect x="456.2" y="4131.0" width="1.7" height="15" fill="#5ef05e" rx="2" ry="2"/>
<text x="459.2" y="4142.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.defineClass (14 samples, 0.14%)</title><rect x="456.2" y="4115.0" width="1.7" height="15" fill="#43d843" rx="2" ry="2"/>
<text x="459.2" y="4126.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.defineClass1 (14 samples, 0.14%)</title><rect x="456.2" y="4099.0" width="1.7" height="15" fill="#4ee24e" rx="2" ry="2"/>
<text x="459.2" y="4110.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.loadClass (9 samples, 0.09%)</title><rect x="456.8" y="4083.0" width="1.1" height="15" fill="#68fa68" rx="2" ry="2"/>
<text x="459.8" y="4094.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.loadClass (9 samples, 0.09%)</title><rect x="456.8" y="4067.0" width="1.1" height="15" fill="#69fa69" rx="2" ry="2"/>
<text x="459.8" y="4078.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.findClass (9 samples, 0.09%)</title><rect x="456.8" y="4051.0" width="1.1" height="15" fill="#67f967" rx="2" ry="2"/>
<text x="459.8" y="4062.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/security/AccessController.doPrivileged (9 samples, 0.09%)</title><rect x="456.8" y="4035.0" width="1.1" height="15" fill="#41d541" rx="2" ry="2"/>
<text x="459.8" y="4046.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader$1.run (9 samples, 0.09%)</title><rect x="456.8" y="4019.0" width="1.1" height="15" fill="#5ff15f" rx="2" ry="2"/>
<text x="459.8" y="4030.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader$1.run (9 samples, 0.09%)</title><rect x="456.8" y="4003.0" width="1.1" height="15" fill="#5bed5b" rx="2" ry="2"/>
<text x="459.8" y="4014.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.access$100 (9 samples, 0.09%)</title><rect x="456.8" y="3987.0" width="1.1" height="15" fill="#4ee14e" rx="2" ry="2"/>
<text x="459.8" y="3998.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.defineClass (9 samples, 0.09%)</title><rect x="456.8" y="3971.0" width="1.1" height="15" fill="#4ee24e" rx="2" ry="2"/>
<text x="459.8" y="3982.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/security/SecureClassLoader.defineClass (9 samples, 0.09%)</title><rect x="456.8" y="3955.0" width="1.1" height="15" fill="#3ed33e" rx="2" ry="2"/>
<text x="459.8" y="3966.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.defineClass (9 samples, 0.09%)</title><rect x="456.8" y="3939.0" width="1.1" height="15" fill="#50e350" rx="2" ry="2"/>
<text x="459.8" y="3950.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.defineClass1 (9 samples, 0.09%)</title><rect x="456.8" y="3923.0" width="1.1" height="15" fill="#67f967" rx="2" ry="2"/>
<text x="459.8" y="3934.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/BasicCommands$.&lt;clinit&gt; (26 samples, 0.26%)</title><rect x="458.9" y="4435.0" width="3.2" height="15" fill="#64f564" rx="2" ry="2"/>
<text x="461.9" y="4446.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/BasicCommands$.&lt;init&gt; (26 samples, 0.26%)</title><rect x="458.9" y="4419.0" width="3.2" height="15" fill="#6bfc6b" rx="2" ry="2"/>
<text x="461.9" y="4430.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/AttributeKey$.apply (15 samples, 0.15%)</title><rect x="458.9" y="4403.0" width="1.8" height="15" fill="#6cfd6c" rx="2" ry="2"/>
<text x="461.9" y="4414.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/AttributeKey$.apply (15 samples, 0.15%)</title><rect x="458.9" y="4387.0" width="1.8" height="15" fill="#69fa69" rx="2" ry="2"/>
<text x="461.9" y="4398.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/AttributeKey$.apply (15 samples, 0.15%)</title><rect x="458.9" y="4371.0" width="1.8" height="15" fill="#3ad03a" rx="2" ry="2"/>
<text x="461.9" y="4382.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/AttributeKey$.make (15 samples, 0.15%)</title><rect x="458.9" y="4355.0" width="1.8" height="15" fill="#41d641" rx="2" ry="2"/>
<text x="461.9" y="4366.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/AttributeKey$$anon$1.&lt;init&gt; (14 samples, 0.14%)</title><rect x="459.1" y="4339.0" width="1.6" height="15" fill="#49dd49" rx="2" ry="2"/>
<text x="462.1" y="4350.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Util$.hyphenToCamel (11 samples, 0.11%)</title><rect x="459.3" y="4323.0" width="1.3" height="15" fill="#60f260" rx="2" ry="2"/>
<text x="462.3" y="4334.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/util/matching/Regex.replaceAllIn (9 samples, 0.09%)</title><rect x="459.5" y="4307.0" width="1.1" height="15" fill="#60f260" rx="2" ry="2"/>
<text x="462.5" y="4318.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/ManifestFactory$.classType (11 samples, 0.11%)</title><rect x="460.7" y="4403.0" width="1.4" height="15" fill="#60f260" rx="2" ry="2"/>
<text x="463.7" y="4414.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractTraversable.toList (11 samples, 0.11%)</title><rect x="460.7" y="4387.0" width="1.4" height="15" fill="#4de04d" rx="2" ry="2"/>
<text x="463.7" y="4398.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.toList$ (11 samples, 0.11%)</title><rect x="460.7" y="4371.0" width="1.4" height="15" fill="#4bdf4b" rx="2" ry="2"/>
<text x="463.7" y="4382.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.toList (11 samples, 0.11%)</title><rect x="460.7" y="4355.0" width="1.4" height="15" fill="#58ea58" rx="2" ry="2"/>
<text x="463.7" y="4366.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractTraversable.to (11 samples, 0.11%)</title><rect x="460.7" y="4339.0" width="1.4" height="15" fill="#58eb58" rx="2" ry="2"/>
<text x="463.7" y="4350.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.to$ (11 samples, 0.11%)</title><rect x="460.7" y="4323.0" width="1.4" height="15" fill="#5ef05e" rx="2" ry="2"/>
<text x="463.7" y="4334.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.to (11 samples, 0.11%)</title><rect x="460.7" y="4307.0" width="1.4" height="15" fill="#63f563" rx="2" ry="2"/>
<text x="463.7" y="4318.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/generic/GenTraversableFactory$$anon$1.apply (10 samples, 0.10%)</title><rect x="460.7" y="4291.0" width="1.2" height="15" fill="#42d642" rx="2" ry="2"/>
<text x="463.7" y="4302.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/List$.newBuilder (10 samples, 0.10%)</title><rect x="460.7" y="4275.0" width="1.2" height="15" fill="#60f260" rx="2" ry="2"/>
<text x="463.7" y="4286.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/BuiltinCommands$.defaults (66 samples, 0.67%)</title><rect x="463.3" y="4435.0" width="7.9" height="15" fill="#3cd13c" rx="2" ry="2"/>
<text x="466.3" y="4446.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Command$.command (23 samples, 0.23%)</title><rect x="463.5" y="4419.0" width="2.8" height="15" fill="#39ce39" rx="2" ry="2"/>
<text x="466.5" y="4430.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Command$.make (23 samples, 0.23%)</title><rect x="463.5" y="4403.0" width="2.8" height="15" fill="#61f361" rx="2" ry="2"/>
<text x="466.5" y="4414.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/SimpleCommand.&lt;init&gt; (22 samples, 0.22%)</title><rect x="463.6" y="4387.0" width="2.7" height="15" fill="#6dfe6d" rx="2" ry="2"/>
<text x="466.6" y="4398.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Command$.validID (22 samples, 0.22%)</title><rect x="463.6" y="4371.0" width="2.7" height="15" fill="#36cc36" rx="2" ry="2"/>
<text x="466.6" y="4382.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/complete/DefaultParsers$.OpOrID (9 samples, 0.09%)</title><rect x="464.1" y="4355.0" width="1.1" height="15" fill="#4bdf4b" rx="2" ry="2"/>
<text x="467.1" y="4366.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/complete/DefaultParsers$.OpOrID$lzycompute (9 samples, 0.09%)</title><rect x="464.1" y="4339.0" width="1.1" height="15" fill="#64f664" rx="2" ry="2"/>
<text x="467.1" y="4350.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/complete/Parsers.OpOrID$ (9 samples, 0.09%)</title><rect x="464.1" y="4323.0" width="1.1" height="15" fill="#58ea58" rx="2" ry="2"/>
<text x="467.1" y="4334.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/complete/Parsers.OpOrID (9 samples, 0.09%)</title><rect x="464.1" y="4307.0" width="1.1" height="15" fill="#6afb6a" rx="2" ry="2"/>
<text x="467.1" y="4318.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/complete/DefaultParsers$.matches (9 samples, 0.09%)</title><rect x="465.2" y="4355.0" width="1.1" height="15" fill="#4bdf4b" rx="2" ry="2"/>
<text x="468.2" y="4366.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/CommandStrings$.&lt;clinit&gt; (33 samples, 0.34%)</title><rect x="467.2" y="4419.0" width="4.0" height="15" fill="#6afc6a" rx="2" ry="2"/>
<text x="470.2" y="4430.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/CommandStrings$.&lt;init&gt; (33 samples, 0.34%)</title><rect x="467.2" y="4403.0" width="4.0" height="15" fill="#61f361" rx="2" ry="2"/>
<text x="470.2" y="4414.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/LowPriorityImplicits.wrapRefArray (19 samples, 0.19%)</title><rect x="467.7" y="4387.0" width="2.3" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="470.7" y="4398.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.loadClass (17 samples, 0.17%)</title><rect x="467.9" y="4371.0" width="2.1" height="15" fill="#40d540" rx="2" ry="2"/>
<text x="470.9" y="4382.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.loadClass (17 samples, 0.17%)</title><rect x="467.9" y="4355.0" width="2.1" height="15" fill="#63f563" rx="2" ry="2"/>
<text x="470.9" y="4366.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.findClass (17 samples, 0.17%)</title><rect x="467.9" y="4339.0" width="2.1" height="15" fill="#34ca34" rx="2" ry="2"/>
<text x="470.9" y="4350.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/security/AccessController.doPrivileged (17 samples, 0.17%)</title><rect x="467.9" y="4323.0" width="2.1" height="15" fill="#3fd43f" rx="2" ry="2"/>
<text x="470.9" y="4334.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader$1.run (17 samples, 0.17%)</title><rect x="467.9" y="4307.0" width="2.1" height="15" fill="#37cd37" rx="2" ry="2"/>
<text x="470.9" y="4318.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader$1.run (17 samples, 0.17%)</title><rect x="467.9" y="4291.0" width="2.1" height="15" fill="#65f765" rx="2" ry="2"/>
<text x="470.9" y="4302.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.access$100 (16 samples, 0.16%)</title><rect x="467.9" y="4275.0" width="2.0" height="15" fill="#34ca34" rx="2" ry="2"/>
<text x="470.9" y="4286.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.defineClass (16 samples, 0.16%)</title><rect x="467.9" y="4259.0" width="2.0" height="15" fill="#6bfc6b" rx="2" ry="2"/>
<text x="470.9" y="4270.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/security/SecureClassLoader.defineClass (16 samples, 0.16%)</title><rect x="467.9" y="4243.0" width="2.0" height="15" fill="#63f563" rx="2" ry="2"/>
<text x="470.9" y="4254.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.defineClass (16 samples, 0.16%)</title><rect x="467.9" y="4227.0" width="2.0" height="15" fill="#66f766" rx="2" ry="2"/>
<text x="470.9" y="4238.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.defineClass1 (16 samples, 0.16%)</title><rect x="467.9" y="4211.0" width="2.0" height="15" fill="#50e450" rx="2" ry="2"/>
<text x="470.9" y="4222.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/StandardMain$.&lt;clinit&gt; (68 samples, 0.69%)</title><rect x="471.2" y="4435.0" width="8.2" height="15" fill="#5ff15f" rx="2" ry="2"/>
<text x="474.2" y="4446.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/StandardMain$.&lt;init&gt; (68 samples, 0.69%)</title><rect x="471.2" y="4419.0" width="8.2" height="15" fill="#6dfe6d" rx="2" ry="2"/>
<text x="474.2" y="4430.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/ConsoleOut$.overwriteContaining (48 samples, 0.49%)</title><rect x="471.2" y="4403.0" width="5.8" height="15" fill="#4bde4b" rx="2" ry="2"/>
<text x="474.2" y="4414.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/invoke/MethodHandleNatives.linkCallSite (13 samples, 0.13%)</title><rect x="471.7" y="4387.0" width="1.5" height="15" fill="#3ed33e" rx="2" ry="2"/>
<text x="474.7" y="4398.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/invoke/MethodHandleNatives.linkCallSiteImpl (13 samples, 0.13%)</title><rect x="471.7" y="4371.0" width="1.5" height="15" fill="#4ade4a" rx="2" ry="2"/>
<text x="474.7" y="4382.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/invoke/CallSite.makeSite (13 samples, 0.13%)</title><rect x="471.7" y="4355.0" width="1.5" height="15" fill="#38cd38" rx="2" ry="2"/>
<text x="474.7" y="4366.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/invoke/MethodHandleNatives.linkMethodHandleConstant (31 samples, 0.32%)</title><rect x="473.2" y="4387.0" width="3.8" height="15" fill="#47db47" rx="2" ry="2"/>
<text x="476.2" y="4398.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/invoke/MethodHandles$Lookup.linkMethodHandleConstant (29 samples, 0.30%)</title><rect x="473.5" y="4371.0" width="3.5" height="15" fill="#37cd37" rx="2" ry="2"/>
<text x="476.5" y="4382.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/invoke/MethodHandles$Lookup.getDirectMethodForConstant (29 samples, 0.30%)</title><rect x="473.5" y="4355.0" width="3.5" height="15" fill="#3ed33e" rx="2" ry="2"/>
<text x="476.5" y="4366.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/invoke/MethodHandles$Lookup.getDirectMethodNoSecurityManager (29 samples, 0.30%)</title><rect x="473.5" y="4339.0" width="3.5" height="15" fill="#49dd49" rx="2" ry="2"/>
<text x="476.5" y="4350.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/invoke/MethodHandles$Lookup.getDirectMethodCommon (29 samples, 0.30%)</title><rect x="473.5" y="4323.0" width="3.5" height="15" fill="#63f563" rx="2" ry="2"/>
<text x="476.5" y="4334.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/invoke/DirectMethodHandle.make (14 samples, 0.14%)</title><rect x="473.6" y="4307.0" width="1.7" height="15" fill="#67f967" rx="2" ry="2"/>
<text x="476.6" y="4318.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/invoke/DirectMethodHandle.preparedLambdaForm (14 samples, 0.14%)</title><rect x="473.6" y="4291.0" width="1.7" height="15" fill="#6bfd6b" rx="2" ry="2"/>
<text x="476.6" y="4302.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/invoke/DirectMethodHandle.preparedLambdaForm (14 samples, 0.14%)</title><rect x="473.6" y="4275.0" width="1.7" height="15" fill="#63f463" rx="2" ry="2"/>
<text x="476.6" y="4286.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/invoke/DirectMethodHandle.makePreparedLambdaForm (14 samples, 0.14%)</title><rect x="473.6" y="4259.0" width="1.7" height="15" fill="#4bde4b" rx="2" ry="2"/>
<text x="476.6" y="4270.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/invoke/LambdaForm.&lt;clinit&gt; (13 samples, 0.13%)</title><rect x="473.6" y="4243.0" width="1.6" height="15" fill="#63f463" rx="2" ry="2"/>
<text x="476.6" y="4254.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/invoke/LambdaForm.createIdentityForms (10 samples, 0.10%)</title><rect x="474.0" y="4227.0" width="1.2" height="15" fill="#5def5d" rx="2" ry="2"/>
<text x="477.0" y="4238.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/invoke/MethodHandle.setVarargs (14 samples, 0.14%)</title><rect x="475.3" y="4307.0" width="1.7" height="15" fill="#4de14d" rx="2" ry="2"/>
<text x="478.3" y="4318.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/invoke/MethodHandleImpl.makeVarargsCollector (14 samples, 0.14%)</title><rect x="475.3" y="4291.0" width="1.7" height="15" fill="#4ade4a" rx="2" ry="2"/>
<text x="478.3" y="4302.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/invoke/MethodHandleImpl$AsVarargsCollector.&lt;init&gt; (14 samples, 0.14%)</title><rect x="475.3" y="4275.0" width="1.7" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="478.3" y="4286.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/invoke/MethodHandleImpl$AsVarargsCollector.&lt;init&gt; (14 samples, 0.14%)</title><rect x="475.3" y="4259.0" width="1.7" height="15" fill="#56e956" rx="2" ry="2"/>
<text x="478.3" y="4270.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/invoke/MethodHandle.asCollector (12 samples, 0.12%)</title><rect x="475.5" y="4243.0" width="1.5" height="15" fill="#5aec5a" rx="2" ry="2"/>
<text x="478.5" y="4254.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/invoke/MethodHandleImpl.varargsArray (12 samples, 0.12%)</title><rect x="475.5" y="4227.0" width="1.5" height="15" fill="#6dfe6d" rx="2" ry="2"/>
<text x="478.5" y="4238.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/invoke/MethodHandleImpl.varargsArray (12 samples, 0.12%)</title><rect x="475.5" y="4211.0" width="1.5" height="15" fill="#5ef05e" rx="2" ry="2"/>
<text x="478.5" y="4222.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/invoke/MethodHandleImpl$Lazy.&lt;clinit&gt; (11 samples, 0.11%)</title><rect x="475.6" y="4195.0" width="1.4" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="478.6" y="4206.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/ConsoleOut$.systemOutOverwrite (20 samples, 0.20%)</title><rect x="477.0" y="4403.0" width="2.4" height="15" fill="#57ea57" rx="2" ry="2"/>
<text x="480.0" y="4414.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/ConsoleOut$$anon$1.&lt;init&gt; (19 samples, 0.19%)</title><rect x="477.1" y="4387.0" width="2.3" height="15" fill="#39cf39" rx="2" ry="2"/>
<text x="480.1" y="4398.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.loadClass (19 samples, 0.19%)</title><rect x="477.1" y="4371.0" width="2.3" height="15" fill="#67f967" rx="2" ry="2"/>
<text x="480.1" y="4382.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.loadClass (19 samples, 0.19%)</title><rect x="477.1" y="4355.0" width="2.3" height="15" fill="#5aed5a" rx="2" ry="2"/>
<text x="480.1" y="4366.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.findClass (19 samples, 0.19%)</title><rect x="477.1" y="4339.0" width="2.3" height="15" fill="#45da45" rx="2" ry="2"/>
<text x="480.1" y="4350.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/security/AccessController.doPrivileged (19 samples, 0.19%)</title><rect x="477.1" y="4323.0" width="2.3" height="15" fill="#40d540" rx="2" ry="2"/>
<text x="480.1" y="4334.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader$1.run (19 samples, 0.19%)</title><rect x="477.1" y="4307.0" width="2.3" height="15" fill="#4de04d" rx="2" ry="2"/>
<text x="480.1" y="4318.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader$1.run (19 samples, 0.19%)</title><rect x="477.1" y="4291.0" width="2.3" height="15" fill="#5aed5a" rx="2" ry="2"/>
<text x="480.1" y="4302.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.access$100 (17 samples, 0.17%)</title><rect x="477.1" y="4275.0" width="2.0" height="15" fill="#41d641" rx="2" ry="2"/>
<text x="480.1" y="4286.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.defineClass (17 samples, 0.17%)</title><rect x="477.1" y="4259.0" width="2.0" height="15" fill="#3ad03a" rx="2" ry="2"/>
<text x="480.1" y="4270.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/security/SecureClassLoader.defineClass (17 samples, 0.17%)</title><rect x="477.1" y="4243.0" width="2.0" height="15" fill="#5cee5c" rx="2" ry="2"/>
<text x="480.1" y="4254.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.defineClass (17 samples, 0.17%)</title><rect x="477.1" y="4227.0" width="2.0" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="480.1" y="4238.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.defineClass1 (17 samples, 0.17%)</title><rect x="477.1" y="4211.0" width="2.0" height="15" fill="#5bee5b" rx="2" ry="2"/>
<text x="480.1" y="4222.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.loadClass (13 samples, 0.13%)</title><rect x="477.6" y="4195.0" width="1.5" height="15" fill="#36cc36" rx="2" ry="2"/>
<text x="480.6" y="4206.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.loadClass (13 samples, 0.13%)</title><rect x="477.6" y="4179.0" width="1.5" height="15" fill="#66f866" rx="2" ry="2"/>
<text x="480.6" y="4190.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.findClass (13 samples, 0.13%)</title><rect x="477.6" y="4163.0" width="1.5" height="15" fill="#3ed33e" rx="2" ry="2"/>
<text x="480.6" y="4174.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/security/AccessController.doPrivileged (13 samples, 0.13%)</title><rect x="477.6" y="4147.0" width="1.5" height="15" fill="#3fd33f" rx="2" ry="2"/>
<text x="480.6" y="4158.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader$1.run (13 samples, 0.13%)</title><rect x="477.6" y="4131.0" width="1.5" height="15" fill="#5df05d" rx="2" ry="2"/>
<text x="480.6" y="4142.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader$1.run (13 samples, 0.13%)</title><rect x="477.6" y="4115.0" width="1.5" height="15" fill="#61f361" rx="2" ry="2"/>
<text x="480.6" y="4126.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.access$100 (13 samples, 0.13%)</title><rect x="477.6" y="4099.0" width="1.5" height="15" fill="#6bfc6b" rx="2" ry="2"/>
<text x="480.6" y="4110.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.defineClass (13 samples, 0.13%)</title><rect x="477.6" y="4083.0" width="1.5" height="15" fill="#5cef5c" rx="2" ry="2"/>
<text x="480.6" y="4094.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/security/SecureClassLoader.defineClass (13 samples, 0.13%)</title><rect x="477.6" y="4067.0" width="1.5" height="15" fill="#5ef05e" rx="2" ry="2"/>
<text x="480.6" y="4078.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.defineClass (13 samples, 0.13%)</title><rect x="477.6" y="4051.0" width="1.5" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="480.6" y="4062.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.defineClass1 (13 samples, 0.13%)</title><rect x="477.6" y="4035.0" width="1.5" height="15" fill="#3ed33e" rx="2" ry="2"/>
<text x="480.6" y="4046.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/StandardMain$.initialState (1146 samples, 11.66%)</title><rect x="479.4" y="4435.0" width="137.6" height="15" fill="#33c933" rx="2" ry="2"/>
<text x="482.4" y="4446.0">sbt/StandardMain$..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/StandardMain$.initialGlobalLogging (1077 samples, 10.96%)</title><rect x="480.2" y="4419.0" width="129.3" height="15" fill="#64f664" rx="2" ry="2"/>
<text x="483.2" y="4430.0">sbt/StandardMain..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/GlobalLogging$.initial (1071 samples, 10.90%)</title><rect x="480.8" y="4403.0" width="128.6" height="15" fill="#5ff15f" rx="2" ry="2"/>
<text x="483.8" y="4414.0">sbt/internal/uti..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/ConsoleAppender$.&lt;clinit&gt; (17 samples, 0.17%)</title><rect x="481.2" y="4387.0" width="2.0" height="15" fill="#3fd43f" rx="2" ry="2"/>
<text x="484.2" y="4398.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/ConsoleAppender$.&lt;init&gt; (17 samples, 0.17%)</title><rect x="481.2" y="4371.0" width="2.0" height="15" fill="#4bdf4b" rx="2" ry="2"/>
<text x="484.2" y="4382.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/ConsoleAppender$.ansiSupported (16 samples, 0.16%)</title><rect x="481.3" y="4355.0" width="1.9" height="15" fill="#42d642" rx="2" ry="2"/>
<text x="484.3" y="4366.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jline/TerminalFactory.get (15 samples, 0.15%)</title><rect x="481.3" y="4339.0" width="1.8" height="15" fill="#5aed5a" rx="2" ry="2"/>
<text x="484.3" y="4350.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jline/TerminalFactory.get (15 samples, 0.15%)</title><rect x="481.3" y="4323.0" width="1.8" height="15" fill="#64f564" rx="2" ry="2"/>
<text x="484.3" y="4334.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jline/TerminalFactory.create (15 samples, 0.15%)</title><rect x="481.3" y="4307.0" width="1.8" height="15" fill="#35ca35" rx="2" ry="2"/>
<text x="484.3" y="4318.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jline/TerminalFactory.getFlavor (14 samples, 0.14%)</title><rect x="481.3" y="4291.0" width="1.7" height="15" fill="#57ea57" rx="2" ry="2"/>
<text x="484.3" y="4302.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Class.newInstance (14 samples, 0.14%)</title><rect x="481.3" y="4275.0" width="1.7" height="15" fill="#58ea58" rx="2" ry="2"/>
<text x="484.3" y="4286.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/reflect/Constructor.newInstance (13 samples, 0.13%)</title><rect x="481.4" y="4259.0" width="1.6" height="15" fill="#4de14d" rx="2" ry="2"/>
<text x="484.4" y="4270.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/DelegatingConstructorAccessorImpl.newInstance (13 samples, 0.13%)</title><rect x="481.4" y="4243.0" width="1.6" height="15" fill="#38ce38" rx="2" ry="2"/>
<text x="484.4" y="4254.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/NativeConstructorAccessorImpl.newInstance (13 samples, 0.13%)</title><rect x="481.4" y="4227.0" width="1.6" height="15" fill="#5def5d" rx="2" ry="2"/>
<text x="484.4" y="4238.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/NativeConstructorAccessorImpl.newInstance0 (13 samples, 0.13%)</title><rect x="481.4" y="4211.0" width="1.6" height="15" fill="#33c833" rx="2" ry="2"/>
<text x="484.4" y="4222.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jline/UnixTerminal.&lt;init&gt; (13 samples, 0.13%)</title><rect x="481.4" y="4195.0" width="1.6" height="15" fill="#4ade4a" rx="2" ry="2"/>
<text x="484.4" y="4206.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jline/UnixTerminal.&lt;init&gt; (13 samples, 0.13%)</title><rect x="481.4" y="4179.0" width="1.6" height="15" fill="#52e552" rx="2" ry="2"/>
<text x="484.4" y="4190.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/ConsoleAppender$.apply (12 samples, 0.12%)</title><rect x="483.2" y="4387.0" width="1.4" height="15" fill="#38cd38" rx="2" ry="2"/>
<text x="486.2" y="4398.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/ConsoleAppender$.apply (12 samples, 0.12%)</title><rect x="483.2" y="4371.0" width="1.4" height="15" fill="#58eb58" rx="2" ry="2"/>
<text x="486.2" y="4382.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/ConsoleAppender$.apply (12 samples, 0.12%)</title><rect x="483.2" y="4355.0" width="1.4" height="15" fill="#4cdf4c" rx="2" ry="2"/>
<text x="486.2" y="4366.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/ConsoleAppender.&lt;init&gt; (10 samples, 0.10%)</title><rect x="483.4" y="4339.0" width="1.2" height="15" fill="#33c933" rx="2" ry="2"/>
<text x="486.4" y="4350.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/util/LogExchange.dummyLayout (10 samples, 0.10%)</title><rect x="483.4" y="4323.0" width="1.2" height="15" fill="#40d540" rx="2" ry="2"/>
<text x="486.4" y="4334.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/util/LogExchange.dummyLayout$lzycompute (10 samples, 0.10%)</title><rect x="483.4" y="4307.0" width="1.2" height="15" fill="#45da45" rx="2" ry="2"/>
<text x="486.4" y="4318.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/logging/log4j/core/layout/PatternLayout$Builder.build (9 samples, 0.09%)</title><rect x="483.6" y="4291.0" width="1.0" height="15" fill="#57ea57" rx="2" ry="2"/>
<text x="486.6" y="4302.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/logging/log4j/core/layout/PatternLayout.&lt;init&gt; (9 samples, 0.09%)</title><rect x="483.6" y="4275.0" width="1.0" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="486.6" y="4286.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/logging/log4j/core/layout/PatternLayout.&lt;init&gt; (9 samples, 0.09%)</title><rect x="483.6" y="4259.0" width="1.0" height="15" fill="#52e552" rx="2" ry="2"/>
<text x="486.6" y="4270.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/logging/log4j/core/layout/PatternLayout$SerializerBuilder.build (9 samples, 0.09%)</title><rect x="483.6" y="4243.0" width="1.0" height="15" fill="#60f260" rx="2" ry="2"/>
<text x="486.6" y="4254.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/logging/log4j/core/pattern/PatternParser.parse (9 samples, 0.09%)</title><rect x="483.6" y="4227.0" width="1.0" height="15" fill="#36cc36" rx="2" ry="2"/>
<text x="486.6" y="4238.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/logging/log4j/core/pattern/PatternParser.parse (9 samples, 0.09%)</title><rect x="483.6" y="4211.0" width="1.0" height="15" fill="#5ff15f" rx="2" ry="2"/>
<text x="486.6" y="4222.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/logging/log4j/core/pattern/PatternParser.finalizeConverter (9 samples, 0.09%)</title><rect x="483.6" y="4195.0" width="1.0" height="15" fill="#34ca34" rx="2" ry="2"/>
<text x="486.6" y="4206.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/logging/log4j/core/pattern/PatternParser.createConverter (9 samples, 0.09%)</title><rect x="483.6" y="4179.0" width="1.0" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="486.6" y="4190.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/reflect/Method.invoke (9 samples, 0.09%)</title><rect x="483.6" y="4163.0" width="1.0" height="15" fill="#4ee14e" rx="2" ry="2"/>
<text x="486.6" y="4174.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/DelegatingMethodAccessorImpl.invoke (9 samples, 0.09%)</title><rect x="483.6" y="4147.0" width="1.0" height="15" fill="#64f664" rx="2" ry="2"/>
<text x="486.6" y="4158.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/NativeMethodAccessorImpl.invoke (9 samples, 0.09%)</title><rect x="483.6" y="4131.0" width="1.0" height="15" fill="#46da46" rx="2" ry="2"/>
<text x="486.6" y="4142.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/NativeMethodAccessorImpl.invoke0 (9 samples, 0.09%)</title><rect x="483.6" y="4115.0" width="1.0" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="486.6" y="4126.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/logging/log4j/core/pattern/DatePatternConverter.newInstance (9 samples, 0.09%)</title><rect x="483.6" y="4099.0" width="1.0" height="15" fill="#65f665" rx="2" ry="2"/>
<text x="486.6" y="4110.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/logging/log4j/core/pattern/DatePatternConverter.&lt;init&gt; (9 samples, 0.09%)</title><rect x="483.6" y="4083.0" width="1.0" height="15" fill="#61f361" rx="2" ry="2"/>
<text x="486.6" y="4094.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/util/LogExchange$.&lt;clinit&gt; (11 samples, 0.11%)</title><rect x="484.9" y="4387.0" width="1.3" height="15" fill="#42d742" rx="2" ry="2"/>
<text x="487.9" y="4398.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/util/LogExchange$.&lt;init&gt; (11 samples, 0.11%)</title><rect x="484.9" y="4371.0" width="1.3" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="487.9" y="4382.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/util/LogExchange.&lt;init&gt; (11 samples, 0.11%)</title><rect x="484.9" y="4355.0" width="1.3" height="15" fill="#5cee5c" rx="2" ry="2"/>
<text x="487.9" y="4366.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/generic/GenMapFactory.apply (10 samples, 0.10%)</title><rect x="485.0" y="4339.0" width="1.2" height="15" fill="#67f967" rx="2" ry="2"/>
<text x="488.0" y="4350.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/generic/MutableMapFactory.newBuilder (10 samples, 0.10%)</title><rect x="485.0" y="4323.0" width="1.2" height="15" fill="#66f766" rx="2" ry="2"/>
<text x="488.0" y="4334.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/concurrent/TrieMap$.empty (10 samples, 0.10%)</title><rect x="485.0" y="4307.0" width="1.2" height="15" fill="#4ade4a" rx="2" ry="2"/>
<text x="488.0" y="4318.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/concurrent/TrieMap$.empty (10 samples, 0.10%)</title><rect x="485.0" y="4291.0" width="1.2" height="15" fill="#3cd23c" rx="2" ry="2"/>
<text x="488.0" y="4302.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/util/LogExchange.logger (1026 samples, 10.44%)</title><rect x="486.2" y="4387.0" width="123.2" height="15" fill="#53e653" rx="2" ry="2"/>
<text x="489.2" y="4398.0">sbt/util/LogExc..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/util/LogExchange.logger (1026 samples, 10.44%)</title><rect x="486.2" y="4371.0" width="123.2" height="15" fill="#51e551" rx="2" ry="2"/>
<text x="489.2" y="4382.0">sbt/util/LogExc..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/util/LogExchange.builtInStringCodecs (750 samples, 7.63%)</title><rect x="486.6" y="4355.0" width="90.0" height="15" fill="#47db47" rx="2" ry="2"/>
<text x="489.6" y="4366.0">sbt/util/L..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/util/LogExchange.builtInStringCodecs$lzycompute (750 samples, 7.63%)</title><rect x="486.6" y="4339.0" width="90.0" height="15" fill="#5def5d" rx="2" ry="2"/>
<text x="489.6" y="4350.0">sbt/util/L..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/util/LogExchange.initStringCodecs (750 samples, 7.63%)</title><rect x="486.6" y="4323.0" width="90.0" height="15" fill="#6cfd6c" rx="2" ry="2"/>
<text x="489.6" y="4334.0">sbt/util/L..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/util/LogExchange.registerStringCodec (48 samples, 0.49%)</title><rect x="487.2" y="4307.0" width="5.7" height="15" fill="#40d440" rx="2" ry="2"/>
<text x="490.2" y="4318.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/StringTypeTag$.apply (48 samples, 0.49%)</title><rect x="487.2" y="4291.0" width="5.7" height="15" fill="#3acf3a" rx="2" ry="2"/>
<text x="490.2" y="4302.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/StringTypeTag$.retry$1 (48 samples, 0.49%)</title><rect x="487.2" y="4275.0" width="5.7" height="15" fill="#40d540" rx="2" ry="2"/>
<text x="490.2" y="4286.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/StringTypeTag$.doApply$1 (48 samples, 0.49%)</title><rect x="487.2" y="4259.0" width="5.7" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="490.2" y="4270.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/api/TypeTags$WeakTypeTagImpl.tpe (43 samples, 0.44%)</title><rect x="487.8" y="4243.0" width="5.1" height="15" fill="#63f563" rx="2" ry="2"/>
<text x="490.8" y="4254.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/api/TypeTags$WeakTypeTagImpl.tpe$lzycompute (43 samples, 0.44%)</title><rect x="487.8" y="4227.0" width="5.1" height="15" fill="#4ade4a" rx="2" ry="2"/>
<text x="490.8" y="4238.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/util/LogExchange$$typecreator2$1.apply (43 samples, 0.44%)</title><rect x="487.8" y="4211.0" width="5.1" height="15" fill="#66f766" rx="2" ry="2"/>
<text x="490.8" y="4222.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Mirrors$RootsBase.staticClass (43 samples, 0.44%)</title><rect x="487.8" y="4195.0" width="5.1" height="15" fill="#56e956" rx="2" ry="2"/>
<text x="490.8" y="4206.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Mirrors$RootsBase.staticClass (43 samples, 0.44%)</title><rect x="487.8" y="4179.0" width="5.1" height="15" fill="#34ca34" rx="2" ry="2"/>
<text x="490.8" y="4190.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Mirrors$RootsBase.staticModuleOrClass (43 samples, 0.44%)</title><rect x="487.8" y="4163.0" width="5.1" height="15" fill="#5ff15f" rx="2" ry="2"/>
<text x="490.8" y="4174.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Mirrors$RootsBase.getModuleOrClass (43 samples, 0.44%)</title><rect x="487.8" y="4147.0" width="5.1" height="15" fill="#4fe24f" rx="2" ry="2"/>
<text x="490.8" y="4158.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Mirrors$RootsBase.getModuleOrClass (43 samples, 0.44%)</title><rect x="487.8" y="4131.0" width="5.1" height="15" fill="#6cfd6c" rx="2" ry="2"/>
<text x="490.8" y="4142.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Mirrors$RootsBase.getModuleOrClass (43 samples, 0.44%)</title><rect x="487.8" y="4115.0" width="5.1" height="15" fill="#47db47" rx="2" ry="2"/>
<text x="490.8" y="4126.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Mirrors$RootsBase.getModuleOrClass (43 samples, 0.44%)</title><rect x="487.8" y="4099.0" width="5.1" height="15" fill="#5df05d" rx="2" ry="2"/>
<text x="490.8" y="4110.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types$Type.member (43 samples, 0.44%)</title><rect x="487.8" y="4083.0" width="5.1" height="15" fill="#3bd13b" rx="2" ry="2"/>
<text x="490.8" y="4094.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types$Type.memberBasedOnName (43 samples, 0.44%)</title><rect x="487.8" y="4067.0" width="5.1" height="15" fill="#66f866" rx="2" ry="2"/>
<text x="490.8" y="4078.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types$Type.findMember (43 samples, 0.44%)</title><rect x="487.8" y="4051.0" width="5.1" height="15" fill="#44d944" rx="2" ry="2"/>
<text x="490.8" y="4062.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types$Type.findMemberInternal$1 (43 samples, 0.44%)</title><rect x="487.8" y="4035.0" width="5.1" height="15" fill="#5aed5a" rx="2" ry="2"/>
<text x="490.8" y="4046.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/tpe/FindMembers$FindMember.&lt;init&gt; (43 samples, 0.44%)</title><rect x="487.8" y="4019.0" width="5.1" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="490.8" y="4030.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/tpe/FindMembers$FindMemberBase.&lt;init&gt; (43 samples, 0.44%)</title><rect x="487.8" y="4003.0" width="5.1" height="15" fill="#43d743" rx="2" ry="2"/>
<text x="490.8" y="4014.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types$TypeRef.baseClasses (43 samples, 0.44%)</title><rect x="487.8" y="3987.0" width="5.1" height="15" fill="#68f968" rx="2" ry="2"/>
<text x="490.8" y="3998.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SynchronizedSymbols$SynchronizedSymbol$$anon$1.info (43 samples, 0.44%)</title><rect x="487.8" y="3971.0" width="5.1" height="15" fill="#33c933" rx="2" ry="2"/>
<text x="490.8" y="3982.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SynchronizedSymbols$SynchronizedSymbol.info$ (43 samples, 0.44%)</title><rect x="487.8" y="3955.0" width="5.1" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="490.8" y="3966.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SynchronizedSymbols$SynchronizedSymbol.info (43 samples, 0.44%)</title><rect x="487.8" y="3939.0" width="5.1" height="15" fill="#6afb6a" rx="2" ry="2"/>
<text x="490.8" y="3950.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SynchronizedSymbols$SynchronizedSymbol.$anonfun$info$1 (43 samples, 0.44%)</title><rect x="487.8" y="3923.0" width="5.1" height="15" fill="#63f563" rx="2" ry="2"/>
<text x="490.8" y="3934.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SynchronizedSymbols$SynchronizedSymbol$$anon$1.scala$reflect$runtime$SynchronizedSymbols$SynchronizedSymbol$$super$info (43 samples, 0.44%)</title><rect x="487.8" y="3907.0" width="5.1" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="490.8" y="3918.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Symbols$Symbol.info (43 samples, 0.44%)</title><rect x="487.8" y="3891.0" width="5.1" height="15" fill="#3ed33e" rx="2" ry="2"/>
<text x="490.8" y="3902.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SymbolLoaders$LazyPackageType.complete (43 samples, 0.44%)</title><rect x="487.8" y="3875.0" width="5.1" height="15" fill="#33c933" rx="2" ry="2"/>
<text x="490.8" y="3886.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/SymbolTable.slowButSafeEnteringPhaseNotLaterThan (43 samples, 0.44%)</title><rect x="487.8" y="3859.0" width="5.1" height="15" fill="#54e854" rx="2" ry="2"/>
<text x="490.8" y="3870.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/runtime/java8/JFunction0$mcV$sp.apply (43 samples, 0.44%)</title><rect x="487.8" y="3843.0" width="5.1" height="15" fill="#58eb58" rx="2" ry="2"/>
<text x="490.8" y="3854.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SymbolLoaders$LazyPackageType$$Lambda$127/509864971.apply$mcV$sp (43 samples, 0.44%)</title><rect x="487.8" y="3827.0" width="5.1" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="490.8" y="3838.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SymbolLoaders$LazyPackageType.$anonfun$complete$3 (43 samples, 0.44%)</title><rect x="487.8" y="3811.0" width="5.1" height="15" fill="#36cb36" rx="2" ry="2"/>
<text x="490.8" y="3822.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/SymbolTable.openPackageModule (43 samples, 0.44%)</title><rect x="487.8" y="3795.0" width="5.1" height="15" fill="#44d844" rx="2" ry="2"/>
<text x="490.8" y="3806.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/SymbolTable.openPackageModule (41 samples, 0.42%)</title><rect x="487.8" y="3779.0" width="4.9" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="490.8" y="3790.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/SymbolTable.$anonfun$openPackageModule$4 (26 samples, 0.26%)</title><rect x="487.8" y="3763.0" width="3.1" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="490.8" y="3774.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/SymbolTable.openPackageModule (26 samples, 0.26%)</title><rect x="487.8" y="3747.0" width="3.1" height="15" fill="#3ed33e" rx="2" ry="2"/>
<text x="490.8" y="3758.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractIterator.foreach (10 samples, 0.10%)</title><rect x="487.8" y="3731.0" width="1.2" height="15" fill="#34c934" rx="2" ry="2"/>
<text x="490.8" y="3742.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/Iterator.foreach$ (10 samples, 0.10%)</title><rect x="487.8" y="3715.0" width="1.2" height="15" fill="#5ff15f" rx="2" ry="2"/>
<text x="490.8" y="3726.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/Iterator.foreach (10 samples, 0.10%)</title><rect x="487.8" y="3699.0" width="1.2" height="15" fill="#35cb35" rx="2" ry="2"/>
<text x="490.8" y="3710.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/SymbolTable$$Lambda$164/929706284.apply (9 samples, 0.09%)</title><rect x="487.9" y="3683.0" width="1.1" height="15" fill="#42d742" rx="2" ry="2"/>
<text x="490.9" y="3694.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/SymbolTable.$anonfun$openPackageModule$1$adapted (9 samples, 0.09%)</title><rect x="487.9" y="3667.0" width="1.1" height="15" fill="#60f260" rx="2" ry="2"/>
<text x="490.9" y="3678.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/SymbolTable.$anonfun$openPackageModule$1 (9 samples, 0.09%)</title><rect x="487.9" y="3651.0" width="1.1" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="490.9" y="3662.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SynchronizedSymbols$SynchronizedSymbol$$anon$7.info (12 samples, 0.12%)</title><rect x="489.4" y="3731.0" width="1.5" height="15" fill="#44d844" rx="2" ry="2"/>
<text x="492.4" y="3742.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SynchronizedSymbols$SynchronizedSymbol.info$ (12 samples, 0.12%)</title><rect x="489.4" y="3715.0" width="1.5" height="15" fill="#47db47" rx="2" ry="2"/>
<text x="492.4" y="3726.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SynchronizedSymbols$SynchronizedSymbol.info (12 samples, 0.12%)</title><rect x="489.4" y="3699.0" width="1.5" height="15" fill="#6cfd6c" rx="2" ry="2"/>
<text x="492.4" y="3710.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SynchronizedSymbols$SynchronizedSymbol.$anonfun$info$1 (12 samples, 0.12%)</title><rect x="489.4" y="3683.0" width="1.5" height="15" fill="#57ea57" rx="2" ry="2"/>
<text x="492.4" y="3694.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SynchronizedSymbols$SynchronizedSymbol$$anon$7.scala$reflect$runtime$SynchronizedSymbols$SynchronizedSymbol$$super$info (12 samples, 0.12%)</title><rect x="489.4" y="3667.0" width="1.5" height="15" fill="#5bee5b" rx="2" ry="2"/>
<text x="492.4" y="3678.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Symbols$Symbol.info (12 samples, 0.12%)</title><rect x="489.4" y="3651.0" width="1.5" height="15" fill="#46db46" rx="2" ry="2"/>
<text x="492.4" y="3662.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SymbolLoaders$TopClassCompleter.complete (12 samples, 0.12%)</title><rect x="489.4" y="3635.0" width="1.5" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="492.4" y="3646.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/SymbolTable.slowButSafeEnteringPhaseNotLaterThan (12 samples, 0.12%)</title><rect x="489.4" y="3619.0" width="1.5" height="15" fill="#50e450" rx="2" ry="2"/>
<text x="492.4" y="3630.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/runtime/java8/JFunction0$mcV$sp.apply (12 samples, 0.12%)</title><rect x="489.4" y="3603.0" width="1.5" height="15" fill="#53e753" rx="2" ry="2"/>
<text x="492.4" y="3614.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SymbolLoaders$TopClassCompleter$$Lambda$150/647973805.apply$mcV$sp (12 samples, 0.12%)</title><rect x="489.4" y="3587.0" width="1.5" height="15" fill="#5bee5b" rx="2" ry="2"/>
<text x="492.4" y="3598.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SymbolLoaders$TopClassCompleter.$anonfun$complete$2 (12 samples, 0.12%)</title><rect x="489.4" y="3571.0" width="1.5" height="15" fill="#5bed5b" rx="2" ry="2"/>
<text x="492.4" y="3582.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaMirrors$JavaMirror.unpickleClass (12 samples, 0.12%)</title><rect x="489.4" y="3555.0" width="1.5" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="492.4" y="3566.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/package$.universe (694 samples, 7.06%)</title><rect x="493.3" y="4307.0" width="83.3" height="15" fill="#4de14d" rx="2" ry="2"/>
<text x="496.3" y="4318.0">scala/ref..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/package$.universe$lzycompute (694 samples, 7.06%)</title><rect x="493.3" y="4291.0" width="83.3" height="15" fill="#5ef05e" rx="2" ry="2"/>
<text x="496.3" y="4302.0">scala/ref..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.loadClass (94 samples, 0.96%)</title><rect x="494.9" y="4275.0" width="11.2" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="497.9" y="4286.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.loadClass (94 samples, 0.96%)</title><rect x="494.9" y="4259.0" width="11.2" height="15" fill="#45da45" rx="2" ry="2"/>
<text x="497.9" y="4270.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.findClass (93 samples, 0.95%)</title><rect x="495.0" y="4243.0" width="11.1" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="498.0" y="4254.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/security/AccessController.doPrivileged (93 samples, 0.95%)</title><rect x="495.0" y="4227.0" width="11.1" height="15" fill="#4ce04c" rx="2" ry="2"/>
<text x="498.0" y="4238.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader$1.run (93 samples, 0.95%)</title><rect x="495.0" y="4211.0" width="11.1" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="498.0" y="4222.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader$1.run (93 samples, 0.95%)</title><rect x="495.0" y="4195.0" width="11.1" height="15" fill="#69fb69" rx="2" ry="2"/>
<text x="498.0" y="4206.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.access$100 (92 samples, 0.94%)</title><rect x="495.0" y="4179.0" width="11.0" height="15" fill="#53e653" rx="2" ry="2"/>
<text x="498.0" y="4190.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.defineClass (92 samples, 0.94%)</title><rect x="495.0" y="4163.0" width="11.0" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="498.0" y="4174.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/security/SecureClassLoader.defineClass (61 samples, 0.62%)</title><rect x="495.0" y="4147.0" width="7.3" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="498.0" y="4158.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.defineClass (61 samples, 0.62%)</title><rect x="495.0" y="4131.0" width="7.3" height="15" fill="#6dfe6d" rx="2" ry="2"/>
<text x="498.0" y="4142.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.defineClass1 (61 samples, 0.62%)</title><rect x="495.0" y="4115.0" width="7.3" height="15" fill="#5df05d" rx="2" ry="2"/>
<text x="498.0" y="4126.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.loadClass (30 samples, 0.31%)</title><rect x="498.7" y="4099.0" width="3.6" height="15" fill="#38ce38" rx="2" ry="2"/>
<text x="501.7" y="4110.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.loadClass (30 samples, 0.31%)</title><rect x="498.7" y="4083.0" width="3.6" height="15" fill="#50e450" rx="2" ry="2"/>
<text x="501.7" y="4094.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.findClass (30 samples, 0.31%)</title><rect x="498.7" y="4067.0" width="3.6" height="15" fill="#4ce04c" rx="2" ry="2"/>
<text x="501.7" y="4078.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/security/AccessController.doPrivileged (30 samples, 0.31%)</title><rect x="498.7" y="4051.0" width="3.6" height="15" fill="#4ee24e" rx="2" ry="2"/>
<text x="501.7" y="4062.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader$1.run (30 samples, 0.31%)</title><rect x="498.7" y="4035.0" width="3.6" height="15" fill="#52e552" rx="2" ry="2"/>
<text x="501.7" y="4046.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader$1.run (30 samples, 0.31%)</title><rect x="498.7" y="4019.0" width="3.6" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="501.7" y="4030.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.access$100 (29 samples, 0.30%)</title><rect x="498.7" y="4003.0" width="3.5" height="15" fill="#3ad03a" rx="2" ry="2"/>
<text x="501.7" y="4014.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.defineClass (29 samples, 0.30%)</title><rect x="498.7" y="3987.0" width="3.5" height="15" fill="#5def5d" rx="2" ry="2"/>
<text x="501.7" y="3998.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/security/SecureClassLoader.defineClass (22 samples, 0.22%)</title><rect x="498.7" y="3971.0" width="2.6" height="15" fill="#51e451" rx="2" ry="2"/>
<text x="501.7" y="3982.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.defineClass (22 samples, 0.22%)</title><rect x="498.7" y="3955.0" width="2.6" height="15" fill="#46da46" rx="2" ry="2"/>
<text x="501.7" y="3966.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.defineClass1 (22 samples, 0.22%)</title><rect x="498.7" y="3939.0" width="2.6" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="501.7" y="3950.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.loadClass (15 samples, 0.15%)</title><rect x="499.5" y="3923.0" width="1.8" height="15" fill="#33c933" rx="2" ry="2"/>
<text x="502.5" y="3934.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.loadClass (15 samples, 0.15%)</title><rect x="499.5" y="3907.0" width="1.8" height="15" fill="#68f968" rx="2" ry="2"/>
<text x="502.5" y="3918.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.findClass (15 samples, 0.15%)</title><rect x="499.5" y="3891.0" width="1.8" height="15" fill="#5ff15f" rx="2" ry="2"/>
<text x="502.5" y="3902.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/security/AccessController.doPrivileged (15 samples, 0.15%)</title><rect x="499.5" y="3875.0" width="1.8" height="15" fill="#50e350" rx="2" ry="2"/>
<text x="502.5" y="3886.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader$1.run (15 samples, 0.15%)</title><rect x="499.5" y="3859.0" width="1.8" height="15" fill="#4ade4a" rx="2" ry="2"/>
<text x="502.5" y="3870.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader$1.run (15 samples, 0.15%)</title><rect x="499.5" y="3843.0" width="1.8" height="15" fill="#4de14d" rx="2" ry="2"/>
<text x="502.5" y="3854.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.access$100 (15 samples, 0.15%)</title><rect x="499.5" y="3827.0" width="1.8" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="502.5" y="3838.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.defineClass (15 samples, 0.15%)</title><rect x="499.5" y="3811.0" width="1.8" height="15" fill="#5bee5b" rx="2" ry="2"/>
<text x="502.5" y="3822.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/security/SecureClassLoader.defineClass (10 samples, 0.10%)</title><rect x="499.5" y="3795.0" width="1.2" height="15" fill="#34c934" rx="2" ry="2"/>
<text x="502.5" y="3806.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.defineClass (10 samples, 0.10%)</title><rect x="499.5" y="3779.0" width="1.2" height="15" fill="#5bee5b" rx="2" ry="2"/>
<text x="502.5" y="3790.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.defineClass1 (10 samples, 0.10%)</title><rect x="499.5" y="3763.0" width="1.2" height="15" fill="#3cd13c" rx="2" ry="2"/>
<text x="502.5" y="3774.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/misc/Resource.getBytes (31 samples, 0.32%)</title><rect x="502.3" y="4147.0" width="3.7" height="15" fill="#41d541" rx="2" ry="2"/>
<text x="505.3" y="4158.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/zip/InflaterInputStream.read (31 samples, 0.32%)</title><rect x="502.3" y="4131.0" width="3.7" height="15" fill="#6afc6a" rx="2" ry="2"/>
<text x="505.3" y="4142.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/zip/ZipFile$ZipFileInflaterInputStream.fill (30 samples, 0.31%)</title><rect x="502.4" y="4115.0" width="3.6" height="15" fill="#5ef05e" rx="2" ry="2"/>
<text x="505.4" y="4126.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/zip/ZipFile$ZipFileInputStream.read (30 samples, 0.31%)</title><rect x="502.4" y="4099.0" width="3.6" height="15" fill="#63f563" rx="2" ry="2"/>
<text x="505.4" y="4110.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/zip/ZipFile.access$1400 (30 samples, 0.31%)</title><rect x="502.4" y="4083.0" width="3.6" height="15" fill="#43d743" rx="2" ry="2"/>
<text x="505.4" y="4094.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/zip/ZipFile.read (30 samples, 0.31%)</title><rect x="502.4" y="4067.0" width="3.6" height="15" fill="#45da45" rx="2" ry="2"/>
<text x="505.4" y="4078.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaUniverse.&lt;init&gt; (587 samples, 5.97%)</title><rect x="506.1" y="4275.0" width="70.5" height="15" fill="#59ec59" rx="2" ry="2"/>
<text x="509.1" y="4286.0">scala/re..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/SymbolTable.&lt;init&gt; (59 samples, 0.60%)</title><rect x="506.5" y="4259.0" width="7.1" height="15" fill="#64f564" rx="2" ry="2"/>
<text x="509.5" y="4270.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/StdNames.$init$ (12 samples, 0.12%)</title><rect x="508.1" y="4243.0" width="1.4" height="15" fill="#4bdf4b" rx="2" ry="2"/>
<text x="511.1" y="4254.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/SymbolTable.nme (12 samples, 0.12%)</title><rect x="508.1" y="4227.0" width="1.4" height="15" fill="#4ce04c" rx="2" ry="2"/>
<text x="511.1" y="4238.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/SymbolTable.nme$lzycompute$1 (12 samples, 0.12%)</title><rect x="508.1" y="4211.0" width="1.4" height="15" fill="#4bdf4b" rx="2" ry="2"/>
<text x="511.1" y="4222.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types.$init$ (15 samples, 0.15%)</title><rect x="510.5" y="4243.0" width="1.8" height="15" fill="#35cb35" rx="2" ry="2"/>
<text x="513.5" y="4254.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaUniverse$$anon$1.&lt;init&gt; (12 samples, 0.12%)</title><rect x="513.6" y="4259.0" width="1.4" height="15" fill="#48dd48" rx="2" ry="2"/>
<text x="516.6" y="4270.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaUniverse.init (513 samples, 5.22%)</title><rect x="515.0" y="4259.0" width="61.6" height="15" fill="#58eb58" rx="2" ry="2"/>
<text x="518.0" y="4270.0">scala/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Definitions$DefinitionsClass.init (234 samples, 2.38%)</title><rect x="515.0" y="4243.0" width="28.1" height="15" fill="#51e451" rx="2" ry="2"/>
<text x="518.0" y="4254.0">sc..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Definitions$DefinitionsClass.ObjectClass (149 samples, 1.52%)</title><rect x="515.0" y="4227.0" width="17.9" height="15" fill="#3ed33e" rx="2" ry="2"/>
<text x="518.0" y="4238.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Definitions$DefinitionsClass.ObjectClass$lzycompute (149 samples, 1.52%)</title><rect x="515.0" y="4211.0" width="17.9" height="15" fill="#5ef05e" rx="2" ry="2"/>
<text x="518.0" y="4222.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Mirrors$RootsBase.getRequiredClass (86 samples, 0.88%)</title><rect x="515.0" y="4195.0" width="10.4" height="15" fill="#5bed5b" rx="2" ry="2"/>
<text x="518.0" y="4206.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Mirrors$RootsBase.getClassByName (86 samples, 0.88%)</title><rect x="515.0" y="4179.0" width="10.4" height="15" fill="#50e450" rx="2" ry="2"/>
<text x="518.0" y="4190.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Mirrors$RootsBase.getModuleOrClass (86 samples, 0.88%)</title><rect x="515.0" y="4163.0" width="10.4" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="518.0" y="4174.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Mirrors$RootsBase.getModuleOrClass (86 samples, 0.88%)</title><rect x="515.0" y="4147.0" width="10.4" height="15" fill="#50e350" rx="2" ry="2"/>
<text x="518.0" y="4158.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Mirrors$RootsBase.getModuleOrClass (10 samples, 0.10%)</title><rect x="515.0" y="4131.0" width="1.2" height="15" fill="#39ce39" rx="2" ry="2"/>
<text x="518.0" y="4142.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types$Type.member (76 samples, 0.77%)</title><rect x="516.2" y="4131.0" width="9.2" height="15" fill="#4ade4a" rx="2" ry="2"/>
<text x="519.2" y="4142.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types$Type.memberBasedOnName (76 samples, 0.77%)</title><rect x="516.2" y="4115.0" width="9.2" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="519.2" y="4126.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types$Type.findMember (76 samples, 0.77%)</title><rect x="516.2" y="4099.0" width="9.2" height="15" fill="#33c933" rx="2" ry="2"/>
<text x="519.2" y="4110.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types$Type.findMemberInternal$1 (76 samples, 0.77%)</title><rect x="516.2" y="4083.0" width="9.2" height="15" fill="#52e552" rx="2" ry="2"/>
<text x="519.2" y="4094.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/tpe/FindMembers$FindMemberBase.apply (76 samples, 0.77%)</title><rect x="516.2" y="4067.0" width="9.2" height="15" fill="#38ce38" rx="2" ry="2"/>
<text x="519.2" y="4078.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/tpe/FindMembers$FindMemberBase.searchConcreteThenDeferred (76 samples, 0.77%)</title><rect x="516.2" y="4051.0" width="9.2" height="15" fill="#5df05d" rx="2" ry="2"/>
<text x="519.2" y="4062.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/tpe/FindMembers$FindMemberBase.walkBaseClasses (76 samples, 0.77%)</title><rect x="516.2" y="4035.0" width="9.2" height="15" fill="#57ea57" rx="2" ry="2"/>
<text x="519.2" y="4046.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SymbolLoaders$PackageScope.lookupEntry (76 samples, 0.77%)</title><rect x="516.2" y="4019.0" width="9.2" height="15" fill="#52e652" rx="2" ry="2"/>
<text x="519.2" y="4030.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SymbolLoaders$PackageScope.syncLockSynchronized (76 samples, 0.77%)</title><rect x="516.2" y="4003.0" width="9.2" height="15" fill="#50e450" rx="2" ry="2"/>
<text x="519.2" y="4014.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SymbolLoaders$PackageScope$$Lambda$131/1626852381.apply (76 samples, 0.77%)</title><rect x="516.2" y="3987.0" width="9.2" height="15" fill="#5cee5c" rx="2" ry="2"/>
<text x="519.2" y="3998.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SymbolLoaders$PackageScope.$anonfun$lookupEntry$1 (76 samples, 0.77%)</title><rect x="516.2" y="3971.0" width="9.2" height="15" fill="#50e450" rx="2" ry="2"/>
<text x="519.2" y="3982.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaMirrors$JavaMirror.mirrorDefining (76 samples, 0.77%)</title><rect x="516.2" y="3955.0" width="9.2" height="15" fill="#5def5d" rx="2" ry="2"/>
<text x="519.2" y="3966.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaUniverse.runtimeMirror (76 samples, 0.77%)</title><rect x="516.2" y="3939.0" width="9.2" height="15" fill="#6cfd6c" rx="2" ry="2"/>
<text x="519.2" y="3950.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaMirrors.runtimeMirror$ (76 samples, 0.77%)</title><rect x="516.2" y="3923.0" width="9.2" height="15" fill="#5cee5c" rx="2" ry="2"/>
<text x="519.2" y="3934.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaMirrors.runtimeMirror (76 samples, 0.77%)</title><rect x="516.2" y="3907.0" width="9.2" height="15" fill="#6afc6a" rx="2" ry="2"/>
<text x="519.2" y="3918.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaMirrors.$anonfun$runtimeMirror$1 (76 samples, 0.77%)</title><rect x="516.2" y="3891.0" width="9.2" height="15" fill="#48dd48" rx="2" ry="2"/>
<text x="519.2" y="3902.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaMirrors.createMirror (76 samples, 0.77%)</title><rect x="516.2" y="3875.0" width="9.2" height="15" fill="#57ea57" rx="2" ry="2"/>
<text x="519.2" y="3886.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Mirrors$RootsBase.init (76 samples, 0.77%)</title><rect x="516.2" y="3859.0" width="9.2" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="519.2" y="3870.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Definitions$DefinitionsClass.syntheticCoreClasses (75 samples, 0.76%)</title><rect x="516.2" y="3843.0" width="9.0" height="15" fill="#4fe24f" rx="2" ry="2"/>
<text x="519.2" y="3854.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Definitions$DefinitionsClass.syntheticCoreClasses$lzycompute (75 samples, 0.76%)</title><rect x="516.2" y="3827.0" width="9.0" height="15" fill="#44d844" rx="2" ry="2"/>
<text x="519.2" y="3838.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Definitions$DefinitionsClass.AnnotationDefaultAttr (75 samples, 0.76%)</title><rect x="516.2" y="3811.0" width="9.0" height="15" fill="#5bed5b" rx="2" ry="2"/>
<text x="519.2" y="3822.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Definitions$DefinitionsClass.AnnotationDefaultAttr$lzycompute (75 samples, 0.76%)</title><rect x="516.2" y="3795.0" width="9.0" height="15" fill="#5cee5c" rx="2" ry="2"/>
<text x="519.2" y="3806.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Definitions$DefinitionsClass.RuntimePackageClass (75 samples, 0.76%)</title><rect x="516.2" y="3779.0" width="9.0" height="15" fill="#64f664" rx="2" ry="2"/>
<text x="519.2" y="3790.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Definitions$DefinitionsClass.RuntimePackageClass$lzycompute (75 samples, 0.76%)</title><rect x="516.2" y="3763.0" width="9.0" height="15" fill="#4fe24f" rx="2" ry="2"/>
<text x="519.2" y="3774.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Definitions$DefinitionsClass.RuntimePackage (75 samples, 0.76%)</title><rect x="516.2" y="3747.0" width="9.0" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="519.2" y="3758.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Definitions$DefinitionsClass.RuntimePackage$lzycompute (75 samples, 0.76%)</title><rect x="516.2" y="3731.0" width="9.0" height="15" fill="#3cd13c" rx="2" ry="2"/>
<text x="519.2" y="3742.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Mirrors$RootsBase.getPackage (75 samples, 0.76%)</title><rect x="516.2" y="3715.0" width="9.0" height="15" fill="#4ce04c" rx="2" ry="2"/>
<text x="519.2" y="3726.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Mirrors$RootsBase.getModuleOrClass (75 samples, 0.76%)</title><rect x="516.2" y="3699.0" width="9.0" height="15" fill="#40d440" rx="2" ry="2"/>
<text x="519.2" y="3710.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Mirrors$RootsBase.getModuleOrClass (75 samples, 0.76%)</title><rect x="516.2" y="3683.0" width="9.0" height="15" fill="#33c933" rx="2" ry="2"/>
<text x="519.2" y="3694.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types$Type.member (75 samples, 0.76%)</title><rect x="516.2" y="3667.0" width="9.0" height="15" fill="#51e551" rx="2" ry="2"/>
<text x="519.2" y="3678.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types$Type.memberBasedOnName (75 samples, 0.76%)</title><rect x="516.2" y="3651.0" width="9.0" height="15" fill="#66f766" rx="2" ry="2"/>
<text x="519.2" y="3662.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types$Type.findMember (75 samples, 0.76%)</title><rect x="516.2" y="3635.0" width="9.0" height="15" fill="#46da46" rx="2" ry="2"/>
<text x="519.2" y="3646.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types$Type.findMemberInternal$1 (75 samples, 0.76%)</title><rect x="516.2" y="3619.0" width="9.0" height="15" fill="#4de14d" rx="2" ry="2"/>
<text x="519.2" y="3630.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/tpe/FindMembers$FindMember.&lt;init&gt; (75 samples, 0.76%)</title><rect x="516.2" y="3603.0" width="9.0" height="15" fill="#5aed5a" rx="2" ry="2"/>
<text x="519.2" y="3614.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/tpe/FindMembers$FindMemberBase.&lt;init&gt; (75 samples, 0.76%)</title><rect x="516.2" y="3587.0" width="9.0" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="519.2" y="3598.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types$TypeRef.baseClasses (75 samples, 0.76%)</title><rect x="516.2" y="3571.0" width="9.0" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="519.2" y="3582.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SynchronizedSymbols$SynchronizedSymbol$$anon$1.info (75 samples, 0.76%)</title><rect x="516.2" y="3555.0" width="9.0" height="15" fill="#47db47" rx="2" ry="2"/>
<text x="519.2" y="3566.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SynchronizedSymbols$SynchronizedSymbol.info$ (75 samples, 0.76%)</title><rect x="516.2" y="3539.0" width="9.0" height="15" fill="#63f563" rx="2" ry="2"/>
<text x="519.2" y="3550.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SynchronizedSymbols$SynchronizedSymbol.info (75 samples, 0.76%)</title><rect x="516.2" y="3523.0" width="9.0" height="15" fill="#4bdf4b" rx="2" ry="2"/>
<text x="519.2" y="3534.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SynchronizedSymbols$SynchronizedSymbol.$anonfun$info$1 (75 samples, 0.76%)</title><rect x="516.2" y="3507.0" width="9.0" height="15" fill="#35ca35" rx="2" ry="2"/>
<text x="519.2" y="3518.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SynchronizedSymbols$SynchronizedSymbol$$anon$1.scala$reflect$runtime$SynchronizedSymbols$SynchronizedSymbol$$super$info (75 samples, 0.76%)</title><rect x="516.2" y="3491.0" width="9.0" height="15" fill="#64f664" rx="2" ry="2"/>
<text x="519.2" y="3502.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Symbols$Symbol.info (75 samples, 0.76%)</title><rect x="516.2" y="3475.0" width="9.0" height="15" fill="#3acf3a" rx="2" ry="2"/>
<text x="519.2" y="3486.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SymbolLoaders$LazyPackageType.complete (75 samples, 0.76%)</title><rect x="516.2" y="3459.0" width="9.0" height="15" fill="#69fa69" rx="2" ry="2"/>
<text x="519.2" y="3470.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/SymbolTable.slowButSafeEnteringPhaseNotLaterThan (75 samples, 0.76%)</title><rect x="516.2" y="3443.0" width="9.0" height="15" fill="#65f765" rx="2" ry="2"/>
<text x="519.2" y="3454.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/runtime/java8/JFunction0$mcV$sp.apply (75 samples, 0.76%)</title><rect x="516.2" y="3427.0" width="9.0" height="15" fill="#63f563" rx="2" ry="2"/>
<text x="519.2" y="3438.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SymbolLoaders$LazyPackageType$$Lambda$127/509864971.apply$mcV$sp (75 samples, 0.76%)</title><rect x="516.2" y="3411.0" width="9.0" height="15" fill="#33c933" rx="2" ry="2"/>
<text x="519.2" y="3422.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SymbolLoaders$LazyPackageType.$anonfun$complete$3 (75 samples, 0.76%)</title><rect x="516.2" y="3395.0" width="9.0" height="15" fill="#6cfd6c" rx="2" ry="2"/>
<text x="519.2" y="3406.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/SymbolTable.openPackageModule (75 samples, 0.76%)</title><rect x="516.2" y="3379.0" width="9.0" height="15" fill="#42d742" rx="2" ry="2"/>
<text x="519.2" y="3390.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Symbols$Symbol.packageObject (71 samples, 0.72%)</title><rect x="516.7" y="3363.0" width="8.5" height="15" fill="#5ef05e" rx="2" ry="2"/>
<text x="519.7" y="3374.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types$Type.packageObject (71 samples, 0.72%)</title><rect x="516.7" y="3347.0" width="8.5" height="15" fill="#37cd37" rx="2" ry="2"/>
<text x="519.7" y="3358.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types$Type.member (71 samples, 0.72%)</title><rect x="516.7" y="3331.0" width="8.5" height="15" fill="#63f563" rx="2" ry="2"/>
<text x="519.7" y="3342.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types$Type.memberBasedOnName (71 samples, 0.72%)</title><rect x="516.7" y="3315.0" width="8.5" height="15" fill="#60f360" rx="2" ry="2"/>
<text x="519.7" y="3326.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types$Type.findMember (71 samples, 0.72%)</title><rect x="516.7" y="3299.0" width="8.5" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="519.7" y="3310.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types$Type.findMemberInternal$1 (71 samples, 0.72%)</title><rect x="516.7" y="3283.0" width="8.5" height="15" fill="#61f361" rx="2" ry="2"/>
<text x="519.7" y="3294.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/tpe/FindMembers$FindMemberBase.apply (71 samples, 0.72%)</title><rect x="516.7" y="3267.0" width="8.5" height="15" fill="#56e956" rx="2" ry="2"/>
<text x="519.7" y="3278.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/tpe/FindMembers$FindMemberBase.searchConcreteThenDeferred (71 samples, 0.72%)</title><rect x="516.7" y="3251.0" width="8.5" height="15" fill="#33c833" rx="2" ry="2"/>
<text x="519.7" y="3262.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/tpe/FindMembers$FindMemberBase.walkBaseClasses (71 samples, 0.72%)</title><rect x="516.7" y="3235.0" width="8.5" height="15" fill="#52e652" rx="2" ry="2"/>
<text x="519.7" y="3246.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SymbolLoaders$PackageScope.lookupEntry (71 samples, 0.72%)</title><rect x="516.7" y="3219.0" width="8.5" height="15" fill="#57ea57" rx="2" ry="2"/>
<text x="519.7" y="3230.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SymbolLoaders$PackageScope.syncLockSynchronized (71 samples, 0.72%)</title><rect x="516.7" y="3203.0" width="8.5" height="15" fill="#33c933" rx="2" ry="2"/>
<text x="519.7" y="3214.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SymbolLoaders$PackageScope$$Lambda$131/1626852381.apply (71 samples, 0.72%)</title><rect x="516.7" y="3187.0" width="8.5" height="15" fill="#44d944" rx="2" ry="2"/>
<text x="519.7" y="3198.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SymbolLoaders$PackageScope.$anonfun$lookupEntry$1 (71 samples, 0.72%)</title><rect x="516.7" y="3171.0" width="8.5" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="519.7" y="3182.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaMirrors$JavaMirror.mirrorDefining (71 samples, 0.72%)</title><rect x="516.7" y="3155.0" width="8.5" height="15" fill="#45d945" rx="2" ry="2"/>
<text x="519.7" y="3166.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaUniverse.runtimeMirror (71 samples, 0.72%)</title><rect x="516.7" y="3139.0" width="8.5" height="15" fill="#59eb59" rx="2" ry="2"/>
<text x="519.7" y="3150.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaMirrors.runtimeMirror$ (71 samples, 0.72%)</title><rect x="516.7" y="3123.0" width="8.5" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="519.7" y="3134.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaMirrors.runtimeMirror (71 samples, 0.72%)</title><rect x="516.7" y="3107.0" width="8.5" height="15" fill="#5ef05e" rx="2" ry="2"/>
<text x="519.7" y="3118.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaMirrors.$anonfun$runtimeMirror$1 (71 samples, 0.72%)</title><rect x="516.7" y="3091.0" width="8.5" height="15" fill="#5ef05e" rx="2" ry="2"/>
<text x="519.7" y="3102.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaMirrors.createMirror (71 samples, 0.72%)</title><rect x="516.7" y="3075.0" width="8.5" height="15" fill="#5bed5b" rx="2" ry="2"/>
<text x="519.7" y="3086.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Mirrors$RootsBase.init (71 samples, 0.72%)</title><rect x="516.7" y="3059.0" width="8.5" height="15" fill="#39cf39" rx="2" ry="2"/>
<text x="519.7" y="3070.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Definitions$DefinitionsClass.syntheticCoreClasses (69 samples, 0.70%)</title><rect x="516.7" y="3043.0" width="8.3" height="15" fill="#5ff15f" rx="2" ry="2"/>
<text x="519.7" y="3054.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Definitions$DefinitionsClass.syntheticCoreClasses$lzycompute (69 samples, 0.70%)</title><rect x="516.7" y="3027.0" width="8.3" height="15" fill="#44d944" rx="2" ry="2"/>
<text x="519.7" y="3038.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Definitions$DefinitionsClass.AnnotationDefaultAttr (58 samples, 0.59%)</title><rect x="516.7" y="3011.0" width="7.0" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="519.7" y="3022.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Definitions$DefinitionsClass.AnnotationDefaultAttr$lzycompute (58 samples, 0.59%)</title><rect x="516.7" y="2995.0" width="7.0" height="15" fill="#38cd38" rx="2" ry="2"/>
<text x="519.7" y="3006.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Definitions$DefinitionsClass.AnnotationClass (54 samples, 0.55%)</title><rect x="516.7" y="2979.0" width="6.5" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="519.7" y="2990.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Definitions$DefinitionsClass.AnnotationClass$lzycompute (54 samples, 0.55%)</title><rect x="516.7" y="2963.0" width="6.5" height="15" fill="#67f867" rx="2" ry="2"/>
<text x="519.7" y="2974.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Mirrors$RootsBase.requiredClass (53 samples, 0.54%)</title><rect x="516.8" y="2947.0" width="6.4" height="15" fill="#3ed33e" rx="2" ry="2"/>
<text x="519.8" y="2958.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Mirrors$RootsBase.getRequiredClass (53 samples, 0.54%)</title><rect x="516.8" y="2931.0" width="6.4" height="15" fill="#56e956" rx="2" ry="2"/>
<text x="519.8" y="2942.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Mirrors$RootsBase.getClassByName (53 samples, 0.54%)</title><rect x="516.8" y="2915.0" width="6.4" height="15" fill="#40d540" rx="2" ry="2"/>
<text x="519.8" y="2926.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Mirrors$RootsBase.getModuleOrClass (53 samples, 0.54%)</title><rect x="516.8" y="2899.0" width="6.4" height="15" fill="#66f866" rx="2" ry="2"/>
<text x="519.8" y="2910.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Mirrors$RootsBase.getModuleOrClass (53 samples, 0.54%)</title><rect x="516.8" y="2883.0" width="6.4" height="15" fill="#37cc37" rx="2" ry="2"/>
<text x="519.8" y="2894.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types$Type.member (53 samples, 0.54%)</title><rect x="516.8" y="2867.0" width="6.4" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="519.8" y="2878.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types$Type.memberBasedOnName (53 samples, 0.54%)</title><rect x="516.8" y="2851.0" width="6.4" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="519.8" y="2862.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types$Type.findMember (53 samples, 0.54%)</title><rect x="516.8" y="2835.0" width="6.4" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="519.8" y="2846.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types$Type.findMemberInternal$1 (53 samples, 0.54%)</title><rect x="516.8" y="2819.0" width="6.4" height="15" fill="#49dd49" rx="2" ry="2"/>
<text x="519.8" y="2830.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/tpe/FindMembers$FindMemberBase.apply (53 samples, 0.54%)</title><rect x="516.8" y="2803.0" width="6.4" height="15" fill="#58eb58" rx="2" ry="2"/>
<text x="519.8" y="2814.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/tpe/FindMembers$FindMemberBase.searchConcreteThenDeferred (53 samples, 0.54%)</title><rect x="516.8" y="2787.0" width="6.4" height="15" fill="#61f361" rx="2" ry="2"/>
<text x="519.8" y="2798.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/tpe/FindMembers$FindMemberBase.walkBaseClasses (53 samples, 0.54%)</title><rect x="516.8" y="2771.0" width="6.4" height="15" fill="#35cb35" rx="2" ry="2"/>
<text x="519.8" y="2782.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SymbolLoaders$PackageScope.lookupEntry (53 samples, 0.54%)</title><rect x="516.8" y="2755.0" width="6.4" height="15" fill="#6cfd6c" rx="2" ry="2"/>
<text x="519.8" y="2766.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SymbolLoaders$PackageScope.syncLockSynchronized (53 samples, 0.54%)</title><rect x="516.8" y="2739.0" width="6.4" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="519.8" y="2750.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SymbolLoaders$PackageScope$$Lambda$131/1626852381.apply (53 samples, 0.54%)</title><rect x="516.8" y="2723.0" width="6.4" height="15" fill="#6bfc6b" rx="2" ry="2"/>
<text x="519.8" y="2734.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SymbolLoaders$PackageScope.$anonfun$lookupEntry$1 (53 samples, 0.54%)</title><rect x="516.8" y="2707.0" width="6.4" height="15" fill="#45da45" rx="2" ry="2"/>
<text x="519.8" y="2718.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaMirrors$JavaMirror.packageNameToScala (52 samples, 0.53%)</title><rect x="516.9" y="2691.0" width="6.3" height="15" fill="#65f765" rx="2" ry="2"/>
<text x="519.9" y="2702.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaMirrors$JavaMirror.packageToScala (52 samples, 0.53%)</title><rect x="516.9" y="2675.0" width="6.3" height="15" fill="#41d541" rx="2" ry="2"/>
<text x="519.9" y="2686.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/TwoWayCaches$TwoWayCache.toScala (52 samples, 0.53%)</title><rect x="516.9" y="2659.0" width="6.3" height="15" fill="#4ee24e" rx="2" ry="2"/>
<text x="519.9" y="2670.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/TwoWayCaches$TwoWayCache.$anonfun$toScala$1 (52 samples, 0.53%)</title><rect x="516.9" y="2643.0" width="6.3" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="519.9" y="2654.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaMirrors$JavaMirror$$Lambda$146/1244880808.apply (52 samples, 0.53%)</title><rect x="516.9" y="2627.0" width="6.3" height="15" fill="#66f766" rx="2" ry="2"/>
<text x="519.9" y="2638.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaMirrors$JavaMirror.$anonfun$packageToScala$1 (52 samples, 0.53%)</title><rect x="516.9" y="2611.0" width="6.3" height="15" fill="#5cef5c" rx="2" ry="2"/>
<text x="519.9" y="2622.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaMirrors$JavaMirror.scala$reflect$runtime$JavaMirrors$$makeScalaPackage (52 samples, 0.53%)</title><rect x="516.9" y="2595.0" width="6.3" height="15" fill="#34ca34" rx="2" ry="2"/>
<text x="519.9" y="2606.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaMirrors$JavaMirror.$anonfun$scala$reflect$runtime$JavaMirrors$$makeScalaPackage$1 (52 samples, 0.53%)</title><rect x="516.9" y="2579.0" width="6.3" height="15" fill="#36cb36" rx="2" ry="2"/>
<text x="519.9" y="2590.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SynchronizedSymbols$SynchronizedSymbol$$anon$1.info (52 samples, 0.53%)</title><rect x="516.9" y="2563.0" width="6.3" height="15" fill="#61f361" rx="2" ry="2"/>
<text x="519.9" y="2574.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SynchronizedSymbols$SynchronizedSymbol.info$ (52 samples, 0.53%)</title><rect x="516.9" y="2547.0" width="6.3" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="519.9" y="2558.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SynchronizedSymbols$SynchronizedSymbol.info (52 samples, 0.53%)</title><rect x="516.9" y="2531.0" width="6.3" height="15" fill="#34ca34" rx="2" ry="2"/>
<text x="519.9" y="2542.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SynchronizedSymbols$SynchronizedSymbol.$anonfun$info$1 (52 samples, 0.53%)</title><rect x="516.9" y="2515.0" width="6.3" height="15" fill="#40d540" rx="2" ry="2"/>
<text x="519.9" y="2526.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SynchronizedSymbols$SynchronizedSymbol$$anon$1.scala$reflect$runtime$SynchronizedSymbols$SynchronizedSymbol$$super$info (52 samples, 0.53%)</title><rect x="516.9" y="2499.0" width="6.3" height="15" fill="#5aed5a" rx="2" ry="2"/>
<text x="519.9" y="2510.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Symbols$Symbol.info (52 samples, 0.53%)</title><rect x="516.9" y="2483.0" width="6.3" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="519.9" y="2494.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SymbolLoaders$LazyPackageType.complete (52 samples, 0.53%)</title><rect x="516.9" y="2467.0" width="6.3" height="15" fill="#59eb59" rx="2" ry="2"/>
<text x="519.9" y="2478.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/SymbolTable.slowButSafeEnteringPhaseNotLaterThan (52 samples, 0.53%)</title><rect x="516.9" y="2451.0" width="6.3" height="15" fill="#46da46" rx="2" ry="2"/>
<text x="519.9" y="2462.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/runtime/java8/JFunction0$mcV$sp.apply (52 samples, 0.53%)</title><rect x="516.9" y="2435.0" width="6.3" height="15" fill="#42d742" rx="2" ry="2"/>
<text x="519.9" y="2446.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SymbolLoaders$LazyPackageType$$Lambda$127/509864971.apply$mcV$sp (52 samples, 0.53%)</title><rect x="516.9" y="2419.0" width="6.3" height="15" fill="#45d945" rx="2" ry="2"/>
<text x="519.9" y="2430.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SymbolLoaders$LazyPackageType.$anonfun$complete$3 (52 samples, 0.53%)</title><rect x="516.9" y="2403.0" width="6.3" height="15" fill="#33c933" rx="2" ry="2"/>
<text x="519.9" y="2414.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/SymbolTable.openPackageModule (52 samples, 0.53%)</title><rect x="516.9" y="2387.0" width="6.3" height="15" fill="#6cfd6c" rx="2" ry="2"/>
<text x="519.9" y="2398.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/SymbolTable.openPackageModule (49 samples, 0.50%)</title><rect x="516.9" y="2371.0" width="5.9" height="15" fill="#3fd43f" rx="2" ry="2"/>
<text x="519.9" y="2382.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SynchronizedSymbols$SynchronizedSymbol$$anon$9.info (38 samples, 0.39%)</title><rect x="518.3" y="2355.0" width="4.5" height="15" fill="#59ec59" rx="2" ry="2"/>
<text x="521.3" y="2366.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SynchronizedSymbols$SynchronizedSymbol.info$ (38 samples, 0.39%)</title><rect x="518.3" y="2339.0" width="4.5" height="15" fill="#3fd43f" rx="2" ry="2"/>
<text x="521.3" y="2350.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SynchronizedSymbols$SynchronizedSymbol.info (38 samples, 0.39%)</title><rect x="518.3" y="2323.0" width="4.5" height="15" fill="#69fb69" rx="2" ry="2"/>
<text x="521.3" y="2334.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SynchronizedSymbols$SynchronizedSymbol.$anonfun$info$1 (38 samples, 0.39%)</title><rect x="518.3" y="2307.0" width="4.5" height="15" fill="#35cb35" rx="2" ry="2"/>
<text x="521.3" y="2318.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SynchronizedSymbols$SynchronizedSymbol$$anon$9.scala$reflect$runtime$SynchronizedSymbols$SynchronizedSymbol$$super$info (38 samples, 0.39%)</title><rect x="518.3" y="2291.0" width="4.5" height="15" fill="#61f361" rx="2" ry="2"/>
<text x="521.3" y="2302.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Symbols$Symbol.info (38 samples, 0.39%)</title><rect x="518.3" y="2275.0" width="4.5" height="15" fill="#43d743" rx="2" ry="2"/>
<text x="521.3" y="2286.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SymbolLoaders$TopClassCompleter.complete (37 samples, 0.38%)</title><rect x="518.4" y="2259.0" width="4.4" height="15" fill="#59eb59" rx="2" ry="2"/>
<text x="521.4" y="2270.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/SymbolTable.slowButSafeEnteringPhaseNotLaterThan (36 samples, 0.37%)</title><rect x="518.5" y="2243.0" width="4.3" height="15" fill="#49dd49" rx="2" ry="2"/>
<text x="521.5" y="2254.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/runtime/java8/JFunction0$mcV$sp.apply (36 samples, 0.37%)</title><rect x="518.5" y="2227.0" width="4.3" height="15" fill="#3cd13c" rx="2" ry="2"/>
<text x="521.5" y="2238.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SymbolLoaders$TopClassCompleter$$Lambda$150/647973805.apply$mcV$sp (36 samples, 0.37%)</title><rect x="518.5" y="2211.0" width="4.3" height="15" fill="#5ef05e" rx="2" ry="2"/>
<text x="521.5" y="2222.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SymbolLoaders$TopClassCompleter.$anonfun$complete$2 (36 samples, 0.37%)</title><rect x="518.5" y="2195.0" width="4.3" height="15" fill="#41d641" rx="2" ry="2"/>
<text x="521.5" y="2206.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaMirrors$JavaMirror.unpickleClass (36 samples, 0.37%)</title><rect x="518.5" y="2179.0" width="4.3" height="15" fill="#52e552" rx="2" ry="2"/>
<text x="521.5" y="2190.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/pickling/UnPickler.unpickle (23 samples, 0.23%)</title><rect x="519.1" y="2163.0" width="2.8" height="15" fill="#33c933" rx="2" ry="2"/>
<text x="522.1" y="2174.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/pickling/UnPickler$Scan.run (18 samples, 0.18%)</title><rect x="519.7" y="2147.0" width="2.2" height="15" fill="#42d742" rx="2" ry="2"/>
<text x="522.7" y="2158.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/pickling/UnPickler$Scan.$anonfun$run$1 (18 samples, 0.18%)</title><rect x="519.7" y="2131.0" width="2.2" height="15" fill="#4fe24f" rx="2" ry="2"/>
<text x="522.7" y="2142.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/pickling/UnPickler$Scan.readSymbol (18 samples, 0.18%)</title><rect x="519.7" y="2115.0" width="2.2" height="15" fill="#6afb6a" rx="2" ry="2"/>
<text x="522.7" y="2126.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Definitions$DefinitionsClass.RepeatedParamClass (10 samples, 0.10%)</title><rect x="523.8" y="3011.0" width="1.2" height="15" fill="#6cfd6c" rx="2" ry="2"/>
<text x="526.8" y="3022.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Definitions$DefinitionsClass.RepeatedParamClass$lzycompute (10 samples, 0.10%)</title><rect x="523.8" y="2995.0" width="1.2" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="526.8" y="3006.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaUniverse.rootMirror (62 samples, 0.63%)</title><rect x="525.5" y="4195.0" width="7.4" height="15" fill="#67f867" rx="2" ry="2"/>
<text x="528.5" y="4206.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaUniverse.rootMirror (62 samples, 0.63%)</title><rect x="525.5" y="4179.0" width="7.4" height="15" fill="#46db46" rx="2" ry="2"/>
<text x="528.5" y="4190.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaUniverse.rootMirror$lzycompute (62 samples, 0.63%)</title><rect x="525.5" y="4163.0" width="7.4" height="15" fill="#66f766" rx="2" ry="2"/>
<text x="528.5" y="4174.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaMirrors.rootMirror$ (62 samples, 0.63%)</title><rect x="525.5" y="4147.0" width="7.4" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="528.5" y="4158.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaMirrors.rootMirror (62 samples, 0.63%)</title><rect x="525.5" y="4131.0" width="7.4" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="528.5" y="4142.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/SymbolTable.NoSymbol (26 samples, 0.26%)</title><rect x="525.5" y="4115.0" width="3.1" height="15" fill="#44d944" rx="2" ry="2"/>
<text x="528.5" y="4126.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/SymbolTable.NoSymbol$lzycompute (26 samples, 0.26%)</title><rect x="525.5" y="4099.0" width="3.1" height="15" fill="#3fd43f" rx="2" ry="2"/>
<text x="528.5" y="4110.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Symbols.NoSymbol$ (26 samples, 0.26%)</title><rect x="525.5" y="4083.0" width="3.1" height="15" fill="#50e450" rx="2" ry="2"/>
<text x="528.5" y="4094.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Symbols.NoSymbol (26 samples, 0.26%)</title><rect x="525.5" y="4067.0" width="3.1" height="15" fill="#63f463" rx="2" ry="2"/>
<text x="528.5" y="4078.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaUniverse.makeNoSymbol (26 samples, 0.26%)</title><rect x="525.5" y="4051.0" width="3.1" height="15" fill="#3fd43f" rx="2" ry="2"/>
<text x="528.5" y="4062.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SynchronizedSymbols.makeNoSymbol$ (26 samples, 0.26%)</title><rect x="525.5" y="4035.0" width="3.1" height="15" fill="#52e552" rx="2" ry="2"/>
<text x="528.5" y="4046.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SynchronizedSymbols.makeNoSymbol (26 samples, 0.26%)</title><rect x="525.5" y="4019.0" width="3.1" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="528.5" y="4030.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SynchronizedSymbols$$anon$15.&lt;init&gt; (17 samples, 0.17%)</title><rect x="526.6" y="4003.0" width="2.0" height="15" fill="#3cd23c" rx="2" ry="2"/>
<text x="529.6" y="4014.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SynchronizedSymbols$SynchronizedSymbol.$init$ (13 samples, 0.13%)</title><rect x="527.0" y="3987.0" width="1.6" height="15" fill="#58eb58" rx="2" ry="2"/>
<text x="530.0" y="3998.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Flags$.&lt;clinit&gt; (11 samples, 0.11%)</title><rect x="527.3" y="3971.0" width="1.3" height="15" fill="#67f967" rx="2" ry="2"/>
<text x="530.3" y="3982.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Flags$.&lt;init&gt; (11 samples, 0.11%)</title><rect x="527.3" y="3955.0" width="1.3" height="15" fill="#4fe34f" rx="2" ry="2"/>
<text x="530.3" y="3966.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Flags.&lt;init&gt; (11 samples, 0.11%)</title><rect x="527.3" y="3939.0" width="1.3" height="15" fill="#42d742" rx="2" ry="2"/>
<text x="530.3" y="3950.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaMirrors.createMirror (36 samples, 0.37%)</title><rect x="528.6" y="4115.0" width="4.3" height="15" fill="#3acf3a" rx="2" ry="2"/>
<text x="531.6" y="4126.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Mirrors$RootsBase.init (31 samples, 0.32%)</title><rect x="528.8" y="4099.0" width="3.8" height="15" fill="#47db47" rx="2" ry="2"/>
<text x="531.8" y="4110.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaMirrors$JavaMirror.EmptyPackageClass (12 samples, 0.12%)</title><rect x="530.6" y="4083.0" width="1.5" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="533.6" y="4094.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaMirrors$JavaMirror.EmptyPackageClass (12 samples, 0.12%)</title><rect x="530.6" y="4067.0" width="1.5" height="15" fill="#5bee5b" rx="2" ry="2"/>
<text x="533.6" y="4078.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaMirrors$JavaMirror.EmptyPackageClass$lzycompute (12 samples, 0.12%)</title><rect x="530.6" y="4051.0" width="1.5" height="15" fill="#36cc36" rx="2" ry="2"/>
<text x="533.6" y="4062.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Definitions$DefinitionsClass.symbolsNotPresentInBytecode (47 samples, 0.48%)</title><rect x="532.9" y="4227.0" width="5.7" height="15" fill="#34ca34" rx="2" ry="2"/>
<text x="535.9" y="4238.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Definitions$DefinitionsClass.symbolsNotPresentInBytecode$lzycompute (47 samples, 0.48%)</title><rect x="532.9" y="4211.0" width="5.7" height="15" fill="#47db47" rx="2" ry="2"/>
<text x="535.9" y="4222.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Definitions$DefinitionsClass.syntheticCoreMethods (44 samples, 0.45%)</title><rect x="533.3" y="4195.0" width="5.3" height="15" fill="#40d540" rx="2" ry="2"/>
<text x="536.3" y="4206.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Definitions$DefinitionsClass.syntheticCoreMethods$lzycompute (44 samples, 0.45%)</title><rect x="533.3" y="4179.0" width="5.3" height="15" fill="#43d843" rx="2" ry="2"/>
<text x="536.3" y="4190.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Definitions$DefinitionsClass.String_$plus (42 samples, 0.43%)</title><rect x="533.5" y="4163.0" width="5.1" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="536.5" y="4174.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Definitions$DefinitionsClass.String_$plus$lzycompute (42 samples, 0.43%)</title><rect x="533.5" y="4147.0" width="5.1" height="15" fill="#49dd49" rx="2" ry="2"/>
<text x="536.5" y="4158.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Definitions.scala$reflect$internal$Definitions$$enterNewMethod (42 samples, 0.43%)</title><rect x="533.5" y="4131.0" width="5.1" height="15" fill="#47db47" rx="2" ry="2"/>
<text x="536.5" y="4142.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SynchronizedSymbols$SynchronizedSymbol$$anon$7.info (42 samples, 0.43%)</title><rect x="533.5" y="4115.0" width="5.1" height="15" fill="#66f766" rx="2" ry="2"/>
<text x="536.5" y="4126.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SynchronizedSymbols$SynchronizedSymbol.info$ (42 samples, 0.43%)</title><rect x="533.5" y="4099.0" width="5.1" height="15" fill="#43d743" rx="2" ry="2"/>
<text x="536.5" y="4110.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SynchronizedSymbols$SynchronizedSymbol.info (42 samples, 0.43%)</title><rect x="533.5" y="4083.0" width="5.1" height="15" fill="#69fa69" rx="2" ry="2"/>
<text x="536.5" y="4094.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SynchronizedSymbols$SynchronizedSymbol.$anonfun$info$1 (42 samples, 0.43%)</title><rect x="533.5" y="4067.0" width="5.1" height="15" fill="#45d945" rx="2" ry="2"/>
<text x="536.5" y="4078.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SynchronizedSymbols$SynchronizedSymbol$$anon$7.scala$reflect$runtime$SynchronizedSymbols$SynchronizedSymbol$$super$info (42 samples, 0.43%)</title><rect x="533.5" y="4051.0" width="5.1" height="15" fill="#5ef15e" rx="2" ry="2"/>
<text x="536.5" y="4062.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Symbols$Symbol.info (42 samples, 0.43%)</title><rect x="533.5" y="4035.0" width="5.1" height="15" fill="#59ec59" rx="2" ry="2"/>
<text x="536.5" y="4046.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaMirrors$JavaMirror$FromJavaClassCompleter$LazyPolyType.complete (42 samples, 0.43%)</title><rect x="533.5" y="4019.0" width="5.1" height="15" fill="#61f361" rx="2" ry="2"/>
<text x="536.5" y="4030.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaMirrors$JavaMirror$FromJavaClassCompleter.completeRest (42 samples, 0.43%)</title><rect x="533.5" y="4003.0" width="5.1" height="15" fill="#6afb6a" rx="2" ry="2"/>
<text x="536.5" y="4014.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaMirrors$JavaMirror$FromJavaClassCompleter.$anonfun$completeRest$1 (42 samples, 0.43%)</title><rect x="533.5" y="3987.0" width="5.1" height="15" fill="#50e450" rx="2" ry="2"/>
<text x="536.5" y="3998.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaMirrors$JavaMirror$FromJavaClassCompleter$$Lambda$173/1433956626.apply$mcV$sp (39 samples, 0.40%)</title><rect x="533.5" y="3971.0" width="4.7" height="15" fill="#61f361" rx="2" ry="2"/>
<text x="536.5" y="3982.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaMirrors$JavaMirror$FromJavaClassCompleter.$anonfun$completeRest$4 (39 samples, 0.40%)</title><rect x="533.5" y="3955.0" width="4.7" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="536.5" y="3966.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaMirrors$JavaMirror$FromJavaClassCompleter.$anonfun$completeRest$6 (27 samples, 0.27%)</title><rect x="534.4" y="3939.0" width="3.2" height="15" fill="#44d844" rx="2" ry="2"/>
<text x="537.4" y="3950.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaMirrors$JavaMirror.scala$reflect$runtime$JavaMirrors$JavaMirror$$jmethodAsScala (27 samples, 0.27%)</title><rect x="534.4" y="3923.0" width="3.2" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="537.4" y="3934.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaMirrors$JavaMirror.toScala (27 samples, 0.27%)</title><rect x="534.4" y="3907.0" width="3.2" height="15" fill="#45d945" rx="2" ry="2"/>
<text x="537.4" y="3918.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/TwoWayCaches$TwoWayCache.toScala (27 samples, 0.27%)</title><rect x="534.4" y="3891.0" width="3.2" height="15" fill="#38cd38" rx="2" ry="2"/>
<text x="537.4" y="3902.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/TwoWayCaches$TwoWayCache.$anonfun$toScala$1 (27 samples, 0.27%)</title><rect x="534.4" y="3875.0" width="3.2" height="15" fill="#35cb35" rx="2" ry="2"/>
<text x="537.4" y="3886.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaMirrors$JavaMirror$$Lambda$175/259319861.apply (26 samples, 0.26%)</title><rect x="534.5" y="3859.0" width="3.1" height="15" fill="#5bed5b" rx="2" ry="2"/>
<text x="537.5" y="3870.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaMirrors$JavaMirror.$anonfun$toScala$1 (26 samples, 0.26%)</title><rect x="534.5" y="3843.0" width="3.1" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="537.5" y="3854.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaMirrors$JavaMirror$$Lambda$174/2109219177.apply (26 samples, 0.26%)</title><rect x="534.5" y="3827.0" width="3.1" height="15" fill="#4cdf4c" rx="2" ry="2"/>
<text x="537.5" y="3838.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaMirrors$JavaMirror.$anonfun$jmethodAsScala$1 (26 samples, 0.26%)</title><rect x="534.5" y="3811.0" width="3.1" height="15" fill="#50e450" rx="2" ry="2"/>
<text x="537.5" y="3822.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaMirrors$JavaMirror.jmethodAsScala1 (26 samples, 0.26%)</title><rect x="534.5" y="3795.0" width="3.1" height="15" fill="#45d945" rx="2" ry="2"/>
<text x="537.5" y="3806.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaMirrors$JavaMirror.$anonfun$jmethodAsScala1$2 (17 samples, 0.17%)</title><rect x="534.6" y="3779.0" width="2.0" height="15" fill="#52e552" rx="2" ry="2"/>
<text x="537.6" y="3790.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaMirrors$JavaMirror.typeToScala (17 samples, 0.17%)</title><rect x="534.6" y="3763.0" width="2.0" height="15" fill="#6dfe6d" rx="2" ry="2"/>
<text x="537.6" y="3774.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/tpe/TypeMaps$$anon$1.apply (9 samples, 0.09%)</title><rect x="534.7" y="3747.0" width="1.1" height="15" fill="#56e956" rx="2" ry="2"/>
<text x="537.7" y="3758.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Symbols$Symbol.initialize (38 samples, 0.39%)</title><rect x="538.6" y="4227.0" width="4.5" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="541.6" y="4238.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SynchronizedSymbols$SynchronizedSymbol$$anon$7.info (38 samples, 0.39%)</title><rect x="538.6" y="4211.0" width="4.5" height="15" fill="#6cfd6c" rx="2" ry="2"/>
<text x="541.6" y="4222.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SynchronizedSymbols$SynchronizedSymbol.info$ (38 samples, 0.39%)</title><rect x="538.6" y="4195.0" width="4.5" height="15" fill="#51e451" rx="2" ry="2"/>
<text x="541.6" y="4206.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SynchronizedSymbols$SynchronizedSymbol.info (38 samples, 0.39%)</title><rect x="538.6" y="4179.0" width="4.5" height="15" fill="#58eb58" rx="2" ry="2"/>
<text x="541.6" y="4190.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SynchronizedSymbols$SynchronizedSymbol.$anonfun$info$1 (38 samples, 0.39%)</title><rect x="538.6" y="4163.0" width="4.5" height="15" fill="#57ea57" rx="2" ry="2"/>
<text x="541.6" y="4174.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SynchronizedSymbols$SynchronizedSymbol$$anon$7.scala$reflect$runtime$SynchronizedSymbols$SynchronizedSymbol$$super$info (38 samples, 0.39%)</title><rect x="538.6" y="4147.0" width="4.5" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="541.6" y="4158.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Symbols$Symbol.info (38 samples, 0.39%)</title><rect x="538.6" y="4131.0" width="4.5" height="15" fill="#43d743" rx="2" ry="2"/>
<text x="541.6" y="4142.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaMirrors$JavaMirror$FromJavaClassCompleter.complete (36 samples, 0.37%)</title><rect x="538.6" y="4115.0" width="4.3" height="15" fill="#3cd13c" rx="2" ry="2"/>
<text x="541.6" y="4126.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaMirrors$JavaMirror$FromJavaClassCompleter.completeRest (33 samples, 0.34%)</title><rect x="538.6" y="4099.0" width="3.9" height="15" fill="#4ce04c" rx="2" ry="2"/>
<text x="541.6" y="4110.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaMirrors$JavaMirror$FromJavaClassCompleter.$anonfun$completeRest$1 (33 samples, 0.34%)</title><rect x="538.6" y="4083.0" width="3.9" height="15" fill="#69fb69" rx="2" ry="2"/>
<text x="541.6" y="4094.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaMirrors$JavaMirror$FromJavaClassCompleter$$Lambda$173/1433956626.apply$mcV$sp (33 samples, 0.34%)</title><rect x="538.6" y="4067.0" width="3.9" height="15" fill="#3acf3a" rx="2" ry="2"/>
<text x="541.6" y="4078.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaMirrors$JavaMirror$FromJavaClassCompleter.$anonfun$completeRest$4 (33 samples, 0.34%)</title><rect x="538.6" y="4051.0" width="3.9" height="15" fill="#49dd49" rx="2" ry="2"/>
<text x="541.6" y="4062.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaMirrors$JavaMirror$FromJavaClassCompleter.$anonfun$completeRest$6 (32 samples, 0.33%)</title><rect x="538.6" y="4035.0" width="3.8" height="15" fill="#66f766" rx="2" ry="2"/>
<text x="541.6" y="4046.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaMirrors$JavaMirror.scala$reflect$runtime$JavaMirrors$JavaMirror$$jmethodAsScala (32 samples, 0.33%)</title><rect x="538.6" y="4019.0" width="3.8" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="541.6" y="4030.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaMirrors$JavaMirror.toScala (31 samples, 0.32%)</title><rect x="538.7" y="4003.0" width="3.7" height="15" fill="#5ff15f" rx="2" ry="2"/>
<text x="541.7" y="4014.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/TwoWayCaches$TwoWayCache.toScala (31 samples, 0.32%)</title><rect x="538.7" y="3987.0" width="3.7" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="541.7" y="3998.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/TwoWayCaches$TwoWayCache.$anonfun$toScala$1 (31 samples, 0.32%)</title><rect x="538.7" y="3971.0" width="3.7" height="15" fill="#66f766" rx="2" ry="2"/>
<text x="541.7" y="3982.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaMirrors$JavaMirror$$Lambda$175/259319861.apply (31 samples, 0.32%)</title><rect x="538.7" y="3955.0" width="3.7" height="15" fill="#63f563" rx="2" ry="2"/>
<text x="541.7" y="3966.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaMirrors$JavaMirror.$anonfun$toScala$1 (31 samples, 0.32%)</title><rect x="538.7" y="3939.0" width="3.7" height="15" fill="#45da45" rx="2" ry="2"/>
<text x="541.7" y="3950.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaMirrors$JavaMirror$$Lambda$174/2109219177.apply (31 samples, 0.32%)</title><rect x="538.7" y="3923.0" width="3.7" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="541.7" y="3934.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaMirrors$JavaMirror.$anonfun$jmethodAsScala$1 (31 samples, 0.32%)</title><rect x="538.7" y="3907.0" width="3.7" height="15" fill="#56e956" rx="2" ry="2"/>
<text x="541.7" y="3918.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaMirrors$JavaMirror.jmethodAsScala1 (31 samples, 0.32%)</title><rect x="538.7" y="3891.0" width="3.7" height="15" fill="#37cc37" rx="2" ry="2"/>
<text x="541.7" y="3902.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaMirrors$JavaMirror.$anonfun$jmethodAsScala1$2 (14 samples, 0.14%)</title><rect x="538.9" y="3875.0" width="1.7" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="541.9" y="3886.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaMirrors$JavaMirror.typeToScala (14 samples, 0.14%)</title><rect x="538.9" y="3859.0" width="1.7" height="15" fill="#38ce38" rx="2" ry="2"/>
<text x="541.9" y="3870.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/tpe/TypeMaps$$anon$1.apply (13 samples, 0.13%)</title><rect x="538.9" y="3843.0" width="1.6" height="15" fill="#4bde4b" rx="2" ry="2"/>
<text x="541.9" y="3854.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/SymbolTable.isRawIfWithoutArgs (13 samples, 0.13%)</title><rect x="538.9" y="3827.0" width="1.6" height="15" fill="#5ef05e" rx="2" ry="2"/>
<text x="541.9" y="3838.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types.isRawIfWithoutArgs$ (13 samples, 0.13%)</title><rect x="538.9" y="3811.0" width="1.6" height="15" fill="#45d945" rx="2" ry="2"/>
<text x="541.9" y="3822.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types.isRawIfWithoutArgs (13 samples, 0.13%)</title><rect x="538.9" y="3795.0" width="1.6" height="15" fill="#59ec59" rx="2" ry="2"/>
<text x="541.9" y="3806.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SynchronizedSymbols$SynchronizedSymbol$$anon$7.typeParams (13 samples, 0.13%)</title><rect x="538.9" y="3779.0" width="1.6" height="15" fill="#50e350" rx="2" ry="2"/>
<text x="541.9" y="3790.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SynchronizedSymbols$SynchronizedSymbol.typeParams$ (13 samples, 0.13%)</title><rect x="538.9" y="3763.0" width="1.6" height="15" fill="#50e350" rx="2" ry="2"/>
<text x="541.9" y="3774.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SynchronizedSymbols$SynchronizedSymbol.typeParams (13 samples, 0.13%)</title><rect x="538.9" y="3747.0" width="1.6" height="15" fill="#67f967" rx="2" ry="2"/>
<text x="541.9" y="3758.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SynchronizedSymbols$SynchronizedSymbol.$anonfun$typeParams$1 (13 samples, 0.13%)</title><rect x="538.9" y="3731.0" width="1.6" height="15" fill="#3cd13c" rx="2" ry="2"/>
<text x="541.9" y="3742.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SynchronizedSymbols$SynchronizedSymbol.completeTypeParams$1 (13 samples, 0.13%)</title><rect x="538.9" y="3715.0" width="1.6" height="15" fill="#4de04d" rx="2" ry="2"/>
<text x="541.9" y="3726.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SymbolLoaders$TopClassCompleter.load (13 samples, 0.13%)</title><rect x="538.9" y="3699.0" width="1.6" height="15" fill="#42d642" rx="2" ry="2"/>
<text x="541.9" y="3710.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SymbolLoaders$TopClassCompleter.complete (13 samples, 0.13%)</title><rect x="538.9" y="3683.0" width="1.6" height="15" fill="#4ade4a" rx="2" ry="2"/>
<text x="541.9" y="3694.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/SymbolTable.slowButSafeEnteringPhaseNotLaterThan (13 samples, 0.13%)</title><rect x="538.9" y="3667.0" width="1.6" height="15" fill="#4de14d" rx="2" ry="2"/>
<text x="541.9" y="3678.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/runtime/java8/JFunction0$mcV$sp.apply (13 samples, 0.13%)</title><rect x="538.9" y="3651.0" width="1.6" height="15" fill="#6bfc6b" rx="2" ry="2"/>
<text x="541.9" y="3662.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SymbolLoaders$TopClassCompleter$$Lambda$150/647973805.apply$mcV$sp (13 samples, 0.13%)</title><rect x="538.9" y="3635.0" width="1.6" height="15" fill="#6bfc6b" rx="2" ry="2"/>
<text x="541.9" y="3646.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SymbolLoaders$TopClassCompleter.$anonfun$complete$2 (13 samples, 0.13%)</title><rect x="538.9" y="3619.0" width="1.6" height="15" fill="#4ee24e" rx="2" ry="2"/>
<text x="541.9" y="3630.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaMirrors$JavaMirror.unpickleClass (13 samples, 0.13%)</title><rect x="538.9" y="3603.0" width="1.6" height="15" fill="#3cd13c" rx="2" ry="2"/>
<text x="541.9" y="3614.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/pickling/UnPickler.unpickle (12 samples, 0.12%)</title><rect x="539.0" y="3587.0" width="1.5" height="15" fill="#5bed5b" rx="2" ry="2"/>
<text x="542.0" y="3598.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/pickling/UnPickler$Scan.run (12 samples, 0.12%)</title><rect x="539.0" y="3571.0" width="1.5" height="15" fill="#50e450" rx="2" ry="2"/>
<text x="542.0" y="3582.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/pickling/UnPickler$Scan.$anonfun$run$1 (11 samples, 0.11%)</title><rect x="539.0" y="3555.0" width="1.4" height="15" fill="#68f968" rx="2" ry="2"/>
<text x="542.0" y="3566.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/pickling/UnPickler$Scan.readSymbol (11 samples, 0.11%)</title><rect x="539.0" y="3539.0" width="1.4" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="542.0" y="3550.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaMirrors$JavaMirror.scala$reflect$runtime$JavaMirrors$JavaMirror$$copyAnnotations (9 samples, 0.09%)</title><rect x="540.8" y="3875.0" width="1.1" height="15" fill="#4ade4a" rx="2" ry="2"/>
<text x="543.8" y="3886.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/SymbolTable.definitions (23 samples, 0.23%)</title><rect x="543.1" y="4243.0" width="2.8" height="15" fill="#5ef05e" rx="2" ry="2"/>
<text x="546.1" y="4254.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/SymbolTable.definitions$lzycompute$1 (23 samples, 0.23%)</title><rect x="543.1" y="4227.0" width="2.8" height="15" fill="#6cfd6c" rx="2" ry="2"/>
<text x="546.1" y="4238.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Definitions$definitions$.&lt;init&gt; (13 samples, 0.13%)</title><rect x="544.3" y="4211.0" width="1.6" height="15" fill="#46db46" rx="2" ry="2"/>
<text x="547.3" y="4222.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Definitions$DefinitionsClass.&lt;init&gt; (13 samples, 0.13%)</title><rect x="544.3" y="4195.0" width="1.6" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="547.3" y="4206.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Definitions$ValueClassDefinitions.$init$ (13 samples, 0.13%)</title><rect x="544.3" y="4179.0" width="1.6" height="15" fill="#6bfc6b" rx="2" ry="2"/>
<text x="547.3" y="4190.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/generic/GenMapFactory.apply (10 samples, 0.10%)</title><rect x="544.5" y="4163.0" width="1.2" height="15" fill="#63f563" rx="2" ry="2"/>
<text x="547.5" y="4174.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/mutable/MapBuilder.$plus$plus$eq (10 samples, 0.10%)</title><rect x="544.5" y="4147.0" width="1.2" height="15" fill="#37cd37" rx="2" ry="2"/>
<text x="547.5" y="4158.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/generic/Growable.$plus$plus$eq$ (10 samples, 0.10%)</title><rect x="544.5" y="4131.0" width="1.2" height="15" fill="#39cf39" rx="2" ry="2"/>
<text x="547.5" y="4142.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/generic/Growable.$plus$plus$eq (10 samples, 0.10%)</title><rect x="544.5" y="4115.0" width="1.2" height="15" fill="#38cd38" rx="2" ry="2"/>
<text x="547.5" y="4126.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/mutable/WrappedArray.foreach (10 samples, 0.10%)</title><rect x="544.5" y="4099.0" width="1.2" height="15" fill="#61f361" rx="2" ry="2"/>
<text x="547.5" y="4110.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IndexedSeqOptimized.foreach$ (10 samples, 0.10%)</title><rect x="544.5" y="4083.0" width="1.2" height="15" fill="#61f361" rx="2" ry="2"/>
<text x="547.5" y="4094.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IndexedSeqOptimized.foreach (10 samples, 0.10%)</title><rect x="544.5" y="4067.0" width="1.2" height="15" fill="#60f260" rx="2" ry="2"/>
<text x="547.5" y="4078.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/generic/Growable$$Lambda$37/1280851663.apply (10 samples, 0.10%)</title><rect x="544.5" y="4051.0" width="1.2" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="547.5" y="4062.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/generic/Growable.$anonfun$$plus$plus$eq$1 (10 samples, 0.10%)</title><rect x="544.5" y="4035.0" width="1.2" height="15" fill="#47db47" rx="2" ry="2"/>
<text x="547.5" y="4046.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/mutable/MapBuilder.$plus$eq (10 samples, 0.10%)</title><rect x="544.5" y="4019.0" width="1.2" height="15" fill="#3acf3a" rx="2" ry="2"/>
<text x="547.5" y="4030.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/mutable/MapBuilder.$plus$eq (10 samples, 0.10%)</title><rect x="544.5" y="4003.0" width="1.2" height="15" fill="#40d540" rx="2" ry="2"/>
<text x="547.5" y="4014.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaUniverse.force (256 samples, 2.61%)</title><rect x="545.9" y="4243.0" width="30.7" height="15" fill="#37cd37" rx="2" ry="2"/>
<text x="548.9" y="4254.0">sc..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaUniverseForce.force$ (256 samples, 2.61%)</title><rect x="545.9" y="4227.0" width="30.7" height="15" fill="#33c933" rx="2" ry="2"/>
<text x="548.9" y="4238.0">sc..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaUniverseForce.force (256 samples, 2.61%)</title><rect x="545.9" y="4211.0" width="30.7" height="15" fill="#39ce39" rx="2" ry="2"/>
<text x="548.9" y="4222.0">sc..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Definitions$DefinitionsClass.QuasiquoteClass (47 samples, 0.48%)</title><rect x="552.0" y="4195.0" width="5.7" height="15" fill="#5cee5c" rx="2" ry="2"/>
<text x="555.0" y="4206.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Definitions$DefinitionsClass.QuasiquoteClass$lzycompute (47 samples, 0.48%)</title><rect x="552.0" y="4179.0" width="5.7" height="15" fill="#5cef5c" rx="2" ry="2"/>
<text x="555.0" y="4190.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Definitions$DefinitionsClass.getMemberIfDefined (47 samples, 0.48%)</title><rect x="552.0" y="4163.0" width="5.7" height="15" fill="#37cc37" rx="2" ry="2"/>
<text x="555.0" y="4174.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Definitions$DefinitionsClass.$anonfun$getMemberIfDefined$1 (47 samples, 0.48%)</title><rect x="552.0" y="4147.0" width="5.7" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="555.0" y="4158.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types$Type.nonPrivateMember (46 samples, 0.47%)</title><rect x="552.0" y="4131.0" width="5.5" height="15" fill="#69fb69" rx="2" ry="2"/>
<text x="555.0" y="4142.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types$Type.memberBasedOnName (46 samples, 0.47%)</title><rect x="552.0" y="4115.0" width="5.5" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="555.0" y="4126.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types$Type.findMember (46 samples, 0.47%)</title><rect x="552.0" y="4099.0" width="5.5" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="555.0" y="4110.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types$Type.findMemberInternal$1 (46 samples, 0.47%)</title><rect x="552.0" y="4083.0" width="5.5" height="15" fill="#6dfe6d" rx="2" ry="2"/>
<text x="555.0" y="4094.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/tpe/FindMembers$FindMember.&lt;init&gt; (46 samples, 0.47%)</title><rect x="552.0" y="4067.0" width="5.5" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="555.0" y="4078.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/tpe/FindMembers$FindMemberBase.&lt;init&gt; (46 samples, 0.47%)</title><rect x="552.0" y="4051.0" width="5.5" height="15" fill="#35cb35" rx="2" ry="2"/>
<text x="555.0" y="4062.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types$CompoundType.baseClasses (46 samples, 0.47%)</title><rect x="552.0" y="4035.0" width="5.5" height="15" fill="#42d642" rx="2" ry="2"/>
<text x="555.0" y="4046.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaUniverse.defineBaseClassesOfCompoundType (46 samples, 0.47%)</title><rect x="552.0" y="4019.0" width="5.5" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="555.0" y="4030.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SynchronizedTypes.defineBaseClassesOfCompoundType$ (46 samples, 0.47%)</title><rect x="552.0" y="4003.0" width="5.5" height="15" fill="#41d641" rx="2" ry="2"/>
<text x="555.0" y="4014.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SynchronizedTypes.defineBaseClassesOfCompoundType (46 samples, 0.47%)</title><rect x="552.0" y="3987.0" width="5.5" height="15" fill="#40d540" rx="2" ry="2"/>
<text x="555.0" y="3998.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SynchronizedTypes.$anonfun$defineBaseClassesOfCompoundType$1 (46 samples, 0.47%)</title><rect x="552.0" y="3971.0" width="5.5" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="555.0" y="3982.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaUniverse.scala$reflect$runtime$SynchronizedTypes$$super$defineBaseClassesOfCompoundType (46 samples, 0.47%)</title><rect x="552.0" y="3955.0" width="5.5" height="15" fill="#6cfe6c" rx="2" ry="2"/>
<text x="555.0" y="3966.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types.defineBaseClassesOfCompoundType$ (46 samples, 0.47%)</title><rect x="552.0" y="3939.0" width="5.5" height="15" fill="#42d742" rx="2" ry="2"/>
<text x="555.0" y="3950.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types.defineBaseClassesOfCompoundType (46 samples, 0.47%)</title><rect x="552.0" y="3923.0" width="5.5" height="15" fill="#3acf3a" rx="2" ry="2"/>
<text x="555.0" y="3934.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types.define$1 (46 samples, 0.47%)</title><rect x="552.0" y="3907.0" width="5.5" height="15" fill="#34ca34" rx="2" ry="2"/>
<text x="555.0" y="3918.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types.defineBaseClassesOfCompoundType (46 samples, 0.47%)</title><rect x="552.0" y="3891.0" width="5.5" height="15" fill="#58eb58" rx="2" ry="2"/>
<text x="555.0" y="3902.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types$CompoundType.memo (46 samples, 0.47%)</title><rect x="552.0" y="3875.0" width="5.5" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="555.0" y="3886.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types$$Lambda$128/747158012.apply (46 samples, 0.47%)</title><rect x="552.0" y="3859.0" width="5.5" height="15" fill="#59ec59" rx="2" ry="2"/>
<text x="555.0" y="3870.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types.$anonfun$defineBaseClassesOfCompoundType$2 (46 samples, 0.47%)</title><rect x="552.0" y="3843.0" width="5.5" height="15" fill="#52e552" rx="2" ry="2"/>
<text x="555.0" y="3854.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/SymbolTable.computeBaseClasses (46 samples, 0.47%)</title><rect x="552.0" y="3827.0" width="5.5" height="15" fill="#47db47" rx="2" ry="2"/>
<text x="555.0" y="3838.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types.computeBaseClasses$ (46 samples, 0.47%)</title><rect x="552.0" y="3811.0" width="5.5" height="15" fill="#69fa69" rx="2" ry="2"/>
<text x="555.0" y="3822.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types.computeBaseClasses (46 samples, 0.47%)</title><rect x="552.0" y="3795.0" width="5.5" height="15" fill="#66f866" rx="2" ry="2"/>
<text x="555.0" y="3806.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types$TypeRef.baseClasses (45 samples, 0.46%)</title><rect x="552.1" y="3779.0" width="5.4" height="15" fill="#36cc36" rx="2" ry="2"/>
<text x="555.1" y="3790.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SynchronizedSymbols$SynchronizedSymbol$$anon$7.info (44 samples, 0.45%)</title><rect x="552.3" y="3763.0" width="5.2" height="15" fill="#3cd13c" rx="2" ry="2"/>
<text x="555.3" y="3774.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SynchronizedSymbols$SynchronizedSymbol.info$ (44 samples, 0.45%)</title><rect x="552.3" y="3747.0" width="5.2" height="15" fill="#65f665" rx="2" ry="2"/>
<text x="555.3" y="3758.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SynchronizedSymbols$SynchronizedSymbol.info (44 samples, 0.45%)</title><rect x="552.3" y="3731.0" width="5.2" height="15" fill="#4fe24f" rx="2" ry="2"/>
<text x="555.3" y="3742.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SynchronizedSymbols$SynchronizedSymbol.$anonfun$info$1 (44 samples, 0.45%)</title><rect x="552.3" y="3715.0" width="5.2" height="15" fill="#6bfc6b" rx="2" ry="2"/>
<text x="555.3" y="3726.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SynchronizedSymbols$SynchronizedSymbol$$anon$7.scala$reflect$runtime$SynchronizedSymbols$SynchronizedSymbol$$super$info (44 samples, 0.45%)</title><rect x="552.3" y="3699.0" width="5.2" height="15" fill="#37cd37" rx="2" ry="2"/>
<text x="555.3" y="3710.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Symbols$Symbol.info (44 samples, 0.45%)</title><rect x="552.3" y="3683.0" width="5.2" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="555.3" y="3694.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SymbolLoaders$TopClassCompleter.complete (42 samples, 0.43%)</title><rect x="552.5" y="3667.0" width="5.0" height="15" fill="#39ce39" rx="2" ry="2"/>
<text x="555.5" y="3678.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/SymbolTable.slowButSafeEnteringPhaseNotLaterThan (42 samples, 0.43%)</title><rect x="552.5" y="3651.0" width="5.0" height="15" fill="#4cdf4c" rx="2" ry="2"/>
<text x="555.5" y="3662.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/runtime/java8/JFunction0$mcV$sp.apply (42 samples, 0.43%)</title><rect x="552.5" y="3635.0" width="5.0" height="15" fill="#39ce39" rx="2" ry="2"/>
<text x="555.5" y="3646.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SymbolLoaders$TopClassCompleter$$Lambda$150/647973805.apply$mcV$sp (42 samples, 0.43%)</title><rect x="552.5" y="3619.0" width="5.0" height="15" fill="#49dd49" rx="2" ry="2"/>
<text x="555.5" y="3630.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SymbolLoaders$TopClassCompleter.$anonfun$complete$2 (42 samples, 0.43%)</title><rect x="552.5" y="3603.0" width="5.0" height="15" fill="#3acf3a" rx="2" ry="2"/>
<text x="555.5" y="3614.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaMirrors$JavaMirror.unpickleClass (41 samples, 0.42%)</title><rect x="552.5" y="3587.0" width="4.9" height="15" fill="#59ec59" rx="2" ry="2"/>
<text x="555.5" y="3598.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/pickling/UnPickler.unpickle (37 samples, 0.38%)</title><rect x="552.7" y="3571.0" width="4.5" height="15" fill="#4bdf4b" rx="2" ry="2"/>
<text x="555.7" y="3582.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/pickling/UnPickler$Scan.run (37 samples, 0.38%)</title><rect x="552.7" y="3555.0" width="4.5" height="15" fill="#5aed5a" rx="2" ry="2"/>
<text x="555.7" y="3566.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/pickling/UnPickler$Scan.$anonfun$run$1 (20 samples, 0.20%)</title><rect x="552.7" y="3539.0" width="2.4" height="15" fill="#41d641" rx="2" ry="2"/>
<text x="555.7" y="3550.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/pickling/UnPickler$Scan.readSymbol (20 samples, 0.20%)</title><rect x="552.7" y="3523.0" width="2.4" height="15" fill="#4ee24e" rx="2" ry="2"/>
<text x="555.7" y="3534.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/pickling/UnPickler$Scan.finishSym$1 (13 samples, 0.13%)</title><rect x="553.6" y="3507.0" width="1.5" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="556.6" y="3518.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/pickling/UnPickler$Scan.$anonfun$run$2 (15 samples, 0.15%)</title><rect x="555.1" y="3539.0" width="1.8" height="15" fill="#60f260" rx="2" ry="2"/>
<text x="558.1" y="3550.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/pickling/UnPickler$Scan.readSymbolAnnotation (15 samples, 0.15%)</title><rect x="555.1" y="3523.0" width="1.8" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="558.1" y="3534.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Symbols$Symbol.addAnnotation (11 samples, 0.11%)</title><rect x="555.1" y="3507.0" width="1.4" height="15" fill="#3fd43f" rx="2" ry="2"/>
<text x="558.1" y="3518.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Symbols$Symbol.annotations (11 samples, 0.11%)</title><rect x="555.1" y="3491.0" width="1.4" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="558.1" y="3502.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Symbols$Symbol.initialize (11 samples, 0.11%)</title><rect x="555.1" y="3475.0" width="1.4" height="15" fill="#58ea58" rx="2" ry="2"/>
<text x="558.1" y="3486.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SynchronizedSymbols$SynchronizedSymbol$$anon$8.info (9 samples, 0.09%)</title><rect x="555.4" y="3459.0" width="1.1" height="15" fill="#56e956" rx="2" ry="2"/>
<text x="558.4" y="3470.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SynchronizedSymbols$SynchronizedSymbol.info$ (9 samples, 0.09%)</title><rect x="555.4" y="3443.0" width="1.1" height="15" fill="#4fe24f" rx="2" ry="2"/>
<text x="558.4" y="3454.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SynchronizedSymbols$SynchronizedSymbol.info (9 samples, 0.09%)</title><rect x="555.4" y="3427.0" width="1.1" height="15" fill="#37cd37" rx="2" ry="2"/>
<text x="558.4" y="3438.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SynchronizedSymbols$SynchronizedSymbol.$anonfun$info$1 (9 samples, 0.09%)</title><rect x="555.4" y="3411.0" width="1.1" height="15" fill="#33c933" rx="2" ry="2"/>
<text x="558.4" y="3422.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SynchronizedSymbols$SynchronizedSymbol$$anon$8.scala$reflect$runtime$SynchronizedSymbols$SynchronizedSymbol$$super$info (9 samples, 0.09%)</title><rect x="555.4" y="3395.0" width="1.1" height="15" fill="#46da46" rx="2" ry="2"/>
<text x="558.4" y="3406.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Symbols$Symbol.info (9 samples, 0.09%)</title><rect x="555.4" y="3379.0" width="1.1" height="15" fill="#61f361" rx="2" ry="2"/>
<text x="558.4" y="3390.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/pickling/UnPickler$Scan$LazyTypeRef.complete (9 samples, 0.09%)</title><rect x="555.4" y="3363.0" width="1.1" height="15" fill="#69fa69" rx="2" ry="2"/>
<text x="558.4" y="3374.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/pickling/UnPickler$Scan$LazyTypeRef.completeInternal (9 samples, 0.09%)</title><rect x="555.4" y="3347.0" width="1.1" height="15" fill="#4ade4a" rx="2" ry="2"/>
<text x="558.4" y="3358.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Definitions$DefinitionsClass.TupleClass (9 samples, 0.09%)</title><rect x="560.4" y="4195.0" width="1.1" height="15" fill="#69fb69" rx="2" ry="2"/>
<text x="563.4" y="4206.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Definitions$DefinitionsClass.TupleClass$lzycompute (9 samples, 0.09%)</title><rect x="560.4" y="4179.0" width="1.1" height="15" fill="#41d641" rx="2" ry="2"/>
<text x="563.4" y="4190.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Definitions$DefinitionsClass$VarArityClass.&lt;init&gt; (9 samples, 0.09%)</title><rect x="560.4" y="4163.0" width="1.1" height="15" fill="#40d540" rx="2" ry="2"/>
<text x="563.4" y="4174.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.map$ (9 samples, 0.09%)</title><rect x="560.4" y="4147.0" width="1.1" height="15" fill="#4ade4a" rx="2" ry="2"/>
<text x="563.4" y="4158.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.map (9 samples, 0.09%)</title><rect x="560.4" y="4131.0" width="1.1" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="563.4" y="4142.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/Range.foreach (9 samples, 0.09%)</title><rect x="560.4" y="4115.0" width="1.1" height="15" fill="#3acf3a" rx="2" ry="2"/>
<text x="563.4" y="4126.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike$$Lambda$42/728885526.apply (9 samples, 0.09%)</title><rect x="560.4" y="4099.0" width="1.1" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="563.4" y="4110.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.$anonfun$map$1 (9 samples, 0.09%)</title><rect x="560.4" y="4083.0" width="1.1" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="563.4" y="4094.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Definitions$DefinitionsClass$VarArityClass$$Lambda$244/1800605369.apply (9 samples, 0.09%)</title><rect x="560.4" y="4067.0" width="1.1" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="563.4" y="4078.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Definitions$DefinitionsClass$VarArityClass.$anonfun$seq$1$adapted (9 samples, 0.09%)</title><rect x="560.4" y="4051.0" width="1.1" height="15" fill="#5aed5a" rx="2" ry="2"/>
<text x="563.4" y="4062.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Definitions$DefinitionsClass$VarArityClass.$anonfun$seq$1 (9 samples, 0.09%)</title><rect x="560.4" y="4035.0" width="1.1" height="15" fill="#50e450" rx="2" ry="2"/>
<text x="563.4" y="4046.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Mirrors$RootsBase.getRequiredClass (9 samples, 0.09%)</title><rect x="560.4" y="4019.0" width="1.1" height="15" fill="#63f563" rx="2" ry="2"/>
<text x="563.4" y="4030.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Mirrors$RootsBase.getClassByName (9 samples, 0.09%)</title><rect x="560.4" y="4003.0" width="1.1" height="15" fill="#59ec59" rx="2" ry="2"/>
<text x="563.4" y="4014.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Mirrors$RootsBase.getModuleOrClass (9 samples, 0.09%)</title><rect x="560.4" y="3987.0" width="1.1" height="15" fill="#53e653" rx="2" ry="2"/>
<text x="563.4" y="3998.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Mirrors$RootsBase.getModuleOrClass (9 samples, 0.09%)</title><rect x="560.4" y="3971.0" width="1.1" height="15" fill="#49dd49" rx="2" ry="2"/>
<text x="563.4" y="3982.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Definitions$DefinitionsClass.UninitializedFieldConstructor (15 samples, 0.15%)</title><rect x="561.6" y="4195.0" width="1.8" height="15" fill="#5ff15f" rx="2" ry="2"/>
<text x="564.6" y="4206.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Definitions$DefinitionsClass.UninitializedFieldConstructor$lzycompute (15 samples, 0.15%)</title><rect x="561.6" y="4179.0" width="1.8" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="564.6" y="4190.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Symbols$ClassSymbol.primaryConstructor (15 samples, 0.15%)</title><rect x="561.6" y="4163.0" width="1.8" height="15" fill="#39cf39" rx="2" ry="2"/>
<text x="564.6" y="4174.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types$Type.decl (13 samples, 0.13%)</title><rect x="561.6" y="4147.0" width="1.6" height="15" fill="#53e653" rx="2" ry="2"/>
<text x="564.6" y="4158.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types$Type.findDecl (13 samples, 0.13%)</title><rect x="561.6" y="4131.0" width="1.6" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="564.6" y="4142.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types$CompoundType.baseClasses (13 samples, 0.13%)</title><rect x="561.6" y="4115.0" width="1.6" height="15" fill="#5cee5c" rx="2" ry="2"/>
<text x="564.6" y="4126.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaUniverse.defineBaseClassesOfCompoundType (13 samples, 0.13%)</title><rect x="561.6" y="4099.0" width="1.6" height="15" fill="#56e956" rx="2" ry="2"/>
<text x="564.6" y="4110.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SynchronizedTypes.defineBaseClassesOfCompoundType$ (13 samples, 0.13%)</title><rect x="561.6" y="4083.0" width="1.6" height="15" fill="#41d641" rx="2" ry="2"/>
<text x="564.6" y="4094.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SynchronizedTypes.defineBaseClassesOfCompoundType (13 samples, 0.13%)</title><rect x="561.6" y="4067.0" width="1.6" height="15" fill="#60f260" rx="2" ry="2"/>
<text x="564.6" y="4078.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SynchronizedTypes.$anonfun$defineBaseClassesOfCompoundType$1 (13 samples, 0.13%)</title><rect x="561.6" y="4051.0" width="1.6" height="15" fill="#39ce39" rx="2" ry="2"/>
<text x="564.6" y="4062.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaUniverse.scala$reflect$runtime$SynchronizedTypes$$super$defineBaseClassesOfCompoundType (13 samples, 0.13%)</title><rect x="561.6" y="4035.0" width="1.6" height="15" fill="#48dd48" rx="2" ry="2"/>
<text x="564.6" y="4046.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types.defineBaseClassesOfCompoundType$ (13 samples, 0.13%)</title><rect x="561.6" y="4019.0" width="1.6" height="15" fill="#35ca35" rx="2" ry="2"/>
<text x="564.6" y="4030.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types.defineBaseClassesOfCompoundType (13 samples, 0.13%)</title><rect x="561.6" y="4003.0" width="1.6" height="15" fill="#39ce39" rx="2" ry="2"/>
<text x="564.6" y="4014.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types.define$1 (13 samples, 0.13%)</title><rect x="561.6" y="3987.0" width="1.6" height="15" fill="#34ca34" rx="2" ry="2"/>
<text x="564.6" y="3998.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types.defineBaseClassesOfCompoundType (13 samples, 0.13%)</title><rect x="561.6" y="3971.0" width="1.6" height="15" fill="#3bd13b" rx="2" ry="2"/>
<text x="564.6" y="3982.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types$CompoundType.memo (13 samples, 0.13%)</title><rect x="561.6" y="3955.0" width="1.6" height="15" fill="#61f361" rx="2" ry="2"/>
<text x="564.6" y="3966.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types$$Lambda$128/747158012.apply (13 samples, 0.13%)</title><rect x="561.6" y="3939.0" width="1.6" height="15" fill="#46db46" rx="2" ry="2"/>
<text x="564.6" y="3950.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types.$anonfun$defineBaseClassesOfCompoundType$2 (13 samples, 0.13%)</title><rect x="561.6" y="3923.0" width="1.6" height="15" fill="#42d742" rx="2" ry="2"/>
<text x="564.6" y="3934.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/SymbolTable.computeBaseClasses (13 samples, 0.13%)</title><rect x="561.6" y="3907.0" width="1.6" height="15" fill="#64f664" rx="2" ry="2"/>
<text x="564.6" y="3918.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types.computeBaseClasses$ (13 samples, 0.13%)</title><rect x="561.6" y="3891.0" width="1.6" height="15" fill="#3fd43f" rx="2" ry="2"/>
<text x="564.6" y="3902.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types.computeBaseClasses (13 samples, 0.13%)</title><rect x="561.6" y="3875.0" width="1.6" height="15" fill="#39cf39" rx="2" ry="2"/>
<text x="564.6" y="3886.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types$AliasNoArgsTypeRef.baseClasses (12 samples, 0.12%)</title><rect x="561.6" y="3859.0" width="1.5" height="15" fill="#50e350" rx="2" ry="2"/>
<text x="564.6" y="3870.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types$AliasTypeRef.baseClasses$ (12 samples, 0.12%)</title><rect x="561.6" y="3843.0" width="1.5" height="15" fill="#41d641" rx="2" ry="2"/>
<text x="564.6" y="3854.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types$AliasTypeRef.baseClasses (12 samples, 0.12%)</title><rect x="561.6" y="3827.0" width="1.5" height="15" fill="#43d843" rx="2" ry="2"/>
<text x="564.6" y="3838.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types$TypeRef.baseClasses (12 samples, 0.12%)</title><rect x="561.6" y="3811.0" width="1.5" height="15" fill="#43d743" rx="2" ry="2"/>
<text x="564.6" y="3822.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types$CompoundType.baseClasses (12 samples, 0.12%)</title><rect x="561.6" y="3795.0" width="1.5" height="15" fill="#38ce38" rx="2" ry="2"/>
<text x="564.6" y="3806.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaUniverse.defineBaseClassesOfCompoundType (12 samples, 0.12%)</title><rect x="561.6" y="3779.0" width="1.5" height="15" fill="#50e450" rx="2" ry="2"/>
<text x="564.6" y="3790.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SynchronizedTypes.defineBaseClassesOfCompoundType$ (12 samples, 0.12%)</title><rect x="561.6" y="3763.0" width="1.5" height="15" fill="#3ad03a" rx="2" ry="2"/>
<text x="564.6" y="3774.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SynchronizedTypes.defineBaseClassesOfCompoundType (12 samples, 0.12%)</title><rect x="561.6" y="3747.0" width="1.5" height="15" fill="#6cfd6c" rx="2" ry="2"/>
<text x="564.6" y="3758.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SynchronizedTypes.$anonfun$defineBaseClassesOfCompoundType$1 (12 samples, 0.12%)</title><rect x="561.6" y="3731.0" width="1.5" height="15" fill="#63f563" rx="2" ry="2"/>
<text x="564.6" y="3742.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaUniverse.scala$reflect$runtime$SynchronizedTypes$$super$defineBaseClassesOfCompoundType (12 samples, 0.12%)</title><rect x="561.6" y="3715.0" width="1.5" height="15" fill="#68f968" rx="2" ry="2"/>
<text x="564.6" y="3726.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types.defineBaseClassesOfCompoundType$ (12 samples, 0.12%)</title><rect x="561.6" y="3699.0" width="1.5" height="15" fill="#5bed5b" rx="2" ry="2"/>
<text x="564.6" y="3710.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types.defineBaseClassesOfCompoundType (12 samples, 0.12%)</title><rect x="561.6" y="3683.0" width="1.5" height="15" fill="#44d844" rx="2" ry="2"/>
<text x="564.6" y="3694.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types.define$1 (12 samples, 0.12%)</title><rect x="561.6" y="3667.0" width="1.5" height="15" fill="#3fd43f" rx="2" ry="2"/>
<text x="564.6" y="3678.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types.defineBaseClassesOfCompoundType (12 samples, 0.12%)</title><rect x="561.6" y="3651.0" width="1.5" height="15" fill="#59ec59" rx="2" ry="2"/>
<text x="564.6" y="3662.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types$CompoundType.memo (12 samples, 0.12%)</title><rect x="561.6" y="3635.0" width="1.5" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="564.6" y="3646.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types$$Lambda$128/747158012.apply (12 samples, 0.12%)</title><rect x="561.6" y="3619.0" width="1.5" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="564.6" y="3630.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types.$anonfun$defineBaseClassesOfCompoundType$2 (12 samples, 0.12%)</title><rect x="561.6" y="3603.0" width="1.5" height="15" fill="#5bee5b" rx="2" ry="2"/>
<text x="564.6" y="3614.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/SymbolTable.computeBaseClasses (12 samples, 0.12%)</title><rect x="561.6" y="3587.0" width="1.5" height="15" fill="#38ce38" rx="2" ry="2"/>
<text x="564.6" y="3598.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types.computeBaseClasses$ (12 samples, 0.12%)</title><rect x="561.6" y="3571.0" width="1.5" height="15" fill="#36cc36" rx="2" ry="2"/>
<text x="564.6" y="3582.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types.computeBaseClasses (12 samples, 0.12%)</title><rect x="561.6" y="3555.0" width="1.5" height="15" fill="#34ca34" rx="2" ry="2"/>
<text x="564.6" y="3566.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types$TypeRef.baseClasses (12 samples, 0.12%)</title><rect x="561.6" y="3539.0" width="1.5" height="15" fill="#39ce39" rx="2" ry="2"/>
<text x="564.6" y="3550.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types$CompoundType.baseClasses (9 samples, 0.09%)</title><rect x="561.6" y="3523.0" width="1.1" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="564.6" y="3534.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaUniverse.defineBaseClassesOfCompoundType (9 samples, 0.09%)</title><rect x="561.6" y="3507.0" width="1.1" height="15" fill="#40d440" rx="2" ry="2"/>
<text x="564.6" y="3518.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SynchronizedTypes.defineBaseClassesOfCompoundType$ (9 samples, 0.09%)</title><rect x="561.6" y="3491.0" width="1.1" height="15" fill="#64f664" rx="2" ry="2"/>
<text x="564.6" y="3502.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SynchronizedTypes.defineBaseClassesOfCompoundType (9 samples, 0.09%)</title><rect x="561.6" y="3475.0" width="1.1" height="15" fill="#65f765" rx="2" ry="2"/>
<text x="564.6" y="3486.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/SynchronizedTypes.$anonfun$defineBaseClassesOfCompoundType$1 (9 samples, 0.09%)</title><rect x="561.6" y="3459.0" width="1.1" height="15" fill="#43d743" rx="2" ry="2"/>
<text x="564.6" y="3470.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/runtime/JavaUniverse.scala$reflect$runtime$SynchronizedTypes$$super$defineBaseClassesOfCompoundType (9 samples, 0.09%)</title><rect x="561.6" y="3443.0" width="1.1" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="564.6" y="3454.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types.defineBaseClassesOfCompoundType$ (9 samples, 0.09%)</title><rect x="561.6" y="3427.0" width="1.1" height="15" fill="#4ee24e" rx="2" ry="2"/>
<text x="564.6" y="3438.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types.defineBaseClassesOfCompoundType (9 samples, 0.09%)</title><rect x="561.6" y="3411.0" width="1.1" height="15" fill="#3ed33e" rx="2" ry="2"/>
<text x="564.6" y="3422.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types.define$1 (9 samples, 0.09%)</title><rect x="561.6" y="3395.0" width="1.1" height="15" fill="#59ec59" rx="2" ry="2"/>
<text x="564.6" y="3406.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types.defineBaseClassesOfCompoundType (9 samples, 0.09%)</title><rect x="561.6" y="3379.0" width="1.1" height="15" fill="#5bed5b" rx="2" ry="2"/>
<text x="564.6" y="3390.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types$CompoundType.memo (9 samples, 0.09%)</title><rect x="561.6" y="3363.0" width="1.1" height="15" fill="#34ca34" rx="2" ry="2"/>
<text x="564.6" y="3374.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types$$Lambda$128/747158012.apply (9 samples, 0.09%)</title><rect x="561.6" y="3347.0" width="1.1" height="15" fill="#5ff15f" rx="2" ry="2"/>
<text x="564.6" y="3358.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types.$anonfun$defineBaseClassesOfCompoundType$2 (9 samples, 0.09%)</title><rect x="561.6" y="3331.0" width="1.1" height="15" fill="#3fd43f" rx="2" ry="2"/>
<text x="564.6" y="3342.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/SymbolTable.computeBaseClasses (9 samples, 0.09%)</title><rect x="561.6" y="3315.0" width="1.1" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="564.6" y="3326.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types.computeBaseClasses$ (9 samples, 0.09%)</title><rect x="561.6" y="3299.0" width="1.1" height="15" fill="#66f866" rx="2" ry="2"/>
<text x="564.6" y="3310.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types.computeBaseClasses (9 samples, 0.09%)</title><rect x="561.6" y="3283.0" width="1.1" height="15" fill="#40d440" rx="2" ry="2"/>
<text x="564.6" y="3294.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/reflect/internal/Types$TypeRef.baseClasses (9 samples, 0.09%)</title><rect x="561.6" y="3267.0" width="1.1" height="15" fill="#5cef5c" rx="2" ry="2"/>
<text x="564.6" y="3278.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/util/LogExchange.context (273 samples, 2.78%)</title><rect x="576.6" y="4355.0" width="32.8" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="579.6" y="4366.0">sb..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/util/LogExchange.context$lzycompute (273 samples, 2.78%)</title><rect x="576.6" y="4339.0" width="32.8" height="15" fill="#35cb35" rx="2" ry="2"/>
<text x="579.6" y="4350.0">sb..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/util/LogExchange.init (273 samples, 2.78%)</title><rect x="576.6" y="4323.0" width="32.8" height="15" fill="#66f866" rx="2" ry="2"/>
<text x="579.6" y="4334.0">sb..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/logging/log4j/core/config/Configurator.initialize (99 samples, 1.01%)</title><rect x="576.8" y="4307.0" width="11.9" height="15" fill="#58eb58" rx="2" ry="2"/>
<text x="579.8" y="4318.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/logging/log4j/core/config/Configurator.initialize (99 samples, 1.01%)</title><rect x="576.8" y="4291.0" width="11.9" height="15" fill="#35ca35" rx="2" ry="2"/>
<text x="579.8" y="4302.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/logging/log4j/core/impl/Log4jContextFactory.getContext (99 samples, 1.01%)</title><rect x="576.8" y="4275.0" width="11.9" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="579.8" y="4286.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/logging/log4j/core/async/AsyncLoggerContext.start (93 samples, 0.95%)</title><rect x="576.8" y="4259.0" width="11.1" height="15" fill="#6afb6a" rx="2" ry="2"/>
<text x="579.8" y="4270.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/logging/log4j/core/LoggerContext.start (67 samples, 0.68%)</title><rect x="576.8" y="4243.0" width="8.0" height="15" fill="#69fb69" rx="2" ry="2"/>
<text x="579.8" y="4254.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/logging/log4j/core/LoggerContext.setConfiguration (66 samples, 0.67%)</title><rect x="576.8" y="4227.0" width="7.9" height="15" fill="#67f867" rx="2" ry="2"/>
<text x="579.8" y="4238.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/logging/log4j/core/jmx/Server.reregisterMBeansAfterReconfigure (56 samples, 0.57%)</title><rect x="577.2" y="4211.0" width="6.8" height="15" fill="#47db47" rx="2" ry="2"/>
<text x="580.2" y="4222.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/management/ManagementFactory.getPlatformMBeanServer (53 samples, 0.54%)</title><rect x="577.2" y="4195.0" width="6.4" height="15" fill="#45d945" rx="2" ry="2"/>
<text x="580.2" y="4206.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/management/ManagementFactory.addMXBean (27 samples, 0.27%)</title><rect x="577.7" y="4179.0" width="3.3" height="15" fill="#52e552" rx="2" ry="2"/>
<text x="580.7" y="4190.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/security/AccessController.doPrivileged (27 samples, 0.27%)</title><rect x="577.7" y="4163.0" width="3.3" height="15" fill="#3cd13c" rx="2" ry="2"/>
<text x="580.7" y="4174.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/management/ManagementFactory$2.run (27 samples, 0.27%)</title><rect x="577.7" y="4147.0" width="3.3" height="15" fill="#6bfd6b" rx="2" ry="2"/>
<text x="580.7" y="4158.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/management/ManagementFactory$2.run (27 samples, 0.27%)</title><rect x="577.7" y="4131.0" width="3.3" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="580.7" y="4142.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>javax/management/StandardMBean.&lt;init&gt; (15 samples, 0.15%)</title><rect x="579.2" y="4115.0" width="1.8" height="15" fill="#5def5d" rx="2" ry="2"/>
<text x="582.2" y="4126.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>javax/management/StandardMBean.construct (15 samples, 0.15%)</title><rect x="579.2" y="4099.0" width="1.8" height="15" fill="#6dfe6d" rx="2" ry="2"/>
<text x="582.2" y="4110.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/sun/jmx/mbeanserver/MXBeanSupport.&lt;init&gt; (14 samples, 0.14%)</title><rect x="579.3" y="4083.0" width="1.7" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="582.3" y="4094.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/sun/jmx/mbeanserver/MBeanSupport.&lt;init&gt; (14 samples, 0.14%)</title><rect x="579.3" y="4067.0" width="1.7" height="15" fill="#58eb58" rx="2" ry="2"/>
<text x="582.3" y="4078.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/sun/jmx/mbeanserver/MBeanIntrospector.getPerInterface (12 samples, 0.12%)</title><rect x="579.3" y="4051.0" width="1.4" height="15" fill="#59ec59" rx="2" ry="2"/>
<text x="582.3" y="4062.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>javax/management/MBeanServerFactory.createMBeanServer (13 samples, 0.13%)</title><rect x="582.0" y="4179.0" width="1.6" height="15" fill="#6afb6a" rx="2" ry="2"/>
<text x="585.0" y="4190.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>javax/management/MBeanServerFactory.createMBeanServer (13 samples, 0.13%)</title><rect x="582.0" y="4163.0" width="1.6" height="15" fill="#36cb36" rx="2" ry="2"/>
<text x="585.0" y="4174.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>javax/management/MBeanServerFactory.newMBeanServer (13 samples, 0.13%)</title><rect x="582.0" y="4147.0" width="1.6" height="15" fill="#60f260" rx="2" ry="2"/>
<text x="585.0" y="4158.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/logging/log4j/core/async/AsyncLoggerContext.maybeStartHelper (26 samples, 0.26%)</title><rect x="584.8" y="4243.0" width="3.1" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="587.8" y="4254.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/logging/log4j/core/async/AsyncLoggerDisruptor.start (26 samples, 0.26%)</title><rect x="584.8" y="4227.0" width="3.1" height="15" fill="#4ce04c" rx="2" ry="2"/>
<text x="587.8" y="4238.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/lmax/disruptor/dsl/Disruptor.&lt;init&gt; (15 samples, 0.15%)</title><rect x="584.9" y="4211.0" width="1.8" height="15" fill="#4fe34f" rx="2" ry="2"/>
<text x="587.9" y="4222.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/logging/log4j/core/config/builder/impl/DefaultConfigurationBuilder.build (167 samples, 1.70%)</title><rect x="589.4" y="4307.0" width="20.0" height="15" fill="#39cf39" rx="2" ry="2"/>
<text x="592.4" y="4318.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/logging/log4j/core/config/builder/impl/DefaultConfigurationBuilder.build (167 samples, 1.70%)</title><rect x="589.4" y="4291.0" width="20.0" height="15" fill="#4fe34f" rx="2" ry="2"/>
<text x="592.4" y="4302.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/logging/log4j/core/config/builder/impl/DefaultConfigurationBuilder.build (167 samples, 1.70%)</title><rect x="589.4" y="4275.0" width="20.0" height="15" fill="#46da46" rx="2" ry="2"/>
<text x="592.4" y="4286.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/reflect/Constructor.newInstance (52 samples, 0.53%)</title><rect x="589.7" y="4259.0" width="6.3" height="15" fill="#48dd48" rx="2" ry="2"/>
<text x="592.7" y="4270.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/DelegatingConstructorAccessorImpl.newInstance (52 samples, 0.53%)</title><rect x="589.7" y="4243.0" width="6.3" height="15" fill="#47dc47" rx="2" ry="2"/>
<text x="592.7" y="4254.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/NativeConstructorAccessorImpl.newInstance (52 samples, 0.53%)</title><rect x="589.7" y="4227.0" width="6.3" height="15" fill="#57ea57" rx="2" ry="2"/>
<text x="592.7" y="4238.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/NativeConstructorAccessorImpl.newInstance0 (52 samples, 0.53%)</title><rect x="589.7" y="4211.0" width="6.3" height="15" fill="#5def5d" rx="2" ry="2"/>
<text x="592.7" y="4222.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/logging/log4j/core/AbstractLifeCycle.&lt;clinit&gt; (17 samples, 0.17%)</title><rect x="589.7" y="4195.0" width="2.1" height="15" fill="#6afb6a" rx="2" ry="2"/>
<text x="592.7" y="4206.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/logging/log4j/core/config/builder/impl/BuiltConfiguration.&lt;init&gt; (35 samples, 0.36%)</title><rect x="591.8" y="4195.0" width="4.2" height="15" fill="#60f260" rx="2" ry="2"/>
<text x="594.8" y="4206.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/logging/log4j/core/config/AbstractConfiguration.&lt;init&gt; (34 samples, 0.35%)</title><rect x="591.9" y="4179.0" width="4.1" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="594.9" y="4190.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/logging/log4j/core/lookup/Interpolator.&lt;init&gt; (25 samples, 0.25%)</title><rect x="592.9" y="4163.0" width="3.0" height="15" fill="#65f765" rx="2" ry="2"/>
<text x="595.9" y="4174.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/logging/log4j/core/lookup/ContextMapLookup.&lt;init&gt; (14 samples, 0.14%)</title><rect x="593.2" y="4147.0" width="1.7" height="15" fill="#50e350" rx="2" ry="2"/>
<text x="596.2" y="4158.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/logging/log4j/core/impl/ContextDataInjectorFactory.createInjector (14 samples, 0.14%)</title><rect x="593.2" y="4131.0" width="1.7" height="15" fill="#4bdf4b" rx="2" ry="2"/>
<text x="596.2" y="4142.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/logging/log4j/core/impl/ContextDataInjectorFactory.createDefaultInjector (14 samples, 0.14%)</title><rect x="593.2" y="4115.0" width="1.7" height="15" fill="#49dd49" rx="2" ry="2"/>
<text x="596.2" y="4126.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/logging/log4j/ThreadContext.&lt;clinit&gt; (12 samples, 0.12%)</title><rect x="593.5" y="4099.0" width="1.4" height="15" fill="#59ec59" rx="2" ry="2"/>
<text x="596.5" y="4110.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/logging/log4j/ThreadContext.init (11 samples, 0.11%)</title><rect x="593.6" y="4083.0" width="1.3" height="15" fill="#52e552" rx="2" ry="2"/>
<text x="596.6" y="4094.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/logging/log4j/spi/ThreadContextMapFactory.createThreadContextMap (10 samples, 0.10%)</title><rect x="593.7" y="4067.0" width="1.2" height="15" fill="#57ea57" rx="2" ry="2"/>
<text x="596.7" y="4078.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/logging/log4j/core/config/AbstractConfiguration.initialize (111 samples, 1.13%)</title><rect x="596.1" y="4259.0" width="13.3" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="599.1" y="4270.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/logging/log4j/core/config/AbstractConfiguration.doConfigure (49 samples, 0.50%)</title><rect x="596.3" y="4243.0" width="5.9" height="15" fill="#4ee24e" rx="2" ry="2"/>
<text x="599.3" y="4254.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/logging/log4j/core/config/AbstractConfiguration.preConfigure (10 samples, 0.10%)</title><rect x="597.2" y="4227.0" width="1.2" height="15" fill="#6afb6a" rx="2" ry="2"/>
<text x="600.2" y="4238.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Class.isAnnotationPresent (10 samples, 0.10%)</title><rect x="597.2" y="4211.0" width="1.2" height="15" fill="#60f260" rx="2" ry="2"/>
<text x="600.2" y="4222.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/reflect/AnnotatedElement.isAnnotationPresent (10 samples, 0.10%)</title><rect x="597.2" y="4195.0" width="1.2" height="15" fill="#5ff25f" rx="2" ry="2"/>
<text x="600.2" y="4206.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Class.getAnnotation (10 samples, 0.10%)</title><rect x="597.2" y="4179.0" width="1.2" height="15" fill="#41d641" rx="2" ry="2"/>
<text x="600.2" y="4190.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Class.annotationData (10 samples, 0.10%)</title><rect x="597.2" y="4163.0" width="1.2" height="15" fill="#60f260" rx="2" ry="2"/>
<text x="600.2" y="4174.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Class.createAnnotationData (10 samples, 0.10%)</title><rect x="597.2" y="4147.0" width="1.2" height="15" fill="#37cc37" rx="2" ry="2"/>
<text x="600.2" y="4158.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/annotation/AnnotationParser.parseAnnotations (10 samples, 0.10%)</title><rect x="597.2" y="4131.0" width="1.2" height="15" fill="#59ec59" rx="2" ry="2"/>
<text x="600.2" y="4142.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/annotation/AnnotationParser.parseAnnotations2 (10 samples, 0.10%)</title><rect x="597.2" y="4115.0" width="1.2" height="15" fill="#53e753" rx="2" ry="2"/>
<text x="600.2" y="4126.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/annotation/AnnotationParser.parseAnnotation2 (10 samples, 0.10%)</title><rect x="597.2" y="4099.0" width="1.2" height="15" fill="#68f968" rx="2" ry="2"/>
<text x="600.2" y="4110.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/logging/log4j/core/config/AbstractConfiguration.setToDefault (28 samples, 0.28%)</title><rect x="598.4" y="4227.0" width="3.3" height="15" fill="#44d844" rx="2" ry="2"/>
<text x="601.4" y="4238.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/logging/log4j/core/layout/PatternLayout$Builder.build (21 samples, 0.21%)</title><rect x="599.1" y="4211.0" width="2.5" height="15" fill="#35cb35" rx="2" ry="2"/>
<text x="602.1" y="4222.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/logging/log4j/core/layout/PatternLayout.&lt;init&gt; (21 samples, 0.21%)</title><rect x="599.1" y="4195.0" width="2.5" height="15" fill="#3acf3a" rx="2" ry="2"/>
<text x="602.1" y="4206.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/logging/log4j/core/layout/PatternLayout.&lt;init&gt; (21 samples, 0.21%)</title><rect x="599.1" y="4179.0" width="2.5" height="15" fill="#4ee24e" rx="2" ry="2"/>
<text x="602.1" y="4190.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/logging/log4j/core/layout/PatternLayout$SerializerBuilder.build (20 samples, 0.20%)</title><rect x="599.2" y="4163.0" width="2.4" height="15" fill="#5def5d" rx="2" ry="2"/>
<text x="602.2" y="4174.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/logging/log4j/core/pattern/PatternParser.parse (15 samples, 0.15%)</title><rect x="599.8" y="4147.0" width="1.8" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="602.8" y="4158.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/logging/log4j/core/pattern/PatternParser.parse (13 samples, 0.13%)</title><rect x="600.1" y="4131.0" width="1.5" height="15" fill="#5ff15f" rx="2" ry="2"/>
<text x="603.1" y="4142.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/logging/log4j/core/pattern/PatternParser.finalizeConverter (11 samples, 0.11%)</title><rect x="600.3" y="4115.0" width="1.3" height="15" fill="#57ea57" rx="2" ry="2"/>
<text x="603.3" y="4126.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/logging/log4j/core/pattern/PatternParser.createConverter (11 samples, 0.11%)</title><rect x="600.3" y="4099.0" width="1.3" height="15" fill="#35cb35" rx="2" ry="2"/>
<text x="603.3" y="4110.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/reflect/Method.invoke (10 samples, 0.10%)</title><rect x="600.4" y="4083.0" width="1.2" height="15" fill="#56e956" rx="2" ry="2"/>
<text x="603.4" y="4094.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/DelegatingMethodAccessorImpl.invoke (10 samples, 0.10%)</title><rect x="600.4" y="4067.0" width="1.2" height="15" fill="#5bee5b" rx="2" ry="2"/>
<text x="603.4" y="4078.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/NativeMethodAccessorImpl.invoke (10 samples, 0.10%)</title><rect x="600.4" y="4051.0" width="1.2" height="15" fill="#4fe34f" rx="2" ry="2"/>
<text x="603.4" y="4062.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/NativeMethodAccessorImpl.invoke0 (10 samples, 0.10%)</title><rect x="600.4" y="4035.0" width="1.2" height="15" fill="#6dfe6d" rx="2" ry="2"/>
<text x="603.4" y="4046.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/logging/log4j/core/config/plugins/util/PluginManager.collectPlugins (55 samples, 0.56%)</title><rect x="602.2" y="4243.0" width="6.6" height="15" fill="#60f260" rx="2" ry="2"/>
<text x="605.2" y="4254.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/logging/log4j/core/config/plugins/util/PluginRegistry.loadFromMainClassLoader (55 samples, 0.56%)</title><rect x="602.2" y="4227.0" width="6.6" height="15" fill="#54e854" rx="2" ry="2"/>
<text x="605.2" y="4238.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/logging/log4j/core/config/plugins/util/PluginRegistry.decodeCacheFiles (55 samples, 0.56%)</title><rect x="602.2" y="4211.0" width="6.6" height="15" fill="#60f260" rx="2" ry="2"/>
<text x="605.2" y="4222.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.loadClass (41 samples, 0.42%)</title><rect x="602.2" y="4195.0" width="4.9" height="15" fill="#33c933" rx="2" ry="2"/>
<text x="605.2" y="4206.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.loadClass (41 samples, 0.42%)</title><rect x="602.2" y="4179.0" width="4.9" height="15" fill="#44d844" rx="2" ry="2"/>
<text x="605.2" y="4190.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.loadClass (10 samples, 0.10%)</title><rect x="602.3" y="4163.0" width="1.2" height="15" fill="#4de14d" rx="2" ry="2"/>
<text x="605.3" y="4174.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.loadClass (10 samples, 0.10%)</title><rect x="602.3" y="4147.0" width="1.2" height="15" fill="#6bfc6b" rx="2" ry="2"/>
<text x="605.3" y="4158.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>xsbt/boot/BootFilteredLoader.loadClass (10 samples, 0.10%)</title><rect x="602.3" y="4131.0" width="1.2" height="15" fill="#4ade4a" rx="2" ry="2"/>
<text x="605.3" y="4142.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.loadClass (10 samples, 0.10%)</title><rect x="602.3" y="4115.0" width="1.2" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="605.3" y="4126.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/misc/Launcher$AppClassLoader.loadClass (9 samples, 0.09%)</title><rect x="602.5" y="4099.0" width="1.0" height="15" fill="#3ed33e" rx="2" ry="2"/>
<text x="605.5" y="4110.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.loadClass (9 samples, 0.09%)</title><rect x="602.5" y="4083.0" width="1.0" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="605.5" y="4094.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.findClass (30 samples, 0.31%)</title><rect x="603.5" y="4163.0" width="3.6" height="15" fill="#64f564" rx="2" ry="2"/>
<text x="606.5" y="4174.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/security/AccessController.doPrivileged (30 samples, 0.31%)</title><rect x="603.5" y="4147.0" width="3.6" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="606.5" y="4158.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader$1.run (30 samples, 0.31%)</title><rect x="603.5" y="4131.0" width="3.6" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="606.5" y="4142.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader$1.run (30 samples, 0.31%)</title><rect x="603.5" y="4115.0" width="3.6" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="606.5" y="4126.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.access$100 (23 samples, 0.23%)</title><rect x="603.5" y="4099.0" width="2.8" height="15" fill="#63f463" rx="2" ry="2"/>
<text x="606.5" y="4110.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.defineClass (23 samples, 0.23%)</title><rect x="603.5" y="4083.0" width="2.8" height="15" fill="#35ca35" rx="2" ry="2"/>
<text x="606.5" y="4094.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/security/SecureClassLoader.defineClass (18 samples, 0.18%)</title><rect x="603.5" y="4067.0" width="2.2" height="15" fill="#4ee14e" rx="2" ry="2"/>
<text x="606.5" y="4078.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.defineClass (18 samples, 0.18%)</title><rect x="603.5" y="4051.0" width="2.2" height="15" fill="#60f260" rx="2" ry="2"/>
<text x="606.5" y="4062.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.defineClass1 (17 samples, 0.17%)</title><rect x="603.5" y="4035.0" width="2.1" height="15" fill="#49dd49" rx="2" ry="2"/>
<text x="606.5" y="4046.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/text/DecimalFormat.&lt;init&gt; (9 samples, 0.09%)</title><rect x="607.3" y="4195.0" width="1.0" height="15" fill="#4cdf4c" rx="2" ry="2"/>
<text x="610.3" y="4206.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/text/DecimalFormatSymbols.getInstance (9 samples, 0.09%)</title><rect x="607.3" y="4179.0" width="1.0" height="15" fill="#45d945" rx="2" ry="2"/>
<text x="610.3" y="4190.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/State$.newHistory (17 samples, 0.17%)</title><rect x="609.9" y="4419.0" width="2.1" height="15" fill="#43d843" rx="2" ry="2"/>
<text x="612.9" y="4430.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/complete/HistoryCommands$.&lt;clinit&gt; (16 samples, 0.16%)</title><rect x="610.0" y="4403.0" width="2.0" height="15" fill="#68fa68" rx="2" ry="2"/>
<text x="613.0" y="4414.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/complete/HistoryCommands$.&lt;init&gt; (16 samples, 0.16%)</title><rect x="610.0" y="4387.0" width="2.0" height="15" fill="#44d844" rx="2" ry="2"/>
<text x="613.0" y="4398.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/complete/HistoryCommands$.execInt (14 samples, 0.14%)</title><rect x="610.1" y="4371.0" width="1.7" height="15" fill="#50e450" rx="2" ry="2"/>
<text x="613.1" y="4382.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/complete/HistoryCommands$.execInt$lzycompute (14 samples, 0.14%)</title><rect x="610.1" y="4355.0" width="1.7" height="15" fill="#56e956" rx="2" ry="2"/>
<text x="613.1" y="4366.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/complete/HistoryCommands$.num (12 samples, 0.12%)</title><rect x="610.4" y="4339.0" width="1.4" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="613.4" y="4350.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/complete/HistoryCommands$.num$lzycompute (12 samples, 0.12%)</title><rect x="610.4" y="4323.0" width="1.4" height="15" fill="#41d541" rx="2" ry="2"/>
<text x="613.4" y="4334.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/complete/DefaultParsers$.NatBasic (10 samples, 0.10%)</title><rect x="610.4" y="4307.0" width="1.2" height="15" fill="#6afb6a" rx="2" ry="2"/>
<text x="613.4" y="4318.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/complete/DefaultParsers$.NatBasic$lzycompute (10 samples, 0.10%)</title><rect x="610.4" y="4291.0" width="1.2" height="15" fill="#6dfe6d" rx="2" ry="2"/>
<text x="613.4" y="4302.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/complete/Parsers.NatBasic$ (10 samples, 0.10%)</title><rect x="610.4" y="4275.0" width="1.2" height="15" fill="#50e350" rx="2" ry="2"/>
<text x="613.4" y="4286.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/complete/Parsers.NatBasic (10 samples, 0.10%)</title><rect x="610.4" y="4259.0" width="1.2" height="15" fill="#68f968" rx="2" ry="2"/>
<text x="613.4" y="4270.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/complete/DefaultParsers$.Digit (9 samples, 0.09%)</title><rect x="610.5" y="4243.0" width="1.1" height="15" fill="#4fe24f" rx="2" ry="2"/>
<text x="613.5" y="4254.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/complete/DefaultParsers$.Digit$lzycompute (9 samples, 0.09%)</title><rect x="610.5" y="4227.0" width="1.1" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="613.5" y="4238.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/complete/Parsers.Digit$ (9 samples, 0.09%)</title><rect x="610.5" y="4211.0" width="1.1" height="15" fill="#42d742" rx="2" ry="2"/>
<text x="613.5" y="4222.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/complete/Parsers.Digit (9 samples, 0.09%)</title><rect x="610.5" y="4195.0" width="1.1" height="15" fill="#6dfe6d" rx="2" ry="2"/>
<text x="613.5" y="4206.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractTraversable.partition (39 samples, 0.40%)</title><rect x="612.0" y="4419.0" width="4.6" height="15" fill="#68f968" rx="2" ry="2"/>
<text x="615.0" y="4430.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.partition$ (39 samples, 0.40%)</title><rect x="612.0" y="4403.0" width="4.6" height="15" fill="#33c933" rx="2" ry="2"/>
<text x="615.0" y="4414.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.partition (39 samples, 0.40%)</title><rect x="612.0" y="4387.0" width="4.6" height="15" fill="#34ca34" rx="2" ry="2"/>
<text x="615.0" y="4398.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/List.foreach (39 samples, 0.40%)</title><rect x="612.0" y="4371.0" width="4.6" height="15" fill="#35cb35" rx="2" ry="2"/>
<text x="615.0" y="4382.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike$$Lambda$51/945591847.apply (39 samples, 0.40%)</title><rect x="612.0" y="4355.0" width="4.6" height="15" fill="#68f968" rx="2" ry="2"/>
<text x="615.0" y="4366.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.$anonfun$partition$1 (39 samples, 0.40%)</title><rect x="612.0" y="4339.0" width="4.6" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="615.0" y="4350.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/StandardMain$$$Lambda$50/1770642014.apply (39 samples, 0.40%)</title><rect x="612.0" y="4323.0" width="4.6" height="15" fill="#52e552" rx="2" ry="2"/>
<text x="615.0" y="4334.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/StandardMain$.$anonfun$initialState$2$adapted (39 samples, 0.40%)</title><rect x="612.0" y="4307.0" width="4.6" height="15" fill="#6afb6a" rx="2" ry="2"/>
<text x="615.0" y="4318.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/StandardMain$.$anonfun$initialState$2 (39 samples, 0.40%)</title><rect x="612.0" y="4291.0" width="4.6" height="15" fill="#44d844" rx="2" ry="2"/>
<text x="615.0" y="4302.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/BasicCommandStrings$.isEarlyCommand (39 samples, 0.40%)</title><rect x="612.0" y="4275.0" width="4.6" height="15" fill="#43d843" rx="2" ry="2"/>
<text x="615.0" y="4286.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/Enumeration.values (31 samples, 0.32%)</title><rect x="612.3" y="4259.0" width="3.7" height="15" fill="#47dc47" rx="2" ry="2"/>
<text x="615.3" y="4270.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/Enumeration$ValueSet$.newBuilder (11 samples, 0.11%)</title><rect x="612.6" y="4243.0" width="1.3" height="15" fill="#37cd37" rx="2" ry="2"/>
<text x="615.6" y="4254.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/Enumeration$ValueSet$$anon$1.&lt;init&gt; (11 samples, 0.11%)</title><rect x="612.6" y="4227.0" width="1.3" height="15" fill="#6bfc6b" rx="2" ry="2"/>
<text x="615.6" y="4238.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.loadClass (9 samples, 0.09%)</title><rect x="612.8" y="4211.0" width="1.1" height="15" fill="#4ce04c" rx="2" ry="2"/>
<text x="615.8" y="4222.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.loadClass (9 samples, 0.09%)</title><rect x="612.8" y="4195.0" width="1.1" height="15" fill="#59ec59" rx="2" ry="2"/>
<text x="615.8" y="4206.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.findClass (9 samples, 0.09%)</title><rect x="612.8" y="4179.0" width="1.1" height="15" fill="#4ce04c" rx="2" ry="2"/>
<text x="615.8" y="4190.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/security/AccessController.doPrivileged (9 samples, 0.09%)</title><rect x="612.8" y="4163.0" width="1.1" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="615.8" y="4174.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader$1.run (9 samples, 0.09%)</title><rect x="612.8" y="4147.0" width="1.1" height="15" fill="#6afc6a" rx="2" ry="2"/>
<text x="615.8" y="4158.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader$1.run (9 samples, 0.09%)</title><rect x="612.8" y="4131.0" width="1.1" height="15" fill="#51e451" rx="2" ry="2"/>
<text x="615.8" y="4142.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.access$100 (9 samples, 0.09%)</title><rect x="612.8" y="4115.0" width="1.1" height="15" fill="#50e350" rx="2" ry="2"/>
<text x="615.8" y="4126.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.defineClass (9 samples, 0.09%)</title><rect x="612.8" y="4099.0" width="1.1" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="615.8" y="4110.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/security/SecureClassLoader.defineClass (9 samples, 0.09%)</title><rect x="612.8" y="4083.0" width="1.1" height="15" fill="#5bed5b" rx="2" ry="2"/>
<text x="615.8" y="4094.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.defineClass (9 samples, 0.09%)</title><rect x="612.8" y="4067.0" width="1.1" height="15" fill="#52e552" rx="2" ry="2"/>
<text x="615.8" y="4078.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.defineClass1 (9 samples, 0.09%)</title><rect x="612.8" y="4051.0" width="1.1" height="15" fill="#4bdf4b" rx="2" ry="2"/>
<text x="615.8" y="4062.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.loadClass (9 samples, 0.09%)</title><rect x="612.8" y="4035.0" width="1.1" height="15" fill="#34ca34" rx="2" ry="2"/>
<text x="615.8" y="4046.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.loadClass (9 samples, 0.09%)</title><rect x="612.8" y="4019.0" width="1.1" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="615.8" y="4030.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.findClass (9 samples, 0.09%)</title><rect x="612.8" y="4003.0" width="1.1" height="15" fill="#38cd38" rx="2" ry="2"/>
<text x="615.8" y="4014.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/security/AccessController.doPrivileged (9 samples, 0.09%)</title><rect x="612.8" y="3987.0" width="1.1" height="15" fill="#6bfc6b" rx="2" ry="2"/>
<text x="615.8" y="3998.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader$1.run (9 samples, 0.09%)</title><rect x="612.8" y="3971.0" width="1.1" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="615.8" y="3982.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader$1.run (9 samples, 0.09%)</title><rect x="612.8" y="3955.0" width="1.1" height="15" fill="#5bed5b" rx="2" ry="2"/>
<text x="615.8" y="3966.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.access$100 (9 samples, 0.09%)</title><rect x="612.8" y="3939.0" width="1.1" height="15" fill="#58eb58" rx="2" ry="2"/>
<text x="615.8" y="3950.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.defineClass (9 samples, 0.09%)</title><rect x="612.8" y="3923.0" width="1.1" height="15" fill="#38cd38" rx="2" ry="2"/>
<text x="615.8" y="3934.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/Enumeration.ValueSet (17 samples, 0.17%)</title><rect x="613.9" y="4243.0" width="2.0" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="616.9" y="4254.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/Enumeration.ValueSet$lzycompute$1 (17 samples, 0.17%)</title><rect x="613.9" y="4227.0" width="2.0" height="15" fill="#35cb35" rx="2" ry="2"/>
<text x="616.9" y="4238.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/Enumeration$ValueSet$.&lt;init&gt; (17 samples, 0.17%)</title><rect x="613.9" y="4211.0" width="2.0" height="15" fill="#58ea58" rx="2" ry="2"/>
<text x="616.9" y="4222.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.loadClass (14 samples, 0.14%)</title><rect x="614.0" y="4195.0" width="1.7" height="15" fill="#51e451" rx="2" ry="2"/>
<text x="617.0" y="4206.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.loadClass (14 samples, 0.14%)</title><rect x="614.0" y="4179.0" width="1.7" height="15" fill="#3cd13c" rx="2" ry="2"/>
<text x="617.0" y="4190.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.findClass (14 samples, 0.14%)</title><rect x="614.0" y="4163.0" width="1.7" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="617.0" y="4174.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/security/AccessController.doPrivileged (14 samples, 0.14%)</title><rect x="614.0" y="4147.0" width="1.7" height="15" fill="#5ef05e" rx="2" ry="2"/>
<text x="617.0" y="4158.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader$1.run (14 samples, 0.14%)</title><rect x="614.0" y="4131.0" width="1.7" height="15" fill="#59eb59" rx="2" ry="2"/>
<text x="617.0" y="4142.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader$1.run (14 samples, 0.14%)</title><rect x="614.0" y="4115.0" width="1.7" height="15" fill="#5aec5a" rx="2" ry="2"/>
<text x="617.0" y="4126.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.access$100 (12 samples, 0.12%)</title><rect x="614.1" y="4099.0" width="1.5" height="15" fill="#38ce38" rx="2" ry="2"/>
<text x="617.1" y="4110.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.defineClass (12 samples, 0.12%)</title><rect x="614.1" y="4083.0" width="1.5" height="15" fill="#5ef05e" rx="2" ry="2"/>
<text x="617.1" y="4094.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/security/SecureClassLoader.defineClass (12 samples, 0.12%)</title><rect x="614.1" y="4067.0" width="1.5" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="617.1" y="4078.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.defineClass (12 samples, 0.12%)</title><rect x="614.1" y="4051.0" width="1.5" height="15" fill="#69fb69" rx="2" ry="2"/>
<text x="617.1" y="4062.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.defineClass1 (12 samples, 0.12%)</title><rect x="614.1" y="4035.0" width="1.5" height="15" fill="#3ed33e" rx="2" ry="2"/>
<text x="617.1" y="4046.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.loadClass (11 samples, 0.11%)</title><rect x="614.2" y="4019.0" width="1.4" height="15" fill="#35cb35" rx="2" ry="2"/>
<text x="617.2" y="4030.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.loadClass (11 samples, 0.11%)</title><rect x="614.2" y="4003.0" width="1.4" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="617.2" y="4014.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.findClass (11 samples, 0.11%)</title><rect x="614.2" y="3987.0" width="1.4" height="15" fill="#47db47" rx="2" ry="2"/>
<text x="617.2" y="3998.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/security/AccessController.doPrivileged (11 samples, 0.11%)</title><rect x="614.2" y="3971.0" width="1.4" height="15" fill="#6cfd6c" rx="2" ry="2"/>
<text x="617.2" y="3982.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader$1.run (11 samples, 0.11%)</title><rect x="614.2" y="3955.0" width="1.4" height="15" fill="#3cd13c" rx="2" ry="2"/>
<text x="617.2" y="3966.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader$1.run (11 samples, 0.11%)</title><rect x="614.2" y="3939.0" width="1.4" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="617.2" y="3950.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.access$100 (11 samples, 0.11%)</title><rect x="614.2" y="3923.0" width="1.4" height="15" fill="#41d641" rx="2" ry="2"/>
<text x="617.2" y="3934.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.defineClass (11 samples, 0.11%)</title><rect x="614.2" y="3907.0" width="1.4" height="15" fill="#68f968" rx="2" ry="2"/>
<text x="617.2" y="3918.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/security/SecureClassLoader.defineClass (11 samples, 0.11%)</title><rect x="614.2" y="3891.0" width="1.4" height="15" fill="#53e753" rx="2" ry="2"/>
<text x="617.2" y="3902.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.defineClass (11 samples, 0.11%)</title><rect x="614.2" y="3875.0" width="1.4" height="15" fill="#34ca34" rx="2" ry="2"/>
<text x="617.2" y="3886.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.defineClass1 (11 samples, 0.11%)</title><rect x="614.2" y="3859.0" width="1.4" height="15" fill="#4ee24e" rx="2" ry="2"/>
<text x="617.2" y="3870.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/StandardMain$.runManaged (3284 samples, 33.42%)</title><rect x="617.0" y="4435.0" width="394.4" height="15" fill="#6dfe6d" rx="2" ry="2"/>
<text x="620.0" y="4446.0">sbt/StandardMain$.runManaged</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/MainLoop$.runLogged (3273 samples, 33.31%)</title><rect x="617.2" y="4419.0" width="393.1" height="15" fill="#5bee5b" rx="2" ry="2"/>
<text x="620.2" y="4430.0">sbt/MainLoop$.runLogged</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/MainLoop$.runLoggedLoop (3273 samples, 33.31%)</title><rect x="617.2" y="4403.0" width="393.1" height="15" fill="#39ce39" rx="2" ry="2"/>
<text x="620.2" y="4414.0">sbt/MainLoop$.runLoggedLoop</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/MainLoop$.runAndClearLast (3273 samples, 33.31%)</title><rect x="617.2" y="4387.0" width="393.1" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="620.2" y="4398.0">sbt/MainLoop$.runAndClearLast</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/MainLoop$.runWithNewLog (3273 samples, 33.31%)</title><rect x="617.2" y="4371.0" width="393.1" height="15" fill="#4fe24f" rx="2" ry="2"/>
<text x="620.2" y="4382.0">sbt/MainLoop$.runWithNewLog</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/io/Using.apply (3265 samples, 33.23%)</title><rect x="618.2" y="4355.0" width="392.1" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="621.2" y="4366.0">sbt/io/Using.apply</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/MainLoop$$$Lambda$303/1595188851.apply (3264 samples, 33.22%)</title><rect x="618.2" y="4339.0" width="392.0" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="621.2" y="4350.0">sbt/MainLoop$$$Lambda$303/1595188851.apply</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/MainLoop$.$anonfun$runWithNewLog$1 (3264 samples, 33.22%)</title><rect x="618.2" y="4323.0" width="392.0" height="15" fill="#36cb36" rx="2" ry="2"/>
<text x="621.2" y="4334.0">sbt/MainLoop$.$anonfun$runWithNewLog$1</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/MainLoop$.run (3259 samples, 33.17%)</title><rect x="618.2" y="4307.0" width="391.4" height="15" fill="#4bde4b" rx="2" ry="2"/>
<text x="621.2" y="4318.0">sbt/MainLoop$.run</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/MainLoop$.next (3259 samples, 33.17%)</title><rect x="618.2" y="4291.0" width="391.4" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="621.2" y="4302.0">sbt/MainLoop$.next</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/ErrorHandling$.wideConvert (3257 samples, 33.15%)</title><rect x="618.4" y="4275.0" width="391.2" height="15" fill="#38cd38" rx="2" ry="2"/>
<text x="621.4" y="4286.0">sbt/internal/util/ErrorHandling$.wideConvert</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/MainLoop$$$Lambda$310/1562595588.apply (3257 samples, 33.15%)</title><rect x="618.4" y="4259.0" width="391.2" height="15" fill="#6cfd6c" rx="2" ry="2"/>
<text x="621.4" y="4270.0">sbt/MainLoop$$$Lambda$310/1562595588.apply</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/MainLoop$.$anonfun$next$1 (3257 samples, 33.15%)</title><rect x="618.4" y="4243.0" width="391.2" height="15" fill="#4bdf4b" rx="2" ry="2"/>
<text x="621.4" y="4254.0">sbt/MainLoop$.$anonfun$next$1</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/State$$anon$1.process (3257 samples, 33.15%)</title><rect x="618.4" y="4227.0" width="391.2" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="621.4" y="4238.0">sbt/State$$anon$1.process</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/State$$anon$1.runCmd$1 (3257 samples, 33.15%)</title><rect x="618.4" y="4211.0" width="391.2" height="15" fill="#68fa68" rx="2" ry="2"/>
<text x="621.4" y="4222.0">sbt/State$$anon$1.runCmd$1</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/MainLoop$$$Lambda$311/1317963297.apply (3248 samples, 33.06%)</title><rect x="618.4" y="4195.0" width="390.1" height="15" fill="#44d944" rx="2" ry="2"/>
<text x="621.4" y="4206.0">sbt/MainLoop$$$Lambda$311/1317963297.apply</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/MainLoop$.$anonfun$next$2 (3248 samples, 33.06%)</title><rect x="618.4" y="4179.0" width="390.1" height="15" fill="#33c933" rx="2" ry="2"/>
<text x="621.4" y="4190.0">sbt/MainLoop$.$anonfun$next$2</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/MainLoop$.processCommand (3248 samples, 33.06%)</title><rect x="618.4" y="4163.0" width="390.1" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="621.4" y="4174.0">sbt/MainLoop$.processCommand</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Command$$$Lambda$322/1832657711.apply (124 samples, 1.26%)</title><rect x="618.6" y="4147.0" width="14.8" height="15" fill="#56e956" rx="2" ry="2"/>
<text x="621.6" y="4158.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Command$.$anonfun$combine$1 (124 samples, 1.26%)</title><rect x="618.6" y="4131.0" width="14.8" height="15" fill="#3fd43f" rx="2" ry="2"/>
<text x="621.6" y="4142.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/List.map (121 samples, 1.23%)</title><rect x="618.9" y="4115.0" width="14.5" height="15" fill="#4ade4a" rx="2" ry="2"/>
<text x="621.9" y="4126.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.map$ (121 samples, 1.23%)</title><rect x="618.9" y="4099.0" width="14.5" height="15" fill="#42d642" rx="2" ry="2"/>
<text x="621.9" y="4110.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.map (121 samples, 1.23%)</title><rect x="618.9" y="4083.0" width="14.5" height="15" fill="#4ee14e" rx="2" ry="2"/>
<text x="621.9" y="4094.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/List.foreach (121 samples, 1.23%)</title><rect x="618.9" y="4067.0" width="14.5" height="15" fill="#3ed33e" rx="2" ry="2"/>
<text x="621.9" y="4078.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike$$Lambda$42/728885526.apply (121 samples, 1.23%)</title><rect x="618.9" y="4051.0" width="14.5" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="621.9" y="4062.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.$anonfun$map$1 (121 samples, 1.23%)</title><rect x="618.9" y="4035.0" width="14.5" height="15" fill="#58eb58" rx="2" ry="2"/>
<text x="621.9" y="4046.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Command$$$Lambda$327/465233746.apply (121 samples, 1.23%)</title><rect x="618.9" y="4019.0" width="14.5" height="15" fill="#6dfe6d" rx="2" ry="2"/>
<text x="621.9" y="4030.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Command$.$anonfun$combine$2 (121 samples, 1.23%)</title><rect x="618.9" y="4003.0" width="14.5" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="621.9" y="4014.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Command$$$Lambda$46/1083021083.apply (118 samples, 1.20%)</title><rect x="619.3" y="3987.0" width="14.1" height="15" fill="#40d540" rx="2" ry="2"/>
<text x="622.3" y="3998.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Command$.$anonfun$applyEffect$3 (118 samples, 1.20%)</title><rect x="619.3" y="3971.0" width="14.1" height="15" fill="#4bdf4b" rx="2" ry="2"/>
<text x="622.3" y="3982.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Cross$$$Lambda$383/1929284175.apply (116 samples, 1.18%)</title><rect x="619.5" y="3955.0" width="13.9" height="15" fill="#5bee5b" rx="2" ry="2"/>
<text x="622.5" y="3966.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Cross$.$anonfun$requireSession$1 (116 samples, 1.18%)</title><rect x="619.5" y="3939.0" width="13.9" height="15" fill="#3ed33e" rx="2" ry="2"/>
<text x="622.5" y="3950.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Keys$.&lt;clinit&gt; (110 samples, 1.12%)</title><rect x="620.2" y="3923.0" width="13.2" height="15" fill="#42d642" rx="2" ry="2"/>
<text x="623.2" y="3934.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Keys$.&lt;init&gt; (110 samples, 1.12%)</title><rect x="620.2" y="3907.0" width="13.2" height="15" fill="#6bfc6b" rx="2" ry="2"/>
<text x="623.2" y="3918.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.loadClass (52 samples, 0.53%)</title><rect x="622.2" y="3891.0" width="6.2" height="15" fill="#33c933" rx="2" ry="2"/>
<text x="625.2" y="3902.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.loadClass (52 samples, 0.53%)</title><rect x="622.2" y="3875.0" width="6.2" height="15" fill="#47db47" rx="2" ry="2"/>
<text x="625.2" y="3886.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.findClass (49 samples, 0.50%)</title><rect x="622.5" y="3859.0" width="5.9" height="15" fill="#4ee24e" rx="2" ry="2"/>
<text x="625.5" y="3870.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/security/AccessController.doPrivileged (49 samples, 0.50%)</title><rect x="622.5" y="3843.0" width="5.9" height="15" fill="#3acf3a" rx="2" ry="2"/>
<text x="625.5" y="3854.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader$1.run (49 samples, 0.50%)</title><rect x="622.5" y="3827.0" width="5.9" height="15" fill="#5bed5b" rx="2" ry="2"/>
<text x="625.5" y="3838.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader$1.run (49 samples, 0.50%)</title><rect x="622.5" y="3811.0" width="5.9" height="15" fill="#3fd43f" rx="2" ry="2"/>
<text x="625.5" y="3822.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.access$100 (49 samples, 0.50%)</title><rect x="622.5" y="3795.0" width="5.9" height="15" fill="#42d742" rx="2" ry="2"/>
<text x="625.5" y="3806.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.defineClass (49 samples, 0.50%)</title><rect x="622.5" y="3779.0" width="5.9" height="15" fill="#3acf3a" rx="2" ry="2"/>
<text x="625.5" y="3790.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/security/SecureClassLoader.defineClass (29 samples, 0.30%)</title><rect x="622.5" y="3763.0" width="3.5" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="625.5" y="3774.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.defineClass (29 samples, 0.30%)</title><rect x="622.5" y="3747.0" width="3.5" height="15" fill="#5aed5a" rx="2" ry="2"/>
<text x="625.5" y="3758.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.defineClass1 (29 samples, 0.30%)</title><rect x="622.5" y="3731.0" width="3.5" height="15" fill="#5def5d" rx="2" ry="2"/>
<text x="625.5" y="3742.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.loadClass (11 samples, 0.11%)</title><rect x="624.7" y="3715.0" width="1.3" height="15" fill="#5def5d" rx="2" ry="2"/>
<text x="627.7" y="3726.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.loadClass (11 samples, 0.11%)</title><rect x="624.7" y="3699.0" width="1.3" height="15" fill="#61f361" rx="2" ry="2"/>
<text x="627.7" y="3710.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.findClass (11 samples, 0.11%)</title><rect x="624.7" y="3683.0" width="1.3" height="15" fill="#41d641" rx="2" ry="2"/>
<text x="627.7" y="3694.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/security/AccessController.doPrivileged (11 samples, 0.11%)</title><rect x="624.7" y="3667.0" width="1.3" height="15" fill="#49dd49" rx="2" ry="2"/>
<text x="627.7" y="3678.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader$1.run (11 samples, 0.11%)</title><rect x="624.7" y="3651.0" width="1.3" height="15" fill="#6dfe6d" rx="2" ry="2"/>
<text x="627.7" y="3662.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader$1.run (11 samples, 0.11%)</title><rect x="624.7" y="3635.0" width="1.3" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="627.7" y="3646.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.access$100 (11 samples, 0.11%)</title><rect x="624.7" y="3619.0" width="1.3" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="627.7" y="3630.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URLClassLoader.defineClass (11 samples, 0.11%)</title><rect x="624.7" y="3603.0" width="1.3" height="15" fill="#39ce39" rx="2" ry="2"/>
<text x="627.7" y="3614.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/security/SecureClassLoader.defineClass (11 samples, 0.11%)</title><rect x="624.7" y="3587.0" width="1.3" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="627.7" y="3598.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.defineClass (11 samples, 0.11%)</title><rect x="624.7" y="3571.0" width="1.3" height="15" fill="#64f564" rx="2" ry="2"/>
<text x="627.7" y="3582.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ClassLoader.defineClass1 (11 samples, 0.11%)</title><rect x="624.7" y="3555.0" width="1.3" height="15" fill="#35cb35" rx="2" ry="2"/>
<text x="627.7" y="3566.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/misc/Resource.getBytes (18 samples, 0.18%)</title><rect x="626.1" y="3763.0" width="2.2" height="15" fill="#42d742" rx="2" ry="2"/>
<text x="629.1" y="3774.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/zip/InflaterInputStream.read (18 samples, 0.18%)</title><rect x="626.1" y="3747.0" width="2.2" height="15" fill="#57ea57" rx="2" ry="2"/>
<text x="629.1" y="3758.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/zip/ZipFile$ZipFileInflaterInputStream.fill (18 samples, 0.18%)</title><rect x="626.1" y="3731.0" width="2.2" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="629.1" y="3742.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/zip/ZipFile$ZipFileInputStream.read (18 samples, 0.18%)</title><rect x="626.1" y="3715.0" width="2.2" height="15" fill="#47db47" rx="2" ry="2"/>
<text x="629.1" y="3726.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/zip/ZipFile.access$1400 (18 samples, 0.18%)</title><rect x="626.1" y="3699.0" width="2.2" height="15" fill="#6bfc6b" rx="2" ry="2"/>
<text x="629.1" y="3710.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/zip/ZipFile.read (18 samples, 0.18%)</title><rect x="626.1" y="3683.0" width="2.2" height="15" fill="#47db47" rx="2" ry="2"/>
<text x="629.1" y="3694.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/librarymanagement/LibraryManagementCodec$.&lt;clinit&gt; (14 samples, 0.14%)</title><rect x="630.2" y="3891.0" width="1.7" height="15" fill="#4fe34f" rx="2" ry="2"/>
<text x="633.2" y="3902.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/librarymanagement/LibraryManagementCodec$.&lt;init&gt; (14 samples, 0.14%)</title><rect x="630.2" y="3875.0" width="1.7" height="15" fill="#3ad03a" rx="2" ry="2"/>
<text x="633.2" y="3886.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Command$$$Lambda$354/943659381.apply (46 samples, 0.47%)</title><rect x="633.4" y="4147.0" width="5.6" height="15" fill="#42d642" rx="2" ry="2"/>
<text x="636.4" y="4158.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Command$.$anonfun$command$2 (46 samples, 0.47%)</title><rect x="633.4" y="4131.0" width="5.6" height="15" fill="#51e451" rx="2" ry="2"/>
<text x="636.4" y="4142.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/BuiltinCommands$$$Lambda$13/1332668132.apply (35 samples, 0.36%)</title><rect x="633.9" y="4115.0" width="4.2" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="636.9" y="4126.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/BuiltinCommands$.$anonfun$defaults$1 (35 samples, 0.36%)</title><rect x="633.9" y="4099.0" width="4.2" height="15" fill="#65f765" rx="2" ry="2"/>
<text x="636.9" y="4110.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/BuiltinCommands$.DefaultCommands (35 samples, 0.36%)</title><rect x="633.9" y="4083.0" width="4.2" height="15" fill="#44d844" rx="2" ry="2"/>
<text x="636.9" y="4094.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Command$$$Lambda$356/652007616.apply (2975 samples, 30.28%)</title><rect x="639.0" y="4147.0" width="357.3" height="15" fill="#6bfc6b" rx="2" ry="2"/>
<text x="642.0" y="4158.0">sbt/Command$$$Lambda$356/652007616.apply</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Command$.$anonfun$applyEffect$2 (2975 samples, 30.28%)</title><rect x="639.0" y="4131.0" width="357.3" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="642.0" y="4142.0">sbt/Command$.$anonfun$applyEffect$2</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Command$$$Lambda$330/1980194149.apply (2975 samples, 30.28%)</title><rect x="639.0" y="4115.0" width="357.3" height="15" fill="#65f765" rx="2" ry="2"/>
<text x="642.0" y="4126.0">sbt/Command$$$Lambda$330/1980194149.apply</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Command$.$anonfun$applyEffect$4 (2975 samples, 30.28%)</title><rect x="639.0" y="4099.0" width="357.3" height="15" fill="#3fd43f" rx="2" ry="2"/>
<text x="642.0" y="4110.0">sbt/Command$.$anonfun$applyEffect$4</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/BuiltinCommands$$$Lambda$380/1313618488.apply (2975 samples, 30.28%)</title><rect x="639.0" y="4083.0" width="357.3" height="15" fill="#68f968" rx="2" ry="2"/>
<text x="642.0" y="4094.0">sbt/BuiltinCommands$$$Lambda$380/1313618488.apply</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/BuiltinCommands$.$anonfun$loadProjectImpl$2 (2975 samples, 30.28%)</title><rect x="639.0" y="4067.0" width="357.3" height="15" fill="#41d641" rx="2" ry="2"/>
<text x="642.0" y="4078.0">sbt/BuiltinCommands$.$anonfun$loadProjectImpl$2</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/BuiltinCommands$.doLoadProject (2975 samples, 30.28%)</title><rect x="639.0" y="4051.0" width="357.3" height="15" fill="#6bfc6b" rx="2" ry="2"/>
<text x="642.0" y="4062.0">sbt/BuiltinCommands$.doLoadProject</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/BuiltinCommands$.liftedTree1$1 (2964 samples, 30.17%)</title><rect x="639.3" y="4035.0" width="356.0" height="15" fill="#40d540" rx="2" ry="2"/>
<text x="642.3" y="4046.0">sbt/BuiltinCommands$.liftedTree1$1</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/Load$.&lt;clinit&gt; (12 samples, 0.12%)</title><rect x="639.9" y="4019.0" width="1.5" height="15" fill="#68f968" rx="2" ry="2"/>
<text x="642.9" y="4030.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/Load$.&lt;init&gt; (12 samples, 0.12%)</title><rect x="639.9" y="4003.0" width="1.5" height="15" fill="#38ce38" rx="2" ry="2"/>
<text x="642.9" y="4014.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/Load$.defaultLoad (2947 samples, 29.99%)</title><rect x="641.4" y="4019.0" width="353.9" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="644.4" y="4030.0">sbt/internal/Load$.defaultLoad</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/Load$.apply (1376 samples, 14.01%)</title><rect x="641.4" y="4003.0" width="165.2" height="15" fill="#50e450" rx="2" ry="2"/>
<text x="644.4" y="4014.0">sbt/internal/Load$.ap..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/Load$.timed (1374 samples, 13.98%)</title><rect x="641.6" y="3987.0" width="165.0" height="15" fill="#33c833" rx="2" ry="2"/>
<text x="644.6" y="3998.0">sbt/internal/Load$.ti..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/Load$$$Lambda$1468/463759298.apply (75 samples, 0.76%)</title><rect x="642.3" y="3971.0" width="9.0" height="15" fill="#4ade4a" rx="2" ry="2"/>
<text x="645.3" y="3982.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/Load$.$anonfun$apply$3 (75 samples, 0.76%)</title><rect x="642.3" y="3955.0" width="9.0" height="15" fill="#45da45" rx="2" ry="2"/>
<text x="645.3" y="3966.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/Load$.buildConfigurations (58 samples, 0.59%)</title><rect x="642.3" y="3939.0" width="7.0" height="15" fill="#42d742" rx="2" ry="2"/>
<text x="645.3" y="3950.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractTraversable.flatMap (57 samples, 0.58%)</title><rect x="642.5" y="3923.0" width="6.8" height="15" fill="#54e854" rx="2" ry="2"/>
<text x="645.5" y="3934.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.flatMap$ (57 samples, 0.58%)</title><rect x="642.5" y="3907.0" width="6.8" height="15" fill="#63f563" rx="2" ry="2"/>
<text x="645.5" y="3918.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.flatMap (57 samples, 0.58%)</title><rect x="642.5" y="3891.0" width="6.8" height="15" fill="#69fb69" rx="2" ry="2"/>
<text x="645.5" y="3902.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractIterable.foreach (57 samples, 0.58%)</title><rect x="642.5" y="3875.0" width="6.8" height="15" fill="#6afb6a" rx="2" ry="2"/>
<text x="645.5" y="3886.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IterableLike.foreach$ (57 samples, 0.58%)</title><rect x="642.5" y="3859.0" width="6.8" height="15" fill="#66f766" rx="2" ry="2"/>
<text x="645.5" y="3870.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IterableLike.foreach (57 samples, 0.58%)</title><rect x="642.5" y="3843.0" width="6.8" height="15" fill="#38ce38" rx="2" ry="2"/>
<text x="645.5" y="3854.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractIterator.foreach (57 samples, 0.58%)</title><rect x="642.5" y="3827.0" width="6.8" height="15" fill="#68fa68" rx="2" ry="2"/>
<text x="645.5" y="3838.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/Iterator.foreach$ (57 samples, 0.58%)</title><rect x="642.5" y="3811.0" width="6.8" height="15" fill="#50e450" rx="2" ry="2"/>
<text x="645.5" y="3822.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/Iterator.foreach (57 samples, 0.58%)</title><rect x="642.5" y="3795.0" width="6.8" height="15" fill="#65f665" rx="2" ry="2"/>
<text x="645.5" y="3806.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike$$Lambda$541/18601987.apply (57 samples, 0.58%)</title><rect x="642.5" y="3779.0" width="6.8" height="15" fill="#3acf3a" rx="2" ry="2"/>
<text x="645.5" y="3790.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.$anonfun$flatMap$1 (57 samples, 0.58%)</title><rect x="642.5" y="3763.0" width="6.8" height="15" fill="#3acf3a" rx="2" ry="2"/>
<text x="645.5" y="3774.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/Load$$$Lambda$1487/1886247880.apply (57 samples, 0.58%)</title><rect x="642.5" y="3747.0" width="6.8" height="15" fill="#58eb58" rx="2" ry="2"/>
<text x="645.5" y="3758.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/Load$.$anonfun$buildConfigurations$1 (57 samples, 0.58%)</title><rect x="642.5" y="3731.0" width="6.8" height="15" fill="#3acf3a" rx="2" ry="2"/>
<text x="645.5" y="3742.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractTraversable.flatMap (49 samples, 0.50%)</title><rect x="643.4" y="3715.0" width="5.9" height="15" fill="#5cee5c" rx="2" ry="2"/>
<text x="646.4" y="3726.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.flatMap$ (49 samples, 0.50%)</title><rect x="643.4" y="3699.0" width="5.9" height="15" fill="#57ea57" rx="2" ry="2"/>
<text x="646.4" y="3710.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.flatMap (49 samples, 0.50%)</title><rect x="643.4" y="3683.0" width="5.9" height="15" fill="#66f766" rx="2" ry="2"/>
<text x="646.4" y="3694.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/MapLike$MappedValues.foreach (49 samples, 0.50%)</title><rect x="643.4" y="3667.0" width="5.9" height="15" fill="#65f765" rx="2" ry="2"/>
<text x="646.4" y="3678.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike$WithFilter.foreach (49 samples, 0.50%)</title><rect x="643.4" y="3651.0" width="5.9" height="15" fill="#41d641" rx="2" ry="2"/>
<text x="646.4" y="3662.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/HashMap$HashTrieMap.foreach (49 samples, 0.50%)</title><rect x="643.4" y="3635.0" width="5.9" height="15" fill="#56e956" rx="2" ry="2"/>
<text x="646.4" y="3646.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/HashMap$HashMap1.foreach (31 samples, 0.32%)</title><rect x="643.4" y="3619.0" width="3.7" height="15" fill="#33c933" rx="2" ry="2"/>
<text x="646.4" y="3630.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike$WithFilter$$Lambda$810/1140697305.apply (31 samples, 0.32%)</title><rect x="643.4" y="3603.0" width="3.7" height="15" fill="#51e551" rx="2" ry="2"/>
<text x="646.4" y="3614.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike$WithFilter.$anonfun$foreach$1 (31 samples, 0.32%)</title><rect x="643.4" y="3587.0" width="3.7" height="15" fill="#6bfc6b" rx="2" ry="2"/>
<text x="646.4" y="3598.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/MapLike$MappedValues$$Lambda$1492/1807397140.apply (31 samples, 0.32%)</title><rect x="643.4" y="3571.0" width="3.7" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="646.4" y="3582.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/MapLike$MappedValues.$anonfun$foreach$3 (31 samples, 0.32%)</title><rect x="643.4" y="3555.0" width="3.7" height="15" fill="#69fb69" rx="2" ry="2"/>
<text x="646.4" y="3566.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike$$Lambda$541/18601987.apply (30 samples, 0.31%)</title><rect x="643.5" y="3539.0" width="3.6" height="15" fill="#52e652" rx="2" ry="2"/>
<text x="646.5" y="3550.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.$anonfun$flatMap$1 (30 samples, 0.31%)</title><rect x="643.5" y="3523.0" width="3.6" height="15" fill="#6bfc6b" rx="2" ry="2"/>
<text x="646.5" y="3534.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/Load$$$Lambda$1490/2126392903.apply (30 samples, 0.31%)</title><rect x="643.5" y="3507.0" width="3.6" height="15" fill="#43d843" rx="2" ry="2"/>
<text x="646.5" y="3518.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/Load$.$anonfun$buildConfigurations$2 (30 samples, 0.31%)</title><rect x="643.5" y="3491.0" width="3.6" height="15" fill="#5df05d" rx="2" ry="2"/>
<text x="646.5" y="3502.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/Load$.transformSettings (30 samples, 0.31%)</title><rect x="643.5" y="3475.0" width="3.6" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="646.5" y="3486.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Project$.transform (30 samples, 0.31%)</title><rect x="643.5" y="3459.0" width="3.6" height="15" fill="#4de14d" rx="2" ry="2"/>
<text x="646.5" y="3470.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/List.map (30 samples, 0.31%)</title><rect x="643.5" y="3443.0" width="3.6" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="646.5" y="3454.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.map$ (30 samples, 0.31%)</title><rect x="643.5" y="3427.0" width="3.6" height="15" fill="#3cd13c" rx="2" ry="2"/>
<text x="646.5" y="3438.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.map (30 samples, 0.31%)</title><rect x="643.5" y="3411.0" width="3.6" height="15" fill="#60f260" rx="2" ry="2"/>
<text x="646.5" y="3422.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/List.foreach (30 samples, 0.31%)</title><rect x="643.5" y="3395.0" width="3.6" height="15" fill="#53e653" rx="2" ry="2"/>
<text x="646.5" y="3406.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike$$Lambda$42/728885526.apply (29 samples, 0.30%)</title><rect x="643.5" y="3379.0" width="3.5" height="15" fill="#52e652" rx="2" ry="2"/>
<text x="646.5" y="3390.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.$anonfun$map$1 (29 samples, 0.30%)</title><rect x="643.5" y="3363.0" width="3.5" height="15" fill="#46da46" rx="2" ry="2"/>
<text x="646.5" y="3374.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Project$$$Lambda$565/1668376627.apply (29 samples, 0.30%)</title><rect x="643.5" y="3347.0" width="3.5" height="15" fill="#33c933" rx="2" ry="2"/>
<text x="646.5" y="3358.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Project$.$anonfun$transform$1 (29 samples, 0.30%)</title><rect x="643.5" y="3331.0" width="3.5" height="15" fill="#4ee24e" rx="2" ry="2"/>
<text x="646.5" y="3342.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$Setting.mapReferenced (26 samples, 0.26%)</title><rect x="643.9" y="3315.0" width="3.1" height="15" fill="#5ff15f" rx="2" ry="2"/>
<text x="646.9" y="3326.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$Apply.mapReferenced (26 samples, 0.26%)</title><rect x="643.9" y="3299.0" width="3.1" height="15" fill="#6cfd6c" rx="2" ry="2"/>
<text x="646.9" y="3310.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$Apply.mapInputs (26 samples, 0.26%)</title><rect x="643.9" y="3283.0" width="3.1" height="15" fill="#4fe24f" rx="2" ry="2"/>
<text x="646.9" y="3294.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/AList$$anon$4.transform (11 samples, 0.11%)</title><rect x="644.0" y="3267.0" width="1.3" height="15" fill="#63f563" rx="2" ry="2"/>
<text x="647.0" y="3278.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$$anon$11.apply (11 samples, 0.11%)</title><rect x="644.0" y="3251.0" width="1.3" height="15" fill="#61f361" rx="2" ry="2"/>
<text x="647.0" y="3262.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$$anon$11.apply (11 samples, 0.11%)</title><rect x="644.0" y="3235.0" width="1.3" height="15" fill="#3acf3a" rx="2" ry="2"/>
<text x="647.0" y="3246.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$Apply.mapReferenced (9 samples, 0.09%)</title><rect x="644.0" y="3219.0" width="1.1" height="15" fill="#33c933" rx="2" ry="2"/>
<text x="647.0" y="3230.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$Apply.mapInputs (9 samples, 0.09%)</title><rect x="644.0" y="3203.0" width="1.1" height="15" fill="#47dc47" rx="2" ry="2"/>
<text x="647.0" y="3214.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/AList$$anon$5.transform (14 samples, 0.14%)</title><rect x="645.3" y="3267.0" width="1.7" height="15" fill="#65f765" rx="2" ry="2"/>
<text x="648.3" y="3278.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/HashMap$HashTrieMap.foreach (18 samples, 0.18%)</title><rect x="647.1" y="3619.0" width="2.2" height="15" fill="#47db47" rx="2" ry="2"/>
<text x="650.1" y="3630.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/HashMap$HashMap1.foreach (18 samples, 0.18%)</title><rect x="647.1" y="3603.0" width="2.2" height="15" fill="#5df05d" rx="2" ry="2"/>
<text x="650.1" y="3614.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike$WithFilter$$Lambda$810/1140697305.apply (18 samples, 0.18%)</title><rect x="647.1" y="3587.0" width="2.2" height="15" fill="#58eb58" rx="2" ry="2"/>
<text x="650.1" y="3598.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike$WithFilter.$anonfun$foreach$1 (18 samples, 0.18%)</title><rect x="647.1" y="3571.0" width="2.2" height="15" fill="#45da45" rx="2" ry="2"/>
<text x="650.1" y="3582.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/MapLike$MappedValues$$Lambda$1492/1807397140.apply (18 samples, 0.18%)</title><rect x="647.1" y="3555.0" width="2.2" height="15" fill="#46db46" rx="2" ry="2"/>
<text x="650.1" y="3566.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/MapLike$MappedValues.$anonfun$foreach$3 (18 samples, 0.18%)</title><rect x="647.1" y="3539.0" width="2.2" height="15" fill="#40d540" rx="2" ry="2"/>
<text x="650.1" y="3550.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike$$Lambda$541/18601987.apply (18 samples, 0.18%)</title><rect x="647.1" y="3523.0" width="2.2" height="15" fill="#3acf3a" rx="2" ry="2"/>
<text x="650.1" y="3534.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.$anonfun$flatMap$1 (18 samples, 0.18%)</title><rect x="647.1" y="3507.0" width="2.2" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="650.1" y="3518.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/Load$$$Lambda$1490/2126392903.apply (18 samples, 0.18%)</title><rect x="647.1" y="3491.0" width="2.2" height="15" fill="#46db46" rx="2" ry="2"/>
<text x="650.1" y="3502.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/Load$.$anonfun$buildConfigurations$2 (18 samples, 0.18%)</title><rect x="647.1" y="3475.0" width="2.2" height="15" fill="#38cd38" rx="2" ry="2"/>
<text x="650.1" y="3486.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/Load$.transformSettings (17 samples, 0.17%)</title><rect x="647.1" y="3459.0" width="2.1" height="15" fill="#68f968" rx="2" ry="2"/>
<text x="650.1" y="3470.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Project$.transform (17 samples, 0.17%)</title><rect x="647.1" y="3443.0" width="2.1" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="650.1" y="3454.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/List.map (17 samples, 0.17%)</title><rect x="647.1" y="3427.0" width="2.1" height="15" fill="#51e451" rx="2" ry="2"/>
<text x="650.1" y="3438.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.map$ (17 samples, 0.17%)</title><rect x="647.1" y="3411.0" width="2.1" height="15" fill="#3fd43f" rx="2" ry="2"/>
<text x="650.1" y="3422.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.map (17 samples, 0.17%)</title><rect x="647.1" y="3395.0" width="2.1" height="15" fill="#50e450" rx="2" ry="2"/>
<text x="650.1" y="3406.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/List.foreach (17 samples, 0.17%)</title><rect x="647.1" y="3379.0" width="2.1" height="15" fill="#3ed33e" rx="2" ry="2"/>
<text x="650.1" y="3390.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike$$Lambda$42/728885526.apply (17 samples, 0.17%)</title><rect x="647.1" y="3363.0" width="2.1" height="15" fill="#3cd23c" rx="2" ry="2"/>
<text x="650.1" y="3374.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.$anonfun$map$1 (17 samples, 0.17%)</title><rect x="647.1" y="3347.0" width="2.1" height="15" fill="#35cb35" rx="2" ry="2"/>
<text x="650.1" y="3358.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Project$$$Lambda$565/1668376627.apply (17 samples, 0.17%)</title><rect x="647.1" y="3331.0" width="2.1" height="15" fill="#50e350" rx="2" ry="2"/>
<text x="650.1" y="3342.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Project$.$anonfun$transform$1 (17 samples, 0.17%)</title><rect x="647.1" y="3315.0" width="2.1" height="15" fill="#6cfd6c" rx="2" ry="2"/>
<text x="650.1" y="3326.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$Setting.mapReferenced (15 samples, 0.15%)</title><rect x="647.4" y="3299.0" width="1.8" height="15" fill="#50e350" rx="2" ry="2"/>
<text x="650.4" y="3310.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$Apply.mapReferenced (15 samples, 0.15%)</title><rect x="647.4" y="3283.0" width="1.8" height="15" fill="#51e551" rx="2" ry="2"/>
<text x="650.4" y="3294.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$Apply.mapInputs (15 samples, 0.15%)</title><rect x="647.4" y="3267.0" width="1.8" height="15" fill="#47db47" rx="2" ry="2"/>
<text x="650.4" y="3278.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/AList$$anon$5.transform (9 samples, 0.09%)</title><rect x="648.0" y="3251.0" width="1.1" height="15" fill="#47dc47" rx="2" ry="2"/>
<text x="651.0" y="3262.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/Load$.finalTransforms (17 samples, 0.17%)</title><rect x="649.3" y="3939.0" width="2.0" height="15" fill="#45d945" rx="2" ry="2"/>
<text x="652.3" y="3950.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/List.map (17 samples, 0.17%)</title><rect x="649.3" y="3923.0" width="2.0" height="15" fill="#42d742" rx="2" ry="2"/>
<text x="652.3" y="3934.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.map$ (17 samples, 0.17%)</title><rect x="649.3" y="3907.0" width="2.0" height="15" fill="#56e956" rx="2" ry="2"/>
<text x="652.3" y="3918.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.map (17 samples, 0.17%)</title><rect x="649.3" y="3891.0" width="2.0" height="15" fill="#4de04d" rx="2" ry="2"/>
<text x="652.3" y="3902.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/List.foreach (17 samples, 0.17%)</title><rect x="649.3" y="3875.0" width="2.0" height="15" fill="#6dfe6d" rx="2" ry="2"/>
<text x="652.3" y="3886.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike$$Lambda$42/728885526.apply (17 samples, 0.17%)</title><rect x="649.3" y="3859.0" width="2.0" height="15" fill="#4fe34f" rx="2" ry="2"/>
<text x="652.3" y="3870.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.$anonfun$map$1 (17 samples, 0.17%)</title><rect x="649.3" y="3843.0" width="2.0" height="15" fill="#66f766" rx="2" ry="2"/>
<text x="652.3" y="3854.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/Load$$$Lambda$1495/757819744.apply (17 samples, 0.17%)</title><rect x="649.3" y="3827.0" width="2.0" height="15" fill="#69fb69" rx="2" ry="2"/>
<text x="652.3" y="3838.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/Load$.$anonfun$finalTransforms$3 (17 samples, 0.17%)</title><rect x="649.3" y="3811.0" width="2.0" height="15" fill="#63f563" rx="2" ry="2"/>
<text x="652.3" y="3822.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/Load$$$Lambda$1526/854795811.apply (391 samples, 3.98%)</title><rect x="651.5" y="3971.0" width="46.9" height="15" fill="#4ce04c" rx="2" ry="2"/>
<text x="654.5" y="3982.0">sbt/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/Load$.$anonfun$apply$5 (391 samples, 3.98%)</title><rect x="651.5" y="3955.0" width="46.9" height="15" fill="#34ca34" rx="2" ry="2"/>
<text x="654.5" y="3966.0">sbt/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Def$.make (389 samples, 3.96%)</title><rect x="651.6" y="3939.0" width="46.7" height="15" fill="#42d642" rx="2" ry="2"/>
<text x="654.6" y="3950.0">sbt/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init.make$ (389 samples, 3.96%)</title><rect x="651.6" y="3923.0" width="46.7" height="15" fill="#5cee5c" rx="2" ry="2"/>
<text x="654.6" y="3934.0">sbt/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init.make (389 samples, 3.96%)</title><rect x="651.6" y="3907.0" width="46.7" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="654.6" y="3918.0">sbt/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Def$.compiled (318 samples, 3.24%)</title><rect x="651.6" y="3891.0" width="38.2" height="15" fill="#6bfc6b" rx="2" ry="2"/>
<text x="654.6" y="3902.0">sbt..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init.compiled$ (318 samples, 3.24%)</title><rect x="651.6" y="3875.0" width="38.2" height="15" fill="#65f765" rx="2" ry="2"/>
<text x="654.6" y="3886.0">sbt..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init.compiled (318 samples, 3.24%)</title><rect x="651.6" y="3859.0" width="38.2" height="15" fill="#56e956" rx="2" ry="2"/>
<text x="654.6" y="3870.0">sbt..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Def$.compile (19 samples, 0.19%)</title><rect x="651.6" y="3843.0" width="2.3" height="15" fill="#6afb6a" rx="2" ry="2"/>
<text x="654.6" y="3854.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init.compile$ (19 samples, 0.19%)</title><rect x="651.6" y="3827.0" width="2.3" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="654.6" y="3838.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init.compile (19 samples, 0.19%)</title><rect x="651.6" y="3811.0" width="2.3" height="15" fill="#69fa69" rx="2" ry="2"/>
<text x="654.6" y="3822.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractTraversable.map (16 samples, 0.16%)</title><rect x="651.9" y="3795.0" width="2.0" height="15" fill="#6afc6a" rx="2" ry="2"/>
<text x="654.9" y="3806.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.map$ (16 samples, 0.16%)</title><rect x="651.9" y="3779.0" width="2.0" height="15" fill="#34c934" rx="2" ry="2"/>
<text x="654.9" y="3790.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.map (16 samples, 0.16%)</title><rect x="651.9" y="3763.0" width="2.0" height="15" fill="#48dd48" rx="2" ry="2"/>
<text x="654.9" y="3774.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractIterable.foreach (16 samples, 0.16%)</title><rect x="651.9" y="3747.0" width="2.0" height="15" fill="#3cd13c" rx="2" ry="2"/>
<text x="654.9" y="3758.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IterableLike.foreach$ (16 samples, 0.16%)</title><rect x="651.9" y="3731.0" width="2.0" height="15" fill="#42d742" rx="2" ry="2"/>
<text x="654.9" y="3742.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IterableLike.foreach (16 samples, 0.16%)</title><rect x="651.9" y="3715.0" width="2.0" height="15" fill="#43d743" rx="2" ry="2"/>
<text x="654.9" y="3726.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractIterator.foreach (16 samples, 0.16%)</title><rect x="651.9" y="3699.0" width="2.0" height="15" fill="#43d743" rx="2" ry="2"/>
<text x="654.9" y="3710.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/Iterator.foreach$ (16 samples, 0.16%)</title><rect x="651.9" y="3683.0" width="2.0" height="15" fill="#52e552" rx="2" ry="2"/>
<text x="654.9" y="3694.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/Iterator.foreach (16 samples, 0.16%)</title><rect x="651.9" y="3667.0" width="2.0" height="15" fill="#3fd43f" rx="2" ry="2"/>
<text x="654.9" y="3678.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike$$Lambda$42/728885526.apply (16 samples, 0.16%)</title><rect x="651.9" y="3651.0" width="2.0" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="654.9" y="3662.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.$anonfun$map$1 (16 samples, 0.16%)</title><rect x="651.9" y="3635.0" width="2.0" height="15" fill="#3acf3a" rx="2" ry="2"/>
<text x="654.9" y="3646.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$$Lambda$1575/2034610694.apply (15 samples, 0.15%)</title><rect x="651.9" y="3619.0" width="1.8" height="15" fill="#33c933" rx="2" ry="2"/>
<text x="654.9" y="3630.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init.$anonfun$compile$1 (15 samples, 0.15%)</title><rect x="651.9" y="3603.0" width="1.8" height="15" fill="#38cd38" rx="2" ry="2"/>
<text x="654.9" y="3614.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Def$.delegate (151 samples, 1.54%)</title><rect x="653.9" y="3843.0" width="18.1" height="15" fill="#56e956" rx="2" ry="2"/>
<text x="656.9" y="3854.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init.delegate$ (151 samples, 1.54%)</title><rect x="653.9" y="3827.0" width="18.1" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="656.9" y="3838.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init.delegate (151 samples, 1.54%)</title><rect x="653.9" y="3811.0" width="18.1" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="656.9" y="3822.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/IMap$IMap0.mapSeparate (151 samples, 1.54%)</title><rect x="653.9" y="3795.0" width="18.1" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="656.9" y="3806.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractIterator.toList (147 samples, 1.50%)</title><rect x="653.9" y="3779.0" width="17.6" height="15" fill="#56e956" rx="2" ry="2"/>
<text x="656.9" y="3790.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.toList$ (147 samples, 1.50%)</title><rect x="653.9" y="3763.0" width="17.6" height="15" fill="#52e652" rx="2" ry="2"/>
<text x="656.9" y="3774.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.toList (147 samples, 1.50%)</title><rect x="653.9" y="3747.0" width="17.6" height="15" fill="#48dd48" rx="2" ry="2"/>
<text x="656.9" y="3758.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractIterator.to (147 samples, 1.50%)</title><rect x="653.9" y="3731.0" width="17.6" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="656.9" y="3742.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.to$ (147 samples, 1.50%)</title><rect x="653.9" y="3715.0" width="17.6" height="15" fill="#4de04d" rx="2" ry="2"/>
<text x="656.9" y="3726.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.to (147 samples, 1.50%)</title><rect x="653.9" y="3699.0" width="17.6" height="15" fill="#5bed5b" rx="2" ry="2"/>
<text x="656.9" y="3710.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/mutable/ListBuffer.$plus$plus$eq (147 samples, 1.50%)</title><rect x="653.9" y="3683.0" width="17.6" height="15" fill="#5df05d" rx="2" ry="2"/>
<text x="656.9" y="3694.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/mutable/ListBuffer.$plus$plus$eq (147 samples, 1.50%)</title><rect x="653.9" y="3667.0" width="17.6" height="15" fill="#44d844" rx="2" ry="2"/>
<text x="656.9" y="3678.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/generic/Growable.$plus$plus$eq$ (147 samples, 1.50%)</title><rect x="653.9" y="3651.0" width="17.6" height="15" fill="#3acf3a" rx="2" ry="2"/>
<text x="656.9" y="3662.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/generic/Growable.$plus$plus$eq (147 samples, 1.50%)</title><rect x="653.9" y="3635.0" width="17.6" height="15" fill="#67f967" rx="2" ry="2"/>
<text x="656.9" y="3646.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractIterator.foreach (147 samples, 1.50%)</title><rect x="653.9" y="3619.0" width="17.6" height="15" fill="#38cd38" rx="2" ry="2"/>
<text x="656.9" y="3630.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/Iterator.foreach$ (147 samples, 1.50%)</title><rect x="653.9" y="3603.0" width="17.6" height="15" fill="#57ea57" rx="2" ry="2"/>
<text x="656.9" y="3614.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/Iterator.foreach (147 samples, 1.50%)</title><rect x="653.9" y="3587.0" width="17.6" height="15" fill="#6cfd6c" rx="2" ry="2"/>
<text x="656.9" y="3598.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/Iterator$$anon$10.next (147 samples, 1.50%)</title><rect x="653.9" y="3571.0" width="17.6" height="15" fill="#56e956" rx="2" ry="2"/>
<text x="656.9" y="3582.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/IMap$IMap0$$Lambda$1564/1428815684.apply (147 samples, 1.50%)</title><rect x="653.9" y="3555.0" width="17.6" height="15" fill="#39cf39" rx="2" ry="2"/>
<text x="656.9" y="3566.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/IMap$IMap0.$anonfun$mapSeparate$1 (145 samples, 1.48%)</title><rect x="654.1" y="3539.0" width="17.4" height="15" fill="#57ea57" rx="2" ry="2"/>
<text x="657.1" y="3550.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$$anon$6.apply (145 samples, 1.48%)</title><rect x="654.1" y="3523.0" width="17.4" height="15" fill="#39cf39" rx="2" ry="2"/>
<text x="657.1" y="3534.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$$anon$6.apply (144 samples, 1.47%)</title><rect x="654.2" y="3507.0" width="17.3" height="15" fill="#69fa69" rx="2" ry="2"/>
<text x="657.2" y="3518.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Util$.separate (141 samples, 1.44%)</title><rect x="654.2" y="3491.0" width="17.0" height="15" fill="#67f967" rx="2" ry="2"/>
<text x="657.2" y="3502.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractTraversable.$div$colon (137 samples, 1.39%)</title><rect x="654.6" y="3475.0" width="16.4" height="15" fill="#33c933" rx="2" ry="2"/>
<text x="657.6" y="3486.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.$div$colon$ (137 samples, 1.39%)</title><rect x="654.6" y="3459.0" width="16.4" height="15" fill="#56e956" rx="2" ry="2"/>
<text x="657.6" y="3470.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.$div$colon (137 samples, 1.39%)</title><rect x="654.6" y="3443.0" width="16.4" height="15" fill="#5bed5b" rx="2" ry="2"/>
<text x="657.6" y="3454.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/List.foldLeft (137 samples, 1.39%)</title><rect x="654.6" y="3427.0" width="16.4" height="15" fill="#34ca34" rx="2" ry="2"/>
<text x="657.6" y="3438.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/LinearSeqOptimized.foldLeft$ (137 samples, 1.39%)</title><rect x="654.6" y="3411.0" width="16.4" height="15" fill="#56e956" rx="2" ry="2"/>
<text x="657.6" y="3422.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/LinearSeqOptimized.foldLeft (137 samples, 1.39%)</title><rect x="654.6" y="3395.0" width="16.4" height="15" fill="#3fd43f" rx="2" ry="2"/>
<text x="657.6" y="3406.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Util$$$Lambda$321/81269359.apply (137 samples, 1.39%)</title><rect x="654.6" y="3379.0" width="16.4" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="657.6" y="3390.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Util$.$anonfun$separate$1 (137 samples, 1.39%)</title><rect x="654.6" y="3363.0" width="16.4" height="15" fill="#3cd13c" rx="2" ry="2"/>
<text x="657.6" y="3374.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$$anon$6$$Lambda$1566/1246810186.apply (136 samples, 1.38%)</title><rect x="654.6" y="3347.0" width="16.3" height="15" fill="#43d843" rx="2" ry="2"/>
<text x="657.6" y="3358.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$$anon$6.$anonfun$apply$1 (136 samples, 1.38%)</title><rect x="654.6" y="3331.0" width="16.3" height="15" fill="#36cb36" rx="2" ry="2"/>
<text x="657.6" y="3342.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$Setting.validateKeyReferenced (134 samples, 1.36%)</title><rect x="654.6" y="3315.0" width="16.1" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="657.6" y="3326.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$Apply.validateKeyReferenced (133 samples, 1.35%)</title><rect x="654.6" y="3299.0" width="16.0" height="15" fill="#4fe24f" rx="2" ry="2"/>
<text x="657.6" y="3310.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/AList$$anon$4.transform (63 samples, 0.64%)</title><rect x="654.8" y="3283.0" width="7.6" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="657.8" y="3294.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$$anon$10.apply (63 samples, 0.64%)</title><rect x="654.8" y="3267.0" width="7.6" height="15" fill="#5aed5a" rx="2" ry="2"/>
<text x="657.8" y="3278.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$$anon$10.apply (63 samples, 0.64%)</title><rect x="654.8" y="3251.0" width="7.6" height="15" fill="#4fe34f" rx="2" ry="2"/>
<text x="657.8" y="3262.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$Apply.validateKeyReferenced (58 samples, 0.59%)</title><rect x="654.8" y="3235.0" width="7.0" height="15" fill="#3acf3a" rx="2" ry="2"/>
<text x="657.8" y="3246.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/AList$$anon$5.transform (32 samples, 0.33%)</title><rect x="655.8" y="3219.0" width="3.8" height="15" fill="#51e551" rx="2" ry="2"/>
<text x="658.8" y="3230.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/AList$$anon$12.transform (11 samples, 0.11%)</title><rect x="656.1" y="3203.0" width="1.4" height="15" fill="#68f968" rx="2" ry="2"/>
<text x="659.1" y="3214.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/AList$$anon$12.transform (11 samples, 0.11%)</title><rect x="656.1" y="3187.0" width="1.4" height="15" fill="#4cdf4c" rx="2" ry="2"/>
<text x="659.1" y="3198.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$$anon$10.apply (11 samples, 0.11%)</title><rect x="656.1" y="3171.0" width="1.4" height="15" fill="#3fd43f" rx="2" ry="2"/>
<text x="659.1" y="3182.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$$anon$10.apply (11 samples, 0.11%)</title><rect x="656.1" y="3155.0" width="1.4" height="15" fill="#4ee14e" rx="2" ry="2"/>
<text x="659.1" y="3166.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/AList$$anon$7.transform (9 samples, 0.09%)</title><rect x="658.4" y="3203.0" width="1.1" height="15" fill="#40d540" rx="2" ry="2"/>
<text x="661.4" y="3214.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/AList$$anon$7.transform (9 samples, 0.09%)</title><rect x="658.4" y="3187.0" width="1.1" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="661.4" y="3198.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$$anon$10.apply (9 samples, 0.09%)</title><rect x="658.4" y="3171.0" width="1.1" height="15" fill="#3fd43f" rx="2" ry="2"/>
<text x="661.4" y="3182.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$$anon$10.apply (9 samples, 0.09%)</title><rect x="658.4" y="3155.0" width="1.1" height="15" fill="#43d743" rx="2" ry="2"/>
<text x="661.4" y="3166.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/AList$$anon$6.transform (13 samples, 0.13%)</title><rect x="659.6" y="3219.0" width="1.6" height="15" fill="#59eb59" rx="2" ry="2"/>
<text x="662.6" y="3230.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/AList$$anon$6.transform (13 samples, 0.13%)</title><rect x="659.6" y="3203.0" width="1.6" height="15" fill="#3ed33e" rx="2" ry="2"/>
<text x="662.6" y="3214.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$$anon$10.apply (13 samples, 0.13%)</title><rect x="659.6" y="3187.0" width="1.6" height="15" fill="#3fd43f" rx="2" ry="2"/>
<text x="662.6" y="3198.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$$anon$10.apply (13 samples, 0.13%)</title><rect x="659.6" y="3171.0" width="1.6" height="15" fill="#45d945" rx="2" ry="2"/>
<text x="662.6" y="3182.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$Apply.validateKeyReferenced (10 samples, 0.10%)</title><rect x="659.6" y="3155.0" width="1.2" height="15" fill="#37cd37" rx="2" ry="2"/>
<text x="662.6" y="3166.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/AList$$anon$5.transform (60 samples, 0.61%)</title><rect x="662.4" y="3283.0" width="7.2" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="665.4" y="3294.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/AList$$anon$6.transform (28 samples, 0.28%)</title><rect x="664.0" y="3267.0" width="3.3" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="667.0" y="3278.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/AList$$anon$6.transform (28 samples, 0.28%)</title><rect x="664.0" y="3251.0" width="3.3" height="15" fill="#66f866" rx="2" ry="2"/>
<text x="667.0" y="3262.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$$anon$10.apply (28 samples, 0.28%)</title><rect x="664.0" y="3235.0" width="3.3" height="15" fill="#65f765" rx="2" ry="2"/>
<text x="667.0" y="3246.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$$anon$10.apply (28 samples, 0.28%)</title><rect x="664.0" y="3219.0" width="3.3" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="667.0" y="3230.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$Apply.validateKeyReferenced (18 samples, 0.18%)</title><rect x="664.0" y="3203.0" width="2.1" height="15" fill="#5bee5b" rx="2" ry="2"/>
<text x="667.0" y="3214.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/AList$$anon$4.transform (16 samples, 0.16%)</title><rect x="664.0" y="3187.0" width="1.9" height="15" fill="#4fe34f" rx="2" ry="2"/>
<text x="667.0" y="3198.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$$anon$10.apply (16 samples, 0.16%)</title><rect x="664.0" y="3171.0" width="1.9" height="15" fill="#41d641" rx="2" ry="2"/>
<text x="667.0" y="3182.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$$anon$10.apply (16 samples, 0.16%)</title><rect x="664.0" y="3155.0" width="1.9" height="15" fill="#51e451" rx="2" ry="2"/>
<text x="667.0" y="3166.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$Apply.validateKeyReferenced (16 samples, 0.16%)</title><rect x="664.0" y="3139.0" width="1.9" height="15" fill="#6afc6a" rx="2" ry="2"/>
<text x="667.0" y="3150.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/AList$$anon$5.transform (14 samples, 0.14%)</title><rect x="664.0" y="3123.0" width="1.6" height="15" fill="#38cd38" rx="2" ry="2"/>
<text x="667.0" y="3134.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/AList$$anon$9.transform (14 samples, 0.14%)</title><rect x="664.0" y="3107.0" width="1.6" height="15" fill="#42d742" rx="2" ry="2"/>
<text x="667.0" y="3118.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/AList$$anon$9.transform (14 samples, 0.14%)</title><rect x="664.0" y="3091.0" width="1.6" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="667.0" y="3102.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$$anon$10.apply (14 samples, 0.14%)</title><rect x="664.0" y="3075.0" width="1.6" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="667.0" y="3086.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$$anon$10.apply (14 samples, 0.14%)</title><rect x="664.0" y="3059.0" width="1.6" height="15" fill="#38ce38" rx="2" ry="2"/>
<text x="667.0" y="3070.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$Apply.validateKeyReferenced (14 samples, 0.14%)</title><rect x="664.0" y="3043.0" width="1.6" height="15" fill="#68f968" rx="2" ry="2"/>
<text x="667.0" y="3054.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$GetValue.validateKeyReferenced (10 samples, 0.10%)</title><rect x="666.1" y="3203.0" width="1.2" height="15" fill="#65f665" rx="2" ry="2"/>
<text x="669.1" y="3214.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$Keyed.validateKeyReferenced$ (10 samples, 0.10%)</title><rect x="666.1" y="3187.0" width="1.2" height="15" fill="#56e956" rx="2" ry="2"/>
<text x="669.1" y="3198.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$Keyed.validateKeyReferenced (10 samples, 0.10%)</title><rect x="666.1" y="3171.0" width="1.2" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="669.1" y="3182.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$$anon$5.apply (9 samples, 0.09%)</title><rect x="666.2" y="3155.0" width="1.1" height="15" fill="#63f563" rx="2" ry="2"/>
<text x="669.2" y="3166.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/AList$$anon$8.transform (16 samples, 0.16%)</title><rect x="667.4" y="3267.0" width="2.0" height="15" fill="#3fd43f" rx="2" ry="2"/>
<text x="670.4" y="3278.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/AList$$anon$8.transform (16 samples, 0.16%)</title><rect x="667.4" y="3251.0" width="2.0" height="15" fill="#33c933" rx="2" ry="2"/>
<text x="670.4" y="3262.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$$anon$10.apply (16 samples, 0.16%)</title><rect x="667.4" y="3235.0" width="2.0" height="15" fill="#65f665" rx="2" ry="2"/>
<text x="670.4" y="3246.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$$anon$10.apply (16 samples, 0.16%)</title><rect x="667.4" y="3219.0" width="2.0" height="15" fill="#67f867" rx="2" ry="2"/>
<text x="670.4" y="3230.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$Apply.validateKeyReferenced (11 samples, 0.11%)</title><rect x="667.4" y="3203.0" width="1.4" height="15" fill="#58eb58" rx="2" ry="2"/>
<text x="670.4" y="3214.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Def$.grouped (26 samples, 0.26%)</title><rect x="672.0" y="3843.0" width="3.1" height="15" fill="#58eb58" rx="2" ry="2"/>
<text x="675.0" y="3854.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init.grouped$ (26 samples, 0.26%)</title><rect x="672.0" y="3827.0" width="3.1" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="675.0" y="3838.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init.grouped (26 samples, 0.26%)</title><rect x="672.0" y="3811.0" width="3.1" height="15" fill="#65f765" rx="2" ry="2"/>
<text x="675.0" y="3822.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractTraversable.$div$colon (26 samples, 0.26%)</title><rect x="672.0" y="3795.0" width="3.1" height="15" fill="#40d440" rx="2" ry="2"/>
<text x="675.0" y="3806.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.$div$colon$ (26 samples, 0.26%)</title><rect x="672.0" y="3779.0" width="3.1" height="15" fill="#37cd37" rx="2" ry="2"/>
<text x="675.0" y="3790.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.$div$colon (26 samples, 0.26%)</title><rect x="672.0" y="3763.0" width="3.1" height="15" fill="#40d540" rx="2" ry="2"/>
<text x="675.0" y="3774.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/List.foldLeft (26 samples, 0.26%)</title><rect x="672.0" y="3747.0" width="3.1" height="15" fill="#65f765" rx="2" ry="2"/>
<text x="675.0" y="3758.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/LinearSeqOptimized.foldLeft$ (26 samples, 0.26%)</title><rect x="672.0" y="3731.0" width="3.1" height="15" fill="#4ce04c" rx="2" ry="2"/>
<text x="675.0" y="3742.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/LinearSeqOptimized.foldLeft (26 samples, 0.26%)</title><rect x="672.0" y="3715.0" width="3.1" height="15" fill="#51e451" rx="2" ry="2"/>
<text x="675.0" y="3726.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$$Lambda$1561/94500728.apply (24 samples, 0.24%)</title><rect x="672.1" y="3699.0" width="2.9" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="675.1" y="3710.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init.$anonfun$grouped$1 (24 samples, 0.24%)</title><rect x="672.1" y="3683.0" width="2.9" height="15" fill="#4fe24f" rx="2" ry="2"/>
<text x="675.1" y="3694.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Def$.add (24 samples, 0.24%)</title><rect x="672.1" y="3667.0" width="2.9" height="15" fill="#5ff15f" rx="2" ry="2"/>
<text x="675.1" y="3678.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init.add$ (24 samples, 0.24%)</title><rect x="672.1" y="3651.0" width="2.9" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="675.1" y="3662.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init.add (24 samples, 0.24%)</title><rect x="672.1" y="3635.0" width="2.9" height="15" fill="#41d641" rx="2" ry="2"/>
<text x="675.1" y="3646.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/IMap$IMap0.mapValue (24 samples, 0.24%)</title><rect x="672.1" y="3619.0" width="2.9" height="15" fill="#3bd13b" rx="2" ry="2"/>
<text x="675.1" y="3630.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/IMap$IMap0.mapValue (24 samples, 0.24%)</title><rect x="672.1" y="3603.0" width="2.9" height="15" fill="#66f766" rx="2" ry="2"/>
<text x="675.1" y="3614.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$$Lambda$1562/80504258.apply (17 samples, 0.17%)</title><rect x="673.0" y="3587.0" width="2.0" height="15" fill="#53e653" rx="2" ry="2"/>
<text x="676.0" y="3598.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init.$anonfun$add$1 (17 samples, 0.17%)</title><rect x="673.0" y="3571.0" width="2.0" height="15" fill="#63f563" rx="2" ry="2"/>
<text x="676.0" y="3582.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Def$.append (17 samples, 0.17%)</title><rect x="673.0" y="3555.0" width="2.0" height="15" fill="#6cfd6c" rx="2" ry="2"/>
<text x="676.0" y="3566.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init.append$ (17 samples, 0.17%)</title><rect x="673.0" y="3539.0" width="2.0" height="15" fill="#50e350" rx="2" ry="2"/>
<text x="676.0" y="3550.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init.append (17 samples, 0.17%)</title><rect x="673.0" y="3523.0" width="2.0" height="15" fill="#5bed5b" rx="2" ry="2"/>
<text x="676.0" y="3534.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$Setting.definitive (17 samples, 0.17%)</title><rect x="673.0" y="3507.0" width="2.0" height="15" fill="#57ea57" rx="2" ry="2"/>
<text x="676.0" y="3518.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$Apply.dependencies (16 samples, 0.16%)</title><rect x="673.0" y="3491.0" width="1.9" height="15" fill="#5bed5b" rx="2" ry="2"/>
<text x="676.0" y="3502.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init.sbt$internal$util$Init$$deps (15 samples, 0.15%)</title><rect x="673.1" y="3475.0" width="1.8" height="15" fill="#33c933" rx="2" ry="2"/>
<text x="676.1" y="3486.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/List.flatMap (15 samples, 0.15%)</title><rect x="673.1" y="3459.0" width="1.8" height="15" fill="#42d642" rx="2" ry="2"/>
<text x="676.1" y="3470.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.flatMap$ (15 samples, 0.15%)</title><rect x="673.1" y="3443.0" width="1.8" height="15" fill="#3cd13c" rx="2" ry="2"/>
<text x="676.1" y="3454.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.flatMap (15 samples, 0.15%)</title><rect x="673.1" y="3427.0" width="1.8" height="15" fill="#4bdf4b" rx="2" ry="2"/>
<text x="676.1" y="3438.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/List.foreach (14 samples, 0.14%)</title><rect x="673.2" y="3411.0" width="1.7" height="15" fill="#6dfe6d" rx="2" ry="2"/>
<text x="676.2" y="3422.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike$$Lambda$541/18601987.apply (14 samples, 0.14%)</title><rect x="673.2" y="3395.0" width="1.7" height="15" fill="#40d440" rx="2" ry="2"/>
<text x="676.2" y="3406.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.$anonfun$flatMap$1 (14 samples, 0.14%)</title><rect x="673.2" y="3379.0" width="1.7" height="15" fill="#3acf3a" rx="2" ry="2"/>
<text x="676.2" y="3390.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$$Lambda$1153/2038484780.apply (13 samples, 0.13%)</title><rect x="673.2" y="3363.0" width="1.6" height="15" fill="#4bdf4b" rx="2" ry="2"/>
<text x="676.2" y="3374.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init.$anonfun$deps$1 (13 samples, 0.13%)</title><rect x="673.2" y="3347.0" width="1.6" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="676.2" y="3358.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$Apply.dependencies (13 samples, 0.13%)</title><rect x="673.2" y="3331.0" width="1.6" height="15" fill="#38cd38" rx="2" ry="2"/>
<text x="676.2" y="3342.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init.sbt$internal$util$Init$$deps (12 samples, 0.12%)</title><rect x="673.3" y="3315.0" width="1.5" height="15" fill="#46da46" rx="2" ry="2"/>
<text x="676.3" y="3326.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/List.flatMap (12 samples, 0.12%)</title><rect x="673.3" y="3299.0" width="1.5" height="15" fill="#4bdf4b" rx="2" ry="2"/>
<text x="676.3" y="3310.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.flatMap$ (12 samples, 0.12%)</title><rect x="673.3" y="3283.0" width="1.5" height="15" fill="#5aed5a" rx="2" ry="2"/>
<text x="676.3" y="3294.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.flatMap (12 samples, 0.12%)</title><rect x="673.3" y="3267.0" width="1.5" height="15" fill="#4de14d" rx="2" ry="2"/>
<text x="676.3" y="3278.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/List.foreach (10 samples, 0.10%)</title><rect x="673.6" y="3251.0" width="1.2" height="15" fill="#44d944" rx="2" ry="2"/>
<text x="676.6" y="3262.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike$$Lambda$541/18601987.apply (10 samples, 0.10%)</title><rect x="673.6" y="3235.0" width="1.2" height="15" fill="#57ea57" rx="2" ry="2"/>
<text x="676.6" y="3246.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.$anonfun$flatMap$1 (10 samples, 0.10%)</title><rect x="673.6" y="3219.0" width="1.2" height="15" fill="#49dd49" rx="2" ry="2"/>
<text x="676.6" y="3230.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init.deriveAndLocal (118 samples, 1.20%)</title><rect x="675.6" y="3843.0" width="14.2" height="15" fill="#5ff15f" rx="2" ry="2"/>
<text x="678.6" y="3854.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Def$.addLocal (52 samples, 0.53%)</title><rect x="675.6" y="3827.0" width="6.2" height="15" fill="#4ee24e" rx="2" ry="2"/>
<text x="678.6" y="3838.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init.addLocal$ (52 samples, 0.53%)</title><rect x="675.6" y="3811.0" width="6.2" height="15" fill="#4bdf4b" rx="2" ry="2"/>
<text x="678.6" y="3822.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init.addLocal (52 samples, 0.53%)</title><rect x="675.6" y="3795.0" width="6.2" height="15" fill="#58eb58" rx="2" ry="2"/>
<text x="678.6" y="3806.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/List.flatMap (50 samples, 0.51%)</title><rect x="675.8" y="3779.0" width="6.0" height="15" fill="#53e753" rx="2" ry="2"/>
<text x="678.8" y="3790.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.flatMap$ (50 samples, 0.51%)</title><rect x="675.8" y="3763.0" width="6.0" height="15" fill="#36cb36" rx="2" ry="2"/>
<text x="678.8" y="3774.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.flatMap (50 samples, 0.51%)</title><rect x="675.8" y="3747.0" width="6.0" height="15" fill="#4bdf4b" rx="2" ry="2"/>
<text x="678.8" y="3758.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/List.foreach (50 samples, 0.51%)</title><rect x="675.8" y="3731.0" width="6.0" height="15" fill="#4de14d" rx="2" ry="2"/>
<text x="678.8" y="3742.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike$$Lambda$541/18601987.apply (50 samples, 0.51%)</title><rect x="675.8" y="3715.0" width="6.0" height="15" fill="#56e956" rx="2" ry="2"/>
<text x="678.8" y="3726.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.$anonfun$flatMap$1 (50 samples, 0.51%)</title><rect x="675.8" y="3699.0" width="6.0" height="15" fill="#56e956" rx="2" ry="2"/>
<text x="678.8" y="3710.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$$Lambda$1531/1320122626.apply (48 samples, 0.49%)</title><rect x="675.8" y="3683.0" width="5.8" height="15" fill="#4ee24e" rx="2" ry="2"/>
<text x="678.8" y="3694.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init.$anonfun$addLocal$1 (48 samples, 0.49%)</title><rect x="675.8" y="3667.0" width="5.8" height="15" fill="#6cfd6c" rx="2" ry="2"/>
<text x="678.8" y="3678.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$Setting.dependencies (39 samples, 0.40%)</title><rect x="675.8" y="3651.0" width="4.7" height="15" fill="#3fd43f" rx="2" ry="2"/>
<text x="678.8" y="3662.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$Apply.dependencies (29 samples, 0.30%)</title><rect x="675.8" y="3635.0" width="3.5" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="678.8" y="3646.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init.sbt$internal$util$Init$$deps (26 samples, 0.26%)</title><rect x="676.2" y="3619.0" width="3.1" height="15" fill="#50e450" rx="2" ry="2"/>
<text x="679.2" y="3630.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/List.flatMap (26 samples, 0.26%)</title><rect x="676.2" y="3603.0" width="3.1" height="15" fill="#4bdf4b" rx="2" ry="2"/>
<text x="679.2" y="3614.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.flatMap$ (26 samples, 0.26%)</title><rect x="676.2" y="3587.0" width="3.1" height="15" fill="#6cfd6c" rx="2" ry="2"/>
<text x="679.2" y="3598.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.flatMap (26 samples, 0.26%)</title><rect x="676.2" y="3571.0" width="3.1" height="15" fill="#6dfe6d" rx="2" ry="2"/>
<text x="679.2" y="3582.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/List.foreach (26 samples, 0.26%)</title><rect x="676.2" y="3555.0" width="3.1" height="15" fill="#4bdf4b" rx="2" ry="2"/>
<text x="679.2" y="3566.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike$$Lambda$541/18601987.apply (26 samples, 0.26%)</title><rect x="676.2" y="3539.0" width="3.1" height="15" fill="#63f463" rx="2" ry="2"/>
<text x="679.2" y="3550.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.$anonfun$flatMap$1 (26 samples, 0.26%)</title><rect x="676.2" y="3523.0" width="3.1" height="15" fill="#5aec5a" rx="2" ry="2"/>
<text x="679.2" y="3534.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$$Lambda$1153/2038484780.apply (21 samples, 0.21%)</title><rect x="676.3" y="3507.0" width="2.5" height="15" fill="#52e552" rx="2" ry="2"/>
<text x="679.3" y="3518.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init.$anonfun$deps$1 (21 samples, 0.21%)</title><rect x="676.3" y="3491.0" width="2.5" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="679.3" y="3502.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$Apply.dependencies (18 samples, 0.18%)</title><rect x="676.3" y="3475.0" width="2.2" height="15" fill="#44d844" rx="2" ry="2"/>
<text x="679.3" y="3486.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init.sbt$internal$util$Init$$deps (16 samples, 0.16%)</title><rect x="676.6" y="3459.0" width="1.9" height="15" fill="#60f360" rx="2" ry="2"/>
<text x="679.6" y="3470.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/List.flatMap (16 samples, 0.16%)</title><rect x="676.6" y="3443.0" width="1.9" height="15" fill="#6afb6a" rx="2" ry="2"/>
<text x="679.6" y="3454.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.flatMap$ (16 samples, 0.16%)</title><rect x="676.6" y="3427.0" width="1.9" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="679.6" y="3438.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.flatMap (16 samples, 0.16%)</title><rect x="676.6" y="3411.0" width="1.9" height="15" fill="#33c933" rx="2" ry="2"/>
<text x="679.6" y="3422.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/List.foreach (14 samples, 0.14%)</title><rect x="676.8" y="3395.0" width="1.7" height="15" fill="#3ad03a" rx="2" ry="2"/>
<text x="679.8" y="3406.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike$$Lambda$541/18601987.apply (14 samples, 0.14%)</title><rect x="676.8" y="3379.0" width="1.7" height="15" fill="#44d844" rx="2" ry="2"/>
<text x="679.8" y="3390.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.$anonfun$flatMap$1 (14 samples, 0.14%)</title><rect x="676.8" y="3363.0" width="1.7" height="15" fill="#5df05d" rx="2" ry="2"/>
<text x="679.8" y="3374.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$$Lambda$1153/2038484780.apply (11 samples, 0.11%)</title><rect x="676.8" y="3347.0" width="1.3" height="15" fill="#45da45" rx="2" ry="2"/>
<text x="679.8" y="3358.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init.$anonfun$deps$1 (10 samples, 0.10%)</title><rect x="676.9" y="3331.0" width="1.2" height="15" fill="#4fe24f" rx="2" ry="2"/>
<text x="679.9" y="3342.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$Apply.dependencies (9 samples, 0.09%)</title><rect x="676.9" y="3315.0" width="1.1" height="15" fill="#6dfe6d" rx="2" ry="2"/>
<text x="679.9" y="3326.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init.sbt$internal$util$Init$$remove (10 samples, 0.10%)</title><rect x="679.3" y="3635.0" width="1.2" height="15" fill="#5ff25f" rx="2" ry="2"/>
<text x="682.3" y="3646.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractTraversable.filterNot (10 samples, 0.10%)</title><rect x="679.3" y="3619.0" width="1.2" height="15" fill="#4ce04c" rx="2" ry="2"/>
<text x="682.3" y="3630.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.filterNot$ (10 samples, 0.10%)</title><rect x="679.3" y="3603.0" width="1.2" height="15" fill="#33c933" rx="2" ry="2"/>
<text x="682.3" y="3614.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.filterNot (10 samples, 0.10%)</title><rect x="679.3" y="3587.0" width="1.2" height="15" fill="#59ec59" rx="2" ry="2"/>
<text x="682.3" y="3598.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractTraversable.filterImpl (10 samples, 0.10%)</title><rect x="679.3" y="3571.0" width="1.2" height="15" fill="#59ec59" rx="2" ry="2"/>
<text x="682.3" y="3582.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.filterImpl$ (10 samples, 0.10%)</title><rect x="679.3" y="3555.0" width="1.2" height="15" fill="#3cd13c" rx="2" ry="2"/>
<text x="682.3" y="3566.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.filterImpl (10 samples, 0.10%)</title><rect x="679.3" y="3539.0" width="1.2" height="15" fill="#38ce38" rx="2" ry="2"/>
<text x="682.3" y="3550.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/List.flatMap (9 samples, 0.09%)</title><rect x="680.5" y="3651.0" width="1.1" height="15" fill="#40d540" rx="2" ry="2"/>
<text x="683.5" y="3662.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.flatMap$ (9 samples, 0.09%)</title><rect x="680.5" y="3635.0" width="1.1" height="15" fill="#60f260" rx="2" ry="2"/>
<text x="683.5" y="3646.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.flatMap (9 samples, 0.09%)</title><rect x="680.5" y="3619.0" width="1.1" height="15" fill="#51e551" rx="2" ry="2"/>
<text x="683.5" y="3630.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init.process$1 (52 samples, 0.53%)</title><rect x="682.7" y="3827.0" width="6.2" height="15" fill="#4ce04c" rx="2" ry="2"/>
<text x="685.7" y="3838.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$$Lambda$1542/381768094.apply (47 samples, 0.48%)</title><rect x="682.7" y="3811.0" width="5.6" height="15" fill="#51e551" rx="2" ry="2"/>
<text x="685.7" y="3822.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init.$anonfun$deriveAndLocal$11 (47 samples, 0.48%)</title><rect x="682.7" y="3795.0" width="5.6" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="685.7" y="3806.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/List.flatMap (40 samples, 0.41%)</title><rect x="683.5" y="3779.0" width="4.8" height="15" fill="#59eb59" rx="2" ry="2"/>
<text x="686.5" y="3790.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$$Lambda$1543/704832331.apply (39 samples, 0.40%)</title><rect x="683.5" y="3763.0" width="4.7" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="686.5" y="3774.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init.$anonfun$deriveAndLocal$13 (39 samples, 0.40%)</title><rect x="683.5" y="3747.0" width="4.7" height="15" fill="#3acf3a" rx="2" ry="2"/>
<text x="686.5" y="3758.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init.localAndDerived$1 (39 samples, 0.40%)</title><rect x="683.5" y="3731.0" width="4.7" height="15" fill="#64f564" rx="2" ry="2"/>
<text x="686.5" y="3742.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/Option.collect (39 samples, 0.40%)</title><rect x="683.5" y="3715.0" width="4.7" height="15" fill="#68fa68" rx="2" ry="2"/>
<text x="686.5" y="3726.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/PartialFunction$Lifted.apply (38 samples, 0.39%)</title><rect x="683.5" y="3699.0" width="4.6" height="15" fill="#56e956" rx="2" ry="2"/>
<text x="686.5" y="3710.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/PartialFunction$Lifted.apply (38 samples, 0.39%)</title><rect x="683.5" y="3683.0" width="4.6" height="15" fill="#5cee5c" rx="2" ry="2"/>
<text x="686.5" y="3694.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$$anonfun$localAndDerived$1$1.applyOrElse (38 samples, 0.39%)</title><rect x="683.5" y="3667.0" width="4.6" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="686.5" y="3678.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init.sbt$internal$util$Init$$allDepsDefined$1 (35 samples, 0.36%)</title><rect x="683.9" y="3651.0" width="4.2" height="15" fill="#35cb35" rx="2" ry="2"/>
<text x="686.9" y="3662.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/List.forall (35 samples, 0.36%)</title><rect x="683.9" y="3635.0" width="4.2" height="15" fill="#4fe24f" rx="2" ry="2"/>
<text x="686.9" y="3646.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/LinearSeqOptimized.forall$ (35 samples, 0.36%)</title><rect x="683.9" y="3619.0" width="4.2" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="686.9" y="3630.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/LinearSeqOptimized.forall (35 samples, 0.36%)</title><rect x="683.9" y="3603.0" width="4.2" height="15" fill="#5cee5c" rx="2" ry="2"/>
<text x="686.9" y="3614.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$$Lambda$1546/536994956.apply (35 samples, 0.36%)</title><rect x="683.9" y="3587.0" width="4.2" height="15" fill="#64f664" rx="2" ry="2"/>
<text x="686.9" y="3598.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init.$anonfun$deriveAndLocal$10$adapted (35 samples, 0.36%)</title><rect x="683.9" y="3571.0" width="4.2" height="15" fill="#4ade4a" rx="2" ry="2"/>
<text x="686.9" y="3582.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init.$anonfun$deriveAndLocal$10 (35 samples, 0.36%)</title><rect x="683.9" y="3555.0" width="4.2" height="15" fill="#41d541" rx="2" ry="2"/>
<text x="686.9" y="3566.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init.isDefined$1 (35 samples, 0.36%)</title><rect x="683.9" y="3539.0" width="4.2" height="15" fill="#68f968" rx="2" ry="2"/>
<text x="686.9" y="3550.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Scope$$$Lambda$1525/1111100957.apply (34 samples, 0.35%)</title><rect x="683.9" y="3523.0" width="4.1" height="15" fill="#40d440" rx="2" ry="2"/>
<text x="686.9" y="3534.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Scope$.$anonfun$delegates$1 (34 samples, 0.35%)</title><rect x="683.9" y="3507.0" width="4.1" height="15" fill="#3cd13c" rx="2" ry="2"/>
<text x="686.9" y="3518.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Scope$.indexedDelegates (34 samples, 0.35%)</title><rect x="683.9" y="3491.0" width="4.1" height="15" fill="#5ff25f" rx="2" ry="2"/>
<text x="686.9" y="3502.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/List.flatMap (29 samples, 0.30%)</title><rect x="684.5" y="3475.0" width="3.5" height="15" fill="#69fa69" rx="2" ry="2"/>
<text x="687.5" y="3486.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.flatMap$ (29 samples, 0.30%)</title><rect x="684.5" y="3459.0" width="3.5" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="687.5" y="3470.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.flatMap (29 samples, 0.30%)</title><rect x="684.5" y="3443.0" width="3.5" height="15" fill="#53e653" rx="2" ry="2"/>
<text x="687.5" y="3454.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/List.foreach (29 samples, 0.30%)</title><rect x="684.5" y="3427.0" width="3.5" height="15" fill="#52e652" rx="2" ry="2"/>
<text x="687.5" y="3438.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike$$Lambda$541/18601987.apply (29 samples, 0.30%)</title><rect x="684.5" y="3411.0" width="3.5" height="15" fill="#4fe24f" rx="2" ry="2"/>
<text x="687.5" y="3422.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.$anonfun$flatMap$1 (29 samples, 0.30%)</title><rect x="684.5" y="3395.0" width="3.5" height="15" fill="#34ca34" rx="2" ry="2"/>
<text x="687.5" y="3406.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Scope$$$Lambda$1552/475526834.apply (28 samples, 0.28%)</title><rect x="684.5" y="3379.0" width="3.4" height="15" fill="#51e551" rx="2" ry="2"/>
<text x="687.5" y="3390.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Scope$.$anonfun$indexedDelegates$5 (28 samples, 0.28%)</title><rect x="684.5" y="3363.0" width="3.4" height="15" fill="#60f360" rx="2" ry="2"/>
<text x="687.5" y="3374.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Scope$.nonProjectScopes$1 (28 samples, 0.28%)</title><rect x="684.5" y="3347.0" width="3.4" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="687.5" y="3358.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/List.flatMap (16 samples, 0.16%)</title><rect x="685.9" y="3331.0" width="2.0" height="15" fill="#68fa68" rx="2" ry="2"/>
<text x="688.9" y="3342.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.flatMap$ (16 samples, 0.16%)</title><rect x="685.9" y="3315.0" width="2.0" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="688.9" y="3326.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.flatMap (16 samples, 0.16%)</title><rect x="685.9" y="3299.0" width="2.0" height="15" fill="#34ca34" rx="2" ry="2"/>
<text x="688.9" y="3310.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/List.foreach (15 samples, 0.15%)</title><rect x="686.1" y="3283.0" width="1.8" height="15" fill="#5def5d" rx="2" ry="2"/>
<text x="689.1" y="3294.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike$$Lambda$541/18601987.apply (15 samples, 0.15%)</title><rect x="686.1" y="3267.0" width="1.8" height="15" fill="#50e450" rx="2" ry="2"/>
<text x="689.1" y="3278.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.$anonfun$flatMap$1 (15 samples, 0.15%)</title><rect x="686.1" y="3251.0" width="1.8" height="15" fill="#4ade4a" rx="2" ry="2"/>
<text x="689.1" y="3262.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Scope$$$Lambda$1556/913796146.apply (15 samples, 0.15%)</title><rect x="686.1" y="3235.0" width="1.8" height="15" fill="#35cb35" rx="2" ry="2"/>
<text x="689.1" y="3246.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Scope$.$anonfun$indexedDelegates$2 (15 samples, 0.15%)</title><rect x="686.1" y="3219.0" width="1.8" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="689.1" y="3230.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/List.flatMap (15 samples, 0.15%)</title><rect x="686.1" y="3203.0" width="1.8" height="15" fill="#36cb36" rx="2" ry="2"/>
<text x="689.1" y="3214.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.flatMap$ (15 samples, 0.15%)</title><rect x="686.1" y="3187.0" width="1.8" height="15" fill="#35cb35" rx="2" ry="2"/>
<text x="689.1" y="3198.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.flatMap (15 samples, 0.15%)</title><rect x="686.1" y="3171.0" width="1.8" height="15" fill="#38ce38" rx="2" ry="2"/>
<text x="689.1" y="3182.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/List.foreach (14 samples, 0.14%)</title><rect x="686.2" y="3155.0" width="1.7" height="15" fill="#6cfd6c" rx="2" ry="2"/>
<text x="689.2" y="3166.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike$$Lambda$541/18601987.apply (14 samples, 0.14%)</title><rect x="686.2" y="3139.0" width="1.7" height="15" fill="#49dd49" rx="2" ry="2"/>
<text x="689.2" y="3150.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.$anonfun$flatMap$1 (14 samples, 0.14%)</title><rect x="686.2" y="3123.0" width="1.7" height="15" fill="#40d540" rx="2" ry="2"/>
<text x="689.2" y="3134.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Scope$$$Lambda$1557/2006112337.apply (12 samples, 0.12%)</title><rect x="686.2" y="3107.0" width="1.4" height="15" fill="#33c933" rx="2" ry="2"/>
<text x="689.2" y="3118.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Scope$.$anonfun$indexedDelegates$3 (11 samples, 0.11%)</title><rect x="686.3" y="3091.0" width="1.3" height="15" fill="#47db47" rx="2" ry="2"/>
<text x="689.3" y="3102.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/List.map (10 samples, 0.10%)</title><rect x="686.4" y="3075.0" width="1.2" height="15" fill="#4bdf4b" rx="2" ry="2"/>
<text x="689.4" y="3086.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.map$ (10 samples, 0.10%)</title><rect x="686.4" y="3059.0" width="1.2" height="15" fill="#63f563" rx="2" ry="2"/>
<text x="689.4" y="3070.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.map (10 samples, 0.10%)</title><rect x="686.4" y="3043.0" width="1.2" height="15" fill="#6afb6a" rx="2" ry="2"/>
<text x="689.4" y="3054.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Def$.sort (14 samples, 0.14%)</title><rect x="689.8" y="3891.0" width="1.7" height="15" fill="#44d944" rx="2" ry="2"/>
<text x="692.8" y="3902.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init.sort$ (14 samples, 0.14%)</title><rect x="689.8" y="3875.0" width="1.7" height="15" fill="#52e552" rx="2" ry="2"/>
<text x="692.8" y="3886.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init.sort (14 samples, 0.14%)</title><rect x="689.8" y="3859.0" width="1.7" height="15" fill="#46da46" rx="2" ry="2"/>
<text x="692.8" y="3870.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Dag$.topologicalSort (14 samples, 0.14%)</title><rect x="689.8" y="3843.0" width="1.7" height="15" fill="#67f967" rx="2" ry="2"/>
<text x="692.8" y="3854.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Dag$.visitAll$1 (14 samples, 0.14%)</title><rect x="689.8" y="3827.0" width="1.7" height="15" fill="#58eb58" rx="2" ry="2"/>
<text x="692.8" y="3838.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/MapLike$DefaultValuesIterable.foreach (14 samples, 0.14%)</title><rect x="689.8" y="3811.0" width="1.7" height="15" fill="#51e551" rx="2" ry="2"/>
<text x="692.8" y="3822.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractIterator.foreach (14 samples, 0.14%)</title><rect x="689.8" y="3795.0" width="1.7" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="692.8" y="3806.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/Iterator.foreach$ (14 samples, 0.14%)</title><rect x="689.8" y="3779.0" width="1.7" height="15" fill="#3fd43f" rx="2" ry="2"/>
<text x="692.8" y="3790.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/Iterator.foreach (14 samples, 0.14%)</title><rect x="689.8" y="3763.0" width="1.7" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="692.8" y="3774.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Dag$$$Lambda$918/1245434971.apply (13 samples, 0.13%)</title><rect x="689.8" y="3747.0" width="1.5" height="15" fill="#68fa68" rx="2" ry="2"/>
<text x="692.8" y="3758.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Dag$.$anonfun$topologicalSort$2$adapted (13 samples, 0.13%)</title><rect x="689.8" y="3731.0" width="1.5" height="15" fill="#34ca34" rx="2" ry="2"/>
<text x="692.8" y="3742.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Dag$.$anonfun$topologicalSort$2 (13 samples, 0.13%)</title><rect x="689.8" y="3715.0" width="1.5" height="15" fill="#3fd43f" rx="2" ry="2"/>
<text x="692.8" y="3726.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Dag$.visit$1 (13 samples, 0.13%)</title><rect x="689.8" y="3699.0" width="1.5" height="15" fill="#56e956" rx="2" ry="2"/>
<text x="692.8" y="3710.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Dag$.visitAll$1 (10 samples, 0.10%)</title><rect x="689.8" y="3683.0" width="1.2" height="15" fill="#3fd43f" rx="2" ry="2"/>
<text x="692.8" y="3694.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init.applyInits (57 samples, 0.58%)</title><rect x="691.5" y="3891.0" width="6.8" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="694.5" y="3902.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings.run (54 samples, 0.55%)</title><rect x="691.5" y="3875.0" width="6.4" height="15" fill="#3cd23c" rx="2" ry="2"/>
<text x="694.5" y="3886.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings.roots (37 samples, 0.38%)</title><rect x="692.1" y="3859.0" width="4.4" height="15" fill="#4bde4b" rx="2" ry="2"/>
<text x="695.1" y="3870.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings.roots$lzycompute (37 samples, 0.38%)</title><rect x="692.1" y="3843.0" width="4.4" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="695.1" y="3854.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/List.flatMap (37 samples, 0.38%)</title><rect x="692.1" y="3827.0" width="4.4" height="15" fill="#57ea57" rx="2" ry="2"/>
<text x="695.1" y="3838.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.flatMap$ (37 samples, 0.38%)</title><rect x="692.1" y="3811.0" width="4.4" height="15" fill="#60f260" rx="2" ry="2"/>
<text x="695.1" y="3822.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.flatMap (37 samples, 0.38%)</title><rect x="692.1" y="3795.0" width="4.4" height="15" fill="#5bee5b" rx="2" ry="2"/>
<text x="695.1" y="3806.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/List.foreach (37 samples, 0.38%)</title><rect x="692.1" y="3779.0" width="4.4" height="15" fill="#34ca34" rx="2" ry="2"/>
<text x="695.1" y="3790.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike$$Lambda$541/18601987.apply (37 samples, 0.38%)</title><rect x="692.1" y="3763.0" width="4.4" height="15" fill="#40d540" rx="2" ry="2"/>
<text x="695.1" y="3774.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.$anonfun$flatMap$1 (37 samples, 0.38%)</title><rect x="692.1" y="3747.0" width="4.4" height="15" fill="#52e552" rx="2" ry="2"/>
<text x="695.1" y="3758.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings$$Lambda$1580/632521219.apply (37 samples, 0.38%)</title><rect x="692.1" y="3731.0" width="4.4" height="15" fill="#63f563" rx="2" ry="2"/>
<text x="695.1" y="3742.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings.$anonfun$roots$1 (35 samples, 0.36%)</title><rect x="692.3" y="3715.0" width="4.2" height="15" fill="#4de14d" rx="2" ry="2"/>
<text x="695.3" y="3726.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/List.map (35 samples, 0.36%)</title><rect x="692.3" y="3699.0" width="4.2" height="15" fill="#58eb58" rx="2" ry="2"/>
<text x="695.3" y="3710.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.map$ (35 samples, 0.36%)</title><rect x="692.3" y="3683.0" width="4.2" height="15" fill="#6bfd6b" rx="2" ry="2"/>
<text x="695.3" y="3694.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.map (35 samples, 0.36%)</title><rect x="692.3" y="3667.0" width="4.2" height="15" fill="#5df05d" rx="2" ry="2"/>
<text x="695.3" y="3678.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/List.foreach (34 samples, 0.35%)</title><rect x="692.4" y="3651.0" width="4.1" height="15" fill="#68f968" rx="2" ry="2"/>
<text x="695.4" y="3662.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike$$Lambda$42/728885526.apply (34 samples, 0.35%)</title><rect x="692.4" y="3635.0" width="4.1" height="15" fill="#46da46" rx="2" ry="2"/>
<text x="695.4" y="3646.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.$anonfun$map$1 (34 samples, 0.35%)</title><rect x="692.4" y="3619.0" width="4.1" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="695.4" y="3630.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings$$Lambda$1581/1437396121.apply (34 samples, 0.35%)</title><rect x="692.4" y="3603.0" width="4.1" height="15" fill="#6bfd6b" rx="2" ry="2"/>
<text x="695.4" y="3614.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings.$anonfun$roots$2 (32 samples, 0.33%)</title><rect x="692.7" y="3587.0" width="3.8" height="15" fill="#6bfd6b" rx="2" ry="2"/>
<text x="695.7" y="3598.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/DelegatingPMap.update (9 samples, 0.09%)</title><rect x="692.7" y="3571.0" width="1.0" height="15" fill="#55e855" rx="2" ry="2"/>
<text x="695.7" y="3582.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/mutable/HashMap.update (9 samples, 0.09%)</title><rect x="692.7" y="3555.0" width="1.0" height="15" fill="#58eb58" rx="2" ry="2"/>
<text x="695.7" y="3566.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/mutable/HashMap.put (9 samples, 0.09%)</title><rect x="692.7" y="3539.0" width="1.0" height="15" fill="#33c933" rx="2" ry="2"/>
<text x="695.7" y="3550.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/mutable/HashMap.findOrAddEntry (9 samples, 0.09%)</title><rect x="692.7" y="3523.0" width="1.0" height="15" fill="#4fe34f" rx="2" ry="2"/>
<text x="695.7" y="3534.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/mutable/HashTable.findOrAddEntry$ (9 samples, 0.09%)</title><rect x="692.7" y="3507.0" width="1.0" height="15" fill="#53e653" rx="2" ry="2"/>
<text x="695.7" y="3518.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/mutable/HashTable.findOrAddEntry (9 samples, 0.09%)</title><rect x="692.7" y="3491.0" width="1.0" height="15" fill="#5ef15e" rx="2" ry="2"/>
<text x="695.7" y="3502.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings$$anon$1.apply (23 samples, 0.23%)</title><rect x="693.7" y="3571.0" width="2.8" height="15" fill="#43d743" rx="2" ry="2"/>
<text x="696.7" y="3582.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings$$anon$1.apply (23 samples, 0.23%)</title><rect x="693.7" y="3555.0" width="2.8" height="15" fill="#49dd49" rx="2" ry="2"/>
<text x="696.7" y="3566.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/AList$$anon$5.transform (11 samples, 0.11%)</title><rect x="694.8" y="3539.0" width="1.3" height="15" fill="#4fe34f" rx="2" ry="2"/>
<text x="697.8" y="3550.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/List.foreach (12 samples, 0.12%)</title><rect x="696.5" y="3859.0" width="1.4" height="15" fill="#4ce04c" rx="2" ry="2"/>
<text x="699.5" y="3870.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings$$Lambda$1589/933869191.apply (12 samples, 0.12%)</title><rect x="696.5" y="3843.0" width="1.4" height="15" fill="#44d844" rx="2" ry="2"/>
<text x="699.5" y="3854.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings.$anonfun$run$2$adapted (12 samples, 0.12%)</title><rect x="696.5" y="3827.0" width="1.4" height="15" fill="#69fb69" rx="2" ry="2"/>
<text x="699.5" y="3838.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings.$anonfun$run$2 (12 samples, 0.12%)</title><rect x="696.5" y="3811.0" width="1.4" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="699.5" y="3822.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings$INode.registerIfNew (12 samples, 0.12%)</title><rect x="696.5" y="3795.0" width="1.4" height="15" fill="#45d945" rx="2" ry="2"/>
<text x="699.5" y="3806.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings$INode.register (12 samples, 0.12%)</title><rect x="696.5" y="3779.0" width="1.4" height="15" fill="#5ff15f" rx="2" ry="2"/>
<text x="699.5" y="3790.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractTraversable.count (10 samples, 0.10%)</title><rect x="696.7" y="3763.0" width="1.2" height="15" fill="#6dfe6d" rx="2" ry="2"/>
<text x="699.7" y="3774.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.count$ (10 samples, 0.10%)</title><rect x="696.7" y="3747.0" width="1.2" height="15" fill="#4bdf4b" rx="2" ry="2"/>
<text x="699.7" y="3758.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.count (10 samples, 0.10%)</title><rect x="696.7" y="3731.0" width="1.2" height="15" fill="#37cd37" rx="2" ry="2"/>
<text x="699.7" y="3742.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/List.foreach (10 samples, 0.10%)</title><rect x="696.7" y="3715.0" width="1.2" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="699.7" y="3726.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce$$Lambda$859/1423007887.apply (10 samples, 0.10%)</title><rect x="696.7" y="3699.0" width="1.2" height="15" fill="#66f766" rx="2" ry="2"/>
<text x="699.7" y="3710.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.$anonfun$count$1$adapted (10 samples, 0.10%)</title><rect x="696.7" y="3683.0" width="1.2" height="15" fill="#4de04d" rx="2" ry="2"/>
<text x="699.7" y="3694.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.$anonfun$count$1 (10 samples, 0.10%)</title><rect x="696.7" y="3667.0" width="1.2" height="15" fill="#4ee24e" rx="2" ry="2"/>
<text x="699.7" y="3678.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings$INode$$Lambda$1591/382762227.apply (10 samples, 0.10%)</title><rect x="696.7" y="3651.0" width="1.2" height="15" fill="#4ce04c" rx="2" ry="2"/>
<text x="699.7" y="3662.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings$INode.$anonfun$register$2$adapted (10 samples, 0.10%)</title><rect x="696.7" y="3635.0" width="1.2" height="15" fill="#46da46" rx="2" ry="2"/>
<text x="699.7" y="3646.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings$INode.$anonfun$register$2 (10 samples, 0.10%)</title><rect x="696.7" y="3619.0" width="1.2" height="15" fill="#5aed5a" rx="2" ry="2"/>
<text x="699.7" y="3630.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings$INode.doneOrBlock (10 samples, 0.10%)</title><rect x="696.7" y="3603.0" width="1.2" height="15" fill="#33c933" rx="2" ry="2"/>
<text x="699.7" y="3614.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings$INode.registerIfNew (10 samples, 0.10%)</title><rect x="696.7" y="3587.0" width="1.2" height="15" fill="#53e653" rx="2" ry="2"/>
<text x="699.7" y="3598.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings$INode.register (10 samples, 0.10%)</title><rect x="696.7" y="3571.0" width="1.2" height="15" fill="#44d944" rx="2" ry="2"/>
<text x="699.7" y="3582.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/Load$$$Lambda$1742/968238821.apply (203 samples, 2.07%)</title><rect x="698.4" y="3971.0" width="24.4" height="15" fill="#4ade4a" rx="2" ry="2"/>
<text x="701.4" y="3982.0">s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/Load$.$anonfun$apply$8 (203 samples, 2.07%)</title><rect x="698.4" y="3955.0" width="24.4" height="15" fill="#60f360" rx="2" ry="2"/>
<text x="701.4" y="3966.0">s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/Load$.structureIndex (203 samples, 2.07%)</title><rect x="698.4" y="3939.0" width="24.4" height="15" fill="#4fe34f" rx="2" ry="2"/>
<text x="701.4" y="3950.0">s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/KeyIndex$.aggregate (137 samples, 1.39%)</title><rect x="701.3" y="3923.0" width="16.5" height="15" fill="#52e552" rx="2" ry="2"/>
<text x="704.3" y="3934.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractTraversable.$div$colon (137 samples, 1.39%)</title><rect x="701.3" y="3907.0" width="16.5" height="15" fill="#43d843" rx="2" ry="2"/>
<text x="704.3" y="3918.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.$div$colon$ (137 samples, 1.39%)</title><rect x="701.3" y="3891.0" width="16.5" height="15" fill="#53e653" rx="2" ry="2"/>
<text x="704.3" y="3902.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.$div$colon (137 samples, 1.39%)</title><rect x="701.3" y="3875.0" width="16.5" height="15" fill="#65f765" rx="2" ry="2"/>
<text x="704.3" y="3886.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractTraversable.foldLeft (137 samples, 1.39%)</title><rect x="701.3" y="3859.0" width="16.5" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="704.3" y="3870.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.foldLeft$ (137 samples, 1.39%)</title><rect x="701.3" y="3843.0" width="16.5" height="15" fill="#46da46" rx="2" ry="2"/>
<text x="704.3" y="3854.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.foldLeft (137 samples, 1.39%)</title><rect x="701.3" y="3827.0" width="16.5" height="15" fill="#3bd03b" rx="2" ry="2"/>
<text x="704.3" y="3838.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractIterable.foreach (137 samples, 1.39%)</title><rect x="701.3" y="3811.0" width="16.5" height="15" fill="#65f765" rx="2" ry="2"/>
<text x="704.3" y="3822.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IterableLike.foreach$ (137 samples, 1.39%)</title><rect x="701.3" y="3795.0" width="16.5" height="15" fill="#6dfe6d" rx="2" ry="2"/>
<text x="704.3" y="3806.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IterableLike.foreach (137 samples, 1.39%)</title><rect x="701.3" y="3779.0" width="16.5" height="15" fill="#38ce38" rx="2" ry="2"/>
<text x="704.3" y="3790.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractIterator.foreach (137 samples, 1.39%)</title><rect x="701.3" y="3763.0" width="16.5" height="15" fill="#42d742" rx="2" ry="2"/>
<text x="704.3" y="3774.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/Iterator.foreach$ (137 samples, 1.39%)</title><rect x="701.3" y="3747.0" width="16.5" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="704.3" y="3758.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/Iterator.foreach (137 samples, 1.39%)</title><rect x="701.3" y="3731.0" width="16.5" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="704.3" y="3742.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce$$Lambda$106/553759818.apply (137 samples, 1.39%)</title><rect x="701.3" y="3715.0" width="16.5" height="15" fill="#66f766" rx="2" ry="2"/>
<text x="704.3" y="3726.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.$anonfun$foldLeft$1$adapted (137 samples, 1.39%)</title><rect x="701.3" y="3699.0" width="16.5" height="15" fill="#57ea57" rx="2" ry="2"/>
<text x="704.3" y="3710.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.$anonfun$foldLeft$1 (137 samples, 1.39%)</title><rect x="701.3" y="3683.0" width="16.5" height="15" fill="#37cd37" rx="2" ry="2"/>
<text x="704.3" y="3694.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/KeyIndex$$$Lambda$1774/1924177924.apply (137 samples, 1.39%)</title><rect x="701.3" y="3667.0" width="16.5" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="704.3" y="3678.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/KeyIndex$.$anonfun$aggregate$1 (135 samples, 1.37%)</title><rect x="701.5" y="3651.0" width="16.3" height="15" fill="#68fa68" rx="2" ry="2"/>
<text x="704.5" y="3662.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/KeyIndex0.addAggregated (135 samples, 1.37%)</title><rect x="701.5" y="3635.0" width="16.3" height="15" fill="#6cfd6c" rx="2" ry="2"/>
<text x="704.5" y="3646.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/Aggregation$.aggregate (76 samples, 0.77%)</title><rect x="701.7" y="3619.0" width="9.1" height="15" fill="#5ff15f" rx="2" ry="2"/>
<text x="704.7" y="3630.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Dag$.topologicalSort (76 samples, 0.77%)</title><rect x="701.7" y="3603.0" width="9.1" height="15" fill="#3ed33e" rx="2" ry="2"/>
<text x="704.7" y="3614.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Dag$.topologicalSort (76 samples, 0.77%)</title><rect x="701.7" y="3587.0" width="9.1" height="15" fill="#64f664" rx="2" ry="2"/>
<text x="704.7" y="3598.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Dag$.visitAll$1 (69 samples, 0.70%)</title><rect x="701.8" y="3571.0" width="8.3" height="15" fill="#3cd13c" rx="2" ry="2"/>
<text x="704.8" y="3582.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/List.foreach (69 samples, 0.70%)</title><rect x="701.8" y="3555.0" width="8.3" height="15" fill="#6dfe6d" rx="2" ry="2"/>
<text x="704.8" y="3566.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Dag$$$Lambda$918/1245434971.apply (69 samples, 0.70%)</title><rect x="701.8" y="3539.0" width="8.3" height="15" fill="#59ec59" rx="2" ry="2"/>
<text x="704.8" y="3550.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Dag$.$anonfun$topologicalSort$2$adapted (69 samples, 0.70%)</title><rect x="701.8" y="3523.0" width="8.3" height="15" fill="#46db46" rx="2" ry="2"/>
<text x="704.8" y="3534.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Dag$.$anonfun$topologicalSort$2 (69 samples, 0.70%)</title><rect x="701.8" y="3507.0" width="8.3" height="15" fill="#60f260" rx="2" ry="2"/>
<text x="704.8" y="3518.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Dag$.visit$1 (69 samples, 0.70%)</title><rect x="701.8" y="3491.0" width="8.3" height="15" fill="#3fd43f" rx="2" ry="2"/>
<text x="704.8" y="3502.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/Aggregation$$$Lambda$1775/1439003682.apply (60 samples, 0.61%)</title><rect x="701.9" y="3475.0" width="7.2" height="15" fill="#53e653" rx="2" ry="2"/>
<text x="704.9" y="3486.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/Aggregation$.$anonfun$aggregate$1 (60 samples, 0.61%)</title><rect x="701.9" y="3459.0" width="7.2" height="15" fill="#52e652" rx="2" ry="2"/>
<text x="704.9" y="3470.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/Aggregation$.reverseAggregatedKeys (60 samples, 0.61%)</title><rect x="701.9" y="3443.0" width="7.2" height="15" fill="#44d944" rx="2" ry="2"/>
<text x="704.9" y="3454.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/List.flatMap (53 samples, 0.54%)</title><rect x="702.7" y="3427.0" width="6.4" height="15" fill="#37cc37" rx="2" ry="2"/>
<text x="705.7" y="3438.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.flatMap$ (53 samples, 0.54%)</title><rect x="702.7" y="3411.0" width="6.4" height="15" fill="#53e653" rx="2" ry="2"/>
<text x="705.7" y="3422.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.flatMap (53 samples, 0.54%)</title><rect x="702.7" y="3395.0" width="6.4" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="705.7" y="3406.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/List.foreach (53 samples, 0.54%)</title><rect x="702.7" y="3379.0" width="6.4" height="15" fill="#49dd49" rx="2" ry="2"/>
<text x="705.7" y="3390.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike$$Lambda$541/18601987.apply (53 samples, 0.54%)</title><rect x="702.7" y="3363.0" width="6.4" height="15" fill="#69fb69" rx="2" ry="2"/>
<text x="705.7" y="3374.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.$anonfun$flatMap$1 (53 samples, 0.54%)</title><rect x="702.7" y="3347.0" width="6.4" height="15" fill="#39cf39" rx="2" ry="2"/>
<text x="705.7" y="3358.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/Aggregation$$$Lambda$1778/1677544922.apply (53 samples, 0.54%)</title><rect x="702.7" y="3331.0" width="6.4" height="15" fill="#4fe34f" rx="2" ry="2"/>
<text x="705.7" y="3342.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/Aggregation$.$anonfun$reverseAggregatedKeys$1 (51 samples, 0.52%)</title><rect x="703.0" y="3315.0" width="6.1" height="15" fill="#37cd37" rx="2" ry="2"/>
<text x="706.0" y="3326.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/Aggregation$.aggregationEnabled (39 samples, 0.40%)</title><rect x="703.1" y="3299.0" width="4.7" height="15" fill="#47db47" rx="2" ry="2"/>
<text x="706.1" y="3310.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/SettingKey.get (34 samples, 0.35%)</title><rect x="703.5" y="3283.0" width="4.1" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="706.5" y="3294.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Scoped$DefinableSetting.get$ (34 samples, 0.35%)</title><rect x="703.5" y="3267.0" width="4.1" height="15" fill="#5ff15f" rx="2" ry="2"/>
<text x="706.5" y="3278.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Scoped$DefinableSetting.get (34 samples, 0.35%)</title><rect x="703.5" y="3251.0" width="4.1" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="706.5" y="3262.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Settings0.get (33 samples, 0.34%)</title><rect x="703.6" y="3235.0" width="4.0" height="15" fill="#5aed5a" rx="2" ry="2"/>
<text x="706.6" y="3246.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Scope$$$Lambda$1525/1111100957.apply (18 samples, 0.18%)</title><rect x="703.8" y="3219.0" width="2.2" height="15" fill="#38ce38" rx="2" ry="2"/>
<text x="706.8" y="3230.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Scope$.$anonfun$delegates$1 (18 samples, 0.18%)</title><rect x="703.8" y="3203.0" width="2.2" height="15" fill="#4ce04c" rx="2" ry="2"/>
<text x="706.8" y="3214.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Scope$.indexedDelegates (18 samples, 0.18%)</title><rect x="703.8" y="3187.0" width="2.2" height="15" fill="#69fa69" rx="2" ry="2"/>
<text x="706.8" y="3198.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/List.flatMap (13 samples, 0.13%)</title><rect x="704.4" y="3171.0" width="1.6" height="15" fill="#53e653" rx="2" ry="2"/>
<text x="707.4" y="3182.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.flatMap$ (13 samples, 0.13%)</title><rect x="704.4" y="3155.0" width="1.6" height="15" fill="#69fa69" rx="2" ry="2"/>
<text x="707.4" y="3166.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.flatMap (13 samples, 0.13%)</title><rect x="704.4" y="3139.0" width="1.6" height="15" fill="#5def5d" rx="2" ry="2"/>
<text x="707.4" y="3150.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/List.foreach (13 samples, 0.13%)</title><rect x="704.4" y="3123.0" width="1.6" height="15" fill="#59ec59" rx="2" ry="2"/>
<text x="707.4" y="3134.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike$$Lambda$541/18601987.apply (13 samples, 0.13%)</title><rect x="704.4" y="3107.0" width="1.6" height="15" fill="#5bee5b" rx="2" ry="2"/>
<text x="707.4" y="3118.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableLike.$anonfun$flatMap$1 (13 samples, 0.13%)</title><rect x="704.4" y="3091.0" width="1.6" height="15" fill="#33c933" rx="2" ry="2"/>
<text x="707.4" y="3102.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Scope$$$Lambda$1552/475526834.apply (12 samples, 0.12%)</title><rect x="704.4" y="3075.0" width="1.5" height="15" fill="#61f361" rx="2" ry="2"/>
<text x="707.4" y="3086.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Scope$.$anonfun$indexedDelegates$5 (12 samples, 0.12%)</title><rect x="704.4" y="3059.0" width="1.5" height="15" fill="#41d641" rx="2" ry="2"/>
<text x="707.4" y="3070.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Scope$.nonProjectScopes$1 (12 samples, 0.12%)</title><rect x="704.4" y="3043.0" width="1.5" height="15" fill="#65f765" rx="2" ry="2"/>
<text x="707.4" y="3054.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/Stream.flatMap (13 samples, 0.13%)</title><rect x="706.0" y="3219.0" width="1.6" height="15" fill="#39cf39" rx="2" ry="2"/>
<text x="709.0" y="3230.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/Resolve$$$Lambda$3374/381096925.apply (9 samples, 0.09%)</title><rect x="707.8" y="3299.0" width="1.1" height="15" fill="#61f361" rx="2" ry="2"/>
<text x="710.8" y="3310.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/complete/DefaultParsers$.validID (15 samples, 0.15%)</title><rect x="710.8" y="3619.0" width="1.8" height="15" fill="#39ce39" rx="2" ry="2"/>
<text x="713.8" y="3630.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/complete/DefaultParsers$.matches (15 samples, 0.15%)</title><rect x="710.8" y="3603.0" width="1.8" height="15" fill="#4de14d" rx="2" ry="2"/>
<text x="713.8" y="3614.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/complete/DefaultParsers$.apply (9 samples, 0.09%)</title><rect x="710.8" y="3587.0" width="1.1" height="15" fill="#5ff15f" rx="2" ry="2"/>
<text x="713.8" y="3598.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/complete/ParserMain.apply$ (9 samples, 0.09%)</title><rect x="710.8" y="3571.0" width="1.1" height="15" fill="#50e350" rx="2" ry="2"/>
<text x="713.8" y="3582.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/complete/ParserMain.apply (9 samples, 0.09%)</title><rect x="710.8" y="3555.0" width="1.1" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="713.8" y="3566.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/StringOps.$div$colon (9 samples, 0.09%)</title><rect x="710.8" y="3539.0" width="1.1" height="15" fill="#50e450" rx="2" ry="2"/>
<text x="713.8" y="3550.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.$div$colon$ (9 samples, 0.09%)</title><rect x="710.8" y="3523.0" width="1.1" height="15" fill="#56e956" rx="2" ry="2"/>
<text x="713.8" y="3534.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.$div$colon (9 samples, 0.09%)</title><rect x="710.8" y="3507.0" width="1.1" height="15" fill="#33c833" rx="2" ry="2"/>
<text x="713.8" y="3518.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/StringOps.foldLeft (9 samples, 0.09%)</title><rect x="710.8" y="3491.0" width="1.1" height="15" fill="#42d742" rx="2" ry="2"/>
<text x="713.8" y="3502.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IndexedSeqOptimized.foldLeft$ (9 samples, 0.09%)</title><rect x="710.8" y="3475.0" width="1.1" height="15" fill="#4cdf4c" rx="2" ry="2"/>
<text x="713.8" y="3486.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IndexedSeqOptimized.foldLeft (9 samples, 0.09%)</title><rect x="710.8" y="3459.0" width="1.1" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="713.8" y="3470.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/complete/ParserMain$$Lambda$28/2012993836.apply (9 samples, 0.09%)</title><rect x="710.8" y="3443.0" width="1.1" height="15" fill="#6afb6a" rx="2" ry="2"/>
<text x="713.8" y="3454.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/complete/ParserMain.$anonfun$apply$1$adapted (9 samples, 0.09%)</title><rect x="710.8" y="3427.0" width="1.1" height="15" fill="#69fb69" rx="2" ry="2"/>
<text x="713.8" y="3438.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/complete/ParserMain.$anonfun$apply$1 (9 samples, 0.09%)</title><rect x="710.8" y="3411.0" width="1.1" height="15" fill="#60f260" rx="2" ry="2"/>
<text x="713.8" y="3422.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/complete/DefaultParsers$.derive1 (9 samples, 0.09%)</title><rect x="710.8" y="3395.0" width="1.1" height="15" fill="#4bdf4b" rx="2" ry="2"/>
<text x="713.8" y="3406.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/complete/ParserMain.derive1$ (9 samples, 0.09%)</title><rect x="710.8" y="3379.0" width="1.1" height="15" fill="#4fe34f" rx="2" ry="2"/>
<text x="713.8" y="3390.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/complete/ParserMain.derive1 (9 samples, 0.09%)</title><rect x="710.8" y="3363.0" width="1.1" height="15" fill="#36cb36" rx="2" ry="2"/>
<text x="713.8" y="3374.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/complete/MapParser.derive (9 samples, 0.09%)</title><rect x="710.8" y="3347.0" width="1.1" height="15" fill="#36cc36" rx="2" ry="2"/>
<text x="713.8" y="3358.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractTraversable.$div$colon (43 samples, 0.44%)</title><rect x="712.6" y="3619.0" width="5.2" height="15" fill="#57ea57" rx="2" ry="2"/>
<text x="715.6" y="3630.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.$div$colon$ (43 samples, 0.44%)</title><rect x="712.6" y="3603.0" width="5.2" height="15" fill="#6afb6a" rx="2" ry="2"/>
<text x="715.6" y="3614.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.$div$colon (43 samples, 0.44%)</title><rect x="712.6" y="3587.0" width="5.2" height="15" fill="#34ca34" rx="2" ry="2"/>
<text x="715.6" y="3598.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/List.foldLeft (43 samples, 0.44%)</title><rect x="712.6" y="3571.0" width="5.2" height="15" fill="#5cee5c" rx="2" ry="2"/>
<text x="715.6" y="3582.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/LinearSeqOptimized.foldLeft$ (43 samples, 0.44%)</title><rect x="712.6" y="3555.0" width="5.2" height="15" fill="#4bdf4b" rx="2" ry="2"/>
<text x="715.6" y="3566.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/LinearSeqOptimized.foldLeft (43 samples, 0.44%)</title><rect x="712.6" y="3539.0" width="5.2" height="15" fill="#50e450" rx="2" ry="2"/>
<text x="715.6" y="3550.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/KeyIndex0$$Lambda$1779/493310435.apply (43 samples, 0.44%)</title><rect x="712.6" y="3523.0" width="5.2" height="15" fill="#4ade4a" rx="2" ry="2"/>
<text x="715.6" y="3534.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/KeyIndex0.$anonfun$addAggregated$1 (42 samples, 0.43%)</title><rect x="712.7" y="3507.0" width="5.1" height="15" fill="#36cc36" rx="2" ry="2"/>
<text x="715.7" y="3518.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/KeyIndex0.add (42 samples, 0.43%)</title><rect x="712.7" y="3491.0" width="5.1" height="15" fill="#42d642" rx="2" ry="2"/>
<text x="715.7" y="3502.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/KeyIndex0.add0 (24 samples, 0.24%)</title><rect x="712.7" y="3475.0" width="2.9" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="715.7" y="3486.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/KeyIndex0.add1 (23 samples, 0.23%)</title><rect x="712.7" y="3459.0" width="2.8" height="15" fill="#40d540" rx="2" ry="2"/>
<text x="715.7" y="3470.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/BuildIndex.add (23 samples, 0.23%)</title><rect x="712.7" y="3443.0" width="2.8" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="715.7" y="3454.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/ProjectIndex.add (23 samples, 0.23%)</title><rect x="712.7" y="3427.0" width="2.8" height="15" fill="#66f766" rx="2" ry="2"/>
<text x="715.7" y="3438.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/ConfigIndex.add (19 samples, 0.19%)</title><rect x="712.7" y="3411.0" width="2.3" height="15" fill="#3cd13c" rx="2" ry="2"/>
<text x="715.7" y="3422.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/AKeyIndex.add (11 samples, 0.11%)</title><rect x="712.7" y="3395.0" width="1.3" height="15" fill="#4ee24e" rx="2" ry="2"/>
<text x="715.7" y="3406.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/MRelation.$plus (11 samples, 0.11%)</title><rect x="712.7" y="3379.0" width="1.3" height="15" fill="#37cd37" rx="2" ry="2"/>
<text x="715.7" y="3390.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/MRelation.$plus (11 samples, 0.11%)</title><rect x="712.7" y="3363.0" width="1.3" height="15" fill="#36cc36" rx="2" ry="2"/>
<text x="715.7" y="3374.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/complete/DefaultParsers$.validID (18 samples, 0.18%)</title><rect x="715.6" y="3475.0" width="2.2" height="15" fill="#6bfc6b" rx="2" ry="2"/>
<text x="718.6" y="3486.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/complete/DefaultParsers$.matches (18 samples, 0.18%)</title><rect x="715.6" y="3459.0" width="2.2" height="15" fill="#41d641" rx="2" ry="2"/>
<text x="718.6" y="3470.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/complete/DefaultParsers$.apply (13 samples, 0.13%)</title><rect x="715.6" y="3443.0" width="1.6" height="15" fill="#49dd49" rx="2" ry="2"/>
<text x="718.6" y="3454.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/complete/ParserMain.apply$ (12 samples, 0.12%)</title><rect x="715.7" y="3427.0" width="1.5" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="718.7" y="3438.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/complete/ParserMain.apply (12 samples, 0.12%)</title><rect x="715.7" y="3411.0" width="1.5" height="15" fill="#56e956" rx="2" ry="2"/>
<text x="718.7" y="3422.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/StringOps.$div$colon (12 samples, 0.12%)</title><rect x="715.7" y="3395.0" width="1.5" height="15" fill="#6dfe6d" rx="2" ry="2"/>
<text x="718.7" y="3406.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.$div$colon$ (11 samples, 0.11%)</title><rect x="715.8" y="3379.0" width="1.4" height="15" fill="#3dd23d" rx="2" ry="2"/>
<text x="718.8" y="3390.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.$div$colon (11 samples, 0.11%)</title><rect x="715.8" y="3363.0" width="1.4" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="718.8" y="3374.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/StringOps.foldLeft (11 samples, 0.11%)</title><rect x="715.8" y="3347.0" width="1.4" height="15" fill="#4de04d" rx="2" ry="2"/>
<text x="718.8" y="3358.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IndexedSeqOptimized.foldLeft$ (11 samples, 0.11%)</title><rect x="715.8" y="3331.0" width="1.4" height="15" fill="#3cd13c" rx="2" ry="2"/>
<text x="718.8" y="3342.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IndexedSeqOptimized.foldLeft (11 samples, 0.11%)</title><rect x="715.8" y="3315.0" width="1.4" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="718.8" y="3326.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/complete/ParserMain$$Lambda$28/2012993836.apply (11 samples, 0.11%)</title><rect x="715.8" y="3299.0" width="1.4" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="718.8" y="3310.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/complete/ParserMain.$anonfun$apply$1$adapted (11 samples, 0.11%)</title><rect x="715.8" y="3283.0" width="1.4" height="15" fill="#5ff15f" rx="2" ry="2"/>
<text x="718.8" y="3294.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/complete/ParserMain.$anonfun$apply$1 (11 samples, 0.11%)</title><rect x="715.8" y="3267.0" width="1.4" height="15" fill="#46da46" rx="2" ry="2"/>
<text x="718.8" y="3278.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/complete/DefaultParsers$.derive1 (11 samples, 0.11%)</title><rect x="715.8" y="3251.0" width="1.4" height="15" fill="#37cd37" rx="2" ry="2"/>
<text x="718.8" y="3262.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/complete/ParserMain.derive1$ (11 samples, 0.11%)</title><rect x="715.8" y="3235.0" width="1.4" height="15" fill="#4de14d" rx="2" ry="2"/>
<text x="718.8" y="3246.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/complete/ParserMain.derive1 (11 samples, 0.11%)</title><rect x="715.8" y="3219.0" width="1.4" height="15" fill="#5bee5b" rx="2" ry="2"/>
<text x="718.8" y="3230.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/complete/MapParser.derive (11 samples, 0.11%)</title><rect x="715.8" y="3203.0" width="1.4" height="15" fill="#6bfc6b" rx="2" ry="2"/>
<text x="718.8" y="3214.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/KeyIndex$.apply (32 samples, 0.33%)</title><rect x="717.8" y="3923.0" width="3.8" height="15" fill="#3fd43f" rx="2" ry="2"/>
<text x="720.8" y="3934.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractTraversable.$div$colon (32 samples, 0.33%)</title><rect x="717.8" y="3907.0" width="3.8" height="15" fill="#58eb58" rx="2" ry="2"/>
<text x="720.8" y="3918.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.$div$colon$ (32 samples, 0.33%)</title><rect x="717.8" y="3891.0" width="3.8" height="15" fill="#3cd13c" rx="2" ry="2"/>
<text x="720.8" y="3902.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.$div$colon (32 samples, 0.33%)</title><rect x="717.8" y="3875.0" width="3.8" height="15" fill="#68f968" rx="2" ry="2"/>
<text x="720.8" y="3886.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractTraversable.foldLeft (32 samples, 0.33%)</title><rect x="717.8" y="3859.0" width="3.8" height="15" fill="#62f462" rx="2" ry="2"/>
<text x="720.8" y="3870.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.foldLeft$ (32 samples, 0.33%)</title><rect x="717.8" y="3843.0" width="3.8" height="15" fill="#64f664" rx="2" ry="2"/>
<text x="720.8" y="3854.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.foldLeft (32 samples, 0.33%)</title><rect x="717.8" y="3827.0" width="3.8" height="15" fill="#40d540" rx="2" ry="2"/>
<text x="720.8" y="3838.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractIterable.foreach (32 samples, 0.33%)</title><rect x="717.8" y="3811.0" width="3.8" height="15" fill="#32c832" rx="2" ry="2"/>
<text x="720.8" y="3822.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IterableLike.foreach$ (32 samples, 0.33%)</title><rect x="717.8" y="3795.0" width="3.8" height="15" fill="#54e754" rx="2" ry="2"/>
<text x="720.8" y="3806.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/IterableLike.foreach (32 samples, 0.33%)</title><rect x="717.8" y="3779.0" width="3.8" height="15" fill="#4de14d" rx="2" ry="2"/>
<text x="720.8" y="3790.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/AbstractIterator.foreach (32 samples, 0.33%)</title><rect x="717.8" y="3763.0" width="3.8" height="15" fill="#41d641" rx="2" ry="2"/>
<text x="720.8" y="3774.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/Iterator.foreach$ (32 samples, 0.33%)</title><rect x="717.8" y="3747.0" width="3.8" height="15" fill="#50e450" rx="2" ry="2"/>
<text x="720.8" y="3758.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/Iterator.foreach (32 samples, 0.33%)</title><rect x="717.8" y="3731.0" width="3.8" height="15" fill="#4ce04c" rx="2" ry="2"/>
<text x="720.8" y="3742.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce$$Lambda$106/553759818.apply (29 samples, 0.30%)</title><rect x="717.8" y="3715.0" width="3.4" height="15" fill="#67f967" rx="2" ry="2"/>
<text x="720.8" y="3726.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.$anonfun$foldLeft$1$adapted (29 samples, 0.30%)</title><rect x="717.8" y="3699.0" width="3.4" height="15" fill="#35ca35" rx="2" ry="2"/>
<text x="720.8" y="3710.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/TraversableOnce.$anonfun$foldLeft$1 (29 samples, 0.30%)</title><rect x="717.8" y="3683.0" width="3.4" height="15" fill="#48dc48" rx="2" ry="2"/>
<text x="720.8" y="3694.0"></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/KeyIndex$$$Lambda$1760/15335646.apply (29 samples, 0.30%)</title><rect x="717.8" y="3667.0" width="3.4" height="
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment