Skip to content

Instantly share code, notes, and snippets.

@melezhik
Created December 26, 2020 16:02
Show Gist options
  • Save melezhik/f24c3590b955d6decbc4906c15c375ab to your computer and use it in GitHub Desktop.
Save melezhik/f24c3590b955d6decbc4906c15c375ab to your computer and use it in GitHub Desktop.
Raku profile data. Rakudo Version: 34faae566b713e83b7291dfae716cb8bd161e040
<!DOCTYPE html>
<html lang="en" ng-app="moarProfApp" ng-controller="NavigationController">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>MoarVM Profiler Results</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css">
<style>
body {
min-height: 500px;
padding-top: 70px;
}
.icyclegraph .call {
display: block;
border: 1px solid black;
overflow: hidden;
}
.icyclegraph .child {
float: left;
}
.icyclegraph a {
color: black;
}
</style>
</head>
<body >
<div class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand">MoarVM Profiler Results</a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li ng-class="Tab == 'Overview' ? 'active' : ''"><a href="#overview" ng-click="Tab = 'Overview'">Overview</a></li>
<li ng-class="Tab == 'Routines' ? 'active' : ''"><a href="#routines" ng-click="Tab = 'Routines'">Routines</a></li>
<li ng-class="Tab == 'Call Graph' ? 'active' : ''"><a href="#callgraph" ng-click="Tab = 'Call Graph'">Call Graph</a></li>
<li ng-class="Tab == 'Allocations' ? 'active' : ''"><a href="#allocations" ng-click="Tab = 'Allocations'">Allocations</a></li>
<li ng-class="Tab == 'GC' ? 'active' : ''"><a href="#gc" ng-click="Tab = 'GC'">GC</a></li>
<li ng-class="Tab == 'OSR/Deopt' ? 'active' : ''"><a href="#osrdeopt" ng-click="Tab = 'OSR/Deopt'">OSR / Deopt</a></li>
</ul>
</div>
</div>
</div>
<div class="container" ng-show="Tab == 'Overview'">
<div ng-controller="OverviewController">
<h3>Time Spent</h3>
<p>The profiled code ran for <strong>{{TotalTime}}ms</strong>. Of this,
<strong>{{GCOverheadTime}}ms</strong> were spent on garbage collection
(that's <strong>{{GCOverheadTimePercent}}%</strong>).
</p>
<p>The dynamic optimizer was active for <strong>{{SpeshTimePercent}}%</strong> of the program's run time.
<table class="table table-striped table-condensed table-bordered">
<tbody>
<tr>
<td><strong>Executing Code</strong></td>
<td>
<div class="pull-left" style="width: 310px">
<div class="progress" style="width: 300px">
<div class="progress-bar progress-bar-success" role="progressbar" style="width: {{ExecutingTimePercent}}%;">
</div>
</div>
</div>
<div>
{{ExecutingTimePercent}}%
({{ExecutingTime}}ms)
</div>
</td>
</tr>
<tr>
<td><strong>Garbage Collection</strong></td>
<td>
<div class="pull-left" style="width: 310px">
<div class="progress" style="width: 300px">
<div class="progress-bar progress-bar-warning" role="progressbar" style="width: {{GCTimePercent}}%;">
</div>
</div>
</div>
<div>
{{GCTimePercent}}%
({{GCTime}}ms)
</div>
</td>
</tr>
<tr>
<td><strong>Dynamic Optimization</strong></td>
<td>
<div class="pull-left" style="width: 310px">
<div class="progress" style="width: 300px">
<div class="progress-bar progress-bar-warning" role="progressbar" style="width: {{SpeshTimePercent}}%;">
</div>
</div>
</div>
<div>
{{SpeshTimePercent}}%
({{SpeshTime}}ms)
</div>
</td>
</tr>
</tbody>
</table>
<h3>Call Frames</h3>
<p>In total, <strong>{{EntriesWithoutInline}} call frames</strong> were
entered and exited by the profiled code. Inlining eliminated the need
to create <strong>{{EntriesInline}} call frames</strong> (that's
<strong>{{InlinePercent}}%</strong>).
</p>
<table class="table table-striped table-condensed table-bordered">
<tbody>
<tr>
<td><strong>Interpreted Frames</strong></td>
<td>
<div class="pull-left" style="width: 310px">
<div class="progress" style="width: 300px">
<div class="progress-bar progress-bar-danger" role="progressbar" style="width: {{InterpFramesPercent}}%;">
</div>
</div>
</div>
<div>
{{InterpFramesPercent}}%
({{InterpFrames}})
</div>
</td>
</tr>
<tr>
<td><strong>Specialized Frames</strong></td>
<td>
<div class="pull-left" style="width: 310px">
<div class="progress" style="width: 300px">
<div class="progress-bar progress-bar-warning" role="progressbar" style="width: {{SpeshFramesPercent}}%;">
</div>
</div>
</div>
<div>
{{SpeshFramesPercent}}%
({{SpeshFrames}})
</div>
</td>
</tr>
<tr>
<td><strong>JIT-Compiled Frames</strong></td>
<td>
<div class="pull-left" style="width: 310px">
<div class="progress" style="width: 300px">
<div class="progress-bar progress-bar-success" role="progressbar" style="width: {{JITFramesPercent}}%;">
</div>
</div>
</div>
<div>
{{JITFramesPercent}}%
({{JITFrames}})
</div>
</td>
</tr>
</tbody>
</table>
<h3>Garbage Collection</h3>
<p>The profiled code did <strong>{{GCRuns}} garbage collections</strong>.
There were <strong>{{FullGCRuns}} full collections</strong> involving
the entire heap.
</p>
<p ng-show="{{GCRuns > 0}}">
The average nursery collection time was <strong>{{NurseryAverage}}ms</strong>.
<span ng-show="{{FullGCRuns > 0}}">
The average full collection time was <strong>{{FullAverage}}ms</strong>.
</span>
<span ng-show="{{AverageParticipants > 1}}">
On average, <strong>{{AverageParticipants}}</strong> threads participated in GC.
</span>
</p>
<p ng-show="{{ScalarReplacements > 1}}">
Scalar replacement eliminated <strong>{{ScalarReplacements}}</strong> allocations
(that's <strong>{{ScalarReplacementPercent}}%</strong>).
</p>
<h3>Dynamic Optimization</h3>
<p>Of {{OptimizedFrames}} specialized or JIT-compiled frames, there were
<strong>{{DeoptOnes}} deoptimizations</strong> (that's <strong>
{{DeoptOnePercent}}%</strong> of all optimized frames).
</p>
<p ng-show="DeoptAlls == 0">
There was <strong>no global deoptimization</strong> triggered by the
profiled code.
</p>
<p ng-show="DeoptAlls == 1">
There was <strong>one global deoptimization</strong> triggered by the
profiled code.
</p>
<p ng-show="DeoptAlls > 1">
There were <strong>{{DeoptAlls}} global deoptimization</strong> triggered
by the profiled code.
</p>
<p ng-show="OSRs == 0">
There was <strong>no On Stack Replacement</strong> performed while
executing the profiled code (normal if the code lacks long-running
loops with many iterations).
</p>
<p ng-show="OSRs == 1">
There was <strong>one On Stack Replacement</strong> performed while
executing the profiled code.
</p>
<p ng-show="OSRs > 1">
There were <strong>{{OSRs}} On Stack Replacements</strong> performed
while executing the profiled code.
</p>
</div>
</div>
<div class="container" ng-show="Tab == 'Routines'">
<div ng-controller="RoutinesController">
<table class="table table-striped table-condensed table-bordered">
<thead>
<th>
<a href="" ng-click="reverse = predicate == 'Name' ? !reverse : false; predicate = 'Name';">Name</a>
<input ng-model="NameFilter">
</th>
<th><a href="" ng-click="reverse = predicate == 'Entries' ? !reverse : true; predicate = 'Entries';">Entries</a></th>
<th><a href="" ng-click="reverse = predicate == 'InclusiveTime' ? !reverse : true; predicate = 'InclusiveTime';">Inclusive Time</a></th>
<th><a href="" ng-click="reverse = predicate == 'ExclusiveTime' ? !reverse : true; predicate = 'ExclusiveTime';">Exclusive Time</a></th>
<th>
<span class="text-danger" tooltip-placement="bottom" tooltip="Unoptimized interpreted code">Interp</span> /
<span class="text-warning" tooltip-placement="bottom" tooltip="Type-specialized interpreted code">Spesh</span> /
<span class="text-success" tooltip-placement="bottom" tooltip="Type-specialized, JIT-compiled code">JIT</span>
</th>
</thead>
<tbody>
<tr ng-repeat="routine in Routines | filter:NameFilter | orderBy:predicate:reverse">
<td>
<strong>{{routine.Name}}</strong><br />
<span class="text-muted">{{routine.File}}:{{routine.Line}}</span>
</td>
<td>{{routine.Entries}}</td>
<td>
<div class="pull-left" style="width: 70px">
<div class="progress" style="width: 60px">
<div class="progress-bar" role="progressbar" style="width: {{routine.InclusiveTimePercent}}%;">
</div>
</div>
</div>
<div>
<strong>{{routine.InclusiveTimePercent}}%</strong>
({{routine.InclusiveTime}}ms)
</div>
</td>
<td>
<div class="pull-left" style="width: 70px">
<div class="progress" style="width: 60px">
<div class="progress-bar" role="progressbar" style="width: {{routine.ExclusiveTimePercent}}%;">
</div>
</div>
</div>
<div>
<strong>{{routine.ExclusiveTimePercent}}%</strong>
({{routine.ExclusiveTime}}ms)
</div>
</td>
<td>
<div class="pull-left" style="width: 110px">
<div class="progress" style="width: 100px">
<div class="progress-bar progress-bar-danger" style="width: {{routine.InterpEntriesPercent}}%">
</div>
<div class="progress-bar progress-bar-warning" style="width: {{routine.SpeshEntriesPercent}}%">
</div>
<div class="progress-bar progress-bar-success" style="width: {{routine.JITEntriesPercent}}%">
</div>
</div>
</div>
<div>
<span class="label label-default" ng-show="routine.OSR">OSR</span>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<script type="text/ng-template" id="icycle_graph_callee_renderer.html">
<a href="#" class="call" style="background-color:{{backgroundColor(callee)}}" ng-click="toCallee(callee)">{{callee.name}}</a>
<div class="child" style="width: {{callee.inclusive_time * 100 / Current.inclusive_time}}%;" ng-repeat="callee in callee.callees" title="{{callee.name}}" ng-include="'icycle_graph_callee_renderer.html'"></div>
</script>
<div class="container" ng-show="Tab == 'Call Graph'">
<div ng-controller="CallGraphController">
<ol class="breadcrumb">
<li><strong>Callers:</strong></li>
<li ng-show="RecentCallers.length == 0"><em>None</em></li>
<li ng-repeat="caller in RecentCallers">
<a href="" ng-click="toCaller(caller)">
{{caller.name == '' ? '&lt;anon&gt;' : caller.name}}
</a>
</li>
</ol>
<p>
<span class="lead">{{Current.name == '' ? '&lt;anon&gt;' : Current.name}}</span><br />
<span class="text-muted">{{File}}:{{Line}}</span>
</p>
<div class="icyclegraph">
<div class="child" ng-repeat="callee in [Current]" ng-include="'icycle_graph_callee_renderer.html'"></div>
</div>
<table class="table table-striped table-condensed table-bordered">
<tbody>
<tr>
<td><strong>Calls <span class="text-success">(Inlined)</span></strong></td>
<td>
<div class="pull-left" style="width: 310px">
<div class="progress" style="width: 300px">
<div class="progress-bar" role="progressbar" style="width: {{Percent}}%;">
</div>
<div class="progress-bar progress-bar-success" role="progressbar" style="width: {{InlinePercent}}%;">
</div>
</div>
</div>
<div ng-show="InlinePercent == 0">
{{Entries}}
</div>
<div ng-show="InlinePercent != 0">
{{Entries}} +
<span class="text-success">{{InlineEntries}} ({{InlinePercent}}%)</span>
</div>
</td>
</tr>
<tr>
<td><strong>Interpreted Calls</strong></td>
<td>
<div class="pull-left" style="width: 310px">
<div class="progress" style="width: 300px">
<div class="progress-bar progress-bar-danger" role="progressbar" style="width: {{InterpPercent}}%;">
</div>
</div>
</div>
<div>
{{InterpPercent}}%
({{InterpEntries}})
</div>
</td>
</tr>
<tr>
<td><strong>Specialized Calls</strong></td>
<td>
<div class="pull-left" style="width: 310px">
<div class="progress" style="width: 300px">
<div class="progress-bar progress-bar-warning" role="progressbar" style="width: {{SpeshPercent}}%;">
</div>
</div>
</div>
<div>
{{SpeshPercent}}%
({{SpeshEntries}})
</div>
</td>
</tr>
<tr>
<td><strong>JIT-Compiled Calls</strong></td>
<td>
<div class="pull-left" style="width: 310px">
<div class="progress" style="width: 300px">
<div class="progress-bar progress-bar-success" role="progressbar" style="width: {{JITPercent}}%;">
</div>
</div>
</div>
<div>
{{JITPercent}}%
({{JITEntries}})
</div>
</td>
</tr>
</tbody>
</table>
<div class="panel panel-default">
<div class="panel-heading">Callees</div>
<table class="table table-striped table-condensed table-bordered" ng-show="Callees.length > 0">
<thead>
<th>
<a href="" ng-click="reverse = predicate == 'Name' ? !reverse : false; predicate = 'Name';">Name</a>
<input ng-model="NameFilter">
</th>
<th><a href="" ng-click="reverse = predicate == 'Calls' ? !reverse : true; predicate = 'Calls';">Calls</a></th>
<th><a href="" ng-click="reverse = predicate == 'Time' ? !reverse : true; predicate = 'Time';">Time In Callee</a></th>
<th>
<span class="text-danger" tooltip-placement="bottom" tooltip="Unoptimized interpreted code">Interp</span> /
<span class="text-warning" tooltip-placement="bottom" tooltip="Type-specialized interpreted code">Spesh</span> /
<span class="text-success" tooltip-placement="bottom" tooltip="Type-specialized, JIT-compiled code">JIT</span>
</th>
<th>
<span tooltip-placement="bottom" tooltip="Code from this callee was flattened into the routine by the optimizer">Inlined</span>
</th>
</thead>
<tbody>
<tr ng-repeat="callee in Callees | filter:NameFilter | orderBy:predicate:reverse">
<td>
<strong><a href="" ng-click="toCallee(callee.Node)">{{callee.Name}}</a></strong><br />
<span class="text-muted">{{callee.File}}:{{callee.Line}}</span>
</td>
<td>{{callee.Calls}}</td>
<td>
<div class="pull-left" style="width: 70px">
<div class="progress" style="width: 60px">
<div class="progress-bar" role="progressbar" style="width: {{callee.TimePercent}}%;">
</div>
</div>
</div>
<div>
<strong>{{callee.TimePercent}}%</strong>
({{callee.Time}}ms)
</div>
</td>
<td>
<div class="progress" style="width: 100px">
<div class="progress-bar progress-bar-danger" style="width: {{callee.InterpCallsPercent}}%">
</div>
<div class="progress-bar progress-bar-warning" style="width: {{callee.SpeshCallsPercent}}%">
</div>
<div class="progress-bar progress-bar-success" style="width: {{callee.JITCallsPercent}}%">
</div>
</div>
</td>
<td>
<div ng-show="callee.VeryInline">
<span class="text-success">
<span class="glyphicon glyphicon-star"></span>
</span>
{{callee.InlinedPercent}}%
</div>
<div ng-show="callee.SometimesInline">
<span class="text-muted">
<span class="glyphicon glyphicon-star-empty"></span>
</span>
{{callee.InlinedPercent}}%
</div>
</td>
</tr>
</tbody>
</table>
<div class="panel-body" ng-show="Callees.length == 0">
This code has no callees.
</div>
</div>
</div>
</div>
<div class="container" ng-show="Tab == 'Allocations'">
<div ng-controller="AllocationsController">
<table class="table table-striped table-condensed table-bordered">
<thead>
<th>
<a href="" ng-click="reverse = predicate == 'Name' ? !reverse : false; predicate = 'Name';">Name</a>
<input ng-model="NameFilter">
</th>
<th><a href="" ng-click="reverse = predicate == 'Allocations' ? !reverse : true; predicate = 'Allocations';">Allocations</a></th>
<th>Allocating Routines</th>
</thead>
<tbody>
<tr ng-repeat="alloc in AllocationSummary | filter:NameFilter | orderBy:predicate:reverse">
<td><strong>{{alloc.Name}}</strong></td>
<td>
<div class="pull-left" style="width: 210px">
<div class="progress" style="width: 200px">
<div class="progress-bar progress-bar-danger" role="progressbar" style="width: {{alloc.AllocationsInterpPercent}}%;">
</div>
<div class="progress-bar progress-bar-warning" role="progressbar" style="width: {{alloc.AllocationsSpeshPercent}}%;">
</div>
<div class="progress-bar progress-bar-success" role="progressbar" style="width: {{alloc.AllocationsJitPercent}}%;">
</div>
</div>
</div>
<div>
{{alloc.Allocations}}
</div>
</td>
<td>
<a href="" ng-click="showAllocatingRoutines(alloc)">View</a>
</td>
</tr>
</tbody>
</table>
<script type="text/ng-template" id="myModalContent.html">
<div class="modal-header">
<button type="button" ng-click="modalInstance.close()"
class="close" data-dismiss="modal">
<span aria-hidden="true">&times;</span><span class="sr-only">Close</span>
</button>
<h4 class="modal-title" id="allocatingRoutinesModalLabel">
Routines Allocating {{CurrentAllocatingRoutine}}
</h4>
</div>
<div class="modal-body">
<table class="table table-striped table-condensed table-bordered">
<thead>
<th>
<a href="" ng-click="routineReverse = routinePredicate == 'Name' ? !routineReverse : false; routinePredicate = 'Name';">Name</a>
<input ng-model="RoutineNameFilter">
</th>
<th><a href="" ng-click="routineReverse = routinePredicate == 'Allocations' ? !routineReverse : true; routinePredicate = 'Allocations';">Allocations</a></th>
</thead>
<tbody>
<tr ng-repeat="routine in CurrentAllocatingRoutineStats | filter:RoutineNameFilter | orderBy:routinePredicate:routineReverse">
<td>
<strong>{{routine.Name}}</strong><br />
<span class="text-muted">{{routine.File}}:{{routine.Line}}</span>
</td>
<td>
<div class="pull-left" style="width: 210px">
<div class="progress" style="width: 200px">
<div class="progress-bar progress-bar-danger" style="width: {{routine.AllocationsInterpPercent}}%;">
</div>
<div class="progress-bar progress-bar-warning" style="width: {{routine.AllocationsSpeshPercent}}%;">
</div>
<div class="progress-bar progress-bar-success" style="width: {{routine.AllocationsJitPercent}}%;">
</div>
</div>
</div>
<div>
{{routine.Allocations}}
</div>
</td>
</tr>
</tbody>
</table>
</div>
<div class="modal-footer">
<button type="button" ng-click="modalInstance.close()"
class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</script>
</div>
</div>
<div class="container" ng-show="Tab == 'GC'">
<div ng-controller="GCController">
<table class="table table-striped table-condensed table-bordered">
<thead>
<th>
<a href="" ng-click="reverse = predicate == 'StartTime' ? !reverse : false; predicate = 'StartTime';">Start Time</a>
</th>
<th>
<a href="" ng-click="reverse = predicate == 'Run' ? !reverse : false; predicate = 'Run';">Run</a>
</th>
<th>Full</th>
<th>
<a href="" ng-click="reverse = predicate == 'Time' ? !reverse : false; predicate = 'Time';">Time</a>
</th>
<th>
Nursery:
<span class="text-danger" tooltip-placement="bottom" tooltip="Bytes retained in the nursery">Retained</span> /
<span class="text-warning" tooltip-placement="bottom" tooltip="Bytes promoted to gen2 and now available in nursery">Promoted</span> /
<span class="text-success" tooltip-placement="bottom" tooltip="Bytes released and now availabe in nursery">Freed</span>
</th>
</thead>
<tbody>
<tr ng-repeat="gc in GCs | orderBy:predicate:reverse">
<td>{{gc.StartTime}}ms</td>
<td><strong>{{gc.Run}}</strong></td>
<td>
<span class="text-success" ng-show="gc.Full">
<span class="glyphicon glyphicon-star"></span>
</span>
</td>
<td>
<div class="pull-left" style="width: 210px">
<div class="progress" style="width: 200px">
<div class="progress-bar" role="progressbar" style="width: {{gc.TimePercent}}%;">
</div>
</div>
</div>
<div>
{{gc.Time}}ms
</div>
</td>
<td>
<div class="pull-left" style="width: 210px">
<div class="progress" style="width: 200px">
<div class="progress-bar progress-bar-danger" style="width: {{gc.RetainedPercent}}%">
</div>
<div class="progress-bar progress-bar-warning" style="width: {{gc.PromotedPercent}}%">
</div>
<div class="progress-bar progress-bar-success" style="width: {{gc.ClearedPercent}}%">
</div>
</div>
</div>
<div>
{{gc.RetainedKilobytes}}KB /
{{gc.PromotedKilobytes}}KB /
{{gc.ClearedKilobytes}}KB ...
<small>{{gc.Gen2Roots}} gen2 roots</small>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="container" ng-show="Tab == 'OSR/Deopt'">
<div ng-controller="OSRDeoptController">
<h3>OSR</h3>
<p>On Stack Replacement detects routines containing hot loops that are
being interpreted, and replaces them with specialized or JIT-compiled
code.</p>
<table class="table table-striped table-condensed table-bordered" ng-show="OSRs.length > 0">
<thead>
<th>
Routine
</th>
<th>On Stack Replacements</th>
</thead>
<tbody>
<tr ng-repeat="osr in OSRs | orderBy:predicate:reverse">
<td>
<strong>{{osr.Name}}</strong><br />
<span class="text-muted">{{osr.File}}:{{osr.Line}}</span>
</td>
<td>
<div class="pull-left" style="width: 310px">
<div class="progress" style="width: 300px">
<div class="progress-bar" role="progressbar" style="width: {{osr.Percent}}%;">
</div>
</div>
</div>
<div>
{{osr.Count}}
</div>
</td>
</tr>
</tbody>
</table>
<p ng-show="OSRs.length == 0">
<em>No OSR was performed during this profile.</em>
</p>
<h3>Local Deoptimization</h3>
<p>Local deoptimization happens when a guard in specialized or JIT-compiled
code fails. Since the code was produced assuming the guard would hold,
the VM falls back to running the safe, but slower, interpreted code.</p>
<table class="table table-striped table-condensed table-bordered" ng-show="DeoptOnes.length > 0">
<thead>
<th>
Routine
</th>
<th>Deoptimizations</th>
</thead>
<tbody>
<tr ng-repeat="deopt in DeoptOnes | orderBy:predicate:reverse">
<td>
<strong>{{deopt.Name}}</strong><br />
<span class="text-muted">{{deopt.File}}:{{deopt.Line}}</span>
</td>
<td>
<div class="pull-left" style="width: 310px">
<div class="progress" style="width: 300px">
<div class="progress-bar" role="progressbar" style="width: {{deopt.Percent}}%;">
</div>
</div>
</div>
<div>
{{deopt.Count}}
</div>
</td>
</tr>
</tbody>
</table>
<p ng-show="DeoptOnes.length == 0">
<em>No local deoptimizations occurred during this profile.</em>
</p>
<h3>Global Deoptimization</h3>
<p>Global deoptimization happens when an event occurs that renders
all currently type-specialized or JIT-compiled code on the call
stack potentially invalid. Mixins - changing the type of an object
in place - are a common reason.</p>
<table class="table table-striped table-condensed table-bordered" ng-show="DeoptAlls.length > 0">
<thead>
<th>
Routine
</th>
<th>Deoptimizations</th>
</thead>
<tbody>
<tr ng-repeat="deopt in DeoptAlls | orderBy:predicate:reverse">
<td>
<strong>{{deopt.Name}}</strong><br />
<span class="text-muted">{{deopt.File}}:{{deopt.Line}}</span>
</td>
<td>
<div class="pull-left" style="width: 310px">
<div class="progress" style="width: 300px">
<div class="progress-bar" role="progressbar" style="width: {{deopt.Percent}}%;">
</div>
</div>
</div>
<div>
{{deopt.Count}}
</div>
</td>
</tr>
</tbody>
</table>
<p ng-show="DeoptAlls.length == 0">
<em>No global deoptimizations occurred during this profile.</em>
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.7/angular.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular-ui-bootstrap/2.2.0/ui-bootstrap-tpls.js"></script>
<script>
var rawData = JSON.parse('[{"99":"PseudoStash","98":{"name":"new","line":15,"file":"SETTING::src/core.c/PseudoStash.pm6"},"97":{"name":"pun","line":2293,"file":"gen/moar/Metamodel.nqp"},"96":"Buf[uint8]","95":{"name":"slurp-PIO","line":574,"file":"SETTING::src/core.c/IO/Path.pm6"},"94":"BOOTIO","93":{"name":"slurp-path-bin","line":597,"file":"SETTING::src/core.c/IO/Path.pm6"},"929":{"name":"gist","line":14,"file":"SETTING::src/core.c/Bool.pm6"},"928":{"name":"gist","line":4,"file":"SETTING::src/core.c/Bool.pm6"},"927":{"name":"WRITE","line":624,"file":"SETTING::src/core.c/IO/Handle.pm6"},"926":"utf8","925":{"name":"encode-chars","line":22,"file":"SETTING::src/core.c/Encoding/Encoder/Builtin.pm6"},"924":{"name":"print","line":667,"file":"SETTING::src/core.c/IO/Handle.pm6"},"923":{"name":"print","line":675,"file":"SETTING::src/core.c/Mu.pm6"},"922":{"name":"nl-out","line":4,"file":"SETTING::src/core.c/IO/Handle.pm6"},"921":{"name":"gist","line":811,"file":"SETTING::src/core.c/Str.pm6"},"920":{"name":"gist","line":780,"file":"SETTING::src/core.c/Mu.pm6"},"92":{"name":"decontrv","line":4164,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"919":{"name":"say","line":35,"file":"SETTING::src/core.c/io_operators.pm6"},"918":{"name":"say","line":30,"file":"SETTING::src/core.c/io_operators.pm6"},"917":{"name":"<unit>","line":1,"file":"code.rakuplay-1608998519.raku"},"916":{"name":"<unit-outer>","line":1,"file":"code.rakuplay-1608998519.raku"},"915":"ForeignCode","914":{"name":"","line":3778,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"913":{"name":"compunit_mainline","line":822,"file":"gen/moar/stage2/NQPHLL.nqp"},"912":{"name":"moar","line":814,"file":"gen/moar/stage2/NQPHLL.nqp"},"911":{"name":"<dependencies+deserialize>","line":-1,"file":""},"910":{"name":"bytecode","line":7452,"file":"gen/moar/stage2/QAST.nqp"},"91":"StrLexRef","909":{"name":"write_annotations","line":7334,"file":"gen/moar/stage2/QAST.nqp"},"908":{"name":"write_serialized_data","line":7298,"file":"gen/moar/stage2/QAST.nqp"},"907":{"name":"strings","line":7072,"file":"gen/moar/stage2/QAST.nqp"},"906":{"name":"write_string_heap","line":7295,"file":"gen/moar/stage2/QAST.nqp"},"905":{"name":"bytecode","line":7017,"file":"gen/moar/stage2/QAST.nqp"},"904":{"name":"write_callsites","line":7292,"file":"gen/moar/stage2/QAST.nqp"},"903":{"name":"code_obj_sc_idx","line":1117,"file":"gen/moar/stage2/MASTNodes.nqp"},"902":{"name":"code_obj_sc_dep_idx","line":1114,"file":"gen/moar/stage2/MASTNodes.nqp"},"901":{"name":"type_to_local_type","line":6871,"file":"gen/moar/stage2/QAST.nqp"},"900":{"name":"flags","line":1111,"file":"gen/moar/stage2/MASTNodes.nqp"},"90":{"name":"canonpath","line":3,"file":"SETTING::src/core.c/IO/Spec/Unix.pm6"},"9":{"name":"","line":2628,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"899":{"name":"num-annotations","line":1120,"file":"gen/moar/stage2/MASTNodes.nqp"},"898":{"name":"annotations-offset","line":1098,"file":"gen/moar/stage2/MASTNodes.nqp"},"897":{"name":"outer","line":1028,"file":"gen/moar/stage2/MASTNodes.nqp"},"896":{"name":"name-idx","line":1093,"file":"gen/moar/stage2/MASTNodes.nqp"},"895":{"name":"cuuid-idx","line":1092,"file":"gen/moar/stage2/MASTNodes.nqp"},"894":{"name":"bytecode-length","line":1095,"file":"gen/moar/stage2/MASTNodes.nqp"},"893":{"name":"bytecode-offset","line":1096,"file":"gen/moar/stage2/MASTNodes.nqp"},"892":{"name":"debug_map_idxs","line":1013,"file":"gen/moar/stage2/MASTNodes.nqp"},"891":{"name":"handlers","line":1121,"file":"gen/moar/stage2/MASTNodes.nqp"},"890":{"name":"lexical-name-idxs","line":1107,"file":"gen/moar/stage2/MASTNodes.nqp"},"89":{"name":"of","line":1127,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"889":{"name":"write_frame","line":7216,"file":"gen/moar/stage2/QAST.nqp"},"888":{"name":"write_extops","line":7318,"file":"gen/moar/stage2/QAST.nqp"},"887":{"name":"write_sc_deps_table","line":7313,"file":"gen/moar/stage2/QAST.nqp"},"886":{"name":"align","line":7337,"file":"gen/moar/stage2/QAST.nqp"},"885":{"name":"main_frame","line":279,"file":"gen/moar/stage2/MASTNodes.nqp"},"884":{"name":"elems","line":7069,"file":"gen/moar/stage2/QAST.nqp"},"883":{"name":"elems","line":7009,"file":"gen/moar/stage2/QAST.nqp"},"882":{"name":"write_s","line":62,"file":"gen/moar/stage2/MASTNodes.nqp"},"881":{"name":"serialized","line":297,"file":"gen/moar/stage2/MASTNodes.nqp"},"880":{"name":"size","line":7065,"file":"gen/moar/stage2/QAST.nqp"},"88":{"name":"rel2abs","line":259,"file":"SETTING::src/core.c/IO/Spec/Unix.pm6"},"879":{"name":"size","line":7013,"file":"gen/moar/stage2/QAST.nqp"},"878":{"name":"debug_map","line":1009,"file":"gen/moar/stage2/MASTNodes.nqp"},"877":{"name":"static_lex_values","line":1108,"file":"gen/moar/stage2/MASTNodes.nqp"},"876":{"name":"lexical_types","line":1104,"file":"gen/moar/stage2/MASTNodes.nqp"},"875":{"name":"size","line":1122,"file":"gen/moar/stage2/MASTNodes.nqp"},"874":{"name":"align_section","line":7081,"file":"gen/moar/stage2/QAST.nqp"},"873":{"name":"write_header","line":7126,"file":"gen/moar/stage2/QAST.nqp"},"872":{"name":"set-bytecode-offset","line":1100,"file":"gen/moar/stage2/MASTNodes.nqp"},"871":{"name":"collect_bytecode","line":7286,"file":"gen/moar/stage2/QAST.nqp"},"870":{"name":"assemble","line":7364,"file":"gen/moar/stage2/QAST.nqp"},"87":{"name":"absolute","line":216,"file":"SETTING::src/core.c/IO/Path.pm6"},"869":{"name":"write_buf","line":86,"file":"gen/moar/stage2/MASTNodes.nqp"},"868":{"name":"annotations","line":1097,"file":"gen/moar/stage2/MASTNodes.nqp"},"867":{"name":"set-annotations-offset","line":1099,"file":"gen/moar/stage2/MASTNodes.nqp"},"866":{"name":"prepare","line":954,"file":"gen/moar/stage2/MASTNodes.nqp"},"865":{"name":"collect_extop_names","line":7307,"file":"gen/moar/stage2/QAST.nqp"},"864":{"name":"add-string","line":7120,"file":"gen/moar/stage2/QAST.nqp"},"863":{"name":"collect_sc_deps","line":7301,"file":"gen/moar/stage2/QAST.nqp"},"862":{"name":"prepare","line":7107,"file":"gen/moar/stage2/QAST.nqp"},"861":{"name":"add-frame","line":7123,"file":"gen/moar/stage2/QAST.nqp"},"860":{"name":"writer","line":253,"file":"gen/moar/stage2/MASTNodes.nqp"},"86":{"name":"absolute","line":215,"file":"SETTING::src/core.c/IO/Path.pm6"},"859":{"name":"assemble","line":7468,"file":"gen/moar/stage2/QAST.nqp"},"858":{"name":"assemble_and_load","line":7479,"file":"gen/moar/stage2/QAST.nqp"},"857":{"name":"mbc","line":799,"file":"gen/moar/stage2/NQPHLL.nqp"},"856":{"name":"mainline_frame","line":273,"file":"gen/moar/stage2/MASTNodes.nqp"},"855":{"name":"main","line":1062,"file":"gen/moar/stage2/QASTNode.nqp"},"854":{"name":"load_frame","line":285,"file":"gen/moar/stage2/MASTNodes.nqp"},"853":{"name":"deserialize_frame","line":291,"file":"gen/moar/stage2/MASTNodes.nqp"},"852":{"name":"default","line":629,"file":"gen/moar/stage2/QASTNode.nqp"},"851":{"name":"","line":6526,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/nqp/lib/MAST/Ops.nqp"},"850":{"name":"","line":6559,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/nqp/lib/MAST/Ops.nqp"},"85":{"name":"slurp","line":621,"file":"SETTING::src/core.c/IO/Path.pm6"},"849":{"name":"","line":6553,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/nqp/lib/MAST/Ops.nqp"},"848":{"name":"","line":8076,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/nqp/lib/MAST/Ops.nqp"},"847":{"name":"","line":7394,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/nqp/lib/MAST/Ops.nqp"},"846":{"name":"get_frame_index","line":7436,"file":"gen/moar/stage2/QAST.nqp"},"845":{"name":"writer","line":1029,"file":"gen/moar/stage2/MASTNodes.nqp"},"844":{"name":"","line":6539,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/nqp/lib/MAST/Ops.nqp"},"843":{"name":"value","line":496,"file":"gen/moar/stage2/QASTNode.nqp"},"842":{"name":"compile_node","line":6738,"file":"gen/moar/stage2/QAST.nqp"},"841":{"name":"clone_inner","line":5031,"file":"gen/moar/stage2/QAST.nqp"},"840":{"name":"capture_inner","line":5028,"file":"gen/moar/stage2/QAST.nqp"},"84":{"name":"slurp","line":620,"file":"SETTING::src/core.c/IO/Path.pm6"},"839":{"name":"add_local_debug_name","line":1005,"file":"gen/moar/stage2/MASTNodes.nqp"},"838":{"name":"local_debug_map","line":985,"file":"gen/moar/stage2/QASTNode.nqp"},"837":{"name":"","line":9527,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/nqp/lib/MAST/Ops.nqp"},"836":{"name":"","line":6399,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/nqp/lib/MAST/Ops.nqp"},"835":{"name":"new_with_operand_array","line":439,"file":"gen/moar/stage2/MASTNodes.nqp"},"834":{"name":"push_op","line":4709,"file":"gen/moar/stage2/QAST.nqp"},"833":{"name":"params","line":5013,"file":"gen/moar/stage2/QAST.nqp"},"832":{"name":"custom_args","line":920,"file":"gen/moar/stage2/QASTNode.nqp"},"831":{"name":"contvar_locals","line":5047,"file":"gen/moar/stage2/QAST.nqp"},"830":{"name":"cloned_inners","line":5045,"file":"gen/moar/stage2/QAST.nqp"},"83":{"name":"slurp","line":129,"file":"SETTING::src/core.c/io_operators.pm6"},"829":{"name":"captured_inners","line":5044,"file":"gen/moar/stage2/QAST.nqp"},"828":{"name":"","line":5774,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/nqp/lib/MAST/Ops.nqp"},"827":{"name":"return_kind","line":4981,"file":"gen/moar/stage2/QAST.nqp"},"826":{"name":"type_to_local_type","line":113,"file":"gen/moar/stage2/MASTNodes.nqp"},"825":{"name":"compile_operand","line":1193,"file":"gen/moar/stage2/MASTNodes.nqp"},"824":{"name":"write_uint16","line":80,"file":"gen/moar/stage2/MASTNodes.nqp"},"823":{"name":"get_callsite_id","line":6903,"file":"gen/moar/stage2/QAST.nqp"},"822":{"name":"sanity_check","line":597,"file":"gen/moar/stage2/MASTNodes.nqp"},"821":{"name":"new","line":482,"file":"gen/moar/stage2/MASTNodes.nqp"},"820":{"name":"new","line":350,"file":"gen/moar/stage2/MASTNodes.nqp"},"82":{"name":"Str","line":179,"file":"SETTING::src/core.c/IO/Path.pm6"},"819":{"name":"","line":9102,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/nqp/lib/MAST/Ops.nqp"},"818":{"name":"","line":7283,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/nqp/lib/MAST/Ops.nqp"},"817":{"name":"fresh_i","line":4805,"file":"gen/moar/stage2/QAST.nqp"},"816":{"name":"","line":8400,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/nqp/lib/MAST/Ops.nqp"},"815":{"name":"compile_node","line":6697,"file":"gen/moar/stage2/QAST.nqp"},"814":{"name":"","line":9815,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/nqp/lib/MAST/Ops.nqp"},"813":{"name":"alternative","line":761,"file":"gen/moar/stage2/QASTNode.nqp"},"812":{"name":"supports","line":757,"file":"gen/moar/stage2/QASTNode.nqp"},"811":{"name":"compile_node","line":6179,"file":"gen/moar/stage2/QAST.nqp"},"810":"QAST::VM","81":{"name":"assign-scalar-no-whence-no-typecheck","line":4404,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"809":{"name":"new","line":750,"file":"gen/moar/stage2/QASTNode.nqp"},"808":{"name":"","line":247,"file":"gen/moar/Ops.nqp"},"807":{"name":"want","line":5384,"file":"gen/moar/stage2/QAST.nqp"},"806":{"name":"compile_with_stmt_temps","line":6103,"file":"gen/moar/stage2/QAST.nqp"},"805":{"name":"compile_node","line":6091,"file":"gen/moar/stage2/QAST.nqp"},"804":{"name":"compile_node","line":6756,"file":"gen/moar/stage2/QAST.nqp"},"803":{"name":"","line":5564,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/nqp/lib/MAST/Ops.nqp"},"802":{"name":"add-label","line":1152,"file":"gen/moar/stage2/MASTNodes.nqp"},"801":{"name":"write_buf_at","line":89,"file":"gen/moar/stage2/MASTNodes.nqp"},"800":{"name":"annotations-end","line":810,"file":"gen/moar/stage2/MASTNodes.nqp"},"80":{"name":"","line":4456,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"8":"CallCapture","799":{"name":"read_uint32_at","line":74,"file":"gen/moar/stage2/MASTNodes.nqp"},"798":{"name":"insert_bytecode","line":842,"file":"gen/moar/stage2/MASTNodes.nqp"},"797":{"name":"label-fixups","line":1143,"file":"gen/moar/stage2/MASTNodes.nqp"},"796":{"name":"labels","line":1142,"file":"gen/moar/stage2/MASTNodes.nqp"},"795":{"name":"compile_label","line":1177,"file":"gen/moar/stage2/MASTNodes.nqp"},"794":{"name":"","line":5571,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/nqp/lib/MAST/Ops.nqp"},"793":{"name":"end-annotations","line":814,"file":"gen/moar/stage2/MASTNodes.nqp"},"792":{"name":"handlers","line":813,"file":"gen/moar/stage2/MASTNodes.nqp"},"791":{"name":"annotations-offset","line":809,"file":"gen/moar/stage2/MASTNodes.nqp"},"790":{"name":"labels","line":812,"file":"gen/moar/stage2/MASTNodes.nqp"},"79":{"name":"ASSIGN-KEY","line":125,"file":"SETTING::src/core.c/Hash.pm6"},"789":{"name":"label-fixups","line":811,"file":"gen/moar/stage2/MASTNodes.nqp"},"788":{"name":"bytecode","line":808,"file":"gen/moar/stage2/MASTNodes.nqp"},"787":{"name":"end_subbuffer","line":830,"file":"gen/moar/stage2/MASTNodes.nqp"},"786":{"name":"start_subbuffer","line":817,"file":"gen/moar/stage2/MASTNodes.nqp"},"785":{"name":"local_types","line":1101,"file":"gen/moar/stage2/MASTNodes.nqp"},"784":{"name":"isa","line":1310,"file":"gen/moar/stage2/nqpmo.nqp"},"783":{"name":"isa","line":721,"file":"gen/moar/stage2/NQPCORE.setting"},"782":{"name":"consume-all-chars","line":809,"file":"gen/moar/stage2/NQPCORE.setting"},"781":{"name":"add-bytes","line":800,"file":"gen/moar/stage2/NQPCORE.setting"},"780":{"name":"get_callsite_id_from_args","line":6954,"file":"gen/moar/stage2/QAST.nqp"},"78":{"name":"ASSIGN-KEY","line":420,"file":"SETTING::src/core.c/Any.pm6"},"779":{"name":"callsites","line":1140,"file":"gen/moar/stage2/MASTNodes.nqp"},"778":{"name":"","line":7237,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/nqp/lib/MAST/Ops.nqp"},"777":{"name":"fresh_o","line":4808,"file":"gen/moar/stage2/QAST.nqp"},"776":{"name":"arrange_args","line":2876,"file":"gen/moar/stage2/QAST.nqp"},"775":{"name":"","line":3043,"file":"gen/moar/stage2/QAST.nqp"},"774":{"name":"","line":7261,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/nqp/lib/MAST/Ops.nqp"},"773":{"name":"","line":8286,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/nqp/lib/MAST/Ops.nqp"},"772":{"name":"has_compile_time_value","line":208,"file":"gen/moar/stage2/QASTNode.nqp"},"771":{"name":"","line":7223,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/nqp/lib/MAST/Ops.nqp"},"770":{"name":"needs_cond_passed","line":2127,"file":"gen/moar/stage2/QAST.nqp"},"77":{"name":"postcircumfix:<{ }>","line":9,"file":"SETTING::src/core.c/hash_slice.pm6"},"769":{"name":"keep-label","line":1148,"file":"gen/moar/stage2/MASTNodes.nqp"},"768":"MAST::Label","767":{"name":"new","line":416,"file":"gen/moar/stage2/MASTNodes.nqp"},"766":{"name":"unique","line":5064,"file":"gen/moar/stage2/QAST.nqp"},"765":{"name":"","line":2133,"file":"gen/moar/stage2/QAST.nqp"},"764":{"name":"","line":5453,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/nqp/lib/MAST/Ops.nqp"},"763":{"name":"","line":5725,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/nqp/lib/MAST/Ops.nqp"},"762":{"name":"lexical","line":5003,"file":"gen/moar/stage2/QAST.nqp"},"761":{"name":"","line":9251,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/nqp/lib/MAST/Ops.nqp"},"760":{"name":"is_var","line":4977,"file":"gen/moar/stage2/QAST.nqp"},"76":{"name":"postcircumfix:<{ }>","line":3,"file":"SETTING::src/core.c/hash_slice.pm6"},"759":{"name":"release_register","line":4834,"file":"gen/moar/stage2/QAST.nqp"},"758":{"name":"","line":-1,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/nqp/lib/QAST.moarvm"},"757":{"name":"bytecode","line":1094,"file":"gen/moar/stage2/MASTNodes.nqp"},"756":{"name":"","line":5446,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/nqp/lib/MAST/Ops.nqp"},"755":{"name":"new","line":435,"file":"gen/moar/stage2/MASTNodes.nqp"},"754":{"name":"fresh_s","line":4807,"file":"gen/moar/stage2/QAST.nqp"},"753":{"name":"const_s","line":6726,"file":"gen/moar/stage2/QAST.nqp"},"752":{"name":"value","line":469,"file":"gen/moar/stage2/QASTNode.nqp"},"751":{"name":"compile_node","line":6734,"file":"gen/moar/stage2/QAST.nqp"},"750":{"name":"as_mast_clear_bindval","line":6659,"file":"gen/moar/stage2/QAST.nqp"},"75":{"name":"nominal","line":137,"file":"gen/moar/Metamodel.nqp"},"749":{"name":"local_kind","line":5008,"file":"gen/moar/stage2/QAST.nqp"},"748":{"name":"local","line":5007,"file":"gen/moar/stage2/QAST.nqp"},"747":{"name":"","line":3199,"file":"gen/moar/stage2/QAST.nqp"},"746":{"name":"append","line":1470,"file":"gen/moar/stage2/QAST.nqp"},"745":{"name":"result_reg","line":1467,"file":"gen/moar/stage2/QAST.nqp"},"744":{"name":"coercion","line":5133,"file":"gen/moar/stage2/QAST.nqp"},"743":{"name":"add_static_lex_value","line":990,"file":"gen/moar/stage2/MASTNodes.nqp"},"742":{"name":"mast_compunit","line":5066,"file":"gen/moar/stage2/QAST.nqp"},"741":"MAST::Lexical","740":{"name":"new","line":387,"file":"gen/moar/stage2/MASTNodes.nqp"},"74":{"name":"base_type","line":5029,"file":"gen/moar/Metamodel.nqp"},"739":{"name":"register_lexical","line":4922,"file":"gen/moar/stage2/QAST.nqp"},"738":{"name":"add_lexical","line":976,"file":"gen/moar/stage2/MASTNodes.nqp"},"737":{"name":"add_lexical","line":4900,"file":"gen/moar/stage2/QAST.nqp"},"736":{"name":"set_code_object_idxs","line":1052,"file":"gen/moar/stage2/MASTNodes.nqp"},"735":{"name":"sc_idx","line":319,"file":"gen/moar/stage2/MASTNodes.nqp"},"734":{"name":"set_outer","line":1017,"file":"gen/moar/stage2/MASTNodes.nqp"},"733":{"name":"ACCEPTS","line":712,"file":"gen/moar/stage2/NQPCORE.setting"},"732":{"name":"compile_mastop","line":1521,"file":"gen/moar/stage2/QAST.nqp"},"731":{"name":"","line":1781,"file":"gen/moar/stage2/QAST.nqp"},"730":{"name":"","line":2891,"file":"gen/moar/stage2/QAST.nqp"},"73":{"name":"check_instantiated","line":5024,"file":"gen/moar/Metamodel.nqp"},"729":{"name":"compile_op","line":1501,"file":"gen/moar/stage2/QAST.nqp"},"728":{"name":"compile_node","line":6174,"file":"gen/moar/stage2/QAST.nqp"},"727":{"name":"add-string","line":1137,"file":"gen/moar/stage2/MASTNodes.nqp"},"726":{"name":"write_uint32","line":68,"file":"gen/moar/stage2/MASTNodes.nqp"},"725":{"name":"add-annotation","line":1251,"file":"gen/moar/stage2/MASTNodes.nqp"},"724":{"name":"new","line":612,"file":"gen/moar/stage2/MASTNodes.nqp"},"723":{"name":"line_and_column_of","line":2444,"file":"gen/moar/stage2/NQPHLL.nqp"},"722":{"name":"linefileof","line":2504,"file":"gen/moar/stage2/NQPHLL.nqp"},"721":{"name":"compile_annotation","line":6113,"file":"gen/moar/stage2/QAST.nqp"},"720":{"name":"compile_node","line":6082,"file":"gen/moar/stage2/QAST.nqp"},"72":{"name":"definite","line":5034,"file":"gen/moar/Metamodel.nqp"},"719":{"name":"result_kind","line":1468,"file":"gen/moar/stage2/QAST.nqp"},"718":{"name":"coerce","line":5123,"file":"gen/moar/stage2/QAST.nqp"},"717":"MAST::InstructionList","716":{"name":"new","line":1460,"file":"gen/moar/stage2/QAST.nqp"},"715":{"name":"index","line":375,"file":"gen/moar/stage2/MASTNodes.nqp"},"714":"MAST::Local","713":{"name":"new","line":369,"file":"gen/moar/stage2/MASTNodes.nqp"},"712":{"name":"add_local","line":999,"file":"gen/moar/stage2/MASTNodes.nqp"},"711":{"name":"fresh_register","line":4813,"file":"gen/moar/stage2/QAST.nqp"},"710":{"name":"type_to_register_kind","line":6799,"file":"gen/moar/stage2/QAST.nqp"},"71":{"name":"definite","line":146,"file":"gen/moar/Metamodel.nqp"},"709":{"name":"register_local","line":4954,"file":"gen/moar/stage2/QAST.nqp"},"708":{"name":"add_param","line":4887,"file":"gen/moar/stage2/QAST.nqp"},"707":{"name":"compile_var","line":6270,"file":"gen/moar/stage2/QAST.nqp"},"706":{"name":"compile_node","line":6242,"file":"gen/moar/stage2/QAST.nqp"},"705":{"name":"compile_all_the_stmts","line":6125,"file":"gen/moar/stage2/QAST.nqp"},"704":"RegAlloc","703":{"name":"new","line":4796,"file":"gen/moar/stage2/QAST.nqp"},"702":{"name":"","line":5735,"file":"gen/moar/stage2/QAST.nqp"},"701":{"name":"no_inline","line":923,"file":"gen/moar/stage2/QASTNode.nqp"},"700":{"name":"is_thunk","line":922,"file":"gen/moar/stage2/QASTNode.nqp"},"70":{"name":"archetypes","line":4987,"file":"gen/moar/Metamodel.nqp"},"7":"Hash","699":{"name":"has_exit_handler","line":921,"file":"gen/moar/stage2/QASTNode.nqp"},"698":{"name":"BUILD","line":4869,"file":"gen/moar/stage2/QAST.nqp"},"697":"BlockInfo","696":{"name":"new","line":4863,"file":"gen/moar/stage2/QAST.nqp"},"695":{"name":"set_index","line":971,"file":"gen/moar/stage2/MASTNodes.nqp"},"694":{"name":"add_frame","line":257,"file":"gen/moar/stage2/MASTNodes.nqp"},"693":{"name":"BUILD","line":801,"file":"gen/moar/stage2/MASTNodes.nqp"},"692":"SubBuffer","691":{"name":"new","line":796,"file":"gen/moar/stage2/MASTNodes.nqp"},"690":{"name":"write_uint8","line":83,"file":"gen/moar/stage2/MASTNodes.nqp"},"69":{"name":"","line":4321,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"689":{"name":"write_uint32_at","line":77,"file":"gen/moar/stage2/MASTNodes.nqp"},"688":{"name":"add-internal","line":7039,"file":"gen/moar/stage2/QAST.nqp"},"687":{"name":"add","line":7062,"file":"gen/moar/stage2/QAST.nqp"},"686":{"name":"callsites","line":7118,"file":"gen/moar/stage2/QAST.nqp"},"685":{"name":"string-heap","line":7117,"file":"gen/moar/stage2/QAST.nqp"},"684":{"name":"BUILD","line":921,"file":"gen/moar/stage2/MASTNodes.nqp"},"683":"MAST::Frame","682":{"name":"new","line":915,"file":"gen/moar/stage2/MASTNodes.nqp"},"681":{"name":"","line":5686,"file":"gen/moar/stage2/QAST.nqp"},"680":{"name":"compile_node","line":5676,"file":"gen/moar/stage2/QAST.nqp"},"68":{"name":"identity","line":4151,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"679":{"name":"hll","line":267,"file":"gen/moar/stage2/MASTNodes.nqp"},"678":{"name":"compile_node","line":5494,"file":"gen/moar/stage2/QAST.nqp"},"677":{"name":"as_mast","line":5367,"file":"gen/moar/stage2/QAST.nqp"},"676":{"name":"set-compunit","line":7116,"file":"gen/moar/stage2/QAST.nqp"},"675":{"name":"BUILD","line":243,"file":"gen/moar/stage2/MASTNodes.nqp"},"674":{"name":"BUILD","line":7097,"file":"gen/moar/stage2/QAST.nqp"},"673":"MAST::CompUnit","672":"MoarVM::BytecodeWriter","671":{"name":"to_mast","line":5070,"file":"gen/moar/stage2/QAST.nqp"},"670":"MASTCompilerInstance","67":{"name":"decontrv_plugin","line":4183,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"669":{"name":"to_mast","line":6840,"file":"gen/moar/stage2/QAST.nqp"},"668":{"name":"mast","line":795,"file":"gen/moar/stage2/NQPHLL.nqp"},"667":{"name":"finish","line":3095,"file":"gen/moar/stage2/NQPHLL.nqp"},"666":{"name":"","line":2583,"file":"gen/moar/World.nqp"},"665":{"name":"cleanup_tasks","line":454,"file":"gen/moar/World.nqp"},"664":{"name":"cleanup","line":4420,"file":"gen/moar/World.nqp"},"663":{"name":"report","line":393,"file":"gen/moar/Optimizer.nqp"},"662":{"name":"add_local_debug_mapping","line":980,"file":"gen/moar/stage2/QASTNode.nqp"},"661":{"name":"unique","line":242,"file":"gen/moar/stage2/QASTNode.nqp"},"660":{"name":"lexical_vars_to_locals","line":712,"file":"gen/moar/Optimizer.nqp"},"66":{"name":"sink","line":727,"file":"SETTING::src/core.c/List.pm6"},"659":{"name":"LoweredAwayLexical","line":118,"file":"gen/moar/Optimizer.nqp"},"658":{"name":"simplify_takedispatcher","line":703,"file":"gen/moar/Optimizer.nqp"},"657":{"name":"delete_unused_autoslurpy","line":688,"file":"gen/moar/Optimizer.nqp"},"656":{"name":"delete_unused_magicals","line":618,"file":"gen/moar/Optimizer.nqp"},"655":{"name":"pop_block","line":81,"file":"gen/moar/Optimizer.nqp"},"654":{"name":"scopes_in","line":237,"file":"gen/moar/Optimizer.nqp"},"653":{"name":"name","line":105,"file":"gen/moar/stage2/NQPHLL.nqp"},"652":{"name":"backend","line":1781,"file":"gen/moar/stage2/NQPHLL.nqp"},"651":"Num","650":{"name":"Num","line":62,"file":"SETTING::src/core.c/Int.pm6"},"65":{"name":"SET-SELF","line":13,"file":"SETTING::src/core.c/IO/Path.pm6"},"649":{"name":"count","line":101,"file":"SETTING::src/core.c/Signature.pm6"},"648":{"name":"arity","line":97,"file":"SETTING::src/core.c/Signature.pm6"},"647":{"name":"simplify_refs","line":3161,"file":"gen/moar/Optimizer.nqp"},"646":{"name":"call_ct_chosen_multi","line":3125,"file":"gen/moar/Optimizer.nqp"},"645":{"name":"","line":3223,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"644":{"name":"","line":2989,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"643":{"name":"trial_bind","line":982,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"642":{"name":"trial_bind","line":390,"file":"gen/moar/Ops.nqp"},"641":{"name":"signature","line":21,"file":"SETTING::src/core.c/Code.pm6"},"640":{"name":"has_compile_time_value","line":551,"file":"gen/moar/stage2/QASTNode.nqp"},"64":{"name":"Str","line":61,"file":"SETTING::src/core.c/Str.pm6"},"639":{"name":"Mu","line":109,"file":"gen/moar/Optimizer.nqp"},"638":{"name":"named","line":164,"file":"gen/moar/stage2/QASTNode.nqp"},"637":{"name":"flat","line":174,"file":"gen/moar/stage2/QASTNode.nqp"},"636":{"name":"analyze_args_for_ct_call","line":2727,"file":"gen/moar/Optimizer.nqp"},"635":{"name":"onlystar","line":22,"file":"SETTING::src/core.c/Routine.pm6"},"634":{"name":"","line":2237,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"633":{"name":"optimize_call","line":1899,"file":"gen/moar/Optimizer.nqp"},"632":{"name":"op_eq_core","line":2350,"file":"gen/moar/Optimizer.nqp"},"631":{"name":"visit_want","line":2595,"file":"gen/moar/Optimizer.nqp"},"630":{"name":"resultchild","line":851,"file":"gen/moar/stage2/QASTNode.nqp"},"63":{"name":"Str","line":648,"file":"SETTING::src/core.c/Mu.pm6"},"629":{"name":"AST","line":117,"file":"gen/moar/Optimizer.nqp"},"628":{"name":"Regex","line":112,"file":"gen/moar/Optimizer.nqp"},"627":{"name":"PseudoStash","line":113,"file":"gen/moar/Optimizer.nqp"},"626":{"name":"has_compile_time_value","line":9,"file":"gen/moar/stage2/QASTNode.nqp"},"625":{"name":"register_getlexouter_usage","line":509,"file":"gen/moar/Optimizer.nqp"},"624":{"name":"register_call","line":507,"file":"gen/moar/Optimizer.nqp"},"623":{"name":"add_usage","line":491,"file":"gen/moar/Optimizer.nqp"},"622":{"name":"visit_op_children","line":1749,"file":"gen/moar/Optimizer.nqp"},"621":{"name":"is_outer_foldable","line":881,"file":"gen/moar/Optimizer.nqp"},"620":{"name":"optimize","line":953,"file":"gen/moar/Optimizer.nqp"},"62":{"name":"new","line":32,"file":"SETTING::src/core.c/IO/Path.pm6"},"619":{"name":"visit_op","line":1325,"file":"gen/moar/Optimizer.nqp"},"618":{"name":"name","line":611,"file":"gen/moar/stage2/QASTNode.nqp"},"617":{"name":"add_decl","line":471,"file":"gen/moar/Optimizer.nqp"},"616":{"name":"decl","line":619,"file":"gen/moar/stage2/QASTNode.nqp"},"615":{"name":"scope","line":615,"file":"gen/moar/stage2/QASTNode.nqp"},"614":{"name":"visit_var","line":2668,"file":"gen/moar/Optimizer.nqp"},"613":{"name":"resultchild","line":802,"file":"gen/moar/stage2/QASTNode.nqp"},"612":{"name":"visit_children","line":2834,"file":"gen/moar/Optimizer.nqp"},"611":"BlockVarOptimizer","610":{"name":"push_block","line":78,"file":"gen/moar/Optimizer.nqp"},"61":{"name":"","line":33,"file":"SETTING::src/core.c/IO/Path.pm6"},"609":{"name":"visit_block","line":1108,"file":"gen/moar/Optimizer.nqp"},"608":{"name":"UNIT","line":108,"file":"gen/moar/Optimizer.nqp"},"607":{"name":"BUILD","line":315,"file":"gen/moar/Optimizer.nqp"},"606":"Problems","605":{"name":"new","line":310,"file":"gen/moar/Optimizer.nqp"},"604":{"name":"BUILD","line":875,"file":"gen/moar/Optimizer.nqp"},"603":"JunctionOptimizer","602":{"name":"new","line":870,"file":"gen/moar/Optimizer.nqp"},"601":{"name":"find_symbol","line":124,"file":"gen/moar/Optimizer.nqp"},"600":{"name":"force_value","line":222,"file":"gen/moar/Optimizer.nqp"},"60":"Code","6":"BOOTHash","599":{"name":"find_lexical","line":182,"file":"gen/moar/Optimizer.nqp"},"598":{"name":"BUILD","line":53,"file":"gen/moar/Optimizer.nqp"},"597":"Symbols","596":{"name":"new","line":48,"file":"gen/moar/Optimizer.nqp"},"595":{"name":"optimize","line":1071,"file":"gen/moar/Optimizer.nqp"},"594":"Perl6::Optimizer","593":{"name":"optimize","line":122,"file":"gen/moar/Compiler.nqp"},"592":{"name":"ast","line":2309,"file":"gen/moar/stage2/NQPHLL.nqp"},"591":{"name":"syntaxcheck","line":135,"file":"gen/moar/Compiler.nqp"},"590":{"name":"pop_lexpad","line":276,"file":"gen/moar/World.nqp"},"59":{"name":"","line":2028,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"589":{"name":"pop_lexpad","line":873,"file":"gen/moar/World.nqp"},"588":{"name":"annotate_self","line":221,"file":"gen/moar/stage2/QASTNode.nqp"},"587":{"name":"repo_conflict_resolver","line":1075,"file":"gen/moar/stage2/QASTNode.nqp"},"586":{"name":"pre_deserialize","line":1067,"file":"gen/moar/stage2/QASTNode.nqp"},"585":{"name":"is_nested","line":1081,"file":"gen/moar/stage2/QASTNode.nqp"},"584":{"name":"post_deserialize","line":1071,"file":"gen/moar/stage2/QASTNode.nqp"},"583":{"name":"sc","line":1059,"file":"gen/moar/stage2/QASTNode.nqp"},"582":{"name":"compilation_mode","line":1064,"file":"gen/moar/stage2/QASTNode.nqp"},"581":{"name":"code_ref_blocks","line":1078,"file":"gen/moar/stage2/QASTNode.nqp"},"580":{"name":"hll","line":1060,"file":"gen/moar/stage2/QASTNode.nqp"},"58":{"name":"","line":342,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"579":{"name":"load","line":1061,"file":"gen/moar/stage2/QASTNode.nqp"},"578":"QAST::CompUnit","577":{"name":"new","line":1052,"file":"gen/moar/stage2/QASTNode.nqp"},"576":{"name":"fixup_tasks","line":3083,"file":"gen/moar/stage2/NQPHLL.nqp"},"575":{"name":"load_dependency_tasks","line":3078,"file":"gen/moar/stage2/NQPHLL.nqp"},"574":{"name":"code_ref_blocks","line":3073,"file":"gen/moar/stage2/NQPHLL.nqp"},"573":{"name":"sc","line":3064,"file":"gen/moar/stage2/NQPHLL.nqp"},"572":{"name":"blocktype","line":916,"file":"gen/moar/stage2/QASTNode.nqp"},"571":{"name":"CTXSAVE","line":1505,"file":"gen/moar/stage2/NQPHLL.nqp"},"570":{"name":"unshift","line":71,"file":"gen/moar/stage2/QASTNode.nqp"},"57":"Str","569":{"name":"slurpy","line":628,"file":"gen/moar/stage2/QASTNode.nqp"},"568":{"name":"!clear_highwater","line":1819,"file":"gen/moar/stage2/QRegex.nqp"},"567":{"name":"statementlist_with_handlers","line":1841,"file":"gen/moar/Actions.nqp"},"566":{"name":"protos_to_sort","line":430,"file":"gen/moar/World.nqp"},"565":{"name":"sort_protos","line":945,"file":"gen/moar/World.nqp"},"564":{"name":"stub_check","line":421,"file":"gen/moar/World.nqp"},"563":{"name":"assert_stubs_defined","line":932,"file":"gen/moar/World.nqp"},"562":{"name":"add_phasers_handling_code","line":2752,"file":"gen/moar/World.nqp"},"561":{"name":"fixup_tasks","line":2961,"file":"gen/moar/stage2/NQPHLL.nqp"},"560":{"name":"add_fixup_task","line":3054,"file":"gen/moar/stage2/NQPHLL.nqp"},"56":{"name":"","line":1,"file":"SETTING::src/core.c/Env.pm6"},"559":{"name":"set_attribute","line":2855,"file":"gen/moar/World.nqp"},"558":"QAST::BVal","557":{"name":"new","line":489,"file":"gen/moar/stage2/QASTNode.nqp"},"556":{"name":"is_nested","line":3033,"file":"gen/moar/stage2/NQPHLL.nqp"},"555":{"name":"sub_id_to_sc_idx","line":442,"file":"gen/moar/World.nqp"},"554":{"name":"code_ref_blocks","line":2956,"file":"gen/moar/stage2/NQPHLL.nqp"},"553":{"name":"next_code_ref_num","line":2950,"file":"gen/moar/stage2/NQPHLL.nqp"},"552":{"name":"add_root_code_ref","line":3016,"file":"gen/moar/stage2/NQPHLL.nqp"},"551":{"name":"name","line":912,"file":"gen/moar/stage2/QASTNode.nqp"},"550":{"name":"add_cleanup_task","line":450,"file":"gen/moar/World.nqp"},"55":{"name":"language_version","line":79,"file":"gen/moar/Compiler.nqp"},"549":{"name":"sub_id_to_code_object","line":438,"file":"gen/moar/World.nqp"},"548":{"name":"cuid","line":932,"file":"gen/moar/stage2/QASTNode.nqp"},"547":{"name":"code_object","line":926,"file":"gen/moar/stage2/QASTNode.nqp"},"546":{"name":"pop","line":729,"file":"gen/moar/stage2/NQPCORE.setting"},"545":{"name":"pop_code_object","line":408,"file":"gen/moar/World.nqp"},"544":{"name":"finish_code_object","line":2557,"file":"gen/moar/World.nqp"},"543":{"name":"attach_signature","line":2544,"file":"gen/moar/World.nqp"},"542":{"name":"value","line":514,"file":"gen/moar/stage2/QASTNode.nqp"},"541":"Signature","540":{"name":"create_signature","line":2449,"file":"gen/moar/World.nqp"},"54":{"name":"INITIALIZE-DYNAMIC","line":1001,"file":"SETTING::src/core.c/Rakudo/Internals.pm6"},"539":{"name":"comp_unit","line":1296,"file":"gen/moar/Actions.nqp"},"538":{"name":"checks","line":551,"file":"gen/moar/World.nqp"},"537":{"name":"CHECK","line":4412,"file":"gen/moar/World.nqp"},"536":{"name":"compose","line":454,"file":"gen/moar/Metamodel.nqp"},"535":"!EVAL_MARKER","534":"!UNIT_MARKER","533":"Perl6::Metamodel::PackageHOW","532":{"name":"new_type","line":446,"file":"gen/moar/Metamodel.nqp"},"531":{"name":"pkg_create_mo","line":3257,"file":"gen/moar/World.nqp"},"530":{"name":"how","line":1375,"file":"gen/moar/stage2/QRegex.nqp"},"53":"VMString","529":{"name":"add_unit_marker","line":833,"file":"gen/moar/World.nqp"},"528":{"name":"compile_time_value","line":13,"file":"gen/moar/stage2/QASTNode.nqp"},"527":"Array","526":{"name":"new","line":243,"file":"SETTING::src/core.c/Array.pm6"},"525":{"name":"new","line":237,"file":"SETTING::src/core.c/Array.pm6"},"524":{"name":"mop_up_and_check","line":839,"file":"gen/moar/World.nqp"},"523":{"name":"cry_sorrows","line":4502,"file":"gen/moar/Grammar.nqp"},"522":{"name":"hash","line":1141,"file":"gen/moar/stage2/NQPCORE.setting"},"521":{"name":"explain_mystery","line":4442,"file":"gen/moar/Grammar.nqp"},"520":{"name":"install_doc_phaser","line":1428,"file":"gen/moar/Actions.nqp"},"52":{"name":"DYNAMIC","line":33,"file":"SETTING::src/core.c/stubs.pm6"},"519":{"name":"install_doc_phaser","line":-1,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/perl6/lib/Perl6/Grammar.moarvm"},"518":{"name":"final","line":192,"file":"gen/moar/stage2/QASTNode.nqp"},"517":"QAST::Stmt","516":{"name":"new","line":844,"file":"gen/moar/stage2/QASTNode.nqp"},"515":{"name":"sink","line":1119,"file":"gen/moar/Actions.nqp"},"514":{"name":"nosink","line":190,"file":"gen/moar/stage2/QASTNode.nqp"},"513":{"name":"autosink","line":1137,"file":"gen/moar/Actions.nqp"},"512":{"name":"statementlist","line":1483,"file":"gen/moar/Actions.nqp"},"511":{"name":"eat_terminator","line":992,"file":"gen/moar/Grammar.nqp"},"510":{"name":"","line":1599,"file":"gen/moar/Actions.nqp"},"51":"IO::Path","509":{"name":"statement","line":1597,"file":"gen/moar/Actions.nqp"},"508":{"name":"statement_mod_loop","line":-1,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/perl6/lib/Perl6/Grammar.moarvm"},"507":{"name":"statement_mod_cond","line":-1,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/perl6/lib/Perl6/Grammar.moarvm"},"506":{"name":"","line":-1,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/perl6/lib/Perl6/Grammar.moarvm"},"505":{"name":"","line":-1,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/perl6/lib/Perl6/Grammar.moarvm"},"504":{"name":"","line":-1,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/perl6/lib/Perl6/Grammar.moarvm"},"503":"NQPMatch","502":{"name":"ACCEPTS","line":2351,"file":"gen/moar/stage2/QRegex.nqp"},"501":"NQPRegex","500":{"name":"new","line":2332,"file":"gen/moar/stage2/QRegex.nqp"},"50":{"name":"new","line":40,"file":"SETTING::src/core.c/IO/Path.pm6"},"5":{"name":"EVALFILE","line":103,"file":"SETTING::src/core.c/ForeignCode.pm6"},"499":{"name":"add_mystery","line":4393,"file":"gen/moar/Grammar.nqp"},"498":{"name":"name","line":692,"file":"gen/moar/stage2/QASTNode.nqp"},"497":{"name":"WANTALL","line":46,"file":"gen/moar/Actions.nqp"},"496":{"name":"handle_special_call_names","line":10047,"file":"gen/moar/Actions.nqp"},"495":{"name":"istype","line":10400,"file":"gen/moar/Actions.nqp"},"494":{"name":"find_macro_routine","line":6190,"file":"gen/moar/Actions.nqp"},"493":{"name":"attach_adverbs","line":4500,"file":"gen/moar/World.nqp"},"492":{"name":"term:sym<name>","line":6305,"file":"gen/moar/Actions.nqp"},"491":{"name":"args","line":6546,"file":"gen/moar/Actions.nqp"},"490":{"name":"arglist","line":6613,"file":"gen/moar/Actions.nqp"},"49":{"name":"new","line":31,"file":"SETTING::src/core.c/IO/Path.pm6"},"489":{"name":"EXPR","line":7004,"file":"gen/moar/Actions.nqp"},"488":{"name":"!clone_match_at","line":1640,"file":"gen/moar/stage2/QRegex.nqp"},"487":{"name":"infixish","line":3784,"file":"gen/moar/Grammar.nqp"},"486":{"name":"made","line":1158,"file":"gen/moar/stage2/QRegex.nqp"},"485":{"name":"termish","line":1626,"file":"gen/moar/stage2/NQPHLL.nqp"},"484":{"name":"terminator:sym<;>","line":-1,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/perl6/lib/Perl6/Grammar.moarvm"},"483":{"name":"terminator","line":-1,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/perl6/lib/Perl6/Grammar.moarvm"},"482":{"name":"postfixish","line":3825,"file":"gen/moar/Grammar.nqp"},"481":{"name":"term:sym<value>","line":6703,"file":"gen/moar/Actions.nqp"},"480":{"name":"value:sym<quote>","line":8154,"file":"gen/moar/Actions.nqp"},"48":{"name":"IO","line":35,"file":"SETTING::src/core.c/Str.pm6"},"479":{"name":"ast","line":1159,"file":"gen/moar/stage2/QRegex.nqp"},"478":{"name":"quote:sym<dblq>","line":8575,"file":"gen/moar/Actions.nqp"},"477":{"name":"set_braid_from","line":1387,"file":"gen/moar/stage2/QRegex.nqp"},"476":{"name":"make","line":1157,"file":"gen/moar/stage2/QRegex.nqp"},"475":{"name":"shift","line":731,"file":"gen/moar/stage2/NQPCORE.setting"},"474":"QAST::Want","473":{"name":"new","line":544,"file":"gen/moar/stage2/QASTNode.nqp"},"472":{"name":"returns","line":159,"file":"gen/moar/stage2/QASTNode.nqp"},"471":"QAST::WVal","470":{"name":"new","line":507,"file":"gen/moar/stage2/QASTNode.nqp"},"47":"List","469":{"name":"join","line":1073,"file":"gen/moar/stage2/NQPCORE.setting"},"468":{"name":"sorted_keys","line":1150,"file":"gen/moar/stage2/NQPCORE.setting"},"467":{"name":"const_cache","line":446,"file":"gen/moar/World.nqp"},"466":{"name":"add_constant","line":2994,"file":"gen/moar/World.nqp"},"465":{"name":"add_string_constant","line":3087,"file":"gen/moar/World.nqp"},"464":{"name":"nibbler","line":10716,"file":"gen/moar/Actions.nqp"},"463":{"name":"optimize","line":817,"file":"gen/moar/stage2/QRegex.nqp"},"462":{"name":"mergesubstates","line":665,"file":"gen/moar/stage2/QRegex.nqp"},"461":{"name":"NFA","line":571,"file":"gen/moar/stage2/NQPCORE.setting"},"460":{"name":"mergesubrule","line":560,"file":"gen/moar/stage2/QRegex.nqp"},"46":{"name":"","line":3768,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"459":{"name":"addstate","line":84,"file":"gen/moar/stage2/QRegex.nqp"},"458":{"name":"new","line":73,"file":"gen/moar/stage2/QRegex.nqp"},"457":{"name":"cache_add","line":1382,"file":"gen/moar/stage2/nqpmo.nqp"},"456":{"name":"name","line":386,"file":"gen/moar/stage2/NQPCORE.setting"},"455":{"name":"methods","line":1248,"file":"gen/moar/stage2/nqpmo.nqp"},"454":{"name":"!protoregex_table","line":1721,"file":"gen/moar/stage2/QRegex.nqp"},"453":{"name":"","line":1705,"file":"gen/moar/stage2/QRegex.nqp"},"452":{"name":"cache","line":1364,"file":"gen/moar/stage2/nqpmo.nqp"},"451":{"name":"!protoregex_nfa","line":1704,"file":"gen/moar/stage2/QRegex.nqp"},"450":{"name":"escape","line":-1,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/perl6/lib/Perl6/Grammar.moarvm"},"45":{"name":"IO","line":387,"file":"SETTING::src/core.c/Cool.pm6"},"449":{"name":"starter","line":-1,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/perl6/lib/Perl6/Grammar.moarvm"},"448":{"name":"!INTERPOLATE","line":2268,"file":"gen/moar/stage2/QRegex.nqp"},"447":{"name":"stopper","line":-1,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/perl6/lib/Perl6/Grammar.moarvm"},"446":{"name":"do_nibbling","line":5543,"file":"gen/moar/Grammar.nqp"},"445":{"name":"nibbler","line":-1,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/perl6/lib/Perl6/Grammar.moarvm"},"444":{"name":"nibble","line":259,"file":"gen/moar/Grammar.nqp"},"443":{"name":"associative_delegate","line":1646,"file":"gen/moar/stage2/nqpmo.nqp"},"442":{"name":"positional_delegate","line":1642,"file":"gen/moar/stage2/nqpmo.nqp"},"441":{"name":"auto_viv_container","line":1626,"file":"gen/moar/stage2/nqpmo.nqp"},"440":{"name":"box_target","line":1622,"file":"gen/moar/stage2/nqpmo.nqp"},"44":{"name":"name","line":155,"file":"gen/moar/Metamodel.nqp"},"439":{"name":"type","line":1602,"file":"gen/moar/stage2/nqpmo.nqp"},"438":{"name":"name","line":1598,"file":"gen/moar/stage2/nqpmo.nqp"},"437":{"name":"is_array_type","line":788,"file":"gen/moar/stage2/nqpmo.nqp"},"436":{"name":"compose_repr","line":903,"file":"gen/moar/stage2/nqpmo.nqp"},"435":{"name":"BUILDPLAN","line":1220,"file":"gen/moar/stage2/nqpmo.nqp"},"434":{"name":"create_BUILDPLAN","line":1168,"file":"gen/moar/stage2/nqpmo.nqp"},"433":{"name":"find_method","line":1347,"file":"gen/moar/stage2/nqpmo.nqp"},"432":{"name":"publish_boolification_spec","line":1144,"file":"gen/moar/stage2/nqpmo.nqp"},"431":{"name":"reverse","line":1124,"file":"gen/moar/stage2/nqpmo.nqp"},"430":{"name":"publish_method_cache","line":1130,"file":"gen/moar/stage2/nqpmo.nqp"},"43":{"name":"","line":4873,"file":"gen/moar/Metamodel.nqp"},"429":{"name":"role_typecheck_list","line":331,"file":"gen/moar/stage2/nqpmo.nqp"},"428":{"name":"role_typecheck_list","line":1244,"file":"gen/moar/stage2/nqpmo.nqp"},"427":{"name":"mro","line":1236,"file":"gen/moar/stage2/nqpmo.nqp"},"426":{"name":"publish_type_cache","line":1104,"file":"gen/moar/stage2/nqpmo.nqp"},"425":{"name":"compose","line":1650,"file":"gen/moar/stage2/nqpmo.nqp"},"424":{"name":"attributes","line":1288,"file":"gen/moar/stage2/nqpmo.nqp"},"423":{"name":"incorporate_multi_candidates","line":959,"file":"gen/moar/stage2/nqpmo.nqp"},"422":{"name":"parents","line":1232,"file":"gen/moar/stage2/nqpmo.nqp"},"421":{"name":"compute_c3_mro","line":1012,"file":"gen/moar/stage2/nqpmo.nqp"},"420":{"name":"attributes","line":323,"file":"gen/moar/stage2/nqpmo.nqp"},"42":{"name":"coerce","line":4856,"file":"gen/moar/Metamodel.nqp"},"419":{"name":"add_method","line":752,"file":"gen/moar/stage2/nqpmo.nqp"},"418":{"name":"method_table","line":1267,"file":"gen/moar/stage2/nqpmo.nqp"},"417":{"name":"has_method","line":343,"file":"gen/moar/stage2/nqpmo.nqp"},"416":{"name":"methods","line":294,"file":"gen/moar/stage2/nqpmo.nqp"},"415":{"name":"collisions","line":310,"file":"gen/moar/stage2/nqpmo.nqp"},"414":{"name":"apply","line":356,"file":"gen/moar/stage2/nqpmo.nqp"},"413":{"name":"compose","line":270,"file":"gen/moar/stage2/nqpmo.nqp"},"412":{"name":"add_method","line":231,"file":"gen/moar/stage2/nqpmo.nqp"},"411":{"name":"save","line":549,"file":"gen/moar/stage2/QRegex.nqp"},"410":{"name":"addedge","line":93,"file":"gen/moar/stage2/QRegex.nqp"},"41":{"name":"accepts_type","line":4848,"file":"gen/moar/Metamodel.nqp"},"409":{"name":"ord-or-str","line":291,"file":"gen/moar/stage2/QRegex.nqp"},"408":{"name":"subtype","line":381,"file":"gen/moar/stage2/QASTNode.nqp"},"407":{"name":"literal","line":297,"file":"gen/moar/stage2/QRegex.nqp"},"406":"QAST::Regex","405":{"name":"new","line":367,"file":"gen/moar/stage2/QASTNode.nqp"},"404":{"name":"instantiate_generic","line":761,"file":"gen/moar/stage2/QRegex.nqp"},"403":"QRegex::NFA","402":{"name":"from_saved","line":80,"file":"gen/moar/stage2/QRegex.nqp"},"401":"NQPRegex","400":{"name":"clone","line":583,"file":"gen/moar/stage2/NQPCORE.setting"},"40":{"name":"type_check","line":4839,"file":"gen/moar/Metamodel.nqp"},"4":{"name":"<unit>","line":1,"file":"-e"},"399":{"name":"instantiate_generic","line":603,"file":"gen/moar/stage2/NQPCORE.setting"},"398":{"name":"name","line":615,"file":"gen/moar/stage2/NQPCORE.setting"},"397":{"name":"BUILD","line":210,"file":"gen/moar/stage2/nqpmo.nqp"},"396":"NQPConcreteRoleHOW","395":{"name":"new","line":204,"file":"gen/moar/stage2/nqpmo.nqp"},"394":"stop","393":{"name":"new_type","line":226,"file":"gen/moar/stage2/nqpmo.nqp"},"392":{"name":"","line":21,"file":"gen/moar/Grammar.nqp"},"391":{"name":"specialize","line":582,"file":"gen/moar/stage2/nqpmo.nqp"},"390":{"name":"specialize","line":436,"file":"gen/moar/stage2/nqpmo.nqp"},"39":{"name":"parents","line":1169,"file":"gen/moar/Metamodel.nqp"},"389":{"name":"compose","line":854,"file":"gen/moar/stage2/nqpmo.nqp"},"388":{"name":"add_role","line":844,"file":"gen/moar/stage2/nqpmo.nqp"},"387":{"name":"add_parent","line":801,"file":"gen/moar/stage2/nqpmo.nqp"},"386":{"name":"set_is_mixin","line":1396,"file":"gen/moar/stage2/nqpmo.nqp"},"385":{"name":"BUILD","line":719,"file":"gen/moar/stage2/nqpmo.nqp"},"384":"NQPClassHOW","383":{"name":"new","line":713,"file":"gen/moar/stage2/nqpmo.nqp"},"382":"Perl6::QGrammar+{qq}+{stop}","381":{"name":"new_type","line":739,"file":"gen/moar/stage2/nqpmo.nqp"},"380":{"name":"name","line":635,"file":"gen/moar/stage2/nqpmo.nqp"},"38":{"name":"type_check_parents","line":3289,"file":"gen/moar/Metamodel.nqp"},"379":{"name":"name","line":440,"file":"gen/moar/stage2/nqpmo.nqp"},"378":{"name":"flush_cache","line":1371,"file":"gen/moar/stage2/nqpmo.nqp"},"377":{"name":"BUILD","line":426,"file":"gen/moar/stage2/nqpmo.nqp"},"376":"NQPCurriedRoleHOW","375":{"name":"new","line":420,"file":"gen/moar/stage2/nqpmo.nqp"},"374":"stop","373":{"name":"new_type","line":431,"file":"gen/moar/stage2/nqpmo.nqp"},"372":{"name":"curry","line":576,"file":"gen/moar/stage2/nqpmo.nqp"},"371":{"name":"unbalanced","line":60,"file":"gen/moar/Grammar.nqp"},"370":{"name":"","line":1404,"file":"gen/moar/stage2/nqpmo.nqp"},"37":{"name":"!get_nonsignatured_candidate","line":3651,"file":"gen/moar/Metamodel.nqp"},"369":{"name":"mixin","line":1399,"file":"gen/moar/stage2/nqpmo.nqp"},"368":{"name":"apply_tweak","line":5651,"file":"gen/moar/Grammar.nqp"},"367":{"name":"truly","line":5646,"file":"gen/moar/Grammar.nqp"},"366":{"name":"tweak_qq","line":5659,"file":"gen/moar/Grammar.nqp"},"365":"Perl6::QGrammar","364":{"name":"con_lang","line":84,"file":"gen/moar/Grammar.nqp"},"363":{"name":"quote_lang_cache","line":5675,"file":"gen/moar/World.nqp"},"362":{"name":"name","line":1271,"file":"gen/moar/stage2/nqpmo.nqp"},"361":{"name":"lang_key","line":68,"file":"gen/moar/Grammar.nqp"},"360":{"name":"quote_lang","line":67,"file":"gen/moar/Grammar.nqp"},"36":{"name":"pretending_to_be","line":339,"file":"gen/moar/Metamodel.nqp"},"359":{"name":"quote:sym<dblq>","line":-1,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/perl6/lib/Perl6/Grammar.moarvm"},"358":{"name":"quote","line":-1,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/perl6/lib/Perl6/Grammar.moarvm"},"357":{"name":"value:sym<quote>","line":-1,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/perl6/lib/Perl6/Grammar.moarvm"},"356":{"name":"value","line":-1,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/perl6/lib/Perl6/Grammar.moarvm"},"355":{"name":"term:sym<value>","line":-1,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/perl6/lib/Perl6/Grammar.moarvm"},"354":{"name":"stdstopper","line":-1,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/perl6/lib/Perl6/Grammar.moarvm"},"353":{"name":"arglist","line":-1,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/perl6/lib/Perl6/Grammar.moarvm"},"352":{"name":"args","line":-1,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/perl6/lib/Perl6/Grammar.moarvm"},"351":{"name":"is_lexical","line":366,"file":"gen/moar/World.nqp"},"350":{"name":"is_lexical","line":5179,"file":"gen/moar/World.nqp"},"35":{"name":"type_check","line":3579,"file":"gen/moar/Metamodel.nqp"},"349":{"name":"","line":-1,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/perl6/lib/Perl6/World.moarvm"},"348":{"name":"is_pseudo_package","line":4633,"file":"gen/moar/World.nqp"},"347":{"name":"is_pseudo_package","line":4775,"file":"gen/moar/World.nqp"},"346":{"name":"is_name","line":4780,"file":"gen/moar/World.nqp"},"345":{"name":"","line":-1,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/perl6/lib/Perl6/World.moarvm"},"344":{"name":"package","line":1354,"file":"gen/moar/stage2/QRegex.nqp"},"343":{"name":"find_symbol","line":5014,"file":"gen/moar/World.nqp"},"342":{"name":"is_type","line":4805,"file":"gen/moar/World.nqp"},"341":{"name":"components","line":4510,"file":"gen/moar/World.nqp"},"340":{"name":"get_who","line":4607,"file":"gen/moar/World.nqp"},"34":{"name":"is_narrower","line":2310,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"339":{"name":"contains_indirect_lookup","line":4528,"file":"gen/moar/World.nqp"},"338":{"name":"push","line":728,"file":"gen/moar/stage2/NQPCORE.setting"},"337":{"name":"to","line":1148,"file":"gen/moar/stage2/QRegex.nqp"},"336":{"name":"Str","line":1151,"file":"gen/moar/stage2/QRegex.nqp"},"335":{"name":"Bool","line":1128,"file":"gen/moar/stage2/QRegex.nqp"},"334":"LongName","333":{"name":"dissect_longname","line":4688,"file":"gen/moar/World.nqp"},"332":{"name":"","line":-1,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/perl6/lib/Perl6/Grammar.moarvm"},"331":{"name":"name","line":2754,"file":"gen/moar/Actions.nqp"},"330":{"name":"morename","line":592,"file":"gen/moar/Grammar.nqp"},"33":{"name":"target_type","line":4788,"file":"gen/moar/Metamodel.nqp"},"329":{"name":"apostrophe","line":-1,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/perl6/lib/Perl6/Grammar.moarvm"},"328":{"name":"!cursor_pass_quick","line":1598,"file":"gen/moar/stage2/QRegex.nqp"},"327":{"name":"ident","line":2008,"file":"gen/moar/stage2/QRegex.nqp"},"326":{"name":"identifier","line":-1,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/perl6/lib/Perl6/Grammar.moarvm"},"325":{"name":"name","line":-1,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/perl6/lib/Perl6/Grammar.moarvm"},"324":{"name":"longname","line":597,"file":"gen/moar/Grammar.nqp"},"323":{"name":"term:sym<name>","line":3156,"file":"gen/moar/Grammar.nqp"},"322":{"name":"states","line":119,"file":"gen/moar/stage2/QRegex.nqp"},"321":{"name":"run","line":735,"file":"gen/moar/stage2/QRegex.nqp"},"320":{"name":"!protoregex","line":1676,"file":"gen/moar/stage2/QRegex.nqp"},"32":{"name":"constraint_type","line":4792,"file":"gen/moar/Metamodel.nqp"},"319":{"name":"term","line":-1,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/perl6/lib/Perl6/Grammar.moarvm"},"318":{"name":"arg_flat_nok","line":3750,"file":"gen/moar/Grammar.nqp"},"317":{"name":"termish","line":3717,"file":"gen/moar/Grammar.nqp"},"316":{"name":"EXPR","line":1222,"file":"gen/moar/stage2/NQPHLL.nqp"},"315":{"name":"EXPR","line":3760,"file":"gen/moar/Grammar.nqp"},"314":{"name":"stopper","line":-1,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/perl6/lib/Perl6/Grammar.moarvm"},"313":{"name":"","line":-1,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/perl6/lib/Perl6/Grammar.moarvm"},"312":{"name":"before","line":1924,"file":"gen/moar/stage2/QRegex.nqp"},"311":{"name":"statement","line":959,"file":"gen/moar/Grammar.nqp"},"310":{"name":"!cursor_pos","line":1613,"file":"gen/moar/stage2/QRegex.nqp"},"31":{"name":"archetypes","line":4739,"file":"gen/moar/Metamodel.nqp"},"309":{"name":"from","line":1146,"file":"gen/moar/stage2/QRegex.nqp"},"308":"NFAType","307":{"name":"unv","line":-1,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/perl6/lib/Perl6/Grammar.moarvm"},"306":{"name":"shallow_copy","line":902,"file":"gen/moar/Grammar.nqp"},"305":{"name":"slangs","line":1266,"file":"gen/moar/stage2/QRegex.nqp"},"304":{"name":"statementlist","line":892,"file":"gen/moar/Grammar.nqp"},"303":{"name":"traced","line":1280,"file":"gen/moar/stage2/nqpmo.nqp"},"302":{"name":"set_actions","line":1347,"file":"gen/moar/stage2/QRegex.nqp"},"301":{"name":"slang_actions","line":1274,"file":"gen/moar/stage2/QRegex.nqp"},"300":{"name":"!clone","line":1103,"file":"gen/moar/stage2/QRegex.nqp"},"30":{"name":"coercive","line":145,"file":"gen/moar/Metamodel.nqp"},"3":"BOOTArray","299":{"name":"braid","line":1386,"file":"gen/moar/stage2/QRegex.nqp"},"298":{"name":"clone_braid_from","line":1388,"file":"gen/moar/stage2/QRegex.nqp"},"297":{"name":"!shared","line":1672,"file":"gen/moar/stage2/QRegex.nqp"},"296":{"name":"orig","line":1144,"file":"gen/moar/stage2/QRegex.nqp"},"295":{"name":"check_PACKAGE_oopsies","line":1303,"file":"gen/moar/stage2/QRegex.nqp"},"294":{"name":"LANG","line":1465,"file":"gen/moar/stage2/NQPHLL.nqp"},"293":{"name":"slang_grammar","line":1270,"file":"gen/moar/stage2/QRegex.nqp"},"292":{"name":"FOREIGN_LANG","line":1342,"file":"gen/moar/Grammar.nqp"},"291":"QAST::Op","290":{"name":"new","line":683,"file":"gen/moar/stage2/QASTNode.nqp"},"29":{"name":"archetypes","line":3920,"file":"gen/moar/Metamodel.nqp"},"289":"QAST::SVal","288":{"name":"new","line":461,"file":"gen/moar/stage2/QASTNode.nqp"},"287":{"name":"op","line":696,"file":"gen/moar/stage2/QASTNode.nqp"},"286":{"name":"list","line":67,"file":"gen/moar/stage2/QASTNode.nqp"},"285":{"name":"sunk","line":189,"file":"gen/moar/stage2/QASTNode.nqp"},"284":{"name":"setflag","line":184,"file":"gen/moar/stage2/QASTNode.nqp"},"283":{"name":"isflag","line":186,"file":"gen/moar/stage2/QASTNode.nqp"},"282":{"name":"wanted","line":188,"file":"gen/moar/stage2/QASTNode.nqp"},"281":{"name":"wanted","line":71,"file":"gen/moar/Actions.nqp"},"280":{"name":"WANTED","line":265,"file":"gen/moar/Actions.nqp"},"28":"BOOTInt","279":{"name":"ann","line":227,"file":"gen/moar/stage2/QASTNode.nqp"},"278":{"name":"cur_lexpad","line":282,"file":"gen/moar/World.nqp"},"277":{"name":"cur_lexpad","line":878,"file":"gen/moar/World.nqp"},"276":{"name":"finishpad","line":1918,"file":"gen/moar/Actions.nqp"},"275":{"name":"finishpad","line":-1,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/perl6/lib/Perl6/Grammar.moarvm"},"274":{"name":"add_load_dependency_task","line":3043,"file":"gen/moar/stage2/NQPHLL.nqp"},"273":{"name":"sc","line":2946,"file":"gen/moar/stage2/NQPHLL.nqp"},"272":{"name":"add_object","line":3007,"file":"gen/moar/stage2/NQPHLL.nqp"},"271":{"name":"add_object_if_no_sc","line":5638,"file":"gen/moar/World.nqp"},"270":{"name":"push_code_object","line":404,"file":"gen/moar/World.nqp"},"27":"BOOTStr","269":{"name":"stub_code_object","line":2534,"file":"gen/moar/World.nqp"},"268":{"name":"push","line":69,"file":"gen/moar/stage2/QASTNode.nqp"},"267":{"name":"value","line":630,"file":"gen/moar/stage2/QASTNode.nqp"},"266":"QAST::Var","265":{"name":"new","line":601,"file":"gen/moar/stage2/QASTNode.nqp"},"264":{"name":"install_lexical_symbol","line":1717,"file":"gen/moar/World.nqp"},"263":{"name":"set_package","line":1360,"file":"gen/moar/stage2/QRegex.nqp"},"262":{"name":"value","line":739,"file":"gen/moar/stage2/NQPCORE.setting"},"261":{"name":"key","line":738,"file":"gen/moar/stage2/NQPCORE.setting"},"260":{"name":"FLATTENABLE_HASH","line":522,"file":"SETTING::src/core.c/Map.pm6"},"26":"BOOTIntArray","259":{"name":"stash_hash","line":5542,"file":"gen/moar/World.nqp"},"258":{"name":"force_value","line":5282,"file":"gen/moar/World.nqp"},"257":{"name":"blocks","line":249,"file":"gen/moar/World.nqp"},"256":{"name":"find_single_symbol","line":4951,"file":"gen/moar/World.nqp"},"255":{"name":"unitstart","line":1472,"file":"gen/moar/Actions.nqp"},"254":{"name":"unitstart","line":-1,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/perl6/lib/Perl6/Grammar.moarvm"},"253":{"name":"comp_unit_stage1","line":711,"file":"gen/moar/World.nqp"},"252":{"name":"!cursor_capture","line":1543,"file":"gen/moar/stage2/QRegex.nqp"},"251":{"name":"symbol","line":945,"file":"gen/moar/stage2/QASTNode.nqp"},"250":{"name":"Str","line":740,"file":"gen/moar/stage2/NQPCORE.setting"},"25":"NQPArrayIter","249":{"name":"SET_BLOCK_OUTER_CTX","line":1531,"file":"gen/moar/stage2/NQPHLL.nqp"},"248":{"name":"lang-version","line":1479,"file":"gen/moar/Actions.nqp"},"247":{"name":"load-lang-ver","line":579,"file":"gen/moar/World.nqp"},"246":{"name":"!cursor_next","line":1617,"file":"gen/moar/stage2/QRegex.nqp"},"245":{"name":"!cursor_push_cstack","line":1555,"file":"gen/moar/stage2/QRegex.nqp"},"244":{"name":"!reduce","line":1653,"file":"gen/moar/stage2/QRegex.nqp"},"243":{"name":"!cursor_pass","line":1587,"file":"gen/moar/stage2/QRegex.nqp"},"242":{"name":"MARKER","line":1437,"file":"gen/moar/stage2/NQPHLL.nqp"},"241":{"name":"run_alt","line":746,"file":"gen/moar/stage2/QRegex.nqp"},"240":{"name":"cache_get","line":1377,"file":"gen/moar/stage2/nqpmo.nqp"},"24":{"name":"","line":2280,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"239":{"name":"!alt","line":1735,"file":"gen/moar/stage2/QRegex.nqp"},"238":{"name":"ww","line":1981,"file":"gen/moar/stage2/QRegex.nqp"},"237":{"name":"!dba","line":1786,"file":"gen/moar/stage2/QRegex.nqp"},"236":{"name":"!fresh_highexpect","line":1809,"file":"gen/moar/stage2/QRegex.nqp"},"235":{"name":"_ws","line":-1,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/perl6/lib/Perl6/Grammar.moarvm"},"234":{"name":"Bool","line":2247,"file":"gen/moar/stage2/QRegex.nqp"},"233":{"name":"pos","line":1147,"file":"gen/moar/stage2/QRegex.nqp"},"232":{"name":"!cursor_start_fail","line":1529,"file":"gen/moar/stage2/QRegex.nqp"},"231":{"name":"MARKED","line":1454,"file":"gen/moar/stage2/NQPHLL.nqp"},"230":{"name":"ws","line":680,"file":"gen/moar/Grammar.nqp"},"23":{"name":"slurp","line":126,"file":"SETTING::src/core.c/io_operators.pm6"},"229":{"name":"lang-version","line":866,"file":"gen/moar/Grammar.nqp"},"228":{"name":"!cursor_fail","line":1605,"file":"gen/moar/stage2/QRegex.nqp"},"227":{"name":"bom","line":-1,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/perl6/lib/Perl6/Grammar.moarvm"},"226":{"name":"annotate","line":217,"file":"gen/moar/stage2/QASTNode.nqp"},"225":"QAST::Block","224":{"name":"new","line":903,"file":"gen/moar/stage2/QASTNode.nqp"},"223":{"name":"node","line":153,"file":"gen/moar/stage2/QASTNode.nqp"},"222":"NQPHashIter","221":{"name":"set","line":142,"file":"gen/moar/stage2/QASTNode.nqp"},"220":"QAST::Stmts","22":{"name":"EVALFILE","line":104,"file":"SETTING::src/core.c/ForeignCode.pm6"},"219":{"name":"new","line":795,"file":"gen/moar/stage2/QASTNode.nqp"},"218":{"name":"create_block","line":253,"file":"gen/moar/World.nqp"},"217":{"name":"push_lexpad","line":268,"file":"gen/moar/World.nqp"},"216":{"name":"context","line":3037,"file":"gen/moar/stage2/NQPHLL.nqp"},"215":{"name":"push_lexpad","line":868,"file":"gen/moar/World.nqp"},"214":{"name":"comp_unit_stage0","line":673,"file":"gen/moar/World.nqp"},"213":{"name":"reset_language_version","line":69,"file":"gen/moar/Compiler.nqp"},"212":{"name":"onlyname","line":524,"file":"gen/moar/stage2/NQPCORE.setting"},"211":{"name":"prepare-hash","line":501,"file":"gen/moar/stage2/NQPCORE.setting"},"210":{"name":"prepare-list","line":480,"file":"gen/moar/stage2/NQPCORE.setting"},"21":"BOOTMultiCache","209":{"name":"has-captures","line":472,"file":"gen/moar/stage2/NQPCORE.setting"},"208":{"name":"CAPS","line":568,"file":"gen/moar/stage2/NQPCORE.setting"},"207":{"name":"MATCH","line":2144,"file":"gen/moar/stage2/QRegex.nqp"},"206":{"name":"!cursor_start","line":1485,"file":"gen/moar/stage2/QRegex.nqp"},"205":{"name":"comp_unit","line":834,"file":"gen/moar/Grammar.nqp"},"204":{"name":"is_precompilation_mode","line":3029,"file":"gen/moar/stage2/NQPHLL.nqp"},"203":{"name":"add_initializations","line":5295,"file":"gen/moar/World.nqp"},"202":{"name":"BUILD","line":519,"file":"gen/moar/World.nqp"},"201":{"name":"BUILD","line":235,"file":"gen/moar/World.nqp"},"200":"SCRef","20":{"name":"add_to_cache","line":2912,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"2":"BOOTCode","199":{"name":"BUILD","line":2933,"file":"gen/moar/stage2/NQPHLL.nqp"},"198":"Perl6CompilationContext","197":{"name":"context_class","line":487,"file":"gen/moar/World.nqp"},"196":{"name":"BUILD","line":2983,"file":"gen/moar/stage2/NQPHLL.nqp"},"195":"Perl6::World","194":{"name":"target","line":1145,"file":"gen/moar/stage2/QRegex.nqp"},"193":{"name":"set_how","line":1378,"file":"gen/moar/stage2/QRegex.nqp"},"192":{"name":"set_pragma","line":1370,"file":"gen/moar/stage2/QRegex.nqp"},"191":{"name":"pragma","line":1367,"file":"gen/moar/stage2/QRegex.nqp"},"190":{"name":"define_slang","line":1278,"file":"gen/moar/stage2/QRegex.nqp"},"19":{"name":"handle_optional","line":607,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"189":{"name":"actions","line":1342,"file":"gen/moar/stage2/QRegex.nqp"},"188":{"name":"TOP","line":493,"file":"gen/moar/Grammar.nqp"},"187":{"name":"!cursor_start_cur","line":1511,"file":"gen/moar/stage2/QRegex.nqp"},"186":"ParseShared","185":"Perl6::Grammar","184":{"name":"!cursor_init","line":1408,"file":"gen/moar/stage2/QRegex.nqp"},"183":"Braid","182":{"name":"!braid_init","line":1095,"file":"gen/moar/stage2/QRegex.nqp"},"181":{"name":"parse","line":2258,"file":"gen/moar/stage2/QRegex.nqp"},"180":{"name":"parseactions","line":1977,"file":"gen/moar/stage2/NQPHLL.nqp"},"18":"int","179":{"name":"parsegrammar","line":1970,"file":"gen/moar/stage2/NQPHLL.nqp"},"178":{"name":"parse","line":2286,"file":"gen/moar/stage2/NQPHLL.nqp"},"177":"NQPDecoder","176":{"name":"new","line":795,"file":"gen/moar/stage2/NQPCORE.setting"},"175":{"name":"new","line":59,"file":"gen/moar/stage2/MASTNodes.nqp"},"174":{"name":"BUILD","line":6895,"file":"gen/moar/stage2/QAST.nqp"},"173":"BOOTStrArray","172":"MAST::Bytecode","171":{"name":"BUILD","line":7028,"file":"gen/moar/stage2/QAST.nqp"},"170":"MoarVM::Callsites","17":{"name":"","line":2012,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"169":"MoarVM::StringHeap","168":{"name":"CREATE","line":627,"file":"gen/moar/stage2/NQPCORE.setting"},"167":{"name":"bless","line":631,"file":"gen/moar/stage2/NQPCORE.setting"},"166":{"name":"new","line":703,"file":"gen/moar/stage2/NQPCORE.setting"},"165":{"name":"start","line":776,"file":"gen/moar/stage2/NQPHLL.nqp"},"164":{"name":"execute_stage","line":2209,"file":"gen/moar/stage2/NQPHLL.nqp"},"163":{"name":"run","line":2249,"file":"gen/moar/stage2/NQPHLL.nqp"},"162":{"name":"","line":2245,"file":"gen/moar/stage2/NQPHLL.nqp"},"161":{"name":"stages","line":1963,"file":"gen/moar/stage2/NQPHLL.nqp"},"160":{"name":"stdin","line":1025,"file":"gen/moar/stage2/NQPCORE.setting"},"16":"Scalar","159":{"name":"stderr","line":1027,"file":"gen/moar/stage2/NQPCORE.setting"},"158":{"name":"compile","line":2222,"file":"gen/moar/stage2/NQPHLL.nqp"},"157":{"name":"FLATTENABLE_HASH","line":946,"file":"SETTING::src/core.c/List.pm6"},"156":{"name":"FLATTENABLE_LIST","line":932,"file":"SETTING::src/core.c/List.pm6"},"155":{"name":"defined","line":112,"file":"SETTING::src/core.c/Mu.pm6"},"154":{"name":"reification-target","line":576,"file":"SETTING::src/core.c/List.pm6"},"153":"List::Reifier","152":"IterationBuffer","151":{"name":"from-slurpy-onearg","line":222,"file":"SETTING::src/core.c/List.pm6"},"150":{"name":"infix:<andthen>","line":344,"file":"SETTING::src/core.c/operators.pm6"},"15":{"name":"bind_one_param","line":207,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"149":{"name":"infix:<andthen>","line":343,"file":"SETTING::src/core.c/operators.pm6"},"148":"Block","147":{"name":"","line":2088,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"146":{"name":"","line":3773,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"145":{"name":"cli-options","line":2531,"file":"gen/moar/stage2/NQPHLL.nqp"},"144":{"name":"default","line":1129,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"143":{"name":"next","line":1160,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"142":{"name":"default","line":1167,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"141":"ContainerDescriptor::BindHashPos","140":{"name":"new","line":1267,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"14":{"name":"bind","line":640,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"139":"ContainerDescriptor::Untyped","138":{"name":"AT_KEY_CONTAINER","line":29,"file":"SETTING::src/core.c/Hash.pm6"},"137":{"name":"AT-KEY","line":33,"file":"SETTING::src/core.c/Hash.pm6"},"136":"CALLERS","135":{"name":"","line":163,"file":"SETTING::src/core.c/PseudoStash.pm6"},"134":{"name":"EXISTS-KEY","line":305,"file":"SETTING::src/core.c/PseudoStash.pm6"},"133":{"name":"postcircumfix:<{ }>","line":21,"file":"SETTING::src/core.c/hash_slice.pm6"},"132":{"name":"role_typecheck_list","line":4153,"file":"gen/moar/Metamodel.nqp"},"131":{"name":"role_typecheck_list","line":4716,"file":"gen/moar/Metamodel.nqp"},"130":{"name":"mro","line":1256,"file":"gen/moar/Metamodel.nqp"},"13":"BOOTContext","129":{"name":"type_check","line":1566,"file":"gen/moar/Metamodel.nqp"},"128":{"name":"sink","line":12,"file":"SETTING::src/core.c/Mu.pm6"},"127":{"name":"defined","line":113,"file":"SETTING::src/core.c/Mu.pm6"},"126":{"name":"defined","line":111,"file":"SETTING::src/core.c/Mu.pm6"},"125":{"name":"NORMALIZE_ENCODING","line":344,"file":"SETTING::src/core.c/Rakudo/Internals.pm6"},"124":{"name":"decode","line":306,"file":"SETTING::src/core.c/Buf.pm6"},"123":{"name":"archetypes","line":3458,"file":"gen/moar/Metamodel.nqp"},"122":{"name":"decode","line":292,"file":"SETTING::src/core.c/Buf.pm6"},"121":{"name":"archetypes","line":4567,"file":"gen/moar/Metamodel.nqp"},"120":{"name":"infix:<eq>","line":3683,"file":"SETTING::src/core.c/Str.pm6"},"12":{"name":"","line":961,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"119":{"name":"infix:<eq>","line":35,"file":"SETTING::src/core.c/Stringy.pm6"},"118":{"name":"Bool","line":105,"file":"SETTING::src/core.c/Mu.pm6"},"117":{"name":"assign-scalar-no-whence","line":4412,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"116":{"name":"EVAL","line":27,"file":"SETTING::src/core.c/ForeignCode.pm6"},"115":{"name":"stash_attr_type","line":15,"file":"gen/moar/Metamodel.nqp"},"114":{"name":"stash_type","line":14,"file":"gen/moar/Metamodel.nqp"},"113":"Stash","112":{"name":"add_stash","line":210,"file":"gen/moar/Metamodel.nqp"},"111":{"name":"set_ver","line":234,"file":"gen/moar/Metamodel.nqp"},"110":{"name":"set_name","line":159,"file":"gen/moar/Metamodel.nqp"},"11":{"name":"is_bindable","line":955,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"109":{"name":"BUILDALLPLAN","line":1224,"file":"gen/moar/stage2/nqpmo.nqp"},"108":{"name":"BUILDALL","line":637,"file":"gen/moar/stage2/NQPCORE.setting"},"107":"Perl6::Metamodel::ModuleHOW","106":{"name":"new","line":479,"file":"gen/moar/Metamodel.nqp"},"105":"CALLER","104":{"name":"new_type","line":483,"file":"gen/moar/Metamodel.nqp"},"103":{"name":"","line":100,"file":"SETTING::src/core.c/PseudoStash.pm6"},"102":{"name":"AT-KEY","line":239,"file":"SETTING::src/core.c/PseudoStash.pm6"},"101":{"name":"AT-KEY","line":399,"file":"SETTING::src/core.c/Any.pm6"},"100":{"name":"postcircumfix:<{ }>","line":6,"file":"SETTING::src/core.c/hash_slice.pm6"},"10":"NQPArray","1":{"name":"<unit-outer>","line":1,"file":"-e"},"0":{"name":"","line":1939,"file":"gen/moar/stage2/NQPHLL.nqp"}},{"total_time":71926,"thread":1,"start_time":0,"spesh_time":24619,"parent":0,"gcs":[],"call_graph":{"inclusive_time":60339,"id":"0","highest_child_id":3407,"first_entry_time":0,"exclusive_time":46,"entries":1,"callees":[{"inclusive_time":60293,"id":"1","highest_child_id":3407,"first_entry_time":45,"exclusive_time":44,"entries":1,"callees":[{"inclusive_time":60249,"id":"4","highest_child_id":3407,"first_entry_time":89,"exclusive_time":58,"entries":1,"callees":[{"inclusive_time":59996,"id":"5","highest_child_id":3382,"first_entry_time":144,"exclusive_time":337,"entries":1,"callees":[{"inclusive_time":682,"id":"9","highest_child_id":11,"first_entry_time":478,"exclusive_time":67,"entries":1,"callees":[{"inclusive_time":611,"id":"11","highest_child_id":10,"first_entry_time":525,"exclusive_time":75,"entries":1,"callees":[{"inclusive_time":535,"id":"12","highest_child_id":10,"first_entry_time":599,"exclusive_time":191,"entries":1,"callees":[{"inclusive_time":344,"id":"14","highest_child_id":10,"first_entry_time":790,"exclusive_time":279,"entries":1,"callees":[{"inclusive_time":63,"id":"15","highest_child_id":9,"first_entry_time":1031,"exclusive_time":58,"entries":3,"callees":[{"inclusive_time":4,"id":"17","highest_child_id":9,"first_entry_time":1057,"exclusive_time":3,"entries":3,"allocations":[{"id":"18","count":3}]}],"allocations":[{"id":"2","count":9},{"id":"16","count":3}]},{"inclusive_time":3,"id":"19","highest_child_id":10,"first_entry_time":1097,"exclusive_time":2,"entries":2}]}],"allocations":[{"id":"13","count":2}]}]},{"inclusive_time":3,"id":"20","highest_child_id":11,"first_entry_time":1156,"exclusive_time":3,"entries":1,"allocations":[{"id":"21","count":1}]}],"allocations":[{"id":"2","count":1},{"id":"10","count":2},{"id":"6","count":1},{"id":"8","count":1}]},{"inclusive_time":58977,"id":"22","highest_child_id":3382,"first_entry_time":1163,"exclusive_time":670,"entries":1,"callees":[{"inclusive_time":7440,"id":"23","highest_child_id":237,"first_entry_time":1192,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":5784,"id":"9","highest_child_id":148,"first_entry_time":1197,"exclusive_time":299,"entries":1,"callees":[{"inclusive_time":1886,"id":"24","highest_child_id":27,"first_entry_time":1446,"exclusive_time":1215,"entries":1,"callees":[{"inclusive_time":2,"id":"29","highest_child_id":16,"first_entry_time":2125,"exclusive_time":1,"entries":1},{"inclusive_time":3,"id":"30","highest_child_id":17,"first_entry_time":2141,"exclusive_time":2,"entries":4},{"inclusive_time":5,"id":"17","highest_child_id":18,"first_entry_time":2147,"exclusive_time":3,"entries":4,"allocations":[{"id":"18","count":4}]},{"inclusive_time":9,"id":"31","highest_child_id":19,"first_entry_time":2192,"exclusive_time":8,"entries":3},{"inclusive_time":1,"id":"32","highest_child_id":20,"first_entry_time":2215,"exclusive_time":0,"entries":3},{"inclusive_time":2,"id":"33","highest_child_id":21,"first_entry_time":2232,"exclusive_time":1,"entries":3},{"inclusive_time":670,"id":"34","highest_child_id":27,"first_entry_time":2484,"exclusive_time":269,"entries":56,"callees":[{"inclusive_time":391,"id":"35","highest_child_id":27,"first_entry_time":2599,"exclusive_time":275,"entries":24,"callees":[{"inclusive_time":7,"id":"36","highest_child_id":24,"first_entry_time":2615,"exclusive_time":0,"entries":24},{"inclusive_time":5,"id":"37","highest_child_id":25,"first_entry_time":2658,"exclusive_time":3,"entries":6},{"inclusive_time":106,"id":"38","highest_child_id":27,"first_entry_time":2804,"exclusive_time":93,"entries":6,"callees":[{"inclusive_time":12,"id":"39","highest_child_id":27,"first_entry_time":2887,"exclusive_time":10,"entries":6}],"allocations":[{"id":"25","count":6}]}],"allocations":[{"id":"25","count":30}]}]}],"allocations":[{"id":"10","count":33},{"id":"25","count":6},{"id":"6","count":16},{"id":"26","count":10},{"id":"27","count":1},{"id":"28","count":8}]},{"inclusive_time":3595,"id":"11","highest_child_id":147,"first_entry_time":3378,"exclusive_time":43,"entries":1,"callees":[{"inclusive_time":3552,"id":"12","highest_child_id":147,"first_entry_time":3420,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":3545,"id":"14","highest_child_id":147,"first_entry_time":3426,"exclusive_time":15,"entries":1,"callees":[{"inclusive_time":3530,"id":"15","highest_child_id":147,"first_entry_time":3434,"exclusive_time":212,"entries":2,"callees":[{"inclusive_time":20,"id":"40","highest_child_id":38,"first_entry_time":3465,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"33","highest_child_id":33,"first_entry_time":3468,"exclusive_time":0,"entries":1},{"inclusive_time":15,"id":"35","highest_child_id":38,"first_entry_time":3471,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":0,"id":"36","highest_child_id":35,"first_entry_time":3472,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"37","highest_child_id":36,"first_entry_time":3477,"exclusive_time":1,"entries":1},{"inclusive_time":5,"id":"38","highest_child_id":38,"first_entry_time":3480,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":2,"id":"39","highest_child_id":38,"first_entry_time":3481,"exclusive_time":2,"entries":1}],"allocations":[{"id":"25","count":1}]}],"allocations":[{"id":"25","count":2}]}]},{"inclusive_time":5,"id":"41","highest_child_id":41,"first_entry_time":3506,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"33","highest_child_id":40,"first_entry_time":3508,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"32","highest_child_id":41,"first_entry_time":3510,"exclusive_time":0,"entries":1}]},{"inclusive_time":2,"id":"17","highest_child_id":42,"first_entry_time":3513,"exclusive_time":2,"entries":2,"allocations":[{"id":"18","count":2}]},{"inclusive_time":3289,"id":"42","highest_child_id":147,"first_entry_time":3658,"exclusive_time":88,"entries":1,"callees":[{"inclusive_time":1,"id":"29","highest_child_id":44,"first_entry_time":3672,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"30","highest_child_id":45,"first_entry_time":3677,"exclusive_time":0,"entries":1},{"inclusive_time":3199,"id":"43","highest_child_id":147,"first_entry_time":3747,"exclusive_time":57,"entries":1,"callees":[{"inclusive_time":7,"id":"44","highest_child_id":47,"first_entry_time":3765,"exclusive_time":6,"entries":1},{"inclusive_time":3135,"id":"45","highest_child_id":147,"first_entry_time":3810,"exclusive_time":48,"entries":1,"callees":[{"inclusive_time":2,"id":"46","highest_child_id":49,"first_entry_time":3824,"exclusive_time":1,"entries":1,"allocations":[{"id":"47","count":1}]},{"inclusive_time":123,"id":"9","highest_child_id":56,"first_entry_time":3831,"exclusive_time":17,"entries":1,"callees":[{"inclusive_time":103,"id":"24","highest_child_id":55,"first_entry_time":3836,"exclusive_time":79,"entries":1,"callees":[{"inclusive_time":1,"id":"29","highest_child_id":52,"first_entry_time":3847,"exclusive_time":0,"entries":3},{"inclusive_time":2,"id":"30","highest_child_id":53,"first_entry_time":3849,"exclusive_time":1,"entries":3},{"inclusive_time":3,"id":"17","highest_child_id":54,"first_entry_time":3853,"exclusive_time":2,"entries":3,"allocations":[{"id":"18","count":3}]},{"inclusive_time":21,"id":"34","highest_child_id":55,"first_entry_time":3889,"exclusive_time":19,"entries":6}],"allocations":[{"id":"10","count":17},{"id":"25","count":4},{"id":"6","count":6},{"id":"26","count":6},{"id":"28","count":3}]},{"inclusive_time":2,"id":"20","highest_child_id":56,"first_entry_time":3951,"exclusive_time":2,"entries":1,"allocations":[{"id":"21","count":1}]}],"allocations":[{"id":"2","count":1},{"id":"10","count":2},{"id":"6","count":1}]},{"inclusive_time":2962,"id":"48","highest_child_id":147,"first_entry_time":3982,"exclusive_time":790,"entries":1,"callees":[{"inclusive_time":2170,"id":"49","highest_child_id":145,"first_entry_time":4770,"exclusive_time":78,"entries":1,"callees":[{"inclusive_time":1,"id":"46","highest_child_id":59,"first_entry_time":4774,"exclusive_time":1,"entries":1,"allocations":[{"id":"47","count":1}]},{"inclusive_time":498,"id":"9","highest_child_id":66,"first_entry_time":4792,"exclusive_time":43,"entries":1,"callees":[{"inclusive_time":452,"id":"24","highest_child_id":65,"first_entry_time":4799,"exclusive_time":346,"entries":1,"callees":[{"inclusive_time":4,"id":"29","highest_child_id":62,"first_entry_time":4926,"exclusive_time":1,"entries":10},{"inclusive_time":6,"id":"30","highest_child_id":63,"first_entry_time":4929,"exclusive_time":2,"entries":10},{"inclusive_time":7,"id":"17","highest_child_id":64,"first_entry_time":4933,"exclusive_time":4,"entries":10,"allocations":[{"id":"18","count":10}]},{"inclusive_time":106,"id":"34","highest_child_id":65,"first_entry_time":5066,"exclusive_time":96,"entries":30}],"allocations":[{"id":"10","count":32},{"id":"25","count":7},{"id":"6","count":12},{"id":"26","count":12},{"id":"27","count":3},{"id":"28","count":6}]},{"inclusive_time":2,"id":"20","highest_child_id":66,"first_entry_time":5283,"exclusive_time":2,"entries":1,"allocations":[{"id":"21","count":1}]}],"allocations":[{"id":"2","count":1},{"id":"10","count":3},{"id":"6","count":2}]},{"inclusive_time":1592,"id":"50","highest_child_id":145,"first_entry_time":5348,"exclusive_time":102,"entries":1,"callees":[{"inclusive_time":1282,"id":"52","highest_child_id":119,"first_entry_time":5420,"exclusive_time":72,"entries":2,"callees":[{"inclusive_time":1209,"id":"54","highest_child_id":119,"first_entry_time":5494,"exclusive_time":67,"entries":1,"callees":[{"inclusive_time":2,"id":"55","highest_child_id":70,"first_entry_time":5527,"exclusive_time":1,"entries":1},{"inclusive_time":1140,"id":"56","highest_child_id":119,"first_entry_time":5564,"exclusive_time":43,"entries":1,"callees":[{"inclusive_time":777,"id":"49","highest_child_id":108,"first_entry_time":5583,"exclusive_time":13,"entries":1,"callees":[{"inclusive_time":1,"id":"46","highest_child_id":73,"first_entry_time":5588,"exclusive_time":1,"entries":1,"allocations":[{"id":"47","count":1}]},{"inclusive_time":306,"id":"9","highest_child_id":85,"first_entry_time":5594,"exclusive_time":31,"entries":1,"callees":[{"inclusive_time":271,"id":"11","highest_child_id":84,"first_entry_time":5620,"exclusive_time":64,"entries":1,"callees":[{"inclusive_time":207,"id":"12","highest_child_id":84,"first_entry_time":5683,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":200,"id":"14","highest_child_id":84,"first_entry_time":5689,"exclusive_time":28,"entries":1,"callees":[{"inclusive_time":108,"id":"15","highest_child_id":80,"first_entry_time":5696,"exclusive_time":100,"entries":5,"callees":[{"inclusive_time":5,"id":"17","highest_child_id":79,"first_entry_time":5706,"exclusive_time":4,"entries":5,"allocations":[{"id":"18","count":5}]},{"inclusive_time":3,"id":"58","highest_child_id":80,"first_entry_time":5748,"exclusive_time":2,"entries":1}],"allocations":[{"id":"2","count":15},{"id":"16","count":3}]},{"inclusive_time":65,"id":"19","highest_child_id":84,"first_entry_time":5782,"exclusive_time":42,"entries":1,"callees":[{"inclusive_time":3,"id":"59","highest_child_id":82,"first_entry_time":5808,"exclusive_time":2,"entries":1,"allocations":[{"id":"60","count":1},{"id":"2","count":1}]},{"inclusive_time":19,"id":"61","highest_child_id":84,"first_entry_time":5827,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":16,"id":"52","highest_child_id":84,"first_entry_time":5830,"exclusive_time":16,"entries":1,"allocations":[{"id":"53","count":1}]}]}]}],"allocations":[{"id":"6","count":1},{"id":"7","count":1}]}],"allocations":[{"id":"13","count":2}]}]},{"inclusive_time":3,"id":"20","highest_child_id":85,"first_entry_time":5896,"exclusive_time":3,"entries":1}],"allocations":[{"id":"2","count":1},{"id":"10","count":2},{"id":"6","count":1},{"id":"8","count":1}]},{"inclusive_time":456,"id":"62","highest_child_id":108,"first_entry_time":5903,"exclusive_time":257,"entries":1,"callees":[{"inclusive_time":2,"id":"59","highest_child_id":87,"first_entry_time":5908,"exclusive_time":2,"entries":1,"allocations":[{"id":"60","count":1},{"id":"2","count":1}]},{"inclusive_time":15,"id":"61","highest_child_id":89,"first_entry_time":5912,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":12,"id":"52","highest_child_id":89,"first_entry_time":5914,"exclusive_time":12,"entries":1,"allocations":[{"id":"53","count":1}]}]},{"inclusive_time":52,"id":"63","highest_child_id":94,"first_entry_time":5952,"exclusive_time":23,"entries":1,"callees":[{"inclusive_time":1,"id":"46","highest_child_id":91,"first_entry_time":5955,"exclusive_time":1,"entries":1,"allocations":[{"id":"47","count":1}]},{"inclusive_time":25,"id":"9","highest_child_id":93,"first_entry_time":5961,"exclusive_time":22,"entries":1,"callees":[{"inclusive_time":3,"id":"20","highest_child_id":93,"first_entry_time":5982,"exclusive_time":2,"entries":1}],"allocations":[{"id":"2","count":1},{"id":"10","count":2},{"id":"6","count":1}]},{"inclusive_time":1,"id":"64","highest_child_id":94,"first_entry_time":6002,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"3","count":1},{"id":"8","count":3}]},{"inclusive_time":26,"id":"65","highest_child_id":96,"first_entry_time":6087,"exclusive_time":23,"entries":1,"callees":[{"inclusive_time":2,"id":"66","highest_child_id":96,"first_entry_time":6105,"exclusive_time":1,"entries":2,"allocations":[{"id":"6","count":2}]}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":3,"id":"67","highest_child_id":97,"first_entry_time":6146,"exclusive_time":3,"entries":1},{"inclusive_time":1,"id":"68","highest_child_id":98,"first_entry_time":6160,"exclusive_time":0,"entries":2},{"inclusive_time":100,"id":"69","highest_child_id":108,"first_entry_time":6255,"exclusive_time":73,"entries":1,"callees":[{"inclusive_time":1,"id":"70","highest_child_id":100,"first_entry_time":6268,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"30","highest_child_id":101,"first_entry_time":6270,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"71","highest_child_id":102,"first_entry_time":6286,"exclusive_time":0,"entries":1},{"inclusive_time":19,"id":"72","highest_child_id":104,"first_entry_time":6301,"exclusive_time":17,"entries":1,"callees":[{"inclusive_time":1,"id":"73","highest_child_id":104,"first_entry_time":6318,"exclusive_time":1,"entries":1}]},{"inclusive_time":3,"id":"74","highest_child_id":106,"first_entry_time":6334,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"73","highest_child_id":106,"first_entry_time":6336,"exclusive_time":0,"entries":1}]},{"inclusive_time":0,"id":"29","highest_child_id":107,"first_entry_time":6339,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"75","highest_child_id":108,"first_entry_time":6351,"exclusive_time":1,"entries":1}]}],"allocations":[{"id":"16","count":1},{"id":"6","count":1},{"id":"51","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"3","count":1},{"id":"8","count":3}]},{"inclusive_time":319,"id":"76","highest_child_id":119,"first_entry_time":6384,"exclusive_time":28,"entries":1,"callees":[{"inclusive_time":75,"id":"9","highest_child_id":111,"first_entry_time":6392,"exclusive_time":65,"entries":1,"callees":[{"inclusive_time":9,"id":"20","highest_child_id":111,"first_entry_time":6456,"exclusive_time":9,"entries":1}],"allocations":[{"id":"2","count":1},{"id":"10","count":2},{"id":"6","count":1}]},{"inclusive_time":216,"id":"77","highest_child_id":119,"first_entry_time":6487,"exclusive_time":21,"entries":1,"callees":[{"inclusive_time":194,"id":"78","highest_child_id":119,"first_entry_time":6508,"exclusive_time":65,"entries":1,"callees":[{"inclusive_time":1,"id":"46","highest_child_id":114,"first_entry_time":6512,"exclusive_time":1,"entries":1,"allocations":[{"id":"47","count":1}]},{"inclusive_time":35,"id":"9","highest_child_id":116,"first_entry_time":6517,"exclusive_time":31,"entries":1,"callees":[{"inclusive_time":3,"id":"20","highest_child_id":116,"first_entry_time":6548,"exclusive_time":3,"entries":1}],"allocations":[{"id":"2","count":2},{"id":"10","count":2},{"id":"6","count":1}]},{"inclusive_time":93,"id":"79","highest_child_id":119,"first_entry_time":6609,"exclusive_time":85,"entries":1,"callees":[{"inclusive_time":7,"id":"80","highest_child_id":118,"first_entry_time":6681,"exclusive_time":7,"entries":1},{"inclusive_time":1,"id":"81","highest_child_id":119,"first_entry_time":6701,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1},{"id":"16","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"3","count":1},{"id":"8","count":3}]}]}],"allocations":[{"id":"6","count":1},{"id":"7","count":1},{"id":"8","count":3}]}],"allocations":[{"id":"53","count":1},{"id":"57","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"53","count":2}]}],"allocations":[{"id":"53","count":2}]},{"inclusive_time":166,"id":"63","highest_child_id":131,"first_entry_time":6706,"exclusive_time":31,"entries":1,"callees":[{"inclusive_time":1,"id":"46","highest_child_id":121,"first_entry_time":6709,"exclusive_time":1,"entries":1,"allocations":[{"id":"47","count":1}]},{"inclusive_time":124,"id":"9","highest_child_id":128,"first_entry_time":6715,"exclusive_time":17,"entries":1,"callees":[{"inclusive_time":105,"id":"24","highest_child_id":127,"first_entry_time":6720,"exclusive_time":79,"entries":1,"callees":[{"inclusive_time":1,"id":"29","highest_child_id":124,"first_entry_time":6731,"exclusive_time":0,"entries":3},{"inclusive_time":2,"id":"30","highest_child_id":125,"first_entry_time":6733,"exclusive_time":1,"entries":3},{"inclusive_time":3,"id":"17","highest_child_id":126,"first_entry_time":6737,"exclusive_time":2,"entries":3,"allocations":[{"id":"18","count":3}]},{"inclusive_time":23,"id":"34","highest_child_id":127,"first_entry_time":6779,"exclusive_time":21,"entries":6}],"allocations":[{"id":"10","count":17},{"id":"25","count":4},{"id":"6","count":6},{"id":"26","count":6},{"id":"28","count":3}]},{"inclusive_time":2,"id":"20","highest_child_id":128,"first_entry_time":6836,"exclusive_time":2,"entries":1,"allocations":[{"id":"21","count":1}]}],"allocations":[{"id":"2","count":2},{"id":"10","count":2},{"id":"6","count":1}]},{"inclusive_time":9,"id":"82","highest_child_id":131,"first_entry_time":6863,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":2,"id":"67","highest_child_id":130,"first_entry_time":6868,"exclusive_time":2,"entries":1},{"inclusive_time":0,"id":"68","highest_child_id":131,"first_entry_time":6872,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"3","count":1},{"id":"8","count":3}]},{"inclusive_time":11,"id":"65","highest_child_id":133,"first_entry_time":6875,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":2,"id":"66","highest_child_id":133,"first_entry_time":6879,"exclusive_time":1,"entries":2,"allocations":[{"id":"6","count":2}]}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":3,"id":"67","highest_child_id":134,"first_entry_time":6898,"exclusive_time":2,"entries":1},{"inclusive_time":0,"id":"68","highest_child_id":135,"first_entry_time":6904,"exclusive_time":0,"entries":2},{"inclusive_time":26,"id":"69","highest_child_id":145,"first_entry_time":6911,"exclusive_time":15,"entries":1,"callees":[{"inclusive_time":1,"id":"70","highest_child_id":137,"first_entry_time":6913,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"30","highest_child_id":138,"first_entry_time":6915,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"71","highest_child_id":139,"first_entry_time":6918,"exclusive_time":0,"entries":1},{"inclusive_time":6,"id":"72","highest_child_id":141,"first_entry_time":6920,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":1,"id":"73","highest_child_id":141,"first_entry_time":6925,"exclusive_time":0,"entries":1}]},{"inclusive_time":2,"id":"74","highest_child_id":143,"first_entry_time":6929,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"73","highest_child_id":143,"first_entry_time":6930,"exclusive_time":0,"entries":1}]},{"inclusive_time":0,"id":"29","highest_child_id":144,"first_entry_time":6932,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"75","highest_child_id":145,"first_entry_time":6934,"exclusive_time":0,"entries":1}]}],"allocations":[{"id":"6","count":1},{"id":"51","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"3","count":1},{"id":"8","count":3}]},{"inclusive_time":1,"id":"67","highest_child_id":146,"first_entry_time":6942,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"68","highest_child_id":147,"first_entry_time":6944,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"3","count":1},{"id":"8","count":3}]}]}]}],"allocations":[{"id":"2","count":6},{"id":"16","count":2}]}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"13","count":2}]}]},{"inclusive_time":3,"id":"20","highest_child_id":148,"first_entry_time":6977,"exclusive_time":2,"entries":1,"allocations":[{"id":"21","count":1}]}],"allocations":[{"id":"2","count":1},{"id":"10","count":2},{"id":"6","count":1},{"id":"8","count":1}]},{"inclusive_time":1647,"id":"83","highest_child_id":237,"first_entry_time":6984,"exclusive_time":40,"entries":1,"callees":[{"inclusive_time":5,"id":"41","highest_child_id":152,"first_entry_time":6986,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":0,"id":"33","highest_child_id":151,"first_entry_time":6988,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"32","highest_child_id":152,"first_entry_time":6990,"exclusive_time":0,"entries":1}]},{"inclusive_time":72,"id":"42","highest_child_id":166,"first_entry_time":6995,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":1,"id":"29","highest_child_id":154,"first_entry_time":6999,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"30","highest_child_id":155,"first_entry_time":7002,"exclusive_time":0,"entries":1},{"inclusive_time":61,"id":"43","highest_child_id":166,"first_entry_time":7005,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":2,"id":"44","highest_child_id":157,"first_entry_time":7012,"exclusive_time":1,"entries":1},{"inclusive_time":48,"id":"48","highest_child_id":166,"first_entry_time":7017,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":43,"id":"50","highest_child_id":165,"first_entry_time":7021,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":19,"id":"52","highest_child_id":160,"first_entry_time":7024,"exclusive_time":18,"entries":2,"allocations":[{"id":"53","count":2}]},{"inclusive_time":4,"id":"82","highest_child_id":162,"first_entry_time":7046,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":0,"id":"68","highest_child_id":162,"first_entry_time":7049,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":9,"id":"65","highest_child_id":164,"first_entry_time":7052,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":1,"id":"66","highest_child_id":164,"first_entry_time":7055,"exclusive_time":1,"entries":2,"allocations":[{"id":"6","count":2}]}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":0,"id":"68","highest_child_id":165,"first_entry_time":7063,"exclusive_time":0,"entries":2}],"allocations":[{"id":"6","count":1},{"id":"51","count":1}]},{"inclusive_time":0,"id":"68","highest_child_id":166,"first_entry_time":7065,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1}]}]}]},{"inclusive_time":1528,"id":"84","highest_child_id":235,"first_entry_time":7097,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":288,"id":"9","highest_child_id":180,"first_entry_time":7104,"exclusive_time":27,"entries":1,"callees":[{"inclusive_time":134,"id":"24","highest_child_id":173,"first_entry_time":7109,"exclusive_time":100,"entries":1,"callees":[{"inclusive_time":1,"id":"29","highest_child_id":170,"first_entry_time":7119,"exclusive_time":0,"entries":3},{"inclusive_time":2,"id":"30","highest_child_id":171,"first_entry_time":7121,"exclusive_time":1,"entries":3},{"inclusive_time":3,"id":"17","highest_child_id":172,"first_entry_time":7125,"exclusive_time":2,"entries":3,"allocations":[{"id":"18","count":3}]},{"inclusive_time":32,"id":"34","highest_child_id":173,"first_entry_time":7188,"exclusive_time":30,"entries":6}],"allocations":[{"id":"10","count":17},{"id":"25","count":4},{"id":"6","count":6},{"id":"26","count":6},{"id":"27","count":2},{"id":"28","count":3}]},{"inclusive_time":123,"id":"11","highest_child_id":179,"first_entry_time":7261,"exclusive_time":55,"entries":1,"callees":[{"inclusive_time":67,"id":"12","highest_child_id":179,"first_entry_time":7316,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":61,"id":"14","highest_child_id":179,"first_entry_time":7322,"exclusive_time":17,"entries":1,"callees":[{"inclusive_time":44,"id":"15","highest_child_id":179,"first_entry_time":7329,"exclusive_time":39,"entries":3,"callees":[{"inclusive_time":2,"id":"58","highest_child_id":178,"first_entry_time":7335,"exclusive_time":2,"entries":1},{"inclusive_time":3,"id":"17","highest_child_id":179,"first_entry_time":7340,"exclusive_time":2,"entries":3,"allocations":[{"id":"18","count":3}]}],"allocations":[{"id":"2","count":9},{"id":"16","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"7","count":1}]}],"allocations":[{"id":"13","count":2}]}]},{"inclusive_time":3,"id":"20","highest_child_id":180,"first_entry_time":7388,"exclusive_time":2,"entries":1,"allocations":[{"id":"21","count":1}]}],"allocations":[{"id":"2","count":2},{"id":"10","count":2},{"id":"6","count":1},{"id":"8","count":1}]},{"inclusive_time":1230,"id":"85","highest_child_id":235,"first_entry_time":7394,"exclusive_time":67,"entries":1,"callees":[{"inclusive_time":846,"id":"86","highest_child_id":230,"first_entry_time":7426,"exclusive_time":48,"entries":1,"callees":[{"inclusive_time":1,"id":"46","highest_child_id":183,"first_entry_time":7429,"exclusive_time":1,"entries":1,"allocations":[{"id":"47","count":1}]},{"inclusive_time":79,"id":"9","highest_child_id":190,"first_entry_time":7435,"exclusive_time":16,"entries":1,"callees":[{"inclusive_time":60,"id":"24","highest_child_id":189,"first_entry_time":7439,"exclusive_time":52,"entries":1,"callees":[{"inclusive_time":1,"id":"29","highest_child_id":186,"first_entry_time":7449,"exclusive_time":0,"entries":3},{"inclusive_time":2,"id":"30","highest_child_id":187,"first_entry_time":7451,"exclusive_time":1,"entries":3},{"inclusive_time":2,"id":"17","highest_child_id":188,"first_entry_time":7454,"exclusive_time":1,"entries":3,"allocations":[{"id":"18","count":3}]},{"inclusive_time":4,"id":"34","highest_child_id":189,"first_entry_time":7488,"exclusive_time":3,"entries":2}],"allocations":[{"id":"10","count":12},{"id":"25","count":3},{"id":"6","count":4},{"id":"26","count":4},{"id":"28","count":2}]},{"inclusive_time":2,"id":"20","highest_child_id":190,"first_entry_time":7511,"exclusive_time":1,"entries":1,"allocations":[{"id":"21","count":1}]}],"allocations":[{"id":"2","count":2},{"id":"10","count":2},{"id":"6","count":1}]},{"inclusive_time":718,"id":"87","highest_child_id":230,"first_entry_time":7554,"exclusive_time":305,"entries":1,"callees":[{"inclusive_time":393,"id":"88","highest_child_id":218,"first_entry_time":7852,"exclusive_time":222,"entries":1,"callees":[{"inclusive_time":6,"id":"41","highest_child_id":195,"first_entry_time":7857,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"33","highest_child_id":194,"first_entry_time":7859,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"32","highest_child_id":195,"first_entry_time":7861,"exclusive_time":0,"entries":1}]},{"inclusive_time":31,"id":"80","highest_child_id":199,"first_entry_time":7868,"exclusive_time":27,"entries":2,"callees":[{"inclusive_time":1,"id":"89","highest_child_id":197,"first_entry_time":7884,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"29","highest_child_id":198,"first_entry_time":7887,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"75","highest_child_id":199,"first_entry_time":7889,"exclusive_time":0,"entries":2}]},{"inclusive_time":1,"id":"81","highest_child_id":200,"first_entry_time":7895,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"64","highest_child_id":201,"first_entry_time":7901,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":131,"id":"90","highest_child_id":216,"first_entry_time":8109,"exclusive_time":92,"entries":1,"callees":[{"inclusive_time":1,"id":"64","highest_child_id":203,"first_entry_time":8122,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":6,"id":"67","highest_child_id":204,"first_entry_time":8141,"exclusive_time":6,"entries":1},{"inclusive_time":6,"id":"92","highest_child_id":205,"first_entry_time":8203,"exclusive_time":6,"entries":1},{"inclusive_time":24,"id":"69","highest_child_id":215,"first_entry_time":8213,"exclusive_time":15,"entries":1,"callees":[{"inclusive_time":1,"id":"70","highest_child_id":207,"first_entry_time":8216,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"30","highest_child_id":208,"first_entry_time":8218,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"71","highest_child_id":209,"first_entry_time":8221,"exclusive_time":0,"entries":1},{"inclusive_time":3,"id":"72","highest_child_id":211,"first_entry_time":8223,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"73","highest_child_id":211,"first_entry_time":8224,"exclusive_time":0,"entries":1}]},{"inclusive_time":2,"id":"74","highest_child_id":213,"first_entry_time":8228,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"73","highest_child_id":213,"first_entry_time":8229,"exclusive_time":0,"entries":1}]},{"inclusive_time":0,"id":"29","highest_child_id":214,"first_entry_time":8232,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"75","highest_child_id":215,"first_entry_time":8233,"exclusive_time":0,"entries":1}]},{"inclusive_time":0,"id":"68","highest_child_id":216,"first_entry_time":8239,"exclusive_time":0,"entries":1}],"allocations":[{"id":"2","count":1},{"id":"16","count":2},{"id":"6","count":1},{"id":"7","count":1},{"id":"91","count":1},{"id":"57","count":1}]},{"inclusive_time":1,"id":"67","highest_child_id":217,"first_entry_time":8242,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"68","highest_child_id":218,"first_entry_time":8245,"exclusive_time":0,"entries":1}],"allocations":[{"id":"16","count":1},{"id":"6","count":1},{"id":"53","count":2},{"id":"57","count":1}]},{"inclusive_time":1,"id":"67","highest_child_id":219,"first_entry_time":8248,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"68","highest_child_id":220,"first_entry_time":8250,"exclusive_time":0,"entries":2},{"inclusive_time":18,"id":"69","highest_child_id":230,"first_entry_time":8252,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":1,"id":"70","highest_child_id":222,"first_entry_time":8254,"exclusive_time":0,"entries":2},{"inclusive_time":0,"id":"30","highest_child_id":223,"first_entry_time":8255,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"71","highest_child_id":224,"first_entry_time":8258,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"72","highest_child_id":226,"first_entry_time":8259,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"73","highest_child_id":226,"first_entry_time":8260,"exclusive_time":0,"entries":1}]},{"inclusive_time":2,"id":"74","highest_child_id":228,"first_entry_time":8263,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"73","highest_child_id":228,"first_entry_time":8264,"exclusive_time":0,"entries":1}]},{"inclusive_time":0,"id":"29","highest_child_id":229,"first_entry_time":8266,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"75","highest_child_id":230,"first_entry_time":8267,"exclusive_time":0,"entries":1}]}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"3","count":1},{"id":"8","count":3}]},{"inclusive_time":313,"id":"93","highest_child_id":233,"first_entry_time":8296,"exclusive_time":106,"entries":1,"callees":[{"inclusive_time":207,"id":"95","highest_child_id":233,"first_entry_time":8391,"exclusive_time":202,"entries":1,"callees":[{"inclusive_time":4,"id":"97","highest_child_id":233,"first_entry_time":8542,"exclusive_time":4,"entries":1}],"allocations":[{"id":"16","count":1},{"id":"96","count":1}]}],"allocations":[{"id":"94","count":1}]},{"inclusive_time":3,"id":"67","highest_child_id":234,"first_entry_time":8614,"exclusive_time":3,"entries":1},{"inclusive_time":0,"id":"68","highest_child_id":235,"first_entry_time":8624,"exclusive_time":0,"entries":1}],"allocations":[{"id":"16","count":1},{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"8","count":3}]},{"inclusive_time":2,"id":"67","highest_child_id":236,"first_entry_time":8627,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"68","highest_child_id":237,"first_entry_time":8630,"exclusive_time":0,"entries":1}],"allocations":[{"id":"16","count":1}]}],"allocations":[{"id":"8","count":3}]},{"inclusive_time":16,"id":"98","highest_child_id":240,"first_entry_time":8877,"exclusive_time":13,"entries":1,"callees":[{"inclusive_time":3,"id":"67","highest_child_id":239,"first_entry_time":8887,"exclusive_time":3,"entries":1},{"inclusive_time":0,"id":"68","highest_child_id":240,"first_entry_time":8893,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1},{"id":"7","count":1},{"id":"99","count":1},{"id":"13","count":2}]},{"inclusive_time":1255,"id":"76","highest_child_id":271,"first_entry_time":8898,"exclusive_time":43,"entries":1,"callees":[{"inclusive_time":197,"id":"9","highest_child_id":243,"first_entry_time":8905,"exclusive_time":194,"entries":1,"callees":[{"inclusive_time":3,"id":"20","highest_child_id":243,"first_entry_time":9099,"exclusive_time":2,"entries":1}],"allocations":[{"id":"2","count":2},{"id":"10","count":3},{"id":"6","count":2}]},{"inclusive_time":1014,"id":"100","highest_child_id":271,"first_entry_time":9139,"exclusive_time":21,"entries":1,"callees":[{"inclusive_time":993,"id":"101","highest_child_id":271,"first_entry_time":9159,"exclusive_time":130,"entries":1,"callees":[{"inclusive_time":1,"id":"46","highest_child_id":246,"first_entry_time":9163,"exclusive_time":1,"entries":1,"allocations":[{"id":"47","count":1}]},{"inclusive_time":475,"id":"9","highest_child_id":256,"first_entry_time":9173,"exclusive_time":20,"entries":1,"callees":[{"inclusive_time":448,"id":"24","highest_child_id":255,"first_entry_time":9177,"exclusive_time":309,"entries":1,"callees":[{"inclusive_time":4,"id":"29","highest_child_id":249,"first_entry_time":9188,"exclusive_time":1,"entries":9},{"inclusive_time":6,"id":"30","highest_child_id":250,"first_entry_time":9190,"exclusive_time":3,"entries":10},{"inclusive_time":7,"id":"17","highest_child_id":251,"first_entry_time":9195,"exclusive_time":4,"entries":10,"allocations":[{"id":"18","count":10}]},{"inclusive_time":1,"id":"31","highest_child_id":252,"first_entry_time":9342,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"32","highest_child_id":253,"first_entry_time":9346,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"33","highest_child_id":254,"first_entry_time":9351,"exclusive_time":0,"entries":1},{"inclusive_time":138,"id":"34","highest_child_id":255,"first_entry_time":9363,"exclusive_time":128,"entries":30}],"allocations":[{"id":"10","count":29},{"id":"25","count":6},{"id":"6","count":12},{"id":"26","count":10},{"id":"28","count":6}]},{"inclusive_time":7,"id":"20","highest_child_id":256,"first_entry_time":9640,"exclusive_time":6,"entries":1,"allocations":[{"id":"21","count":1}]}],"allocations":[{"id":"2","count":2},{"id":"10","count":2},{"id":"6","count":1}]},{"inclusive_time":386,"id":"102","highest_child_id":271,"first_entry_time":9765,"exclusive_time":65,"entries":1,"callees":[{"inclusive_time":6,"id":"41","highest_child_id":260,"first_entry_time":9772,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"33","highest_child_id":259,"first_entry_time":9774,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"32","highest_child_id":260,"first_entry_time":9776,"exclusive_time":0,"entries":1}]},{"inclusive_time":315,"id":"103","highest_child_id":271,"first_entry_time":9836,"exclusive_time":113,"entries":1,"callees":[{"inclusive_time":202,"id":"104","highest_child_id":271,"first_entry_time":9949,"exclusive_time":75,"entries":1,"callees":[{"inclusive_time":86,"id":"106","highest_child_id":265,"first_entry_time":9969,"exclusive_time":62,"entries":1,"callees":[{"inclusive_time":24,"id":"108","highest_child_id":265,"first_entry_time":10031,"exclusive_time":22,"entries":1,"callees":[{"inclusive_time":1,"id":"109","highest_child_id":265,"first_entry_time":10045,"exclusive_time":1,"entries":1}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"107","count":1}]},{"inclusive_time":4,"id":"110","highest_child_id":266,"first_entry_time":10071,"exclusive_time":4,"entries":1},{"inclusive_time":1,"id":"111","highest_child_id":267,"first_entry_time":10093,"exclusive_time":1,"entries":1},{"inclusive_time":35,"id":"112","highest_child_id":271,"first_entry_time":10115,"exclusive_time":26,"entries":1,"callees":[{"inclusive_time":1,"id":"114","highest_child_id":269,"first_entry_time":10126,"exclusive_time":0,"entries":1},{"inclusive_time":6,"id":"115","highest_child_id":270,"first_entry_time":10138,"exclusive_time":6,"entries":1},{"inclusive_time":1,"id":"44","highest_child_id":271,"first_entry_time":10148,"exclusive_time":1,"entries":1}],"allocations":[{"id":"6","count":1},{"id":"113","count":1}]}],"allocations":[{"id":"105","count":1}]}],"allocations":[{"id":"16","count":1},{"id":"13","count":1},{"id":"99","count":1}]}],"allocations":[{"id":"2","count":1},{"id":"6","count":1},{"id":"7","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"3","count":1},{"id":"8","count":3}]}]}],"allocations":[{"id":"6","count":1},{"id":"7","count":1},{"id":"8","count":3}]},{"inclusive_time":49594,"id":"116","highest_child_id":3380,"first_entry_time":10542,"exclusive_time":1486,"entries":1,"callees":[{"inclusive_time":23,"id":"80","highest_child_id":277,"first_entry_time":10550,"exclusive_time":19,"entries":3,"callees":[{"inclusive_time":1,"id":"89","highest_child_id":274,"first_entry_time":10554,"exclusive_time":0,"entries":3},{"inclusive_time":0,"id":"29","highest_child_id":275,"first_entry_time":10556,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"75","highest_child_id":276,"first_entry_time":10558,"exclusive_time":0,"entries":3},{"inclusive_time":0,"id":"31","highest_child_id":277,"first_entry_time":10575,"exclusive_time":0,"entries":1}]},{"inclusive_time":1,"id":"81","highest_child_id":278,"first_entry_time":10563,"exclusive_time":0,"entries":2},{"inclusive_time":13,"id":"41","highest_child_id":281,"first_entry_time":10567,"exclusive_time":12,"entries":3,"callees":[{"inclusive_time":1,"id":"33","highest_child_id":280,"first_entry_time":10568,"exclusive_time":0,"entries":3},{"inclusive_time":1,"id":"32","highest_child_id":281,"first_entry_time":10569,"exclusive_time":0,"entries":3}]},{"inclusive_time":12,"id":"117","highest_child_id":288,"first_entry_time":10604,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":3,"id":"41","highest_child_id":285,"first_entry_time":10606,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"33","highest_child_id":284,"first_entry_time":10607,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"32","highest_child_id":285,"first_entry_time":10609,"exclusive_time":0,"entries":1}]},{"inclusive_time":0,"id":"31","highest_child_id":286,"first_entry_time":10610,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"30","highest_child_id":287,"first_entry_time":10612,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"42","highest_child_id":288,"first_entry_time":10613,"exclusive_time":1,"entries":1}]},{"inclusive_time":28,"id":"42","highest_child_id":294,"first_entry_time":10635,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":0,"id":"29","highest_child_id":290,"first_entry_time":10637,"exclusive_time":0,"entries":2},{"inclusive_time":0,"id":"30","highest_child_id":291,"first_entry_time":10640,"exclusive_time":0,"entries":1},{"inclusive_time":20,"id":"43","highest_child_id":294,"first_entry_time":10642,"exclusive_time":16,"entries":1,"callees":[{"inclusive_time":2,"id":"44","highest_child_id":293,"first_entry_time":10644,"exclusive_time":2,"entries":1},{"inclusive_time":1,"id":"118","highest_child_id":294,"first_entry_time":10660,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1}]}]}]},{"inclusive_time":2,"id":"66","highest_child_id":295,"first_entry_time":10667,"exclusive_time":1,"entries":3,"allocations":[{"id":"6","count":3}]},{"inclusive_time":95,"id":"119","highest_child_id":310,"first_entry_time":10696,"exclusive_time":26,"entries":1,"callees":[{"inclusive_time":30,"id":"9","highest_child_id":298,"first_entry_time":10701,"exclusive_time":28,"entries":1,"callees":[{"inclusive_time":2,"id":"20","highest_child_id":298,"first_entry_time":10729,"exclusive_time":1,"entries":1,"allocations":[{"id":"21","count":1}]}],"allocations":[{"id":"2","count":2},{"id":"10","count":2},{"id":"6","count":1}]},{"inclusive_time":38,"id":"120","highest_child_id":310,"first_entry_time":10753,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":32,"id":"69","highest_child_id":309,"first_entry_time":10757,"exclusive_time":21,"entries":1,"callees":[{"inclusive_time":0,"id":"70","highest_child_id":301,"first_entry_time":10759,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"30","highest_child_id":302,"first_entry_time":10760,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"71","highest_child_id":303,"first_entry_time":10763,"exclusive_time":0,"entries":1},{"inclusive_time":6,"id":"72","highest_child_id":305,"first_entry_time":10764,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":0,"id":"73","highest_child_id":305,"first_entry_time":10769,"exclusive_time":0,"entries":1}]},{"inclusive_time":2,"id":"74","highest_child_id":307,"first_entry_time":10772,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"73","highest_child_id":307,"first_entry_time":10773,"exclusive_time":0,"entries":1}]},{"inclusive_time":0,"id":"121","highest_child_id":308,"first_entry_time":10783,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"75","highest_child_id":309,"first_entry_time":10785,"exclusive_time":0,"entries":1}]},{"inclusive_time":0,"id":"68","highest_child_id":310,"first_entry_time":10790,"exclusive_time":0,"entries":1}]}],"allocations":[{"id":"6","count":1},{"id":"7","count":1},{"id":"8","count":3}]},{"inclusive_time":386,"id":"122","highest_child_id":334,"first_entry_time":11900,"exclusive_time":17,"entries":1,"callees":[{"inclusive_time":2,"id":"17","highest_child_id":312,"first_entry_time":11907,"exclusive_time":1,"entries":1,"allocations":[{"id":"18","count":1}]},{"inclusive_time":1,"id":"46","highest_child_id":313,"first_entry_time":11913,"exclusive_time":0,"entries":1,"allocations":[{"id":"47","count":1}]},{"inclusive_time":310,"id":"9","highest_child_id":330,"first_entry_time":11918,"exclusive_time":24,"entries":1,"callees":[{"inclusive_time":145,"id":"24","highest_child_id":320,"first_entry_time":11921,"exclusive_time":109,"entries":1,"callees":[{"inclusive_time":1,"id":"123","highest_child_id":316,"first_entry_time":11960,"exclusive_time":0,"entries":3},{"inclusive_time":3,"id":"30","highest_child_id":317,"first_entry_time":11962,"exclusive_time":1,"entries":6},{"inclusive_time":3,"id":"17","highest_child_id":318,"first_entry_time":11966,"exclusive_time":1,"entries":6,"allocations":[{"id":"18","count":6}]},{"inclusive_time":1,"id":"29","highest_child_id":319,"first_entry_time":11970,"exclusive_time":0,"entries":3},{"inclusive_time":33,"id":"34","highest_child_id":320,"first_entry_time":12015,"exclusive_time":31,"entries":6}],"allocations":[{"id":"10","count":17},{"id":"25","count":4},{"id":"6","count":6},{"id":"26","count":6},{"id":"27","count":1},{"id":"28","count":3}]},{"inclusive_time":137,"id":"11","highest_child_id":329,"first_entry_time":12083,"exclusive_time":66,"entries":1,"callees":[{"inclusive_time":71,"id":"12","highest_child_id":329,"first_entry_time":12150,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":66,"id":"14","highest_child_id":329,"first_entry_time":12154,"exclusive_time":15,"entries":1,"callees":[{"inclusive_time":51,"id":"15","highest_child_id":328,"first_entry_time":12158,"exclusive_time":36,"entries":4,"callees":[{"inclusive_time":5,"id":"35","highest_child_id":326,"first_entry_time":12164,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":0,"id":"36","highest_child_id":326,"first_entry_time":12166,"exclusive_time":0,"entries":1}],"allocations":[{"id":"25","count":2}]},{"inclusive_time":3,"id":"58","highest_child_id":327,"first_entry_time":12172,"exclusive_time":2,"entries":2},{"inclusive_time":6,"id":"17","highest_child_id":328,"first_entry_time":12175,"exclusive_time":5,"entries":4,"allocations":[{"id":"18","count":4}]}],"allocations":[{"id":"2","count":12},{"id":"16","count":2}]},{"inclusive_time":1,"id":"19","highest_child_id":329,"first_entry_time":12192,"exclusive_time":0,"entries":1}],"allocations":[{"id":"7","count":1}]}],"allocations":[{"id":"13","count":2}]}]},{"inclusive_time":2,"id":"20","highest_child_id":330,"first_entry_time":12225,"exclusive_time":2,"entries":1,"allocations":[{"id":"21","count":1}]}],"allocations":[{"id":"2","count":2},{"id":"10","count":2},{"id":"6","count":1},{"id":"8","count":1}]},{"inclusive_time":56,"id":"124","highest_child_id":334,"first_entry_time":12229,"exclusive_time":35,"entries":1,"callees":[{"inclusive_time":20,"id":"125","highest_child_id":334,"first_entry_time":12258,"exclusive_time":18,"entries":1,"callees":[{"inclusive_time":2,"id":"67","highest_child_id":333,"first_entry_time":12275,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"68","highest_child_id":334,"first_entry_time":12278,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"16","count":2},{"id":"6","count":1},{"id":"53","count":1},{"id":"57","count":1}]}],"allocations":[{"id":"13","count":1},{"id":"6","count":1},{"id":"3","count":1},{"id":"8","count":3}]},{"inclusive_time":41,"id":"126","highest_child_id":339,"first_entry_time":12320,"exclusive_time":20,"entries":1,"callees":[{"inclusive_time":1,"id":"46","highest_child_id":336,"first_entry_time":12322,"exclusive_time":0,"entries":1,"allocations":[{"id":"47","count":1}]},{"inclusive_time":18,"id":"9","highest_child_id":338,"first_entry_time":12327,"exclusive_time":16,"entries":1,"callees":[{"inclusive_time":2,"id":"20","highest_child_id":338,"first_entry_time":12343,"exclusive_time":1,"entries":1}],"allocations":[{"id":"2","count":2},{"id":"10","count":2},{"id":"6","count":1}]},{"inclusive_time":1,"id":"127","highest_child_id":339,"first_entry_time":12359,"exclusive_time":0,"entries":1,"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"3","count":1},{"id":"8","count":3}]},{"inclusive_time":4,"id":"52","highest_child_id":340,"first_entry_time":12365,"exclusive_time":4,"entries":1},{"inclusive_time":1,"id":"128","highest_child_id":341,"first_entry_time":12379,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":462,"id":"76","highest_child_id":369,"first_entry_time":12384,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":361,"id":"9","highest_child_id":359,"first_entry_time":12390,"exclusive_time":142,"entries":1,"callees":[{"inclusive_time":216,"id":"11","highest_child_id":358,"first_entry_time":12529,"exclusive_time":31,"entries":1,"callees":[{"inclusive_time":184,"id":"12","highest_child_id":358,"first_entry_time":12560,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":179,"id":"14","highest_child_id":358,"first_entry_time":12564,"exclusive_time":19,"entries":1,"callees":[{"inclusive_time":161,"id":"15","highest_child_id":358,"first_entry_time":12569,"exclusive_time":31,"entries":3,"callees":[{"inclusive_time":2,"id":"17","highest_child_id":348,"first_entry_time":12579,"exclusive_time":1,"entries":3,"allocations":[{"id":"18","count":3}]},{"inclusive_time":122,"id":"40","highest_child_id":354,"first_entry_time":12605,"exclusive_time":34,"entries":1,"callees":[{"inclusive_time":0,"id":"33","highest_child_id":350,"first_entry_time":12607,"exclusive_time":0,"entries":1},{"inclusive_time":87,"id":"129","highest_child_id":354,"first_entry_time":12640,"exclusive_time":80,"entries":1,"callees":[{"inclusive_time":4,"id":"130","highest_child_id":352,"first_entry_time":12674,"exclusive_time":4,"entries":1},{"inclusive_time":1,"id":"131","highest_child_id":353,"first_entry_time":12697,"exclusive_time":0,"entries":1},{"inclusive_time":3,"id":"132","highest_child_id":354,"first_entry_time":12718,"exclusive_time":1,"entries":4}],"allocations":[{"id":"25","count":6}]}]},{"inclusive_time":3,"id":"41","highest_child_id":357,"first_entry_time":12729,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"33","highest_child_id":356,"first_entry_time":12731,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"32","highest_child_id":357,"first_entry_time":12732,"exclusive_time":0,"entries":1}]},{"inclusive_time":2,"id":"42","highest_child_id":358,"first_entry_time":12737,"exclusive_time":2,"entries":1}],"allocations":[{"id":"2","count":9},{"id":"16","count":1}]}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"13","count":2}]}]},{"inclusive_time":2,"id":"20","highest_child_id":359,"first_entry_time":12748,"exclusive_time":2,"entries":1}],"allocations":[{"id":"2","count":2},{"id":"10","count":2},{"id":"6","count":1},{"id":"8","count":1}]},{"inclusive_time":92,"id":"133","highest_child_id":369,"first_entry_time":12753,"exclusive_time":71,"entries":1,"callees":[{"inclusive_time":3,"id":"41","highest_child_id":363,"first_entry_time":12756,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"33","highest_child_id":362,"first_entry_time":12757,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"32","highest_child_id":363,"first_entry_time":12758,"exclusive_time":0,"entries":1}]},{"inclusive_time":18,"id":"134","highest_child_id":369,"first_entry_time":12828,"exclusive_time":12,"entries":1,"callees":[{"inclusive_time":4,"id":"41","highest_child_id":367,"first_entry_time":12830,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":0,"id":"33","highest_child_id":366,"first_entry_time":12832,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"32","highest_child_id":367,"first_entry_time":12834,"exclusive_time":0,"entries":1}]},{"inclusive_time":2,"id":"67","highest_child_id":368,"first_entry_time":12842,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"68","highest_child_id":369,"first_entry_time":12845,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1},{"id":"7","count":1}]}]}],"allocations":[{"id":"6","count":1},{"id":"7","count":1},{"id":"8","count":3}]},{"inclusive_time":5,"id":"98","highest_child_id":371,"first_entry_time":12852,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":0,"id":"68","highest_child_id":371,"first_entry_time":12857,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1},{"id":"7","count":1},{"id":"99","count":1},{"id":"13","count":2}]},{"inclusive_time":172,"id":"100","highest_child_id":393,"first_entry_time":12862,"exclusive_time":18,"entries":2,"callees":[{"inclusive_time":77,"id":"102","highest_child_id":387,"first_entry_time":12864,"exclusive_time":40,"entries":1,"callees":[{"inclusive_time":3,"id":"41","highest_child_id":376,"first_entry_time":12866,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"33","highest_child_id":375,"first_entry_time":12867,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"32","highest_child_id":376,"first_entry_time":12869,"exclusive_time":0,"entries":1}]},{"inclusive_time":34,"id":"135","highest_child_id":387,"first_entry_time":12906,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":28,"id":"104","highest_child_id":387,"first_entry_time":12912,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":10,"id":"106","highest_child_id":381,"first_entry_time":12915,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":8,"id":"108","highest_child_id":381,"first_entry_time":12917,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":0,"id":"109","highest_child_id":381,"first_entry_time":12919,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"107","count":1}]},{"inclusive_time":2,"id":"110","highest_child_id":382,"first_entry_time":12928,"exclusive_time":2,"entries":1},{"inclusive_time":0,"id":"111","highest_child_id":383,"first_entry_time":12932,"exclusive_time":0,"entries":1},{"inclusive_time":6,"id":"112","highest_child_id":387,"first_entry_time":12934,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":0,"id":"114","highest_child_id":385,"first_entry_time":12935,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"115","highest_child_id":386,"first_entry_time":12937,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"44","highest_child_id":387,"first_entry_time":12939,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1},{"id":"113","count":1}]}],"allocations":[{"id":"136","count":1}]}],"allocations":[{"id":"16","count":1},{"id":"13","count":1},{"id":"99","count":1}]}],"allocations":[{"id":"2","count":1},{"id":"6","count":1},{"id":"7","count":1}]},{"inclusive_time":76,"id":"137","highest_child_id":393,"first_entry_time":13025,"exclusive_time":18,"entries":1,"callees":[{"inclusive_time":58,"id":"138","highest_child_id":393,"first_entry_time":13043,"exclusive_time":32,"entries":1,"callees":[{"inclusive_time":2,"id":"140","highest_child_id":390,"first_entry_time":13056,"exclusive_time":1,"entries":1,"allocations":[{"id":"141","count":1}]},{"inclusive_time":23,"id":"142","highest_child_id":393,"first_entry_time":13077,"exclusive_time":21,"entries":1,"callees":[{"inclusive_time":1,"id":"143","highest_child_id":392,"first_entry_time":13089,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"144","highest_child_id":393,"first_entry_time":13100,"exclusive_time":0,"entries":1}]}],"allocations":[{"id":"6","count":1},{"id":"139","count":1},{"id":"16","count":1}]}],"allocations":[{"id":"6","count":1}]}]},{"inclusive_time":25,"id":"133","highest_child_id":402,"first_entry_time":12943,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":3,"id":"41","highest_child_id":397,"first_entry_time":12945,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"33","highest_child_id":396,"first_entry_time":12946,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"32","highest_child_id":397,"first_entry_time":12947,"exclusive_time":0,"entries":1}]},{"inclusive_time":19,"id":"134","highest_child_id":402,"first_entry_time":12950,"exclusive_time":16,"entries":1,"callees":[{"inclusive_time":2,"id":"41","highest_child_id":401,"first_entry_time":12951,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"33","highest_child_id":400,"first_entry_time":12952,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"32","highest_child_id":401,"first_entry_time":12953,"exclusive_time":0,"entries":1}]},{"inclusive_time":0,"id":"68","highest_child_id":402,"first_entry_time":12968,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1},{"id":"7","count":1}]}]},{"inclusive_time":1,"id":"145","highest_child_id":403,"first_entry_time":12990,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"146","highest_child_id":404,"first_entry_time":13004,"exclusive_time":1,"entries":1,"allocations":[{"id":"7","count":1}]},{"inclusive_time":3,"id":"147","highest_child_id":405,"first_entry_time":13128,"exclusive_time":3,"entries":1,"allocations":[{"id":"148","count":1},{"id":"2","count":1}]},{"inclusive_time":445,"id":"149","highest_child_id":420,"first_entry_time":13156,"exclusive_time":179,"entries":1,"callees":[{"inclusive_time":27,"id":"9","highest_child_id":409,"first_entry_time":13253,"exclusive_time":12,"entries":1,"callees":[{"inclusive_time":13,"id":"24","highest_child_id":408,"first_entry_time":13258,"exclusive_time":13,"entries":1,"allocations":[{"id":"10","count":7},{"id":"25","count":2},{"id":"6","count":2},{"id":"26","count":2},{"id":"28","count":2}]},{"inclusive_time":2,"id":"20","highest_child_id":409,"first_entry_time":13278,"exclusive_time":1,"entries":1,"allocations":[{"id":"21","count":1}]}],"allocations":[{"id":"2","count":2},{"id":"10","count":2},{"id":"6","count":1}]},{"inclusive_time":238,"id":"150","highest_child_id":420,"first_entry_time":13363,"exclusive_time":191,"entries":1,"callees":[{"inclusive_time":43,"id":"151","highest_child_id":417,"first_entry_time":13537,"exclusive_time":33,"entries":1,"callees":[{"inclusive_time":1,"id":"46","highest_child_id":412,"first_entry_time":13540,"exclusive_time":1,"entries":1,"allocations":[{"id":"47","count":1}]},{"inclusive_time":8,"id":"154","highest_child_id":415,"first_entry_time":13568,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":2,"id":"67","highest_child_id":414,"first_entry_time":13572,"exclusive_time":2,"entries":1},{"inclusive_time":0,"id":"68","highest_child_id":415,"first_entry_time":13576,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":1,"id":"67","highest_child_id":416,"first_entry_time":13578,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"68","highest_child_id":417,"first_entry_time":13580,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1},{"id":"3","count":1},{"id":"16","count":4},{"id":"8","count":1},{"id":"152","count":1},{"id":"47","count":1},{"id":"153","count":1}]},{"inclusive_time":1,"id":"155","highest_child_id":418,"first_entry_time":13594,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":1,"id":"67","highest_child_id":419,"first_entry_time":13598,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"68","highest_child_id":420,"first_entry_time":13601,"exclusive_time":0,"entries":1}],"allocations":[{"id":"3","count":2},{"id":"16","count":1}]}],"allocations":[{"id":"8","count":3}]},{"inclusive_time":14,"id":"156","highest_child_id":423,"first_entry_time":13627,"exclusive_time":11,"entries":2,"callees":[{"inclusive_time":1,"id":"67","highest_child_id":422,"first_entry_time":13635,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"68","highest_child_id":423,"first_entry_time":13638,"exclusive_time":0,"entries":2}],"allocations":[{"id":"6","count":2}]},{"inclusive_time":0,"id":"55","highest_child_id":424,"first_entry_time":13644,"exclusive_time":0,"entries":1},{"inclusive_time":8,"id":"157","highest_child_id":427,"first_entry_time":13660,"exclusive_time":6,"entries":2,"callees":[{"inclusive_time":1,"id":"67","highest_child_id":426,"first_entry_time":13663,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"68","highest_child_id":427,"first_entry_time":13666,"exclusive_time":0,"entries":2}],"allocations":[{"id":"6","count":4}]},{"inclusive_time":45419,"id":"158","highest_child_id":3321,"first_entry_time":13740,"exclusive_time":167,"entries":1,"callees":[{"inclusive_time":1,"id":"159","highest_child_id":429,"first_entry_time":13775,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"160","highest_child_id":430,"first_entry_time":13785,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"161","highest_child_id":431,"first_entry_time":13816,"exclusive_time":1,"entries":1,"allocations":[{"id":"10","count":1}]},{"inclusive_time":45249,"id":"162","highest_child_id":3320,"first_entry_time":13876,"exclusive_time":43,"entries":8,"callees":[{"inclusive_time":45206,"id":"163","highest_child_id":3320,"first_entry_time":13888,"exclusive_time":37,"entries":8,"callees":[{"inclusive_time":45169,"id":"164","highest_child_id":3320,"first_entry_time":13911,"exclusive_time":168,"entries":8,"callees":[{"inclusive_time":124,"id":"165","highest_child_id":444,"first_entry_time":13948,"exclusive_time":20,"entries":1,"callees":[{"inclusive_time":103,"id":"166","highest_child_id":444,"first_entry_time":13965,"exclusive_time":12,"entries":2,"callees":[{"inclusive_time":91,"id":"167","highest_child_id":444,"first_entry_time":13975,"exclusive_time":13,"entries":2,"callees":[{"inclusive_time":1,"id":"168","highest_child_id":438,"first_entry_time":13984,"exclusive_time":1,"entries":2,"allocations":[{"id":"169","count":1},{"id":"170","count":1}]},{"inclusive_time":76,"id":"108","highest_child_id":444,"first_entry_time":13987,"exclusive_time":45,"entries":2,"callees":[{"inclusive_time":1,"id":"109","highest_child_id":440,"first_entry_time":13989,"exclusive_time":0,"entries":2},{"inclusive_time":4,"id":"171","highest_child_id":441,"first_entry_time":14016,"exclusive_time":4,"entries":1,"allocations":[{"id":"10","count":1},{"id":"172","count":1},{"id":"173","count":1},{"id":"6","count":1},{"id":"25","count":1}]},{"inclusive_time":25,"id":"174","highest_child_id":444,"first_entry_time":14044,"exclusive_time":21,"entries":1,"callees":[{"inclusive_time":1,"id":"175","highest_child_id":443,"first_entry_time":14053,"exclusive_time":0,"entries":1,"allocations":[{"id":"172","count":1}]},{"inclusive_time":3,"id":"176","highest_child_id":444,"first_entry_time":14066,"exclusive_time":3,"entries":1,"allocations":[{"id":"177","count":1}]}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"6","count":2}]}],"allocations":[{"id":"6","count":2}]}],"allocations":[{"id":"6","count":2}]}],"allocations":[{"id":"6","count":6},{"id":"10","count":5}]},{"inclusive_time":27393,"id":"178","highest_child_id":1793,"first_entry_time":14121,"exclusive_time":54,"entries":1,"callees":[{"inclusive_time":1,"id":"179","highest_child_id":446,"first_entry_time":14136,"exclusive_time":1,"entries":1,"allocations":[{"id":"10","count":1}]},{"inclusive_time":1,"id":"180","highest_child_id":447,"first_entry_time":14149,"exclusive_time":1,"entries":1,"allocations":[{"id":"10","count":1}]},{"inclusive_time":27333,"id":"181","highest_child_id":1791,"first_entry_time":14175,"exclusive_time":300,"entries":1,"callees":[{"inclusive_time":2,"id":"182","highest_child_id":449,"first_entry_time":14195,"exclusive_time":2,"entries":1,"allocations":[{"id":"6","count":2},{"id":"183","count":1}]},{"inclusive_time":37,"id":"184","highest_child_id":451,"first_entry_time":14249,"exclusive_time":31,"entries":1,"callees":[{"inclusive_time":6,"id":"187","highest_child_id":451,"first_entry_time":14280,"exclusive_time":5,"entries":1,"allocations":[{"id":"185","count":1},{"id":"26","count":1}]}],"allocations":[{"id":"6","count":2},{"id":"185","count":1},{"id":"186","count":1},{"id":"173","count":1}]},{"inclusive_time":26993,"id":"188","highest_child_id":1790,"first_entry_time":14513,"exclusive_time":475,"entries":1,"callees":[{"inclusive_time":2,"id":"189","highest_child_id":453,"first_entry_time":14525,"exclusive_time":2,"entries":2},{"inclusive_time":15,"id":"190","highest_child_id":454,"first_entry_time":14543,"exclusive_time":13,"entries":5,"allocations":[{"id":"27","count":5},{"id":"53","count":5}]},{"inclusive_time":2,"id":"191","highest_child_id":455,"first_entry_time":14580,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":6,"id":"192","highest_child_id":456,"first_entry_time":14592,"exclusive_time":6,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":9,"id":"193","highest_child_id":457,"first_entry_time":14609,"exclusive_time":9,"entries":2,"allocations":[{"id":"27","count":2},{"id":"53","count":2}]},{"inclusive_time":1,"id":"194","highest_child_id":458,"first_entry_time":14636,"exclusive_time":1,"entries":1},{"inclusive_time":132,"id":"166","highest_child_id":473,"first_entry_time":14656,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":129,"id":"167","highest_child_id":473,"first_entry_time":14659,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"168","highest_child_id":461,"first_entry_time":14661,"exclusive_time":1,"entries":1,"allocations":[{"id":"195","count":1}]},{"inclusive_time":124,"id":"108","highest_child_id":473,"first_entry_time":14664,"exclusive_time":46,"entries":1,"callees":[{"inclusive_time":0,"id":"109","highest_child_id":463,"first_entry_time":14667,"exclusive_time":0,"entries":1},{"inclusive_time":74,"id":"196","highest_child_id":472,"first_entry_time":14696,"exclusive_time":16,"entries":1,"callees":[{"inclusive_time":1,"id":"197","highest_child_id":465,"first_entry_time":14708,"exclusive_time":0,"entries":1},{"inclusive_time":57,"id":"166","highest_child_id":472,"first_entry_time":14711,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":54,"id":"167","highest_child_id":472,"first_entry_time":14713,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"168","highest_child_id":468,"first_entry_time":14715,"exclusive_time":0,"entries":1,"allocations":[{"id":"198","count":1}]},{"inclusive_time":50,"id":"108","highest_child_id":472,"first_entry_time":14717,"exclusive_time":39,"entries":1,"callees":[{"inclusive_time":0,"id":"109","highest_child_id":470,"first_entry_time":14719,"exclusive_time":0,"entries":1},{"inclusive_time":7,"id":"199","highest_child_id":471,"first_entry_time":14737,"exclusive_time":7,"entries":1,"allocations":[{"id":"200","count":1},{"id":"10","count":2}]},{"inclusive_time":3,"id":"201","highest_child_id":472,"first_entry_time":14764,"exclusive_time":3,"entries":1,"allocations":[{"id":"10","count":6},{"id":"6","count":5}]}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"10","count":1}]},{"inclusive_time":3,"id":"202","highest_child_id":473,"first_entry_time":14784,"exclusive_time":3,"entries":1,"allocations":[{"id":"6","count":3},{"id":"10","count":1}]}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":9,"id":"203","highest_child_id":475,"first_entry_time":14804,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":1,"id":"204","highest_child_id":475,"first_entry_time":14812,"exclusive_time":0,"entries":1}]},{"inclusive_time":26322,"id":"205","highest_child_id":1786,"first_entry_time":15152,"exclusive_time":1090,"entries":1,"callees":[{"inclusive_time":6,"id":"206","highest_child_id":477,"first_entry_time":15190,"exclusive_time":6,"entries":1,"allocations":[{"id":"185","count":1},{"id":"26","count":1}]},{"inclusive_time":104,"id":"207","highest_child_id":484,"first_entry_time":15283,"exclusive_time":95,"entries":3,"callees":[{"inclusive_time":1,"id":"208","highest_child_id":479,"first_entry_time":15295,"exclusive_time":0,"entries":3},{"inclusive_time":2,"id":"209","highest_child_id":480,"first_entry_time":15305,"exclusive_time":1,"entries":3},{"inclusive_time":2,"id":"210","highest_child_id":481,"first_entry_time":15322,"exclusive_time":1,"entries":3},{"inclusive_time":3,"id":"211","highest_child_id":482,"first_entry_time":15343,"exclusive_time":2,"entries":3,"allocations":[{"id":"6","count":3}]},{"inclusive_time":1,"id":"212","highest_child_id":483,"first_entry_time":15353,"exclusive_time":0,"entries":3},{"inclusive_time":2,"id":"207","highest_child_id":484,"first_entry_time":20993,"exclusive_time":1,"entries":3}],"allocations":[{"id":"27","count":3}]},{"inclusive_time":1,"id":"213","highest_child_id":485,"first_entry_time":15367,"exclusive_time":0,"entries":1},{"inclusive_time":197,"id":"214","highest_child_id":497,"first_entry_time":15424,"exclusive_time":21,"entries":1,"callees":[{"inclusive_time":172,"id":"215","highest_child_id":495,"first_entry_time":15435,"exclusive_time":22,"entries":2,"callees":[{"inclusive_time":1,"id":"216","highest_child_id":488,"first_entry_time":15444,"exclusive_time":0,"entries":2},{"inclusive_time":148,"id":"217","highest_child_id":495,"first_entry_time":15457,"exclusive_time":35,"entries":2,"callees":[{"inclusive_time":113,"id":"218","highest_child_id":495,"first_entry_time":15489,"exclusive_time":57,"entries":2,"callees":[{"inclusive_time":47,"id":"219","highest_child_id":493,"first_entry_time":15501,"exclusive_time":27,"entries":2,"callees":[{"inclusive_time":20,"id":"221","highest_child_id":493,"first_entry_time":15516,"exclusive_time":17,"entries":2,"callees":[{"inclusive_time":2,"id":"223","highest_child_id":493,"first_entry_time":15531,"exclusive_time":1,"entries":2}],"allocations":[{"id":"222","count":2}]}],"allocations":[{"id":"10","count":2},{"id":"6","count":2},{"id":"220","count":2}]},{"inclusive_time":5,"id":"224","highest_child_id":494,"first_entry_time":15547,"exclusive_time":4,"entries":2,"allocations":[{"id":"10","count":2},{"id":"6","count":2},{"id":"225","count":2}]},{"inclusive_time":6,"id":"226","highest_child_id":495,"first_entry_time":15568,"exclusive_time":4,"entries":5,"allocations":[{"id":"6","count":2}]}]}]}]},{"inclusive_time":2,"id":"55","highest_child_id":496,"first_entry_time":15612,"exclusive_time":2,"entries":1},{"inclusive_time":1,"id":"226","highest_child_id":497,"first_entry_time":15620,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]}],"allocations":[{"id":"53","count":2},{"id":"27","count":2}]},{"inclusive_time":29,"id":"227","highest_child_id":500,"first_entry_time":15650,"exclusive_time":17,"entries":1,"callees":[{"inclusive_time":9,"id":"206","highest_child_id":499,"first_entry_time":15652,"exclusive_time":9,"entries":1,"allocations":[{"id":"185","count":1},{"id":"26","count":1}]},{"inclusive_time":2,"id":"228","highest_child_id":500,"first_entry_time":15676,"exclusive_time":2,"entries":1}]},{"inclusive_time":5120,"id":"229","highest_child_id":546,"first_entry_time":15800,"exclusive_time":191,"entries":1,"callees":[{"inclusive_time":5,"id":"206","highest_child_id":502,"first_entry_time":15803,"exclusive_time":5,"entries":1,"allocations":[{"id":"185","count":1},{"id":"26","count":1}]},{"inclusive_time":352,"id":"230","highest_child_id":522,"first_entry_time":15823,"exclusive_time":107,"entries":4,"callees":[{"inclusive_time":23,"id":"231","highest_child_id":506,"first_entry_time":15845,"exclusive_time":19,"entries":4,"callees":[{"inclusive_time":1,"id":"232","highest_child_id":505,"first_entry_time":15856,"exclusive_time":1,"entries":1},{"inclusive_time":3,"id":"233","highest_child_id":506,"first_entry_time":16184,"exclusive_time":1,"entries":6}]},{"inclusive_time":5,"id":"234","highest_child_id":507,"first_entry_time":15869,"exclusive_time":4,"entries":4},{"inclusive_time":217,"id":"235","highest_child_id":522,"first_entry_time":15938,"exclusive_time":106,"entries":1,"callees":[{"inclusive_time":5,"id":"206","highest_child_id":509,"first_entry_time":15940,"exclusive_time":4,"entries":1,"allocations":[{"id":"185","count":1},{"id":"26","count":1}]},{"inclusive_time":3,"id":"236","highest_child_id":510,"first_entry_time":15957,"exclusive_time":2,"entries":2,"allocations":[{"id":"173","count":2}]},{"inclusive_time":2,"id":"237","highest_child_id":511,"first_entry_time":15972,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"238","highest_child_id":512,"first_entry_time":15997,"exclusive_time":1,"entries":1},{"inclusive_time":34,"id":"239","highest_child_id":515,"first_entry_time":16024,"exclusive_time":27,"entries":1,"callees":[{"inclusive_time":2,"id":"240","highest_child_id":514,"first_entry_time":16037,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":5,"id":"241","highest_child_id":515,"first_entry_time":16053,"exclusive_time":4,"entries":1}]},{"inclusive_time":46,"id":"242","highest_child_id":519,"first_entry_time":16086,"exclusive_time":30,"entries":1,"callees":[{"inclusive_time":11,"id":"187","highest_child_id":517,"first_entry_time":16088,"exclusive_time":11,"entries":1,"allocations":[{"id":"185","count":1},{"id":"26","count":1}]},{"inclusive_time":1,"id":"233","highest_child_id":518,"first_entry_time":16109,"exclusive_time":0,"entries":1},{"inclusive_time":3,"id":"243","highest_child_id":519,"first_entry_time":16128,"exclusive_time":2,"entries":1}]},{"inclusive_time":19,"id":"243","highest_child_id":522,"first_entry_time":16136,"exclusive_time":15,"entries":1,"callees":[{"inclusive_time":3,"id":"244","highest_child_id":522,"first_entry_time":16151,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"189","highest_child_id":522,"first_entry_time":16153,"exclusive_time":1,"entries":1}]}]}]}]},{"inclusive_time":9,"id":"245","highest_child_id":523,"first_entry_time":16178,"exclusive_time":8,"entries":4,"allocations":[{"id":"10","count":1}]},{"inclusive_time":26,"id":"246","highest_child_id":526,"first_entry_time":16210,"exclusive_time":12,"entries":3,"callees":[{"inclusive_time":10,"id":"187","highest_child_id":525,"first_entry_time":16212,"exclusive_time":9,"entries":3,"allocations":[{"id":"185","count":3},{"id":"26","count":3}]},{"inclusive_time":4,"id":"228","highest_child_id":526,"first_entry_time":16218,"exclusive_time":3,"entries":3}],"allocations":[{"id":"28","count":3}]},{"inclusive_time":12,"id":"207","highest_child_id":532,"first_entry_time":16251,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":1,"id":"208","highest_child_id":528,"first_entry_time":16254,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"209","highest_child_id":529,"first_entry_time":16256,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"210","highest_child_id":530,"first_entry_time":16258,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"211","highest_child_id":531,"first_entry_time":16259,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":0,"id":"212","highest_child_id":532,"first_entry_time":16261,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":6,"id":"247","highest_child_id":533,"first_entry_time":16382,"exclusive_time":5,"entries":1,"allocations":[{"id":"27","count":1},{"id":"10","count":1}]},{"inclusive_time":4520,"id":"243","highest_child_id":546,"first_entry_time":16400,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":4517,"id":"244","highest_child_id":546,"first_entry_time":16403,"exclusive_time":28,"entries":1,"callees":[{"inclusive_time":1,"id":"189","highest_child_id":536,"first_entry_time":16405,"exclusive_time":0,"entries":1},{"inclusive_time":14,"id":"207","highest_child_id":542,"first_entry_time":16412,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":0,"id":"208","highest_child_id":538,"first_entry_time":16415,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"209","highest_child_id":539,"first_entry_time":16417,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"210","highest_child_id":540,"first_entry_time":16418,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"211","highest_child_id":541,"first_entry_time":16420,"exclusive_time":0,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":0,"id":"212","highest_child_id":542,"first_entry_time":16422,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":4473,"id":"248","highest_child_id":546,"first_entry_time":16447,"exclusive_time":65,"entries":1,"callees":[{"inclusive_time":4407,"id":"249","highest_child_id":546,"first_entry_time":16512,"exclusive_time":2800,"entries":1,"callees":[{"inclusive_time":142,"id":"250","highest_child_id":545,"first_entry_time":16532,"exclusive_time":0,"entries":782},{"inclusive_time":2118,"id":"251","highest_child_id":546,"first_entry_time":16560,"exclusive_time":1607,"entries":1546,"allocations":[{"id":"6","count":783}]}],"allocations":[{"id":"222","count":6},{"id":"13","count":5}]}]}]}]}]},{"inclusive_time":10,"id":"252","highest_child_id":547,"first_entry_time":20974,"exclusive_time":9,"entries":2,"allocations":[{"id":"10","count":1}]},{"inclusive_time":2274,"id":"253","highest_child_id":593,"first_entry_time":21410,"exclusive_time":309,"entries":1,"callees":[{"inclusive_time":1687,"id":"254","highest_child_id":560,"first_entry_time":21439,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":6,"id":"206","highest_child_id":550,"first_entry_time":21441,"exclusive_time":6,"entries":1,"allocations":[{"id":"185","count":1},{"id":"26","count":1}]},{"inclusive_time":1676,"id":"243","highest_child_id":560,"first_entry_time":21450,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1673,"id":"244","highest_child_id":560,"first_entry_time":21453,"exclusive_time":18,"entries":1,"callees":[{"inclusive_time":0,"id":"189","highest_child_id":553,"first_entry_time":21455,"exclusive_time":0,"entries":1},{"inclusive_time":11,"id":"207","highest_child_id":556,"first_entry_time":21458,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":0,"id":"208","highest_child_id":555,"first_entry_time":21461,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"209","highest_child_id":556,"first_entry_time":21467,"exclusive_time":0,"entries":1}]},{"inclusive_time":1642,"id":"255","highest_child_id":560,"first_entry_time":21484,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1638,"id":"249","highest_child_id":560,"first_entry_time":21487,"exclusive_time":1364,"entries":1,"callees":[{"inclusive_time":121,"id":"250","highest_child_id":559,"first_entry_time":21495,"exclusive_time":0,"entries":782},{"inclusive_time":532,"id":"251","highest_child_id":560,"first_entry_time":21497,"exclusive_time":274,"entries":782,"allocations":[{"id":"6","count":782}]}],"allocations":[{"id":"222","count":6},{"id":"13","count":5}]}]}]}]}]},{"inclusive_time":61,"id":"256","highest_child_id":565,"first_entry_time":23212,"exclusive_time":38,"entries":1,"callees":[{"inclusive_time":1,"id":"216","highest_child_id":562,"first_entry_time":23217,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"257","highest_child_id":563,"first_entry_time":23228,"exclusive_time":0,"entries":1},{"inclusive_time":17,"id":"251","highest_child_id":564,"first_entry_time":23231,"exclusive_time":16,"entries":2,"allocations":[{"id":"6","count":3}]},{"inclusive_time":4,"id":"258","highest_child_id":565,"first_entry_time":23268,"exclusive_time":4,"entries":1,"allocations":[{"id":"27","count":1}]}]},{"inclusive_time":23,"id":"259","highest_child_id":569,"first_entry_time":23285,"exclusive_time":13,"entries":1,"callees":[{"inclusive_time":9,"id":"260","highest_child_id":569,"first_entry_time":23299,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":2,"id":"67","highest_child_id":568,"first_entry_time":23304,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"68","highest_child_id":569,"first_entry_time":23308,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1}]}]},{"inclusive_time":4,"id":"261","highest_child_id":570,"first_entry_time":23320,"exclusive_time":0,"entries":15},{"inclusive_time":3,"id":"262","highest_child_id":571,"first_entry_time":23329,"exclusive_time":0,"entries":15},{"inclusive_time":27,"id":"193","highest_child_id":572,"first_entry_time":23332,"exclusive_time":22,"entries":15,"allocations":[{"id":"53","count":15}]},{"inclusive_time":8,"id":"251","highest_child_id":573,"first_entry_time":23401,"exclusive_time":6,"entries":8,"allocations":[{"id":"6","count":8}]},{"inclusive_time":3,"id":"258","highest_child_id":574,"first_entry_time":23407,"exclusive_time":2,"entries":2,"allocations":[{"id":"27","count":2}]},{"inclusive_time":2,"id":"263","highest_child_id":575,"first_entry_time":23427,"exclusive_time":1,"entries":1},{"inclusive_time":91,"id":"264","highest_child_id":581,"first_entry_time":23484,"exclusive_time":43,"entries":4,"callees":[{"inclusive_time":12,"id":"251","highest_child_id":577,"first_entry_time":23487,"exclusive_time":9,"entries":8,"allocations":[{"id":"6","count":4}]},{"inclusive_time":35,"id":"265","highest_child_id":580,"first_entry_time":23505,"exclusive_time":14,"entries":4,"callees":[{"inclusive_time":21,"id":"221","highest_child_id":580,"first_entry_time":23511,"exclusive_time":17,"entries":4,"callees":[{"inclusive_time":3,"id":"267","highest_child_id":580,"first_entry_time":23523,"exclusive_time":2,"entries":4}],"allocations":[{"id":"222","count":4}]}],"allocations":[{"id":"27","count":4},{"id":"10","count":4},{"id":"6","count":4},{"id":"266","count":4}]},{"inclusive_time":3,"id":"268","highest_child_id":581,"first_entry_time":23535,"exclusive_time":2,"entries":4}]},{"inclusive_time":67,"id":"269","highest_child_id":592,"first_entry_time":23594,"exclusive_time":24,"entries":1,"callees":[{"inclusive_time":19,"id":"256","highest_child_id":587,"first_entry_time":23597,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":0,"id":"216","highest_child_id":584,"first_entry_time":23601,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"257","highest_child_id":585,"first_entry_time":23602,"exclusive_time":0,"entries":1},{"inclusive_time":6,"id":"251","highest_child_id":586,"first_entry_time":23605,"exclusive_time":6,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":2,"id":"258","highest_child_id":587,"first_entry_time":23613,"exclusive_time":2,"entries":1,"allocations":[{"id":"27","count":1}]}]},{"inclusive_time":0,"id":"216","highest_child_id":588,"first_entry_time":23618,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"270","highest_child_id":589,"first_entry_time":23629,"exclusive_time":1,"entries":1},{"inclusive_time":21,"id":"271","highest_child_id":592,"first_entry_time":23641,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":10,"id":"272","highest_child_id":592,"first_entry_time":23651,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":0,"id":"273","highest_child_id":592,"first_entry_time":23660,"exclusive_time":0,"entries":1}]}]}],"allocations":[{"id":"27","count":1},{"id":"148","count":1}]},{"inclusive_time":2,"id":"274","highest_child_id":593,"first_entry_time":23681,"exclusive_time":1,"entries":1}],"allocations":[{"id":"222","count":1},{"id":"27","count":15}]},{"inclusive_time":783,"id":"275","highest_child_id":627,"first_entry_time":23708,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":5,"id":"206","highest_child_id":595,"first_entry_time":23711,"exclusive_time":5,"entries":1,"allocations":[{"id":"185","count":1},{"id":"26","count":1}]},{"inclusive_time":773,"id":"243","highest_child_id":627,"first_entry_time":23718,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":770,"id":"244","highest_child_id":627,"first_entry_time":23721,"exclusive_time":91,"entries":1,"callees":[{"inclusive_time":1,"id":"189","highest_child_id":598,"first_entry_time":23723,"exclusive_time":0,"entries":1},{"inclusive_time":7,"id":"207","highest_child_id":601,"first_entry_time":23725,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":0,"id":"208","highest_child_id":600,"first_entry_time":23728,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"209","highest_child_id":601,"first_entry_time":23730,"exclusive_time":0,"entries":1}]},{"inclusive_time":671,"id":"276","highest_child_id":627,"first_entry_time":23820,"exclusive_time":90,"entries":1,"callees":[{"inclusive_time":15,"id":"277","highest_child_id":605,"first_entry_time":23833,"exclusive_time":13,"entries":1,"callees":[{"inclusive_time":1,"id":"216","highest_child_id":604,"first_entry_time":23835,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"278","highest_child_id":605,"first_entry_time":23847,"exclusive_time":1,"entries":1}]},{"inclusive_time":1,"id":"279","highest_child_id":606,"first_entry_time":23860,"exclusive_time":1,"entries":1},{"inclusive_time":5,"id":"251","highest_child_id":607,"first_entry_time":23864,"exclusive_time":4,"entries":2,"allocations":[{"id":"6","count":1}]},{"inclusive_time":5,"id":"265","highest_child_id":608,"first_entry_time":23869,"exclusive_time":4,"entries":2,"allocations":[{"id":"27","count":2},{"id":"10","count":2},{"id":"6","count":2},{"id":"266","count":2}]},{"inclusive_time":2,"id":"268","highest_child_id":609,"first_entry_time":23873,"exclusive_time":2,"entries":2},{"inclusive_time":515,"id":"280","highest_child_id":620,"first_entry_time":23896,"exclusive_time":384,"entries":2,"callees":[{"inclusive_time":126,"id":"281","highest_child_id":618,"first_entry_time":24276,"exclusive_time":91,"entries":2,"callees":[{"inclusive_time":27,"id":"282","highest_child_id":614,"first_entry_time":24299,"exclusive_time":22,"entries":3,"callees":[{"inclusive_time":3,"id":"283","highest_child_id":613,"first_entry_time":24309,"exclusive_time":2,"entries":2},{"inclusive_time":1,"id":"284","highest_child_id":614,"first_entry_time":24353,"exclusive_time":1,"entries":1}]},{"inclusive_time":4,"id":"285","highest_child_id":616,"first_entry_time":24327,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":1,"id":"283","highest_child_id":616,"first_entry_time":24329,"exclusive_time":1,"entries":2}]},{"inclusive_time":2,"id":"286","highest_child_id":617,"first_entry_time":24340,"exclusive_time":1,"entries":2},{"inclusive_time":9,"id":"287","highest_child_id":618,"first_entry_time":24419,"exclusive_time":3,"entries":19}],"allocations":[{"id":"2","count":2},{"id":"27","count":21},{"id":"28","count":2}]},{"inclusive_time":4,"id":"282","highest_child_id":620,"first_entry_time":24356,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":1,"id":"284","highest_child_id":620,"first_entry_time":24357,"exclusive_time":1,"entries":2}]}],"allocations":[{"id":"27","count":2},{"id":"53","count":2}]},{"inclusive_time":3,"id":"288","highest_child_id":621,"first_entry_time":24372,"exclusive_time":3,"entries":1,"allocations":[{"id":"27","count":1},{"id":"6","count":1},{"id":"289","count":1}]},{"inclusive_time":17,"id":"290","highest_child_id":622,"first_entry_time":24390,"exclusive_time":16,"entries":2,"allocations":[{"id":"10","count":2},{"id":"6","count":2},{"id":"291","count":2}]},{"inclusive_time":18,"id":"256","highest_child_id":627,"first_entry_time":24469,"exclusive_time":12,"entries":1,"callees":[{"inclusive_time":0,"id":"216","highest_child_id":624,"first_entry_time":24474,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"257","highest_child_id":625,"first_entry_time":24476,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"251","highest_child_id":626,"first_entry_time":24478,"exclusive_time":2,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":3,"id":"258","highest_child_id":627,"first_entry_time":24483,"exclusive_time":2,"entries":1,"allocations":[{"id":"27","count":1}]}]}]}]}]}]},{"inclusive_time":14577,"id":"292","highest_child_id":1572,"first_entry_time":24547,"exclusive_time":46,"entries":1,"callees":[{"inclusive_time":2,"id":"293","highest_child_id":629,"first_entry_time":24561,"exclusive_time":2,"entries":1},{"inclusive_time":14528,"id":"294","highest_child_id":1572,"first_entry_time":24595,"exclusive_time":246,"entries":1,"callees":[{"inclusive_time":7,"id":"295","highest_child_id":631,"first_entry_time":24633,"exclusive_time":6,"entries":2,"allocations":[{"id":"27","count":2}]},{"inclusive_time":1,"id":"293","highest_child_id":632,"first_entry_time":24639,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"296","highest_child_id":633,"first_entry_time":24650,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"233","highest_child_id":634,"first_entry_time":24653,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"297","highest_child_id":635,"first_entry_time":24661,"exclusive_time":1,"entries":1},{"inclusive_time":14,"id":"184","highest_child_id":638,"first_entry_time":24665,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":1,"id":"182","highest_child_id":637,"first_entry_time":24670,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":2},{"id":"183","count":1}]},{"inclusive_time":4,"id":"187","highest_child_id":638,"first_entry_time":24674,"exclusive_time":4,"entries":1,"allocations":[{"id":"185","count":1},{"id":"26","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"185","count":1}]},{"inclusive_time":27,"id":"298","highest_child_id":641,"first_entry_time":24691,"exclusive_time":21,"entries":1,"callees":[{"inclusive_time":1,"id":"299","highest_child_id":640,"first_entry_time":24699,"exclusive_time":0,"entries":1},{"inclusive_time":5,"id":"300","highest_child_id":641,"first_entry_time":24713,"exclusive_time":4,"entries":1,"allocations":[{"id":"183","count":1},{"id":"6","count":1}]}]},{"inclusive_time":3,"id":"301","highest_child_id":642,"first_entry_time":24728,"exclusive_time":3,"entries":1,"allocations":[{"id":"53","count":1}]},{"inclusive_time":2,"id":"302","highest_child_id":643,"first_entry_time":24742,"exclusive_time":2,"entries":1},{"inclusive_time":1,"id":"303","highest_child_id":644,"first_entry_time":24753,"exclusive_time":0,"entries":1},{"inclusive_time":14220,"id":"304","highest_child_id":1570,"first_entry_time":24900,"exclusive_time":345,"entries":1,"deopt_all":1,"callees":[{"inclusive_time":5,"id":"206","highest_child_id":646,"first_entry_time":24904,"exclusive_time":5,"entries":1,"allocations":[{"id":"185","count":1},{"id":"26","count":1}]},{"inclusive_time":1,"id":"305","highest_child_id":647,"first_entry_time":24921,"exclusive_time":1,"entries":1},{"inclusive_time":52,"id":"306","highest_child_id":650,"first_entry_time":24938,"exclusive_time":52,"entries":1,"callees":[{"inclusive_time":4,"id":"261","highest_child_id":649,"first_entry_time":24942,"exclusive_time":0,"entries":27},{"inclusive_time":4,"id":"262","highest_child_id":650,"first_entry_time":24945,"exclusive_time":0,"entries":27}],"allocations":[{"id":"6","count":1},{"id":"222","count":1},{"id":"27","count":27}]},{"inclusive_time":2,"id":"237","highest_child_id":651,"first_entry_time":24994,"exclusive_time":2,"entries":1},{"inclusive_time":323,"id":"230","highest_child_id":680,"first_entry_time":24998,"exclusive_time":27,"entries":11,"callees":[{"inclusive_time":41,"id":"231","highest_child_id":655,"first_entry_time":25000,"exclusive_time":36,"entries":11,"callees":[{"inclusive_time":8,"id":"233","highest_child_id":654,"first_entry_time":25002,"exclusive_time":0,"entries":22},{"inclusive_time":1,"id":"232","highest_child_id":655,"first_entry_time":36443,"exclusive_time":0,"entries":2}],"allocations":[{"id":"28","count":12}]},{"inclusive_time":11,"id":"234","highest_child_id":656,"first_entry_time":25006,"exclusive_time":7,"entries":11},{"inclusive_time":247,"id":"235","highest_child_id":680,"first_entry_time":36447,"exclusive_time":127,"entries":2,"callees":[{"inclusive_time":7,"id":"206","highest_child_id":658,"first_entry_time":36448,"exclusive_time":6,"entries":2,"allocations":[{"id":"185","count":2},{"id":"26","count":2}]},{"inclusive_time":8,"id":"236","highest_child_id":659,"first_entry_time":36454,"exclusive_time":6,"entries":4,"allocations":[{"id":"173","count":4}]},{"inclusive_time":7,"id":"237","highest_child_id":660,"first_entry_time":36456,"exclusive_time":6,"entries":2},{"inclusive_time":3,"id":"238","highest_child_id":661,"first_entry_time":36463,"exclusive_time":3,"entries":2},{"inclusive_time":24,"id":"239","highest_child_id":664,"first_entry_time":36467,"exclusive_time":12,"entries":3,"callees":[{"inclusive_time":3,"id":"240","highest_child_id":663,"first_entry_time":36469,"exclusive_time":2,"entries":3,"allocations":[{"id":"27","count":3}]},{"inclusive_time":9,"id":"241","highest_child_id":664,"first_entry_time":36473,"exclusive_time":8,"entries":3}]},{"inclusive_time":52,"id":"307","highest_child_id":673,"first_entry_time":36576,"exclusive_time":15,"entries":1,"callees":[{"inclusive_time":5,"id":"206","highest_child_id":666,"first_entry_time":36580,"exclusive_time":5,"entries":1,"allocations":[{"id":"185","count":1},{"id":"26","count":1}]},{"inclusive_time":2,"id":"237","highest_child_id":667,"first_entry_time":36589,"exclusive_time":1,"entries":1},{"inclusive_time":23,"id":"239","highest_child_id":670,"first_entry_time":36595,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":2,"id":"240","highest_child_id":669,"first_entry_time":36597,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":16,"id":"241","highest_child_id":670,"first_entry_time":36601,"exclusive_time":16,"entries":1,"allocations":[{"id":"308","count":1}]}]},{"inclusive_time":6,"id":"243","highest_child_id":673,"first_entry_time":36622,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":2,"id":"244","highest_child_id":673,"first_entry_time":36625,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"189","highest_child_id":673,"first_entry_time":36626,"exclusive_time":0,"entries":1}]}]}]},{"inclusive_time":12,"id":"242","highest_child_id":677,"first_entry_time":36640,"exclusive_time":9,"entries":2,"callees":[{"inclusive_time":1,"id":"309","highest_child_id":675,"first_entry_time":36642,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"233","highest_child_id":676,"first_entry_time":36644,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"310","highest_child_id":677,"first_entry_time":36646,"exclusive_time":0,"entries":2}],"allocations":[{"id":"28","count":3}]},{"inclusive_time":8,"id":"243","highest_child_id":680,"first_entry_time":36654,"exclusive_time":4,"entries":2,"callees":[{"inclusive_time":4,"id":"244","highest_child_id":680,"first_entry_time":36656,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":1,"id":"189","highest_child_id":680,"first_entry_time":36657,"exclusive_time":0,"entries":2}]}]}]}]},{"inclusive_time":36,"id":"245","highest_child_id":681,"first_entry_time":25010,"exclusive_time":31,"entries":14,"allocations":[{"id":"10","count":1}]},{"inclusive_time":36,"id":"207","highest_child_id":688,"first_entry_time":25024,"exclusive_time":24,"entries":2,"callees":[{"inclusive_time":1,"id":"208","highest_child_id":683,"first_entry_time":25027,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"209","highest_child_id":684,"first_entry_time":25029,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"210","highest_child_id":685,"first_entry_time":25031,"exclusive_time":0,"entries":2},{"inclusive_time":4,"id":"211","highest_child_id":686,"first_entry_time":25033,"exclusive_time":4,"entries":2,"allocations":[{"id":"6","count":2},{"id":"10","count":2}]},{"inclusive_time":5,"id":"212","highest_child_id":687,"first_entry_time":25038,"exclusive_time":4,"entries":2},{"inclusive_time":1,"id":"207","highest_child_id":688,"first_entry_time":38764,"exclusive_time":0,"entries":2}],"allocations":[{"id":"27","count":2}]},{"inclusive_time":10,"id":"298","highest_child_id":691,"first_entry_time":25047,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":1,"id":"299","highest_child_id":690,"first_entry_time":25050,"exclusive_time":0,"entries":1},{"inclusive_time":4,"id":"300","highest_child_id":691,"first_entry_time":25053,"exclusive_time":4,"entries":1,"allocations":[{"id":"183","count":1},{"id":"6","count":1}]}]},{"inclusive_time":10,"id":"239","highest_child_id":694,"first_entry_time":25069,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":1,"id":"240","highest_child_id":693,"first_entry_time":25072,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":3,"id":"241","highest_child_id":694,"first_entry_time":25076,"exclusive_time":3,"entries":1}]},{"inclusive_time":13022,"id":"311","highest_child_id":1526,"first_entry_time":25282,"exclusive_time":195,"entries":3,"deopt_all":2,"callees":[{"inclusive_time":13,"id":"206","highest_child_id":696,"first_entry_time":25295,"exclusive_time":12,"entries":3,"allocations":[{"id":"185","count":3},{"id":"26","count":3}]},{"inclusive_time":19,"id":"301","highest_child_id":697,"first_entry_time":25308,"exclusive_time":18,"entries":3,"allocations":[{"id":"27","count":3},{"id":"53","count":3}]},{"inclusive_time":57,"id":"207","highest_child_id":704,"first_entry_time":25324,"exclusive_time":49,"entries":7,"callees":[{"inclusive_time":2,"id":"208","highest_child_id":699,"first_entry_time":25327,"exclusive_time":0,"entries":5},{"inclusive_time":2,"id":"209","highest_child_id":700,"first_entry_time":25329,"exclusive_time":0,"entries":5},{"inclusive_time":3,"id":"210","highest_child_id":701,"first_entry_time":25331,"exclusive_time":1,"entries":5},{"inclusive_time":4,"id":"211","highest_child_id":702,"first_entry_time":25333,"exclusive_time":2,"entries":5,"allocations":[{"id":"6","count":5}]},{"inclusive_time":1,"id":"212","highest_child_id":703,"first_entry_time":25335,"exclusive_time":0,"entries":5},{"inclusive_time":1,"id":"207","highest_child_id":704,"first_entry_time":36057,"exclusive_time":0,"entries":2}],"allocations":[{"id":"27","count":5}]},{"inclusive_time":3,"id":"302","highest_child_id":705,"first_entry_time":25338,"exclusive_time":2,"entries":3},{"inclusive_time":111,"id":"312","highest_child_id":717,"first_entry_time":25373,"exclusive_time":43,"entries":3,"callees":[{"inclusive_time":10,"id":"187","highest_child_id":707,"first_entry_time":25378,"exclusive_time":9,"entries":3,"allocations":[{"id":"185","count":3},{"id":"26","count":3}]},{"inclusive_time":53,"id":"313","highest_child_id":714,"first_entry_time":25406,"exclusive_time":16,"entries":3,"callees":[{"inclusive_time":13,"id":"206","highest_child_id":709,"first_entry_time":25408,"exclusive_time":12,"entries":3,"allocations":[{"id":"185","count":3},{"id":"26","count":3}]},{"inclusive_time":19,"id":"239","highest_child_id":712,"first_entry_time":25415,"exclusive_time":11,"entries":3,"callees":[{"inclusive_time":3,"id":"240","highest_child_id":711,"first_entry_time":25418,"exclusive_time":2,"entries":3,"allocations":[{"id":"27","count":3}]},{"inclusive_time":5,"id":"241","highest_child_id":712,"first_entry_time":25422,"exclusive_time":4,"entries":3}]},{"inclusive_time":3,"id":"228","highest_child_id":713,"first_entry_time":25427,"exclusive_time":2,"entries":2},{"inclusive_time":2,"id":"243","highest_child_id":714,"first_entry_time":38706,"exclusive_time":1,"entries":1}]},{"inclusive_time":5,"id":"243","highest_child_id":717,"first_entry_time":38709,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":2,"id":"244","highest_child_id":717,"first_entry_time":38711,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"189","highest_child_id":717,"first_entry_time":38713,"exclusive_time":0,"entries":1}]}]}],"allocations":[{"id":"173","count":3}]},{"inclusive_time":16,"id":"314","highest_child_id":720,"first_entry_time":25453,"exclusive_time":6,"entries":2,"callees":[{"inclusive_time":8,"id":"206","highest_child_id":719,"first_entry_time":25454,"exclusive_time":7,"entries":2,"allocations":[{"id":"185","count":2},{"id":"26","count":2}]},{"inclusive_time":2,"id":"228","highest_child_id":720,"first_entry_time":25461,"exclusive_time":2,"entries":2}]},{"inclusive_time":2,"id":"293","highest_child_id":721,"first_entry_time":25466,"exclusive_time":1,"entries":2,"allocations":[{"id":"27","count":2}]},{"inclusive_time":19,"id":"239","highest_child_id":724,"first_entry_time":25472,"exclusive_time":7,"entries":2,"callees":[{"inclusive_time":2,"id":"240","highest_child_id":723,"first_entry_time":25474,"exclusive_time":1,"entries":2,"allocations":[{"id":"27","count":2}]},{"inclusive_time":10,"id":"241","highest_child_id":724,"first_entry_time":25477,"exclusive_time":9,"entries":2}]},{"inclusive_time":12272,"id":"315","highest_child_id":1489,"first_entry_time":25498,"exclusive_time":152,"entries":2,"callees":[{"inclusive_time":12120,"id":"316","highest_child_id":1489,"first_entry_time":25648,"exclusive_time":304,"entries":2,"callees":[{"inclusive_time":8,"id":"187","highest_child_id":727,"first_entry_time":25653,"exclusive_time":7,"entries":2,"allocations":[{"id":"185","count":2},{"id":"26","count":2}]},{"inclusive_time":11622,"id":"317","highest_child_id":1454,"first_entry_time":25910,"exclusive_time":99,"entries":2,"callees":[{"inclusive_time":9,"id":"206","highest_child_id":729,"first_entry_time":25914,"exclusive_time":8,"entries":2,"allocations":[{"id":"185","count":2},{"id":"26","count":2}]},{"inclusive_time":6,"id":"237","highest_child_id":730,"first_entry_time":25925,"exclusive_time":5,"entries":4},{"inclusive_time":40,"id":"239","highest_child_id":733,"first_entry_time":25930,"exclusive_time":7,"entries":2,"callees":[{"inclusive_time":2,"id":"240","highest_child_id":732,"first_entry_time":25932,"exclusive_time":2,"entries":2,"allocations":[{"id":"27","count":2}]},{"inclusive_time":30,"id":"241","highest_child_id":733,"first_entry_time":25936,"exclusive_time":30,"entries":2}]},{"inclusive_time":41,"id":"318","highest_child_id":741,"first_entry_time":25980,"exclusive_time":11,"entries":2,"callees":[{"inclusive_time":9,"id":"206","highest_child_id":735,"first_entry_time":25982,"exclusive_time":8,"entries":2,"allocations":[{"id":"185","count":2},{"id":"26","count":2}]},{"inclusive_time":11,"id":"207","highest_child_id":738,"first_entry_time":25989,"exclusive_time":10,"entries":2,"callees":[{"inclusive_time":1,"id":"208","highest_child_id":737,"first_entry_time":25992,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"209","highest_child_id":738,"first_entry_time":25994,"exclusive_time":0,"entries":2}]},{"inclusive_time":10,"id":"243","highest_child_id":741,"first_entry_time":25999,"exclusive_time":5,"entries":2,"callees":[{"inclusive_time":5,"id":"244","highest_child_id":741,"first_entry_time":26002,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":1,"id":"189","highest_child_id":741,"first_entry_time":26003,"exclusive_time":0,"entries":2}]}]}]},{"inclusive_time":11188,"id":"319","highest_child_id":1410,"first_entry_time":26015,"exclusive_time":32,"entries":2,"callees":[{"inclusive_time":11156,"id":"320","highest_child_id":1410,"first_entry_time":26046,"exclusive_time":463,"entries":2,"callees":[{"inclusive_time":2,"id":"240","highest_child_id":744,"first_entry_time":26050,"exclusive_time":1,"entries":2},{"inclusive_time":27,"id":"321","highest_child_id":745,"first_entry_time":26065,"exclusive_time":26,"entries":2,"allocations":[{"id":"26","count":2}]},{"inclusive_time":1,"id":"322","highest_child_id":746,"first_entry_time":26089,"exclusive_time":0,"entries":2},{"inclusive_time":10663,"id":"323","highest_child_id":1410,"first_entry_time":26518,"exclusive_time":412,"entries":2,"callees":[{"inclusive_time":9,"id":"206","highest_child_id":748,"first_entry_time":26523,"exclusive_time":9,"entries":2,"allocations":[{"id":"185","count":2},{"id":"26","count":2}]},{"inclusive_time":640,"id":"324","highest_child_id":799,"first_entry_time":26582,"exclusive_time":98,"entries":2,"callees":[{"inclusive_time":11,"id":"206","highest_child_id":750,"first_entry_time":26584,"exclusive_time":10,"entries":2,"allocations":[{"id":"185","count":2},{"id":"26","count":2}]},{"inclusive_time":413,"id":"325","highest_child_id":783,"first_entry_time":26663,"exclusive_time":164,"entries":2,"callees":[{"inclusive_time":12,"id":"206","highest_child_id":752,"first_entry_time":26665,"exclusive_time":12,"entries":2,"allocations":[{"id":"185","count":2},{"id":"26","count":2}]},{"inclusive_time":16,"id":"239","highest_child_id":755,"first_entry_time":26678,"exclusive_time":8,"entries":2,"callees":[{"inclusive_time":2,"id":"240","highest_child_id":754,"first_entry_time":26681,"exclusive_time":2,"entries":2,"allocations":[{"id":"27","count":2}]},{"inclusive_time":5,"id":"241","highest_child_id":755,"first_entry_time":26685,"exclusive_time":5,"entries":2}]},{"inclusive_time":127,"id":"326","highest_child_id":766,"first_entry_time":26727,"exclusive_time":52,"entries":2,"callees":[{"inclusive_time":8,"id":"206","highest_child_id":757,"first_entry_time":26728,"exclusive_time":7,"entries":2,"allocations":[{"id":"185","count":2},{"id":"26","count":2}]},{"inclusive_time":30,"id":"327","highest_child_id":760,"first_entry_time":26756,"exclusive_time":20,"entries":2,"callees":[{"inclusive_time":7,"id":"187","highest_child_id":759,"first_entry_time":26760,"exclusive_time":6,"entries":2,"allocations":[{"id":"185","count":2},{"id":"26","count":2}]},{"inclusive_time":3,"id":"328","highest_child_id":760,"first_entry_time":26776,"exclusive_time":2,"entries":2}]},{"inclusive_time":17,"id":"329","highest_child_id":763,"first_entry_time":26800,"exclusive_time":7,"entries":2,"callees":[{"inclusive_time":7,"id":"206","highest_child_id":762,"first_entry_time":26801,"exclusive_time":6,"entries":2,"allocations":[{"id":"185","count":2},{"id":"26","count":2}]},{"inclusive_time":3,"id":"228","highest_child_id":763,"first_entry_time":26808,"exclusive_time":2,"entries":2}]},{"inclusive_time":19,"id":"243","highest_child_id":766,"first_entry_time":26812,"exclusive_time":4,"entries":2,"callees":[{"inclusive_time":15,"id":"244","highest_child_id":766,"first_entry_time":26815,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":11,"id":"189","highest_child_id":766,"first_entry_time":26816,"exclusive_time":11,"entries":2}]}]}]},{"inclusive_time":10,"id":"252","highest_child_id":767,"first_entry_time":26820,"exclusive_time":9,"entries":2,"allocations":[{"id":"10","count":2}]},{"inclusive_time":22,"id":"330","highest_child_id":770,"first_entry_time":26929,"exclusive_time":11,"entries":2,"callees":[{"inclusive_time":8,"id":"206","highest_child_id":769,"first_entry_time":26933,"exclusive_time":7,"entries":2,"allocations":[{"id":"185","count":2},{"id":"26","count":2}]},{"inclusive_time":3,"id":"228","highest_child_id":770,"first_entry_time":26941,"exclusive_time":2,"entries":2}],"allocations":[{"id":"2","count":2},{"id":"27","count":2}]},{"inclusive_time":63,"id":"243","highest_child_id":783,"first_entry_time":26947,"exclusive_time":4,"entries":2,"callees":[{"inclusive_time":58,"id":"244","highest_child_id":783,"first_entry_time":26950,"exclusive_time":14,"entries":2,"callees":[{"inclusive_time":1,"id":"189","highest_child_id":773,"first_entry_time":26951,"exclusive_time":0,"entries":2},{"inclusive_time":42,"id":"207","highest_child_id":782,"first_entry_time":26953,"exclusive_time":24,"entries":2,"callees":[{"inclusive_time":1,"id":"208","highest_child_id":775,"first_entry_time":26956,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"209","highest_child_id":776,"first_entry_time":26958,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"210","highest_child_id":777,"first_entry_time":26960,"exclusive_time":0,"entries":2},{"inclusive_time":6,"id":"211","highest_child_id":778,"first_entry_time":26961,"exclusive_time":5,"entries":2,"allocations":[{"id":"6","count":2},{"id":"10","count":2}]},{"inclusive_time":0,"id":"212","highest_child_id":779,"first_entry_time":26966,"exclusive_time":0,"entries":2},{"inclusive_time":10,"id":"207","highest_child_id":782,"first_entry_time":26969,"exclusive_time":8,"entries":2,"callees":[{"inclusive_time":1,"id":"208","highest_child_id":781,"first_entry_time":26972,"exclusive_time":0,"entries":2},{"inclusive_time":0,"id":"209","highest_child_id":782,"first_entry_time":26973,"exclusive_time":0,"entries":2}]}],"allocations":[{"id":"27","count":2}]},{"inclusive_time":1,"id":"331","highest_child_id":783,"first_entry_time":26986,"exclusive_time":0,"entries":2}]}]}]},{"inclusive_time":12,"id":"252","highest_child_id":784,"first_entry_time":26990,"exclusive_time":11,"entries":2,"allocations":[{"id":"10","count":2}]},{"inclusive_time":27,"id":"207","highest_child_id":791,"first_entry_time":26996,"exclusive_time":19,"entries":2,"callees":[{"inclusive_time":1,"id":"208","highest_child_id":786,"first_entry_time":26998,"exclusive_time":0,"entries":2},{"inclusive_time":0,"id":"209","highest_child_id":787,"first_entry_time":26999,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"210","highest_child_id":788,"first_entry_time":27001,"exclusive_time":0,"entries":2},{"inclusive_time":5,"id":"211","highest_child_id":789,"first_entry_time":27002,"exclusive_time":4,"entries":2,"allocations":[{"id":"6","count":2},{"id":"10","count":2}]},{"inclusive_time":0,"id":"212","highest_child_id":790,"first_entry_time":27006,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"207","highest_child_id":791,"first_entry_time":27009,"exclusive_time":0,"entries":2}],"allocations":[{"id":"27","count":2}]},{"inclusive_time":71,"id":"312","highest_child_id":796,"first_entry_time":27013,"exclusive_time":47,"entries":2,"callees":[{"inclusive_time":7,"id":"187","highest_child_id":793,"first_entry_time":27017,"exclusive_time":7,"entries":2,"allocations":[{"id":"185","count":2},{"id":"26","count":2}]},{"inclusive_time":16,"id":"332","highest_child_id":796,"first_entry_time":27058,"exclusive_time":6,"entries":2,"callees":[{"inclusive_time":7,"id":"206","highest_child_id":795,"first_entry_time":27060,"exclusive_time":6,"entries":2,"allocations":[{"id":"185","count":2},{"id":"26","count":2}]},{"inclusive_time":2,"id":"228","highest_child_id":796,"first_entry_time":27067,"exclusive_time":2,"entries":2}]}],"allocations":[{"id":"173","count":2}]},{"inclusive_time":8,"id":"243","highest_child_id":799,"first_entry_time":27072,"exclusive_time":4,"entries":2,"callees":[{"inclusive_time":4,"id":"244","highest_child_id":799,"first_entry_time":27075,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":1,"id":"189","highest_child_id":799,"first_entry_time":27076,"exclusive_time":0,"entries":2}]}]}]},{"inclusive_time":16,"id":"252","highest_child_id":800,"first_entry_time":27079,"exclusive_time":15,"entries":4,"allocations":[{"id":"10","count":2}]},{"inclusive_time":79,"id":"207","highest_child_id":813,"first_entry_time":27086,"exclusive_time":46,"entries":6,"callees":[{"inclusive_time":1,"id":"208","highest_child_id":802,"first_entry_time":27088,"exclusive_time":0,"entries":4},{"inclusive_time":1,"id":"209","highest_child_id":803,"first_entry_time":27089,"exclusive_time":0,"entries":4},{"inclusive_time":2,"id":"210","highest_child_id":804,"first_entry_time":27091,"exclusive_time":1,"entries":4},{"inclusive_time":3,"id":"211","highest_child_id":805,"first_entry_time":27092,"exclusive_time":2,"entries":4,"allocations":[{"id":"6","count":4}]},{"inclusive_time":1,"id":"212","highest_child_id":806,"first_entry_time":27094,"exclusive_time":0,"entries":4},{"inclusive_time":29,"id":"207","highest_child_id":813,"first_entry_time":27097,"exclusive_time":20,"entries":6,"callees":[{"inclusive_time":0,"id":"208","highest_child_id":808,"first_entry_time":27100,"exclusive_time":0,"entries":2},{"inclusive_time":0,"id":"209","highest_child_id":809,"first_entry_time":27101,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"210","highest_child_id":810,"first_entry_time":27103,"exclusive_time":0,"entries":2},{"inclusive_time":4,"id":"211","highest_child_id":811,"first_entry_time":27104,"exclusive_time":4,"entries":2,"allocations":[{"id":"6","count":2},{"id":"10","count":2}]},{"inclusive_time":0,"id":"212","highest_child_id":812,"first_entry_time":27107,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"207","highest_child_id":813,"first_entry_time":27110,"exclusive_time":0,"entries":2}],"allocations":[{"id":"27","count":2}]}],"allocations":[{"id":"27","count":4}]},{"inclusive_time":72,"id":"333","highest_child_id":819,"first_entry_time":27215,"exclusive_time":39,"entries":2,"callees":[{"inclusive_time":12,"id":"234","highest_child_id":816,"first_entry_time":27220,"exclusive_time":11,"entries":2,"callees":[{"inclusive_time":1,"id":"335","highest_child_id":816,"first_entry_time":27229,"exclusive_time":0,"entries":2}]},{"inclusive_time":20,"id":"336","highest_child_id":818,"first_entry_time":27248,"exclusive_time":17,"entries":2,"callees":[{"inclusive_time":2,"id":"337","highest_child_id":818,"first_entry_time":27261,"exclusive_time":1,"entries":2}],"allocations":[{"id":"53","count":2}]},{"inclusive_time":2,"id":"338","highest_child_id":819,"first_entry_time":27273,"exclusive_time":1,"entries":2,"allocations":[{"id":"27","count":2}]}],"allocations":[{"id":"10","count":4},{"id":"334","count":2}]},{"inclusive_time":2,"id":"233","highest_child_id":820,"first_entry_time":27278,"exclusive_time":1,"entries":4},{"inclusive_time":40,"id":"336","highest_child_id":822,"first_entry_time":27280,"exclusive_time":34,"entries":10,"callees":[{"inclusive_time":6,"id":"337","highest_child_id":822,"first_entry_time":27282,"exclusive_time":3,"entries":10}],"allocations":[{"id":"53","count":10},{"id":"28","count":1}]},{"inclusive_time":6,"id":"339","highest_child_id":823,"first_entry_time":27306,"exclusive_time":6,"entries":2,"allocations":[{"id":"25","count":2}]},{"inclusive_time":1,"id":"340","highest_child_id":824,"first_entry_time":27319,"exclusive_time":1,"entries":2},{"inclusive_time":2,"id":"341","highest_child_id":825,"first_entry_time":27330,"exclusive_time":1,"entries":4},{"inclusive_time":161,"id":"342","highest_child_id":833,"first_entry_time":27344,"exclusive_time":78,"entries":2,"callees":[{"inclusive_time":83,"id":"343","highest_child_id":833,"first_entry_time":27420,"exclusive_time":6,"entries":2,"callees":[{"inclusive_time":77,"id":"256","highest_child_id":833,"first_entry_time":27424,"exclusive_time":65,"entries":2,"callees":[{"inclusive_time":1,"id":"216","highest_child_id":829,"first_entry_time":27430,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"257","highest_child_id":830,"first_entry_time":27432,"exclusive_time":0,"entries":2},{"inclusive_time":6,"id":"251","highest_child_id":831,"first_entry_time":27435,"exclusive_time":4,"entries":4,"allocations":[{"id":"6","count":4}]},{"inclusive_time":3,"id":"344","highest_child_id":832,"first_entry_time":27453,"exclusive_time":2,"entries":4},{"inclusive_time":2,"id":"345","highest_child_id":833,"first_entry_time":27472,"exclusive_time":2,"entries":2}],"allocations":[{"id":"53","count":2}]}]}]},{"inclusive_time":148,"id":"346","highest_child_id":847,"first_entry_time":27516,"exclusive_time":28,"entries":2,"callees":[{"inclusive_time":20,"id":"347","highest_child_id":836,"first_entry_time":27526,"exclusive_time":16,"entries":2,"callees":[{"inclusive_time":4,"id":"348","highest_child_id":836,"first_entry_time":27541,"exclusive_time":3,"entries":2}]},{"inclusive_time":52,"id":"343","highest_child_id":843,"first_entry_time":27546,"exclusive_time":4,"entries":2,"callees":[{"inclusive_time":48,"id":"256","highest_child_id":843,"first_entry_time":27548,"exclusive_time":39,"entries":2,"callees":[{"inclusive_time":1,"id":"216","highest_child_id":839,"first_entry_time":27551,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"257","highest_child_id":840,"first_entry_time":27553,"exclusive_time":0,"entries":2},{"inclusive_time":4,"id":"251","highest_child_id":841,"first_entry_time":27555,"exclusive_time":3,"entries":4,"allocations":[{"id":"6","count":4}]},{"inclusive_time":2,"id":"344","highest_child_id":842,"first_entry_time":27562,"exclusive_time":1,"entries":4},{"inclusive_time":2,"id":"349","highest_child_id":843,"first_entry_time":27579,"exclusive_time":1,"entries":2}],"allocations":[{"id":"53","count":2}]}]},{"inclusive_time":49,"id":"350","highest_child_id":847,"first_entry_time":27593,"exclusive_time":37,"entries":2,"callees":[{"inclusive_time":1,"id":"216","highest_child_id":845,"first_entry_time":27595,"exclusive_time":0,"entries":2},{"inclusive_time":11,"id":"351","highest_child_id":847,"first_entry_time":27629,"exclusive_time":7,"entries":2,"callees":[{"inclusive_time":4,"id":"251","highest_child_id":847,"first_entry_time":27632,"exclusive_time":3,"entries":4,"allocations":[{"id":"6","count":4}]}]}]}]},{"inclusive_time":7794,"id":"352","highest_child_id":1325,"first_entry_time":27726,"exclusive_time":72,"entries":2,"callees":[{"inclusive_time":12,"id":"206","highest_child_id":849,"first_entry_time":27729,"exclusive_time":12,"entries":2,"allocations":[{"id":"185","count":2},{"id":"26","count":2}]},{"inclusive_time":3,"id":"237","highest_child_id":850,"first_entry_time":27738,"exclusive_time":3,"entries":2},{"inclusive_time":17,"id":"239","highest_child_id":853,"first_entry_time":27742,"exclusive_time":8,"entries":2,"callees":[{"inclusive_time":2,"id":"240","highest_child_id":852,"first_entry_time":27744,"exclusive_time":2,"entries":2,"allocations":[{"id":"27","count":2}]},{"inclusive_time":6,"id":"241","highest_child_id":853,"first_entry_time":27748,"exclusive_time":5,"entries":2}]},{"inclusive_time":7593,"id":"353","highest_child_id":1309,"first_entry_time":27800,"exclusive_time":70,"entries":2,"callees":[{"inclusive_time":8,"id":"206","highest_child_id":855,"first_entry_time":27802,"exclusive_time":8,"entries":2,"allocations":[{"id":"185","count":2},{"id":"26","count":2}]},{"inclusive_time":123,"id":"230","highest_child_id":875,"first_entry_time":27810,"exclusive_time":8,"entries":2,"callees":[{"inclusive_time":15,"id":"231","highest_child_id":859,"first_entry_time":27811,"exclusive_time":13,"entries":2,"callees":[{"inclusive_time":2,"id":"233","highest_child_id":858,"first_entry_time":27813,"exclusive_time":0,"entries":4},{"inclusive_time":1,"id":"232","highest_child_id":859,"first_entry_time":27821,"exclusive_time":0,"entries":2}]},{"inclusive_time":2,"id":"234","highest_child_id":860,"first_entry_time":27824,"exclusive_time":2,"entries":2},{"inclusive_time":98,"id":"235","highest_child_id":875,"first_entry_time":27827,"exclusive_time":26,"entries":2,"callees":[{"inclusive_time":7,"id":"206","highest_child_id":862,"first_entry_time":27828,"exclusive_time":6,"entries":2,"allocations":[{"id":"185","count":2},{"id":"26","count":2}]},{"inclusive_time":4,"id":"236","highest_child_id":863,"first_entry_time":27834,"exclusive_time":3,"entries":4,"allocations":[{"id":"173","count":4}]},{"inclusive_time":3,"id":"237","highest_child_id":864,"first_entry_time":27837,"exclusive_time":2,"entries":2},{"inclusive_time":3,"id":"238","highest_child_id":865,"first_entry_time":27840,"exclusive_time":3,"entries":2},{"inclusive_time":19,"id":"239","highest_child_id":868,"first_entry_time":27844,"exclusive_time":10,"entries":2,"callees":[{"inclusive_time":2,"id":"240","highest_child_id":867,"first_entry_time":27846,"exclusive_time":1,"entries":2,"allocations":[{"id":"27","count":2}]},{"inclusive_time":6,"id":"241","highest_child_id":868,"first_entry_time":27849,"exclusive_time":5,"entries":2}]},{"inclusive_time":27,"id":"242","highest_child_id":872,"first_entry_time":27857,"exclusive_time":23,"entries":2,"callees":[{"inclusive_time":2,"id":"309","highest_child_id":870,"first_entry_time":27867,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"233","highest_child_id":871,"first_entry_time":27870,"exclusive_time":0,"entries":2},{"inclusive_time":2,"id":"310","highest_child_id":872,"first_entry_time":27879,"exclusive_time":1,"entries":2}]},{"inclusive_time":9,"id":"243","highest_child_id":875,"first_entry_time":27884,"exclusive_time":4,"entries":2,"callees":[{"inclusive_time":4,"id":"244","highest_child_id":875,"first_entry_time":27887,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":1,"id":"189","highest_child_id":875,"first_entry_time":27888,"exclusive_time":0,"entries":2}]}]}]}]},{"inclusive_time":3,"id":"237","highest_child_id":876,"first_entry_time":27891,"exclusive_time":2,"entries":2},{"inclusive_time":17,"id":"239","highest_child_id":879,"first_entry_time":27894,"exclusive_time":11,"entries":2,"callees":[{"inclusive_time":2,"id":"240","highest_child_id":878,"first_entry_time":27896,"exclusive_time":2,"entries":2,"allocations":[{"id":"27","count":2}]},{"inclusive_time":4,"id":"241","highest_child_id":879,"first_entry_time":27903,"exclusive_time":3,"entries":2}]},{"inclusive_time":47,"id":"354","highest_child_id":887,"first_entry_time":27948,"exclusive_time":15,"entries":2,"callees":[{"inclusive_time":8,"id":"206","highest_child_id":881,"first_entry_time":27949,"exclusive_time":7,"entries":2,"allocations":[{"id":"185","count":2},{"id":"26","count":2}]},{"inclusive_time":5,"id":"231","highest_child_id":883,"first_entry_time":27957,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":1,"id":"232","highest_child_id":883,"first_entry_time":27959,"exclusive_time":0,"entries":2}]},{"inclusive_time":13,"id":"239","highest_child_id":886,"first_entry_time":27962,"exclusive_time":7,"entries":2,"callees":[{"inclusive_time":2,"id":"240","highest_child_id":885,"first_entry_time":27964,"exclusive_time":1,"entries":2,"allocations":[{"id":"27","count":2}]},{"inclusive_time":4,"id":"241","highest_child_id":886,"first_entry_time":27967,"exclusive_time":3,"entries":2}]},{"inclusive_time":6,"id":"228","highest_child_id":887,"first_entry_time":27972,"exclusive_time":5,"entries":2}]},{"inclusive_time":7025,"id":"315","highest_child_id":1284,"first_entry_time":27976,"exclusive_time":5,"entries":2,"callees":[{"inclusive_time":7020,"id":"316","highest_child_id":1284,"first_entry_time":27978,"exclusive_time":354,"entries":2,"callees":[{"inclusive_time":7,"id":"187","highest_child_id":890,"first_entry_time":27981,"exclusive_time":6,"entries":2,"allocations":[{"id":"185","count":2},{"id":"26","count":2}]},{"inclusive_time":5790,"id":"317","highest_child_id":1233,"first_entry_time":27987,"exclusive_time":325,"entries":2,"callees":[{"inclusive_time":7,"id":"206","highest_child_id":892,"first_entry_time":27989,"exclusive_time":6,"entries":2,"allocations":[{"id":"185","count":2},{"id":"26","count":2}]},{"inclusive_time":5,"id":"237","highest_child_id":893,"first_entry_time":27997,"exclusive_time":4,"entries":4},{"inclusive_time":33,"id":"239","highest_child_id":896,"first_entry_time":28001,"exclusive_time":11,"entries":2,"callees":[{"inclusive_time":2,"id":"240","highest_child_id":895,"first_entry_time":28003,"exclusive_time":1,"entries":2,"allocations":[{"id":"27","count":2}]},{"inclusive_time":19,"id":"241","highest_child_id":896,"first_entry_time":28005,"exclusive_time":19,"entries":2}]},{"inclusive_time":40,"id":"318","highest_child_id":904,"first_entry_time":28023,"exclusive_time":10,"entries":2,"callees":[{"inclusive_time":10,"id":"206","highest_child_id":898,"first_entry_time":28024,"exclusive_time":9,"entries":2,"allocations":[{"id":"185","count":2},{"id":"26","count":2}]},{"inclusive_time":11,"id":"207","highest_child_id":901,"first_entry_time":28034,"exclusive_time":10,"entries":2,"callees":[{"inclusive_time":1,"id":"208","highest_child_id":900,"first_entry_time":28037,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"209","highest_child_id":901,"first_entry_time":28038,"exclusive_time":0,"entries":2}]},{"inclusive_time":9,"id":"243","highest_child_id":904,"first_entry_time":28043,"exclusive_time":4,"entries":2,"callees":[{"inclusive_time":4,"id":"244","highest_child_id":904,"first_entry_time":28045,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":1,"id":"189","highest_child_id":904,"first_entry_time":28046,"exclusive_time":0,"entries":2}]}]}]},{"inclusive_time":5050,"id":"319","highest_child_id":1189,"first_entry_time":28049,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":5048,"id":"320","highest_child_id":1189,"first_entry_time":28051,"exclusive_time":47,"entries":2,"callees":[{"inclusive_time":1,"id":"240","highest_child_id":907,"first_entry_time":28053,"exclusive_time":1,"entries":2},{"inclusive_time":17,"id":"321","highest_child_id":908,"first_entry_time":28055,"exclusive_time":17,"entries":2,"allocations":[{"id":"26","count":2}]},{"inclusive_time":1,"id":"322","highest_child_id":909,"first_entry_time":28066,"exclusive_time":0,"entries":2},{"inclusive_time":4982,"id":"355","highest_child_id":1189,"first_entry_time":28097,"exclusive_time":20,"entries":2,"callees":[{"inclusive_time":8,"id":"206","highest_child_id":911,"first_entry_time":28099,"exclusive_time":7,"entries":2,"allocations":[{"id":"185","count":2},{"id":"26","count":2}]},{"inclusive_time":4865,"id":"356","highest_child_id":1175,"first_entry_time":28114,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":4862,"id":"320","highest_child_id":1175,"first_entry_time":28116,"exclusive_time":40,"entries":2,"callees":[{"inclusive_time":2,"id":"240","highest_child_id":914,"first_entry_time":28118,"exclusive_time":1,"entries":2},{"inclusive_time":6,"id":"321","highest_child_id":915,"first_entry_time":28120,"exclusive_time":5,"entries":2,"allocations":[{"id":"26","count":2}]},{"inclusive_time":1,"id":"322","highest_child_id":916,"first_entry_time":28125,"exclusive_time":0,"entries":2},{"inclusive_time":4814,"id":"357","highest_child_id":1175,"first_entry_time":28154,"exclusive_time":23,"entries":2,"callees":[{"inclusive_time":7,"id":"206","highest_child_id":918,"first_entry_time":28155,"exclusive_time":6,"entries":2,"allocations":[{"id":"185","count":2},{"id":"26","count":2}]},{"inclusive_time":4719,"id":"358","highest_child_id":1161,"first_entry_time":28174,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":4717,"id":"320","highest_child_id":1161,"first_entry_time":28176,"exclusive_time":82,"entries":2,"callees":[{"inclusive_time":1,"id":"240","highest_child_id":921,"first_entry_time":28178,"exclusive_time":1,"entries":2},{"inclusive_time":4,"id":"321","highest_child_id":922,"first_entry_time":28181,"exclusive_time":4,"entries":2,"allocations":[{"id":"26","count":2}]},{"inclusive_time":1,"id":"322","highest_child_id":923,"first_entry_time":28185,"exclusive_time":0,"entries":2},{"inclusive_time":4628,"id":"359","highest_child_id":1161,"first_entry_time":28255,"exclusive_time":72,"entries":2,"callees":[{"inclusive_time":8,"id":"206","highest_child_id":925,"first_entry_time":28257,"exclusive_time":7,"entries":2,"allocations":[{"id":"185","count":2},{"id":"26","count":2}]},{"inclusive_time":3,"id":"237","highest_child_id":926,"first_entry_time":28266,"exclusive_time":2,"entries":2},{"inclusive_time":2,"id":"293","highest_child_id":927,"first_entry_time":28270,"exclusive_time":1,"entries":2,"allocations":[{"id":"27","count":2}]},{"inclusive_time":2133,"id":"360","highest_child_id":1047,"first_entry_time":28302,"exclusive_time":128,"entries":2,"callees":[{"inclusive_time":34,"id":"361","highest_child_id":931,"first_entry_time":28344,"exclusive_time":32,"entries":2,"callees":[{"inclusive_time":2,"id":"362","highest_child_id":930,"first_entry_time":28357,"exclusive_time":1,"entries":4},{"inclusive_time":1,"id":"338","highest_child_id":931,"first_entry_time":28362,"exclusive_time":0,"entries":2}],"allocations":[{"id":"10","count":2},{"id":"25","count":4},{"id":"53","count":2},{"id":"27","count":2}]},{"inclusive_time":1,"id":"363","highest_child_id":932,"first_entry_time":28379,"exclusive_time":1,"entries":2},{"inclusive_time":1965,"id":"364","highest_child_id":1045,"first_entry_time":28438,"exclusive_time":64,"entries":1,"callees":[{"inclusive_time":1,"id":"296","highest_child_id":934,"first_entry_time":28441,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"233","highest_child_id":935,"first_entry_time":28443,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"297","highest_child_id":936,"first_entry_time":28446,"exclusive_time":0,"entries":1},{"inclusive_time":13,"id":"184","highest_child_id":939,"first_entry_time":28448,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":2,"id":"182","highest_child_id":938,"first_entry_time":28453,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":2},{"id":"183","count":1}]},{"inclusive_time":4,"id":"187","highest_child_id":939,"first_entry_time":28458,"exclusive_time":3,"entries":1,"allocations":[{"id":"365","count":1},{"id":"26","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"365","count":1}]},{"inclusive_time":16,"id":"298","highest_child_id":942,"first_entry_time":28468,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"299","highest_child_id":941,"first_entry_time":28469,"exclusive_time":0,"entries":1},{"inclusive_time":12,"id":"300","highest_child_id":942,"first_entry_time":28471,"exclusive_time":12,"entries":1,"allocations":[{"id":"183","count":1},{"id":"6","count":1}]}]},{"inclusive_time":95,"id":"366","highest_child_id":947,"first_entry_time":28501,"exclusive_time":25,"entries":1,"callees":[{"inclusive_time":1,"id":"367","highest_child_id":944,"first_entry_time":28513,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":68,"id":"368","highest_child_id":947,"first_entry_time":28528,"exclusive_time":45,"entries":1,"callees":[{"inclusive_time":23,"id":"369","highest_child_id":947,"first_entry_time":28573,"exclusive_time":21,"entries":1,"deopt_all":1,"callees":[{"inclusive_time":2,"id":"370","highest_child_id":947,"first_entry_time":28591,"exclusive_time":1,"entries":1}],"allocations":[{"id":"25","count":1}]}]}]},{"inclusive_time":1,"id":"305","highest_child_id":948,"first_entry_time":28599,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"262","highest_child_id":949,"first_entry_time":28603,"exclusive_time":0,"entries":6},{"inclusive_time":1,"id":"261","highest_child_id":950,"first_entry_time":28610,"exclusive_time":0,"entries":1},{"inclusive_time":3,"id":"301","highest_child_id":951,"first_entry_time":28612,"exclusive_time":2,"entries":1,"allocations":[{"id":"53","count":1}]},{"inclusive_time":1,"id":"302","highest_child_id":952,"first_entry_time":28616,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"192","highest_child_id":953,"first_entry_time":28620,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":1765,"id":"371","highest_child_id":1045,"first_entry_time":28639,"exclusive_time":25,"entries":1,"callees":[{"inclusive_time":38,"id":"372","highest_child_id":958,"first_entry_time":28663,"exclusive_time":12,"entries":1,"callees":[{"inclusive_time":25,"id":"373","highest_child_id":958,"first_entry_time":28675,"exclusive_time":13,"entries":1,"callees":[{"inclusive_time":12,"id":"375","highest_child_id":958,"first_entry_time":28687,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":1,"id":"377","highest_child_id":958,"first_entry_time":28697,"exclusive_time":1,"entries":1}],"allocations":[{"id":"376","count":1}]}],"allocations":[{"id":"10","count":1},{"id":"374","count":1}]}],"allocations":[{"id":"10","count":1}]},{"inclusive_time":1701,"id":"369","highest_child_id":1045,"first_entry_time":28702,"exclusive_time":136,"entries":1,"deopt_all":1,"callees":[{"inclusive_time":1,"id":"370","highest_child_id":960,"first_entry_time":28706,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"378","highest_child_id":961,"first_entry_time":28725,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"362","highest_child_id":962,"first_entry_time":28728,"exclusive_time":0,"entries":1},{"inclusive_time":10,"id":"379","highest_child_id":964,"first_entry_time":28741,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":1,"id":"380","highest_child_id":964,"first_entry_time":28750,"exclusive_time":0,"entries":1}]},{"inclusive_time":51,"id":"381","highest_child_id":968,"first_entry_time":28772,"exclusive_time":24,"entries":1,"callees":[{"inclusive_time":25,"id":"383","highest_child_id":967,"first_entry_time":28784,"exclusive_time":22,"entries":1,"callees":[{"inclusive_time":3,"id":"385","highest_child_id":967,"first_entry_time":28807,"exclusive_time":3,"entries":1,"allocations":[{"id":"10","count":9},{"id":"6","count":1}]}],"allocations":[{"id":"384","count":1}]},{"inclusive_time":1,"id":"386","highest_child_id":968,"first_entry_time":28820,"exclusive_time":1,"entries":1}],"allocations":[{"id":"27","count":1},{"id":"382","count":1},{"id":"6","count":1}]},{"inclusive_time":2,"id":"387","highest_child_id":969,"first_entry_time":28843,"exclusive_time":2,"entries":1,"allocations":[{"id":"25","count":1}]},{"inclusive_time":2,"id":"388","highest_child_id":970,"first_entry_time":28860,"exclusive_time":1,"entries":1,"allocations":[{"id":"25","count":1}]},{"inclusive_time":1496,"id":"389","highest_child_id":1045,"first_entry_time":28904,"exclusive_time":331,"entries":1,"callees":[{"inclusive_time":497,"id":"390","highest_child_id":994,"first_entry_time":28918,"exclusive_time":52,"entries":1,"callees":[{"inclusive_time":445,"id":"391","highest_child_id":994,"first_entry_time":28970,"exclusive_time":103,"entries":1,"callees":[{"inclusive_time":9,"id":"392","highest_child_id":974,"first_entry_time":28986,"exclusive_time":9,"entries":1,"allocations":[{"id":"13","count":1}]},{"inclusive_time":33,"id":"393","highest_child_id":977,"first_entry_time":29009,"exclusive_time":12,"entries":1,"callees":[{"inclusive_time":21,"id":"395","highest_child_id":977,"first_entry_time":29019,"exclusive_time":17,"entries":1,"callees":[{"inclusive_time":3,"id":"397","highest_child_id":977,"first_entry_time":29037,"exclusive_time":2,"entries":1,"allocations":[{"id":"10","count":7},{"id":"6","count":1}]}],"allocations":[{"id":"396","count":1}]}],"allocations":[{"id":"394","count":1}]},{"inclusive_time":1,"id":"398","highest_child_id":978,"first_entry_time":29054,"exclusive_time":1,"entries":2},{"inclusive_time":291,"id":"399","highest_child_id":992,"first_entry_time":29074,"exclusive_time":80,"entries":2,"callees":[{"inclusive_time":3,"id":"400","highest_child_id":980,"first_entry_time":29089,"exclusive_time":2,"entries":2,"allocations":[{"id":"2","count":2},{"id":"401","count":2}]},{"inclusive_time":21,"id":"402","highest_child_id":985,"first_entry_time":29123,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":18,"id":"167","highest_child_id":985,"first_entry_time":29126,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":1,"id":"168","highest_child_id":983,"first_entry_time":29128,"exclusive_time":0,"entries":1,"allocations":[{"id":"403","count":1}]},{"inclusive_time":10,"id":"108","highest_child_id":985,"first_entry_time":29134,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":0,"id":"109","highest_child_id":985,"first_entry_time":29137,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1}]}]},{"inclusive_time":184,"id":"404","highest_child_id":991,"first_entry_time":29180,"exclusive_time":96,"entries":1,"callees":[{"inclusive_time":3,"id":"405","highest_child_id":987,"first_entry_time":29201,"exclusive_time":3,"entries":1,"allocations":[{"id":"10","count":1},{"id":"6","count":1},{"id":"406","count":1}]},{"inclusive_time":84,"id":"407","highest_child_id":991,"first_entry_time":29279,"exclusive_time":74,"entries":1,"callees":[{"inclusive_time":3,"id":"408","highest_child_id":989,"first_entry_time":29295,"exclusive_time":2,"entries":3},{"inclusive_time":3,"id":"409","highest_child_id":990,"first_entry_time":29314,"exclusive_time":3,"entries":1,"allocations":[{"id":"27","count":1},{"id":"53","count":1},{"id":"28","count":1}]},{"inclusive_time":4,"id":"410","highest_child_id":991,"first_entry_time":29359,"exclusive_time":4,"entries":1}],"allocations":[{"id":"27","count":3}]}],"allocations":[{"id":"10","count":5},{"id":"403","count":1},{"id":"25","count":2}]},{"inclusive_time":1,"id":"411","highest_child_id":992,"first_entry_time":29382,"exclusive_time":1,"entries":1}]},{"inclusive_time":4,"id":"412","highest_child_id":993,"first_entry_time":29105,"exclusive_time":3,"entries":2},{"inclusive_time":4,"id":"413","highest_child_id":994,"first_entry_time":29411,"exclusive_time":3,"entries":1,"allocations":[{"id":"10","count":1},{"id":"6","count":1}]}],"allocations":[{"id":"10","count":1},{"id":"25","count":4},{"id":"27","count":2}]}]},{"inclusive_time":96,"id":"414","highest_child_id":1002,"first_entry_time":29473,"exclusive_time":72,"entries":1,"callees":[{"inclusive_time":1,"id":"415","highest_child_id":996,"first_entry_time":29483,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"416","highest_child_id":997,"first_entry_time":29496,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"398","highest_child_id":998,"first_entry_time":29499,"exclusive_time":0,"entries":2},{"inclusive_time":11,"id":"417","highest_child_id":1000,"first_entry_time":29511,"exclusive_time":10,"entries":2,"callees":[{"inclusive_time":1,"id":"418","highest_child_id":1000,"first_entry_time":29520,"exclusive_time":0,"entries":2}]},{"inclusive_time":8,"id":"419","highest_child_id":1001,"first_entry_time":29543,"exclusive_time":8,"entries":2},{"inclusive_time":1,"id":"420","highest_child_id":1002,"first_entry_time":29567,"exclusive_time":1,"entries":1}],"allocations":[{"id":"10","count":1},{"id":"25","count":3},{"id":"27","count":2}]},{"inclusive_time":37,"id":"421","highest_child_id":1016,"first_entry_time":29593,"exclusive_time":13,"entries":1,"callees":[{"inclusive_time":1,"id":"422","highest_child_id":1004,"first_entry_time":29605,"exclusive_time":1,"entries":1},{"inclusive_time":22,"id":"421","highest_child_id":1016,"first_entry_time":29608,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"422","highest_child_id":1006,"first_entry_time":29610,"exclusive_time":1,"entries":1},{"inclusive_time":17,"id":"421","highest_child_id":1016,"first_entry_time":29612,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"422","highest_child_id":1008,"first_entry_time":29614,"exclusive_time":0,"entries":1},{"inclusive_time":14,"id":"421","highest_child_id":1016,"first_entry_time":29616,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"422","highest_child_id":1010,"first_entry_time":29617,"exclusive_time":0,"entries":1},{"inclusive_time":10,"id":"421","highest_child_id":1016,"first_entry_time":29619,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"422","highest_child_id":1012,"first_entry_time":29620,"exclusive_time":0,"entries":1},{"inclusive_time":7,"id":"421","highest_child_id":1016,"first_entry_time":29622,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"422","highest_child_id":1014,"first_entry_time":29624,"exclusive_time":0,"entries":1},{"inclusive_time":3,"id":"421","highest_child_id":1016,"first_entry_time":29625,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"422","highest_child_id":1016,"first_entry_time":29627,"exclusive_time":0,"entries":1}],"allocations":[{"id":"10","count":1}]}],"allocations":[{"id":"10","count":1}]}],"allocations":[{"id":"10","count":1}]}],"allocations":[{"id":"10","count":1}]}],"allocations":[{"id":"10","count":1}]}],"allocations":[{"id":"10","count":1}]}],"allocations":[{"id":"10","count":1}]},{"inclusive_time":2,"id":"423","highest_child_id":1017,"first_entry_time":29679,"exclusive_time":1,"entries":1},{"inclusive_time":33,"id":"424","highest_child_id":1019,"first_entry_time":29702,"exclusive_time":18,"entries":1,"callees":[{"inclusive_time":17,"id":"424","highest_child_id":1019,"first_entry_time":29705,"exclusive_time":15,"entries":7,"allocations":[{"id":"10","count":7},{"id":"25","count":7}]}],"allocations":[{"id":"10","count":1},{"id":"25","count":8}]},{"inclusive_time":3,"id":"425","highest_child_id":1020,"first_entry_time":29744,"exclusive_time":0,"entries":14},{"inclusive_time":51,"id":"426","highest_child_id":1024,"first_entry_time":29778,"exclusive_time":49,"entries":1,"callees":[{"inclusive_time":1,"id":"427","highest_child_id":1022,"first_entry_time":29787,"exclusive_time":0,"entries":1},{"inclusive_time":3,"id":"428","highest_child_id":1023,"first_entry_time":29797,"exclusive_time":0,"entries":7},{"inclusive_time":1,"id":"429","highest_child_id":1024,"first_entry_time":29808,"exclusive_time":0,"entries":4}],"allocations":[{"id":"10","count":1},{"id":"25","count":12}]},{"inclusive_time":152,"id":"430","highest_child_id":1027,"first_entry_time":29849,"exclusive_time":148,"entries":1,"callees":[{"inclusive_time":3,"id":"431","highest_child_id":1026,"first_entry_time":29860,"exclusive_time":2,"entries":1,"allocations":[{"id":"10","count":1},{"id":"25","count":1}]},{"inclusive_time":3,"id":"418","highest_child_id":1027,"first_entry_time":29865,"exclusive_time":1,"entries":7}],"allocations":[{"id":"6","count":1},{"id":"25","count":1},{"id":"222","count":7}]},{"inclusive_time":40,"id":"432","highest_child_id":1030,"first_entry_time":30014,"exclusive_time":29,"entries":1,"callees":[{"inclusive_time":11,"id":"433","highest_child_id":1030,"first_entry_time":30043,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":2,"id":"418","highest_child_id":1030,"first_entry_time":30047,"exclusive_time":0,"entries":5}],"allocations":[{"id":"27","count":1},{"id":"25","count":1}]}]},{"inclusive_time":31,"id":"434","highest_child_id":1035,"first_entry_time":30101,"exclusive_time":27,"entries":1,"callees":[{"inclusive_time":2,"id":"424","highest_child_id":1032,"first_entry_time":30104,"exclusive_time":2,"entries":1,"allocations":[{"id":"10","count":1},{"id":"25","count":1}]},{"inclusive_time":0,"id":"418","highest_child_id":1033,"first_entry_time":30107,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"427","highest_child_id":1034,"first_entry_time":30110,"exclusive_time":0,"entries":1},{"inclusive_time":3,"id":"435","highest_child_id":1035,"first_entry_time":30120,"exclusive_time":0,"entries":7}],"allocations":[{"id":"10","count":2},{"id":"25","count":9}]},{"inclusive_time":222,"id":"436","highest_child_id":1045,"first_entry_time":30178,"exclusive_time":198,"entries":1,"callees":[{"inclusive_time":1,"id":"437","highest_child_id":1037,"first_entry_time":30187,"exclusive_time":1,"entries":1},{"inclusive_time":9,"id":"424","highest_child_id":1038,"first_entry_time":30191,"exclusive_time":7,"entries":7,"allocations":[{"id":"10","count":7},{"id":"25","count":7}]},{"inclusive_time":4,"id":"422","highest_child_id":1039,"first_entry_time":30195,"exclusive_time":2,"entries":7},{"inclusive_time":4,"id":"438","highest_child_id":1040,"first_entry_time":30229,"exclusive_time":0,"entries":14},{"inclusive_time":6,"id":"439","highest_child_id":1041,"first_entry_time":30240,"exclusive_time":2,"entries":14},{"inclusive_time":7,"id":"440","highest_child_id":1042,"first_entry_time":30252,"exclusive_time":2,"entries":14},{"inclusive_time":6,"id":"441","highest_child_id":1043,"first_entry_time":30263,"exclusive_time":1,"entries":14},{"inclusive_time":7,"id":"442","highest_child_id":1044,"first_entry_time":30275,"exclusive_time":2,"entries":14},{"inclusive_time":7,"id":"443","highest_child_id":1045,"first_entry_time":30286,"exclusive_time":2,"entries":14}],"allocations":[{"id":"10","count":15},{"id":"25","count":8},{"id":"6","count":15}]}],"allocations":[{"id":"10","count":1},{"id":"25","count":2}]}],"allocations":[{"id":"25","count":1},{"id":"53","count":3},{"id":"27","count":1}]}]}],"allocations":[{"id":"25","count":2},{"id":"53","count":1},{"id":"222","count":1},{"id":"27","count":1}]},{"inclusive_time":2,"id":"344","highest_child_id":1046,"first_entry_time":30406,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"263","highest_child_id":1047,"first_entry_time":30410,"exclusive_time":1,"entries":2}],"allocations":[{"id":"2","count":2},{"id":"27","count":4},{"id":"10","count":2}]},{"inclusive_time":2316,"id":"444","highest_child_id":1147,"first_entry_time":30429,"exclusive_time":56,"entries":2,"callees":[{"inclusive_time":2,"id":"296","highest_child_id":1049,"first_entry_time":30430,"exclusive_time":1,"entries":2},{"inclusive_time":11,"id":"233","highest_child_id":1050,"first_entry_time":30433,"exclusive_time":10,"entries":2},{"inclusive_time":1,"id":"297","highest_child_id":1051,"first_entry_time":30445,"exclusive_time":0,"entries":2},{"inclusive_time":39,"id":"184","highest_child_id":1054,"first_entry_time":30447,"exclusive_time":15,"entries":2,"callees":[{"inclusive_time":17,"id":"300","highest_child_id":1053,"first_entry_time":30452,"exclusive_time":16,"entries":2,"allocations":[{"id":"183","count":2},{"id":"6","count":2}]},{"inclusive_time":8,"id":"187","highest_child_id":1054,"first_entry_time":30459,"exclusive_time":7,"entries":2,"allocations":[{"id":"382","count":2},{"id":"26","count":2}]}],"allocations":[{"id":"6","count":2},{"id":"382","count":2}]},{"inclusive_time":2204,"id":"445","highest_child_id":1145,"first_entry_time":30496,"exclusive_time":183,"entries":2,"callees":[{"inclusive_time":7,"id":"206","highest_child_id":1056,"first_entry_time":30499,"exclusive_time":6,"entries":2,"allocations":[{"id":"382","count":2},{"id":"26","count":2}]},{"inclusive_time":1586,"id":"446","highest_child_id":1111,"first_entry_time":30678,"exclusive_time":153,"entries":2,"callees":[{"inclusive_time":8,"id":"206","highest_child_id":1058,"first_entry_time":30681,"exclusive_time":7,"entries":2,"allocations":[{"id":"382","count":2},{"id":"26","count":2}]},{"inclusive_time":2,"id":"233","highest_child_id":1059,"first_entry_time":30690,"exclusive_time":0,"entries":6},{"inclusive_time":160,"id":"447","highest_child_id":1069,"first_entry_time":30731,"exclusive_time":76,"entries":6,"callees":[{"inclusive_time":19,"id":"206","highest_child_id":1061,"first_entry_time":30733,"exclusive_time":17,"entries":6,"allocations":[{"id":"382","count":6},{"id":"26","count":6}]},{"inclusive_time":52,"id":"448","highest_child_id":1065,"first_entry_time":30783,"exclusive_time":29,"entries":6,"callees":[{"inclusive_time":20,"id":"187","highest_child_id":1063,"first_entry_time":30786,"exclusive_time":18,"entries":6,"allocations":[{"id":"382","count":6},{"id":"26","count":6}]},{"inclusive_time":3,"id":"194","highest_child_id":1064,"first_entry_time":30792,"exclusive_time":1,"entries":6},{"inclusive_time":2,"id":"328","highest_child_id":1065,"first_entry_time":32087,"exclusive_time":1,"entries":2}],"allocations":[{"id":"27","count":6},{"id":"53","count":6}]},{"inclusive_time":5,"id":"228","highest_child_id":1066,"first_entry_time":30798,"exclusive_time":4,"entries":4},{"inclusive_time":9,"id":"243","highest_child_id":1069,"first_entry_time":32090,"exclusive_time":4,"entries":2,"callees":[{"inclusive_time":4,"id":"244","highest_child_id":1069,"first_entry_time":32092,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":1,"id":"189","highest_child_id":1069,"first_entry_time":32093,"exclusive_time":0,"entries":2}]}]}]},{"inclusive_time":27,"id":"449","highest_child_id":1072,"first_entry_time":30832,"exclusive_time":11,"entries":4,"callees":[{"inclusive_time":12,"id":"206","highest_child_id":1071,"first_entry_time":30835,"exclusive_time":11,"entries":4,"allocations":[{"id":"382","count":4},{"id":"26","count":4}]},{"inclusive_time":4,"id":"228","highest_child_id":1072,"first_entry_time":30841,"exclusive_time":3,"entries":4}]},{"inclusive_time":1200,"id":"450","highest_child_id":1101,"first_entry_time":30853,"exclusive_time":4,"entries":4,"callees":[{"inclusive_time":1195,"id":"320","highest_child_id":1101,"first_entry_time":30855,"exclusive_time":57,"entries":4,"callees":[{"inclusive_time":3,"id":"240","highest_child_id":1075,"first_entry_time":30863,"exclusive_time":1,"entries":4},{"inclusive_time":1121,"id":"451","highest_child_id":1098,"first_entry_time":30891,"exclusive_time":211,"entries":1,"callees":[{"inclusive_time":557,"id":"452","highest_child_id":1084,"first_entry_time":30911,"exclusive_time":25,"entries":1,"callees":[{"inclusive_time":529,"id":"453","highest_child_id":1083,"first_entry_time":30921,"exclusive_time":20,"entries":1,"callees":[{"inclusive_time":508,"id":"454","highest_child_id":1083,"first_entry_time":30941,"exclusive_time":457,"entries":1,"callees":[{"inclusive_time":51,"id":"455","highest_child_id":1081,"first_entry_time":30963,"exclusive_time":47,"entries":1,"callees":[{"inclusive_time":5,"id":"455","highest_child_id":1081,"first_entry_time":30972,"exclusive_time":3,"entries":7}],"allocations":[{"id":"10","count":1},{"id":"25","count":8}]},{"inclusive_time":27,"id":"398","highest_child_id":1082,"first_entry_time":31016,"exclusive_time":0,"entries":89},{"inclusive_time":46,"id":"456","highest_child_id":1083,"first_entry_time":31035,"exclusive_time":0,"entries":195}],"allocations":[{"id":"6","count":1},{"id":"25","count":1},{"id":"27","count":324},{"id":"53","count":40},{"id":"10","count":5}]}]},{"inclusive_time":3,"id":"457","highest_child_id":1084,"first_entry_time":31465,"exclusive_time":2,"entries":1,"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":32,"id":"458","highest_child_id":1090,"first_entry_time":31485,"exclusive_time":14,"entries":1,"callees":[{"inclusive_time":16,"id":"167","highest_child_id":1089,"first_entry_time":31488,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"168","highest_child_id":1087,"first_entry_time":31491,"exclusive_time":0,"entries":1,"allocations":[{"id":"403","count":1}]},{"inclusive_time":11,"id":"108","highest_child_id":1089,"first_entry_time":31493,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":0,"id":"109","highest_child_id":1089,"first_entry_time":31496,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":2,"id":"459","highest_child_id":1090,"first_entry_time":31514,"exclusive_time":2,"entries":2,"allocations":[{"id":"10","count":2}]}],"allocations":[{"id":"10","count":2}]},{"inclusive_time":0,"id":"322","highest_child_id":1091,"first_entry_time":31519,"exclusive_time":0,"entries":1},{"inclusive_time":222,"id":"460","highest_child_id":1097,"first_entry_time":31574,"exclusive_time":114,"entries":6,"callees":[{"inclusive_time":3,"id":"303","highest_child_id":1093,"first_entry_time":31581,"exclusive_time":1,"entries":6},{"inclusive_time":2,"id":"461","highest_child_id":1094,"first_entry_time":31592,"exclusive_time":0,"entries":6},{"inclusive_time":106,"id":"462","highest_child_id":1097,"first_entry_time":31655,"exclusive_time":75,"entries":6,"callees":[{"inclusive_time":4,"id":"459","highest_child_id":1096,"first_entry_time":31658,"exclusive_time":2,"entries":6,"allocations":[{"id":"10","count":6}]},{"inclusive_time":30,"id":"410","highest_child_id":1097,"first_entry_time":31667,"exclusive_time":26,"entries":12,"allocations":[{"id":"28","count":4}]}],"allocations":[{"id":"10","count":23},{"id":"28","count":10}]}],"allocations":[{"id":"6","count":12},{"id":"10","count":6}]},{"inclusive_time":99,"id":"463","highest_child_id":1098,"first_entry_time":31912,"exclusive_time":99,"entries":1,"allocations":[{"id":"26","count":2},{"id":"28","count":5},{"id":"10","count":18}]}],"allocations":[{"id":"25","count":1}]},{"inclusive_time":3,"id":"457","highest_child_id":1099,"first_entry_time":32015,"exclusive_time":3,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":11,"id":"321","highest_child_id":1100,"first_entry_time":32021,"exclusive_time":10,"entries":4,"allocations":[{"id":"308","count":1},{"id":"26","count":4}]},{"inclusive_time":1,"id":"322","highest_child_id":1101,"first_entry_time":32030,"exclusive_time":0,"entries":4}],"allocations":[{"id":"27","count":4}]}]},{"inclusive_time":30,"id":"207","highest_child_id":1107,"first_entry_time":32097,"exclusive_time":17,"entries":2,"callees":[{"inclusive_time":1,"id":"208","highest_child_id":1103,"first_entry_time":32100,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"209","highest_child_id":1104,"first_entry_time":32101,"exclusive_time":0,"entries":2},{"inclusive_time":4,"id":"210","highest_child_id":1105,"first_entry_time":32103,"exclusive_time":3,"entries":2},{"inclusive_time":8,"id":"211","highest_child_id":1106,"first_entry_time":32108,"exclusive_time":7,"entries":2,"allocations":[{"id":"6","count":2},{"id":"10","count":8}]},{"inclusive_time":0,"id":"212","highest_child_id":1107,"first_entry_time":32113,"exclusive_time":0,"entries":2}],"allocations":[{"id":"27","count":2}]},{"inclusive_time":1,"id":"296","highest_child_id":1108,"first_entry_time":32126,"exclusive_time":1,"entries":2},{"inclusive_time":9,"id":"243","highest_child_id":1111,"first_entry_time":32131,"exclusive_time":4,"entries":2,"callees":[{"inclusive_time":4,"id":"244","highest_child_id":1111,"first_entry_time":32133,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":1,"id":"189","highest_child_id":1111,"first_entry_time":32135,"exclusive_time":0,"entries":2}]}]}],"allocations":[{"id":"10","count":2},{"id":"53","count":2},{"id":"27","count":2},{"id":"28","count":3}]},{"inclusive_time":428,"id":"243","highest_child_id":1145,"first_entry_time":32137,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":424,"id":"244","highest_child_id":1145,"first_entry_time":32139,"exclusive_time":77,"entries":2,"callees":[{"inclusive_time":1,"id":"189","highest_child_id":1114,"first_entry_time":32140,"exclusive_time":0,"entries":2},{"inclusive_time":10,"id":"207","highest_child_id":1117,"first_entry_time":32142,"exclusive_time":9,"entries":2,"callees":[{"inclusive_time":0,"id":"208","highest_child_id":1116,"first_entry_time":32144,"exclusive_time":0,"entries":2},{"inclusive_time":0,"id":"209","highest_child_id":1117,"first_entry_time":32146,"exclusive_time":0,"entries":2}]},{"inclusive_time":336,"id":"464","highest_child_id":1145,"first_entry_time":32220,"exclusive_time":55,"entries":2,"callees":[{"inclusive_time":275,"id":"465","highest_child_id":1141,"first_entry_time":32244,"exclusive_time":79,"entries":2,"callees":[{"inclusive_time":179,"id":"466","highest_child_id":1136,"first_entry_time":32306,"exclusive_time":97,"entries":2,"callees":[{"inclusive_time":1,"id":"216","highest_child_id":1121,"first_entry_time":32311,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"467","highest_child_id":1122,"first_entry_time":32321,"exclusive_time":1,"entries":2},{"inclusive_time":10,"id":"468","highest_child_id":1123,"first_entry_time":32349,"exclusive_time":10,"entries":2,"allocations":[{"id":"10","count":2},{"id":"222","count":2}]},{"inclusive_time":5,"id":"469","highest_child_id":1124,"first_entry_time":32373,"exclusive_time":5,"entries":2,"allocations":[{"id":"27","count":2},{"id":"173","count":2},{"id":"25","count":2}]},{"inclusive_time":29,"id":"343","highest_child_id":1130,"first_entry_time":32381,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":26,"id":"256","highest_child_id":1130,"first_entry_time":32384,"exclusive_time":19,"entries":1,"callees":[{"inclusive_time":1,"id":"216","highest_child_id":1127,"first_entry_time":32390,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"257","highest_child_id":1128,"first_entry_time":32392,"exclusive_time":0,"entries":1},{"inclusive_time":3,"id":"251","highest_child_id":1129,"first_entry_time":32394,"exclusive_time":2,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":3,"id":"258","highest_child_id":1130,"first_entry_time":32406,"exclusive_time":3,"entries":1,"allocations":[{"id":"27","count":1}]}]}]},{"inclusive_time":6,"id":"271","highest_child_id":1133,"first_entry_time":32414,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":3,"id":"272","highest_child_id":1133,"first_entry_time":32416,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"273","highest_child_id":1133,"first_entry_time":32418,"exclusive_time":0,"entries":1}]}]},{"inclusive_time":29,"id":"470","highest_child_id":1136,"first_entry_time":32433,"exclusive_time":11,"entries":2,"callees":[{"inclusive_time":17,"id":"221","highest_child_id":1136,"first_entry_time":32439,"exclusive_time":15,"entries":2,"callees":[{"inclusive_time":2,"id":"472","highest_child_id":1136,"first_entry_time":32451,"exclusive_time":1,"entries":2}],"allocations":[{"id":"222","count":2}]}],"allocations":[{"id":"6","count":2},{"id":"471","count":2}]}],"allocations":[{"id":"27","count":6},{"id":"10","count":2},{"id":"6","count":2},{"id":"25","count":2},{"id":"53","count":8},{"id":"57","count":1}]},{"inclusive_time":3,"id":"288","highest_child_id":1137,"first_entry_time":32458,"exclusive_time":3,"entries":2,"allocations":[{"id":"6","count":2},{"id":"289","count":2}]},{"inclusive_time":1,"id":"472","highest_child_id":1138,"first_entry_time":32461,"exclusive_time":1,"entries":2},{"inclusive_time":12,"id":"473","highest_child_id":1141,"first_entry_time":32472,"exclusive_time":6,"entries":2,"callees":[{"inclusive_time":6,"id":"221","highest_child_id":1141,"first_entry_time":32476,"exclusive_time":4,"entries":2,"callees":[{"inclusive_time":2,"id":"472","highest_child_id":1141,"first_entry_time":32479,"exclusive_time":1,"entries":2}],"allocations":[{"id":"222","count":2}]}],"allocations":[{"id":"6","count":2},{"id":"474","count":2}]}]},{"inclusive_time":1,"id":"338","highest_child_id":1142,"first_entry_time":32482,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"475","highest_child_id":1143,"first_entry_time":32491,"exclusive_time":0,"entries":2},{"inclusive_time":2,"id":"223","highest_child_id":1144,"first_entry_time":32494,"exclusive_time":1,"entries":2},{"inclusive_time":2,"id":"476","highest_child_id":1145,"first_entry_time":32504,"exclusive_time":1,"entries":2}],"allocations":[{"id":"10","count":2},{"id":"27","count":4},{"id":"25","count":4}]}]}]}],"allocations":[{"id":"10","count":2}]},{"inclusive_time":5,"id":"477","highest_child_id":1147,"first_entry_time":32517,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":1,"id":"299","highest_child_id":1147,"first_entry_time":32519,"exclusive_time":1,"entries":2}]}],"allocations":[{"id":"28","count":1}]},{"inclusive_time":9,"id":"252","highest_child_id":1148,"first_entry_time":32523,"exclusive_time":8,"entries":2,"allocations":[{"id":"10","count":2}]},{"inclusive_time":86,"id":"243","highest_child_id":1161,"first_entry_time":32530,"exclusive_time":5,"entries":2,"callees":[{"inclusive_time":81,"id":"244","highest_child_id":1161,"first_entry_time":32533,"exclusive_time":25,"entries":2,"callees":[{"inclusive_time":1,"id":"189","highest_child_id":1151,"first_entry_time":32534,"exclusive_time":1,"entries":2},{"inclusive_time":35,"id":"207","highest_child_id":1158,"first_entry_time":32537,"exclusive_time":29,"entries":2,"callees":[{"inclusive_time":1,"id":"208","highest_child_id":1153,"first_entry_time":32540,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"209","highest_child_id":1154,"first_entry_time":32542,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"210","highest_child_id":1155,"first_entry_time":32544,"exclusive_time":0,"entries":2},{"inclusive_time":2,"id":"211","highest_child_id":1156,"first_entry_time":32550,"exclusive_time":1,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":1,"id":"212","highest_child_id":1157,"first_entry_time":32552,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"207","highest_child_id":1158,"first_entry_time":32556,"exclusive_time":0,"entries":2}],"allocations":[{"id":"27","count":2}]},{"inclusive_time":20,"id":"478","highest_child_id":1161,"first_entry_time":32578,"exclusive_time":16,"entries":2,"callees":[{"inclusive_time":2,"id":"479","highest_child_id":1160,"first_entry_time":32588,"exclusive_time":1,"entries":2},{"inclusive_time":2,"id":"476","highest_child_id":1161,"first_entry_time":32591,"exclusive_time":1,"entries":2}]}]}]}],"allocations":[{"id":"10","count":2},{"id":"27","count":2}]}],"allocations":[{"id":"27","count":2}]}]},{"inclusive_time":8,"id":"252","highest_child_id":1162,"first_entry_time":32596,"exclusive_time":7,"entries":2,"allocations":[{"id":"10","count":2}]},{"inclusive_time":56,"id":"243","highest_child_id":1175,"first_entry_time":32602,"exclusive_time":4,"entries":2,"callees":[{"inclusive_time":52,"id":"244","highest_child_id":1175,"first_entry_time":32604,"exclusive_time":18,"entries":2,"callees":[{"inclusive_time":1,"id":"189","highest_child_id":1165,"first_entry_time":32605,"exclusive_time":0,"entries":2},{"inclusive_time":26,"id":"207","highest_child_id":1172,"first_entry_time":32607,"exclusive_time":21,"entries":2,"callees":[{"inclusive_time":1,"id":"208","highest_child_id":1167,"first_entry_time":32610,"exclusive_time":0,"entries":2},{"inclusive_time":0,"id":"209","highest_child_id":1168,"first_entry_time":32611,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"210","highest_child_id":1169,"first_entry_time":32613,"exclusive_time":0,"entries":2},{"inclusive_time":2,"id":"211","highest_child_id":1170,"first_entry_time":32614,"exclusive_time":1,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":1,"id":"212","highest_child_id":1171,"first_entry_time":32616,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"207","highest_child_id":1172,"first_entry_time":32619,"exclusive_time":0,"entries":2}],"allocations":[{"id":"27","count":2}]},{"inclusive_time":8,"id":"480","highest_child_id":1175,"first_entry_time":32635,"exclusive_time":5,"entries":2,"callees":[{"inclusive_time":1,"id":"479","highest_child_id":1174,"first_entry_time":32637,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"476","highest_child_id":1175,"first_entry_time":32639,"exclusive_time":0,"entries":2}]}]}]}]}],"allocations":[{"id":"27","count":2}]}]},{"inclusive_time":16,"id":"252","highest_child_id":1176,"first_entry_time":32643,"exclusive_time":16,"entries":2,"allocations":[{"id":"10","count":2}]},{"inclusive_time":74,"id":"243","highest_child_id":1189,"first_entry_time":32657,"exclusive_time":4,"entries":2,"callees":[{"inclusive_time":69,"id":"244","highest_child_id":1189,"first_entry_time":32660,"exclusive_time":18,"entries":2,"callees":[{"inclusive_time":1,"id":"189","highest_child_id":1179,"first_entry_time":32661,"exclusive_time":0,"entries":2},{"inclusive_time":42,"id":"207","highest_child_id":1186,"first_entry_time":32663,"exclusive_time":37,"entries":2,"callees":[{"inclusive_time":1,"id":"208","highest_child_id":1181,"first_entry_time":32666,"exclusive_time":0,"entries":2},{"inclusive_time":0,"id":"209","highest_child_id":1182,"first_entry_time":32667,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"210","highest_child_id":1183,"first_entry_time":32669,"exclusive_time":0,"entries":2},{"inclusive_time":2,"id":"211","highest_child_id":1184,"first_entry_time":32670,"exclusive_time":1,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":0,"id":"212","highest_child_id":1185,"first_entry_time":32672,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"207","highest_child_id":1186,"first_entry_time":32676,"exclusive_time":1,"entries":2}],"allocations":[{"id":"27","count":2}]},{"inclusive_time":8,"id":"481","highest_child_id":1189,"first_entry_time":32690,"exclusive_time":5,"entries":2,"callees":[{"inclusive_time":2,"id":"479","highest_child_id":1188,"first_entry_time":32692,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"476","highest_child_id":1189,"first_entry_time":32694,"exclusive_time":1,"entries":2}]}]}]}]}],"allocations":[{"id":"27","count":2}]}]},{"inclusive_time":8,"id":"252","highest_child_id":1190,"first_entry_time":32699,"exclusive_time":7,"entries":2,"allocations":[{"id":"10","count":2}]},{"inclusive_time":31,"id":"207","highest_child_id":1197,"first_entry_time":32709,"exclusive_time":21,"entries":6,"callees":[{"inclusive_time":1,"id":"208","highest_child_id":1192,"first_entry_time":32711,"exclusive_time":0,"entries":2},{"inclusive_time":0,"id":"209","highest_child_id":1193,"first_entry_time":32712,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"210","highest_child_id":1194,"first_entry_time":32714,"exclusive_time":0,"entries":2},{"inclusive_time":6,"id":"211","highest_child_id":1195,"first_entry_time":32715,"exclusive_time":5,"entries":2,"allocations":[{"id":"6","count":2},{"id":"10","count":4}]},{"inclusive_time":1,"id":"212","highest_child_id":1196,"first_entry_time":32720,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"207","highest_child_id":1197,"first_entry_time":32723,"exclusive_time":0,"entries":2}],"allocations":[{"id":"27","count":2}]},{"inclusive_time":222,"id":"482","highest_child_id":1220,"first_entry_time":32996,"exclusive_time":13,"entries":2,"callees":[{"inclusive_time":9,"id":"206","highest_child_id":1199,"first_entry_time":33000,"exclusive_time":9,"entries":2,"allocations":[{"id":"185","count":2},{"id":"26","count":2}]},{"inclusive_time":197,"id":"354","highest_child_id":1219,"first_entry_time":33009,"exclusive_time":30,"entries":2,"callees":[{"inclusive_time":6,"id":"206","highest_child_id":1201,"first_entry_time":33010,"exclusive_time":6,"entries":2,"allocations":[{"id":"185","count":2},{"id":"26","count":2}]},{"inclusive_time":5,"id":"231","highest_child_id":1203,"first_entry_time":33017,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":1,"id":"232","highest_child_id":1203,"first_entry_time":33019,"exclusive_time":0,"entries":2}]},{"inclusive_time":17,"id":"239","highest_child_id":1206,"first_entry_time":33022,"exclusive_time":8,"entries":2,"callees":[{"inclusive_time":2,"id":"240","highest_child_id":1205,"first_entry_time":33024,"exclusive_time":2,"entries":2,"allocations":[{"id":"27","count":2}]},{"inclusive_time":6,"id":"241","highest_child_id":1206,"first_entry_time":33028,"exclusive_time":6,"entries":2}]},{"inclusive_time":127,"id":"483","highest_child_id":1216,"first_entry_time":33046,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":124,"id":"320","highest_child_id":1216,"first_entry_time":33048,"exclusive_time":49,"entries":2,"callees":[{"inclusive_time":2,"id":"240","highest_child_id":1209,"first_entry_time":33051,"exclusive_time":1,"entries":2},{"inclusive_time":33,"id":"321","highest_child_id":1210,"first_entry_time":33054,"exclusive_time":32,"entries":2,"allocations":[{"id":"308","count":1},{"id":"26","count":2}]},{"inclusive_time":1,"id":"322","highest_child_id":1211,"first_entry_time":33087,"exclusive_time":0,"entries":2},{"inclusive_time":40,"id":"484","highest_child_id":1216,"first_entry_time":33123,"exclusive_time":9,"entries":2,"callees":[{"inclusive_time":20,"id":"206","highest_child_id":1213,"first_entry_time":33125,"exclusive_time":19,"entries":2,"allocations":[{"id":"185","count":2},{"id":"26","count":2}]},{"inclusive_time":10,"id":"243","highest_child_id":1216,"first_entry_time":33133,"exclusive_time":5,"entries":2,"callees":[{"inclusive_time":4,"id":"244","highest_child_id":1216,"first_entry_time":33136,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":1,"id":"189","highest_child_id":1216,"first_entry_time":33137,"exclusive_time":0,"entries":2}]}]}]}],"allocations":[{"id":"27","count":2}]}]},{"inclusive_time":12,"id":"243","highest_child_id":1219,"first_entry_time":33142,"exclusive_time":8,"entries":2,"callees":[{"inclusive_time":4,"id":"244","highest_child_id":1219,"first_entry_time":33148,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":1,"id":"189","highest_child_id":1219,"first_entry_time":33149,"exclusive_time":0,"entries":2}]}]}]},{"inclusive_time":2,"id":"228","highest_child_id":1220,"first_entry_time":33152,"exclusive_time":2,"entries":2}]},{"inclusive_time":72,"id":"243","highest_child_id":1233,"first_entry_time":33160,"exclusive_time":4,"entries":2,"callees":[{"inclusive_time":67,"id":"244","highest_child_id":1233,"first_entry_time":33162,"exclusive_time":19,"entries":2,"callees":[{"inclusive_time":1,"id":"189","highest_child_id":1223,"first_entry_time":33163,"exclusive_time":0,"entries":2},{"inclusive_time":32,"id":"207","highest_child_id":1230,"first_entry_time":33165,"exclusive_time":22,"entries":2,"callees":[{"inclusive_time":1,"id":"208","highest_child_id":1225,"first_entry_time":33168,"exclusive_time":0,"entries":2},{"inclusive_time":0,"id":"209","highest_child_id":1226,"first_entry_time":33169,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"210","highest_child_id":1227,"first_entry_time":33171,"exclusive_time":0,"entries":2},{"inclusive_time":7,"id":"211","highest_child_id":1228,"first_entry_time":33173,"exclusive_time":6,"entries":2,"allocations":[{"id":"6","count":2},{"id":"10","count":4}]},{"inclusive_time":1,"id":"212","highest_child_id":1229,"first_entry_time":33177,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"207","highest_child_id":1230,"first_entry_time":33181,"exclusive_time":0,"entries":2}],"allocations":[{"id":"27","count":2}]},{"inclusive_time":16,"id":"485","highest_child_id":1233,"first_entry_time":33197,"exclusive_time":13,"entries":2,"callees":[{"inclusive_time":2,"id":"486","highest_child_id":1232,"first_entry_time":33207,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"476","highest_child_id":1233,"first_entry_time":33210,"exclusive_time":0,"entries":2}]}]}]}],"allocations":[{"id":"27","count":4}]},{"inclusive_time":1,"id":"207","highest_child_id":1234,"first_entry_time":33213,"exclusive_time":0,"entries":2},{"inclusive_time":101,"id":"230","highest_child_id":1254,"first_entry_time":33217,"exclusive_time":8,"entries":2,"callees":[{"inclusive_time":10,"id":"231","highest_child_id":1238,"first_entry_time":33218,"exclusive_time":7,"entries":2,"callees":[{"inclusive_time":2,"id":"233","highest_child_id":1237,"first_entry_time":33220,"exclusive_time":0,"entries":4},{"inclusive_time":1,"id":"232","highest_child_id":1238,"first_entry_time":33223,"exclusive_time":0,"entries":2}],"allocations":[{"id":"28","count":1}]},{"inclusive_time":2,"id":"234","highest_child_id":1239,"first_entry_time":33225,"exclusive_time":2,"entries":2},{"inclusive_time":81,"id":"235","highest_child_id":1254,"first_entry_time":33228,"exclusive_time":25,"entries":2,"callees":[{"inclusive_time":12,"id":"206","highest_child_id":1241,"first_entry_time":33229,"exclusive_time":11,"entries":2,"allocations":[{"id":"185","count":2},{"id":"26","count":2}]},{"inclusive_time":4,"id":"236","highest_child_id":1242,"first_entry_time":33240,"exclusive_time":3,"entries":4,"allocations":[{"id":"173","count":4}]},{"inclusive_time":2,"id":"237","highest_child_id":1243,"first_entry_time":33243,"exclusive_time":2,"entries":2},{"inclusive_time":4,"id":"238","highest_child_id":1244,"first_entry_time":33245,"exclusive_time":3,"entries":2},{"inclusive_time":17,"id":"239","highest_child_id":1247,"first_entry_time":33249,"exclusive_time":7,"entries":2,"callees":[{"inclusive_time":2,"id":"240","highest_child_id":1246,"first_entry_time":33251,"exclusive_time":1,"entries":2,"allocations":[{"id":"27","count":2}]},{"inclusive_time":7,"id":"241","highest_child_id":1247,"first_entry_time":33255,"exclusive_time":7,"entries":2}]},{"inclusive_time":10,"id":"242","highest_child_id":1251,"first_entry_time":33262,"exclusive_time":7,"entries":2,"callees":[{"inclusive_time":1,"id":"309","highest_child_id":1249,"first_entry_time":33264,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"233","highest_child_id":1250,"first_entry_time":33266,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"310","highest_child_id":1251,"first_entry_time":33267,"exclusive_time":0,"entries":2}],"allocations":[{"id":"28","count":3}]},{"inclusive_time":8,"id":"243","highest_child_id":1254,"first_entry_time":33271,"exclusive_time":4,"entries":2,"callees":[{"inclusive_time":4,"id":"244","highest_child_id":1254,"first_entry_time":33274,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":1,"id":"189","highest_child_id":1254,"first_entry_time":33275,"exclusive_time":0,"entries":2}]}]}]}]},{"inclusive_time":131,"id":"487","highest_child_id":1277,"first_entry_time":33561,"exclusive_time":20,"entries":2,"callees":[{"inclusive_time":13,"id":"206","highest_child_id":1256,"first_entry_time":33569,"exclusive_time":12,"entries":2,"allocations":[{"id":"185","count":2},{"id":"26","count":2}]},{"inclusive_time":95,"id":"354","highest_child_id":1276,"first_entry_time":33582,"exclusive_time":20,"entries":2,"callees":[{"inclusive_time":7,"id":"206","highest_child_id":1258,"first_entry_time":33583,"exclusive_time":6,"entries":2,"allocations":[{"id":"185","count":2},{"id":"26","count":2}]},{"inclusive_time":5,"id":"231","highest_child_id":1260,"first_entry_time":33593,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":1,"id":"232","highest_child_id":1260,"first_entry_time":33596,"exclusive_time":0,"entries":2}]},{"inclusive_time":14,"id":"239","highest_child_id":1263,"first_entry_time":33599,"exclusive_time":7,"entries":2,"callees":[{"inclusive_time":2,"id":"240","highest_child_id":1262,"first_entry_time":33601,"exclusive_time":1,"entries":2,"allocations":[{"id":"27","count":2}]},{"inclusive_time":5,"id":"241","highest_child_id":1263,"first_entry_time":33604,"exclusive_time":4,"entries":2}]},{"inclusive_time":42,"id":"483","highest_child_id":1273,"first_entry_time":33609,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":40,"id":"320","highest_child_id":1273,"first_entry_time":33611,"exclusive_time":14,"entries":2,"callees":[{"inclusive_time":1,"id":"240","highest_child_id":1266,"first_entry_time":33613,"exclusive_time":1,"entries":2},{"inclusive_time":4,"id":"321","highest_child_id":1267,"first_entry_time":33615,"exclusive_time":3,"entries":2,"allocations":[{"id":"26","count":2}]},{"inclusive_time":1,"id":"322","highest_child_id":1268,"first_entry_time":33619,"exclusive_time":0,"entries":2},{"inclusive_time":21,"id":"484","highest_child_id":1273,"first_entry_time":33621,"exclusive_time":5,"entries":2,"callees":[{"inclusive_time":7,"id":"206","highest_child_id":1270,"first_entry_time":33623,"exclusive_time":6,"entries":2,"allocations":[{"id":"185","count":2},{"id":"26","count":2}]},{"inclusive_time":9,"id":"243","highest_child_id":1273,"first_entry_time":33629,"exclusive_time":4,"entries":2,"callees":[{"inclusive_time":4,"id":"244","highest_child_id":1273,"first_entry_time":33631,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":1,"id":"189","highest_child_id":1273,"first_entry_time":33632,"exclusive_time":0,"entries":2}]}]}]}],"allocations":[{"id":"27","count":2}]}]},{"inclusive_time":7,"id":"243","highest_child_id":1276,"first_entry_time":33637,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":3,"id":"244","highest_child_id":1276,"first_entry_time":33639,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":1,"id":"189","highest_child_id":1276,"first_entry_time":33640,"exclusive_time":0,"entries":2}]}]}]},{"inclusive_time":2,"id":"228","highest_child_id":1277,"first_entry_time":33642,"exclusive_time":2,"entries":2}],"allocations":[{"id":"2","count":4}]},{"inclusive_time":30,"id":"488","highest_child_id":1280,"first_entry_time":33689,"exclusive_time":16,"entries":2,"callees":[{"inclusive_time":7,"id":"187","highest_child_id":1279,"first_entry_time":33692,"exclusive_time":7,"entries":2,"allocations":[{"id":"185","count":2},{"id":"26","count":2}]},{"inclusive_time":6,"id":"328","highest_child_id":1280,"first_entry_time":33697,"exclusive_time":6,"entries":2}],"allocations":[{"id":"18","count":4}]},{"inclusive_time":607,"id":"244","highest_child_id":1284,"first_entry_time":33710,"exclusive_time":599,"entries":2,"callees":[{"inclusive_time":1,"id":"189","highest_child_id":1282,"first_entry_time":33711,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"207","highest_child_id":1283,"first_entry_time":33713,"exclusive_time":0,"entries":2},{"inclusive_time":6,"id":"489","highest_child_id":1284,"first_entry_time":34306,"exclusive_time":5,"entries":2,"allocations":[{"id":"2","count":2}]}]}],"allocations":[{"id":"10","count":8},{"id":"6","count":4}]}],"allocations":[{"id":"27","count":2}]},{"inclusive_time":10,"id":"252","highest_child_id":1285,"first_entry_time":34315,"exclusive_time":9,"entries":2,"allocations":[{"id":"10","count":2}]},{"inclusive_time":292,"id":"243","highest_child_id":1309,"first_entry_time":34323,"exclusive_time":5,"entries":2,"callees":[{"inclusive_time":287,"id":"244","highest_child_id":1309,"first_entry_time":34326,"exclusive_time":164,"entries":2,"callees":[{"inclusive_time":1,"id":"189","highest_child_id":1288,"first_entry_time":34327,"exclusive_time":0,"entries":2},{"inclusive_time":30,"id":"207","highest_child_id":1295,"first_entry_time":34329,"exclusive_time":24,"entries":2,"callees":[{"inclusive_time":1,"id":"208","highest_child_id":1290,"first_entry_time":34332,"exclusive_time":0,"entries":2},{"inclusive_time":0,"id":"209","highest_child_id":1291,"first_entry_time":34334,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"210","highest_child_id":1292,"first_entry_time":34336,"exclusive_time":0,"entries":2},{"inclusive_time":2,"id":"211","highest_child_id":1293,"first_entry_time":34338,"exclusive_time":1,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":1,"id":"212","highest_child_id":1294,"first_entry_time":34340,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"207","highest_child_id":1295,"first_entry_time":34344,"exclusive_time":0,"entries":2}],"allocations":[{"id":"27","count":2}]},{"inclusive_time":93,"id":"490","highest_child_id":1309,"first_entry_time":34505,"exclusive_time":38,"entries":2,"callees":[{"inclusive_time":30,"id":"256","highest_child_id":1301,"first_entry_time":34512,"exclusive_time":21,"entries":2,"callees":[{"inclusive_time":1,"id":"216","highest_child_id":1298,"first_entry_time":34517,"exclusive_time":0,"entries":2},{"inclusive_time":0,"id":"257","highest_child_id":1299,"first_entry_time":34519,"exclusive_time":0,"entries":2},{"inclusive_time":5,"id":"251","highest_child_id":1300,"first_entry_time":34522,"exclusive_time":3,"entries":4,"allocations":[{"id":"6","count":4}]},{"inclusive_time":4,"id":"258","highest_child_id":1301,"first_entry_time":34527,"exclusive_time":3,"entries":2,"allocations":[{"id":"27","count":2}]}]},{"inclusive_time":15,"id":"290","highest_child_id":1304,"first_entry_time":34533,"exclusive_time":7,"entries":2,"callees":[{"inclusive_time":7,"id":"221","highest_child_id":1304,"first_entry_time":34538,"exclusive_time":5,"entries":2,"callees":[{"inclusive_time":2,"id":"223","highest_child_id":1304,"first_entry_time":34540,"exclusive_time":1,"entries":2}],"allocations":[{"id":"222","count":2}]}],"allocations":[{"id":"10","count":2},{"id":"6","count":2},{"id":"291","count":2}]},{"inclusive_time":5,"id":"234","highest_child_id":1306,"first_entry_time":34548,"exclusive_time":4,"entries":2,"callees":[{"inclusive_time":0,"id":"335","highest_child_id":1306,"first_entry_time":34551,"exclusive_time":0,"entries":2}]},{"inclusive_time":1,"id":"479","highest_child_id":1307,"first_entry_time":34554,"exclusive_time":1,"entries":2},{"inclusive_time":2,"id":"268","highest_child_id":1308,"first_entry_time":34561,"exclusive_time":1,"entries":2},{"inclusive_time":2,"id":"476","highest_child_id":1309,"first_entry_time":34563,"exclusive_time":1,"entries":2}],"allocations":[{"id":"10","count":6},{"id":"6","count":2},{"id":"25","count":4}]}]}]}],"allocations":[{"id":"27","count":4}]},{"inclusive_time":8,"id":"252","highest_child_id":1310,"first_entry_time":34567,"exclusive_time":7,"entries":2,"allocations":[{"id":"10","count":2}]},{"inclusive_time":89,"id":"243","highest_child_id":1325,"first_entry_time":34574,"exclusive_time":4,"entries":2,"callees":[{"inclusive_time":84,"id":"244","highest_child_id":1325,"first_entry_time":34576,"exclusive_time":37,"entries":2,"callees":[{"inclusive_time":1,"id":"189","highest_child_id":1313,"first_entry_time":34577,"exclusive_time":0,"entries":2},{"inclusive_time":28,"id":"207","highest_child_id":1320,"first_entry_time":34580,"exclusive_time":23,"entries":2,"callees":[{"inclusive_time":1,"id":"208","highest_child_id":1315,"first_entry_time":34582,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"209","highest_child_id":1316,"first_entry_time":34584,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"210","highest_child_id":1317,"first_entry_time":34586,"exclusive_time":0,"entries":2},{"inclusive_time":2,"id":"211","highest_child_id":1318,"first_entry_time":34587,"exclusive_time":1,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":1,"id":"212","highest_child_id":1319,"first_entry_time":34589,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"207","highest_child_id":1320,"first_entry_time":34593,"exclusive_time":0,"entries":2}],"allocations":[{"id":"27","count":2}]},{"inclusive_time":18,"id":"491","highest_child_id":1325,"first_entry_time":34627,"exclusive_time":11,"entries":2,"callees":[{"inclusive_time":4,"id":"234","highest_child_id":1323,"first_entry_time":34630,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":0,"id":"335","highest_child_id":1323,"first_entry_time":34632,"exclusive_time":0,"entries":2}]},{"inclusive_time":1,"id":"479","highest_child_id":1324,"first_entry_time":34634,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"476","highest_child_id":1325,"first_entry_time":34638,"exclusive_time":1,"entries":2}]}]}]}],"allocations":[{"id":"27","count":2}]},{"inclusive_time":1,"id":"296","highest_child_id":1326,"first_entry_time":34675,"exclusive_time":1,"entries":2},{"inclusive_time":1284,"id":"243","highest_child_id":1410,"first_entry_time":34685,"exclusive_time":5,"entries":2,"callees":[{"inclusive_time":1279,"id":"244","highest_child_id":1410,"first_entry_time":34688,"exclusive_time":329,"entries":2,"callees":[{"inclusive_time":1,"id":"189","highest_child_id":1329,"first_entry_time":34689,"exclusive_time":1,"entries":2},{"inclusive_time":30,"id":"207","highest_child_id":1336,"first_entry_time":34691,"exclusive_time":25,"entries":2,"callees":[{"inclusive_time":1,"id":"208","highest_child_id":1331,"first_entry_time":34694,"exclusive_time":0,"entries":2},{"inclusive_time":0,"id":"209","highest_child_id":1332,"first_entry_time":34695,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"210","highest_child_id":1333,"first_entry_time":34696,"exclusive_time":0,"entries":2},{"inclusive_time":2,"id":"211","highest_child_id":1334,"first_entry_time":34698,"exclusive_time":1,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":0,"id":"212","highest_child_id":1335,"first_entry_time":34700,"exclusive_time":0,"entries":2},{"inclusive_time":2,"id":"207","highest_child_id":1336,"first_entry_time":34703,"exclusive_time":0,"entries":4}],"allocations":[{"id":"27","count":2}]},{"inclusive_time":919,"id":"492","highest_child_id":1410,"first_entry_time":35030,"exclusive_time":318,"entries":2,"callees":[{"inclusive_time":7,"id":"339","highest_child_id":1338,"first_entry_time":35037,"exclusive_time":6,"entries":2,"allocations":[{"id":"25","count":2}]},{"inclusive_time":5,"id":"234","highest_child_id":1340,"first_entry_time":35050,"exclusive_time":4,"entries":2,"callees":[{"inclusive_time":1,"id":"335","highest_child_id":1340,"first_entry_time":35052,"exclusive_time":0,"entries":2}]},{"inclusive_time":2,"id":"493","highest_child_id":1341,"first_entry_time":35070,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"341","highest_child_id":1342,"first_entry_time":35073,"exclusive_time":0,"entries":2},{"inclusive_time":99,"id":"494","highest_child_id":1355,"first_entry_time":35100,"exclusive_time":27,"entries":2,"callees":[{"inclusive_time":49,"id":"343","highest_child_id":1349,"first_entry_time":35104,"exclusive_time":5,"entries":2,"callees":[{"inclusive_time":44,"id":"256","highest_child_id":1349,"first_entry_time":35106,"exclusive_time":25,"entries":2,"callees":[{"inclusive_time":1,"id":"216","highest_child_id":1346,"first_entry_time":35111,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"257","highest_child_id":1347,"first_entry_time":35117,"exclusive_time":0,"entries":2},{"inclusive_time":14,"id":"251","highest_child_id":1348,"first_entry_time":35119,"exclusive_time":12,"entries":4,"allocations":[{"id":"6","count":4}]},{"inclusive_time":4,"id":"258","highest_child_id":1349,"first_entry_time":35134,"exclusive_time":4,"entries":2,"allocations":[{"id":"27","count":2}]}]}]},{"inclusive_time":20,"id":"256","highest_child_id":1354,"first_entry_time":35142,"exclusive_time":14,"entries":2,"callees":[{"inclusive_time":1,"id":"216","highest_child_id":1351,"first_entry_time":35145,"exclusive_time":0,"entries":2},{"inclusive_time":0,"id":"257","highest_child_id":1352,"first_entry_time":35146,"exclusive_time":0,"entries":2},{"inclusive_time":4,"id":"251","highest_child_id":1353,"first_entry_time":35148,"exclusive_time":2,"entries":4,"allocations":[{"id":"6","count":4}]},{"inclusive_time":2,"id":"258","highest_child_id":1354,"first_entry_time":35152,"exclusive_time":2,"entries":2,"allocations":[{"id":"27","count":2}]}]},{"inclusive_time":3,"id":"495","highest_child_id":1355,"first_entry_time":35169,"exclusive_time":2,"entries":2}]},{"inclusive_time":2,"id":"479","highest_child_id":1356,"first_entry_time":35174,"exclusive_time":1,"entries":2},{"inclusive_time":8,"id":"336","highest_child_id":1358,"first_entry_time":35177,"exclusive_time":6,"entries":2,"callees":[{"inclusive_time":2,"id":"337","highest_child_id":1358,"first_entry_time":35179,"exclusive_time":1,"entries":2}],"allocations":[{"id":"53","count":2}]},{"inclusive_time":87,"id":"496","highest_child_id":1371,"first_entry_time":35262,"exclusive_time":25,"entries":2,"callees":[{"inclusive_time":62,"id":"497","highest_child_id":1371,"first_entry_time":35285,"exclusive_time":13,"entries":2,"callees":[{"inclusive_time":1,"id":"286","highest_child_id":1361,"first_entry_time":35288,"exclusive_time":1,"entries":2},{"inclusive_time":48,"id":"280","highest_child_id":1371,"first_entry_time":35292,"exclusive_time":7,"entries":2,"callees":[{"inclusive_time":36,"id":"281","highest_child_id":1369,"first_entry_time":35295,"exclusive_time":22,"entries":2,"callees":[{"inclusive_time":11,"id":"282","highest_child_id":1366,"first_entry_time":35299,"exclusive_time":7,"entries":4,"callees":[{"inclusive_time":2,"id":"283","highest_child_id":1365,"first_entry_time":35301,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"284","highest_child_id":1366,"first_entry_time":35316,"exclusive_time":1,"entries":2}]},{"inclusive_time":3,"id":"285","highest_child_id":1368,"first_entry_time":35304,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":1,"id":"283","highest_child_id":1368,"first_entry_time":35305,"exclusive_time":0,"entries":2}]},{"inclusive_time":1,"id":"286","highest_child_id":1369,"first_entry_time":35307,"exclusive_time":0,"entries":2}],"allocations":[{"id":"2","count":2},{"id":"27","count":2},{"id":"28","count":2}]},{"inclusive_time":3,"id":"282","highest_child_id":1371,"first_entry_time":35319,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":1,"id":"284","highest_child_id":1371,"first_entry_time":35320,"exclusive_time":0,"entries":2}]}],"allocations":[{"id":"27","count":2},{"id":"53","count":2}]}],"allocations":[{"id":"27","count":2},{"id":"53","count":2}]}],"allocations":[{"id":"27","count":2}]},{"inclusive_time":3,"id":"498","highest_child_id":1372,"first_entry_time":35337,"exclusive_time":2,"entries":2},{"inclusive_time":1,"id":"309","highest_child_id":1373,"first_entry_time":35342,"exclusive_time":0,"entries":2},{"inclusive_time":385,"id":"499","highest_child_id":1407,"first_entry_time":35471,"exclusive_time":45,"entries":2,"callees":[{"inclusive_time":2,"id":"189","highest_child_id":1375,"first_entry_time":35475,"exclusive_time":1,"entries":2},{"inclusive_time":21,"id":"500","highest_child_id":1380,"first_entry_time":35489,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":18,"id":"167","highest_child_id":1380,"first_entry_time":35491,"exclusive_time":7,"entries":2,"callees":[{"inclusive_time":1,"id":"168","highest_child_id":1378,"first_entry_time":35494,"exclusive_time":1,"entries":2,"allocations":[{"id":"501","count":2}]},{"inclusive_time":10,"id":"108","highest_child_id":1380,"first_entry_time":35496,"exclusive_time":8,"entries":2,"callees":[{"inclusive_time":1,"id":"109","highest_child_id":1380,"first_entry_time":35499,"exclusive_time":0,"entries":2}],"allocations":[{"id":"6","count":2}]}],"allocations":[{"id":"6","count":2}]}]},{"inclusive_time":248,"id":"502","highest_child_id":1395,"first_entry_time":35513,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":244,"id":"181","highest_child_id":1395,"first_entry_time":35516,"exclusive_time":48,"entries":2,"callees":[{"inclusive_time":3,"id":"182","highest_child_id":1383,"first_entry_time":35522,"exclusive_time":3,"entries":2,"allocations":[{"id":"6","count":4},{"id":"183","count":2}]},{"inclusive_time":34,"id":"184","highest_child_id":1385,"first_entry_time":35526,"exclusive_time":26,"entries":2,"callees":[{"inclusive_time":7,"id":"187","highest_child_id":1385,"first_entry_time":35533,"exclusive_time":7,"entries":2,"allocations":[{"id":"503","count":2},{"id":"26","count":2}]}],"allocations":[{"id":"6","count":4},{"id":"503","count":2},{"id":"186","count":2},{"id":"173","count":2}]},{"inclusive_time":154,"id":"504","highest_child_id":1394,"first_entry_time":35568,"exclusive_time":75,"entries":2,"callees":[{"inclusive_time":7,"id":"206","highest_child_id":1387,"first_entry_time":35571,"exclusive_time":6,"entries":2,"allocations":[{"id":"503","count":2},{"id":"26","count":2}]},{"inclusive_time":71,"id":"505","highest_child_id":1393,"first_entry_time":35642,"exclusive_time":39,"entries":2,"callees":[{"inclusive_time":7,"id":"206","highest_child_id":1389,"first_entry_time":35650,"exclusive_time":7,"entries":2,"allocations":[{"id":"503","count":2},{"id":"26","count":2}]},{"inclusive_time":22,"id":"506","highest_child_id":1392,"first_entry_time":35681,"exclusive_time":13,"entries":2,"callees":[{"inclusive_time":7,"id":"206","highest_child_id":1391,"first_entry_time":35683,"exclusive_time":6,"entries":2,"allocations":[{"id":"503","count":2},{"id":"26","count":2}]},{"inclusive_time":3,"id":"228","highest_child_id":1392,"first_entry_time":35693,"exclusive_time":2,"entries":2}]},{"inclusive_time":2,"id":"228","highest_child_id":1393,"first_entry_time":35696,"exclusive_time":1,"entries":2}],"allocations":[{"id":"2","count":4}]},{"inclusive_time":2,"id":"228","highest_child_id":1394,"first_entry_time":35698,"exclusive_time":1,"entries":2}]},{"inclusive_time":4,"id":"207","highest_child_id":1395,"first_entry_time":35700,"exclusive_time":4,"entries":2}],"allocations":[{"id":"6","count":2}]}]},{"inclusive_time":1,"id":"234","highest_child_id":1396,"first_entry_time":35705,"exclusive_time":1,"entries":2},{"inclusive_time":67,"id":"350","highest_child_id":1407,"first_entry_time":35710,"exclusive_time":4,"entries":2,"callees":[{"inclusive_time":1,"id":"216","highest_child_id":1398,"first_entry_time":35711,"exclusive_time":0,"entries":2},{"inclusive_time":62,"id":"351","highest_child_id":1407,"first_entry_time":35713,"exclusive_time":21,"entries":2,"callees":[{"inclusive_time":6,"id":"251","highest_child_id":1400,"first_entry_time":35715,"exclusive_time":4,"entries":4,"allocations":[{"id":"6","count":4}]},{"inclusive_time":2,"id":"258","highest_child_id":1401,"first_entry_time":35723,"exclusive_time":1,"entries":2,"allocations":[{"id":"27","count":2}]},{"inclusive_time":33,"id":"343","highest_child_id":1407,"first_entry_time":35727,"exclusive_time":26,"entries":2,"callees":[{"inclusive_time":1,"id":"216","highest_child_id":1403,"first_entry_time":35729,"exclusive_time":0,"entries":2},{"inclusive_time":0,"id":"257","highest_child_id":1404,"first_entry_time":35731,"exclusive_time":0,"entries":2},{"inclusive_time":4,"id":"251","highest_child_id":1405,"first_entry_time":35735,"exclusive_time":3,"entries":4,"allocations":[{"id":"6","count":4}]},{"inclusive_time":3,"id":"258","highest_child_id":1406,"first_entry_time":35739,"exclusive_time":2,"entries":2,"allocations":[{"id":"27","count":2}]},{"inclusive_time":1,"id":"475","highest_child_id":1407,"first_entry_time":35743,"exclusive_time":0,"entries":2}],"allocations":[{"id":"10","count":2},{"id":"25","count":2}]}],"allocations":[{"id":"10","count":2},{"id":"27","count":6}]}]}],"allocations":[{"id":"2","count":2},{"id":"27","count":6},{"id":"53","count":4}]},{"inclusive_time":1,"id":"286","highest_child_id":1408,"first_entry_time":35751,"exclusive_time":1,"entries":2},{"inclusive_time":2,"id":"223","highest_child_id":1409,"first_entry_time":35756,"exclusive_time":1,"entries":2},{"inclusive_time":2,"id":"476","highest_child_id":1410,"first_entry_time":35758,"exclusive_time":1,"entries":2}],"allocations":[{"id":"2","count":2},{"id":"10","count":2},{"id":"53","count":2},{"id":"27","count":4}]}]}]}],"allocations":[{"id":"6","count":2},{"id":"27","count":10},{"id":"53","count":2},{"id":"28","count":1}]}],"allocations":[{"id":"27","count":2}]}]},{"inclusive_time":12,"id":"252","highest_child_id":1411,"first_entry_time":35763,"exclusive_time":12,"entries":2,"allocations":[{"id":"10","count":2}]},{"inclusive_time":37,"id":"207","highest_child_id":1418,"first_entry_time":35778,"exclusive_time":25,"entries":6,"callees":[{"inclusive_time":1,"id":"208","highest_child_id":1413,"first_entry_time":35781,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"209","highest_child_id":1414,"first_entry_time":35783,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"210","highest_child_id":1415,"first_entry_time":35785,"exclusive_time":0,"entries":2},{"inclusive_time":6,"id":"211","highest_child_id":1416,"first_entry_time":35786,"exclusive_time":6,"entries":2,"allocations":[{"id":"6","count":2},{"id":"10","count":4}]},{"inclusive_time":1,"id":"212","highest_child_id":1417,"first_entry_time":35791,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"207","highest_child_id":1418,"first_entry_time":35794,"exclusive_time":1,"entries":2}],"allocations":[{"id":"27","count":2}]},{"inclusive_time":122,"id":"482","highest_child_id":1441,"first_entry_time":35804,"exclusive_time":11,"entries":2,"callees":[{"inclusive_time":8,"id":"206","highest_child_id":1420,"first_entry_time":35806,"exclusive_time":7,"entries":2,"allocations":[{"id":"185","count":2},{"id":"26","count":2}]},{"inclusive_time":101,"id":"354","highest_child_id":1440,"first_entry_time":35813,"exclusive_time":17,"entries":2,"callees":[{"inclusive_time":6,"id":"206","highest_child_id":1422,"first_entry_time":35814,"exclusive_time":6,"entries":2,"allocations":[{"id":"185","count":2},{"id":"26","count":2}]},{"inclusive_time":5,"id":"231","highest_child_id":1424,"first_entry_time":35820,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":1,"id":"232","highest_child_id":1424,"first_entry_time":35822,"exclusive_time":0,"entries":2}]},{"inclusive_time":17,"id":"239","highest_child_id":1427,"first_entry_time":35825,"exclusive_time":8,"entries":2,"callees":[{"inclusive_time":2,"id":"240","highest_child_id":1426,"first_entry_time":35827,"exclusive_time":1,"entries":2,"allocations":[{"id":"27","count":2}]},{"inclusive_time":6,"id":"241","highest_child_id":1427,"first_entry_time":35830,"exclusive_time":6,"entries":2}]},{"inclusive_time":49,"id":"483","highest_child_id":1437,"first_entry_time":35835,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":47,"id":"320","highest_child_id":1437,"first_entry_time":35837,"exclusive_time":18,"entries":2,"callees":[{"inclusive_time":2,"id":"240","highest_child_id":1430,"first_entry_time":35842,"exclusive_time":1,"entries":2},{"inclusive_time":4,"id":"321","highest_child_id":1431,"first_entry_time":35845,"exclusive_time":3,"entries":2,"allocations":[{"id":"26","count":2}]},{"inclusive_time":1,"id":"322","highest_child_id":1432,"first_entry_time":35849,"exclusive_time":0,"entries":2},{"inclusive_time":23,"id":"484","highest_child_id":1437,"first_entry_time":35851,"exclusive_time":6,"entries":2,"callees":[{"inclusive_time":7,"id":"206","highest_child_id":1434,"first_entry_time":35853,"exclusive_time":6,"entries":2,"allocations":[{"id":"185","count":2},{"id":"26","count":2}]},{"inclusive_time":10,"id":"243","highest_child_id":1437,"first_entry_time":35858,"exclusive_time":5,"entries":2,"callees":[{"inclusive_time":5,"id":"244","highest_child_id":1437,"first_entry_time":35861,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":1,"id":"189","highest_child_id":1437,"first_entry_time":35863,"exclusive_time":0,"entries":2}]}]}]}],"allocations":[{"id":"27","count":2}]}]},{"inclusive_time":7,"id":"243","highest_child_id":1440,"first_entry_time":35867,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":3,"id":"244","highest_child_id":1440,"first_entry_time":35869,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":1,"id":"189","highest_child_id":1440,"first_entry_time":35870,"exclusive_time":0,"entries":2}]}]}]},{"inclusive_time":2,"id":"228","highest_child_id":1441,"first_entry_time":35872,"exclusive_time":2,"entries":2}]},{"inclusive_time":71,"id":"243","highest_child_id":1454,"first_entry_time":35879,"exclusive_time":4,"entries":2,"callees":[{"inclusive_time":67,"id":"244","highest_child_id":1454,"first_entry_time":35882,"exclusive_time":6,"entries":2,"callees":[{"inclusive_time":1,"id":"189","highest_child_id":1444,"first_entry_time":35883,"exclusive_time":0,"entries":2},{"inclusive_time":52,"id":"207","highest_child_id":1451,"first_entry_time":35885,"exclusive_time":31,"entries":2,"callees":[{"inclusive_time":1,"id":"208","highest_child_id":1446,"first_entry_time":35887,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"209","highest_child_id":1447,"first_entry_time":35889,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"210","highest_child_id":1448,"first_entry_time":35891,"exclusive_time":0,"entries":2},{"inclusive_time":18,"id":"211","highest_child_id":1449,"first_entry_time":35892,"exclusive_time":17,"entries":2,"allocations":[{"id":"6","count":2},{"id":"10","count":4}]},{"inclusive_time":1,"id":"212","highest_child_id":1450,"first_entry_time":35897,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"207","highest_child_id":1451,"first_entry_time":35900,"exclusive_time":0,"entries":2}],"allocations":[{"id":"27","count":2}]},{"inclusive_time":7,"id":"485","highest_child_id":1454,"first_entry_time":35910,"exclusive_time":4,"entries":2,"callees":[{"inclusive_time":1,"id":"486","highest_child_id":1453,"first_entry_time":35912,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"476","highest_child_id":1454,"first_entry_time":35914,"exclusive_time":0,"entries":2}]}]}]}],"allocations":[{"id":"27","count":4}]},{"inclusive_time":1,"id":"207","highest_child_id":1455,"first_entry_time":35917,"exclusive_time":0,"entries":2},{"inclusive_time":14,"id":"230","highest_child_id":1459,"first_entry_time":35920,"exclusive_time":5,"entries":2,"callees":[{"inclusive_time":7,"id":"231","highest_child_id":1458,"first_entry_time":35921,"exclusive_time":6,"entries":2,"callees":[{"inclusive_time":1,"id":"233","highest_child_id":1458,"first_entry_time":35923,"exclusive_time":0,"entries":4}],"allocations":[{"id":"28","count":2}]},{"inclusive_time":2,"id":"234","highest_child_id":1459,"first_entry_time":35926,"exclusive_time":2,"entries":2}]},{"inclusive_time":120,"id":"487","highest_child_id":1482,"first_entry_time":35930,"exclusive_time":15,"entries":2,"callees":[{"inclusive_time":7,"id":"206","highest_child_id":1461,"first_entry_time":35934,"exclusive_time":7,"entries":2,"allocations":[{"id":"185","count":2},{"id":"26","count":2}]},{"inclusive_time":96,"id":"354","highest_child_id":1481,"first_entry_time":35940,"exclusive_time":16,"entries":2,"callees":[{"inclusive_time":6,"id":"206","highest_child_id":1463,"first_entry_time":35941,"exclusive_time":5,"entries":2,"allocations":[{"id":"185","count":2},{"id":"26","count":2}]},{"inclusive_time":4,"id":"231","highest_child_id":1465,"first_entry_time":35947,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":1,"id":"232","highest_child_id":1465,"first_entry_time":35949,"exclusive_time":0,"entries":2}]},{"inclusive_time":15,"id":"239","highest_child_id":1468,"first_entry_time":35952,"exclusive_time":8,"entries":2,"callees":[{"inclusive_time":2,"id":"240","highest_child_id":1467,"first_entry_time":35953,"exclusive_time":1,"entries":2,"allocations":[{"id":"27","count":2}]},{"inclusive_time":5,"id":"241","highest_child_id":1468,"first_entry_time":35956,"exclusive_time":4,"entries":2}]},{"inclusive_time":47,"id":"483","highest_child_id":1478,"first_entry_time":35961,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":45,"id":"320","highest_child_id":1478,"first_entry_time":35962,"exclusive_time":17,"entries":2,"callees":[{"inclusive_time":1,"id":"240","highest_child_id":1471,"first_entry_time":35964,"exclusive_time":1,"entries":2},{"inclusive_time":4,"id":"321","highest_child_id":1472,"first_entry_time":35966,"exclusive_time":3,"entries":2,"allocations":[{"id":"26","count":2}]},{"inclusive_time":1,"id":"322","highest_child_id":1473,"first_entry_time":35974,"exclusive_time":0,"entries":2},{"inclusive_time":22,"id":"484","highest_child_id":1478,"first_entry_time":35976,"exclusive_time":6,"entries":2,"callees":[{"inclusive_time":7,"id":"206","highest_child_id":1475,"first_entry_time":35977,"exclusive_time":6,"entries":2,"allocations":[{"id":"185","count":2},{"id":"26","count":2}]},{"inclusive_time":9,"id":"243","highest_child_id":1478,"first_entry_time":35983,"exclusive_time":4,"entries":2,"callees":[{"inclusive_time":4,"id":"244","highest_child_id":1478,"first_entry_time":35985,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":1,"id":"189","highest_child_id":1478,"first_entry_time":35987,"exclusive_time":0,"entries":2}]}]}]}],"allocations":[{"id":"27","count":2}]}]},{"inclusive_time":7,"id":"243","highest_child_id":1481,"first_entry_time":35991,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":3,"id":"244","highest_child_id":1481,"first_entry_time":35993,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":1,"id":"189","highest_child_id":1481,"first_entry_time":35994,"exclusive_time":0,"entries":2}]}]}]},{"inclusive_time":2,"id":"228","highest_child_id":1482,"first_entry_time":35997,"exclusive_time":2,"entries":2}],"allocations":[{"id":"2","count":4}]},{"inclusive_time":35,"id":"488","highest_child_id":1485,"first_entry_time":36001,"exclusive_time":17,"entries":2,"callees":[{"inclusive_time":15,"id":"187","highest_child_id":1484,"first_entry_time":36002,"exclusive_time":14,"entries":2,"allocations":[{"id":"185","count":2},{"id":"26","count":2}]},{"inclusive_time":2,"id":"328","highest_child_id":1485,"first_entry_time":36016,"exclusive_time":2,"entries":2}],"allocations":[{"id":"18","count":4}]},{"inclusive_time":16,"id":"244","highest_child_id":1489,"first_entry_time":36024,"exclusive_time":9,"entries":2,"callees":[{"inclusive_time":1,"id":"189","highest_child_id":1487,"first_entry_time":36025,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"207","highest_child_id":1488,"first_entry_time":36027,"exclusive_time":0,"entries":2},{"inclusive_time":5,"id":"489","highest_child_id":1489,"first_entry_time":36029,"exclusive_time":4,"entries":2,"allocations":[{"id":"2","count":2}]}]}],"allocations":[{"id":"10","count":8},{"id":"6","count":4}]}],"allocations":[{"id":"27","count":2}]},{"inclusive_time":13,"id":"252","highest_child_id":1490,"first_entry_time":36035,"exclusive_time":12,"entries":2,"allocations":[{"id":"10","count":2}]},{"inclusive_time":6,"id":"237","highest_child_id":1491,"first_entry_time":36045,"exclusive_time":4,"entries":6},{"inclusive_time":5,"id":"231","highest_child_id":1493,"first_entry_time":36062,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":1,"id":"232","highest_child_id":1493,"first_entry_time":36064,"exclusive_time":1,"entries":2}]},{"inclusive_time":24,"id":"230","highest_child_id":1497,"first_entry_time":36069,"exclusive_time":8,"entries":4,"callees":[{"inclusive_time":12,"id":"231","highest_child_id":1496,"first_entry_time":36070,"exclusive_time":10,"entries":4,"callees":[{"inclusive_time":3,"id":"233","highest_child_id":1496,"first_entry_time":36072,"exclusive_time":0,"entries":8}],"allocations":[{"id":"28","count":4}]},{"inclusive_time":4,"id":"234","highest_child_id":1497,"first_entry_time":36075,"exclusive_time":2,"entries":4}]},{"inclusive_time":19,"id":"507","highest_child_id":1502,"first_entry_time":36088,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":16,"id":"320","highest_child_id":1502,"first_entry_time":36090,"exclusive_time":10,"entries":2,"callees":[{"inclusive_time":2,"id":"240","highest_child_id":1500,"first_entry_time":36092,"exclusive_time":1,"entries":2},{"inclusive_time":3,"id":"321","highest_child_id":1501,"first_entry_time":36095,"exclusive_time":3,"entries":2,"allocations":[{"id":"26","count":2}]},{"inclusive_time":1,"id":"322","highest_child_id":1502,"first_entry_time":36099,"exclusive_time":0,"entries":2}],"allocations":[{"id":"27","count":2}]}]},{"inclusive_time":21,"id":"508","highest_child_id":1507,"first_entry_time":36118,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":19,"id":"320","highest_child_id":1507,"first_entry_time":36119,"exclusive_time":14,"entries":2,"callees":[{"inclusive_time":1,"id":"240","highest_child_id":1505,"first_entry_time":36126,"exclusive_time":1,"entries":2},{"inclusive_time":3,"id":"321","highest_child_id":1506,"first_entry_time":36129,"exclusive_time":2,"entries":2,"allocations":[{"id":"26","count":2}]},{"inclusive_time":1,"id":"322","highest_child_id":1507,"first_entry_time":36132,"exclusive_time":0,"entries":2}],"allocations":[{"id":"27","count":2}]}]},{"inclusive_time":233,"id":"243","highest_child_id":1525,"first_entry_time":36137,"exclusive_time":4,"entries":2,"callees":[{"inclusive_time":229,"id":"244","highest_child_id":1525,"first_entry_time":36139,"exclusive_time":94,"entries":2,"callees":[{"inclusive_time":1,"id":"189","highest_child_id":1510,"first_entry_time":36140,"exclusive_time":0,"entries":2},{"inclusive_time":26,"id":"207","highest_child_id":1517,"first_entry_time":36142,"exclusive_time":22,"entries":2,"callees":[{"inclusive_time":1,"id":"208","highest_child_id":1512,"first_entry_time":36145,"exclusive_time":0,"entries":2},{"inclusive_time":0,"id":"209","highest_child_id":1513,"first_entry_time":36146,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"210","highest_child_id":1514,"first_entry_time":36148,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"211","highest_child_id":1515,"first_entry_time":36149,"exclusive_time":1,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":0,"id":"212","highest_child_id":1516,"first_entry_time":36151,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"207","highest_child_id":1517,"first_entry_time":36155,"exclusive_time":0,"entries":2}],"allocations":[{"id":"27","count":2}]},{"inclusive_time":107,"id":"509","highest_child_id":1525,"first_entry_time":36246,"exclusive_time":86,"entries":2,"callees":[{"inclusive_time":6,"id":"234","highest_child_id":1520,"first_entry_time":36250,"exclusive_time":5,"entries":2,"callees":[{"inclusive_time":1,"id":"335","highest_child_id":1520,"first_entry_time":36252,"exclusive_time":0,"entries":2}]},{"inclusive_time":9,"id":"510","highest_child_id":1522,"first_entry_time":36319,"exclusive_time":6,"entries":2,"callees":[{"inclusive_time":2,"id":"479","highest_child_id":1522,"first_entry_time":36323,"exclusive_time":1,"entries":2}]},{"inclusive_time":4,"id":"226","highest_child_id":1523,"first_entry_time":36329,"exclusive_time":3,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":3,"id":"191","highest_child_id":1524,"first_entry_time":36333,"exclusive_time":2,"entries":2,"allocations":[{"id":"27","count":2}]},{"inclusive_time":1,"id":"476","highest_child_id":1525,"first_entry_time":36336,"exclusive_time":1,"entries":2}],"allocations":[{"id":"2","count":2}]}]}]},{"inclusive_time":2,"id":"228","highest_child_id":1526,"first_entry_time":38716,"exclusive_time":1,"entries":1}],"allocations":[{"id":"27","count":9}]},{"inclusive_time":7,"id":"252","highest_child_id":1527,"first_entry_time":36339,"exclusive_time":7,"entries":2},{"inclusive_time":34,"id":"511","highest_child_id":1532,"first_entry_time":36417,"exclusive_time":11,"entries":2,"callees":[{"inclusive_time":13,"id":"206","highest_child_id":1529,"first_entry_time":36420,"exclusive_time":12,"entries":2,"allocations":[{"id":"185","count":2},{"id":"26","count":2}]},{"inclusive_time":10,"id":"243","highest_child_id":1532,"first_entry_time":36428,"exclusive_time":5,"entries":2,"callees":[{"inclusive_time":5,"id":"244","highest_child_id":1532,"first_entry_time":36431,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":1,"id":"189","highest_child_id":1532,"first_entry_time":36433,"exclusive_time":0,"entries":2}]}]}],"allocations":[{"id":"2","count":2}]},{"inclusive_time":3,"id":"477","highest_child_id":1534,"first_entry_time":38739,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"299","highest_child_id":1534,"first_entry_time":38741,"exclusive_time":0,"entries":1}]},{"inclusive_time":339,"id":"243","highest_child_id":1570,"first_entry_time":38780,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":337,"id":"244","highest_child_id":1570,"first_entry_time":38782,"exclusive_time":120,"entries":1,"callees":[{"inclusive_time":0,"id":"189","highest_child_id":1537,"first_entry_time":38783,"exclusive_time":0,"entries":1},{"inclusive_time":17,"id":"207","highest_child_id":1544,"first_entry_time":38785,"exclusive_time":12,"entries":1,"callees":[{"inclusive_time":0,"id":"208","highest_child_id":1539,"first_entry_time":38787,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"209","highest_child_id":1540,"first_entry_time":38789,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"210","highest_child_id":1541,"first_entry_time":38790,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"211","highest_child_id":1542,"first_entry_time":38791,"exclusive_time":2,"entries":1,"allocations":[{"id":"6","count":1},{"id":"10","count":1}]},{"inclusive_time":0,"id":"212","highest_child_id":1543,"first_entry_time":38795,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"207","highest_child_id":1544,"first_entry_time":38798,"exclusive_time":0,"entries":2}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":198,"id":"512","highest_child_id":1570,"first_entry_time":38920,"exclusive_time":95,"entries":1,"callees":[{"inclusive_time":9,"id":"219","highest_child_id":1548,"first_entry_time":38924,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":4,"id":"221","highest_child_id":1548,"first_entry_time":38928,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"223","highest_child_id":1548,"first_entry_time":38931,"exclusive_time":1,"entries":1}],"allocations":[{"id":"222","count":1}]}],"allocations":[{"id":"10","count":1},{"id":"6","count":1},{"id":"220","count":1}]},{"inclusive_time":2,"id":"479","highest_child_id":1549,"first_entry_time":38935,"exclusive_time":1,"entries":2},{"inclusive_time":4,"id":"279","highest_child_id":1550,"first_entry_time":38938,"exclusive_time":2,"entries":6},{"inclusive_time":4,"id":"287","highest_child_id":1551,"first_entry_time":38943,"exclusive_time":1,"entries":8},{"inclusive_time":63,"id":"513","highest_child_id":1558,"first_entry_time":38971,"exclusive_time":37,"entries":2,"callees":[{"inclusive_time":1,"id":"287","highest_child_id":1553,"first_entry_time":38973,"exclusive_time":1,"entries":2},{"inclusive_time":6,"id":"514","highest_child_id":1555,"first_entry_time":38993,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":2,"id":"283","highest_child_id":1555,"first_entry_time":38995,"exclusive_time":1,"entries":2}]},{"inclusive_time":19,"id":"515","highest_child_id":1558,"first_entry_time":39009,"exclusive_time":6,"entries":2,"callees":[{"inclusive_time":5,"id":"290","highest_child_id":1557,"first_entry_time":39012,"exclusive_time":4,"entries":2,"allocations":[{"id":"10","count":2},{"id":"6","count":2},{"id":"291","count":2}]},{"inclusive_time":8,"id":"473","highest_child_id":1558,"first_entry_time":39016,"exclusive_time":7,"entries":2,"allocations":[{"id":"6","count":2},{"id":"474","count":2}]}]}],"allocations":[{"id":"27","count":2}]},{"inclusive_time":3,"id":"472","highest_child_id":1559,"first_entry_time":39020,"exclusive_time":1,"entries":4},{"inclusive_time":13,"id":"516","highest_child_id":1562,"first_entry_time":39032,"exclusive_time":6,"entries":2,"callees":[{"inclusive_time":6,"id":"221","highest_child_id":1562,"first_entry_time":39036,"exclusive_time":4,"entries":2,"callees":[{"inclusive_time":1,"id":"472","highest_child_id":1562,"first_entry_time":39039,"exclusive_time":1,"entries":2}],"allocations":[{"id":"222","count":2}]}],"allocations":[{"id":"10","count":2},{"id":"6","count":2},{"id":"517","count":2}]},{"inclusive_time":1,"id":"223","highest_child_id":1563,"first_entry_time":39042,"exclusive_time":0,"entries":2},{"inclusive_time":2,"id":"268","highest_child_id":1564,"first_entry_time":39044,"exclusive_time":1,"entries":2},{"inclusive_time":0,"id":"286","highest_child_id":1565,"first_entry_time":39088,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"285","highest_child_id":1567,"first_entry_time":39090,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"283","highest_child_id":1567,"first_entry_time":39091,"exclusive_time":0,"entries":1}]},{"inclusive_time":5,"id":"518","highest_child_id":1569,"first_entry_time":39109,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":2,"id":"284","highest_child_id":1569,"first_entry_time":39111,"exclusive_time":1,"entries":1,"allocations":[{"id":"28","count":1}]}],"allocations":[{"id":"28","count":1}]},{"inclusive_time":1,"id":"476","highest_child_id":1570,"first_entry_time":39117,"exclusive_time":1,"entries":1}],"allocations":[{"id":"27","count":8}]}]}]}]},{"inclusive_time":2,"id":"477","highest_child_id":1572,"first_entry_time":39121,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"299","highest_child_id":1572,"first_entry_time":39122,"exclusive_time":0,"entries":1}]}],"allocations":[{"id":"10","count":1}]}],"allocations":[{"id":"27","count":1},{"id":"10","count":1}]},{"inclusive_time":81,"id":"519","highest_child_id":1581,"first_entry_time":39153,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":5,"id":"206","highest_child_id":1574,"first_entry_time":39156,"exclusive_time":4,"entries":1,"allocations":[{"id":"185","count":1},{"id":"26","count":1}]},{"inclusive_time":72,"id":"243","highest_child_id":1581,"first_entry_time":39162,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":69,"id":"244","highest_child_id":1581,"first_entry_time":39165,"exclusive_time":57,"entries":1,"callees":[{"inclusive_time":1,"id":"189","highest_child_id":1577,"first_entry_time":39166,"exclusive_time":0,"entries":1},{"inclusive_time":6,"id":"207","highest_child_id":1580,"first_entry_time":39169,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":0,"id":"208","highest_child_id":1579,"first_entry_time":39172,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"209","highest_child_id":1580,"first_entry_time":39173,"exclusive_time":0,"entries":1}]},{"inclusive_time":4,"id":"520","highest_child_id":1581,"first_entry_time":39230,"exclusive_time":4,"entries":1}]}]}]},{"inclusive_time":16,"id":"521","highest_child_id":1583,"first_entry_time":39328,"exclusive_time":14,"entries":1,"callees":[{"inclusive_time":1,"id":"522","highest_child_id":1583,"first_entry_time":39339,"exclusive_time":1,"entries":2,"allocations":[{"id":"6","count":2}]}],"allocations":[{"id":"6","count":3},{"id":"222","count":1}]},{"inclusive_time":2,"id":"523","highest_child_id":1584,"first_entry_time":39380,"exclusive_time":2,"entries":1},{"inclusive_time":422,"id":"524","highest_child_id":1645,"first_entry_time":39441,"exclusive_time":65,"entries":1,"callees":[{"inclusive_time":142,"id":"466","highest_child_id":1617,"first_entry_time":39444,"exclusive_time":30,"entries":1,"callees":[{"inclusive_time":1,"id":"216","highest_child_id":1587,"first_entry_time":39448,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"467","highest_child_id":1588,"first_entry_time":39450,"exclusive_time":0,"entries":1},{"inclusive_time":19,"id":"343","highest_child_id":1594,"first_entry_time":39454,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":16,"id":"256","highest_child_id":1594,"first_entry_time":39457,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":0,"id":"216","highest_child_id":1591,"first_entry_time":39460,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"257","highest_child_id":1592,"first_entry_time":39462,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"251","highest_child_id":1593,"first_entry_time":39464,"exclusive_time":2,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":3,"id":"258","highest_child_id":1594,"first_entry_time":39469,"exclusive_time":2,"entries":1,"allocations":[{"id":"27","count":1}]}]}]},{"inclusive_time":79,"id":"525","highest_child_id":1611,"first_entry_time":39490,"exclusive_time":23,"entries":1,"callees":[{"inclusive_time":1,"id":"46","highest_child_id":1596,"first_entry_time":39494,"exclusive_time":0,"entries":1,"allocations":[{"id":"47","count":1}]},{"inclusive_time":20,"id":"9","highest_child_id":1598,"first_entry_time":39500,"exclusive_time":18,"entries":1,"callees":[{"inclusive_time":1,"id":"20","highest_child_id":1598,"first_entry_time":39518,"exclusive_time":1,"entries":1}],"allocations":[{"id":"2","count":2},{"id":"10","count":3},{"id":"6","count":2}]},{"inclusive_time":35,"id":"526","highest_child_id":1611,"first_entry_time":39535,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":2,"id":"67","highest_child_id":1600,"first_entry_time":39539,"exclusive_time":2,"entries":1},{"inclusive_time":0,"id":"68","highest_child_id":1601,"first_entry_time":39544,"exclusive_time":0,"entries":2},{"inclusive_time":21,"id":"69","highest_child_id":1611,"first_entry_time":39546,"exclusive_time":15,"entries":1,"callees":[{"inclusive_time":1,"id":"70","highest_child_id":1603,"first_entry_time":39549,"exclusive_time":0,"entries":2},{"inclusive_time":0,"id":"30","highest_child_id":1604,"first_entry_time":39551,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"71","highest_child_id":1605,"first_entry_time":39554,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"72","highest_child_id":1607,"first_entry_time":39556,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"73","highest_child_id":1607,"first_entry_time":39557,"exclusive_time":0,"entries":1}]},{"inclusive_time":1,"id":"74","highest_child_id":1609,"first_entry_time":39560,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"73","highest_child_id":1609,"first_entry_time":39561,"exclusive_time":0,"entries":1}]},{"inclusive_time":0,"id":"29","highest_child_id":1610,"first_entry_time":39563,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"75","highest_child_id":1611,"first_entry_time":39565,"exclusive_time":0,"entries":1}]}],"allocations":[{"id":"6","count":1},{"id":"527","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"3","count":1},{"id":"8","count":3}]},{"inclusive_time":5,"id":"271","highest_child_id":1614,"first_entry_time":39571,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":3,"id":"272","highest_child_id":1614,"first_entry_time":39573,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"273","highest_child_id":1614,"first_entry_time":39575,"exclusive_time":0,"entries":1}]}]},{"inclusive_time":7,"id":"470","highest_child_id":1617,"first_entry_time":39578,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":4,"id":"221","highest_child_id":1617,"first_entry_time":39582,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"472","highest_child_id":1617,"first_entry_time":39584,"exclusive_time":1,"entries":1}],"allocations":[{"id":"222","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"471","count":1}]}],"allocations":[{"id":"27","count":2},{"id":"10","count":1},{"id":"6","count":1}]},{"inclusive_time":1,"id":"528","highest_child_id":1618,"first_entry_time":39598,"exclusive_time":1,"entries":1},{"inclusive_time":34,"id":"264","highest_child_id":1624,"first_entry_time":39601,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":18,"id":"251","highest_child_id":1620,"first_entry_time":39603,"exclusive_time":17,"entries":2,"allocations":[{"id":"6","count":1}]},{"inclusive_time":8,"id":"265","highest_child_id":1623,"first_entry_time":39607,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":4,"id":"221","highest_child_id":1623,"first_entry_time":39611,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"267","highest_child_id":1623,"first_entry_time":39614,"exclusive_time":0,"entries":1}],"allocations":[{"id":"222","count":1}]}],"allocations":[{"id":"27","count":1},{"id":"10","count":1},{"id":"6","count":1},{"id":"266","count":1}]},{"inclusive_time":1,"id":"268","highest_child_id":1624,"first_entry_time":39616,"exclusive_time":0,"entries":1}]},{"inclusive_time":168,"id":"529","highest_child_id":1643,"first_entry_time":39659,"exclusive_time":61,"entries":2,"callees":[{"inclusive_time":7,"id":"530","highest_child_id":1626,"first_entry_time":39671,"exclusive_time":6,"entries":2,"allocations":[{"id":"27","count":2},{"id":"53","count":2}]},{"inclusive_time":64,"id":"531","highest_child_id":1636,"first_entry_time":39706,"exclusive_time":27,"entries":2,"callees":[{"inclusive_time":29,"id":"532","highest_child_id":1633,"first_entry_time":39727,"exclusive_time":12,"entries":2,"callees":[{"inclusive_time":4,"id":"110","highest_child_id":1629,"first_entry_time":39733,"exclusive_time":3,"entries":2},{"inclusive_time":12,"id":"112","highest_child_id":1633,"first_entry_time":39738,"exclusive_time":10,"entries":2,"callees":[{"inclusive_time":1,"id":"114","highest_child_id":1631,"first_entry_time":39739,"exclusive_time":0,"entries":2},{"inclusive_time":0,"id":"115","highest_child_id":1632,"first_entry_time":39742,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"44","highest_child_id":1633,"first_entry_time":39745,"exclusive_time":0,"entries":2}],"allocations":[{"id":"6","count":2},{"id":"113","count":2}]}],"allocations":[{"id":"533","count":2},{"id":"534","count":1},{"id":"535","count":1}]},{"inclusive_time":8,"id":"271","highest_child_id":1636,"first_entry_time":39748,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":5,"id":"272","highest_child_id":1636,"first_entry_time":39749,"exclusive_time":4,"entries":2,"callees":[{"inclusive_time":1,"id":"273","highest_child_id":1636,"first_entry_time":39751,"exclusive_time":0,"entries":2}]}]}],"allocations":[{"id":"6","count":4},{"id":"27","count":2}]},{"inclusive_time":2,"id":"536","highest_child_id":1637,"first_entry_time":39764,"exclusive_time":1,"entries":2},{"inclusive_time":33,"id":"264","highest_child_id":1643,"first_entry_time":39769,"exclusive_time":11,"entries":2,"callees":[{"inclusive_time":7,"id":"251","highest_child_id":1639,"first_entry_time":39771,"exclusive_time":6,"entries":4,"allocations":[{"id":"6","count":2}]},{"inclusive_time":14,"id":"265","highest_child_id":1642,"first_entry_time":39775,"exclusive_time":7,"entries":2,"callees":[{"inclusive_time":6,"id":"221","highest_child_id":1642,"first_entry_time":39779,"exclusive_time":4,"entries":2,"callees":[{"inclusive_time":1,"id":"267","highest_child_id":1642,"first_entry_time":39782,"exclusive_time":1,"entries":2}],"allocations":[{"id":"222","count":2}]}],"allocations":[{"id":"27","count":2},{"id":"10","count":2},{"id":"6","count":2},{"id":"266","count":2}]},{"inclusive_time":2,"id":"268","highest_child_id":1643,"first_entry_time":39784,"exclusive_time":1,"entries":2}]}],"allocations":[{"id":"27","count":2}]},{"inclusive_time":12,"id":"537","highest_child_id":1645,"first_entry_time":39850,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":1,"id":"538","highest_child_id":1645,"first_entry_time":39860,"exclusive_time":1,"entries":1}],"allocations":[{"id":"25","count":1}]}]},{"inclusive_time":1609,"id":"243","highest_child_id":1786,"first_entry_time":39864,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1605,"id":"244","highest_child_id":1786,"first_entry_time":39868,"exclusive_time":367,"entries":1,"callees":[{"inclusive_time":1,"id":"189","highest_child_id":1648,"first_entry_time":39869,"exclusive_time":0,"entries":1},{"inclusive_time":21,"id":"207","highest_child_id":1655,"first_entry_time":39872,"exclusive_time":17,"entries":1,"callees":[{"inclusive_time":1,"id":"208","highest_child_id":1650,"first_entry_time":39875,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"209","highest_child_id":1651,"first_entry_time":39877,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"210","highest_child_id":1652,"first_entry_time":39879,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"211","highest_child_id":1653,"first_entry_time":39881,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":0,"id":"212","highest_child_id":1654,"first_entry_time":39884,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"207","highest_child_id":1655,"first_entry_time":39887,"exclusive_time":0,"entries":2}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":1216,"id":"539","highest_child_id":1786,"first_entry_time":40257,"exclusive_time":482,"entries":1,"callees":[{"inclusive_time":116,"id":"540","highest_child_id":1682,"first_entry_time":40305,"exclusive_time":24,"entries":1,"callees":[{"inclusive_time":25,"id":"256","highest_child_id":1662,"first_entry_time":40308,"exclusive_time":17,"entries":2,"callees":[{"inclusive_time":1,"id":"216","highest_child_id":1659,"first_entry_time":40313,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"257","highest_child_id":1660,"first_entry_time":40315,"exclusive_time":0,"entries":2},{"inclusive_time":2,"id":"251","highest_child_id":1661,"first_entry_time":40319,"exclusive_time":2,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":4,"id":"258","highest_child_id":1662,"first_entry_time":40322,"exclusive_time":3,"entries":2,"allocations":[{"id":"27","count":2}]}]},{"inclusive_time":4,"id":"271","highest_child_id":1665,"first_entry_time":40328,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":2,"id":"272","highest_child_id":1665,"first_entry_time":40329,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"273","highest_child_id":1665,"first_entry_time":40331,"exclusive_time":0,"entries":1}]}]},{"inclusive_time":59,"id":"466","highest_child_id":1680,"first_entry_time":40344,"exclusive_time":20,"entries":1,"callees":[{"inclusive_time":0,"id":"216","highest_child_id":1667,"first_entry_time":40347,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"467","highest_child_id":1668,"first_entry_time":40348,"exclusive_time":0,"entries":1},{"inclusive_time":9,"id":"468","highest_child_id":1669,"first_entry_time":40351,"exclusive_time":9,"entries":1,"allocations":[{"id":"10","count":1},{"id":"222","count":1}]},{"inclusive_time":4,"id":"469","highest_child_id":1670,"first_entry_time":40365,"exclusive_time":3,"entries":1,"allocations":[{"id":"27","count":1},{"id":"173","count":1},{"id":"25","count":1}]},{"inclusive_time":16,"id":"343","highest_child_id":1676,"first_entry_time":40374,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":13,"id":"256","highest_child_id":1676,"first_entry_time":40376,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":0,"id":"216","highest_child_id":1673,"first_entry_time":40379,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"257","highest_child_id":1674,"first_entry_time":40381,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"251","highest_child_id":1675,"first_entry_time":40382,"exclusive_time":1,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":2,"id":"258","highest_child_id":1676,"first_entry_time":40387,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]}]}]},{"inclusive_time":0,"id":"271","highest_child_id":1677,"first_entry_time":40392,"exclusive_time":0,"entries":1},{"inclusive_time":8,"id":"470","highest_child_id":1680,"first_entry_time":40394,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":4,"id":"221","highest_child_id":1680,"first_entry_time":40398,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"472","highest_child_id":1680,"first_entry_time":40400,"exclusive_time":1,"entries":1}],"allocations":[{"id":"222","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"471","count":1}]}],"allocations":[{"id":"27","count":3},{"id":"10","count":1},{"id":"6","count":1},{"id":"25","count":1},{"id":"53","count":4}]},{"inclusive_time":4,"id":"542","highest_child_id":1682,"first_entry_time":40417,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"528","highest_child_id":1682,"first_entry_time":40419,"exclusive_time":1,"entries":1}]}],"allocations":[{"id":"541","count":1}]},{"inclusive_time":23,"id":"543","highest_child_id":1688,"first_entry_time":40435,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":19,"id":"256","highest_child_id":1688,"first_entry_time":40437,"exclusive_time":13,"entries":2,"callees":[{"inclusive_time":1,"id":"216","highest_child_id":1685,"first_entry_time":40441,"exclusive_time":0,"entries":2},{"inclusive_time":0,"id":"257","highest_child_id":1686,"first_entry_time":40443,"exclusive_time":0,"entries":2},{"inclusive_time":2,"id":"251","highest_child_id":1687,"first_entry_time":40445,"exclusive_time":2,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":3,"id":"258","highest_child_id":1688,"first_entry_time":40448,"exclusive_time":2,"entries":2,"allocations":[{"id":"27","count":2}]}]}]},{"inclusive_time":270,"id":"544","highest_child_id":1721,"first_entry_time":40548,"exclusive_time":169,"entries":1,"callees":[{"inclusive_time":3,"id":"219","highest_child_id":1690,"first_entry_time":40553,"exclusive_time":2,"entries":2,"allocations":[{"id":"10","count":2},{"id":"6","count":2},{"id":"220","count":2}]},{"inclusive_time":1,"id":"216","highest_child_id":1691,"first_entry_time":40558,"exclusive_time":0,"entries":4},{"inclusive_time":10,"id":"545","highest_child_id":1693,"first_entry_time":40568,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":1,"id":"546","highest_child_id":1693,"first_entry_time":40577,"exclusive_time":1,"entries":1}]},{"inclusive_time":20,"id":"256","highest_child_id":1698,"first_entry_time":40579,"exclusive_time":14,"entries":2,"callees":[{"inclusive_time":1,"id":"216","highest_child_id":1695,"first_entry_time":40583,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"257","highest_child_id":1696,"first_entry_time":40584,"exclusive_time":0,"entries":2},{"inclusive_time":2,"id":"251","highest_child_id":1697,"first_entry_time":40587,"exclusive_time":2,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":3,"id":"258","highest_child_id":1698,"first_entry_time":40590,"exclusive_time":2,"entries":2,"allocations":[{"id":"27","count":2}]}]},{"inclusive_time":1,"id":"226","highest_child_id":1699,"first_entry_time":40602,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"547","highest_child_id":1700,"first_entry_time":40615,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"548","highest_child_id":1701,"first_entry_time":40629,"exclusive_time":2,"entries":1},{"inclusive_time":1,"id":"549","highest_child_id":1702,"first_entry_time":40641,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"550","highest_child_id":1703,"first_entry_time":40653,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"551","highest_child_id":1704,"first_entry_time":40669,"exclusive_time":1,"entries":1},{"inclusive_time":25,"id":"552","highest_child_id":1709,"first_entry_time":40687,"exclusive_time":22,"entries":1,"callees":[{"inclusive_time":1,"id":"553","highest_child_id":1706,"first_entry_time":40697,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"554","highest_child_id":1707,"first_entry_time":40706,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"338","highest_child_id":1708,"first_entry_time":40709,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"273","highest_child_id":1709,"first_entry_time":40711,"exclusive_time":0,"entries":1}]},{"inclusive_time":1,"id":"555","highest_child_id":1710,"first_entry_time":40721,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"204","highest_child_id":1711,"first_entry_time":40724,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"556","highest_child_id":1712,"first_entry_time":40735,"exclusive_time":1,"entries":2},{"inclusive_time":2,"id":"557","highest_child_id":1713,"first_entry_time":40748,"exclusive_time":2,"entries":1,"allocations":[{"id":"6","count":1},{"id":"558","count":1}]},{"inclusive_time":14,"id":"559","highest_child_id":1717,"first_entry_time":40767,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":2,"id":"470","highest_child_id":1715,"first_entry_time":40769,"exclusive_time":1,"entries":2,"allocations":[{"id":"6","count":2},{"id":"471","count":2}]},{"inclusive_time":3,"id":"265","highest_child_id":1716,"first_entry_time":40774,"exclusive_time":2,"entries":1,"allocations":[{"id":"10","count":1},{"id":"6","count":1},{"id":"266","count":1}]},{"inclusive_time":2,"id":"290","highest_child_id":1717,"first_entry_time":40778,"exclusive_time":1,"entries":1,"allocations":[{"id":"10","count":1},{"id":"6","count":1},{"id":"291","count":1}]}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":2,"id":"268","highest_child_id":1718,"first_entry_time":40782,"exclusive_time":1,"entries":1},{"inclusive_time":13,"id":"560","highest_child_id":1721,"first_entry_time":40805,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":1,"id":"561","highest_child_id":1720,"first_entry_time":40815,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"338","highest_child_id":1721,"first_entry_time":40817,"exclusive_time":0,"entries":1}]}],"allocations":[{"id":"2","count":4},{"id":"10","count":1},{"id":"27","count":2}]},{"inclusive_time":18,"id":"562","highest_child_id":1727,"first_entry_time":40875,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":14,"id":"256","highest_child_id":1727,"first_entry_time":40878,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":0,"id":"216","highest_child_id":1724,"first_entry_time":40882,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"257","highest_child_id":1725,"first_entry_time":40884,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"251","highest_child_id":1726,"first_entry_time":40887,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":1,"id":"258","highest_child_id":1727,"first_entry_time":40890,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]}]}]},{"inclusive_time":13,"id":"563","highest_child_id":1730,"first_entry_time":40916,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":0,"id":"216","highest_child_id":1729,"first_entry_time":40918,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"564","highest_child_id":1730,"first_entry_time":40927,"exclusive_time":0,"entries":1}],"allocations":[{"id":"10","count":1},{"id":"25","count":1}]},{"inclusive_time":25,"id":"565","highest_child_id":1733,"first_entry_time":40945,"exclusive_time":23,"entries":1,"callees":[{"inclusive_time":0,"id":"216","highest_child_id":1732,"first_entry_time":40947,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"566","highest_child_id":1733,"first_entry_time":40955,"exclusive_time":0,"entries":1}],"allocations":[{"id":"25","count":1}]},{"inclusive_time":11,"id":"567","highest_child_id":1736,"first_entry_time":41013,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":2,"id":"479","highest_child_id":1735,"first_entry_time":41017,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"362","highest_child_id":1736,"first_entry_time":41022,"exclusive_time":0,"entries":1}]},{"inclusive_time":3,"id":"219","highest_child_id":1737,"first_entry_time":41025,"exclusive_time":2,"entries":1,"allocations":[{"id":"10","count":1},{"id":"6","count":1},{"id":"220","count":1}]},{"inclusive_time":2,"id":"568","highest_child_id":1738,"first_entry_time":41040,"exclusive_time":2,"entries":1},{"inclusive_time":3,"id":"288","highest_child_id":1739,"first_entry_time":41050,"exclusive_time":2,"entries":1,"allocations":[{"id":"27","count":1},{"id":"6","count":1},{"id":"289","count":1}]},{"inclusive_time":3,"id":"470","highest_child_id":1740,"first_entry_time":41055,"exclusive_time":2,"entries":2,"allocations":[{"id":"6","count":2},{"id":"471","count":2}]},{"inclusive_time":7,"id":"290","highest_child_id":1741,"first_entry_time":41058,"exclusive_time":5,"entries":4,"allocations":[{"id":"10","count":4},{"id":"6","count":4},{"id":"291","count":4}]},{"inclusive_time":6,"id":"560","highest_child_id":1744,"first_entry_time":41067,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"561","highest_child_id":1743,"first_entry_time":41069,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"338","highest_child_id":1744,"first_entry_time":41072,"exclusive_time":0,"entries":1}]},{"inclusive_time":1,"id":"223","highest_child_id":1745,"first_entry_time":41074,"exclusive_time":0,"entries":1},{"inclusive_time":20,"id":"265","highest_child_id":1748,"first_entry_time":41077,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":16,"id":"221","highest_child_id":1748,"first_entry_time":41081,"exclusive_time":14,"entries":1,"callees":[{"inclusive_time":2,"id":"569","highest_child_id":1748,"first_entry_time":41095,"exclusive_time":1,"entries":1}],"allocations":[{"id":"222","count":1}]}],"allocations":[{"id":"27","count":1},{"id":"10","count":1},{"id":"6","count":1},{"id":"266","count":1}]},{"inclusive_time":2,"id":"570","highest_child_id":1749,"first_entry_time":41107,"exclusive_time":2,"entries":1},{"inclusive_time":3,"id":"551","highest_child_id":1750,"first_entry_time":41111,"exclusive_time":2,"entries":2,"allocations":[{"id":"27","count":2}]},{"inclusive_time":1,"id":"204","highest_child_id":1751,"first_entry_time":41117,"exclusive_time":0,"entries":2},{"inclusive_time":44,"id":"571","highest_child_id":1756,"first_entry_time":41151,"exclusive_time":15,"entries":1,"callees":[{"inclusive_time":7,"id":"265","highest_child_id":1753,"first_entry_time":41154,"exclusive_time":6,"entries":5,"allocations":[{"id":"27","count":5},{"id":"10","count":5},{"id":"6","count":5},{"id":"266","count":5}]},{"inclusive_time":7,"id":"290","highest_child_id":1754,"first_entry_time":41160,"exclusive_time":5,"entries":6,"allocations":[{"id":"10","count":6},{"id":"6","count":6},{"id":"291","count":6}]},{"inclusive_time":1,"id":"288","highest_child_id":1755,"first_entry_time":41169,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1},{"id":"6","count":1},{"id":"289","count":1}]},{"inclusive_time":14,"id":"219","highest_child_id":1756,"first_entry_time":41180,"exclusive_time":14,"entries":1,"allocations":[{"id":"10","count":1},{"id":"6","count":1},{"id":"220","count":1}]}]},{"inclusive_time":3,"id":"268","highest_child_id":1757,"first_entry_time":41198,"exclusive_time":2,"entries":3},{"inclusive_time":2,"id":"572","highest_child_id":1758,"first_entry_time":41218,"exclusive_time":2,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":3,"id":"573","highest_child_id":1760,"first_entry_time":41231,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"273","highest_child_id":1760,"first_entry_time":41234,"exclusive_time":0,"entries":1}]},{"inclusive_time":3,"id":"574","highest_child_id":1762,"first_entry_time":41247,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"554","highest_child_id":1762,"first_entry_time":41249,"exclusive_time":0,"entries":1}]},{"inclusive_time":1,"id":"575","highest_child_id":1763,"first_entry_time":41261,"exclusive_time":0,"entries":1},{"inclusive_time":3,"id":"576","highest_child_id":1765,"first_entry_time":41271,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"561","highest_child_id":1765,"first_entry_time":41274,"exclusive_time":0,"entries":1}]},{"inclusive_time":1,"id":"556","highest_child_id":1766,"first_entry_time":41276,"exclusive_time":0,"entries":1},{"inclusive_time":22,"id":"343","highest_child_id":1772,"first_entry_time":41281,"exclusive_time":15,"entries":1,"callees":[{"inclusive_time":0,"id":"216","highest_child_id":1768,"first_entry_time":41284,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"257","highest_child_id":1769,"first_entry_time":41286,"exclusive_time":0,"entries":1},{"inclusive_time":3,"id":"251","highest_child_id":1770,"first_entry_time":41289,"exclusive_time":2,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":2,"id":"258","highest_child_id":1771,"first_entry_time":41295,"exclusive_time":2,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":1,"id":"475","highest_child_id":1772,"first_entry_time":41300,"exclusive_time":0,"entries":1}],"allocations":[{"id":"10","count":1},{"id":"25","count":1}]},{"inclusive_time":1,"id":"557","highest_child_id":1773,"first_entry_time":41310,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1},{"id":"558","count":1}]},{"inclusive_time":119,"id":"577","highest_child_id":1784,"first_entry_time":41325,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":113,"id":"221","highest_child_id":1784,"first_entry_time":41331,"exclusive_time":99,"entries":1,"callees":[{"inclusive_time":1,"id":"579","highest_child_id":1776,"first_entry_time":41343,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"580","highest_child_id":1777,"first_entry_time":41355,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"581","highest_child_id":1778,"first_entry_time":41367,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"582","highest_child_id":1779,"first_entry_time":41378,"exclusive_time":2,"entries":1},{"inclusive_time":1,"id":"583","highest_child_id":1780,"first_entry_time":41392,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"584","highest_child_id":1781,"first_entry_time":41405,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"585","highest_child_id":1782,"first_entry_time":41417,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"586","highest_child_id":1783,"first_entry_time":41430,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"587","highest_child_id":1784,"first_entry_time":41442,"exclusive_time":1,"entries":1}],"allocations":[{"id":"222","count":1}]}],"allocations":[{"id":"10","count":1},{"id":"578","count":1}]},{"inclusive_time":5,"id":"588","highest_child_id":1785,"first_entry_time":41456,"exclusive_time":3,"entries":4,"allocations":[{"id":"6","count":1}]},{"inclusive_time":1,"id":"476","highest_child_id":1786,"first_entry_time":41471,"exclusive_time":1,"entries":1}],"allocations":[{"id":"6","count":1},{"id":"10","count":2},{"id":"27","count":5}]}]}]}],"allocations":[{"id":"6","count":6},{"id":"10","count":7},{"id":"27","count":7},{"id":"28","count":1}]},{"inclusive_time":19,"id":"589","highest_child_id":1790,"first_entry_time":41485,"exclusive_time":14,"entries":2,"callees":[{"inclusive_time":1,"id":"216","highest_child_id":1788,"first_entry_time":41487,"exclusive_time":0,"entries":2},{"inclusive_time":5,"id":"590","highest_child_id":1790,"first_entry_time":41498,"exclusive_time":4,"entries":2,"callees":[{"inclusive_time":1,"id":"546","highest_child_id":1790,"first_entry_time":41500,"exclusive_time":0,"entries":4}]}]}],"allocations":[{"id":"6","count":1},{"id":"27","count":2},{"id":"53","count":2}]},{"inclusive_time":1,"id":"207","highest_child_id":1791,"first_entry_time":41507,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1},{"id":"6","count":1}]},{"inclusive_time":3,"id":"234","highest_child_id":1793,"first_entry_time":41510,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":0,"id":"335","highest_child_id":1793,"first_entry_time":41513,"exclusive_time":0,"entries":1}]}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":4,"id":"591","highest_child_id":1794,"first_entry_time":41537,"exclusive_time":3,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":5,"id":"592","highest_child_id":1796,"first_entry_time":41562,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"479","highest_child_id":1796,"first_entry_time":41565,"exclusive_time":1,"entries":1}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":4998,"id":"593","highest_child_id":2076,"first_entry_time":41594,"exclusive_time":68,"entries":1,"callees":[{"inclusive_time":18,"id":"166","highest_child_id":1802,"first_entry_time":41599,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":16,"id":"167","highest_child_id":1802,"first_entry_time":41601,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"168","highest_child_id":1800,"first_entry_time":41603,"exclusive_time":0,"entries":1,"allocations":[{"id":"594","count":1}]},{"inclusive_time":12,"id":"108","highest_child_id":1802,"first_entry_time":41605,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":1,"id":"109","highest_child_id":1802,"first_entry_time":41607,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":2},{"id":"10","count":1}]}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":4871,"id":"595","highest_child_id":2070,"first_entry_time":41665,"exclusive_time":224,"entries":1,"callees":[{"inclusive_time":236,"id":"596","highest_child_id":1813,"first_entry_time":41677,"exclusive_time":43,"entries":1,"callees":[{"inclusive_time":193,"id":"598","highest_child_id":1813,"first_entry_time":41720,"exclusive_time":85,"entries":1,"callees":[{"inclusive_time":2,"id":"279","highest_child_id":1806,"first_entry_time":41724,"exclusive_time":1,"entries":2},{"inclusive_time":94,"id":"599","highest_child_id":1809,"first_entry_time":41748,"exclusive_time":69,"entries":10,"callees":[{"inclusive_time":20,"id":"251","highest_child_id":1808,"first_entry_time":41752,"exclusive_time":13,"entries":20,"allocations":[{"id":"6","count":20}]},{"inclusive_time":11,"id":"600","highest_child_id":1809,"first_entry_time":41771,"exclusive_time":8,"entries":10}],"allocations":[{"id":"27","count":10}]},{"inclusive_time":15,"id":"601","highest_child_id":1813,"first_entry_time":41897,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":3,"id":"251","highest_child_id":1811,"first_entry_time":41901,"exclusive_time":2,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":1,"id":"600","highest_child_id":1812,"first_entry_time":41906,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"475","highest_child_id":1813,"first_entry_time":41909,"exclusive_time":0,"entries":1}],"allocations":[{"id":"10","count":1},{"id":"25","count":1}]}],"allocations":[{"id":"10","count":3},{"id":"6","count":1},{"id":"27","count":3}]}],"allocations":[{"id":"597","count":1}]},{"inclusive_time":11,"id":"602","highest_child_id":1815,"first_entry_time":41925,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":1,"id":"604","highest_child_id":1815,"first_entry_time":41935,"exclusive_time":1,"entries":1}],"allocations":[{"id":"603","count":1}]},{"inclusive_time":12,"id":"605","highest_child_id":1817,"first_entry_time":41945,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":2,"id":"607","highest_child_id":1817,"first_entry_time":41956,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1},{"id":"10","count":1}]}],"allocations":[{"id":"606","count":1}]},{"inclusive_time":2,"id":"279","highest_child_id":1818,"first_entry_time":41959,"exclusive_time":1,"entries":2},{"inclusive_time":2,"id":"288","highest_child_id":1819,"first_entry_time":41965,"exclusive_time":2,"entries":1,"allocations":[{"id":"27","count":1},{"id":"6","count":1},{"id":"289","count":1}]},{"inclusive_time":2,"id":"290","highest_child_id":1820,"first_entry_time":41969,"exclusive_time":2,"entries":1,"allocations":[{"id":"10","count":1},{"id":"6","count":1},{"id":"291","count":1}]},{"inclusive_time":5,"id":"608","highest_child_id":1821,"first_entry_time":41981,"exclusive_time":5,"entries":1},{"inclusive_time":4372,"id":"609","highest_child_id":2069,"first_entry_time":42112,"exclusive_time":626,"entries":1,"callees":[{"inclusive_time":1,"id":"610","highest_child_id":1823,"first_entry_time":42123,"exclusive_time":1,"entries":1},{"inclusive_time":36,"id":"166","highest_child_id":1828,"first_entry_time":42127,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":34,"id":"167","highest_child_id":1828,"first_entry_time":42128,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"168","highest_child_id":1826,"first_entry_time":42130,"exclusive_time":0,"entries":1,"allocations":[{"id":"611","count":1}]},{"inclusive_time":30,"id":"108","highest_child_id":1828,"first_entry_time":42132,"exclusive_time":29,"entries":1,"callees":[{"inclusive_time":0,"id":"109","highest_child_id":1828,"first_entry_time":42134,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":5},{"id":"10","count":4}]}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":1,"id":"338","highest_child_id":1829,"first_entry_time":42166,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"279","highest_child_id":1830,"first_entry_time":42168,"exclusive_time":1,"entries":2},{"inclusive_time":3516,"id":"612","highest_child_id":2044,"first_entry_time":42450,"exclusive_time":51,"entries":1,"callees":[{"inclusive_time":6,"id":"282","highest_child_id":1833,"first_entry_time":42460,"exclusive_time":4,"entries":3,"callees":[{"inclusive_time":2,"id":"283","highest_child_id":1833,"first_entry_time":42463,"exclusive_time":1,"entries":3}]},{"inclusive_time":4,"id":"285","highest_child_id":1835,"first_entry_time":42466,"exclusive_time":2,"entries":3,"callees":[{"inclusive_time":1,"id":"283","highest_child_id":1835,"first_entry_time":42467,"exclusive_time":0,"entries":3}]},{"inclusive_time":5,"id":"518","highest_child_id":1837,"first_entry_time":42469,"exclusive_time":2,"entries":3,"callees":[{"inclusive_time":2,"id":"283","highest_child_id":1837,"first_entry_time":42470,"exclusive_time":1,"entries":3,"allocations":[{"id":"28","count":3}]}]},{"inclusive_time":2,"id":"613","highest_child_id":1838,"first_entry_time":42484,"exclusive_time":1,"entries":3},{"inclusive_time":3447,"id":"612","highest_child_id":2043,"first_entry_time":42487,"exclusive_time":1195,"entries":3,"callees":[{"inclusive_time":20,"id":"282","highest_child_id":1841,"first_entry_time":42492,"exclusive_time":13,"entries":13,"callees":[{"inclusive_time":6,"id":"283","highest_child_id":1841,"first_entry_time":42493,"exclusive_time":2,"entries":13}]},{"inclusive_time":16,"id":"285","highest_child_id":1843,"first_entry_time":42495,"exclusive_time":10,"entries":13,"callees":[{"inclusive_time":6,"id":"283","highest_child_id":1843,"first_entry_time":42496,"exclusive_time":1,"entries":13}]},{"inclusive_time":25,"id":"518","highest_child_id":1845,"first_entry_time":42498,"exclusive_time":17,"entries":13,"callees":[{"inclusive_time":8,"id":"283","highest_child_id":1845,"first_entry_time":42499,"exclusive_time":3,"entries":13,"allocations":[{"id":"28","count":13}]}]},{"inclusive_time":122,"id":"614","highest_child_id":1851,"first_entry_time":42570,"exclusive_time":74,"entries":8,"callees":[{"inclusive_time":6,"id":"615","highest_child_id":1847,"first_entry_time":42585,"exclusive_time":3,"entries":8},{"inclusive_time":5,"id":"616","highest_child_id":1848,"first_entry_time":42600,"exclusive_time":2,"entries":8},{"inclusive_time":41,"id":"617","highest_child_id":1851,"first_entry_time":42618,"exclusive_time":34,"entries":8,"callees":[{"inclusive_time":4,"id":"615","highest_child_id":1850,"first_entry_time":42619,"exclusive_time":2,"entries":8},{"inclusive_time":4,"id":"618","highest_child_id":1851,"first_entry_time":42634,"exclusive_time":2,"entries":8}],"allocations":[{"id":"27","count":16}]}],"allocations":[{"id":"27","count":16}]},{"inclusive_time":540,"id":"619","highest_child_id":1919,"first_entry_time":43703,"exclusive_time":116,"entries":3,"callees":[{"inclusive_time":5,"id":"287","highest_child_id":1853,"first_entry_time":43710,"exclusive_time":3,"entries":8},{"inclusive_time":43,"id":"620","highest_child_id":1857,"first_entry_time":43759,"exclusive_time":29,"entries":3,"callees":[{"inclusive_time":13,"id":"621","highest_child_id":1856,"first_entry_time":43782,"exclusive_time":10,"entries":3,"callees":[{"inclusive_time":3,"id":"287","highest_child_id":1856,"first_entry_time":43784,"exclusive_time":1,"entries":6}],"allocations":[{"id":"27","count":6}]},{"inclusive_time":1,"id":"287","highest_child_id":1857,"first_entry_time":44101,"exclusive_time":0,"entries":2}],"allocations":[{"id":"27","count":2}]},{"inclusive_time":375,"id":"622","highest_child_id":1916,"first_entry_time":43806,"exclusive_time":9,"entries":3,"callees":[{"inclusive_time":2,"id":"287","highest_child_id":1859,"first_entry_time":43808,"exclusive_time":1,"entries":3},{"inclusive_time":364,"id":"612","highest_child_id":1916,"first_entry_time":43811,"exclusive_time":39,"entries":3,"callees":[{"inclusive_time":10,"id":"282","highest_child_id":1862,"first_entry_time":43817,"exclusive_time":6,"entries":6,"callees":[{"inclusive_time":3,"id":"283","highest_child_id":1862,"first_entry_time":43818,"exclusive_time":1,"entries":6}]},{"inclusive_time":53,"id":"614","highest_child_id":1870,"first_entry_time":43822,"exclusive_time":35,"entries":3,"callees":[{"inclusive_time":2,"id":"615","highest_child_id":1864,"first_entry_time":43824,"exclusive_time":1,"entries":3},{"inclusive_time":2,"id":"616","highest_child_id":1865,"first_entry_time":43826,"exclusive_time":1,"entries":3},{"inclusive_time":11,"id":"623","highest_child_id":1868,"first_entry_time":43850,"exclusive_time":8,"entries":2,"callees":[{"inclusive_time":2,"id":"615","highest_child_id":1867,"first_entry_time":43852,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"618","highest_child_id":1868,"first_entry_time":43855,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":3},{"id":"10","count":1}]},{"inclusive_time":3,"id":"617","highest_child_id":1870,"first_entry_time":44051,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"615","highest_child_id":1870,"first_entry_time":44052,"exclusive_time":1,"entries":1}],"allocations":[{"id":"27","count":1}]}],"allocations":[{"id":"27","count":6}]},{"inclusive_time":253,"id":"619","highest_child_id":1912,"first_entry_time":43867,"exclusive_time":44,"entries":3,"callees":[{"inclusive_time":4,"id":"287","highest_child_id":1872,"first_entry_time":43877,"exclusive_time":2,"entries":6},{"inclusive_time":19,"id":"620","highest_child_id":1876,"first_entry_time":43882,"exclusive_time":7,"entries":3,"callees":[{"inclusive_time":10,"id":"621","highest_child_id":1875,"first_entry_time":43884,"exclusive_time":8,"entries":3,"callees":[{"inclusive_time":3,"id":"287","highest_child_id":1875,"first_entry_time":43885,"exclusive_time":1,"entries":6}],"allocations":[{"id":"27","count":6}]},{"inclusive_time":1,"id":"287","highest_child_id":1876,"first_entry_time":44177,"exclusive_time":1,"entries":2}],"allocations":[{"id":"27","count":2}]},{"inclusive_time":188,"id":"622","highest_child_id":1912,"first_entry_time":43890,"exclusive_time":11,"entries":3,"callees":[{"inclusive_time":1,"id":"287","highest_child_id":1878,"first_entry_time":43892,"exclusive_time":0,"entries":3},{"inclusive_time":176,"id":"612","highest_child_id":1912,"first_entry_time":43894,"exclusive_time":30,"entries":3,"callees":[{"inclusive_time":6,"id":"282","highest_child_id":1881,"first_entry_time":43898,"exclusive_time":4,"entries":4,"callees":[{"inclusive_time":2,"id":"283","highest_child_id":1881,"first_entry_time":43899,"exclusive_time":1,"entries":4}]},{"inclusive_time":5,"id":"285","highest_child_id":1883,"first_entry_time":43901,"exclusive_time":3,"entries":4,"callees":[{"inclusive_time":2,"id":"283","highest_child_id":1883,"first_entry_time":43902,"exclusive_time":0,"entries":4}]},{"inclusive_time":6,"id":"518","highest_child_id":1885,"first_entry_time":43904,"exclusive_time":3,"entries":4,"callees":[{"inclusive_time":2,"id":"283","highest_child_id":1885,"first_entry_time":43905,"exclusive_time":1,"entries":4,"allocations":[{"id":"28","count":4}]}]},{"inclusive_time":11,"id":"614","highest_child_id":1890,"first_entry_time":44139,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":1,"id":"615","highest_child_id":1887,"first_entry_time":44141,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"616","highest_child_id":1888,"first_entry_time":44143,"exclusive_time":0,"entries":1},{"inclusive_time":3,"id":"623","highest_child_id":1890,"first_entry_time":44146,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"615","highest_child_id":1890,"first_entry_time":44147,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]}],"allocations":[{"id":"27","count":2}]},{"inclusive_time":119,"id":"619","highest_child_id":1912,"first_entry_time":44192,"exclusive_time":42,"entries":2,"callees":[{"inclusive_time":2,"id":"287","highest_child_id":1892,"first_entry_time":44194,"exclusive_time":1,"entries":4},{"inclusive_time":9,"id":"620","highest_child_id":1895,"first_entry_time":44198,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":6,"id":"621","highest_child_id":1895,"first_entry_time":44199,"exclusive_time":5,"entries":2,"callees":[{"inclusive_time":2,"id":"287","highest_child_id":1895,"first_entry_time":44201,"exclusive_time":0,"entries":4}],"allocations":[{"id":"27","count":4}]}]},{"inclusive_time":63,"id":"622","highest_child_id":1910,"first_entry_time":44205,"exclusive_time":6,"entries":2,"callees":[{"inclusive_time":1,"id":"287","highest_child_id":1897,"first_entry_time":44206,"exclusive_time":0,"entries":2},{"inclusive_time":55,"id":"612","highest_child_id":1909,"first_entry_time":44208,"exclusive_time":23,"entries":2,"callees":[{"inclusive_time":5,"id":"282","highest_child_id":1900,"first_entry_time":44212,"exclusive_time":3,"entries":3,"callees":[{"inclusive_time":1,"id":"283","highest_child_id":1900,"first_entry_time":44213,"exclusive_time":1,"entries":3}]},{"inclusive_time":4,"id":"285","highest_child_id":1902,"first_entry_time":44215,"exclusive_time":2,"entries":3,"callees":[{"inclusive_time":1,"id":"283","highest_child_id":1902,"first_entry_time":44216,"exclusive_time":0,"entries":3}]},{"inclusive_time":8,"id":"518","highest_child_id":1904,"first_entry_time":44221,"exclusive_time":5,"entries":3,"callees":[{"inclusive_time":2,"id":"283","highest_child_id":1904,"first_entry_time":44222,"exclusive_time":1,"entries":3,"allocations":[{"id":"28","count":3}]}]},{"inclusive_time":16,"id":"614","highest_child_id":1909,"first_entry_time":44225,"exclusive_time":9,"entries":2,"callees":[{"inclusive_time":2,"id":"615","highest_child_id":1906,"first_entry_time":44227,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"616","highest_child_id":1907,"first_entry_time":44229,"exclusive_time":0,"entries":2},{"inclusive_time":4,"id":"623","highest_child_id":1909,"first_entry_time":44232,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":1,"id":"615","highest_child_id":1909,"first_entry_time":44233,"exclusive_time":1,"entries":2}],"allocations":[{"id":"27","count":2}]}],"allocations":[{"id":"27","count":4}]}]},{"inclusive_time":1,"id":"498","highest_child_id":1910,"first_entry_time":44276,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":3}]},{"inclusive_time":3,"id":"498","highest_child_id":1911,"first_entry_time":44265,"exclusive_time":1,"entries":5},{"inclusive_time":1,"id":"624","highest_child_id":1912,"first_entry_time":44308,"exclusive_time":1,"entries":1}],"allocations":[{"id":"2","count":2},{"id":"27","count":9}]}]}],"allocations":[{"id":"27","count":3}]}],"allocations":[{"id":"2","count":3},{"id":"27","count":6}]},{"inclusive_time":6,"id":"285","highest_child_id":1914,"first_entry_time":44039,"exclusive_time":3,"entries":4,"callees":[{"inclusive_time":2,"id":"283","highest_child_id":1914,"first_entry_time":44040,"exclusive_time":1,"entries":4}]},{"inclusive_time":6,"id":"518","highest_child_id":1916,"first_entry_time":44043,"exclusive_time":3,"entries":4,"callees":[{"inclusive_time":3,"id":"283","highest_child_id":1916,"first_entry_time":44044,"exclusive_time":1,"entries":4,"allocations":[{"id":"28","count":4}]}]}]}],"allocations":[{"id":"27","count":3}]},{"inclusive_time":1,"id":"625","highest_child_id":1917,"first_entry_time":43932,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"618","highest_child_id":1918,"first_entry_time":44071,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"279","highest_child_id":1919,"first_entry_time":44073,"exclusive_time":0,"entries":1}],"allocations":[{"id":"2","count":3},{"id":"27","count":9}]},{"inclusive_time":1,"id":"279","highest_child_id":1920,"first_entry_time":44360,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"626","highest_child_id":1921,"first_entry_time":44371,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"223","highest_child_id":1922,"first_entry_time":44374,"exclusive_time":0,"entries":1},{"inclusive_time":6,"id":"542","highest_child_id":1924,"first_entry_time":44376,"exclusive_time":4,"entries":3,"callees":[{"inclusive_time":2,"id":"528","highest_child_id":1924,"first_entry_time":44378,"exclusive_time":1,"entries":3}]},{"inclusive_time":1,"id":"627","highest_child_id":1925,"first_entry_time":44395,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"628","highest_child_id":1926,"first_entry_time":44406,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"629","highest_child_id":1927,"first_entry_time":44417,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"286","highest_child_id":1928,"first_entry_time":44429,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"613","highest_child_id":1929,"first_entry_time":44431,"exclusive_time":1,"entries":1},{"inclusive_time":1525,"id":"612","highest_child_id":2042,"first_entry_time":44434,"exclusive_time":35,"entries":1,"callees":[{"inclusive_time":4,"id":"282","highest_child_id":1932,"first_entry_time":44438,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":1,"id":"283","highest_child_id":1932,"first_entry_time":44439,"exclusive_time":0,"entries":2}]},{"inclusive_time":3,"id":"285","highest_child_id":1934,"first_entry_time":44441,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":1,"id":"283","highest_child_id":1934,"first_entry_time":44442,"exclusive_time":0,"entries":2}]},{"inclusive_time":4,"id":"518","highest_child_id":1936,"first_entry_time":44444,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":2,"id":"283","highest_child_id":1936,"first_entry_time":44445,"exclusive_time":1,"entries":2,"allocations":[{"id":"28","count":3}]}]},{"inclusive_time":2,"id":"630","highest_child_id":1937,"first_entry_time":44459,"exclusive_time":1,"entries":2},{"inclusive_time":1477,"id":"612","highest_child_id":2041,"first_entry_time":44462,"exclusive_time":115,"entries":2,"callees":[{"inclusive_time":4,"id":"282","highest_child_id":1940,"first_entry_time":44466,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":1,"id":"283","highest_child_id":1940,"first_entry_time":44467,"exclusive_time":0,"entries":2}]},{"inclusive_time":3,"id":"285","highest_child_id":1942,"first_entry_time":44469,"exclusive_time":1,"entries":2,"callees":[{"inclusive_time":1,"id":"283","highest_child_id":1942,"first_entry_time":44470,"exclusive_time":0,"entries":2}]},{"inclusive_time":4,"id":"518","highest_child_id":1944,"first_entry_time":44472,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":1,"id":"283","highest_child_id":1944,"first_entry_time":44474,"exclusive_time":1,"entries":2,"allocations":[{"id":"28","count":2}]}]},{"inclusive_time":1352,"id":"631","highest_child_id":2041,"first_entry_time":44576,"exclusive_time":13,"entries":2,"callees":[{"inclusive_time":1,"id":"287","highest_child_id":1946,"first_entry_time":44580,"exclusive_time":1,"entries":2},{"inclusive_time":1336,"id":"612","highest_child_id":2040,"first_entry_time":44584,"exclusive_time":30,"entries":2,"callees":[{"inclusive_time":4,"id":"282","highest_child_id":1949,"first_entry_time":44588,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":1,"id":"283","highest_child_id":1949,"first_entry_time":44590,"exclusive_time":0,"entries":2}]},{"inclusive_time":8,"id":"285","highest_child_id":1951,"first_entry_time":44592,"exclusive_time":6,"entries":2,"callees":[{"inclusive_time":1,"id":"283","highest_child_id":1951,"first_entry_time":44593,"exclusive_time":0,"entries":2}]},{"inclusive_time":4,"id":"518","highest_child_id":1953,"first_entry_time":44599,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":2,"id":"283","highest_child_id":1953,"first_entry_time":44601,"exclusive_time":1,"entries":2,"allocations":[{"id":"28","count":2}]}]},{"inclusive_time":1291,"id":"619","highest_child_id":2040,"first_entry_time":44604,"exclusive_time":215,"entries":2,"callees":[{"inclusive_time":2,"id":"287","highest_child_id":1955,"first_entry_time":44607,"exclusive_time":1,"entries":4},{"inclusive_time":12,"id":"620","highest_child_id":1959,"first_entry_time":44611,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":9,"id":"621","highest_child_id":1959,"first_entry_time":44613,"exclusive_time":7,"entries":2,"callees":[{"inclusive_time":1,"id":"287","highest_child_id":1958,"first_entry_time":44614,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"498","highest_child_id":1959,"first_entry_time":44616,"exclusive_time":0,"entries":2}],"allocations":[{"id":"27","count":4}]}]},{"inclusive_time":97,"id":"622","highest_child_id":1977,"first_entry_time":44620,"exclusive_time":5,"entries":2,"callees":[{"inclusive_time":1,"id":"287","highest_child_id":1961,"first_entry_time":44622,"exclusive_time":0,"entries":2},{"inclusive_time":90,"id":"612","highest_child_id":1977,"first_entry_time":44624,"exclusive_time":14,"entries":2,"callees":[{"inclusive_time":3,"id":"282","highest_child_id":1964,"first_entry_time":44628,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":1,"id":"283","highest_child_id":1964,"first_entry_time":44629,"exclusive_time":0,"entries":2}]},{"inclusive_time":72,"id":"631","highest_child_id":1977,"first_entry_time":44632,"exclusive_time":8,"entries":2,"callees":[{"inclusive_time":63,"id":"612","highest_child_id":1977,"first_entry_time":44634,"exclusive_time":39,"entries":2,"callees":[{"inclusive_time":6,"id":"282","highest_child_id":1968,"first_entry_time":44638,"exclusive_time":4,"entries":4,"callees":[{"inclusive_time":2,"id":"283","highest_child_id":1968,"first_entry_time":44639,"exclusive_time":1,"entries":4}]},{"inclusive_time":5,"id":"285","highest_child_id":1970,"first_entry_time":44641,"exclusive_time":3,"entries":4,"callees":[{"inclusive_time":2,"id":"283","highest_child_id":1970,"first_entry_time":44642,"exclusive_time":0,"entries":4}]},{"inclusive_time":6,"id":"518","highest_child_id":1972,"first_entry_time":44644,"exclusive_time":3,"entries":4,"callees":[{"inclusive_time":2,"id":"283","highest_child_id":1972,"first_entry_time":44645,"exclusive_time":1,"entries":4,"allocations":[{"id":"28","count":4}]}]},{"inclusive_time":8,"id":"542","highest_child_id":1974,"first_entry_time":44649,"exclusive_time":5,"entries":6,"callees":[{"inclusive_time":3,"id":"528","highest_child_id":1974,"first_entry_time":44650,"exclusive_time":1,"entries":6}]},{"inclusive_time":1,"id":"627","highest_child_id":1975,"first_entry_time":44653,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"628","highest_child_id":1976,"first_entry_time":44656,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"629","highest_child_id":1977,"first_entry_time":44659,"exclusive_time":0,"entries":2}]}]}]}],"allocations":[{"id":"27","count":2}]},{"inclusive_time":1,"id":"624","highest_child_id":1978,"first_entry_time":44677,"exclusive_time":1,"entries":2},{"inclusive_time":3,"id":"498","highest_child_id":1979,"first_entry_time":44679,"exclusive_time":1,"entries":6},{"inclusive_time":16,"id":"599","highest_child_id":1982,"first_entry_time":44685,"exclusive_time":9,"entries":2,"callees":[{"inclusive_time":5,"id":"251","highest_child_id":1981,"first_entry_time":44688,"exclusive_time":4,"entries":4,"allocations":[{"id":"6","count":4}]},{"inclusive_time":2,"id":"600","highest_child_id":1982,"first_entry_time":44693,"exclusive_time":1,"entries":2}]},{"inclusive_time":6,"id":"632","highest_child_id":1984,"first_entry_time":44710,"exclusive_time":4,"entries":2,"callees":[{"inclusive_time":2,"id":"498","highest_child_id":1984,"first_entry_time":44713,"exclusive_time":1,"entries":2}],"allocations":[{"id":"27","count":4}]},{"inclusive_time":941,"id":"633","highest_child_id":2040,"first_entry_time":44878,"exclusive_time":348,"entries":2,"callees":[{"inclusive_time":6,"id":"498","highest_child_id":1986,"first_entry_time":44883,"exclusive_time":3,"entries":10},{"inclusive_time":15,"id":"599","highest_child_id":1989,"first_entry_time":44886,"exclusive_time":9,"entries":2,"callees":[{"inclusive_time":4,"id":"251","highest_child_id":1988,"first_entry_time":44889,"exclusive_time":3,"entries":4,"allocations":[{"id":"6","count":4}]},{"inclusive_time":2,"id":"600","highest_child_id":1989,"first_entry_time":44894,"exclusive_time":1,"entries":2}]},{"inclusive_time":3,"id":"634","highest_child_id":1990,"first_entry_time":44913,"exclusive_time":2,"entries":2},{"inclusive_time":3,"id":"635","highest_child_id":1991,"first_entry_time":44926,"exclusive_time":2,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":114,"id":"636","highest_child_id":2002,"first_entry_time":45016,"exclusive_time":98,"entries":2,"callees":[{"inclusive_time":2,"id":"286","highest_child_id":1993,"first_entry_time":45025,"exclusive_time":1,"entries":2},{"inclusive_time":2,"id":"637","highest_child_id":1994,"first_entry_time":45043,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"638","highest_child_id":1995,"first_entry_time":45058,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"472","highest_child_id":1996,"first_entry_time":45062,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"639","highest_child_id":1997,"first_entry_time":45071,"exclusive_time":1,"entries":2},{"inclusive_time":0,"id":"29","highest_child_id":1998,"first_entry_time":45074,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"75","highest_child_id":1999,"first_entry_time":45076,"exclusive_time":0,"entries":2},{"inclusive_time":5,"id":"640","highest_child_id":2001,"first_entry_time":45090,"exclusive_time":4,"entries":2,"callees":[{"inclusive_time":1,"id":"626","highest_child_id":2001,"first_entry_time":45092,"exclusive_time":0,"entries":2}]},{"inclusive_time":4,"id":"338","highest_child_id":2002,"first_entry_time":45099,"exclusive_time":2,"entries":6,"allocations":[{"id":"27","count":2}]}],"allocations":[{"id":"10","count":8},{"id":"25","count":2},{"id":"28","count":2}]},{"inclusive_time":12,"id":"641","highest_child_id":2005,"first_entry_time":45119,"exclusive_time":9,"entries":2,"callees":[{"inclusive_time":2,"id":"67","highest_child_id":2004,"first_entry_time":45124,"exclusive_time":2,"entries":1},{"inclusive_time":0,"id":"68","highest_child_id":2005,"first_entry_time":45128,"exclusive_time":0,"entries":2}],"allocations":[{"id":"6","count":2}]},{"inclusive_time":88,"id":"642","highest_child_id":2007,"first_entry_time":45140,"exclusive_time":81,"entries":2,"callees":[{"inclusive_time":6,"id":"643","highest_child_id":2007,"first_entry_time":45218,"exclusive_time":6,"entries":2}],"allocations":[{"id":"10","count":2},{"id":"8","count":2}]},{"inclusive_time":18,"id":"644","highest_child_id":2008,"first_entry_time":45308,"exclusive_time":17,"entries":2,"allocations":[{"id":"10","count":2}]},{"inclusive_time":2,"id":"287","highest_child_id":2009,"first_entry_time":45321,"exclusive_time":1,"entries":2},{"inclusive_time":2,"id":"645","highest_child_id":2010,"first_entry_time":45342,"exclusive_time":1,"entries":2},{"inclusive_time":336,"id":"646","highest_child_id":2040,"first_entry_time":45410,"exclusive_time":118,"entries":2,"callees":[{"inclusive_time":5,"id":"641","highest_child_id":2013,"first_entry_time":45412,"exclusive_time":5,"entries":2,"callees":[{"inclusive_time":0,"id":"68","highest_child_id":2013,"first_entry_time":45416,"exclusive_time":0,"entries":2}],"allocations":[{"id":"6","count":2}]},{"inclusive_time":184,"id":"647","highest_child_id":2034,"first_entry_time":45466,"exclusive_time":138,"entries":2,"callees":[{"inclusive_time":3,"id":"648","highest_child_id":2015,"first_entry_time":45532,"exclusive_time":2,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":9,"id":"649","highest_child_id":2018,"first_entry_time":45550,"exclusive_time":6,"entries":2,"callees":[{"inclusive_time":2,"id":"67","highest_child_id":2017,"first_entry_time":45554,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"68","highest_child_id":2018,"first_entry_time":45558,"exclusive_time":0,"entries":2}],"allocations":[{"id":"6","count":2}]},{"inclusive_time":28,"id":"650","highest_child_id":2030,"first_entry_time":45576,"exclusive_time":9,"entries":2,"callees":[{"inclusive_time":19,"id":"69","highest_child_id":2029,"first_entry_time":45581,"exclusive_time":13,"entries":1,"callees":[{"inclusive_time":0,"id":"70","highest_child_id":2021,"first_entry_time":45584,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"30","highest_child_id":2022,"first_entry_time":45585,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"71","highest_child_id":2023,"first_entry_time":45588,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"72","highest_child_id":2025,"first_entry_time":45590,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"73","highest_child_id":2025,"first_entry_time":45591,"exclusive_time":0,"entries":1}]},{"inclusive_time":1,"id":"74","highest_child_id":2027,"first_entry_time":45593,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"73","highest_child_id":2027,"first_entry_time":45594,"exclusive_time":0,"entries":1}]},{"inclusive_time":0,"id":"29","highest_child_id":2028,"first_entry_time":45596,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"75","highest_child_id":2029,"first_entry_time":45598,"exclusive_time":0,"entries":1}]},{"inclusive_time":0,"id":"68","highest_child_id":2030,"first_entry_time":45602,"exclusive_time":0,"entries":2}],"allocations":[{"id":"6","count":2},{"id":"651","count":2}]},{"inclusive_time":2,"id":"286","highest_child_id":2031,"first_entry_time":45627,"exclusive_time":1,"entries":2},{"inclusive_time":2,"id":"498","highest_child_id":2032,"first_entry_time":45630,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"638","highest_child_id":2033,"first_entry_time":45634,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"637","highest_child_id":2034,"first_entry_time":45636,"exclusive_time":0,"entries":2}],"allocations":[{"id":"27","count":2}]},{"inclusive_time":3,"id":"652","highest_child_id":2035,"first_entry_time":45660,"exclusive_time":2,"entries":2,"allocations":[{"id":"10","count":2}]},{"inclusive_time":3,"id":"653","highest_child_id":2036,"first_entry_time":45674,"exclusive_time":2,"entries":2},{"inclusive_time":1,"id":"498","highest_child_id":2037,"first_entry_time":45679,"exclusive_time":1,"entries":2},{"inclusive_time":18,"id":"654","highest_child_id":2039,"first_entry_time":45699,"exclusive_time":9,"entries":2,"callees":[{"inclusive_time":9,"id":"251","highest_child_id":2039,"first_entry_time":45703,"exclusive_time":8,"entries":4,"allocations":[{"id":"6","count":4}]}]},{"inclusive_time":3,"id":"287","highest_child_id":2040,"first_entry_time":45716,"exclusive_time":2,"entries":2,"allocations":[{"id":"27","count":2}]}],"allocations":[{"id":"27","count":4}]}],"allocations":[{"id":"2","count":6},{"id":"27","count":12}]}],"allocations":[{"id":"2","count":2},{"id":"27","count":10}]}]},{"inclusive_time":1,"id":"223","highest_child_id":2041,"first_entry_time":45725,"exclusive_time":1,"entries":1}],"allocations":[{"id":"27","count":2}]}]},{"inclusive_time":2,"id":"472","highest_child_id":2042,"first_entry_time":45729,"exclusive_time":1,"entries":4}]},{"inclusive_time":2,"id":"472","highest_child_id":2043,"first_entry_time":45961,"exclusive_time":1,"entries":2}]},{"inclusive_time":4,"id":"472","highest_child_id":2044,"first_entry_time":43996,"exclusive_time":2,"entries":6}]},{"inclusive_time":1,"id":"655","highest_child_id":2045,"first_entry_time":45977,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"546","highest_child_id":2046,"first_entry_time":45980,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"608","highest_child_id":2047,"first_entry_time":45982,"exclusive_time":0,"entries":1},{"inclusive_time":12,"id":"656","highest_child_id":2049,"first_entry_time":46068,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":2,"id":"616","highest_child_id":2049,"first_entry_time":46076,"exclusive_time":1,"entries":1}],"allocations":[{"id":"6","count":1},{"id":"27","count":1}]},{"inclusive_time":2,"id":"657","highest_child_id":2050,"first_entry_time":46113,"exclusive_time":2,"entries":1},{"inclusive_time":1,"id":"658","highest_child_id":2051,"first_entry_time":46131,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"659","highest_child_id":2052,"first_entry_time":46141,"exclusive_time":1,"entries":1},{"inclusive_time":168,"id":"660","highest_child_id":2068,"first_entry_time":46311,"exclusive_time":127,"entries":1,"callees":[{"inclusive_time":8,"id":"615","highest_child_id":2054,"first_entry_time":46317,"exclusive_time":4,"entries":11,"allocations":[{"id":"27","count":2}]},{"inclusive_time":4,"id":"616","highest_child_id":2055,"first_entry_time":46321,"exclusive_time":1,"entries":8},{"inclusive_time":1,"id":"279","highest_child_id":2056,"first_entry_time":46335,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"267","highest_child_id":2057,"first_entry_time":46338,"exclusive_time":0,"entries":1},{"inclusive_time":3,"id":"618","highest_child_id":2058,"first_entry_time":46340,"exclusive_time":1,"entries":4},{"inclusive_time":6,"id":"661","highest_child_id":2059,"first_entry_time":46379,"exclusive_time":5,"entries":1,"allocations":[{"id":"27","count":1},{"id":"53","count":2}]},{"inclusive_time":1,"id":"472","highest_child_id":2060,"first_entry_time":46387,"exclusive_time":1,"entries":1},{"inclusive_time":9,"id":"265","highest_child_id":2063,"first_entry_time":46391,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":4,"id":"221","highest_child_id":2063,"first_entry_time":46396,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"267","highest_child_id":2063,"first_entry_time":46399,"exclusive_time":0,"entries":1}],"allocations":[{"id":"222","count":1}]}],"allocations":[{"id":"10","count":1},{"id":"6","count":1},{"id":"266","count":1}]},{"inclusive_time":2,"id":"570","highest_child_id":2064,"first_entry_time":46402,"exclusive_time":2,"entries":1},{"inclusive_time":8,"id":"251","highest_child_id":2067,"first_entry_time":46413,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":0,"id":"261","highest_child_id":2066,"first_entry_time":46417,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"262","highest_child_id":2067,"first_entry_time":46420,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1},{"id":"222","count":1},{"id":"27","count":1}]},{"inclusive_time":4,"id":"662","highest_child_id":2068,"first_entry_time":46449,"exclusive_time":4,"entries":1,"allocations":[{"id":"27","count":1},{"id":"6","count":1}]}],"allocations":[{"id":"25","count":3},{"id":"27","count":24},{"id":"53","count":1}]},{"inclusive_time":1,"id":"572","highest_child_id":2069,"first_entry_time":46481,"exclusive_time":1,"entries":1}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":2,"id":"663","highest_child_id":2070,"first_entry_time":46533,"exclusive_time":2,"entries":1}],"allocations":[{"id":"6","count":1},{"id":"10","count":1}]},{"inclusive_time":1,"id":"279","highest_child_id":2071,"first_entry_time":46537,"exclusive_time":1,"entries":1},{"inclusive_time":39,"id":"664","highest_child_id":2076,"first_entry_time":46553,"exclusive_time":34,"entries":1,"callees":[{"inclusive_time":0,"id":"216","highest_child_id":2073,"first_entry_time":46555,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"665","highest_child_id":2074,"first_entry_time":46564,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"666","highest_child_id":2075,"first_entry_time":46575,"exclusive_time":2,"entries":1},{"inclusive_time":1,"id":"667","highest_child_id":2076,"first_entry_time":46591,"exclusive_time":1,"entries":1}],"allocations":[{"id":"25","count":1}]}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":10799,"id":"668","highest_child_id":3225,"first_entry_time":46617,"exclusive_time":13,"entries":1,"callees":[{"inclusive_time":10785,"id":"669","highest_child_id":3225,"first_entry_time":46631,"exclusive_time":62,"entries":1,"callees":[{"inclusive_time":14,"id":"166","highest_child_id":2083,"first_entry_time":46633,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":12,"id":"167","highest_child_id":2083,"first_entry_time":46635,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"168","highest_child_id":2081,"first_entry_time":46637,"exclusive_time":0,"entries":1,"allocations":[{"id":"670","count":1}]},{"inclusive_time":8,"id":"108","highest_child_id":2083,"first_entry_time":46639,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":0,"id":"109","highest_child_id":2083,"first_entry_time":46641,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":2}]}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":10708,"id":"671","highest_child_id":3225,"first_entry_time":46707,"exclusive_time":47,"entries":1,"callees":[{"inclusive_time":1,"id":"175","highest_child_id":2085,"first_entry_time":46714,"exclusive_time":0,"entries":1,"allocations":[{"id":"172","count":1}]},{"inclusive_time":69,"id":"166","highest_child_id":2093,"first_entry_time":46718,"exclusive_time":4,"entries":2,"callees":[{"inclusive_time":64,"id":"167","highest_child_id":2093,"first_entry_time":46720,"exclusive_time":8,"entries":2,"callees":[{"inclusive_time":1,"id":"168","highest_child_id":2088,"first_entry_time":46723,"exclusive_time":1,"entries":2,"allocations":[{"id":"672","count":1},{"id":"673","count":1}]},{"inclusive_time":55,"id":"108","highest_child_id":2093,"first_entry_time":46725,"exclusive_time":43,"entries":2,"callees":[{"inclusive_time":1,"id":"109","highest_child_id":2090,"first_entry_time":46727,"exclusive_time":0,"entries":2},{"inclusive_time":6,"id":"674","highest_child_id":2092,"first_entry_time":46747,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":1,"id":"175","highest_child_id":2092,"first_entry_time":46750,"exclusive_time":0,"entries":2,"allocations":[{"id":"172","count":2}]}],"allocations":[{"id":"10","count":3}]},{"inclusive_time":4,"id":"675","highest_child_id":2093,"first_entry_time":46784,"exclusive_time":3,"entries":1}],"allocations":[{"id":"6","count":2}]}],"allocations":[{"id":"6","count":2}]}],"allocations":[{"id":"6","count":2}]},{"inclusive_time":1,"id":"676","highest_child_id":2094,"first_entry_time":46799,"exclusive_time":1,"entries":1},{"inclusive_time":10589,"id":"677","highest_child_id":3225,"first_entry_time":46825,"exclusive_time":104,"entries":1,"callees":[{"inclusive_time":10485,"id":"678","highest_child_id":3225,"first_entry_time":46929,"exclusive_time":111,"entries":1,"callees":[{"inclusive_time":1,"id":"286","highest_child_id":2097,"first_entry_time":46933,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"580","highest_child_id":2098,"first_entry_time":46936,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"679","highest_child_id":2099,"first_entry_time":46952,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"583","highest_child_id":2100,"first_entry_time":46956,"exclusive_time":1,"entries":3},{"inclusive_time":10334,"id":"677","highest_child_id":3212,"first_entry_time":46966,"exclusive_time":146,"entries":3,"callees":[{"inclusive_time":10187,"id":"680","highest_child_id":3212,"first_entry_time":47107,"exclusive_time":105,"entries":3,"callees":[{"inclusive_time":7,"id":"548","highest_child_id":2103,"first_entry_time":47113,"exclusive_time":6,"entries":3,"allocations":[{"id":"53","count":2}]},{"inclusive_time":10070,"id":"681","highest_child_id":3210,"first_entry_time":47195,"exclusive_time":463,"entries":3,"callees":[{"inclusive_time":3,"id":"551","highest_child_id":2105,"first_entry_time":47207,"exclusive_time":2,"entries":3},{"inclusive_time":284,"id":"682","highest_child_id":2116,"first_entry_time":47227,"exclusive_time":55,"entries":3,"callees":[{"inclusive_time":229,"id":"684","highest_child_id":2116,"first_entry_time":47278,"exclusive_time":80,"entries":3,"callees":[{"inclusive_time":2,"id":"685","highest_child_id":2108,"first_entry_time":47290,"exclusive_time":1,"entries":3},{"inclusive_time":2,"id":"686","highest_child_id":2109,"first_entry_time":47299,"exclusive_time":1,"entries":3},{"inclusive_time":2,"id":"175","highest_child_id":2110,"first_entry_time":47302,"exclusive_time":0,"entries":6,"allocations":[{"id":"172","count":6}]},{"inclusive_time":127,"id":"687","highest_child_id":2114,"first_entry_time":47318,"exclusive_time":39,"entries":6,"callees":[{"inclusive_time":88,"id":"688","highest_child_id":2114,"first_entry_time":47351,"exclusive_time":82,"entries":6,"callees":[{"inclusive_time":4,"id":"689","highest_child_id":2113,"first_entry_time":47366,"exclusive_time":2,"entries":6},{"inclusive_time":5,"id":"690","highest_child_id":2114,"first_entry_time":47379,"exclusive_time":1,"entries":12}],"allocations":[{"id":"28","count":1}]}]},{"inclusive_time":20,"id":"691","highest_child_id":2116,"first_entry_time":47413,"exclusive_time":16,"entries":3,"callees":[{"inclusive_time":3,"id":"693","highest_child_id":2116,"first_entry_time":47426,"exclusive_time":2,"entries":3}],"allocations":[{"id":"692","count":3}]}],"allocations":[{"id":"10","count":18},{"id":"6","count":12},{"id":"26","count":6}]}],"allocations":[{"id":"683","count":3}]},{"inclusive_time":18,"id":"694","highest_child_id":2118,"first_entry_time":47440,"exclusive_time":15,"entries":3,"callees":[{"inclusive_time":2,"id":"695","highest_child_id":2118,"first_entry_time":47451,"exclusive_time":1,"entries":3}],"allocations":[{"id":"28","count":3}]},{"inclusive_time":31,"id":"696","highest_child_id":2120,"first_entry_time":47472,"exclusive_time":24,"entries":3,"callees":[{"inclusive_time":7,"id":"698","highest_child_id":2120,"first_entry_time":47494,"exclusive_time":6,"entries":3,"allocations":[{"id":"6","count":27},{"id":"10","count":9}]}],"allocations":[{"id":"697","count":3}]},{"inclusive_time":2,"id":"699","highest_child_id":2121,"first_entry_time":47512,"exclusive_time":1,"entries":3},{"inclusive_time":2,"id":"700","highest_child_id":2122,"first_entry_time":47524,"exclusive_time":1,"entries":3},{"inclusive_time":2,"id":"701","highest_child_id":2123,"first_entry_time":47535,"exclusive_time":1,"entries":3},{"inclusive_time":2,"id":"547","highest_child_id":2124,"first_entry_time":47538,"exclusive_time":1,"entries":3},{"inclusive_time":9248,"id":"702","highest_child_id":3208,"first_entry_time":47853,"exclusive_time":273,"entries":3,"callees":[{"inclusive_time":25,"id":"703","highest_child_id":2126,"first_entry_time":47873,"exclusive_time":24,"entries":3,"allocations":[{"id":"704","count":3},{"id":"10","count":39},{"id":"26","count":3}]},{"inclusive_time":5,"id":"572","highest_child_id":2127,"first_entry_time":47881,"exclusive_time":3,"entries":6},{"inclusive_time":3,"id":"286","highest_child_id":2128,"first_entry_time":47886,"exclusive_time":2,"entries":4},{"inclusive_time":8681,"id":"705","highest_child_id":3148,"first_entry_time":47948,"exclusive_time":82,"entries":3,"callees":[{"inclusive_time":8594,"id":"677","highest_child_id":3144,"first_entry_time":47956,"exclusive_time":75,"entries":6,"callees":[{"inclusive_time":979,"id":"706","highest_child_id":2145,"first_entry_time":47969,"exclusive_time":775,"entries":1,"callees":[{"inclusive_time":204,"id":"707","highest_child_id":2145,"first_entry_time":48743,"exclusive_time":45,"entries":1,"callees":[{"inclusive_time":2,"id":"615","highest_child_id":2133,"first_entry_time":48747,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"616","highest_child_id":2134,"first_entry_time":48752,"exclusive_time":1,"entries":1},{"inclusive_time":153,"id":"708","highest_child_id":2144,"first_entry_time":48781,"exclusive_time":45,"entries":1,"callees":[{"inclusive_time":1,"id":"615","highest_child_id":2136,"first_entry_time":48784,"exclusive_time":1,"entries":1},{"inclusive_time":105,"id":"709","highest_child_id":2144,"first_entry_time":48828,"exclusive_time":72,"entries":1,"callees":[{"inclusive_time":1,"id":"618","highest_child_id":2138,"first_entry_time":48830,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"472","highest_child_id":2139,"first_entry_time":48836,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"710","highest_child_id":2140,"first_entry_time":48868,"exclusive_time":1,"entries":1},{"inclusive_time":28,"id":"711","highest_child_id":2143,"first_entry_time":48893,"exclusive_time":24,"entries":1,"callees":[{"inclusive_time":2,"id":"712","highest_child_id":2142,"first_entry_time":48906,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"713","highest_child_id":2143,"first_entry_time":48918,"exclusive_time":2,"entries":1,"allocations":[{"id":"714","count":1}]}]},{"inclusive_time":1,"id":"715","highest_child_id":2144,"first_entry_time":48930,"exclusive_time":1,"entries":1}],"allocations":[{"id":"27","count":1}]}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":2,"id":"716","highest_child_id":2145,"first_entry_time":48944,"exclusive_time":1,"entries":1,"allocations":[{"id":"717","count":1}]}],"allocations":[{"id":"27","count":2}]}]},{"inclusive_time":14,"id":"718","highest_child_id":2147,"first_entry_time":48965,"exclusive_time":12,"entries":3,"callees":[{"inclusive_time":2,"id":"719","highest_child_id":2147,"first_entry_time":48975,"exclusive_time":1,"entries":3}]},{"inclusive_time":223,"id":"720","highest_child_id":2166,"first_entry_time":49036,"exclusive_time":31,"entries":1,"callees":[{"inclusive_time":181,"id":"721","highest_child_id":2162,"first_entry_time":49058,"exclusive_time":55,"entries":1,"callees":[{"inclusive_time":1,"id":"223","highest_child_id":2150,"first_entry_time":49060,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"296","highest_child_id":2151,"first_entry_time":49064,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"309","highest_child_id":2152,"first_entry_time":49066,"exclusive_time":0,"entries":1},{"inclusive_time":44,"id":"722","highest_child_id":2154,"first_entry_time":49101,"exclusive_time":36,"entries":1,"callees":[{"inclusive_time":8,"id":"723","highest_child_id":2154,"first_entry_time":49131,"exclusive_time":8,"entries":1,"allocations":[{"id":"26","count":2}]}],"allocations":[{"id":"10","count":1},{"id":"27","count":1}]},{"inclusive_time":78,"id":"724","highest_child_id":2162,"first_entry_time":49162,"exclusive_time":22,"entries":1,"callees":[{"inclusive_time":55,"id":"725","highest_child_id":2162,"first_entry_time":49184,"exclusive_time":23,"entries":1,"callees":[{"inclusive_time":2,"id":"726","highest_child_id":2157,"first_entry_time":49195,"exclusive_time":1,"entries":3},{"inclusive_time":30,"id":"727","highest_child_id":2162,"first_entry_time":49207,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":27,"id":"687","highest_child_id":2162,"first_entry_time":49209,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":24,"id":"688","highest_child_id":2162,"first_entry_time":49212,"exclusive_time":21,"entries":1,"callees":[{"inclusive_time":1,"id":"689","highest_child_id":2161,"first_entry_time":49228,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"690","highest_child_id":2162,"first_entry_time":49231,"exclusive_time":1,"entries":3}]}]}]}]}]}]},{"inclusive_time":1,"id":"613","highest_child_id":2163,"first_entry_time":49245,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"286","highest_child_id":2164,"first_entry_time":49249,"exclusive_time":0,"entries":1},{"inclusive_time":7,"id":"705","highest_child_id":2166,"first_entry_time":49251,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":2,"id":"716","highest_child_id":2166,"first_entry_time":49256,"exclusive_time":1,"entries":1,"allocations":[{"id":"717","count":1}]}],"allocations":[{"id":"25","count":1}]}]},{"inclusive_time":6742,"id":"728","highest_child_id":3006,"first_entry_time":49282,"exclusive_time":24,"entries":2,"callees":[{"inclusive_time":6718,"id":"729","highest_child_id":3006,"first_entry_time":49305,"exclusive_time":189,"entries":2,"callees":[{"inclusive_time":2,"id":"287","highest_child_id":2169,"first_entry_time":49307,"exclusive_time":1,"entries":2},{"inclusive_time":6527,"id":"730","highest_child_id":3006,"first_entry_time":49490,"exclusive_time":93,"entries":2,"callees":[{"inclusive_time":2,"id":"286","highest_child_id":2171,"first_entry_time":49500,"exclusive_time":1,"entries":2},{"inclusive_time":2,"id":"498","highest_child_id":2172,"first_entry_time":49503,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"475","highest_child_id":2173,"first_entry_time":49507,"exclusive_time":0,"entries":2},{"inclusive_time":5,"id":"290","highest_child_id":2174,"first_entry_time":49510,"exclusive_time":4,"entries":2,"allocations":[{"id":"10","count":2},{"id":"6","count":2},{"id":"291","count":2}]},{"inclusive_time":6361,"id":"677","highest_child_id":2986,"first_entry_time":49515,"exclusive_time":7,"entries":2,"callees":[{"inclusive_time":6350,"id":"728","highest_child_id":2984,"first_entry_time":49518,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":6346,"id":"729","highest_child_id":2984,"first_entry_time":49520,"exclusive_time":20,"entries":2,"callees":[{"inclusive_time":1,"id":"287","highest_child_id":2178,"first_entry_time":49521,"exclusive_time":1,"entries":2},{"inclusive_time":6325,"id":"731","highest_child_id":2984,"first_entry_time":49538,"exclusive_time":129,"entries":2,"callees":[{"inclusive_time":1,"id":"286","highest_child_id":2180,"first_entry_time":49540,"exclusive_time":0,"entries":2},{"inclusive_time":6194,"id":"732","highest_child_id":2984,"first_entry_time":49666,"exclusive_time":45,"entries":2,"callees":[{"inclusive_time":6115,"id":"677","highest_child_id":2972,"first_entry_time":49678,"exclusive_time":8,"entries":2,"callees":[{"inclusive_time":6064,"id":"680","highest_child_id":2956,"first_entry_time":49681,"exclusive_time":68,"entries":1,"callees":[{"inclusive_time":1,"id":"548","highest_child_id":2184,"first_entry_time":49684,"exclusive_time":1,"entries":1},{"inclusive_time":5966,"id":"681","highest_child_id":2946,"first_entry_time":49690,"exclusive_time":109,"entries":1,"callees":[{"inclusive_time":1,"id":"551","highest_child_id":2186,"first_entry_time":49694,"exclusive_time":1,"entries":1},{"inclusive_time":63,"id":"682","highest_child_id":2197,"first_entry_time":49702,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":60,"id":"684","highest_child_id":2197,"first_entry_time":49705,"exclusive_time":28,"entries":1,"callees":[{"inclusive_time":1,"id":"685","highest_child_id":2189,"first_entry_time":49723,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"686","highest_child_id":2190,"first_entry_time":49725,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"175","highest_child_id":2191,"first_entry_time":49727,"exclusive_time":0,"entries":2,"allocations":[{"id":"172","count":2}]},{"inclusive_time":25,"id":"687","highest_child_id":2195,"first_entry_time":49731,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":22,"id":"688","highest_child_id":2195,"first_entry_time":49733,"exclusive_time":19,"entries":2,"callees":[{"inclusive_time":1,"id":"689","highest_child_id":2194,"first_entry_time":49739,"exclusive_time":1,"entries":2},{"inclusive_time":2,"id":"690","highest_child_id":2195,"first_entry_time":49742,"exclusive_time":0,"entries":5}]}]},{"inclusive_time":4,"id":"691","highest_child_id":2197,"first_entry_time":49761,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"693","highest_child_id":2197,"first_entry_time":49763,"exclusive_time":1,"entries":1}],"allocations":[{"id":"692","count":1}]}],"allocations":[{"id":"10","count":6},{"id":"6","count":4},{"id":"26","count":2}]}],"allocations":[{"id":"683","count":1}]},{"inclusive_time":3,"id":"694","highest_child_id":2199,"first_entry_time":49767,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"695","highest_child_id":2199,"first_entry_time":49768,"exclusive_time":1,"entries":1}],"allocations":[{"id":"28","count":1}]},{"inclusive_time":5,"id":"696","highest_child_id":2201,"first_entry_time":49774,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":3,"id":"698","highest_child_id":2201,"first_entry_time":49776,"exclusive_time":2,"entries":1,"allocations":[{"id":"6","count":9},{"id":"10","count":3}]}],"allocations":[{"id":"697","count":1}]},{"inclusive_time":1,"id":"733","highest_child_id":2202,"first_entry_time":49797,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"734","highest_child_id":2203,"first_entry_time":49810,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"699","highest_child_id":2204,"first_entry_time":49813,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"700","highest_child_id":2205,"first_entry_time":49815,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"701","highest_child_id":2206,"first_entry_time":49817,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"547","highest_child_id":2207,"first_entry_time":49820,"exclusive_time":0,"entries":1},{"inclusive_time":3,"id":"735","highest_child_id":2208,"first_entry_time":49836,"exclusive_time":3,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":1,"id":"736","highest_child_id":2209,"first_entry_time":49851,"exclusive_time":1,"entries":1},{"inclusive_time":5759,"id":"702","highest_child_id":2941,"first_entry_time":49854,"exclusive_time":126,"entries":1,"callees":[{"inclusive_time":3,"id":"703","highest_child_id":2211,"first_entry_time":49857,"exclusive_time":3,"entries":1,"allocations":[{"id":"704","count":1},{"id":"10","count":13},{"id":"26","count":1}]},{"inclusive_time":2,"id":"572","highest_child_id":2212,"first_entry_time":49862,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"286","highest_child_id":2213,"first_entry_time":49867,"exclusive_time":0,"entries":1},{"inclusive_time":5473,"id":"705","highest_child_id":2902,"first_entry_time":49869,"exclusive_time":22,"entries":1,"callees":[{"inclusive_time":5447,"id":"677","highest_child_id":2898,"first_entry_time":49875,"exclusive_time":9,"entries":3,"callees":[{"inclusive_time":5434,"id":"720","highest_child_id":2896,"first_entry_time":49878,"exclusive_time":18,"entries":3,"callees":[{"inclusive_time":43,"id":"721","highest_child_id":2227,"first_entry_time":49880,"exclusive_time":10,"entries":3,"callees":[{"inclusive_time":2,"id":"223","highest_child_id":2218,"first_entry_time":49881,"exclusive_time":1,"entries":3},{"inclusive_time":1,"id":"296","highest_child_id":2219,"first_entry_time":49884,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"309","highest_child_id":2220,"first_entry_time":49886,"exclusive_time":0,"entries":1},{"inclusive_time":14,"id":"722","highest_child_id":2222,"first_entry_time":49888,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":6,"id":"723","highest_child_id":2222,"first_entry_time":49890,"exclusive_time":5,"entries":1,"allocations":[{"id":"26","count":1}]}],"allocations":[{"id":"10","count":1},{"id":"27","count":1}]},{"inclusive_time":14,"id":"724","highest_child_id":2227,"first_entry_time":49905,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":11,"id":"725","highest_child_id":2227,"first_entry_time":49908,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":2,"id":"726","highest_child_id":2225,"first_entry_time":49910,"exclusive_time":1,"entries":3},{"inclusive_time":4,"id":"727","highest_child_id":2227,"first_entry_time":49912,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"687","highest_child_id":2227,"first_entry_time":49915,"exclusive_time":1,"entries":1}]}]}]}]},{"inclusive_time":2,"id":"613","highest_child_id":2228,"first_entry_time":49925,"exclusive_time":1,"entries":3},{"inclusive_time":2,"id":"286","highest_child_id":2229,"first_entry_time":49927,"exclusive_time":1,"entries":3},{"inclusive_time":5371,"id":"705","highest_child_id":2896,"first_entry_time":49929,"exclusive_time":92,"entries":3,"callees":[{"inclusive_time":5273,"id":"677","highest_child_id":2892,"first_entry_time":49933,"exclusive_time":71,"entries":14,"callees":[{"inclusive_time":393,"id":"706","highest_child_id":2255,"first_entry_time":49936,"exclusive_time":14,"entries":9,"callees":[{"inclusive_time":379,"id":"707","highest_child_id":2255,"first_entry_time":49938,"exclusive_time":100,"entries":9,"callees":[{"inclusive_time":6,"id":"615","highest_child_id":2234,"first_entry_time":49940,"exclusive_time":3,"entries":9},{"inclusive_time":4,"id":"616","highest_child_id":2235,"first_entry_time":49943,"exclusive_time":1,"entries":9},{"inclusive_time":246,"id":"737","highest_child_id":2246,"first_entry_time":49983,"exclusive_time":152,"entries":8,"callees":[{"inclusive_time":5,"id":"472","highest_child_id":2237,"first_entry_time":49987,"exclusive_time":2,"entries":8},{"inclusive_time":5,"id":"710","highest_child_id":2238,"first_entry_time":49989,"exclusive_time":3,"entries":8},{"inclusive_time":9,"id":"618","highest_child_id":2239,"first_entry_time":49992,"exclusive_time":3,"entries":16},{"inclusive_time":12,"id":"738","highest_child_id":2240,"first_entry_time":50005,"exclusive_time":9,"entries":8},{"inclusive_time":56,"id":"739","highest_child_id":2242,"first_entry_time":50026,"exclusive_time":34,"entries":8,"callees":[{"inclusive_time":21,"id":"740","highest_child_id":2242,"first_entry_time":50039,"exclusive_time":19,"entries":8,"allocations":[{"id":"741","count":8}]}]},{"inclusive_time":4,"id":"267","highest_child_id":2243,"first_entry_time":50045,"exclusive_time":2,"entries":8},{"inclusive_time":3,"id":"742","highest_child_id":2244,"first_entry_time":50061,"exclusive_time":0,"entries":8},{"inclusive_time":8,"id":"735","highest_child_id":2245,"first_entry_time":50064,"exclusive_time":5,"entries":8,"allocations":[{"id":"27","count":2}]},{"inclusive_time":12,"id":"743","highest_child_id":2246,"first_entry_time":50079,"exclusive_time":9,"entries":8,"allocations":[{"id":"28","count":1}]}],"allocations":[{"id":"27","count":16},{"id":"28","count":8}]},{"inclusive_time":6,"id":"716","highest_child_id":2247,"first_entry_time":50085,"exclusive_time":3,"entries":9,"allocations":[{"id":"717","count":9}]},{"inclusive_time":23,"id":"709","highest_child_id":2255,"first_entry_time":50269,"exclusive_time":12,"entries":1,"callees":[{"inclusive_time":1,"id":"618","highest_child_id":2249,"first_entry_time":50271,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"472","highest_child_id":2250,"first_entry_time":50276,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"710","highest_child_id":2251,"first_entry_time":50278,"exclusive_time":1,"entries":1},{"inclusive_time":7,"id":"711","highest_child_id":2254,"first_entry_time":50282,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"712","highest_child_id":2253,"first_entry_time":50285,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"713","highest_child_id":2254,"first_entry_time":50287,"exclusive_time":1,"entries":1,"allocations":[{"id":"714","count":1}]}]},{"inclusive_time":1,"id":"715","highest_child_id":2255,"first_entry_time":50291,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]}],"allocations":[{"id":"27","count":18}]}]},{"inclusive_time":298,"id":"718","highest_child_id":2264,"first_entry_time":50089,"exclusive_time":269,"entries":13,"callees":[{"inclusive_time":4,"id":"719","highest_child_id":2257,"first_entry_time":50091,"exclusive_time":0,"entries":13},{"inclusive_time":13,"id":"744","highest_child_id":2261,"first_entry_time":50976,"exclusive_time":8,"entries":2,"callees":[{"inclusive_time":1,"id":"719","highest_child_id":2259,"first_entry_time":50979,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"745","highest_child_id":2260,"first_entry_time":50981,"exclusive_time":1,"entries":2},{"inclusive_time":2,"id":"716","highest_child_id":2261,"first_entry_time":50984,"exclusive_time":2,"entries":2,"allocations":[{"id":"717","count":2}]}]},{"inclusive_time":11,"id":"746","highest_child_id":2264,"first_entry_time":50999,"exclusive_time":9,"entries":2,"callees":[{"inclusive_time":1,"id":"745","highest_child_id":2263,"first_entry_time":51001,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"719","highest_child_id":2264,"first_entry_time":51003,"exclusive_time":0,"entries":2}]}]},{"inclusive_time":2511,"id":"728","highest_child_id":2579,"first_entry_time":50304,"exclusive_time":5,"entries":3,"callees":[{"inclusive_time":2506,"id":"729","highest_child_id":2579,"first_entry_time":50307,"exclusive_time":398,"entries":3,"callees":[{"inclusive_time":2,"id":"287","highest_child_id":2267,"first_entry_time":50308,"exclusive_time":1,"entries":3},{"inclusive_time":573,"id":"747","highest_child_id":2359,"first_entry_time":50335,"exclusive_time":6,"entries":2,"callees":[{"inclusive_time":1,"id":"286","highest_child_id":2269,"first_entry_time":50337,"exclusive_time":0,"entries":2},{"inclusive_time":565,"id":"677","highest_child_id":2359,"first_entry_time":50340,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":561,"id":"706","highest_child_id":2359,"first_entry_time":50342,"exclusive_time":4,"entries":2,"callees":[{"inclusive_time":557,"id":"707","highest_child_id":2359,"first_entry_time":50345,"exclusive_time":84,"entries":2,"callees":[{"inclusive_time":2,"id":"615","highest_child_id":2273,"first_entry_time":50346,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"616","highest_child_id":2274,"first_entry_time":50349,"exclusive_time":1,"entries":2},{"inclusive_time":2,"id":"618","highest_child_id":2275,"first_entry_time":50352,"exclusive_time":1,"entries":2},{"inclusive_time":2,"id":"748","highest_child_id":2276,"first_entry_time":50366,"exclusive_time":1,"entries":2},{"inclusive_time":2,"id":"749","highest_child_id":2277,"first_entry_time":50378,"exclusive_time":1,"entries":2},{"inclusive_time":421,"id":"750","highest_child_id":2344,"first_entry_time":50395,"exclusive_time":4,"entries":2,"callees":[{"inclusive_time":416,"id":"677","highest_child_id":2344,"first_entry_time":50398,"exclusive_time":6,"entries":2,"callees":[{"inclusive_time":291,"id":"728","highest_child_id":2316,"first_entry_time":50400,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":284,"id":"729","highest_child_id":2316,"first_entry_time":50406,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":1,"id":"287","highest_child_id":2282,"first_entry_time":50408,"exclusive_time":0,"entries":1},{"inclusive_time":278,"id":"731","highest_child_id":2316,"first_entry_time":50413,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"286","highest_child_id":2284,"first_entry_time":50414,"exclusive_time":0,"entries":1},{"inclusive_time":273,"id":"732","highest_child_id":2316,"first_entry_time":50417,"exclusive_time":80,"entries":1,"callees":[{"inclusive_time":147,"id":"677","highest_child_id":2304,"first_entry_time":50450,"exclusive_time":17,"entries":1,"callees":[{"inclusive_time":127,"id":"751","highest_child_id":2302,"first_entry_time":50466,"exclusive_time":30,"entries":1,"callees":[{"inclusive_time":2,"id":"752","highest_child_id":2288,"first_entry_time":50479,"exclusive_time":1,"entries":1},{"inclusive_time":95,"id":"753","highest_child_id":2302,"first_entry_time":50497,"exclusive_time":27,"entries":1,"callees":[{"inclusive_time":11,"id":"754","highest_child_id":2293,"first_entry_time":50509,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":9,"id":"711","highest_child_id":2293,"first_entry_time":50511,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":1,"id":"712","highest_child_id":2292,"first_entry_time":50514,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"713","highest_child_id":2293,"first_entry_time":50517,"exclusive_time":1,"entries":1,"allocations":[{"id":"714","count":1}]}]}]},{"inclusive_time":55,"id":"755","highest_child_id":2301,"first_entry_time":50534,"exclusive_time":21,"entries":1,"callees":[{"inclusive_time":34,"id":"756","highest_child_id":2301,"first_entry_time":50555,"exclusive_time":15,"entries":1,"callees":[{"inclusive_time":1,"id":"757","highest_child_id":2296,"first_entry_time":50568,"exclusive_time":1,"entries":1},{"inclusive_time":17,"id":"727","highest_child_id":2301,"first_entry_time":50572,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":15,"id":"687","highest_child_id":2301,"first_entry_time":50574,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":13,"id":"688","highest_child_id":2301,"first_entry_time":50576,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":1,"id":"689","highest_child_id":2300,"first_entry_time":50582,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"690","highest_child_id":2301,"first_entry_time":50585,"exclusive_time":0,"entries":2}]}]}]}]}],"allocations":[{"id":"10","count":1}]},{"inclusive_time":2,"id":"716","highest_child_id":2302,"first_entry_time":50591,"exclusive_time":1,"entries":1,"allocations":[{"id":"717","count":1}]}]}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":3,"id":"718","highest_child_id":2304,"first_entry_time":50594,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"719","highest_child_id":2304,"first_entry_time":50596,"exclusive_time":0,"entries":1}]}]},{"inclusive_time":1,"id":"719","highest_child_id":2305,"first_entry_time":50598,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"745","highest_child_id":2306,"first_entry_time":50602,"exclusive_time":0,"entries":2},{"inclusive_time":27,"id":"758","highest_child_id":2310,"first_entry_time":50618,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":20,"id":"759","highest_child_id":2310,"first_entry_time":50625,"exclusive_time":15,"entries":1,"callees":[{"inclusive_time":4,"id":"760","highest_child_id":2310,"first_entry_time":50639,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"715","highest_child_id":2310,"first_entry_time":50641,"exclusive_time":1,"entries":1}]}]}]},{"inclusive_time":7,"id":"711","highest_child_id":2313,"first_entry_time":50647,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"712","highest_child_id":2312,"first_entry_time":50650,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"713","highest_child_id":2313,"first_entry_time":50653,"exclusive_time":1,"entries":1,"allocations":[{"id":"714","count":1}]}]},{"inclusive_time":7,"id":"761","highest_child_id":2315,"first_entry_time":50680,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":1,"id":"757","highest_child_id":2315,"first_entry_time":50685,"exclusive_time":1,"entries":1}]},{"inclusive_time":1,"id":"716","highest_child_id":2316,"first_entry_time":50688,"exclusive_time":1,"entries":1,"allocations":[{"id":"717","count":1}]}],"allocations":[{"id":"10","count":4},{"id":"25","count":2}]}]}],"allocations":[{"id":"27","count":1}]}]},{"inclusive_time":4,"id":"718","highest_child_id":2318,"first_entry_time":50692,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":1,"id":"719","highest_child_id":2318,"first_entry_time":50693,"exclusive_time":0,"entries":2}]},{"inclusive_time":115,"id":"706","highest_child_id":2344,"first_entry_time":51205,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":113,"id":"707","highest_child_id":2344,"first_entry_time":51207,"exclusive_time":44,"entries":1,"callees":[{"inclusive_time":1,"id":"615","highest_child_id":2321,"first_entry_time":51209,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"616","highest_child_id":2322,"first_entry_time":51211,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"618","highest_child_id":2323,"first_entry_time":51214,"exclusive_time":0,"entries":1},{"inclusive_time":46,"id":"753","highest_child_id":2335,"first_entry_time":51217,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":4,"id":"754","highest_child_id":2326,"first_entry_time":51219,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":2,"id":"711","highest_child_id":2326,"first_entry_time":51221,"exclusive_time":2,"entries":1}]},{"inclusive_time":35,"id":"755","highest_child_id":2334,"first_entry_time":51225,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":31,"id":"756","highest_child_id":2334,"first_entry_time":51228,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":1,"id":"757","highest_child_id":2329,"first_entry_time":51231,"exclusive_time":0,"entries":1},{"inclusive_time":24,"id":"727","highest_child_id":2334,"first_entry_time":51234,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":22,"id":"687","highest_child_id":2334,"first_entry_time":51236,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":20,"id":"688","highest_child_id":2334,"first_entry_time":51238,"exclusive_time":17,"entries":1,"callees":[{"inclusive_time":1,"id":"689","highest_child_id":2333,"first_entry_time":51246,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"690","highest_child_id":2334,"first_entry_time":51249,"exclusive_time":0,"entries":3}]}]}]}]}],"allocations":[{"id":"10","count":1}]},{"inclusive_time":2,"id":"716","highest_child_id":2335,"first_entry_time":51261,"exclusive_time":1,"entries":1,"allocations":[{"id":"717","count":1}]}]},{"inclusive_time":2,"id":"762","highest_child_id":2336,"first_entry_time":51275,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"711","highest_child_id":2337,"first_entry_time":51280,"exclusive_time":2,"entries":1},{"inclusive_time":1,"id":"745","highest_child_id":2338,"first_entry_time":51284,"exclusive_time":1,"entries":2},{"inclusive_time":5,"id":"763","highest_child_id":2340,"first_entry_time":51301,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"757","highest_child_id":2340,"first_entry_time":51304,"exclusive_time":1,"entries":1}]},{"inclusive_time":8,"id":"759","highest_child_id":2343,"first_entry_time":51308,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":3,"id":"760","highest_child_id":2343,"first_entry_time":51312,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"715","highest_child_id":2343,"first_entry_time":51313,"exclusive_time":0,"entries":1}]}]},{"inclusive_time":2,"id":"716","highest_child_id":2344,"first_entry_time":51317,"exclusive_time":1,"entries":1,"allocations":[{"id":"717","count":1}]}],"allocations":[{"id":"27","count":3}]}]}]}]},{"inclusive_time":2,"id":"745","highest_child_id":2345,"first_entry_time":50696,"exclusive_time":0,"entries":4},{"inclusive_time":8,"id":"764","highest_child_id":2347,"first_entry_time":50712,"exclusive_time":6,"entries":2,"callees":[{"inclusive_time":1,"id":"757","highest_child_id":2347,"first_entry_time":50715,"exclusive_time":1,"entries":2}]},{"inclusive_time":11,"id":"759","highest_child_id":2350,"first_entry_time":50720,"exclusive_time":6,"entries":2,"callees":[{"inclusive_time":5,"id":"760","highest_child_id":2350,"first_entry_time":50723,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":1,"id":"715","highest_child_id":2350,"first_entry_time":50725,"exclusive_time":0,"entries":2}]}]},{"inclusive_time":2,"id":"716","highest_child_id":2351,"first_entry_time":50729,"exclusive_time":1,"entries":2,"allocations":[{"id":"717","count":2}]},{"inclusive_time":22,"id":"709","highest_child_id":2359,"first_entry_time":51172,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":1,"id":"618","highest_child_id":2353,"first_entry_time":51174,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"472","highest_child_id":2354,"first_entry_time":51179,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"710","highest_child_id":2355,"first_entry_time":51181,"exclusive_time":1,"entries":1},{"inclusive_time":7,"id":"711","highest_child_id":2358,"first_entry_time":51184,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"712","highest_child_id":2357,"first_entry_time":51187,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"713","highest_child_id":2358,"first_entry_time":51190,"exclusive_time":1,"entries":1,"allocations":[{"id":"714","count":1}]}]},{"inclusive_time":1,"id":"715","highest_child_id":2359,"first_entry_time":51193,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]}],"allocations":[{"id":"27","count":6}]}]}]}]},{"inclusive_time":1533,"id":"765","highest_child_id":2579,"first_entry_time":51722,"exclusive_time":126,"entries":1,"callees":[{"inclusive_time":2,"id":"286","highest_child_id":2361,"first_entry_time":51729,"exclusive_time":1,"entries":1},{"inclusive_time":3,"id":"766","highest_child_id":2362,"first_entry_time":51749,"exclusive_time":2,"entries":1,"allocations":[{"id":"53","count":1}]},{"inclusive_time":15,"id":"767","highest_child_id":2364,"first_entry_time":51766,"exclusive_time":13,"entries":2,"callees":[{"inclusive_time":2,"id":"769","highest_child_id":2364,"first_entry_time":51777,"exclusive_time":1,"entries":2}],"allocations":[{"id":"768","count":2}]},{"inclusive_time":4,"id":"770","highest_child_id":2365,"first_entry_time":51803,"exclusive_time":2,"entries":4},{"inclusive_time":1291,"id":"677","highest_child_id":2544,"first_entry_time":51809,"exclusive_time":5,"entries":2,"callees":[{"inclusive_time":1282,"id":"728","highest_child_id":2542,"first_entry_time":51811,"exclusive_time":4,"entries":2,"callees":[{"inclusive_time":1278,"id":"729","highest_child_id":2542,"first_entry_time":51814,"exclusive_time":9,"entries":2,"callees":[{"inclusive_time":1,"id":"287","highest_child_id":2369,"first_entry_time":51816,"exclusive_time":1,"entries":2},{"inclusive_time":113,"id":"731","highest_child_id":2395,"first_entry_time":51820,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"286","highest_child_id":2371,"first_entry_time":51821,"exclusive_time":0,"entries":1},{"inclusive_time":108,"id":"732","highest_child_id":2395,"first_entry_time":51824,"exclusive_time":45,"entries":1,"callees":[{"inclusive_time":37,"id":"677","highest_child_id":2383,"first_entry_time":51840,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":30,"id":"706","highest_child_id":2381,"first_entry_time":51843,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":27,"id":"707","highest_child_id":2381,"first_entry_time":51845,"exclusive_time":19,"entries":1,"callees":[{"inclusive_time":1,"id":"615","highest_child_id":2376,"first_entry_time":51847,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"616","highest_child_id":2377,"first_entry_time":51850,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"618","highest_child_id":2378,"first_entry_time":51853,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"748","highest_child_id":2379,"first_entry_time":51863,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"749","highest_child_id":2380,"first_entry_time":51866,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"716","highest_child_id":2381,"first_entry_time":51870,"exclusive_time":1,"entries":1,"allocations":[{"id":"717","count":1}]}],"allocations":[{"id":"27","count":3}]}]},{"inclusive_time":3,"id":"718","highest_child_id":2383,"first_entry_time":51874,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"719","highest_child_id":2383,"first_entry_time":51876,"exclusive_time":0,"entries":1}]}]},{"inclusive_time":1,"id":"719","highest_child_id":2384,"first_entry_time":51878,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"745","highest_child_id":2385,"first_entry_time":51882,"exclusive_time":0,"entries":2},{"inclusive_time":9,"id":"758","highest_child_id":2389,"first_entry_time":51887,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":6,"id":"759","highest_child_id":2389,"first_entry_time":51889,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":3,"id":"760","highest_child_id":2389,"first_entry_time":51891,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"715","highest_child_id":2389,"first_entry_time":51893,"exclusive_time":0,"entries":1}]}]}]},{"inclusive_time":7,"id":"711","highest_child_id":2392,"first_entry_time":51897,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"712","highest_child_id":2391,"first_entry_time":51900,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"713","highest_child_id":2392,"first_entry_time":51902,"exclusive_time":1,"entries":1,"allocations":[{"id":"714","count":1}]}]},{"inclusive_time":6,"id":"771","highest_child_id":2394,"first_entry_time":51922,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":1,"id":"757","highest_child_id":2394,"first_entry_time":51927,"exclusive_time":1,"entries":1}]},{"inclusive_time":2,"id":"716","highest_child_id":2395,"first_entry_time":51930,"exclusive_time":1,"entries":1,"allocations":[{"id":"717","count":1}]}],"allocations":[{"id":"10","count":4},{"id":"25","count":2}]}]},{"inclusive_time":1154,"id":"765","highest_child_id":2542,"first_entry_time":51975,"exclusive_time":180,"entries":1,"callees":[{"inclusive_time":1,"id":"286","highest_child_id":2397,"first_entry_time":51978,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"766","highest_child_id":2398,"first_entry_time":51988,"exclusive_time":2,"entries":1,"allocations":[{"id":"53","count":1}]},{"inclusive_time":6,"id":"767","highest_child_id":2400,"first_entry_time":51992,"exclusive_time":4,"entries":2,"callees":[{"inclusive_time":2,"id":"769","highest_child_id":2400,"first_entry_time":51995,"exclusive_time":1,"entries":2}],"allocations":[{"id":"768","count":2}]},{"inclusive_time":3,"id":"770","highest_child_id":2401,"first_entry_time":52000,"exclusive_time":2,"entries":4},{"inclusive_time":764,"id":"677","highest_child_id":2508,"first_entry_time":52005,"exclusive_time":5,"entries":2,"callees":[{"inclusive_time":738,"id":"728","highest_child_id":2499,"first_entry_time":52007,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":734,"id":"729","highest_child_id":2499,"first_entry_time":52009,"exclusive_time":151,"entries":2,"callees":[{"inclusive_time":1,"id":"287","highest_child_id":2405,"first_entry_time":52010,"exclusive_time":1,"entries":2},{"inclusive_time":220,"id":"731","highest_child_id":2449,"first_entry_time":52014,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"286","highest_child_id":2407,"first_entry_time":52015,"exclusive_time":0,"entries":1},{"inclusive_time":216,"id":"732","highest_child_id":2449,"first_entry_time":52017,"exclusive_time":63,"entries":1,"callees":[{"inclusive_time":75,"id":"677","highest_child_id":2433,"first_entry_time":52026,"exclusive_time":7,"entries":2,"callees":[{"inclusive_time":23,"id":"706","highest_child_id":2417,"first_entry_time":52028,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":20,"id":"707","highest_child_id":2417,"first_entry_time":52030,"exclusive_time":13,"entries":1,"callees":[{"inclusive_time":1,"id":"615","highest_child_id":2412,"first_entry_time":52032,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"616","highest_child_id":2413,"first_entry_time":52035,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"618","highest_child_id":2414,"first_entry_time":52038,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"748","highest_child_id":2415,"first_entry_time":52042,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"749","highest_child_id":2416,"first_entry_time":52045,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"716","highest_child_id":2417,"first_entry_time":52049,"exclusive_time":1,"entries":1,"allocations":[{"id":"717","count":1}]}],"allocations":[{"id":"27","count":3}]}]},{"inclusive_time":4,"id":"718","highest_child_id":2419,"first_entry_time":52052,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":1,"id":"719","highest_child_id":2419,"first_entry_time":52054,"exclusive_time":0,"entries":2}]},{"inclusive_time":41,"id":"751","highest_child_id":2433,"first_entry_time":52126,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"752","highest_child_id":2421,"first_entry_time":52128,"exclusive_time":1,"entries":1},{"inclusive_time":36,"id":"753","highest_child_id":2433,"first_entry_time":52130,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":4,"id":"754","highest_child_id":2424,"first_entry_time":52133,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":2,"id":"711","highest_child_id":2424,"first_entry_time":52135,"exclusive_time":2,"entries":1}]},{"inclusive_time":25,"id":"755","highest_child_id":2432,"first_entry_time":52138,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":22,"id":"756","highest_child_id":2432,"first_entry_time":52141,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":1,"id":"757","highest_child_id":2427,"first_entry_time":52144,"exclusive_time":0,"entries":1},{"inclusive_time":16,"id":"727","highest_child_id":2432,"first_entry_time":52147,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":14,"id":"687","highest_child_id":2432,"first_entry_time":52149,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":12,"id":"688","highest_child_id":2432,"first_entry_time":52151,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":1,"id":"689","highest_child_id":2431,"first_entry_time":52157,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"690","highest_child_id":2432,"first_entry_time":52160,"exclusive_time":0,"entries":1}]}]}]}]}],"allocations":[{"id":"10","count":1}]},{"inclusive_time":1,"id":"716","highest_child_id":2433,"first_entry_time":52165,"exclusive_time":1,"entries":1,"allocations":[{"id":"717","count":1}]}]}],"allocations":[{"id":"27","count":1}]}]},{"inclusive_time":1,"id":"719","highest_child_id":2434,"first_entry_time":52056,"exclusive_time":0,"entries":2},{"inclusive_time":2,"id":"745","highest_child_id":2435,"first_entry_time":52060,"exclusive_time":0,"entries":4},{"inclusive_time":1,"id":"772","highest_child_id":2436,"first_entry_time":52071,"exclusive_time":0,"entries":1},{"inclusive_time":9,"id":"711","highest_child_id":2439,"first_entry_time":52073,"exclusive_time":5,"entries":2,"callees":[{"inclusive_time":1,"id":"712","highest_child_id":2438,"first_entry_time":52201,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"713","highest_child_id":2439,"first_entry_time":52203,"exclusive_time":1,"entries":1,"allocations":[{"id":"714","count":1}]}]},{"inclusive_time":37,"id":"755","highest_child_id":2442,"first_entry_time":52082,"exclusive_time":29,"entries":1,"callees":[{"inclusive_time":7,"id":"773","highest_child_id":2442,"first_entry_time":52112,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":1,"id":"757","highest_child_id":2442,"first_entry_time":52116,"exclusive_time":1,"entries":1}]}],"allocations":[{"id":"10","count":1}]},{"inclusive_time":21,"id":"758","highest_child_id":2446,"first_entry_time":52175,"exclusive_time":4,"entries":3,"callees":[{"inclusive_time":17,"id":"759","highest_child_id":2446,"first_entry_time":52177,"exclusive_time":11,"entries":3,"callees":[{"inclusive_time":6,"id":"760","highest_child_id":2446,"first_entry_time":52180,"exclusive_time":4,"entries":3,"callees":[{"inclusive_time":1,"id":"715","highest_child_id":2446,"first_entry_time":52181,"exclusive_time":0,"entries":3}]}]}]},{"inclusive_time":7,"id":"774","highest_child_id":2448,"first_entry_time":52223,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":1,"id":"757","highest_child_id":2448,"first_entry_time":52227,"exclusive_time":1,"entries":1}]},{"inclusive_time":2,"id":"716","highest_child_id":2449,"first_entry_time":52231,"exclusive_time":1,"entries":1,"allocations":[{"id":"717","count":1}]}],"allocations":[{"id":"10","count":4},{"id":"25","count":2}]}]},{"inclusive_time":360,"id":"775","highest_child_id":2499,"first_entry_time":52400,"exclusive_time":185,"entries":1,"callees":[{"inclusive_time":1,"id":"286","highest_child_id":2451,"first_entry_time":52404,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"475","highest_child_id":2452,"first_entry_time":52407,"exclusive_time":0,"entries":1},{"inclusive_time":42,"id":"677","highest_child_id":2463,"first_entry_time":52410,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":35,"id":"706","highest_child_id":2461,"first_entry_time":52412,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":32,"id":"707","highest_child_id":2461,"first_entry_time":52415,"exclusive_time":24,"entries":1,"callees":[{"inclusive_time":1,"id":"615","highest_child_id":2456,"first_entry_time":52417,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"616","highest_child_id":2457,"first_entry_time":52420,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"618","highest_child_id":2458,"first_entry_time":52424,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"748","highest_child_id":2459,"first_entry_time":52437,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"749","highest_child_id":2460,"first_entry_time":52440,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"716","highest_child_id":2461,"first_entry_time":52445,"exclusive_time":1,"entries":1,"allocations":[{"id":"717","count":1}]}],"allocations":[{"id":"27","count":3}]}]},{"inclusive_time":3,"id":"718","highest_child_id":2463,"first_entry_time":52449,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"719","highest_child_id":2463,"first_entry_time":52450,"exclusive_time":0,"entries":1}]}]},{"inclusive_time":3,"id":"498","highest_child_id":2464,"first_entry_time":52453,"exclusive_time":2,"entries":5},{"inclusive_time":2,"id":"776","highest_child_id":2465,"first_entry_time":52474,"exclusive_time":2,"entries":1,"allocations":[{"id":"10","count":2},{"id":"25","count":2}]},{"inclusive_time":1,"id":"719","highest_child_id":2466,"first_entry_time":52478,"exclusive_time":0,"entries":2},{"inclusive_time":2,"id":"745","highest_child_id":2467,"first_entry_time":52480,"exclusive_time":0,"entries":5},{"inclusive_time":1,"id":"733","highest_child_id":2468,"first_entry_time":52484,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"757","highest_child_id":2469,"first_entry_time":52487,"exclusive_time":1,"entries":1},{"inclusive_time":12,"id":"777","highest_child_id":2473,"first_entry_time":52501,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":9,"id":"711","highest_child_id":2473,"first_entry_time":52503,"exclusive_time":6,"entries":2,"callees":[{"inclusive_time":1,"id":"712","highest_child_id":2472,"first_entry_time":52513,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"713","highest_child_id":2473,"first_entry_time":52515,"exclusive_time":1,"entries":1,"allocations":[{"id":"714","count":1}]}]}]},{"inclusive_time":5,"id":"773","highest_child_id":2475,"first_entry_time":52519,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"757","highest_child_id":2475,"first_entry_time":52522,"exclusive_time":0,"entries":1}]},{"inclusive_time":10,"id":"778","highest_child_id":2479,"first_entry_time":52545,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":1,"id":"757","highest_child_id":2477,"first_entry_time":52548,"exclusive_time":1,"entries":1},{"inclusive_time":3,"id":"727","highest_child_id":2479,"first_entry_time":52551,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"687","highest_child_id":2479,"first_entry_time":52553,"exclusive_time":1,"entries":1}]}]},{"inclusive_time":14,"id":"759","highest_child_id":2482,"first_entry_time":52556,"exclusive_time":7,"entries":3,"callees":[{"inclusive_time":6,"id":"760","highest_child_id":2482,"first_entry_time":52559,"exclusive_time":4,"entries":3,"callees":[{"inclusive_time":1,"id":"715","highest_child_id":2482,"first_entry_time":52561,"exclusive_time":0,"entries":3}]}]},{"inclusive_time":1,"id":"779","highest_child_id":2483,"first_entry_time":52578,"exclusive_time":1,"entries":1},{"inclusive_time":43,"id":"780","highest_child_id":2490,"first_entry_time":52636,"exclusive_time":34,"entries":1,"callees":[{"inclusive_time":1,"id":"175","highest_child_id":2485,"first_entry_time":52639,"exclusive_time":0,"entries":1,"allocations":[{"id":"172","count":1}]},{"inclusive_time":1,"id":"719","highest_child_id":2486,"first_entry_time":52644,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"637","highest_child_id":2487,"first_entry_time":52647,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"638","highest_child_id":2488,"first_entry_time":52649,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"781","highest_child_id":2489,"first_entry_time":52661,"exclusive_time":2,"entries":1},{"inclusive_time":3,"id":"782","highest_child_id":2490,"first_entry_time":52671,"exclusive_time":3,"entries":1,"allocations":[{"id":"53","count":1}]}],"allocations":[{"id":"26","count":2},{"id":"25","count":3},{"id":"27","count":1}]},{"inclusive_time":1,"id":"637","highest_child_id":2491,"first_entry_time":52683,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"638","highest_child_id":2492,"first_entry_time":52686,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"472","highest_child_id":2493,"first_entry_time":52702,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"710","highest_child_id":2494,"first_entry_time":52704,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"711","highest_child_id":2495,"first_entry_time":52706,"exclusive_time":1,"entries":1},{"inclusive_time":25,"id":"783","highest_child_id":2497,"first_entry_time":52719,"exclusive_time":20,"entries":1,"callees":[{"inclusive_time":5,"id":"784","highest_child_id":2497,"first_entry_time":52739,"exclusive_time":4,"entries":1}]},{"inclusive_time":1,"id":"785","highest_child_id":2498,"first_entry_time":52754,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"716","highest_child_id":2499,"first_entry_time":52758,"exclusive_time":1,"entries":1,"allocations":[{"id":"717","count":1}]}],"allocations":[{"id":"10","count":2},{"id":"27","count":5},{"id":"25","count":2}]}],"allocations":[{"id":"27","count":2}]}]},{"inclusive_time":21,"id":"718","highest_child_id":2508,"first_entry_time":52762,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":1,"id":"719","highest_child_id":2501,"first_entry_time":52764,"exclusive_time":1,"entries":1},{"inclusive_time":7,"id":"744","highest_child_id":2505,"first_entry_time":52770,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"719","highest_child_id":2503,"first_entry_time":52772,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"745","highest_child_id":2504,"first_entry_time":52774,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"716","highest_child_id":2505,"first_entry_time":52776,"exclusive_time":1,"entries":1,"allocations":[{"id":"717","count":1}]}]},{"inclusive_time":4,"id":"746","highest_child_id":2508,"first_entry_time":52779,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"745","highest_child_id":2507,"first_entry_time":52781,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"719","highest_child_id":2508,"first_entry_time":52782,"exclusive_time":0,"entries":1}]}]}]},{"inclusive_time":8,"id":"786","highest_child_id":2511,"first_entry_time":52236,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":4,"id":"691","highest_child_id":2511,"first_entry_time":52240,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"693","highest_child_id":2511,"first_entry_time":52242,"exclusive_time":1,"entries":1}],"allocations":[{"id":"692","count":1}]}],"allocations":[{"id":"172","count":1},{"id":"6","count":1},{"id":"26","count":1},{"id":"10","count":1}]},{"inclusive_time":2,"id":"719","highest_child_id":2512,"first_entry_time":52785,"exclusive_time":0,"entries":5},{"inclusive_time":59,"id":"787","highest_child_id":2519,"first_entry_time":52811,"exclusive_time":51,"entries":1,"callees":[{"inclusive_time":1,"id":"788","highest_child_id":2514,"first_entry_time":52821,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"789","highest_child_id":2515,"first_entry_time":52831,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"790","highest_child_id":2516,"first_entry_time":52839,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"791","highest_child_id":2517,"first_entry_time":52848,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"792","highest_child_id":2518,"first_entry_time":52858,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"793","highest_child_id":2519,"first_entry_time":52868,"exclusive_time":1,"entries":1}]},{"inclusive_time":1,"id":"745","highest_child_id":2520,"first_entry_time":52878,"exclusive_time":1,"entries":2},{"inclusive_time":55,"id":"794","highest_child_id":2526,"first_entry_time":52896,"exclusive_time":26,"entries":1,"callees":[{"inclusive_time":1,"id":"757","highest_child_id":2522,"first_entry_time":52899,"exclusive_time":1,"entries":1},{"inclusive_time":28,"id":"795","highest_child_id":2526,"first_entry_time":52923,"exclusive_time":23,"entries":1,"callees":[{"inclusive_time":1,"id":"796","highest_child_id":2524,"first_entry_time":52933,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"797","highest_child_id":2525,"first_entry_time":52944,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"726","highest_child_id":2526,"first_entry_time":52950,"exclusive_time":1,"entries":1}],"allocations":[{"id":"28","count":1},{"id":"53","count":3},{"id":"26","count":1}]}]},{"inclusive_time":1,"id":"757","highest_child_id":2527,"first_entry_time":52953,"exclusive_time":0,"entries":1},{"inclusive_time":52,"id":"798","highest_child_id":2536,"first_entry_time":53028,"exclusive_time":42,"entries":1,"callees":[{"inclusive_time":1,"id":"788","highest_child_id":2529,"first_entry_time":53031,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"799","highest_child_id":2530,"first_entry_time":53043,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"789","highest_child_id":2531,"first_entry_time":53046,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"791","highest_child_id":2532,"first_entry_time":53054,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"790","highest_child_id":2533,"first_entry_time":53056,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"792","highest_child_id":2534,"first_entry_time":53059,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"800","highest_child_id":2535,"first_entry_time":53068,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"801","highest_child_id":2536,"first_entry_time":53078,"exclusive_time":1,"entries":1}],"allocations":[{"id":"25","count":4},{"id":"222","count":2}]},{"inclusive_time":9,"id":"759","highest_child_id":2539,"first_entry_time":53085,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":3,"id":"760","highest_child_id":2539,"first_entry_time":53089,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"715","highest_child_id":2539,"first_entry_time":53091,"exclusive_time":0,"entries":1}]}]},{"inclusive_time":9,"id":"802","highest_child_id":2541,"first_entry_time":53117,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":1,"id":"689","highest_child_id":2541,"first_entry_time":53124,"exclusive_time":1,"entries":1}],"allocations":[{"id":"53","count":1},{"id":"28","count":1},{"id":"25","count":1}]},{"inclusive_time":1,"id":"716","highest_child_id":2542,"first_entry_time":53127,"exclusive_time":1,"entries":1,"allocations":[{"id":"717","count":1}]}],"allocations":[{"id":"10","count":1},{"id":"27","count":2}]}],"allocations":[{"id":"27","count":2}]}]},{"inclusive_time":3,"id":"718","highest_child_id":2544,"first_entry_time":53131,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"719","highest_child_id":2544,"first_entry_time":53132,"exclusive_time":1,"entries":1}]}]},{"inclusive_time":10,"id":"786","highest_child_id":2547,"first_entry_time":51954,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":4,"id":"691","highest_child_id":2547,"first_entry_time":51958,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"693","highest_child_id":2547,"first_entry_time":51960,"exclusive_time":1,"entries":1}],"allocations":[{"id":"692","count":1}]}],"allocations":[{"id":"172","count":1},{"id":"6","count":1},{"id":"26","count":1},{"id":"10","count":1}]},{"inclusive_time":2,"id":"719","highest_child_id":2548,"first_entry_time":53136,"exclusive_time":0,"entries":5},{"inclusive_time":12,"id":"787","highest_child_id":2555,"first_entry_time":53139,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":1,"id":"788","highest_child_id":2550,"first_entry_time":53141,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"789","highest_child_id":2551,"first_entry_time":53143,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"790","highest_child_id":2552,"first_entry_time":53144,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"791","highest_child_id":2553,"first_entry_time":53146,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"792","highest_child_id":2554,"first_entry_time":53148,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"793","highest_child_id":2555,"first_entry_time":53150,"exclusive_time":0,"entries":1}]},{"inclusive_time":2,"id":"745","highest_child_id":2556,"first_entry_time":53159,"exclusive_time":1,"entries":2},{"inclusive_time":22,"id":"803","highest_child_id":2562,"first_entry_time":53177,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":1,"id":"757","highest_child_id":2558,"first_entry_time":53184,"exclusive_time":1,"entries":1},{"inclusive_time":11,"id":"795","highest_child_id":2562,"first_entry_time":53187,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":1,"id":"796","highest_child_id":2560,"first_entry_time":53190,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"797","highest_child_id":2561,"first_entry_time":53194,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"726","highest_child_id":2562,"first_entry_time":53197,"exclusive_time":1,"entries":1}],"allocations":[{"id":"28","count":1},{"id":"53","count":3},{"id":"26","count":1}]}]},{"inclusive_time":1,"id":"757","highest_child_id":2563,"first_entry_time":53201,"exclusive_time":0,"entries":1},{"inclusive_time":31,"id":"798","highest_child_id":2573,"first_entry_time":53203,"exclusive_time":21,"entries":1,"callees":[{"inclusive_time":1,"id":"788","highest_child_id":2565,"first_entry_time":53204,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"799","highest_child_id":2566,"first_entry_time":53208,"exclusive_time":0,"entries":3},{"inclusive_time":1,"id":"789","highest_child_id":2567,"first_entry_time":53210,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"689","highest_child_id":2568,"first_entry_time":53214,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"791","highest_child_id":2569,"first_entry_time":53217,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"790","highest_child_id":2570,"first_entry_time":53221,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"792","highest_child_id":2571,"first_entry_time":53224,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"800","highest_child_id":2572,"first_entry_time":53229,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"801","highest_child_id":2573,"first_entry_time":53232,"exclusive_time":1,"entries":1}],"allocations":[{"id":"25","count":4},{"id":"28","count":2},{"id":"222","count":2}]},{"inclusive_time":7,"id":"759","highest_child_id":2576,"first_entry_time":53237,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":3,"id":"760","highest_child_id":2576,"first_entry_time":53240,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"715","highest_child_id":2576,"first_entry_time":53242,"exclusive_time":0,"entries":1}]}]},{"inclusive_time":6,"id":"802","highest_child_id":2578,"first_entry_time":53246,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":1,"id":"689","highest_child_id":2578,"first_entry_time":53251,"exclusive_time":1,"entries":1}],"allocations":[{"id":"53","count":1},{"id":"28","count":1},{"id":"25","count":1}]},{"inclusive_time":1,"id":"716","highest_child_id":2579,"first_entry_time":53253,"exclusive_time":1,"entries":1,"allocations":[{"id":"717","count":1}]}],"allocations":[{"id":"10","count":1},{"id":"27","count":2}]}],"allocations":[{"id":"27","count":3}]}]},{"inclusive_time":5,"id":"804","highest_child_id":2581,"first_entry_time":53319,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":2,"id":"716","highest_child_id":2581,"first_entry_time":53322,"exclusive_time":1,"entries":1,"allocations":[{"id":"717","count":1}]}]},{"inclusive_time":1996,"id":"720","highest_child_id":2892,"first_entry_time":53334,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":44,"id":"721","highest_child_id":2593,"first_entry_time":53336,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":1,"id":"223","highest_child_id":2584,"first_entry_time":53338,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"296","highest_child_id":2585,"first_entry_time":53340,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"309","highest_child_id":2586,"first_entry_time":53342,"exclusive_time":0,"entries":1},{"inclusive_time":14,"id":"722","highest_child_id":2588,"first_entry_time":53344,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":5,"id":"723","highest_child_id":2588,"first_entry_time":53347,"exclusive_time":5,"entries":1,"allocations":[{"id":"26","count":1}]}],"allocations":[{"id":"10","count":1},{"id":"27","count":1}]},{"inclusive_time":18,"id":"724","highest_child_id":2593,"first_entry_time":53361,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":15,"id":"725","highest_child_id":2593,"first_entry_time":53364,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":2,"id":"726","highest_child_id":2591,"first_entry_time":53371,"exclusive_time":1,"entries":3},{"inclusive_time":3,"id":"727","highest_child_id":2593,"first_entry_time":53373,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"687","highest_child_id":2593,"first_entry_time":53375,"exclusive_time":1,"entries":1}]}]}]}]},{"inclusive_time":1,"id":"613","highest_child_id":2594,"first_entry_time":53381,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"286","highest_child_id":2595,"first_entry_time":53383,"exclusive_time":0,"entries":1},{"inclusive_time":1945,"id":"705","highest_child_id":2892,"first_entry_time":53385,"exclusive_time":17,"entries":1,"callees":[{"inclusive_time":1924,"id":"677","highest_child_id":2888,"first_entry_time":53390,"exclusive_time":42,"entries":2,"callees":[{"inclusive_time":1875,"id":"805","highest_child_id":2886,"first_entry_time":53429,"exclusive_time":31,"entries":2,"callees":[{"inclusive_time":67,"id":"721","highest_child_id":2609,"first_entry_time":53432,"exclusive_time":16,"entries":2,"callees":[{"inclusive_time":2,"id":"223","highest_child_id":2600,"first_entry_time":53433,"exclusive_time":1,"entries":2},{"inclusive_time":2,"id":"296","highest_child_id":2601,"first_entry_time":53436,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"309","highest_child_id":2602,"first_entry_time":53438,"exclusive_time":0,"entries":2},{"inclusive_time":25,"id":"722","highest_child_id":2604,"first_entry_time":53440,"exclusive_time":17,"entries":2,"callees":[{"inclusive_time":7,"id":"723","highest_child_id":2604,"first_entry_time":53443,"exclusive_time":6,"entries":2,"allocations":[{"id":"26","count":2}]}],"allocations":[{"id":"10","count":2},{"id":"27","count":2}]},{"inclusive_time":22,"id":"724","highest_child_id":2609,"first_entry_time":53456,"exclusive_time":5,"entries":2,"callees":[{"inclusive_time":17,"id":"725","highest_child_id":2609,"first_entry_time":53458,"exclusive_time":10,"entries":2,"callees":[{"inclusive_time":3,"id":"726","highest_child_id":2607,"first_entry_time":53460,"exclusive_time":1,"entries":6},{"inclusive_time":5,"id":"727","highest_child_id":2609,"first_entry_time":53462,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":2,"id":"687","highest_child_id":2609,"first_entry_time":53464,"exclusive_time":1,"entries":2}]}]}]}]},{"inclusive_time":1771,"id":"806","highest_child_id":2885,"first_entry_time":53490,"exclusive_time":10,"entries":2,"callees":[{"inclusive_time":2,"id":"630","highest_child_id":2611,"first_entry_time":53493,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"286","highest_child_id":2612,"first_entry_time":53496,"exclusive_time":0,"entries":2},{"inclusive_time":1759,"id":"705","highest_child_id":2885,"first_entry_time":53498,"exclusive_time":21,"entries":2,"callees":[{"inclusive_time":1733,"id":"677","highest_child_id":2881,"first_entry_time":53503,"exclusive_time":30,"entries":2,"callees":[{"inclusive_time":11,"id":"807","highest_child_id":2616,"first_entry_time":53528,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":1,"id":"286","highest_child_id":2616,"first_entry_time":53535,"exclusive_time":1,"entries":1}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":1321,"id":"728","highest_child_id":2778,"first_entry_time":53541,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1318,"id":"729","highest_child_id":2778,"first_entry_time":53544,"exclusive_time":65,"entries":1,"callees":[{"inclusive_time":1,"id":"287","highest_child_id":2619,"first_entry_time":53546,"exclusive_time":0,"entries":1},{"inclusive_time":1252,"id":"808","highest_child_id":2778,"first_entry_time":53610,"exclusive_time":353,"entries":1,"callees":[{"inclusive_time":504,"id":"677","highest_child_id":2724,"first_entry_time":53613,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":501,"id":"728","highest_child_id":2724,"first_entry_time":53616,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":498,"id":"729","highest_child_id":2724,"first_entry_time":53618,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":1,"id":"287","highest_child_id":2624,"first_entry_time":53619,"exclusive_time":0,"entries":1},{"inclusive_time":492,"id":"730","highest_child_id":2724,"first_entry_time":53623,"exclusive_time":74,"entries":1,"callees":[{"inclusive_time":1,"id":"286","highest_child_id":2626,"first_entry_time":53633,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"498","highest_child_id":2627,"first_entry_time":53636,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"287","highest_child_id":2628,"first_entry_time":53638,"exclusive_time":1,"entries":2},{"inclusive_time":2,"id":"288","highest_child_id":2629,"first_entry_time":53641,"exclusive_time":2,"entries":1,"allocations":[{"id":"6","count":1},{"id":"289","count":1}]},{"inclusive_time":3,"id":"809","highest_child_id":2630,"first_entry_time":53654,"exclusive_time":3,"entries":1,"allocations":[{"id":"10","count":1},{"id":"810","count":1}]},{"inclusive_time":2,"id":"290","highest_child_id":2631,"first_entry_time":53659,"exclusive_time":2,"entries":1,"allocations":[{"id":"10","count":1},{"id":"6","count":1},{"id":"291","count":1}]},{"inclusive_time":345,"id":"677","highest_child_id":2698,"first_entry_time":53663,"exclusive_time":18,"entries":2,"callees":[{"inclusive_time":250,"id":"728","highest_child_id":2684,"first_entry_time":53665,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":247,"id":"729","highest_child_id":2684,"first_entry_time":53667,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"287","highest_child_id":2635,"first_entry_time":53669,"exclusive_time":0,"entries":1},{"inclusive_time":242,"id":"731","highest_child_id":2684,"first_entry_time":53672,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"286","highest_child_id":2637,"first_entry_time":53674,"exclusive_time":0,"entries":1},{"inclusive_time":238,"id":"732","highest_child_id":2684,"first_entry_time":53676,"exclusive_time":23,"entries":1,"callees":[{"inclusive_time":196,"id":"677","highest_child_id":2674,"first_entry_time":53686,"exclusive_time":44,"entries":1,"callees":[{"inclusive_time":148,"id":"811","highest_child_id":2672,"first_entry_time":53726,"exclusive_time":25,"entries":1,"callees":[{"inclusive_time":3,"id":"812","highest_child_id":2641,"first_entry_time":53737,"exclusive_time":2,"entries":2,"allocations":[{"id":"27","count":2}]},{"inclusive_time":2,"id":"813","highest_child_id":2642,"first_entry_time":53750,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":1,"id":"286","highest_child_id":2643,"first_entry_time":53753,"exclusive_time":0,"entries":1},{"inclusive_time":118,"id":"732","highest_child_id":2672,"first_entry_time":53756,"exclusive_time":42,"entries":1,"callees":[{"inclusive_time":49,"id":"677","highest_child_id":2660,"first_entry_time":53769,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":41,"id":"751","highest_child_id":2658,"first_entry_time":53772,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"752","highest_child_id":2647,"first_entry_time":53774,"exclusive_time":1,"entries":1},{"inclusive_time":37,"id":"753","highest_child_id":2658,"first_entry_time":53777,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":4,"id":"754","highest_child_id":2650,"first_entry_time":53779,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":2,"id":"711","highest_child_id":2650,"first_entry_time":53781,"exclusive_time":2,"entries":1}]},{"inclusive_time":25,"id":"755","highest_child_id":2657,"first_entry_time":53785,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":21,"id":"756","highest_child_id":2657,"first_entry_time":53788,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":1,"id":"757","highest_child_id":2653,"first_entry_time":53793,"exclusive_time":1,"entries":1},{"inclusive_time":14,"id":"727","highest_child_id":2657,"first_entry_time":53796,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":12,"id":"687","highest_child_id":2657,"first_entry_time":53797,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":10,"id":"688","highest_child_id":2657,"first_entry_time":53799,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":1,"id":"689","highest_child_id":2657,"first_entry_time":53806,"exclusive_time":1,"entries":1}]}]}]}]}],"allocations":[{"id":"10","count":1}]},{"inclusive_time":1,"id":"716","highest_child_id":2658,"first_entry_time":53812,"exclusive_time":1,"entries":1,"allocations":[{"id":"717","count":1}]}]}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":3,"id":"718","highest_child_id":2660,"first_entry_time":53815,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"719","highest_child_id":2660,"first_entry_time":53816,"exclusive_time":0,"entries":1}]}]},{"inclusive_time":1,"id":"719","highest_child_id":2661,"first_entry_time":53819,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"745","highest_child_id":2662,"first_entry_time":53822,"exclusive_time":0,"entries":2},{"inclusive_time":11,"id":"758","highest_child_id":2666,"first_entry_time":53827,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":9,"id":"759","highest_child_id":2666,"first_entry_time":53830,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":3,"id":"760","highest_child_id":2666,"first_entry_time":53834,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"715","highest_child_id":2666,"first_entry_time":53836,"exclusive_time":0,"entries":1}]}]}]},{"inclusive_time":2,"id":"711","highest_child_id":2667,"first_entry_time":53841,"exclusive_time":1,"entries":1},{"inclusive_time":6,"id":"814","highest_child_id":2669,"first_entry_time":53860,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":1,"id":"757","highest_child_id":2669,"first_entry_time":53864,"exclusive_time":1,"entries":1}]},{"inclusive_time":2,"id":"716","highest_child_id":2670,"first_entry_time":53868,"exclusive_time":1,"entries":1,"allocations":[{"id":"717","count":1}]},{"inclusive_time":3,"id":"718","highest_child_id":2672,"first_entry_time":53871,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"719","highest_child_id":2672,"first_entry_time":53872,"exclusive_time":0,"entries":1}]}],"allocations":[{"id":"10","count":4},{"id":"25","count":2}]}],"allocations":[{"id":"10","count":1}]},{"inclusive_time":3,"id":"718","highest_child_id":2674,"first_entry_time":53880,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"719","highest_child_id":2674,"first_entry_time":53881,"exclusive_time":0,"entries":1}]}]},{"inclusive_time":1,"id":"719","highest_child_id":2675,"first_entry_time":53884,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"745","highest_child_id":2676,"first_entry_time":53887,"exclusive_time":0,"entries":2},{"inclusive_time":9,"id":"758","highest_child_id":2680,"first_entry_time":53892,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":7,"id":"759","highest_child_id":2680,"first_entry_time":53894,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":3,"id":"760","highest_child_id":2680,"first_entry_time":53897,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"715","highest_child_id":2680,"first_entry_time":53899,"exclusive_time":0,"entries":1}]}]}]},{"inclusive_time":2,"id":"711","highest_child_id":2681,"first_entry_time":53903,"exclusive_time":1,"entries":1},{"inclusive_time":4,"id":"773","highest_child_id":2683,"first_entry_time":53907,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"757","highest_child_id":2683,"first_entry_time":53909,"exclusive_time":1,"entries":1}]},{"inclusive_time":1,"id":"716","highest_child_id":2684,"first_entry_time":53912,"exclusive_time":1,"entries":1,"allocations":[{"id":"717","count":1}]}],"allocations":[{"id":"10","count":4},{"id":"25","count":2}]}]}],"allocations":[{"id":"27","count":1}]}]},{"inclusive_time":77,"id":"815","highest_child_id":2698,"first_entry_time":53949,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":73,"id":"677","highest_child_id":2698,"first_entry_time":53952,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":71,"id":"804","highest_child_id":2698,"first_entry_time":53955,"exclusive_time":13,"entries":1,"callees":[{"inclusive_time":3,"id":"542","highest_child_id":2689,"first_entry_time":53957,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"528","highest_child_id":2689,"first_entry_time":53959,"exclusive_time":0,"entries":1}]},{"inclusive_time":1,"id":"735","highest_child_id":2690,"first_entry_time":53961,"exclusive_time":1,"entries":1},{"inclusive_time":9,"id":"777","highest_child_id":2694,"first_entry_time":53965,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":7,"id":"711","highest_child_id":2694,"first_entry_time":53966,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"712","highest_child_id":2693,"first_entry_time":53969,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"713","highest_child_id":2694,"first_entry_time":53972,"exclusive_time":1,"entries":1,"allocations":[{"id":"714","count":1}]}]}]},{"inclusive_time":42,"id":"755","highest_child_id":2697,"first_entry_time":53980,"exclusive_time":33,"entries":1,"callees":[{"inclusive_time":8,"id":"816","highest_child_id":2697,"first_entry_time":54013,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":1,"id":"757","highest_child_id":2697,"first_entry_time":54019,"exclusive_time":1,"entries":1}]}],"allocations":[{"id":"10","count":1}]},{"inclusive_time":2,"id":"716","highest_child_id":2698,"first_entry_time":54023,"exclusive_time":1,"entries":1,"allocations":[{"id":"717","count":1}]}],"allocations":[{"id":"27","count":1}]}]}]}]},{"inclusive_time":5,"id":"776","highest_child_id":2700,"first_entry_time":53916,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"638","highest_child_id":2700,"first_entry_time":53920,"exclusive_time":1,"entries":1}],"allocations":[{"id":"10","count":2},{"id":"25","count":2}]},{"inclusive_time":2,"id":"745","highest_child_id":2701,"first_entry_time":53922,"exclusive_time":0,"entries":6},{"inclusive_time":1,"id":"733","highest_child_id":2702,"first_entry_time":53926,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"757","highest_child_id":2703,"first_entry_time":53930,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"719","highest_child_id":2704,"first_entry_time":54027,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"779","highest_child_id":2705,"first_entry_time":54031,"exclusive_time":0,"entries":1},{"inclusive_time":22,"id":"780","highest_child_id":2712,"first_entry_time":54033,"exclusive_time":14,"entries":1,"callees":[{"inclusive_time":0,"id":"175","highest_child_id":2707,"first_entry_time":54036,"exclusive_time":0,"entries":1,"allocations":[{"id":"172","count":1}]},{"inclusive_time":1,"id":"719","highest_child_id":2708,"first_entry_time":54039,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"637","highest_child_id":2709,"first_entry_time":54042,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"638","highest_child_id":2710,"first_entry_time":54044,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"781","highest_child_id":2711,"first_entry_time":54047,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"782","highest_child_id":2712,"first_entry_time":54050,"exclusive_time":2,"entries":1,"allocations":[{"id":"53","count":1}]}],"allocations":[{"id":"26","count":2},{"id":"25","count":1},{"id":"27","count":1}]},{"inclusive_time":1,"id":"637","highest_child_id":2713,"first_entry_time":54058,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"638","highest_child_id":2714,"first_entry_time":54061,"exclusive_time":0,"entries":1},{"inclusive_time":11,"id":"759","highest_child_id":2717,"first_entry_time":54067,"exclusive_time":6,"entries":2,"callees":[{"inclusive_time":4,"id":"760","highest_child_id":2717,"first_entry_time":54071,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":1,"id":"715","highest_child_id":2717,"first_entry_time":54073,"exclusive_time":0,"entries":2}]}]},{"inclusive_time":1,"id":"472","highest_child_id":2718,"first_entry_time":54085,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"710","highest_child_id":2719,"first_entry_time":54087,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"711","highest_child_id":2720,"first_entry_time":54089,"exclusive_time":1,"entries":1},{"inclusive_time":10,"id":"783","highest_child_id":2722,"first_entry_time":54093,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":8,"id":"784","highest_child_id":2722,"first_entry_time":54095,"exclusive_time":8,"entries":1}]},{"inclusive_time":1,"id":"785","highest_child_id":2723,"first_entry_time":54105,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"716","highest_child_id":2724,"first_entry_time":54114,"exclusive_time":1,"entries":1,"allocations":[{"id":"717","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"27","count":6},{"id":"10","count":1},{"id":"25","count":2},{"id":"53","count":1}]}],"allocations":[{"id":"27","count":1}]}]}]},{"inclusive_time":1,"id":"719","highest_child_id":2725,"first_entry_time":54118,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"745","highest_child_id":2726,"first_entry_time":54120,"exclusive_time":0,"entries":2},{"inclusive_time":6,"id":"817","highest_child_id":2728,"first_entry_time":54138,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":3,"id":"711","highest_child_id":2728,"first_entry_time":54141,"exclusive_time":2,"entries":1}]},{"inclusive_time":3,"id":"777","highest_child_id":2730,"first_entry_time":54146,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":2,"id":"711","highest_child_id":2730,"first_entry_time":54147,"exclusive_time":1,"entries":1}]},{"inclusive_time":5,"id":"767","highest_child_id":2732,"first_entry_time":54151,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"769","highest_child_id":2732,"first_entry_time":54154,"exclusive_time":1,"entries":1}],"allocations":[{"id":"768","count":1}]},{"inclusive_time":115,"id":"755","highest_child_id":2755,"first_entry_time":54157,"exclusive_time":49,"entries":5,"callees":[{"inclusive_time":6,"id":"818","highest_child_id":2735,"first_entry_time":54182,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"757","highest_child_id":2735,"first_entry_time":54185,"exclusive_time":1,"entries":1}]},{"inclusive_time":18,"id":"794","highest_child_id":2741,"first_entry_time":54191,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"757","highest_child_id":2737,"first_entry_time":54193,"exclusive_time":1,"entries":1},{"inclusive_time":13,"id":"795","highest_child_id":2741,"first_entry_time":54196,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":1,"id":"796","highest_child_id":2739,"first_entry_time":54200,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"797","highest_child_id":2740,"first_entry_time":54203,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"726","highest_child_id":2741,"first_entry_time":54208,"exclusive_time":1,"entries":1}],"allocations":[{"id":"28","count":1},{"id":"53","count":3},{"id":"26","count":1}]}]},{"inclusive_time":22,"id":"819","highest_child_id":2747,"first_entry_time":54239,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":1,"id":"757","highest_child_id":2743,"first_entry_time":54243,"exclusive_time":1,"entries":1},{"inclusive_time":14,"id":"727","highest_child_id":2747,"first_entry_time":54247,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":12,"id":"687","highest_child_id":2747,"first_entry_time":54249,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":10,"id":"688","highest_child_id":2747,"first_entry_time":54251,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":1,"id":"689","highest_child_id":2747,"first_entry_time":54257,"exclusive_time":1,"entries":1}]}]}]}]},{"inclusive_time":4,"id":"771","highest_child_id":2749,"first_entry_time":54269,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"757","highest_child_id":2749,"first_entry_time":54272,"exclusive_time":1,"entries":1}]},{"inclusive_time":14,"id":"803","highest_child_id":2755,"first_entry_time":54276,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"757","highest_child_id":2751,"first_entry_time":54279,"exclusive_time":0,"entries":1},{"inclusive_time":9,"id":"795","highest_child_id":2755,"first_entry_time":54281,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":1,"id":"796","highest_child_id":2753,"first_entry_time":54283,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"797","highest_child_id":2754,"first_entry_time":54286,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"726","highest_child_id":2755,"first_entry_time":54289,"exclusive_time":0,"entries":1}],"allocations":[{"id":"28","count":1},{"id":"53","count":3}]}]}],"allocations":[{"id":"10","count":5}]},{"inclusive_time":2,"id":"820","highest_child_id":2756,"first_entry_time":54218,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":15,"id":"759","highest_child_id":2759,"first_entry_time":54293,"exclusive_time":8,"entries":3,"callees":[{"inclusive_time":6,"id":"760","highest_child_id":2759,"first_entry_time":54296,"exclusive_time":5,"entries":3,"callees":[{"inclusive_time":1,"id":"715","highest_child_id":2759,"first_entry_time":54298,"exclusive_time":0,"entries":3}]}]},{"inclusive_time":237,"id":"821","highest_child_id":2775,"first_entry_time":54598,"exclusive_time":159,"entries":1,"callees":[{"inclusive_time":4,"id":"822","highest_child_id":2761,"first_entry_time":54623,"exclusive_time":4,"entries":1,"allocations":[{"id":"25","count":1}]},{"inclusive_time":1,"id":"757","highest_child_id":2762,"first_entry_time":54630,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"779","highest_child_id":2763,"first_entry_time":54633,"exclusive_time":0,"entries":1},{"inclusive_time":14,"id":"823","highest_child_id":2766,"first_entry_time":54683,"exclusive_time":12,"entries":1,"callees":[{"inclusive_time":0,"id":"175","highest_child_id":2765,"first_entry_time":54687,"exclusive_time":0,"entries":1,"allocations":[{"id":"172","count":1}]},{"inclusive_time":1,"id":"690","highest_child_id":2766,"first_entry_time":54692,"exclusive_time":1,"entries":1}],"allocations":[{"id":"10","count":1},{"id":"25","count":1},{"id":"27","count":1}]},{"inclusive_time":3,"id":"824","highest_child_id":2767,"first_entry_time":54709,"exclusive_time":1,"entries":5},{"inclusive_time":49,"id":"825","highest_child_id":2773,"first_entry_time":54770,"exclusive_time":34,"entries":2,"callees":[{"inclusive_time":10,"id":"783","highest_child_id":2770,"first_entry_time":54773,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":6,"id":"784","highest_child_id":2770,"first_entry_time":54776,"exclusive_time":6,"entries":2}]},{"inclusive_time":1,"id":"785","highest_child_id":2771,"first_entry_time":54782,"exclusive_time":1,"entries":2},{"inclusive_time":2,"id":"826","highest_child_id":2772,"first_entry_time":54807,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"824","highest_child_id":2773,"first_entry_time":54810,"exclusive_time":1,"entries":2}]},{"inclusive_time":6,"id":"783","highest_child_id":2775,"first_entry_time":54817,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":3,"id":"784","highest_child_id":2775,"first_entry_time":54820,"exclusive_time":3,"entries":1}]}],"allocations":[{"id":"10","count":1},{"id":"25","count":1}]},{"inclusive_time":9,"id":"802","highest_child_id":2777,"first_entry_time":54844,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":2,"id":"689","highest_child_id":2777,"first_entry_time":54850,"exclusive_time":1,"entries":2}],"allocations":[{"id":"53","count":1},{"id":"28","count":1},{"id":"25","count":1}]},{"inclusive_time":2,"id":"716","highest_child_id":2778,"first_entry_time":54860,"exclusive_time":2,"entries":1,"allocations":[{"id":"717","count":1}]}],"allocations":[{"id":"10","count":1}]}],"allocations":[{"id":"27","count":1}]}]},{"inclusive_time":3,"id":"718","highest_child_id":2780,"first_entry_time":54864,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"719","highest_child_id":2780,"first_entry_time":54866,"exclusive_time":0,"entries":1}]},{"inclusive_time":367,"id":"815","highest_child_id":2881,"first_entry_time":54947,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":364,"id":"677","highest_child_id":2881,"first_entry_time":54950,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":361,"id":"728","highest_child_id":2881,"first_entry_time":54952,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":358,"id":"729","highest_child_id":2881,"first_entry_time":54955,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":1,"id":"287","highest_child_id":2785,"first_entry_time":54957,"exclusive_time":0,"entries":1},{"inclusive_time":352,"id":"730","highest_child_id":2881,"first_entry_time":54961,"exclusive_time":66,"entries":1,"callees":[{"inclusive_time":1,"id":"286","highest_child_id":2787,"first_entry_time":54970,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"498","highest_child_id":2788,"first_entry_time":54972,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"287","highest_child_id":2789,"first_entry_time":54977,"exclusive_time":1,"entries":2},{"inclusive_time":2,"id":"288","highest_child_id":2790,"first_entry_time":54981,"exclusive_time":2,"entries":1,"allocations":[{"id":"6","count":1},{"id":"289","count":1}]},{"inclusive_time":3,"id":"809","highest_child_id":2791,"first_entry_time":54985,"exclusive_time":2,"entries":1,"allocations":[{"id":"10","count":1},{"id":"810","count":1}]},{"inclusive_time":2,"id":"290","highest_child_id":2792,"first_entry_time":54989,"exclusive_time":1,"entries":1,"allocations":[{"id":"10","count":1},{"id":"6","count":1},{"id":"291","count":1}]},{"inclusive_time":220,"id":"677","highest_child_id":2855,"first_entry_time":54992,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":180,"id":"728","highest_child_id":2843,"first_entry_time":54994,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":178,"id":"729","highest_child_id":2843,"first_entry_time":54997,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"287","highest_child_id":2796,"first_entry_time":54998,"exclusive_time":0,"entries":1},{"inclusive_time":173,"id":"731","highest_child_id":2843,"first_entry_time":55001,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":0,"id":"286","highest_child_id":2798,"first_entry_time":55003,"exclusive_time":0,"entries":1},{"inclusive_time":169,"id":"732","highest_child_id":2843,"first_entry_time":55005,"exclusive_time":24,"entries":1,"callees":[{"inclusive_time":117,"id":"677","highest_child_id":2833,"first_entry_time":55015,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":111,"id":"811","highest_child_id":2831,"first_entry_time":55017,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":2,"id":"812","highest_child_id":2802,"first_entry_time":55019,"exclusive_time":1,"entries":2,"allocations":[{"id":"27","count":2}]},{"inclusive_time":1,"id":"813","highest_child_id":2803,"first_entry_time":55023,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":0,"id":"286","highest_child_id":2804,"first_entry_time":55026,"exclusive_time":0,"entries":1},{"inclusive_time":99,"id":"732","highest_child_id":2831,"first_entry_time":55028,"exclusive_time":21,"entries":1,"callees":[{"inclusive_time":37,"id":"677","highest_child_id":2819,"first_entry_time":55035,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":30,"id":"751","highest_child_id":2817,"first_entry_time":55038,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"752","highest_child_id":2808,"first_entry_time":55040,"exclusive_time":1,"entries":1},{"inclusive_time":25,"id":"753","highest_child_id":2817,"first_entry_time":55043,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":4,"id":"754","highest_child_id":2811,"first_entry_time":55045,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":2,"id":"711","highest_child_id":2811,"first_entry_time":55047,"exclusive_time":2,"entries":1}]},{"inclusive_time":14,"id":"755","highest_child_id":2816,"first_entry_time":55051,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":11,"id":"756","highest_child_id":2816,"first_entry_time":55054,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":1,"id":"757","highest_child_id":2814,"first_entry_time":55058,"exclusive_time":0,"entries":1},{"inclusive_time":3,"id":"727","highest_child_id":2816,"first_entry_time":55061,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"687","highest_child_id":2816,"first_entry_time":55062,"exclusive_time":1,"entries":1}]}]}],"allocations":[{"id":"10","count":1}]},{"inclusive_time":1,"id":"716","highest_child_id":2817,"first_entry_time":55066,"exclusive_time":1,"entries":1,"allocations":[{"id":"717","count":1}]}]}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":3,"id":"718","highest_child_id":2819,"first_entry_time":55069,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"719","highest_child_id":2819,"first_entry_time":55070,"exclusive_time":0,"entries":1}]}]},{"inclusive_time":1,"id":"719","highest_child_id":2820,"first_entry_time":55073,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"745","highest_child_id":2821,"first_entry_time":55076,"exclusive_time":0,"entries":2},{"inclusive_time":27,"id":"758","highest_child_id":2825,"first_entry_time":55081,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":25,"id":"759","highest_child_id":2825,"first_entry_time":55083,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":19,"id":"760","highest_child_id":2825,"first_entry_time":55087,"exclusive_time":18,"entries":1,"callees":[{"inclusive_time":1,"id":"715","highest_child_id":2825,"first_entry_time":55105,"exclusive_time":1,"entries":1}]}]}]},{"inclusive_time":2,"id":"711","highest_child_id":2826,"first_entry_time":55111,"exclusive_time":2,"entries":1},{"inclusive_time":5,"id":"814","highest_child_id":2828,"first_entry_time":55115,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"757","highest_child_id":2828,"first_entry_time":55119,"exclusive_time":0,"entries":1}]},{"inclusive_time":2,"id":"716","highest_child_id":2829,"first_entry_time":55122,"exclusive_time":1,"entries":1,"allocations":[{"id":"717","count":1}]},{"inclusive_time":2,"id":"718","highest_child_id":2831,"first_entry_time":55125,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"719","highest_child_id":2831,"first_entry_time":55126,"exclusive_time":0,"entries":1}]}],"allocations":[{"id":"10","count":4},{"id":"25","count":2}]}],"allocations":[{"id":"10","count":1}]},{"inclusive_time":2,"id":"718","highest_child_id":2833,"first_entry_time":55129,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"719","highest_child_id":2833,"first_entry_time":55131,"exclusive_time":0,"entries":1}]}]},{"inclusive_time":1,"id":"719","highest_child_id":2834,"first_entry_time":55133,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"745","highest_child_id":2835,"first_entry_time":55136,"exclusive_time":0,"entries":2},{"inclusive_time":9,"id":"758","highest_child_id":2839,"first_entry_time":55144,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":7,"id":"759","highest_child_id":2839,"first_entry_time":55146,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":3,"id":"760","highest_child_id":2839,"first_entry_time":55149,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"715","highest_child_id":2839,"first_entry_time":55151,"exclusive_time":0,"entries":1}]}]}]},{"inclusive_time":2,"id":"711","highest_child_id":2840,"first_entry_time":55155,"exclusive_time":1,"entries":1},{"inclusive_time":4,"id":"773","highest_child_id":2842,"first_entry_time":55159,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"757","highest_child_id":2842,"first_entry_time":55161,"exclusive_time":0,"entries":1}]},{"inclusive_time":10,"id":"716","highest_child_id":2843,"first_entry_time":55164,"exclusive_time":10,"entries":1,"allocations":[{"id":"717","count":1}]}],"allocations":[{"id":"10","count":4},{"id":"25","count":2}]}]}],"allocations":[{"id":"27","count":1}]}]},{"inclusive_time":36,"id":"815","highest_child_id":2855,"first_entry_time":55196,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":33,"id":"677","highest_child_id":2855,"first_entry_time":55198,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":27,"id":"804","highest_child_id":2855,"first_entry_time":55204,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":2,"id":"542","highest_child_id":2848,"first_entry_time":55206,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"528","highest_child_id":2848,"first_entry_time":55208,"exclusive_time":0,"entries":1}]},{"inclusive_time":1,"id":"735","highest_child_id":2849,"first_entry_time":55211,"exclusive_time":1,"entries":1},{"inclusive_time":4,"id":"777","highest_child_id":2851,"first_entry_time":55214,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":2,"id":"711","highest_child_id":2851,"first_entry_time":55215,"exclusive_time":2,"entries":1}]},{"inclusive_time":9,"id":"755","highest_child_id":2854,"first_entry_time":55220,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":6,"id":"816","highest_child_id":2854,"first_entry_time":55222,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"757","highest_child_id":2854,"first_entry_time":55226,"exclusive_time":0,"entries":1}]}],"allocations":[{"id":"10","count":1}]},{"inclusive_time":1,"id":"716","highest_child_id":2855,"first_entry_time":55230,"exclusive_time":1,"entries":1,"allocations":[{"id":"717","count":1}]}],"allocations":[{"id":"27","count":1}]}]}]}]},{"inclusive_time":6,"id":"776","highest_child_id":2857,"first_entry_time":55176,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"638","highest_child_id":2857,"first_entry_time":55180,"exclusive_time":1,"entries":1}],"allocations":[{"id":"10","count":2},{"id":"25","count":2}]},{"inclusive_time":2,"id":"745","highest_child_id":2858,"first_entry_time":55183,"exclusive_time":0,"entries":6},{"inclusive_time":1,"id":"733","highest_child_id":2859,"first_entry_time":55187,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"757","highest_child_id":2860,"first_entry_time":55192,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"719","highest_child_id":2861,"first_entry_time":55233,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"779","highest_child_id":2862,"first_entry_time":55236,"exclusive_time":0,"entries":1},{"inclusive_time":20,"id":"780","highest_child_id":2869,"first_entry_time":55238,"exclusive_time":13,"entries":1,"callees":[{"inclusive_time":0,"id":"175","highest_child_id":2864,"first_entry_time":55241,"exclusive_time":0,"entries":1,"allocations":[{"id":"172","count":1}]},{"inclusive_time":1,"id":"719","highest_child_id":2865,"first_entry_time":55244,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"637","highest_child_id":2866,"first_entry_time":55246,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"638","highest_child_id":2867,"first_entry_time":55248,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"781","highest_child_id":2868,"first_entry_time":55252,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"782","highest_child_id":2869,"first_entry_time":55254,"exclusive_time":2,"entries":1,"allocations":[{"id":"53","count":1}]}],"allocations":[{"id":"26","count":2},{"id":"25","count":1},{"id":"27","count":1}]},{"inclusive_time":1,"id":"637","highest_child_id":2870,"first_entry_time":55262,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"638","highest_child_id":2871,"first_entry_time":55264,"exclusive_time":0,"entries":1},{"inclusive_time":11,"id":"759","highest_child_id":2874,"first_entry_time":55271,"exclusive_time":6,"entries":2,"callees":[{"inclusive_time":4,"id":"760","highest_child_id":2874,"first_entry_time":55274,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":1,"id":"715","highest_child_id":2874,"first_entry_time":55276,"exclusive_time":0,"entries":2}]}]},{"inclusive_time":1,"id":"472","highest_child_id":2875,"first_entry_time":55287,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"710","highest_child_id":2876,"first_entry_time":55290,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"711","highest_child_id":2877,"first_entry_time":55292,"exclusive_time":2,"entries":1},{"inclusive_time":5,"id":"783","highest_child_id":2879,"first_entry_time":55296,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":3,"id":"784","highest_child_id":2879,"first_entry_time":55298,"exclusive_time":3,"entries":1}]},{"inclusive_time":1,"id":"785","highest_child_id":2880,"first_entry_time":55303,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"716","highest_child_id":2881,"first_entry_time":55311,"exclusive_time":1,"entries":1,"allocations":[{"id":"717","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"27","count":6},{"id":"10","count":1},{"id":"25","count":2},{"id":"53","count":1}]}],"allocations":[{"id":"27","count":1}]}]}]}]}]},{"inclusive_time":1,"id":"745","highest_child_id":2882,"first_entry_time":54870,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"719","highest_child_id":2883,"first_entry_time":54872,"exclusive_time":0,"entries":4},{"inclusive_time":1,"id":"759","highest_child_id":2884,"first_entry_time":54873,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"716","highest_child_id":2885,"first_entry_time":54876,"exclusive_time":1,"entries":2,"allocations":[{"id":"717","count":2}]}],"allocations":[{"id":"25","count":2}]}]},{"inclusive_time":5,"id":"468","highest_child_id":2886,"first_entry_time":54880,"exclusive_time":4,"entries":2,"allocations":[{"id":"10","count":2},{"id":"222","count":2}]}],"allocations":[{"id":"6","count":2},{"id":"25","count":2}]},{"inclusive_time":6,"id":"718","highest_child_id":2888,"first_entry_time":54885,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":1,"id":"719","highest_child_id":2888,"first_entry_time":54890,"exclusive_time":1,"entries":1}]}]},{"inclusive_time":1,"id":"745","highest_child_id":2889,"first_entry_time":54893,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"719","highest_child_id":2890,"first_entry_time":54895,"exclusive_time":0,"entries":4},{"inclusive_time":1,"id":"759","highest_child_id":2891,"first_entry_time":54897,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"716","highest_child_id":2892,"first_entry_time":55329,"exclusive_time":1,"entries":1,"allocations":[{"id":"717","count":1}]}],"allocations":[{"id":"25","count":1}]}]}]},{"inclusive_time":5,"id":"745","highest_child_id":2893,"first_entry_time":50095,"exclusive_time":0,"entries":14},{"inclusive_time":4,"id":"719","highest_child_id":2894,"first_entry_time":50097,"exclusive_time":0,"entries":16},{"inclusive_time":10,"id":"759","highest_child_id":2895,"first_entry_time":50099,"exclusive_time":5,"entries":13},{"inclusive_time":3,"id":"716","highest_child_id":2896,"first_entry_time":51126,"exclusive_time":2,"entries":3,"allocations":[{"id":"717","count":3}]}],"allocations":[{"id":"25","count":3}]}]},{"inclusive_time":4,"id":"718","highest_child_id":2898,"first_entry_time":51130,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":1,"id":"719","highest_child_id":2898,"first_entry_time":51131,"exclusive_time":0,"entries":2}]}]},{"inclusive_time":1,"id":"745","highest_child_id":2899,"first_entry_time":51134,"exclusive_time":0,"entries":3},{"inclusive_time":1,"id":"719","highest_child_id":2900,"first_entry_time":51136,"exclusive_time":0,"entries":5},{"inclusive_time":2,"id":"759","highest_child_id":2901,"first_entry_time":51137,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"716","highest_child_id":2902,"first_entry_time":55340,"exclusive_time":1,"entries":1,"allocations":[{"id":"717","count":1}]}],"allocations":[{"id":"25","count":1}]},{"inclusive_time":1,"id":"719","highest_child_id":2903,"first_entry_time":55343,"exclusive_time":1,"entries":3},{"inclusive_time":9,"id":"827","highest_child_id":2905,"first_entry_time":55371,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":2,"id":"572","highest_child_id":2905,"first_entry_time":55375,"exclusive_time":1,"entries":2}],"allocations":[{"id":"10","count":1},{"id":"27","count":2}]},{"inclusive_time":1,"id":"745","highest_child_id":2906,"first_entry_time":55383,"exclusive_time":0,"entries":1},{"inclusive_time":6,"id":"828","highest_child_id":2908,"first_entry_time":55400,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":1,"id":"757","highest_child_id":2908,"first_entry_time":55403,"exclusive_time":1,"entries":1}]},{"inclusive_time":9,"id":"786","highest_child_id":2911,"first_entry_time":55408,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":4,"id":"691","highest_child_id":2911,"first_entry_time":55412,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"693","highest_child_id":2911,"first_entry_time":55414,"exclusive_time":1,"entries":1}],"allocations":[{"id":"692","count":1}]}],"allocations":[{"id":"172","count":1},{"id":"6","count":1},{"id":"26","count":1},{"id":"10","count":1}]},{"inclusive_time":2,"id":"711","highest_child_id":2912,"first_entry_time":55418,"exclusive_time":2,"entries":1},{"inclusive_time":1,"id":"829","highest_child_id":2913,"first_entry_time":55431,"exclusive_time":1,"entries":1},{"inclusive_time":7,"id":"759","highest_child_id":2916,"first_entry_time":55434,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":3,"id":"760","highest_child_id":2916,"first_entry_time":55437,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"715","highest_child_id":2916,"first_entry_time":55439,"exclusive_time":1,"entries":1}]}]},{"inclusive_time":1,"id":"830","highest_child_id":2917,"first_entry_time":55450,"exclusive_time":1,"entries":1},{"inclusive_time":3,"id":"468","highest_child_id":2918,"first_entry_time":55453,"exclusive_time":2,"entries":1,"allocations":[{"id":"10","count":1},{"id":"222","count":1}]},{"inclusive_time":1,"id":"831","highest_child_id":2919,"first_entry_time":55464,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"832","highest_child_id":2920,"first_entry_time":55477,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"833","highest_child_id":2921,"first_entry_time":55488,"exclusive_time":1,"entries":2},{"inclusive_time":56,"id":"834","highest_child_id":2927,"first_entry_time":55500,"exclusive_time":14,"entries":2,"callees":[{"inclusive_time":41,"id":"835","highest_child_id":2927,"first_entry_time":55513,"exclusive_time":30,"entries":2,"callees":[{"inclusive_time":6,"id":"836","highest_child_id":2925,"first_entry_time":55530,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":1,"id":"757","highest_child_id":2925,"first_entry_time":55534,"exclusive_time":1,"entries":1}]},{"inclusive_time":5,"id":"837","highest_child_id":2927,"first_entry_time":55554,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"757","highest_child_id":2927,"first_entry_time":55557,"exclusive_time":1,"entries":1}]}]}],"allocations":[{"id":"10","count":2}]},{"inclusive_time":15,"id":"787","highest_child_id":2934,"first_entry_time":55560,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":1,"id":"788","highest_child_id":2929,"first_entry_time":55563,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"789","highest_child_id":2930,"first_entry_time":55565,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"790","highest_child_id":2931,"first_entry_time":55567,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"791","highest_child_id":2932,"first_entry_time":55569,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"792","highest_child_id":2933,"first_entry_time":55572,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"793","highest_child_id":2934,"first_entry_time":55574,"exclusive_time":0,"entries":1}],"allocations":[{"id":"28","count":1}]},{"inclusive_time":35,"id":"798","highest_child_id":2941,"first_entry_time":55577,"exclusive_time":30,"entries":1,"callees":[{"inclusive_time":1,"id":"788","highest_child_id":2936,"first_entry_time":55579,"exclusive_time":0,"entries":1},{"inclusive_time":3,"id":"799","highest_child_id":2937,"first_entry_time":55583,"exclusive_time":0,"entries":8},{"inclusive_time":3,"id":"689","highest_child_id":2938,"first_entry_time":55586,"exclusive_time":0,"entries":8},{"inclusive_time":1,"id":"789","highest_child_id":2939,"first_entry_time":55595,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"791","highest_child_id":2940,"first_entry_time":55600,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"801","highest_child_id":2941,"first_entry_time":55612,"exclusive_time":1,"entries":1}],"allocations":[{"id":"25","count":3},{"id":"28","count":11},{"id":"222","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"27","count":2},{"id":"10","count":2},{"id":"25","count":5}]},{"inclusive_time":2,"id":"838","highest_child_id":2942,"first_entry_time":55624,"exclusive_time":1,"entries":1},{"inclusive_time":6,"id":"468","highest_child_id":2944,"first_entry_time":55628,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":1,"id":"261","highest_child_id":2944,"first_entry_time":55631,"exclusive_time":0,"entries":1}],"allocations":[{"id":"10","count":1},{"id":"222","count":1},{"id":"27","count":1}]},{"inclusive_time":1,"id":"748","highest_child_id":2945,"first_entry_time":55637,"exclusive_time":1,"entries":1},{"inclusive_time":3,"id":"839","highest_child_id":2946,"first_entry_time":55653,"exclusive_time":2,"entries":1}],"allocations":[{"id":"2","count":2},{"id":"27","count":1},{"id":"10","count":1},{"id":"28","count":1},{"id":"25","count":1}]},{"inclusive_time":4,"id":"572","highest_child_id":2947,"first_entry_time":55658,"exclusive_time":2,"entries":6},{"inclusive_time":5,"id":"840","highest_child_id":2949,"first_entry_time":55694,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"548","highest_child_id":2949,"first_entry_time":55697,"exclusive_time":1,"entries":1}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":20,"id":"841","highest_child_id":2955,"first_entry_time":55723,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":1,"id":"548","highest_child_id":2951,"first_entry_time":55725,"exclusive_time":0,"entries":1},{"inclusive_time":9,"id":"711","highest_child_id":2954,"first_entry_time":55730,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":1,"id":"712","highest_child_id":2953,"first_entry_time":55733,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"713","highest_child_id":2954,"first_entry_time":55737,"exclusive_time":1,"entries":1,"allocations":[{"id":"714","count":1}]}]},{"inclusive_time":1,"id":"715","highest_child_id":2955,"first_entry_time":55741,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":1,"id":"716","highest_child_id":2956,"first_entry_time":55744,"exclusive_time":1,"entries":1,"allocations":[{"id":"717","count":1}]}],"allocations":[{"id":"2","count":1},{"id":"27","count":7}]},{"inclusive_time":4,"id":"718","highest_child_id":2958,"first_entry_time":55746,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":1,"id":"719","highest_child_id":2958,"first_entry_time":55748,"exclusive_time":0,"entries":2}]},{"inclusive_time":39,"id":"842","highest_child_id":2972,"first_entry_time":57160,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":1,"id":"843","highest_child_id":2960,"first_entry_time":57163,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"548","highest_child_id":2961,"first_entry_time":57165,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"733","highest_child_id":2962,"first_entry_time":57168,"exclusive_time":0,"entries":1},{"inclusive_time":9,"id":"777","highest_child_id":2966,"first_entry_time":57171,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":8,"id":"711","highest_child_id":2966,"first_entry_time":57173,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"712","highest_child_id":2965,"first_entry_time":57176,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"713","highest_child_id":2966,"first_entry_time":57179,"exclusive_time":1,"entries":1,"allocations":[{"id":"714","count":1}]}]}]},{"inclusive_time":14,"id":"755","highest_child_id":2971,"first_entry_time":57182,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":11,"id":"844","highest_child_id":2971,"first_entry_time":57185,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":1,"id":"757","highest_child_id":2969,"first_entry_time":57189,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"845","highest_child_id":2970,"first_entry_time":57191,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"846","highest_child_id":2971,"first_entry_time":57193,"exclusive_time":2,"entries":1,"allocations":[{"id":"18","count":2}]}]}],"allocations":[{"id":"10","count":1}]},{"inclusive_time":1,"id":"716","highest_child_id":2972,"first_entry_time":57198,"exclusive_time":1,"entries":1,"allocations":[{"id":"717","count":1}]}],"allocations":[{"id":"27","count":1}]}]},{"inclusive_time":1,"id":"719","highest_child_id":2973,"first_entry_time":55750,"exclusive_time":0,"entries":2},{"inclusive_time":2,"id":"745","highest_child_id":2974,"first_entry_time":55754,"exclusive_time":0,"entries":4},{"inclusive_time":15,"id":"758","highest_child_id":2978,"first_entry_time":55759,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":12,"id":"759","highest_child_id":2978,"first_entry_time":55761,"exclusive_time":7,"entries":2,"callees":[{"inclusive_time":5,"id":"760","highest_child_id":2978,"first_entry_time":55764,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":1,"id":"715","highest_child_id":2978,"first_entry_time":55766,"exclusive_time":0,"entries":2}]}]}]},{"inclusive_time":8,"id":"711","highest_child_id":2981,"first_entry_time":55769,"exclusive_time":4,"entries":2,"callees":[{"inclusive_time":1,"id":"712","highest_child_id":2980,"first_entry_time":55772,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"713","highest_child_id":2981,"first_entry_time":55774,"exclusive_time":1,"entries":1,"allocations":[{"id":"714","count":1}]}]},{"inclusive_time":8,"id":"773","highest_child_id":2983,"first_entry_time":55777,"exclusive_time":6,"entries":2,"callees":[{"inclusive_time":1,"id":"757","highest_child_id":2983,"first_entry_time":55780,"exclusive_time":0,"entries":2}]},{"inclusive_time":2,"id":"716","highest_child_id":2984,"first_entry_time":55783,"exclusive_time":1,"entries":2,"allocations":[{"id":"717","count":2}]}],"allocations":[{"id":"10","count":8},{"id":"25","count":4}]}]}],"allocations":[{"id":"27","count":2}]}]},{"inclusive_time":4,"id":"718","highest_child_id":2986,"first_entry_time":55786,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":1,"id":"719","highest_child_id":2986,"first_entry_time":55788,"exclusive_time":0,"entries":2}]}]},{"inclusive_time":3,"id":"287","highest_child_id":2987,"first_entry_time":55791,"exclusive_time":1,"entries":4},{"inclusive_time":6,"id":"776","highest_child_id":2988,"first_entry_time":55793,"exclusive_time":5,"entries":2,"allocations":[{"id":"10","count":4},{"id":"25","count":4}]},{"inclusive_time":3,"id":"745","highest_child_id":2989,"first_entry_time":55796,"exclusive_time":0,"entries":8},{"inclusive_time":1,"id":"733","highest_child_id":2990,"first_entry_time":55799,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"757","highest_child_id":2991,"first_entry_time":55804,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"779","highest_child_id":2992,"first_entry_time":55806,"exclusive_time":1,"entries":2},{"inclusive_time":21,"id":"780","highest_child_id":2996,"first_entry_time":55809,"exclusive_time":15,"entries":2,"callees":[{"inclusive_time":1,"id":"175","highest_child_id":2994,"first_entry_time":55811,"exclusive_time":0,"entries":2,"allocations":[{"id":"172","count":2}]},{"inclusive_time":2,"id":"781","highest_child_id":2995,"first_entry_time":55814,"exclusive_time":2,"entries":2},{"inclusive_time":2,"id":"782","highest_child_id":2996,"first_entry_time":55817,"exclusive_time":2,"entries":2,"allocations":[{"id":"53","count":2}]}],"allocations":[{"id":"26","count":4},{"id":"25","count":4},{"id":"27","count":2}]},{"inclusive_time":12,"id":"759","highest_child_id":2999,"first_entry_time":55825,"exclusive_time":6,"entries":2,"callees":[{"inclusive_time":5,"id":"760","highest_child_id":2999,"first_entry_time":55827,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":1,"id":"715","highest_child_id":2999,"first_entry_time":55829,"exclusive_time":0,"entries":2}]}]},{"inclusive_time":1,"id":"472","highest_child_id":3000,"first_entry_time":55836,"exclusive_time":1,"entries":2},{"inclusive_time":2,"id":"710","highest_child_id":3001,"first_entry_time":55838,"exclusive_time":1,"entries":2},{"inclusive_time":3,"id":"711","highest_child_id":3002,"first_entry_time":55840,"exclusive_time":2,"entries":2},{"inclusive_time":11,"id":"783","highest_child_id":3004,"first_entry_time":55844,"exclusive_time":4,"entries":2,"callees":[{"inclusive_time":7,"id":"784","highest_child_id":3004,"first_entry_time":55846,"exclusive_time":6,"entries":2}]},{"inclusive_time":1,"id":"785","highest_child_id":3005,"first_entry_time":55852,"exclusive_time":1,"entries":2},{"inclusive_time":2,"id":"716","highest_child_id":3006,"first_entry_time":55861,"exclusive_time":2,"entries":2,"allocations":[{"id":"717","count":2}]}],"allocations":[{"id":"6","count":2},{"id":"27","count":10},{"id":"10","count":4},{"id":"25","count":4},{"id":"53","count":2}]}],"allocations":[{"id":"27","count":2}]}]},{"inclusive_time":561,"id":"805","highest_child_id":3144,"first_entry_time":56336,"exclusive_time":11,"entries":2,"callees":[{"inclusive_time":5,"id":"721","highest_child_id":3009,"first_entry_time":56338,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":1,"id":"223","highest_child_id":3009,"first_entry_time":56340,"exclusive_time":1,"entries":2}]},{"inclusive_time":539,"id":"806","highest_child_id":3143,"first_entry_time":56344,"exclusive_time":9,"entries":2,"callees":[{"inclusive_time":1,"id":"630","highest_child_id":3011,"first_entry_time":56346,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"286","highest_child_id":3012,"first_entry_time":56348,"exclusive_time":0,"entries":2},{"inclusive_time":528,"id":"705","highest_child_id":3143,"first_entry_time":56350,"exclusive_time":19,"entries":2,"callees":[{"inclusive_time":504,"id":"677","highest_child_id":3139,"first_entry_time":56354,"exclusive_time":5,"entries":2,"callees":[{"inclusive_time":312,"id":"720","highest_child_id":3092,"first_entry_time":56357,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":2,"id":"721","highest_child_id":3017,"first_entry_time":56358,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"223","highest_child_id":3017,"first_entry_time":56360,"exclusive_time":0,"entries":1}]},{"inclusive_time":1,"id":"613","highest_child_id":3018,"first_entry_time":56362,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"286","highest_child_id":3019,"first_entry_time":56364,"exclusive_time":0,"entries":1},{"inclusive_time":304,"id":"705","highest_child_id":3092,"first_entry_time":56365,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":289,"id":"677","highest_child_id":3088,"first_entry_time":56369,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":269,"id":"728","highest_child_id":3079,"first_entry_time":56371,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":266,"id":"729","highest_child_id":3079,"first_entry_time":56373,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":1,"id":"287","highest_child_id":3024,"first_entry_time":56375,"exclusive_time":0,"entries":1},{"inclusive_time":260,"id":"747","highest_child_id":3079,"first_entry_time":56379,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":0,"id":"286","highest_child_id":3026,"first_entry_time":56381,"exclusive_time":0,"entries":1},{"inclusive_time":256,"id":"677","highest_child_id":3079,"first_entry_time":56383,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":254,"id":"706","highest_child_id":3079,"first_entry_time":56385,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":250,"id":"707","highest_child_id":3079,"first_entry_time":56388,"exclusive_time":55,"entries":1,"callees":[{"inclusive_time":1,"id":"615","highest_child_id":3030,"first_entry_time":56391,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"616","highest_child_id":3031,"first_entry_time":56393,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"618","highest_child_id":3032,"first_entry_time":56397,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"286","highest_child_id":3033,"first_entry_time":56399,"exclusive_time":0,"entries":1},{"inclusive_time":149,"id":"750","highest_child_id":3063,"first_entry_time":56402,"exclusive_time":4,"entries":3,"callees":[{"inclusive_time":144,"id":"677","highest_child_id":3063,"first_entry_time":56404,"exclusive_time":35,"entries":3,"callees":[{"inclusive_time":55,"id":"804","highest_child_id":3047,"first_entry_time":56406,"exclusive_time":16,"entries":2,"callees":[{"inclusive_time":4,"id":"542","highest_child_id":3038,"first_entry_time":56409,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":1,"id":"528","highest_child_id":3038,"first_entry_time":56411,"exclusive_time":1,"entries":2}]},{"inclusive_time":3,"id":"735","highest_child_id":3039,"first_entry_time":56413,"exclusive_time":2,"entries":2,"allocations":[{"id":"27","count":1}]},{"inclusive_time":14,"id":"777","highest_child_id":3043,"first_entry_time":56417,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":11,"id":"711","highest_child_id":3043,"first_entry_time":56419,"exclusive_time":7,"entries":2,"callees":[{"inclusive_time":2,"id":"712","highest_child_id":3042,"first_entry_time":56422,"exclusive_time":1,"entries":2},{"inclusive_time":2,"id":"713","highest_child_id":3043,"first_entry_time":56425,"exclusive_time":1,"entries":2,"allocations":[{"id":"714","count":2}]}]}]},{"inclusive_time":16,"id":"755","highest_child_id":3046,"first_entry_time":56429,"exclusive_time":4,"entries":2,"callees":[{"inclusive_time":11,"id":"816","highest_child_id":3046,"first_entry_time":56431,"exclusive_time":9,"entries":2,"callees":[{"inclusive_time":1,"id":"757","highest_child_id":3046,"first_entry_time":56436,"exclusive_time":1,"entries":2}]}],"allocations":[{"id":"10","count":2}]},{"inclusive_time":2,"id":"716","highest_child_id":3047,"first_entry_time":56440,"exclusive_time":1,"entries":2,"allocations":[{"id":"717","count":2}]}],"allocations":[{"id":"27","count":2},{"id":"28","count":1}]},{"inclusive_time":5,"id":"718","highest_child_id":3049,"first_entry_time":56443,"exclusive_time":3,"entries":3,"callees":[{"inclusive_time":1,"id":"719","highest_child_id":3049,"first_entry_time":56445,"exclusive_time":0,"entries":3}]},{"inclusive_time":49,"id":"842","highest_child_id":3063,"first_entry_time":56511,"exclusive_time":20,"entries":1,"callees":[{"inclusive_time":2,"id":"843","highest_child_id":3051,"first_entry_time":56524,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"548","highest_child_id":3052,"first_entry_time":56527,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"733","highest_child_id":3053,"first_entry_time":56531,"exclusive_time":1,"entries":1},{"inclusive_time":9,"id":"777","highest_child_id":3057,"first_entry_time":56534,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":7,"id":"711","highest_child_id":3057,"first_entry_time":56535,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"712","highest_child_id":3056,"first_entry_time":56539,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"713","highest_child_id":3057,"first_entry_time":56541,"exclusive_time":1,"entries":1,"allocations":[{"id":"714","count":1}]}]}]},{"inclusive_time":14,"id":"755","highest_child_id":3062,"first_entry_time":56544,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":11,"id":"844","highest_child_id":3062,"first_entry_time":56547,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":1,"id":"757","highest_child_id":3060,"first_entry_time":56551,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"845","highest_child_id":3061,"first_entry_time":56553,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"846","highest_child_id":3062,"first_entry_time":56555,"exclusive_time":2,"entries":1,"allocations":[{"id":"18","count":2}]}]}],"allocations":[{"id":"10","count":1}]},{"inclusive_time":1,"id":"716","highest_child_id":3063,"first_entry_time":56559,"exclusive_time":1,"entries":1,"allocations":[{"id":"717","count":1}]}],"allocations":[{"id":"27","count":1}]}]}]},{"inclusive_time":2,"id":"542","highest_child_id":3065,"first_entry_time":56472,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"528","highest_child_id":3065,"first_entry_time":56474,"exclusive_time":0,"entries":1}]},{"inclusive_time":1,"id":"472","highest_child_id":3066,"first_entry_time":56477,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"710","highest_child_id":3067,"first_entry_time":56478,"exclusive_time":1,"entries":1},{"inclusive_time":3,"id":"745","highest_child_id":3068,"first_entry_time":56567,"exclusive_time":1,"entries":6},{"inclusive_time":23,"id":"847","highest_child_id":3074,"first_entry_time":56590,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":1,"id":"757","highest_child_id":3070,"first_entry_time":56594,"exclusive_time":1,"entries":1},{"inclusive_time":15,"id":"727","highest_child_id":3074,"first_entry_time":56598,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":13,"id":"687","highest_child_id":3074,"first_entry_time":56600,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":10,"id":"688","highest_child_id":3074,"first_entry_time":56602,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":1,"id":"689","highest_child_id":3074,"first_entry_time":56608,"exclusive_time":1,"entries":1}]}]}]}]},{"inclusive_time":1,"id":"719","highest_child_id":3075,"first_entry_time":56616,"exclusive_time":0,"entries":1},{"inclusive_time":12,"id":"759","highest_child_id":3078,"first_entry_time":56621,"exclusive_time":7,"entries":2,"callees":[{"inclusive_time":4,"id":"760","highest_child_id":3078,"first_entry_time":56625,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":1,"id":"715","highest_child_id":3078,"first_entry_time":56627,"exclusive_time":0,"entries":2}]}]},{"inclusive_time":1,"id":"716","highest_child_id":3079,"first_entry_time":56637,"exclusive_time":1,"entries":1,"allocations":[{"id":"717","count":1}]}],"allocations":[{"id":"27","count":3},{"id":"53","count":1}]}]}]}]}],"allocations":[{"id":"27","count":1}]}]},{"inclusive_time":16,"id":"718","highest_child_id":3088,"first_entry_time":56641,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"719","highest_child_id":3081,"first_entry_time":56643,"exclusive_time":0,"entries":1},{"inclusive_time":7,"id":"744","highest_child_id":3085,"first_entry_time":56645,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"719","highest_child_id":3083,"first_entry_time":56646,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"745","highest_child_id":3084,"first_entry_time":56648,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"716","highest_child_id":3085,"first_entry_time":56650,"exclusive_time":1,"entries":1,"allocations":[{"id":"717","count":1}]}]},{"inclusive_time":4,"id":"746","highest_child_id":3088,"first_entry_time":56653,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"745","highest_child_id":3087,"first_entry_time":56654,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"719","highest_child_id":3088,"first_entry_time":56656,"exclusive_time":0,"entries":1}]}]}]},{"inclusive_time":1,"id":"745","highest_child_id":3089,"first_entry_time":56660,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"719","highest_child_id":3090,"first_entry_time":56662,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"759","highest_child_id":3091,"first_entry_time":56664,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"716","highest_child_id":3092,"first_entry_time":56667,"exclusive_time":1,"entries":1,"allocations":[{"id":"717","count":1}]}],"allocations":[{"id":"25","count":1}]}]},{"inclusive_time":2,"id":"718","highest_child_id":3094,"first_entry_time":56670,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"719","highest_child_id":3094,"first_entry_time":56671,"exclusive_time":0,"entries":1}]},{"inclusive_time":183,"id":"728","highest_child_id":3139,"first_entry_time":56714,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":180,"id":"729","highest_child_id":3139,"first_entry_time":56716,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":1,"id":"287","highest_child_id":3097,"first_entry_time":56718,"exclusive_time":0,"entries":1},{"inclusive_time":173,"id":"731","highest_child_id":3139,"first_entry_time":56723,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"286","highest_child_id":3099,"first_entry_time":56724,"exclusive_time":0,"entries":1},{"inclusive_time":169,"id":"732","highest_child_id":3139,"first_entry_time":56727,"exclusive_time":52,"entries":1,"callees":[{"inclusive_time":89,"id":"677","highest_child_id":3129,"first_entry_time":56741,"exclusive_time":7,"entries":2,"callees":[{"inclusive_time":48,"id":"751","highest_child_id":3117,"first_entry_time":56744,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"752","highest_child_id":3103,"first_entry_time":56746,"exclusive_time":1,"entries":1},{"inclusive_time":42,"id":"753","highest_child_id":3117,"first_entry_time":56749,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":10,"id":"754","highest_child_id":3108,"first_entry_time":56752,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":8,"id":"711","highest_child_id":3108,"first_entry_time":56753,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"712","highest_child_id":3107,"first_entry_time":56757,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"713","highest_child_id":3108,"first_entry_time":56759,"exclusive_time":1,"entries":1,"allocations":[{"id":"714","count":1}]}]}]},{"inclusive_time":26,"id":"755","highest_child_id":3116,"first_entry_time":56763,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":23,"id":"756","highest_child_id":3116,"first_entry_time":56765,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":1,"id":"757","highest_child_id":3111,"first_entry_time":56769,"exclusive_time":0,"entries":1},{"inclusive_time":17,"id":"727","highest_child_id":3116,"first_entry_time":56771,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":15,"id":"687","highest_child_id":3116,"first_entry_time":56773,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":12,"id":"688","highest_child_id":3116,"first_entry_time":56775,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":1,"id":"689","highest_child_id":3115,"first_entry_time":56782,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"690","highest_child_id":3116,"first_entry_time":56785,"exclusive_time":0,"entries":2}]}]}]}]}],"allocations":[{"id":"10","count":1}]},{"inclusive_time":1,"id":"716","highest_child_id":3117,"first_entry_time":56790,"exclusive_time":1,"entries":1,"allocations":[{"id":"717","count":1}]}]}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":4,"id":"718","highest_child_id":3119,"first_entry_time":56793,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":1,"id":"719","highest_child_id":3119,"first_entry_time":56795,"exclusive_time":0,"entries":2}]},{"inclusive_time":29,"id":"804","highest_child_id":3129,"first_entry_time":56808,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":3,"id":"542","highest_child_id":3122,"first_entry_time":56810,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"528","highest_child_id":3122,"first_entry_time":56812,"exclusive_time":0,"entries":1}]},{"inclusive_time":1,"id":"735","highest_child_id":3123,"first_entry_time":56815,"exclusive_time":1,"entries":1},{"inclusive_time":4,"id":"777","highest_child_id":3125,"first_entry_time":56819,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":2,"id":"711","highest_child_id":3125,"first_entry_time":56820,"exclusive_time":2,"entries":1}]},{"inclusive_time":9,"id":"755","highest_child_id":3128,"first_entry_time":56825,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":6,"id":"816","highest_child_id":3128,"first_entry_time":56828,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":1,"id":"757","highest_child_id":3128,"first_entry_time":56832,"exclusive_time":1,"entries":1}]}],"allocations":[{"id":"10","count":1}]},{"inclusive_time":1,"id":"716","highest_child_id":3129,"first_entry_time":56836,"exclusive_time":1,"entries":1,"allocations":[{"id":"717","count":1}]}],"allocations":[{"id":"27","count":1}]}]},{"inclusive_time":1,"id":"719","highest_child_id":3130,"first_entry_time":56798,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"745","highest_child_id":3131,"first_entry_time":56801,"exclusive_time":0,"entries":4},{"inclusive_time":15,"id":"758","highest_child_id":3135,"first_entry_time":56846,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":11,"id":"759","highest_child_id":3135,"first_entry_time":56849,"exclusive_time":6,"entries":2,"callees":[{"inclusive_time":5,"id":"760","highest_child_id":3135,"first_entry_time":56852,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":1,"id":"715","highest_child_id":3135,"first_entry_time":56855,"exclusive_time":0,"entries":2}]}]}]},{"inclusive_time":2,"id":"711","highest_child_id":3136,"first_entry_time":56864,"exclusive_time":1,"entries":1},{"inclusive_time":7,"id":"848","highest_child_id":3138,"first_entry_time":56885,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":1,"id":"757","highest_child_id":3138,"first_entry_time":56890,"exclusive_time":1,"entries":1}]},{"inclusive_time":2,"id":"716","highest_child_id":3139,"first_entry_time":56894,"exclusive_time":1,"entries":1,"allocations":[{"id":"717","count":1}]}],"allocations":[{"id":"10","count":4},{"id":"25","count":2}]}]}],"allocations":[{"id":"27","count":1}]}]}]},{"inclusive_time":1,"id":"745","highest_child_id":3140,"first_entry_time":56674,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"719","highest_child_id":3141,"first_entry_time":56676,"exclusive_time":0,"entries":4},{"inclusive_time":1,"id":"759","highest_child_id":3142,"first_entry_time":56678,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"716","highest_child_id":3143,"first_entry_time":56680,"exclusive_time":1,"entries":2,"allocations":[{"id":"717","count":2}]}],"allocations":[{"id":"25","count":2}]}]},{"inclusive_time":6,"id":"468","highest_child_id":3144,"first_entry_time":56684,"exclusive_time":5,"entries":2,"allocations":[{"id":"10","count":2},{"id":"222","count":2}]}],"allocations":[{"id":"6","count":2},{"id":"25","count":2}]}]},{"inclusive_time":3,"id":"745","highest_child_id":3145,"first_entry_time":48987,"exclusive_time":1,"entries":6},{"inclusive_time":3,"id":"719","highest_child_id":3146,"first_entry_time":48989,"exclusive_time":0,"entries":12},{"inclusive_time":3,"id":"759","highest_child_id":3147,"first_entry_time":49010,"exclusive_time":2,"entries":3},{"inclusive_time":3,"id":"716","highest_child_id":3148,"first_entry_time":55868,"exclusive_time":2,"entries":3,"allocations":[{"id":"717","count":3}]}],"allocations":[{"id":"25","count":3}]},{"inclusive_time":3,"id":"719","highest_child_id":3149,"first_entry_time":55871,"exclusive_time":0,"entries":9},{"inclusive_time":16,"id":"827","highest_child_id":3151,"first_entry_time":55875,"exclusive_time":13,"entries":3,"callees":[{"inclusive_time":4,"id":"572","highest_child_id":3151,"first_entry_time":55878,"exclusive_time":2,"entries":6}],"allocations":[{"id":"10","count":3},{"id":"27","count":6}]},{"inclusive_time":1,"id":"745","highest_child_id":3152,"first_entry_time":55884,"exclusive_time":0,"entries":3},{"inclusive_time":9,"id":"828","highest_child_id":3154,"first_entry_time":55887,"exclusive_time":7,"entries":3,"callees":[{"inclusive_time":1,"id":"757","highest_child_id":3154,"first_entry_time":55889,"exclusive_time":0,"entries":3}]},{"inclusive_time":19,"id":"786","highest_child_id":3157,"first_entry_time":55892,"exclusive_time":10,"entries":3,"callees":[{"inclusive_time":8,"id":"691","highest_child_id":3157,"first_entry_time":55896,"exclusive_time":5,"entries":3,"callees":[{"inclusive_time":2,"id":"693","highest_child_id":3157,"first_entry_time":55898,"exclusive_time":2,"entries":3}],"allocations":[{"id":"692","count":3}]}],"allocations":[{"id":"172","count":3},{"id":"6","count":3},{"id":"26","count":3},{"id":"10","count":3}]},{"inclusive_time":12,"id":"711","highest_child_id":3160,"first_entry_time":55902,"exclusive_time":8,"entries":3,"callees":[{"inclusive_time":1,"id":"712","highest_child_id":3159,"first_entry_time":55905,"exclusive_time":1,"entries":2},{"inclusive_time":2,"id":"713","highest_child_id":3160,"first_entry_time":55907,"exclusive_time":1,"entries":2,"allocations":[{"id":"714","count":2}]}]},{"inclusive_time":2,"id":"829","highest_child_id":3161,"first_entry_time":55910,"exclusive_time":1,"entries":3},{"inclusive_time":45,"id":"844","highest_child_id":3165,"first_entry_time":55931,"exclusive_time":38,"entries":2,"callees":[{"inclusive_time":1,"id":"757","highest_child_id":3163,"first_entry_time":55934,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"845","highest_child_id":3164,"first_entry_time":55945,"exclusive_time":1,"entries":2},{"inclusive_time":4,"id":"846","highest_child_id":3165,"first_entry_time":55968,"exclusive_time":3,"entries":2,"allocations":[{"id":"18","count":4}]}]},{"inclusive_time":4,"id":"849","highest_child_id":3167,"first_entry_time":55986,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"757","highest_child_id":3167,"first_entry_time":55989,"exclusive_time":1,"entries":1}]},{"inclusive_time":15,"id":"759","highest_child_id":3170,"first_entry_time":55992,"exclusive_time":8,"entries":3,"callees":[{"inclusive_time":7,"id":"760","highest_child_id":3170,"first_entry_time":55995,"exclusive_time":5,"entries":3,"callees":[{"inclusive_time":1,"id":"715","highest_child_id":3170,"first_entry_time":55997,"exclusive_time":0,"entries":3}]}]},{"inclusive_time":1,"id":"830","highest_child_id":3171,"first_entry_time":56001,"exclusive_time":0,"entries":3},{"inclusive_time":9,"id":"468","highest_child_id":3173,"first_entry_time":56004,"exclusive_time":8,"entries":3,"callees":[{"inclusive_time":0,"id":"261","highest_child_id":3173,"first_entry_time":56007,"exclusive_time":0,"entries":1}],"allocations":[{"id":"10","count":3},{"id":"222","count":3},{"id":"27","count":1}]},{"inclusive_time":5,"id":"850","highest_child_id":3175,"first_entry_time":56032,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"757","highest_child_id":3175,"first_entry_time":56035,"exclusive_time":1,"entries":1}]},{"inclusive_time":2,"id":"831","highest_child_id":3176,"first_entry_time":56039,"exclusive_time":1,"entries":3},{"inclusive_time":2,"id":"832","highest_child_id":3177,"first_entry_time":56042,"exclusive_time":1,"entries":3},{"inclusive_time":3,"id":"833","highest_child_id":3178,"first_entry_time":56044,"exclusive_time":1,"entries":6},{"inclusive_time":2,"id":"569","highest_child_id":3179,"first_entry_time":56048,"exclusive_time":1,"entries":3},{"inclusive_time":2,"id":"638","highest_child_id":3180,"first_entry_time":56050,"exclusive_time":1,"entries":4},{"inclusive_time":61,"id":"834","highest_child_id":3188,"first_entry_time":56052,"exclusive_time":11,"entries":7,"callees":[{"inclusive_time":49,"id":"835","highest_child_id":3188,"first_entry_time":56055,"exclusive_time":23,"entries":7,"callees":[{"inclusive_time":11,"id":"836","highest_child_id":3184,"first_entry_time":56057,"exclusive_time":9,"entries":3,"callees":[{"inclusive_time":2,"id":"757","highest_child_id":3184,"first_entry_time":56060,"exclusive_time":1,"entries":3}]},{"inclusive_time":6,"id":"851","highest_child_id":3186,"first_entry_time":56119,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"757","highest_child_id":3186,"first_entry_time":56122,"exclusive_time":1,"entries":1}]},{"inclusive_time":8,"id":"837","highest_child_id":3188,"first_entry_time":56131,"exclusive_time":6,"entries":3,"callees":[{"inclusive_time":2,"id":"757","highest_child_id":3188,"first_entry_time":56134,"exclusive_time":1,"entries":3}]}]}],"allocations":[{"id":"10","count":7}]},{"inclusive_time":1,"id":"615","highest_child_id":3189,"first_entry_time":56065,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"472","highest_child_id":3190,"first_entry_time":56069,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"710","highest_child_id":3191,"first_entry_time":56071,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"852","highest_child_id":3192,"first_entry_time":56086,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"618","highest_child_id":3193,"first_entry_time":56094,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"748","highest_child_id":3194,"first_entry_time":56096,"exclusive_time":1,"entries":1},{"inclusive_time":27,"id":"787","highest_child_id":3201,"first_entry_time":56137,"exclusive_time":21,"entries":3,"callees":[{"inclusive_time":1,"id":"788","highest_child_id":3196,"first_entry_time":56139,"exclusive_time":0,"entries":3},{"inclusive_time":1,"id":"789","highest_child_id":3197,"first_entry_time":56141,"exclusive_time":0,"entries":3},{"inclusive_time":1,"id":"790","highest_child_id":3198,"first_entry_time":56143,"exclusive_time":0,"entries":3},{"inclusive_time":1,"id":"791","highest_child_id":3199,"first_entry_time":56145,"exclusive_time":0,"entries":3},{"inclusive_time":1,"id":"792","highest_child_id":3200,"first_entry_time":56147,"exclusive_time":0,"entries":3},{"inclusive_time":1,"id":"793","highest_child_id":3201,"first_entry_time":56149,"exclusive_time":0,"entries":3}]},{"inclusive_time":27,"id":"798","highest_child_id":3208,"first_entry_time":56152,"exclusive_time":20,"entries":3,"callees":[{"inclusive_time":1,"id":"788","highest_child_id":3203,"first_entry_time":56153,"exclusive_time":0,"entries":3},{"inclusive_time":1,"id":"789","highest_child_id":3204,"first_entry_time":56156,"exclusive_time":0,"entries":3},{"inclusive_time":1,"id":"791","highest_child_id":3205,"first_entry_time":56159,"exclusive_time":0,"entries":3},{"inclusive_time":1,"id":"799","highest_child_id":3206,"first_entry_time":56161,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"689","highest_child_id":3207,"first_entry_time":56164,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"801","highest_child_id":3208,"first_entry_time":56166,"exclusive_time":1,"entries":3}],"allocations":[{"id":"25","count":9},{"id":"222","count":3}]}],"allocations":[{"id":"6","count":3},{"id":"27","count":9},{"id":"10","count":6},{"id":"25","count":16}]},{"inclusive_time":3,"id":"838","highest_child_id":3209,"first_entry_time":56169,"exclusive_time":2,"entries":3,"allocations":[{"id":"6","count":3}]},{"inclusive_time":17,"id":"468","highest_child_id":3210,"first_entry_time":56172,"exclusive_time":16,"entries":3,"allocations":[{"id":"10","count":3},{"id":"222","count":3}]}],"allocations":[{"id":"2","count":6},{"id":"27","count":3},{"id":"10","count":3},{"id":"25","count":3}]},{"inclusive_time":3,"id":"572","highest_child_id":3211,"first_entry_time":56177,"exclusive_time":2,"entries":3},{"inclusive_time":3,"id":"716","highest_child_id":3212,"first_entry_time":56180,"exclusive_time":2,"entries":3,"allocations":[{"id":"717","count":3}]}],"allocations":[{"id":"2","count":3},{"id":"27","count":6}]}]},{"inclusive_time":1,"id":"585","highest_child_id":3213,"first_entry_time":56184,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"582","highest_child_id":3214,"first_entry_time":56186,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"586","highest_child_id":3215,"first_entry_time":56189,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"584","highest_child_id":3216,"first_entry_time":56191,"exclusive_time":1,"entries":1},{"inclusive_time":17,"id":"224","highest_child_id":3217,"first_entry_time":56194,"exclusive_time":16,"entries":2,"allocations":[{"id":"10","count":2},{"id":"6","count":2},{"id":"225","count":2}]},{"inclusive_time":3,"id":"516","highest_child_id":3218,"first_entry_time":56216,"exclusive_time":3,"entries":2,"allocations":[{"id":"10","count":2},{"id":"6","count":2},{"id":"517","count":2}]},{"inclusive_time":2,"id":"268","highest_child_id":3219,"first_entry_time":56220,"exclusive_time":1,"entries":2},{"inclusive_time":2,"id":"548","highest_child_id":3220,"first_entry_time":57006,"exclusive_time":1,"entries":3},{"inclusive_time":1,"id":"853","highest_child_id":3221,"first_entry_time":57021,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"579","highest_child_id":3222,"first_entry_time":57024,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"854","highest_child_id":3223,"first_entry_time":57385,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"855","highest_child_id":3224,"first_entry_time":57397,"exclusive_time":2,"entries":1},{"inclusive_time":1,"id":"856","highest_child_id":3225,"first_entry_time":57413,"exclusive_time":1,"entries":1}],"allocations":[{"id":"6","count":1},{"id":"27","count":4},{"id":"25","count":2}]}]}],"allocations":[{"id":"27","count":1}]}]}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":1671,"id":"857","highest_child_id":3319,"first_entry_time":57449,"exclusive_time":17,"entries":1,"callees":[{"inclusive_time":1654,"id":"858","highest_child_id":3319,"first_entry_time":57465,"exclusive_time":65,"entries":1,"callees":[{"inclusive_time":1584,"id":"859","highest_child_id":3317,"first_entry_time":57482,"exclusive_time":83,"entries":1,"callees":[{"inclusive_time":1,"id":"860","highest_child_id":3229,"first_entry_time":57491,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"861","highest_child_id":3230,"first_entry_time":57503,"exclusive_time":1,"entries":4},{"inclusive_time":350,"id":"862","highest_child_id":3250,"first_entry_time":57528,"exclusive_time":102,"entries":1,"callees":[{"inclusive_time":111,"id":"863","highest_child_id":3237,"first_entry_time":57543,"exclusive_time":17,"entries":1,"callees":[{"inclusive_time":95,"id":"864","highest_child_id":3237,"first_entry_time":57556,"exclusive_time":5,"entries":4,"callees":[{"inclusive_time":90,"id":"687","highest_child_id":3237,"first_entry_time":57558,"exclusive_time":5,"entries":4,"callees":[{"inclusive_time":85,"id":"688","highest_child_id":3237,"first_entry_time":57561,"exclusive_time":80,"entries":4,"callees":[{"inclusive_time":2,"id":"689","highest_child_id":3236,"first_entry_time":57580,"exclusive_time":1,"entries":4},{"inclusive_time":1,"id":"690","highest_child_id":3237,"first_entry_time":57650,"exclusive_time":1,"entries":2}],"allocations":[{"id":"28","count":4}]}]}]}],"allocations":[{"id":"25","count":1}]},{"inclusive_time":2,"id":"865","highest_child_id":3238,"first_entry_time":57669,"exclusive_time":2,"entries":1,"allocations":[{"id":"25","count":1}]},{"inclusive_time":129,"id":"866","highest_child_id":3247,"first_entry_time":57702,"exclusive_time":27,"entries":4,"callees":[{"inclusive_time":16,"id":"468","highest_child_id":3241,"first_entry_time":57706,"exclusive_time":14,"entries":4,"callees":[{"inclusive_time":0,"id":"261","highest_child_id":3241,"first_entry_time":57850,"exclusive_time":0,"entries":1}],"allocations":[{"id":"10","count":4},{"id":"222","count":4},{"id":"27","count":1}]},{"inclusive_time":87,"id":"727","highest_child_id":3246,"first_entry_time":57753,"exclusive_time":8,"entries":9,"callees":[{"inclusive_time":78,"id":"687","highest_child_id":3246,"first_entry_time":57755,"exclusive_time":7,"entries":9,"callees":[{"inclusive_time":69,"id":"688","highest_child_id":3246,"first_entry_time":57761,"exclusive_time":65,"entries":7,"callees":[{"inclusive_time":3,"id":"689","highest_child_id":3245,"first_entry_time":57768,"exclusive_time":1,"entries":7},{"inclusive_time":4,"id":"690","highest_child_id":3246,"first_entry_time":57771,"exclusive_time":0,"entries":13}],"allocations":[{"id":"28","count":7}]}]}]},{"inclusive_time":1,"id":"715","highest_child_id":3247,"first_entry_time":57855,"exclusive_time":0,"entries":1}],"allocations":[{"id":"26","count":8},{"id":"25","count":8}]},{"inclusive_time":3,"id":"867","highest_child_id":3248,"first_entry_time":57726,"exclusive_time":2,"entries":4,"allocations":[{"id":"28","count":2}]},{"inclusive_time":2,"id":"868","highest_child_id":3249,"first_entry_time":57737,"exclusive_time":1,"entries":4},{"inclusive_time":3,"id":"869","highest_child_id":3250,"first_entry_time":57747,"exclusive_time":2,"entries":4}],"allocations":[{"id":"25","count":1},{"id":"28","count":2}]},{"inclusive_time":1147,"id":"870","highest_child_id":3317,"first_entry_time":57919,"exclusive_time":431,"entries":1,"callees":[{"inclusive_time":1,"id":"679","highest_child_id":3252,"first_entry_time":57922,"exclusive_time":1,"entries":1},{"inclusive_time":14,"id":"864","highest_child_id":3256,"first_entry_time":57934,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":11,"id":"687","highest_child_id":3256,"first_entry_time":57936,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":9,"id":"688","highest_child_id":3256,"first_entry_time":57938,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":1,"id":"689","highest_child_id":3256,"first_entry_time":57944,"exclusive_time":1,"entries":1}],"allocations":[{"id":"28","count":1}]}]}]},{"inclusive_time":30,"id":"871","highest_child_id":3260,"first_entry_time":57965,"exclusive_time":24,"entries":1,"callees":[{"inclusive_time":3,"id":"872","highest_child_id":3258,"first_entry_time":57976,"exclusive_time":2,"entries":4,"allocations":[{"id":"28","count":3}]},{"inclusive_time":1,"id":"757","highest_child_id":3259,"first_entry_time":57980,"exclusive_time":0,"entries":4},{"inclusive_time":3,"id":"869","highest_child_id":3260,"first_entry_time":57982,"exclusive_time":2,"entries":4}],"allocations":[{"id":"25","count":1},{"id":"28","count":3}]},{"inclusive_time":213,"id":"873","highest_child_id":3279,"first_entry_time":58144,"exclusive_time":145,"entries":1,"callees":[{"inclusive_time":6,"id":"874","highest_child_id":3262,"first_entry_time":58156,"exclusive_time":3,"entries":8,"allocations":[{"id":"28","count":4}]},{"inclusive_time":43,"id":"875","highest_child_id":3267,"first_entry_time":58184,"exclusive_time":39,"entries":4,"callees":[{"inclusive_time":2,"id":"785","highest_child_id":3264,"first_entry_time":58187,"exclusive_time":0,"entries":4},{"inclusive_time":2,"id":"876","highest_child_id":3265,"first_entry_time":58197,"exclusive_time":0,"entries":4},{"inclusive_time":2,"id":"877","highest_child_id":3266,"first_entry_time":58206,"exclusive_time":0,"entries":4},{"inclusive_time":2,"id":"878","highest_child_id":3267,"first_entry_time":58215,"exclusive_time":0,"entries":4}],"allocations":[{"id":"25","count":4}]},{"inclusive_time":1,"id":"879","highest_child_id":3268,"first_entry_time":58241,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"880","highest_child_id":3269,"first_entry_time":58252,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"881","highest_child_id":3270,"first_entry_time":58271,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"882","highest_child_id":3271,"first_entry_time":58283,"exclusive_time":2,"entries":1},{"inclusive_time":10,"id":"726","highest_child_id":3272,"first_entry_time":58287,"exclusive_time":3,"entries":22},{"inclusive_time":1,"id":"883","highest_child_id":3273,"first_entry_time":58305,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"884","highest_child_id":3274,"first_entry_time":58316,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"856","highest_child_id":3275,"first_entry_time":58327,"exclusive_time":1,"entries":1},{"inclusive_time":4,"id":"846","highest_child_id":3276,"first_entry_time":58330,"exclusive_time":3,"entries":3,"allocations":[{"id":"18","count":6}]},{"inclusive_time":1,"id":"885","highest_child_id":3277,"first_entry_time":58344,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"854","highest_child_id":3278,"first_entry_time":58348,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"853","highest_child_id":3279,"first_entry_time":58354,"exclusive_time":1,"entries":1}],"allocations":[{"id":"28","count":11},{"id":"25","count":1}]},{"inclusive_time":30,"id":"886","highest_child_id":3281,"first_entry_time":58377,"exclusive_time":25,"entries":9,"callees":[{"inclusive_time":6,"id":"690","highest_child_id":3281,"first_entry_time":58951,"exclusive_time":1,"entries":14}]},{"inclusive_time":9,"id":"887","highest_child_id":3283,"first_entry_time":58393,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":2,"id":"726","highest_child_id":3283,"first_entry_time":58397,"exclusive_time":1,"entries":4}],"allocations":[{"id":"25","count":1}]},{"inclusive_time":13,"id":"888","highest_child_id":3284,"first_entry_time":58431,"exclusive_time":12,"entries":1},{"inclusive_time":366,"id":"889","highest_child_id":3306,"first_entry_time":58580,"exclusive_time":330,"entries":4,"callees":[{"inclusive_time":2,"id":"785","highest_child_id":3286,"first_entry_time":58583,"exclusive_time":1,"entries":4},{"inclusive_time":2,"id":"876","highest_child_id":3287,"first_entry_time":58585,"exclusive_time":0,"entries":4},{"inclusive_time":2,"id":"890","highest_child_id":3288,"first_entry_time":58594,"exclusive_time":1,"entries":4},{"inclusive_time":1,"id":"877","highest_child_id":3289,"first_entry_time":58597,"exclusive_time":0,"entries":4},{"inclusive_time":2,"id":"891","highest_child_id":3290,"first_entry_time":58606,"exclusive_time":1,"entries":4},{"inclusive_time":2,"id":"892","highest_child_id":3291,"first_entry_time":58615,"exclusive_time":0,"entries":4},{"inclusive_time":2,"id":"893","highest_child_id":3292,"first_entry_time":58624,"exclusive_time":1,"entries":4},{"inclusive_time":26,"id":"726","highest_child_id":3293,"first_entry_time":58627,"exclusive_time":2,"entries":73},{"inclusive_time":2,"id":"894","highest_child_id":3294,"first_entry_time":58637,"exclusive_time":1,"entries":4},{"inclusive_time":2,"id":"895","highest_child_id":3295,"first_entry_time":58650,"exclusive_time":0,"entries":4},{"inclusive_time":2,"id":"896","highest_child_id":3296,"first_entry_time":58661,"exclusive_time":0,"entries":4},{"inclusive_time":2,"id":"897","highest_child_id":3297,"first_entry_time":58671,"exclusive_time":1,"entries":4},{"inclusive_time":21,"id":"824","highest_child_id":3298,"first_entry_time":58675,"exclusive_time":3,"entries":55},{"inclusive_time":2,"id":"898","highest_child_id":3299,"first_entry_time":58683,"exclusive_time":0,"entries":4},{"inclusive_time":2,"id":"899","highest_child_id":3300,"first_entry_time":58693,"exclusive_time":0,"entries":4},{"inclusive_time":3,"id":"900","highest_child_id":3301,"first_entry_time":58704,"exclusive_time":0,"entries":8},{"inclusive_time":2,"id":"878","highest_child_id":3302,"first_entry_time":58712,"exclusive_time":1,"entries":4},{"inclusive_time":16,"id":"901","highest_child_id":3303,"first_entry_time":58739,"exclusive_time":8,"entries":26,"allocations":[{"id":"53","count":2}]},{"inclusive_time":2,"id":"846","highest_child_id":3304,"first_entry_time":58767,"exclusive_time":2,"entries":1,"allocations":[{"id":"18","count":2}]},{"inclusive_time":1,"id":"902","highest_child_id":3305,"first_entry_time":58786,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"903","highest_child_id":3306,"first_entry_time":58797,"exclusive_time":1,"entries":1}],"allocations":[{"id":"28","count":18},{"id":"25","count":12}]},{"inclusive_time":19,"id":"904","highest_child_id":3309,"first_entry_time":58970,"exclusive_time":16,"entries":1,"callees":[{"inclusive_time":2,"id":"905","highest_child_id":3308,"first_entry_time":58984,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"869","highest_child_id":3309,"first_entry_time":58988,"exclusive_time":1,"entries":1}]},{"inclusive_time":13,"id":"906","highest_child_id":3312,"first_entry_time":59005,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":1,"id":"907","highest_child_id":3311,"first_entry_time":59014,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"869","highest_child_id":3312,"first_entry_time":59016,"exclusive_time":2,"entries":1}]},{"inclusive_time":4,"id":"908","highest_child_id":3314,"first_entry_time":59034,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"881","highest_child_id":3314,"first_entry_time":59037,"exclusive_time":1,"entries":1}]},{"inclusive_time":1,"id":"869","highest_child_id":3315,"first_entry_time":59041,"exclusive_time":1,"entries":1},{"inclusive_time":4,"id":"909","highest_child_id":3317,"first_entry_time":59056,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"869","highest_child_id":3317,"first_entry_time":59058,"exclusive_time":1,"entries":1}]}],"allocations":[{"id":"27","count":1},{"id":"25","count":1}]}],"allocations":[{"id":"25","count":1}]},{"inclusive_time":1,"id":"910","highest_child_id":3318,"first_entry_time":59074,"exclusive_time":1,"entries":1},{"inclusive_time":3,"id":"911","highest_child_id":3319,"first_entry_time":59115,"exclusive_time":3,"entries":1}]}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":3,"id":"912","highest_child_id":3320,"first_entry_time":59139,"exclusive_time":3,"entries":1,"allocations":[{"id":"6","count":1}]}]}]}]},{"inclusive_time":1,"id":"913","highest_child_id":3321,"first_entry_time":59157,"exclusive_time":1,"entries":1}],"allocations":[{"id":"6","count":2},{"id":"27","count":1},{"id":"10","count":1},{"id":"25","count":1}]},{"inclusive_time":2,"id":"914","highest_child_id":3322,"first_entry_time":59171,"exclusive_time":2,"entries":1,"allocations":[{"id":"915","count":1}]},{"inclusive_time":940,"id":"916","highest_child_id":3378,"first_entry_time":59189,"exclusive_time":28,"entries":1,"callees":[{"inclusive_time":912,"id":"917","highest_child_id":3378,"first_entry_time":59217,"exclusive_time":28,"entries":1,"callees":[{"inclusive_time":838,"id":"918","highest_child_id":3367,"first_entry_time":59241,"exclusive_time":41,"entries":1,"callees":[{"inclusive_time":17,"id":"9","highest_child_id":3327,"first_entry_time":59251,"exclusive_time":15,"entries":1,"callees":[{"inclusive_time":2,"id":"20","highest_child_id":3327,"first_entry_time":59265,"exclusive_time":2,"entries":1,"allocations":[{"id":"21","count":1}]}],"allocations":[{"id":"2","count":2},{"id":"10","count":2},{"id":"6","count":1}]},{"inclusive_time":779,"id":"919","highest_child_id":3367,"first_entry_time":59299,"exclusive_time":120,"entries":1,"callees":[{"inclusive_time":10,"id":"52","highest_child_id":3329,"first_entry_time":59308,"exclusive_time":9,"entries":1,"allocations":[{"id":"53","count":1}]},{"inclusive_time":151,"id":"920","highest_child_id":3339,"first_entry_time":59339,"exclusive_time":32,"entries":1,"callees":[{"inclusive_time":1,"id":"46","highest_child_id":3331,"first_entry_time":59342,"exclusive_time":0,"entries":1,"allocations":[{"id":"47","count":1}]},{"inclusive_time":114,"id":"9","highest_child_id":3338,"first_entry_time":59347,"exclusive_time":20,"entries":1,"callees":[{"inclusive_time":89,"id":"24","highest_child_id":3337,"first_entry_time":59351,"exclusive_time":69,"entries":1,"callees":[{"inclusive_time":1,"id":"29","highest_child_id":3334,"first_entry_time":59365,"exclusive_time":0,"entries":3},{"inclusive_time":1,"id":"30","highest_child_id":3335,"first_entry_time":59368,"exclusive_time":0,"entries":3},{"inclusive_time":2,"id":"17","highest_child_id":3336,"first_entry_time":59372,"exclusive_time":1,"entries":3,"allocations":[{"id":"18","count":3}]},{"inclusive_time":17,"id":"34","highest_child_id":3337,"first_entry_time":59405,"exclusive_time":15,"entries":6}],"allocations":[{"id":"10","count":17},{"id":"25","count":4},{"id":"6","count":6},{"id":"26","count":6},{"id":"28","count":3}]},{"inclusive_time":5,"id":"20","highest_child_id":3338,"first_entry_time":59455,"exclusive_time":5,"entries":1,"allocations":[{"id":"21","count":1}]}],"allocations":[{"id":"2","count":2},{"id":"10","count":2},{"id":"6","count":1}]},{"inclusive_time":2,"id":"921","highest_child_id":3339,"first_entry_time":59487,"exclusive_time":2,"entries":1,"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"3","count":1},{"id":"8","count":3}]},{"inclusive_time":2,"id":"922","highest_child_id":3340,"first_entry_time":59554,"exclusive_time":2,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":493,"id":"923","highest_child_id":3365,"first_entry_time":59578,"exclusive_time":41,"entries":1,"callees":[{"inclusive_time":1,"id":"46","highest_child_id":3342,"first_entry_time":59581,"exclusive_time":1,"entries":1,"allocations":[{"id":"47","count":1}]},{"inclusive_time":218,"id":"9","highest_child_id":3349,"first_entry_time":59587,"exclusive_time":21,"entries":1,"callees":[{"inclusive_time":194,"id":"24","highest_child_id":3348,"first_entry_time":59590,"exclusive_time":150,"entries":1,"callees":[{"inclusive_time":2,"id":"29","highest_child_id":3345,"first_entry_time":59600,"exclusive_time":0,"entries":8},{"inclusive_time":3,"id":"30","highest_child_id":3346,"first_entry_time":59601,"exclusive_time":1,"entries":8},{"inclusive_time":4,"id":"17","highest_child_id":3347,"first_entry_time":59604,"exclusive_time":2,"entries":8,"allocations":[{"id":"18","count":8}]},{"inclusive_time":46,"id":"34","highest_child_id":3348,"first_entry_time":59685,"exclusive_time":40,"entries":20}],"allocations":[{"id":"10","count":27},{"id":"25","count":6},{"id":"6","count":10},{"id":"26","count":10},{"id":"28","count":6}]},{"inclusive_time":2,"id":"20","highest_child_id":3349,"first_entry_time":59802,"exclusive_time":1,"entries":1,"allocations":[{"id":"21","count":1}]}],"allocations":[{"id":"2","count":2},{"id":"10","count":2},{"id":"6","count":1}]},{"inclusive_time":233,"id":"924","highest_child_id":3365,"first_entry_time":59838,"exclusive_time":139,"entries":1,"callees":[{"inclusive_time":38,"id":"925","highest_child_id":3363,"first_entry_time":59869,"exclusive_time":16,"entries":1,"callees":[{"inclusive_time":2,"id":"67","highest_child_id":3352,"first_entry_time":59877,"exclusive_time":2,"entries":1},{"jit_entries":2,"inclusive_time":0,"id":"68","highest_child_id":3353,"first_entry_time":59883,"exclusive_time":0,"entries":2},{"inclusive_time":19,"id":"69","highest_child_id":3363,"first_entry_time":59886,"exclusive_time":14,"entries":1,"callees":[{"inclusive_time":0,"id":"70","highest_child_id":3355,"first_entry_time":59888,"exclusive_time":0,"entries":2},{"inclusive_time":0,"id":"30","highest_child_id":3356,"first_entry_time":59890,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"71","highest_child_id":3357,"first_entry_time":59892,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"72","highest_child_id":3359,"first_entry_time":59894,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"73","highest_child_id":3359,"first_entry_time":59895,"exclusive_time":0,"entries":1}]},{"inclusive_time":1,"id":"74","highest_child_id":3361,"first_entry_time":59898,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"73","highest_child_id":3361,"first_entry_time":59899,"exclusive_time":0,"entries":1}]},{"inclusive_time":0,"id":"123","highest_child_id":3362,"first_entry_time":59901,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"75","highest_child_id":3363,"first_entry_time":59903,"exclusive_time":0,"entries":1}]}],"allocations":[{"id":"6","count":1},{"id":"926","count":1}]},{"inclusive_time":53,"id":"927","highest_child_id":3364,"first_entry_time":59924,"exclusive_time":53,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":1,"id":"128","highest_child_id":3365,"first_entry_time":60069,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"57","count":1},{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"8","count":3}]},{"inclusive_time":2,"id":"67","highest_child_id":3366,"first_entry_time":60074,"exclusive_time":2,"entries":1},{"jit_entries":1,"inclusive_time":0,"id":"68","highest_child_id":3367,"first_entry_time":60078,"exclusive_time":0,"entries":1}],"allocations":[{"id":"16","count":1},{"id":"53","count":1}]}],"allocations":[{"id":"8","count":3}]},{"inclusive_time":1,"id":"128","highest_child_id":3368,"first_entry_time":60081,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":44,"id":"919","highest_child_id":3378,"first_entry_time":60085,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":9,"id":"52","highest_child_id":3370,"first_entry_time":60089,"exclusive_time":9,"entries":1,"allocations":[{"id":"53","count":1}]},{"inclusive_time":1,"id":"921","highest_child_id":3371,"first_entry_time":60100,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":5,"id":"922","highest_child_id":3372,"first_entry_time":60103,"exclusive_time":5,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":16,"id":"924","highest_child_id":3377,"first_entry_time":60112,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":6,"id":"925","highest_child_id":3375,"first_entry_time":60116,"exclusive_time":6,"entries":1,"callees":[{"jit_entries":2,"inclusive_time":0,"id":"68","highest_child_id":3375,"first_entry_time":60120,"exclusive_time":0,"entries":2}],"allocations":[{"id":"6","count":1},{"id":"926","count":1}]},{"inclusive_time":2,"id":"927","highest_child_id":3376,"first_entry_time":60123,"exclusive_time":2,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":0,"id":"128","highest_child_id":3377,"first_entry_time":60127,"exclusive_time":0,"entries":1,"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"57","count":1},{"id":"6","count":1}]},{"jit_entries":1,"inclusive_time":0,"id":"68","highest_child_id":3378,"first_entry_time":60129,"exclusive_time":0,"entries":1}],"allocations":[{"id":"16","count":1},{"id":"53","count":1}]}]}],"allocations":[{"id":"2","count":1},{"id":"3","count":1}]},{"inclusive_time":2,"id":"67","highest_child_id":3379,"first_entry_time":60131,"exclusive_time":1,"entries":1},{"jit_entries":1,"inclusive_time":0,"id":"68","highest_child_id":3380,"first_entry_time":60135,"exclusive_time":0,"entries":1}],"allocations":[{"id":"2","count":3},{"id":"16","count":5},{"id":"6","count":1},{"id":"7","count":1},{"id":"8","count":1}]},{"inclusive_time":1,"id":"67","highest_child_id":3381,"first_entry_time":60137,"exclusive_time":1,"entries":1},{"jit_entries":1,"inclusive_time":0,"id":"68","highest_child_id":3382,"first_entry_time":60140,"exclusive_time":0,"entries":1}],"allocations":[{"id":"16","count":3}]}],"allocations":[{"id":"6","count":1},{"id":"7","count":1},{"id":"8","count":3}]},{"inclusive_time":193,"id":"918","highest_child_id":3406,"first_entry_time":60142,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":15,"id":"9","highest_child_id":3385,"first_entry_time":60146,"exclusive_time":13,"entries":1,"callees":[{"inclusive_time":2,"id":"20","highest_child_id":3385,"first_entry_time":60158,"exclusive_time":1,"entries":1}],"allocations":[{"id":"2","count":2},{"id":"10","count":2},{"id":"6","count":1}]},{"inclusive_time":171,"id":"919","highest_child_id":3406,"first_entry_time":60163,"exclusive_time":35,"entries":1,"callees":[{"inclusive_time":6,"id":"52","highest_child_id":3387,"first_entry_time":60167,"exclusive_time":6,"entries":1,"allocations":[{"id":"53","count":1}]},{"inclusive_time":112,"id":"928","highest_child_id":3399,"first_entry_time":60200,"exclusive_time":34,"entries":1,"callees":[{"inclusive_time":1,"id":"46","highest_child_id":3389,"first_entry_time":60203,"exclusive_time":0,"entries":1,"allocations":[{"id":"47","count":1}]},{"inclusive_time":66,"id":"9","highest_child_id":3396,"first_entry_time":60212,"exclusive_time":15,"entries":1,"callees":[{"inclusive_time":49,"id":"24","highest_child_id":3395,"first_entry_time":60215,"exclusive_time":39,"entries":1,"callees":[{"inclusive_time":1,"id":"121","highest_child_id":3392,"first_entry_time":60224,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"30","highest_child_id":3393,"first_entry_time":60226,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"17","highest_child_id":3394,"first_entry_time":60229,"exclusive_time":1,"entries":2,"allocations":[{"id":"18","count":2}]},{"inclusive_time":8,"id":"34","highest_child_id":3395,"first_entry_time":60250,"exclusive_time":7,"entries":2}],"allocations":[{"id":"10","count":12},{"id":"25","count":3},{"id":"6","count":4},{"id":"26","count":4},{"id":"28","count":2}]},{"inclusive_time":1,"id":"20","highest_child_id":3396,"first_entry_time":60275,"exclusive_time":1,"entries":1,"allocations":[{"id":"21","count":1}]}],"allocations":[{"id":"2","count":2},{"id":"10","count":2},{"id":"6","count":1}]},{"inclusive_time":12,"id":"929","highest_child_id":3399,"first_entry_time":60300,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":2,"id":"67","highest_child_id":3398,"first_entry_time":60308,"exclusive_time":1,"entries":1},{"jit_entries":1,"inclusive_time":0,"id":"68","highest_child_id":3399,"first_entry_time":60312,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1},{"id":"16","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"3","count":1},{"id":"8","count":3}]},{"inclusive_time":1,"id":"922","highest_child_id":3400,"first_entry_time":60314,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":15,"id":"924","highest_child_id":3405,"first_entry_time":60318,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":6,"id":"925","highest_child_id":3403,"first_entry_time":60322,"exclusive_time":5,"entries":1,"callees":[{"jit_entries":2,"inclusive_time":0,"id":"68","highest_child_id":3403,"first_entry_time":60327,"exclusive_time":0,"entries":2}],"allocations":[{"id":"6","count":1},{"id":"926","count":1}]},{"inclusive_time":2,"id":"927","highest_child_id":3404,"first_entry_time":60329,"exclusive_time":2,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":0,"id":"128","highest_child_id":3405,"first_entry_time":60333,"exclusive_time":0,"entries":1,"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"57","count":1},{"id":"6","count":1}]},{"jit_entries":1,"inclusive_time":0,"id":"68","highest_child_id":3406,"first_entry_time":60334,"exclusive_time":0,"entries":1}],"allocations":[{"id":"16","count":1},{"id":"53","count":1}]}],"allocations":[{"id":"8","count":3}]},{"inclusive_time":0,"id":"128","highest_child_id":3407,"first_entry_time":60337,"exclusive_time":0,"entries":1,"allocations":[{"id":"6","count":1}]}]}],"allocations":[{"id":"2","count":1},{"id":"3","count":1}]}]}}]');
// grab the "dictionary" from the very first entry
var id_to_things = rawData[0];
// the rest of the program expects the list to contain callframes, not the dictionary
// so we just shift it off the beginning.
rawData.shift();
// Extract some common things out of the raw data.
var nodeIdToName = {};
var nodeIdToFile = {};
var nodeIdToLine = {};
(function () {
function walkCallGraphNode(node) {
if (!nodeIdToName[node.id]) {
var existing_data = id_to_things[node.id.toString()];
node.name = existing_data.name;
node.line = existing_data.line;
node.file = existing_data.file;
nodeIdToName[node.id] = node.name == "" ? "<anon>" : node.name;
nodeIdToLine[node.id] = node.line < 1 ? "<unknown>" : node.line;
nodeIdToFile[node.id] = node.file == "" ? "<unknown>" : node.file;
}
if (node.callees)
node.callees.map(walkCallGraphNode);
}
rawData.forEach(function (thread) {
if (typeof thread.call_graph != "undefined")
walkCallGraphNode(thread.call_graph);
});
}());
var maxSeqNum = 0;
var gcParticipants = [];
var gcTimings = [];
(function() {
rawData.forEach(function (data, index) {
gcs = data.gcs;
if (gcs.length == 0)
return;
let seq = gcs[gcs.length - 1].sequence;
if (seq > maxSeqNum)
maxSeqNum = seq;
gcs.forEach(function (data) {
if (typeof gcParticipants[data.sequence] == "undefined")
gcParticipants[data.sequence] = [];
if (typeof gcTimings[data.sequence] == "undefined")
gcTimings[data.sequence] = { start: Infinity, end: -Infinity, full: 0 };
gcParticipants[data.sequence].push(index);
if (data.start_time < gcTimings[data.sequence].start)
gcTimings[data.sequence].start = data.start_time;
if (data.start_time + data.time > gcTimings[data.sequence].end)
gcTimings[data.sequence].end = data.start_time + data.time;
gcTimings[data.sequence].full = data.full;
});
});
gcTimings.forEach(function (data) {
data.total = data.end - data.start;
});
}());
// Register application and add controllers, increase recursion depth for callGraphController
var moarProfApp = angular.module('moarProfApp', ['ui.bootstrap']).config(function($rootScopeProvider) {
$rootScopeProvider.digestTtl(100);
});
moarProfApp.controller('NavigationController', function ($scope) {
$scope.Tab = 'Overview';
});
moarProfApp.controller('OverviewController', function ($scope) {
/* It's okay to take only the first thread's data here:
* - the total time of the main thread should be the maximum
* anyway, since all other threads are spawned from it.
* - Spesh time is stashed in the main thread's profile data,
* even though it's actually spent in another thread.
*/
var totalTime = rawData[0].total_time;
var speshTime = rawData[0].spesh_time;
var gcTime = 0;
var gcNursery = 0;
var gcFull = 0;
var gcNurseryTime = 0;
var gcFullTime = 0;
var totalEntries = 0;
var inlineEntries = 0;
var jitEntries = 0;
var speshEntries = 0;
var replacements = 0;
var allocations = 0;
var deoptOnes = 0;
var deoptAlls = 0;
var osrs = 0;
var numThreads = rawData.length;
var averageParticipants = 0;
gcParticipants.forEach(function (run) {
averageParticipants += run.length;
});
averageParticipants = averageParticipants / gcParticipants.length;
gcTimings.map(function (gc) {
gcTime += gc.total;
if (gc.full) {
gcFull++;
gcFullTime += gc.total;
}
else {
gcNursery++;
gcNurseryTime += gc.total;
}
});
function walkCallGraphNode(node) {
totalEntries += node.entries || 0;
inlineEntries += node.inlined_entries || 0;
speshEntries += node.spesh_entries || 0;
jitEntries += node.jit_entries || 0;
deoptOnes += node.deopt_one || 0;
deoptAlls += node.deopt_all || 0;
osrs += node.osr || 0;
if (node.allocations) {
node.allocations.map(function (alloc) {
if (alloc.count)
allocations += alloc.count;
if (alloc.replaced)
replacements += alloc.replaced;
});
}
if (node.callees)
node.callees.map(walkCallGraphNode);
}
rawData.forEach(function (thread) {
if (typeof thread.call_graph != "undefined")
walkCallGraphNode(thread.call_graph);
});
$scope.NumThreads = numThreads;
// Time spent
var overheadTime = gcTime;
var executingTime = totalTime - overheadTime;
$scope.TotalTime = +(totalTime / 1000).toFixed(2);
$scope.GCOverheadTime = +(overheadTime / 1000).toFixed(2);
$scope.GCOverheadTimePercent = +(100 * overheadTime / totalTime).toFixed(2);
$scope.ExecutingTime = +(executingTime / 1000).toFixed(2);
$scope.ExecutingTimePercent = +(100 * executingTime / totalTime).toFixed(2);
$scope.GCTime = +(gcTime / 1000).toFixed(2);
$scope.GCTimePercent = +(100 * gcTime / totalTime).toFixed(2);
$scope.SpeshTime = +(speshTime / 1000).toFixed(2);
$scope.SpeshTimePercent = +(100 * speshTime / totalTime).toFixed(2);
// Routines
var interpEntries = totalEntries - (jitEntries + speshEntries);
$scope.EntriesWithoutInline = totalEntries - inlineEntries;
$scope.EntriesInline = inlineEntries;
$scope.InlinePercent = +(100 * inlineEntries / totalEntries).toFixed(2);
$scope.InterpFrames = interpEntries;
$scope.InterpFramesPercent = +(100 * interpEntries / totalEntries).toFixed(2);
$scope.SpeshFrames = speshEntries;
$scope.SpeshFramesPercent = +(100 * speshEntries / totalEntries).toFixed(2);
$scope.JITFrames = jitEntries;
$scope.JITFramesPercent = +(100 * jitEntries / totalEntries).toFixed(2);
// Garbage collection
$scope.GCRuns = gcNursery + gcFull;
$scope.FullGCRuns = gcFull;
$scope.NurseryAverage = +((gcNurseryTime / 1000) / gcNursery).toFixed(2);
$scope.FullAverage = +((gcFullTime / 1000) / gcFull).toFixed(2);
$scope.AverageParticipants = averageParticipants.toFixed(2);
$scope.ScalarReplacements = replacements;
$scope.ScalarReplacementPercent = allocations + replacements > 0
? +(100 * replacements / (allocations + replacements)).toFixed(2)
: 0;
// Dynamic optimization
var optimizedFrames = speshEntries + jitEntries;
$scope.OptimizedFrames = optimizedFrames;
$scope.DeoptOnes = deoptOnes;
$scope.DeoptOnePercent = +(100 * deoptOnes / (optimizedFrames || 1)).toFixed(2);
$scope.DeoptAlls = deoptAlls;
$scope.OSRs = osrs;
});
moarProfApp.controller('RoutinesController', function ($scope) {
// Walk call graph to build data.
var idToEntries = {};
var idToSpeshEntries = {};
var idToJITEntries = {};
var idToExclusive = {};
var idToInclusive = {};
var idToOSR = {};
var idRecDepth = {};
var totalExclusive = 0;
var totalInclusive = rawData[0].call_graph.inclusive_time;
function walkCallGraphNode(node) {
if (!idToEntries[node.id]) {
idToEntries[node.id] = 0;
idToSpeshEntries[node.id] = 0;
idToJITEntries[node.id] = 0;
idToExclusive[node.id] = 0;
idToInclusive[node.id] = 0;
idToOSR[node.id] = false;
idRecDepth[node.id] = 0;
}
idToEntries[node.id] += node.entries || 0;
idToSpeshEntries[node.id] += node.spesh_entries || 0;
idToJITEntries[node.id] += node.jit_entries || 0;
idToExclusive[node.id] += node.exclusive_time || 0;
totalExclusive += node.exclusive_time || 0;
if (node.osr > 0)
idToOSR[node.id] = true;
if (idRecDepth[node.id] == 0)
idToInclusive[node.id] += node.inclusive_time;
if (node.callees) {
idRecDepth[node.id]++;
node.callees.map(walkCallGraphNode);
idRecDepth[node.id]--;
}
}
rawData.forEach(function (thread) {
if (typeof thread.call_graph != "undefined")
walkCallGraphNode(thread.call_graph);
});
// Build object list per routine.
var routineList = [];
for (id in idToEntries) {
var speshEntriesPercent = +(100 * idToSpeshEntries[id] / idToEntries[id]).toFixed(2);
var jitEntriesPercent = +(100 * idToJITEntries[id] / idToEntries[id]).toFixed(2);
var interpEntriesPercent = 100 - (speshEntriesPercent + jitEntriesPercent);
var entry = {
Name: nodeIdToName[id],
Line: nodeIdToLine[id],
File: nodeIdToFile[id],
Entries: idToEntries[id],
InterpEntriesPercent: interpEntriesPercent,
SpeshEntriesPercent: speshEntriesPercent,
JITEntriesPercent: jitEntriesPercent,
InclusiveTime: +(idToInclusive[id] / 1000).toFixed(2),
InclusiveTimePercent: +(100 * idToInclusive[id] / totalInclusive).toFixed(2),
ExclusiveTime: +(idToExclusive[id] / 1000).toFixed(2),
ExclusiveTimePercent: +(100 * idToExclusive[id] / totalExclusive).toFixed(2),
OSR: idToOSR[id]
};
routineList.push(entry);
}
$scope.Routines = routineList;
$scope.predicate = "InclusiveTime";
$scope.reverse = true;
});
moarProfApp.controller('CallGraphController', function ($scope) {
$scope.Current = rawData[0].call_graph;
$scope.total_time = rawData[0].total_time;
$scope.SuchCallers = false;
$scope.RecentCallers = [];
$scope.predicate = "Time";
$scope.reverse = true;
var all_callers = [];
updateCurrentData();
$scope.toCallee = function (callee) {
// Update caller history.
all_callers.push($scope.Current);
$scope.RecentCallers.push($scope.Current);
if ($scope.RecentCallers.length > 5)
$scope.RecentCallers.shift();
// Update current node and callees.
$scope.Current = callee;
updateCurrentData();
};
$scope.toCaller = function (caller) {
// Update caller history.
while (all_callers.length > 0) {
var removed = all_callers.pop();
if ($scope.RecentCallers.length > 0)
$scope.RecentCallers.pop();
if (removed == caller)
break;
}
if (all_callers.length > $scope.RecentCallers.length) {
var ptr = all_callers.length - $scope.RecentCallers.length;
while (ptr >= 0 && $scope.RecentCallers.length < 5) {
$scope.RecentCallers.unshift(all_callers[ptr]);
ptr--;
}
}
// Update current node and callees.
$scope.Current = caller;
updateCurrentData();
}
/*
* Given a callee, create a unique, repeatable color;
* h/t https://stackoverflow.com/questions/3426404
*/
$scope.backgroundColor = function (callee) {
var str = callee.$$hashKey + callee.file + callee.name;
for (var i = 0, hash = 0; i < str.length; hash = str.charCodeAt(i++) + ((hash << 5) - hash));
for (var i = 0, colour = "#"; i < 3; colour += ("00" + ((hash >> i++ * 8) & 0xFF).toString(16)).slice(-2));
return colour;
}
function updateCurrentData() {
// Line and file.
var current = $scope.Current;
$scope.Line = current.line;
$scope.File = current.file;
// Entry statistics.
var interpEntries = current.entries - (current.spesh_entries + current.jit_entries);
var nonInlineEntries = current.entries - current.inlined_entries;
$scope.Entries = nonInlineEntries;
$scope.Percent = (100 * nonInlineEntries / current.entries).toFixed(2);
$scope.InlineEntries = current.inlined_entries;
$scope.InlinePercent = (100 * current.inlined_entries / current.entries).toFixed(2);
$scope.InterpEntries = interpEntries;
$scope.InterpPercent = (100 * interpEntries / current.entries).toFixed(2);
$scope.SpeshEntries = current.spesh_entries;
$scope.SpeshPercent = (100 * current.spesh_entries / current.entries).toFixed(2);
$scope.JITEntries = current.jit_entries;
$scope.JITPercent = (100 * current.jit_entries / current.entries).toFixed(2);
// Callees.
$scope.Callees = calleesOf(current);
}
function calleesOf(node) {
if (!node.callees)
return [];
var totalExclusive = 0.0;
node.callees.map(function (c) { totalExclusive += c.exclusive_time; });
return node.callees.map(function (c) {
var speshCallsPercent = +(100 * c.spesh_entries / c.entries).toFixed(2);
var jitCallsPercent = +(100 * c.jit_entries / c.entries).toFixed(2);
var interpCallsPercent = 100 - (speshCallsPercent + jitCallsPercent);
var inlinedPercent = +(100 * c.inlined_entries / c.entries).toFixed(2);
return {
Name: nodeIdToName[c.id],
Line: nodeIdToLine[c.id],
File: nodeIdToFile[c.id],
Calls: c.entries,
Time: +(c.inclusive_time / 1000).toFixed(2),
TimePercent: +(100 * c.inclusive_time / node.inclusive_time).toFixed(2),
InterpCallsPercent: interpCallsPercent,
SpeshCallsPercent: speshCallsPercent,
JITCallsPercent: jitCallsPercent,
InlinedPercent: inlinedPercent,
VeryInline: inlinedPercent >= 95,
SometimesInline: inlinedPercent < 95 && inlinedPercent > 10,
Node: c
};
});
}
});
moarProfApp.controller('AllocationsController', function ($scope, $uibModal) {
// Traverse all call nodes, counting up the allocations.
var typeIdToName = {};
var typeIdToAllocations = {};
var typeIdToAllocationsByType = {};
var typeIdToRoutineStats = {};
var maxAllocations = 1;
function walkCallGraphNode(node) {
if (node.allocations) {
node.allocations.map(function (alloc) {
alloc.type = id_to_things[alloc.id];
if (!typeIdToName[alloc.id]) {
typeIdToName[alloc.id] = alloc.type == "" ? "<anon>" : alloc.type;
typeIdToAllocations[alloc.id] = 0;
typeIdToAllocationsByType[alloc.id] = [0, 0, 0];
typeIdToRoutineStats[alloc.id] = {};
}
typeIdToAllocations[alloc.id] += alloc.count;
typeIdToAllocationsByType[alloc.id][0] += alloc.count - (alloc.spesh || 0) - (alloc.jit || 0);
typeIdToAllocationsByType[alloc.id][1] += alloc.spesh || 0;
typeIdToAllocationsByType[alloc.id][2] += alloc.jit || 0;
if (typeIdToAllocations[alloc.id] > maxAllocations)
maxAllocations = typeIdToAllocations[alloc.id];
if (typeIdToRoutineStats[alloc.id][node.id]) {
typeIdToRoutineStats[alloc.id][node.id]['count'] += alloc.count || 0;
typeIdToRoutineStats[alloc.id][node.id]['spesh'] += alloc.spesh || 0;
typeIdToRoutineStats[alloc.id][node.id]['jit'] += alloc.jit || 0;
} else {
typeIdToRoutineStats[alloc.id][node.id] = {
count: alloc.count || 0,
spesh: alloc.spesh || 0,
jit: alloc.jit || 0
};
}
});
}
if (node.callees) {
node.callees.map(walkCallGraphNode);
}
}
rawData.forEach(function (thread) {
if (typeof thread.call_graph != "undefined")
walkCallGraphNode(thread.call_graph);
});
// Build allocation summary.
var allocationSummary = [];
for (id in typeIdToName) {
var maxAllocationByRoutine = 1;
for (var rid in typeIdToRoutineStats[id])
if (typeIdToRoutineStats[id][rid]['count'] > maxAllocationByRoutine)
maxAllocationByRoutine = typeIdToRoutineStats[id][rid]['count'];
var routineStats = [];
for (var rid in typeIdToRoutineStats[id])
routineStats.push({
Name: nodeIdToName[rid],
Line: nodeIdToLine[rid],
File: nodeIdToFile[rid],
Allocations: typeIdToRoutineStats[id][rid]['count'],
AllocationsSpesh: typeIdToRoutineStats[id][rid]['spesh'],
AllocationsJit: typeIdToRoutineStats[id][rid]['jit'],
AllocationsPercent: (100 * typeIdToRoutineStats[id][rid]['count'] / maxAllocationByRoutine),
AllocationsInterpPercent: (100 * (typeIdToRoutineStats[id][rid]['count'] - typeIdToRoutineStats[id][rid]['jit'] - typeIdToRoutineStats[id][rid]['spesh']) / maxAllocationByRoutine),
AllocationsSpeshPercent: (100 * typeIdToRoutineStats[id][rid]['spesh'] / maxAllocationByRoutine),
AllocationsJitPercent: (100 * typeIdToRoutineStats[id][rid]['jit'] / maxAllocationByRoutine)
});
var entry = {
Name: typeIdToName[id],
Allocations: typeIdToAllocations[id],
AllocationsPercent: +(100 * typeIdToAllocations[id] / maxAllocations).toFixed(2),
AllocationsInterpPercent: +(100 * typeIdToAllocationsByType[id][0] / maxAllocations).toFixed(2),
AllocationsSpeshPercent: +(100 * typeIdToAllocationsByType[id][1] / maxAllocations).toFixed(2),
AllocationsJitPercent: +(100 * typeIdToAllocationsByType[id][2] / maxAllocations).toFixed(2),
RoutineStats: routineStats
};
allocationSummary.push(entry);
}
$scope.AllocationSummary = allocationSummary;
$scope.predicate = "Allocations";
$scope.reverse = true;
$scope.routinePredicate = "Allocations";
$scope.routineReverse = true;
// Allocating routines handlng.
$scope.modalInstance = null;
$scope.showAllocatingRoutines = function (alloc) {
// Show modal dialog with data.
$scope.CurrentAllocatingRoutine = alloc.Name;
$scope.CurrentAllocatingRoutineStats = alloc.RoutineStats;
$scope.modalInstance = $uibModal.open({
templateUrl: 'myModalContent.html',
scope: $scope
});
}
});
moarProfApp.controller('GCController', function ($scope) {
// Find longest GC run.
var longestGC = 0;
gcTimings.map(function (timing) {
if (timing.total > longestGC)
longestGC = timing.total;
});
// Produce something nice to render.
var run = 0;
$scope.GCs = rawData[0].gcs.map(function (gc) {
var totalBytes = gc.cleared_bytes + gc.retained_bytes + gc.promoted_bytes;
return {
Run: ++run,
StartTime: +(gc.start_time / 1000).toFixed(2),
Time: +(gc.time / 1000).toFixed(2),
Full: (gc.full != 0),
TimePercent: +(100 * gc.time / longestGC).toFixed(2),
RetainedKilobytes: Math.round(gc.retained_bytes / 1024),
PromotedKilobytes: Math.round(gc.promoted_bytes / 1024),
ClearedKilobytes: Math.round(gc.cleared_bytes / 1024),
RetainedPercent: +(100 * gc.retained_bytes / totalBytes).toFixed(2),
PromotedPercent: +(100 * gc.promoted_bytes / totalBytes).toFixed(2),
ClearedPercent: +(100 * gc.cleared_bytes / totalBytes).toFixed(2),
Gen2Roots: 'gen2_roots' in gc ? gc.gen2_roots : 0
};
});
$scope.predicate = 'Run';
$scope.reverse = false;
});
moarProfApp.controller('OSRDeoptController', function ($scope) {
// Walk call graph to build data.
var idToOSR = {};
var idToDeoptOne = {};
var idToDeoptAll = {};
var maxOSR = 1;
var maxDeoptOne = 1;
var maxDeoptAll = 1;
function walkCallGraphNode(node) {
if (!idToOSR[node.id]) {
idToOSR[node.id] = 0;
idToDeoptOne[node.id] = 0;
idToDeoptAll[node.id] = 0;
}
idToOSR[node.id] += node.osr || 0;
idToDeoptOne[node.id] += node.deopt_one || 0;
idToDeoptAll[node.id] += node.deopt_all || 0;
if (idToOSR[node.id] > maxOSR)
maxOSR = idToOSR[node.id];
if (idToDeoptOne[node.id] > maxDeoptOne)
maxDeoptOne = idToDeoptOne[node.id];
if (idToDeoptAll[node.id] > maxDeoptAll)
maxDeoptAll = idToDeoptAll[node.id];
if (node.callees)
node.callees.map(walkCallGraphNode);
}
walkCallGraphNode(rawData[0].call_graph);
// Build up OSR, deopt one, and deopt all tables.
var osrs = [];
var deoptOnes = [];
var deoptAlls = [];
for (id in idToOSR) {
if (idToOSR[id] > 0) {
osrs.push({
Name: nodeIdToName[id],
Line: nodeIdToLine[id],
File: nodeIdToFile[id],
Count: idToOSR[id],
Percent: Math.round(100 * idToOSR[id] / maxOSR)
});
}
if (idToDeoptOne[id] > 0) {
deoptOnes.push({
Name: nodeIdToName[id],
Line: nodeIdToLine[id],
File: nodeIdToFile[id],
Count: idToDeoptOne[id],
Percent: Math.round(100 * idToDeoptOne[id] / maxDeoptOne)
});
}
if (idToDeoptAll[id] > 0) {
deoptAlls.push({
Name: nodeIdToName[id],
Line: nodeIdToLine[id],
File: nodeIdToFile[id],
Count: idToDeoptAll[id],
Percent: Math.round(100 * idToDeoptAll[id] / maxDeoptAll)
});
}
}
$scope.OSRs = osrs;
$scope.DeoptOnes = deoptOnes;
$scope.DeoptAlls = deoptAlls;
$scope.predicate = 'Count';
$scope.reverse = true;
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment