Skip to content

Instantly share code, notes, and snippets.

@melezhik
Created November 24, 2020 20:45
Show Gist options
  • Save melezhik/1bb06123ed9b47c1a08b1abc541904f3 to your computer and use it in GitHub Desktop.
Save melezhik/1bb06123ed9b47c1a08b1abc541904f3 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"},"921":{"name":"gist","line":14,"file":"SETTING::src/core.c/Bool.pm6"},"920":{"name":"gist","line":4,"file":"SETTING::src/core.c/Bool.pm6"},"92":{"name":"decontrv","line":4164,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"919":{"name":"WRITE","line":624,"file":"SETTING::src/core.c/IO/Handle.pm6"},"918":"utf8","917":{"name":"encode-chars","line":22,"file":"SETTING::src/core.c/Encoding/Encoder/Builtin.pm6"},"916":{"name":"print","line":667,"file":"SETTING::src/core.c/IO/Handle.pm6"},"915":{"name":"print","line":675,"file":"SETTING::src/core.c/Mu.pm6"},"914":{"name":"nl-out","line":4,"file":"SETTING::src/core.c/IO/Handle.pm6"},"913":{"name":"gist","line":811,"file":"SETTING::src/core.c/Str.pm6"},"912":{"name":"gist","line":780,"file":"SETTING::src/core.c/Mu.pm6"},"911":{"name":"say","line":35,"file":"SETTING::src/core.c/io_operators.pm6"},"910":{"name":"say","line":30,"file":"SETTING::src/core.c/io_operators.pm6"},"91":"StrLexRef","909":{"name":"<unit>","line":1,"file":"code.rakuplay-1606250694.raku"},"908":{"name":"<unit-outer>","line":1,"file":"code.rakuplay-1606250694.raku"},"907":"ForeignCode","906":{"name":"","line":3778,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"905":{"name":"compunit_mainline","line":822,"file":"gen/moar/stage2/NQPHLL.nqp"},"904":{"name":"moar","line":814,"file":"gen/moar/stage2/NQPHLL.nqp"},"903":{"name":"<dependencies+deserialize>","line":-1,"file":""},"902":{"name":"bytecode","line":7452,"file":"gen/moar/stage2/QAST.nqp"},"901":{"name":"write_annotations","line":7334,"file":"gen/moar/stage2/QAST.nqp"},"900":{"name":"write_serialized_data","line":7298,"file":"gen/moar/stage2/QAST.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":"strings","line":7072,"file":"gen/moar/stage2/QAST.nqp"},"898":{"name":"write_string_heap","line":7295,"file":"gen/moar/stage2/QAST.nqp"},"897":{"name":"bytecode","line":7017,"file":"gen/moar/stage2/QAST.nqp"},"896":{"name":"write_callsites","line":7292,"file":"gen/moar/stage2/QAST.nqp"},"895":{"name":"code_obj_sc_idx","line":1117,"file":"gen/moar/stage2/MASTNodes.nqp"},"894":{"name":"code_obj_sc_dep_idx","line":1114,"file":"gen/moar/stage2/MASTNodes.nqp"},"893":{"name":"type_to_local_type","line":6871,"file":"gen/moar/stage2/QAST.nqp"},"892":{"name":"flags","line":1111,"file":"gen/moar/stage2/MASTNodes.nqp"},"891":{"name":"num-annotations","line":1120,"file":"gen/moar/stage2/MASTNodes.nqp"},"890":{"name":"annotations-offset","line":1098,"file":"gen/moar/stage2/MASTNodes.nqp"},"89":{"name":"of","line":1127,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"889":{"name":"write_uint16","line":80,"file":"gen/moar/stage2/MASTNodes.nqp"},"888":{"name":"outer","line":1028,"file":"gen/moar/stage2/MASTNodes.nqp"},"887":{"name":"name-idx","line":1093,"file":"gen/moar/stage2/MASTNodes.nqp"},"886":{"name":"cuuid-idx","line":1092,"file":"gen/moar/stage2/MASTNodes.nqp"},"885":{"name":"bytecode-length","line":1095,"file":"gen/moar/stage2/MASTNodes.nqp"},"884":{"name":"bytecode-offset","line":1096,"file":"gen/moar/stage2/MASTNodes.nqp"},"883":{"name":"debug_map_idxs","line":1013,"file":"gen/moar/stage2/MASTNodes.nqp"},"882":{"name":"handlers","line":1121,"file":"gen/moar/stage2/MASTNodes.nqp"},"881":{"name":"lexical-name-idxs","line":1107,"file":"gen/moar/stage2/MASTNodes.nqp"},"880":{"name":"write_frame","line":7216,"file":"gen/moar/stage2/QAST.nqp"},"88":{"name":"rel2abs","line":259,"file":"SETTING::src/core.c/IO/Spec/Unix.pm6"},"879":{"name":"write_extops","line":7318,"file":"gen/moar/stage2/QAST.nqp"},"878":{"name":"write_sc_deps_table","line":7313,"file":"gen/moar/stage2/QAST.nqp"},"877":{"name":"align","line":7337,"file":"gen/moar/stage2/QAST.nqp"},"876":{"name":"main_frame","line":279,"file":"gen/moar/stage2/MASTNodes.nqp"},"875":{"name":"elems","line":7069,"file":"gen/moar/stage2/QAST.nqp"},"874":{"name":"elems","line":7009,"file":"gen/moar/stage2/QAST.nqp"},"873":{"name":"write_s","line":62,"file":"gen/moar/stage2/MASTNodes.nqp"},"872":{"name":"serialized","line":297,"file":"gen/moar/stage2/MASTNodes.nqp"},"871":{"name":"size","line":7065,"file":"gen/moar/stage2/QAST.nqp"},"870":{"name":"size","line":7013,"file":"gen/moar/stage2/QAST.nqp"},"87":{"name":"absolute","line":216,"file":"SETTING::src/core.c/IO/Path.pm6"},"869":{"name":"debug_map","line":1009,"file":"gen/moar/stage2/MASTNodes.nqp"},"868":{"name":"static_lex_values","line":1108,"file":"gen/moar/stage2/MASTNodes.nqp"},"867":{"name":"lexical_types","line":1104,"file":"gen/moar/stage2/MASTNodes.nqp"},"866":{"name":"size","line":1122,"file":"gen/moar/stage2/MASTNodes.nqp"},"865":{"name":"align_section","line":7081,"file":"gen/moar/stage2/QAST.nqp"},"864":{"name":"write_header","line":7126,"file":"gen/moar/stage2/QAST.nqp"},"863":{"name":"set-bytecode-offset","line":1100,"file":"gen/moar/stage2/MASTNodes.nqp"},"862":{"name":"collect_bytecode","line":7286,"file":"gen/moar/stage2/QAST.nqp"},"861":{"name":"assemble","line":7364,"file":"gen/moar/stage2/QAST.nqp"},"860":{"name":"write_buf","line":86,"file":"gen/moar/stage2/MASTNodes.nqp"},"86":{"name":"absolute","line":215,"file":"SETTING::src/core.c/IO/Path.pm6"},"859":{"name":"annotations","line":1097,"file":"gen/moar/stage2/MASTNodes.nqp"},"858":{"name":"set-annotations-offset","line":1099,"file":"gen/moar/stage2/MASTNodes.nqp"},"857":{"name":"prepare","line":954,"file":"gen/moar/stage2/MASTNodes.nqp"},"856":{"name":"collect_extop_names","line":7307,"file":"gen/moar/stage2/QAST.nqp"},"855":{"name":"add-string","line":7120,"file":"gen/moar/stage2/QAST.nqp"},"854":{"name":"collect_sc_deps","line":7301,"file":"gen/moar/stage2/QAST.nqp"},"853":{"name":"prepare","line":7107,"file":"gen/moar/stage2/QAST.nqp"},"852":{"name":"add-frame","line":7123,"file":"gen/moar/stage2/QAST.nqp"},"851":{"name":"writer","line":253,"file":"gen/moar/stage2/MASTNodes.nqp"},"850":{"name":"assemble","line":7468,"file":"gen/moar/stage2/QAST.nqp"},"85":{"name":"slurp","line":621,"file":"SETTING::src/core.c/IO/Path.pm6"},"849":{"name":"assemble_and_load","line":7479,"file":"gen/moar/stage2/QAST.nqp"},"848":{"name":"mbc","line":799,"file":"gen/moar/stage2/NQPHLL.nqp"},"847":{"name":"mainline_frame","line":273,"file":"gen/moar/stage2/MASTNodes.nqp"},"846":{"name":"main","line":1062,"file":"gen/moar/stage2/QASTNode.nqp"},"845":{"name":"load_frame","line":285,"file":"gen/moar/stage2/MASTNodes.nqp"},"844":{"name":"deserialize_frame","line":291,"file":"gen/moar/stage2/MASTNodes.nqp"},"843":{"name":"default","line":629,"file":"gen/moar/stage2/QASTNode.nqp"},"842":{"name":"","line":6526,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/nqp/lib/MAST/Ops.nqp"},"841":{"name":"","line":6559,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/nqp/lib/MAST/Ops.nqp"},"840":{"name":"","line":6553,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/nqp/lib/MAST/Ops.nqp"},"84":{"name":"slurp","line":620,"file":"SETTING::src/core.c/IO/Path.pm6"},"839":{"name":"","line":8076,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/nqp/lib/MAST/Ops.nqp"},"838":{"name":"","line":7394,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/nqp/lib/MAST/Ops.nqp"},"837":{"name":"get_frame_index","line":7436,"file":"gen/moar/stage2/QAST.nqp"},"836":{"name":"writer","line":1029,"file":"gen/moar/stage2/MASTNodes.nqp"},"835":{"name":"","line":6539,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/nqp/lib/MAST/Ops.nqp"},"834":{"name":"value","line":496,"file":"gen/moar/stage2/QASTNode.nqp"},"833":{"name":"compile_node","line":6738,"file":"gen/moar/stage2/QAST.nqp"},"832":{"name":"clone_inner","line":5031,"file":"gen/moar/stage2/QAST.nqp"},"831":{"name":"capture_inner","line":5028,"file":"gen/moar/stage2/QAST.nqp"},"830":{"name":"add_local_debug_name","line":1005,"file":"gen/moar/stage2/MASTNodes.nqp"},"83":{"name":"slurp","line":129,"file":"SETTING::src/core.c/io_operators.pm6"},"829":{"name":"local_debug_map","line":985,"file":"gen/moar/stage2/QASTNode.nqp"},"828":{"name":"","line":9527,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/nqp/lib/MAST/Ops.nqp"},"827":{"name":"","line":6399,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/nqp/lib/MAST/Ops.nqp"},"826":{"name":"new_with_operand_array","line":439,"file":"gen/moar/stage2/MASTNodes.nqp"},"825":{"name":"push_op","line":4709,"file":"gen/moar/stage2/QAST.nqp"},"824":{"name":"params","line":5013,"file":"gen/moar/stage2/QAST.nqp"},"823":{"name":"custom_args","line":920,"file":"gen/moar/stage2/QASTNode.nqp"},"822":{"name":"contvar_locals","line":5047,"file":"gen/moar/stage2/QAST.nqp"},"821":{"name":"cloned_inners","line":5045,"file":"gen/moar/stage2/QAST.nqp"},"820":{"name":"captured_inners","line":5044,"file":"gen/moar/stage2/QAST.nqp"},"82":{"name":"Str","line":179,"file":"SETTING::src/core.c/IO/Path.pm6"},"819":{"name":"","line":5774,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/nqp/lib/MAST/Ops.nqp"},"818":{"name":"return_kind","line":4981,"file":"gen/moar/stage2/QAST.nqp"},"817":{"name":"","line":8400,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/nqp/lib/MAST/Ops.nqp"},"816":{"name":"","line":9815,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/nqp/lib/MAST/Ops.nqp"},"815":{"name":"alternative","line":761,"file":"gen/moar/stage2/QASTNode.nqp"},"814":{"name":"supports","line":757,"file":"gen/moar/stage2/QASTNode.nqp"},"813":{"name":"compile_node","line":6179,"file":"gen/moar/stage2/QAST.nqp"},"812":"QAST::VM","811":{"name":"new","line":750,"file":"gen/moar/stage2/QASTNode.nqp"},"810":{"name":"compile_node","line":6697,"file":"gen/moar/stage2/QAST.nqp"},"81":{"name":"assign-scalar-no-whence-no-typecheck","line":4404,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"809":{"name":"compile_with_stmt_temps","line":6103,"file":"gen/moar/stage2/QAST.nqp"},"808":{"name":"compile_node","line":6091,"file":"gen/moar/stage2/QAST.nqp"},"807":{"name":"compile_node","line":6756,"file":"gen/moar/stage2/QAST.nqp"},"806":{"name":"","line":5564,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/nqp/lib/MAST/Ops.nqp"},"805":{"name":"add-label","line":1152,"file":"gen/moar/stage2/MASTNodes.nqp"},"804":{"name":"write_buf_at","line":89,"file":"gen/moar/stage2/MASTNodes.nqp"},"803":{"name":"annotations-end","line":810,"file":"gen/moar/stage2/MASTNodes.nqp"},"802":{"name":"read_uint32_at","line":74,"file":"gen/moar/stage2/MASTNodes.nqp"},"801":{"name":"insert_bytecode","line":842,"file":"gen/moar/stage2/MASTNodes.nqp"},"800":{"name":"label-fixups","line":1143,"file":"gen/moar/stage2/MASTNodes.nqp"},"80":{"name":"","line":4456,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"8":"CallCapture","799":{"name":"labels","line":1142,"file":"gen/moar/stage2/MASTNodes.nqp"},"798":{"name":"compile_label","line":1177,"file":"gen/moar/stage2/MASTNodes.nqp"},"797":{"name":"","line":5571,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/nqp/lib/MAST/Ops.nqp"},"796":{"name":"end-annotations","line":814,"file":"gen/moar/stage2/MASTNodes.nqp"},"795":{"name":"handlers","line":813,"file":"gen/moar/stage2/MASTNodes.nqp"},"794":{"name":"annotations-offset","line":809,"file":"gen/moar/stage2/MASTNodes.nqp"},"793":{"name":"labels","line":812,"file":"gen/moar/stage2/MASTNodes.nqp"},"792":{"name":"label-fixups","line":811,"file":"gen/moar/stage2/MASTNodes.nqp"},"791":{"name":"bytecode","line":808,"file":"gen/moar/stage2/MASTNodes.nqp"},"790":{"name":"end_subbuffer","line":830,"file":"gen/moar/stage2/MASTNodes.nqp"},"79":{"name":"ASSIGN-KEY","line":125,"file":"SETTING::src/core.c/Hash.pm6"},"789":{"name":"start_subbuffer","line":817,"file":"gen/moar/stage2/MASTNodes.nqp"},"788":{"name":"local_types","line":1101,"file":"gen/moar/stage2/MASTNodes.nqp"},"787":{"name":"isa","line":1310,"file":"gen/moar/stage2/nqpmo.nqp"},"786":{"name":"isa","line":721,"file":"gen/moar/stage2/NQPCORE.setting"},"785":{"name":"consume-all-chars","line":809,"file":"gen/moar/stage2/NQPCORE.setting"},"784":{"name":"add-bytes","line":800,"file":"gen/moar/stage2/NQPCORE.setting"},"783":{"name":"get_callsite_id_from_args","line":6954,"file":"gen/moar/stage2/QAST.nqp"},"782":{"name":"callsites","line":1140,"file":"gen/moar/stage2/MASTNodes.nqp"},"781":{"name":"","line":7237,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/nqp/lib/MAST/Ops.nqp"},"780":{"name":"fresh_o","line":4808,"file":"gen/moar/stage2/QAST.nqp"},"78":{"name":"ASSIGN-KEY","line":420,"file":"SETTING::src/core.c/Any.pm6"},"779":{"name":"arrange_args","line":2876,"file":"gen/moar/stage2/QAST.nqp"},"778":{"name":"","line":3043,"file":"gen/moar/stage2/QAST.nqp"},"777":{"name":"","line":7261,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/nqp/lib/MAST/Ops.nqp"},"776":{"name":"","line":8286,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/nqp/lib/MAST/Ops.nqp"},"775":{"name":"has_compile_time_value","line":208,"file":"gen/moar/stage2/QASTNode.nqp"},"774":{"name":"","line":7223,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/nqp/lib/MAST/Ops.nqp"},"773":{"name":"needs_cond_passed","line":2127,"file":"gen/moar/stage2/QAST.nqp"},"772":{"name":"keep-label","line":1148,"file":"gen/moar/stage2/MASTNodes.nqp"},"771":"MAST::Label","770":{"name":"new","line":416,"file":"gen/moar/stage2/MASTNodes.nqp"},"77":{"name":"postcircumfix:<{ }>","line":9,"file":"SETTING::src/core.c/hash_slice.pm6"},"769":{"name":"unique","line":5064,"file":"gen/moar/stage2/QAST.nqp"},"768":{"name":"","line":2133,"file":"gen/moar/stage2/QAST.nqp"},"767":{"name":"","line":5453,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/nqp/lib/MAST/Ops.nqp"},"766":{"name":"","line":5725,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/nqp/lib/MAST/Ops.nqp"},"765":{"name":"lexical","line":5003,"file":"gen/moar/stage2/QAST.nqp"},"764":{"name":"","line":9251,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/nqp/lib/MAST/Ops.nqp"},"763":{"name":"is_var","line":4977,"file":"gen/moar/stage2/QAST.nqp"},"762":{"name":"release_register","line":4834,"file":"gen/moar/stage2/QAST.nqp"},"761":{"name":"","line":-1,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/nqp/lib/QAST.moarvm"},"760":{"name":"bytecode","line":1094,"file":"gen/moar/stage2/MASTNodes.nqp"},"76":{"name":"postcircumfix:<{ }>","line":3,"file":"SETTING::src/core.c/hash_slice.pm6"},"759":{"name":"","line":5446,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/nqp/lib/MAST/Ops.nqp"},"758":{"name":"new","line":435,"file":"gen/moar/stage2/MASTNodes.nqp"},"757":{"name":"fresh_s","line":4807,"file":"gen/moar/stage2/QAST.nqp"},"756":{"name":"const_s","line":6726,"file":"gen/moar/stage2/QAST.nqp"},"755":{"name":"value","line":469,"file":"gen/moar/stage2/QASTNode.nqp"},"754":{"name":"compile_node","line":6734,"file":"gen/moar/stage2/QAST.nqp"},"753":{"name":"as_mast_clear_bindval","line":6659,"file":"gen/moar/stage2/QAST.nqp"},"752":{"name":"local_kind","line":5008,"file":"gen/moar/stage2/QAST.nqp"},"751":{"name":"local","line":5007,"file":"gen/moar/stage2/QAST.nqp"},"750":{"name":"","line":3199,"file":"gen/moar/stage2/QAST.nqp"},"75":{"name":"nominal","line":137,"file":"gen/moar/Metamodel.nqp"},"749":{"name":"append","line":1470,"file":"gen/moar/stage2/QAST.nqp"},"748":{"name":"result_reg","line":1467,"file":"gen/moar/stage2/QAST.nqp"},"747":{"name":"coercion","line":5133,"file":"gen/moar/stage2/QAST.nqp"},"746":{"name":"add_static_lex_value","line":990,"file":"gen/moar/stage2/MASTNodes.nqp"},"745":{"name":"mast_compunit","line":5066,"file":"gen/moar/stage2/QAST.nqp"},"744":"MAST::Lexical","743":{"name":"new","line":387,"file":"gen/moar/stage2/MASTNodes.nqp"},"742":{"name":"register_lexical","line":4922,"file":"gen/moar/stage2/QAST.nqp"},"741":{"name":"add_lexical","line":976,"file":"gen/moar/stage2/MASTNodes.nqp"},"740":{"name":"add_lexical","line":4900,"file":"gen/moar/stage2/QAST.nqp"},"74":{"name":"base_type","line":5029,"file":"gen/moar/Metamodel.nqp"},"739":{"name":"set_code_object_idxs","line":1052,"file":"gen/moar/stage2/MASTNodes.nqp"},"738":{"name":"sc_idx","line":319,"file":"gen/moar/stage2/MASTNodes.nqp"},"737":{"name":"set_outer","line":1017,"file":"gen/moar/stage2/MASTNodes.nqp"},"736":{"name":"ACCEPTS","line":712,"file":"gen/moar/stage2/NQPCORE.setting"},"735":{"name":"compile_mastop","line":1521,"file":"gen/moar/stage2/QAST.nqp"},"734":{"name":"","line":1781,"file":"gen/moar/stage2/QAST.nqp"},"733":{"name":"","line":2891,"file":"gen/moar/stage2/QAST.nqp"},"732":{"name":"compile_op","line":1501,"file":"gen/moar/stage2/QAST.nqp"},"731":{"name":"compile_node","line":6174,"file":"gen/moar/stage2/QAST.nqp"},"730":{"name":"add-string","line":1137,"file":"gen/moar/stage2/MASTNodes.nqp"},"73":{"name":"check_instantiated","line":5024,"file":"gen/moar/Metamodel.nqp"},"729":{"name":"write_uint32","line":68,"file":"gen/moar/stage2/MASTNodes.nqp"},"728":{"name":"add-annotation","line":1251,"file":"gen/moar/stage2/MASTNodes.nqp"},"727":{"name":"new","line":612,"file":"gen/moar/stage2/MASTNodes.nqp"},"726":{"name":"line_and_column_of","line":2444,"file":"gen/moar/stage2/NQPHLL.nqp"},"725":{"name":"linefileof","line":2504,"file":"gen/moar/stage2/NQPHLL.nqp"},"724":{"name":"compile_annotation","line":6113,"file":"gen/moar/stage2/QAST.nqp"},"723":{"name":"compile_node","line":6082,"file":"gen/moar/stage2/QAST.nqp"},"722":{"name":"result_kind","line":1468,"file":"gen/moar/stage2/QAST.nqp"},"721":{"name":"coerce","line":5123,"file":"gen/moar/stage2/QAST.nqp"},"720":"MAST::InstructionList","72":{"name":"definite","line":5034,"file":"gen/moar/Metamodel.nqp"},"719":{"name":"new","line":1460,"file":"gen/moar/stage2/QAST.nqp"},"718":{"name":"index","line":375,"file":"gen/moar/stage2/MASTNodes.nqp"},"717":"MAST::Local","716":{"name":"new","line":369,"file":"gen/moar/stage2/MASTNodes.nqp"},"715":{"name":"add_local","line":999,"file":"gen/moar/stage2/MASTNodes.nqp"},"714":{"name":"fresh_register","line":4813,"file":"gen/moar/stage2/QAST.nqp"},"713":{"name":"type_to_register_kind","line":6799,"file":"gen/moar/stage2/QAST.nqp"},"712":{"name":"register_local","line":4954,"file":"gen/moar/stage2/QAST.nqp"},"711":{"name":"add_param","line":4887,"file":"gen/moar/stage2/QAST.nqp"},"710":{"name":"compile_var","line":6270,"file":"gen/moar/stage2/QAST.nqp"},"71":{"name":"definite","line":146,"file":"gen/moar/Metamodel.nqp"},"709":{"name":"compile_node","line":6242,"file":"gen/moar/stage2/QAST.nqp"},"708":{"name":"compile_all_the_stmts","line":6125,"file":"gen/moar/stage2/QAST.nqp"},"707":"RegAlloc","706":{"name":"new","line":4796,"file":"gen/moar/stage2/QAST.nqp"},"705":{"name":"","line":5735,"file":"gen/moar/stage2/QAST.nqp"},"704":{"name":"no_inline","line":923,"file":"gen/moar/stage2/QASTNode.nqp"},"703":{"name":"is_thunk","line":922,"file":"gen/moar/stage2/QASTNode.nqp"},"702":{"name":"has_exit_handler","line":921,"file":"gen/moar/stage2/QASTNode.nqp"},"701":{"name":"BUILD","line":4869,"file":"gen/moar/stage2/QAST.nqp"},"700":"BlockInfo","70":{"name":"archetypes","line":4987,"file":"gen/moar/Metamodel.nqp"},"7":"Hash","699":{"name":"new","line":4863,"file":"gen/moar/stage2/QAST.nqp"},"698":{"name":"set_index","line":971,"file":"gen/moar/stage2/MASTNodes.nqp"},"697":{"name":"add_frame","line":257,"file":"gen/moar/stage2/MASTNodes.nqp"},"696":{"name":"BUILD","line":801,"file":"gen/moar/stage2/MASTNodes.nqp"},"695":"SubBuffer","694":{"name":"new","line":796,"file":"gen/moar/stage2/MASTNodes.nqp"},"693":{"name":"write_uint8","line":83,"file":"gen/moar/stage2/MASTNodes.nqp"},"692":{"name":"write_uint32_at","line":77,"file":"gen/moar/stage2/MASTNodes.nqp"},"691":{"name":"add-internal","line":7039,"file":"gen/moar/stage2/QAST.nqp"},"690":{"name":"add","line":7062,"file":"gen/moar/stage2/QAST.nqp"},"69":{"name":"","line":4321,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"689":{"name":"callsites","line":7118,"file":"gen/moar/stage2/QAST.nqp"},"688":{"name":"string-heap","line":7117,"file":"gen/moar/stage2/QAST.nqp"},"687":{"name":"BUILD","line":921,"file":"gen/moar/stage2/MASTNodes.nqp"},"686":"MAST::Frame","685":{"name":"new","line":915,"file":"gen/moar/stage2/MASTNodes.nqp"},"684":{"name":"","line":5686,"file":"gen/moar/stage2/QAST.nqp"},"683":{"name":"compile_node","line":5676,"file":"gen/moar/stage2/QAST.nqp"},"682":{"name":"hll","line":267,"file":"gen/moar/stage2/MASTNodes.nqp"},"681":{"name":"compile_node","line":5494,"file":"gen/moar/stage2/QAST.nqp"},"680":{"name":"as_mast","line":5367,"file":"gen/moar/stage2/QAST.nqp"},"68":{"name":"identity","line":4151,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"679":{"name":"set-compunit","line":7116,"file":"gen/moar/stage2/QAST.nqp"},"678":{"name":"BUILD","line":243,"file":"gen/moar/stage2/MASTNodes.nqp"},"677":{"name":"BUILD","line":7097,"file":"gen/moar/stage2/QAST.nqp"},"676":"MAST::CompUnit","675":"MoarVM::BytecodeWriter","674":{"name":"to_mast","line":5070,"file":"gen/moar/stage2/QAST.nqp"},"673":"MASTCompilerInstance","672":{"name":"to_mast","line":6840,"file":"gen/moar/stage2/QAST.nqp"},"671":{"name":"mast","line":795,"file":"gen/moar/stage2/NQPHLL.nqp"},"670":{"name":"finish","line":3095,"file":"gen/moar/stage2/NQPHLL.nqp"},"67":{"name":"decontrv_plugin","line":4183,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"669":{"name":"","line":2583,"file":"gen/moar/World.nqp"},"668":{"name":"cleanup_tasks","line":454,"file":"gen/moar/World.nqp"},"667":{"name":"cleanup","line":4420,"file":"gen/moar/World.nqp"},"666":{"name":"report","line":393,"file":"gen/moar/Optimizer.nqp"},"665":{"name":"add_local_debug_mapping","line":980,"file":"gen/moar/stage2/QASTNode.nqp"},"664":{"name":"unique","line":242,"file":"gen/moar/stage2/QASTNode.nqp"},"663":{"name":"lexical_vars_to_locals","line":712,"file":"gen/moar/Optimizer.nqp"},"662":{"name":"LoweredAwayLexical","line":118,"file":"gen/moar/Optimizer.nqp"},"661":{"name":"simplify_takedispatcher","line":703,"file":"gen/moar/Optimizer.nqp"},"660":{"name":"delete_unused_autoslurpy","line":688,"file":"gen/moar/Optimizer.nqp"},"66":{"name":"sink","line":727,"file":"SETTING::src/core.c/List.pm6"},"659":{"name":"delete_unused_magicals","line":618,"file":"gen/moar/Optimizer.nqp"},"658":{"name":"pop_block","line":81,"file":"gen/moar/Optimizer.nqp"},"657":{"name":"scopes_in","line":237,"file":"gen/moar/Optimizer.nqp"},"656":{"name":"name","line":105,"file":"gen/moar/stage2/NQPHLL.nqp"},"655":{"name":"backend","line":1781,"file":"gen/moar/stage2/NQPHLL.nqp"},"654":"Num","653":{"name":"Num","line":62,"file":"SETTING::src/core.c/Int.pm6"},"652":{"name":"count","line":101,"file":"SETTING::src/core.c/Signature.pm6"},"651":{"name":"arity","line":97,"file":"SETTING::src/core.c/Signature.pm6"},"650":{"name":"simplify_refs","line":3161,"file":"gen/moar/Optimizer.nqp"},"65":{"name":"SET-SELF","line":13,"file":"SETTING::src/core.c/IO/Path.pm6"},"649":{"name":"call_ct_chosen_multi","line":3125,"file":"gen/moar/Optimizer.nqp"},"648":{"name":"","line":3223,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"647":{"name":"","line":2989,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"646":{"name":"trial_bind","line":982,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"645":{"name":"trial_bind","line":390,"file":"gen/moar/Ops.nqp"},"644":{"name":"signature","line":21,"file":"SETTING::src/core.c/Code.pm6"},"643":{"name":"has_compile_time_value","line":551,"file":"gen/moar/stage2/QASTNode.nqp"},"642":{"name":"Mu","line":109,"file":"gen/moar/Optimizer.nqp"},"641":{"name":"flat","line":174,"file":"gen/moar/stage2/QASTNode.nqp"},"640":{"name":"analyze_args_for_ct_call","line":2727,"file":"gen/moar/Optimizer.nqp"},"64":{"name":"Str","line":61,"file":"SETTING::src/core.c/Str.pm6"},"639":{"name":"onlystar","line":22,"file":"SETTING::src/core.c/Routine.pm6"},"638":{"name":"","line":2237,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"637":{"name":"optimize_call","line":1899,"file":"gen/moar/Optimizer.nqp"},"636":{"name":"op_eq_core","line":2350,"file":"gen/moar/Optimizer.nqp"},"635":{"name":"visit_want","line":2595,"file":"gen/moar/Optimizer.nqp"},"634":{"name":"resultchild","line":851,"file":"gen/moar/stage2/QASTNode.nqp"},"633":{"name":"named","line":164,"file":"gen/moar/stage2/QASTNode.nqp"},"632":{"name":"AST","line":117,"file":"gen/moar/Optimizer.nqp"},"631":{"name":"Regex","line":112,"file":"gen/moar/Optimizer.nqp"},"630":{"name":"PseudoStash","line":113,"file":"gen/moar/Optimizer.nqp"},"63":{"name":"Str","line":648,"file":"SETTING::src/core.c/Mu.pm6"},"629":{"name":"has_compile_time_value","line":9,"file":"gen/moar/stage2/QASTNode.nqp"},"628":{"name":"register_getlexouter_usage","line":509,"file":"gen/moar/Optimizer.nqp"},"627":{"name":"register_call","line":507,"file":"gen/moar/Optimizer.nqp"},"626":{"name":"add_usage","line":491,"file":"gen/moar/Optimizer.nqp"},"625":{"name":"visit_op_children","line":1749,"file":"gen/moar/Optimizer.nqp"},"624":{"name":"is_outer_foldable","line":881,"file":"gen/moar/Optimizer.nqp"},"623":{"name":"optimize","line":953,"file":"gen/moar/Optimizer.nqp"},"622":{"name":"visit_op","line":1325,"file":"gen/moar/Optimizer.nqp"},"621":{"name":"name","line":611,"file":"gen/moar/stage2/QASTNode.nqp"},"620":{"name":"add_decl","line":471,"file":"gen/moar/Optimizer.nqp"},"62":{"name":"new","line":32,"file":"SETTING::src/core.c/IO/Path.pm6"},"619":{"name":"decl","line":619,"file":"gen/moar/stage2/QASTNode.nqp"},"618":{"name":"scope","line":615,"file":"gen/moar/stage2/QASTNode.nqp"},"617":{"name":"visit_var","line":2668,"file":"gen/moar/Optimizer.nqp"},"616":{"name":"resultchild","line":802,"file":"gen/moar/stage2/QASTNode.nqp"},"615":{"name":"visit_children","line":2834,"file":"gen/moar/Optimizer.nqp"},"614":"BlockVarOptimizer","613":{"name":"push_block","line":78,"file":"gen/moar/Optimizer.nqp"},"612":{"name":"visit_block","line":1108,"file":"gen/moar/Optimizer.nqp"},"611":{"name":"UNIT","line":108,"file":"gen/moar/Optimizer.nqp"},"610":{"name":"BUILD","line":315,"file":"gen/moar/Optimizer.nqp"},"61":{"name":"","line":33,"file":"SETTING::src/core.c/IO/Path.pm6"},"609":"Problems","608":{"name":"new","line":310,"file":"gen/moar/Optimizer.nqp"},"607":{"name":"BUILD","line":875,"file":"gen/moar/Optimizer.nqp"},"606":"JunctionOptimizer","605":{"name":"new","line":870,"file":"gen/moar/Optimizer.nqp"},"604":{"name":"find_symbol","line":124,"file":"gen/moar/Optimizer.nqp"},"603":{"name":"force_value","line":222,"file":"gen/moar/Optimizer.nqp"},"602":{"name":"find_lexical","line":182,"file":"gen/moar/Optimizer.nqp"},"601":{"name":"BUILD","line":53,"file":"gen/moar/Optimizer.nqp"},"600":"Symbols","60":"Code","6":"BOOTHash","599":{"name":"new","line":48,"file":"gen/moar/Optimizer.nqp"},"598":{"name":"optimize","line":1071,"file":"gen/moar/Optimizer.nqp"},"597":"Perl6::Optimizer","596":{"name":"optimize","line":122,"file":"gen/moar/Compiler.nqp"},"595":{"name":"ast","line":2309,"file":"gen/moar/stage2/NQPHLL.nqp"},"594":{"name":"syntaxcheck","line":135,"file":"gen/moar/Compiler.nqp"},"593":{"name":"pop_lexpad","line":276,"file":"gen/moar/World.nqp"},"592":{"name":"pop_lexpad","line":873,"file":"gen/moar/World.nqp"},"591":{"name":"annotate_self","line":221,"file":"gen/moar/stage2/QASTNode.nqp"},"590":{"name":"post_deserialize","line":1071,"file":"gen/moar/stage2/QASTNode.nqp"},"59":{"name":"","line":2028,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"589":{"name":"is_nested","line":1081,"file":"gen/moar/stage2/QASTNode.nqp"},"588":{"name":"repo_conflict_resolver","line":1075,"file":"gen/moar/stage2/QASTNode.nqp"},"587":{"name":"compilation_mode","line":1064,"file":"gen/moar/stage2/QASTNode.nqp"},"586":{"name":"sc","line":1059,"file":"gen/moar/stage2/QASTNode.nqp"},"585":{"name":"load","line":1061,"file":"gen/moar/stage2/QASTNode.nqp"},"584":{"name":"code_ref_blocks","line":1078,"file":"gen/moar/stage2/QASTNode.nqp"},"583":{"name":"hll","line":1060,"file":"gen/moar/stage2/QASTNode.nqp"},"582":{"name":"pre_deserialize","line":1067,"file":"gen/moar/stage2/QASTNode.nqp"},"581":"QAST::CompUnit","580":{"name":"new","line":1052,"file":"gen/moar/stage2/QASTNode.nqp"},"58":{"name":"","line":342,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"579":{"name":"fixup_tasks","line":3083,"file":"gen/moar/stage2/NQPHLL.nqp"},"578":{"name":"load_dependency_tasks","line":3078,"file":"gen/moar/stage2/NQPHLL.nqp"},"577":{"name":"code_ref_blocks","line":3073,"file":"gen/moar/stage2/NQPHLL.nqp"},"576":{"name":"sc","line":3064,"file":"gen/moar/stage2/NQPHLL.nqp"},"575":{"name":"blocktype","line":916,"file":"gen/moar/stage2/QASTNode.nqp"},"574":{"name":"CTXSAVE","line":1505,"file":"gen/moar/stage2/NQPHLL.nqp"},"573":{"name":"unshift","line":71,"file":"gen/moar/stage2/QASTNode.nqp"},"572":{"name":"slurpy","line":628,"file":"gen/moar/stage2/QASTNode.nqp"},"571":{"name":"!clear_highwater","line":1819,"file":"gen/moar/stage2/QRegex.nqp"},"570":{"name":"statementlist_with_handlers","line":1841,"file":"gen/moar/Actions.nqp"},"57":"Str","569":{"name":"protos_to_sort","line":430,"file":"gen/moar/World.nqp"},"568":{"name":"sort_protos","line":945,"file":"gen/moar/World.nqp"},"567":{"name":"stub_check","line":421,"file":"gen/moar/World.nqp"},"566":{"name":"assert_stubs_defined","line":932,"file":"gen/moar/World.nqp"},"565":{"name":"add_phasers_handling_code","line":2752,"file":"gen/moar/World.nqp"},"564":{"name":"fixup_tasks","line":2961,"file":"gen/moar/stage2/NQPHLL.nqp"},"563":{"name":"add_fixup_task","line":3054,"file":"gen/moar/stage2/NQPHLL.nqp"},"562":{"name":"set_attribute","line":2855,"file":"gen/moar/World.nqp"},"561":"QAST::BVal","560":{"name":"new","line":489,"file":"gen/moar/stage2/QASTNode.nqp"},"56":{"name":"","line":1,"file":"SETTING::src/core.c/Env.pm6"},"559":{"name":"is_nested","line":3033,"file":"gen/moar/stage2/NQPHLL.nqp"},"558":{"name":"sub_id_to_sc_idx","line":442,"file":"gen/moar/World.nqp"},"557":{"name":"code_ref_blocks","line":2956,"file":"gen/moar/stage2/NQPHLL.nqp"},"556":{"name":"next_code_ref_num","line":2950,"file":"gen/moar/stage2/NQPHLL.nqp"},"555":{"name":"add_root_code_ref","line":3016,"file":"gen/moar/stage2/NQPHLL.nqp"},"554":{"name":"name","line":912,"file":"gen/moar/stage2/QASTNode.nqp"},"553":{"name":"add_cleanup_task","line":450,"file":"gen/moar/World.nqp"},"552":{"name":"sub_id_to_code_object","line":438,"file":"gen/moar/World.nqp"},"551":{"name":"cuid","line":932,"file":"gen/moar/stage2/QASTNode.nqp"},"550":{"name":"code_object","line":926,"file":"gen/moar/stage2/QASTNode.nqp"},"55":{"name":"language_version","line":79,"file":"gen/moar/Compiler.nqp"},"549":{"name":"pop","line":729,"file":"gen/moar/stage2/NQPCORE.setting"},"548":{"name":"pop_code_object","line":408,"file":"gen/moar/World.nqp"},"547":{"name":"finish_code_object","line":2557,"file":"gen/moar/World.nqp"},"546":{"name":"attach_signature","line":2544,"file":"gen/moar/World.nqp"},"545":{"name":"value","line":514,"file":"gen/moar/stage2/QASTNode.nqp"},"544":"Signature","543":{"name":"create_signature","line":2449,"file":"gen/moar/World.nqp"},"542":{"name":"comp_unit","line":1296,"file":"gen/moar/Actions.nqp"},"541":{"name":"checks","line":551,"file":"gen/moar/World.nqp"},"540":{"name":"CHECK","line":4412,"file":"gen/moar/World.nqp"},"54":{"name":"INITIALIZE-DYNAMIC","line":1001,"file":"SETTING::src/core.c/Rakudo/Internals.pm6"},"539":{"name":"compose","line":454,"file":"gen/moar/Metamodel.nqp"},"538":"!EVAL_MARKER","537":"!UNIT_MARKER","536":"Perl6::Metamodel::PackageHOW","535":{"name":"new_type","line":446,"file":"gen/moar/Metamodel.nqp"},"534":{"name":"pkg_create_mo","line":3257,"file":"gen/moar/World.nqp"},"533":{"name":"how","line":1375,"file":"gen/moar/stage2/QRegex.nqp"},"532":{"name":"add_unit_marker","line":833,"file":"gen/moar/World.nqp"},"531":{"name":"compile_time_value","line":13,"file":"gen/moar/stage2/QASTNode.nqp"},"530":"Array","53":"VMString","529":{"name":"new","line":243,"file":"SETTING::src/core.c/Array.pm6"},"528":{"name":"new","line":237,"file":"SETTING::src/core.c/Array.pm6"},"527":{"name":"mop_up_and_check","line":839,"file":"gen/moar/World.nqp"},"526":{"name":"cry_sorrows","line":4502,"file":"gen/moar/Grammar.nqp"},"525":{"name":"hash","line":1141,"file":"gen/moar/stage2/NQPCORE.setting"},"524":{"name":"explain_mystery","line":4442,"file":"gen/moar/Grammar.nqp"},"523":{"name":"install_doc_phaser","line":1428,"file":"gen/moar/Actions.nqp"},"522":{"name":"install_doc_phaser","line":-1,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/perl6/lib/Perl6/Grammar.moarvm"},"521":{"name":"final","line":192,"file":"gen/moar/stage2/QASTNode.nqp"},"520":"QAST::Stmt","52":{"name":"DYNAMIC","line":33,"file":"SETTING::src/core.c/stubs.pm6"},"519":{"name":"new","line":844,"file":"gen/moar/stage2/QASTNode.nqp"},"518":{"name":"sink","line":1119,"file":"gen/moar/Actions.nqp"},"517":{"name":"nosink","line":190,"file":"gen/moar/stage2/QASTNode.nqp"},"516":{"name":"autosink","line":1137,"file":"gen/moar/Actions.nqp"},"515":{"name":"statementlist","line":1483,"file":"gen/moar/Actions.nqp"},"514":{"name":"","line":-1,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/perl6/lib/Perl6/Grammar.moarvm"},"513":{"name":"eat_terminator","line":992,"file":"gen/moar/Grammar.nqp"},"512":{"name":"","line":1599,"file":"gen/moar/Actions.nqp"},"511":{"name":"statement","line":1597,"file":"gen/moar/Actions.nqp"},"510":{"name":"statement_mod_loop","line":-1,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/perl6/lib/Perl6/Grammar.moarvm"},"51":"IO::Path","509":{"name":"statement_mod_cond","line":-1,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/perl6/lib/Perl6/Grammar.moarvm"},"508":{"name":"","line":-1,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/perl6/lib/Perl6/Grammar.moarvm"},"507":{"name":"","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":"NQPMatch","504":{"name":"ACCEPTS","line":2351,"file":"gen/moar/stage2/QRegex.nqp"},"503":"NQPRegex","502":{"name":"new","line":2332,"file":"gen/moar/stage2/QRegex.nqp"},"501":{"name":"add_mystery","line":4393,"file":"gen/moar/Grammar.nqp"},"500":{"name":"name","line":692,"file":"gen/moar/stage2/QASTNode.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":"WANTALL","line":46,"file":"gen/moar/Actions.nqp"},"498":{"name":"handle_special_call_names","line":10047,"file":"gen/moar/Actions.nqp"},"497":{"name":"istype","line":10400,"file":"gen/moar/Actions.nqp"},"496":{"name":"find_macro_routine","line":6190,"file":"gen/moar/Actions.nqp"},"495":{"name":"attach_adverbs","line":4500,"file":"gen/moar/World.nqp"},"494":{"name":"term:sym<name>","line":6305,"file":"gen/moar/Actions.nqp"},"493":{"name":"args","line":6546,"file":"gen/moar/Actions.nqp"},"492":{"name":"arglist","line":6613,"file":"gen/moar/Actions.nqp"},"491":{"name":"EXPR","line":7004,"file":"gen/moar/Actions.nqp"},"490":{"name":"!clone_match_at","line":1640,"file":"gen/moar/stage2/QRegex.nqp"},"49":{"name":"new","line":31,"file":"SETTING::src/core.c/IO/Path.pm6"},"489":{"name":"infixish","line":3784,"file":"gen/moar/Grammar.nqp"},"488":{"name":"made","line":1158,"file":"gen/moar/stage2/QRegex.nqp"},"487":{"name":"termish","line":1626,"file":"gen/moar/stage2/NQPHLL.nqp"},"486":{"name":"postfixish","line":3825,"file":"gen/moar/Grammar.nqp"},"485":{"name":"term:sym<value>","line":6703,"file":"gen/moar/Actions.nqp"},"484":{"name":"value:sym<quote>","line":8154,"file":"gen/moar/Actions.nqp"},"483":{"name":"ast","line":1159,"file":"gen/moar/stage2/QRegex.nqp"},"482":{"name":"quote:sym<apos>","line":8571,"file":"gen/moar/Actions.nqp"},"481":{"name":"set_braid_from","line":1387,"file":"gen/moar/stage2/QRegex.nqp"},"480":{"name":"make","line":1157,"file":"gen/moar/stage2/QRegex.nqp"},"48":{"name":"IO","line":35,"file":"SETTING::src/core.c/Str.pm6"},"479":{"name":"shift","line":731,"file":"gen/moar/stage2/NQPCORE.setting"},"478":"QAST::Want","477":{"name":"new","line":544,"file":"gen/moar/stage2/QASTNode.nqp"},"476":{"name":"returns","line":159,"file":"gen/moar/stage2/QASTNode.nqp"},"475":"QAST::WVal","474":{"name":"new","line":507,"file":"gen/moar/stage2/QASTNode.nqp"},"473":{"name":"join","line":1073,"file":"gen/moar/stage2/NQPCORE.setting"},"472":{"name":"sorted_keys","line":1150,"file":"gen/moar/stage2/NQPCORE.setting"},"471":{"name":"const_cache","line":446,"file":"gen/moar/World.nqp"},"470":{"name":"add_constant","line":2994,"file":"gen/moar/World.nqp"},"47":"List","469":{"name":"add_string_constant","line":3087,"file":"gen/moar/World.nqp"},"468":{"name":"nibbler","line":10716,"file":"gen/moar/Actions.nqp"},"467":"NFAType","466":{"name":"optimize","line":817,"file":"gen/moar/stage2/QRegex.nqp"},"465":{"name":"mergesubstates","line":665,"file":"gen/moar/stage2/QRegex.nqp"},"464":{"name":"NFA","line":571,"file":"gen/moar/stage2/NQPCORE.setting"},"463":{"name":"mergesubrule","line":560,"file":"gen/moar/stage2/QRegex.nqp"},"462":{"name":"addstate","line":84,"file":"gen/moar/stage2/QRegex.nqp"},"461":{"name":"new","line":73,"file":"gen/moar/stage2/QRegex.nqp"},"460":{"name":"cache_add","line":1382,"file":"gen/moar/stage2/nqpmo.nqp"},"46":{"name":"","line":3768,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"459":{"name":"methods","line":1248,"file":"gen/moar/stage2/nqpmo.nqp"},"458":{"name":"!protoregex_table","line":1721,"file":"gen/moar/stage2/QRegex.nqp"},"457":{"name":"","line":1705,"file":"gen/moar/stage2/QRegex.nqp"},"456":{"name":"cache","line":1364,"file":"gen/moar/stage2/nqpmo.nqp"},"455":{"name":"!protoregex_nfa","line":1704,"file":"gen/moar/stage2/QRegex.nqp"},"454":{"name":"escape","line":-1,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/perl6/lib/Perl6/Grammar.moarvm"},"453":{"name":"starter","line":-1,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/perl6/lib/Perl6/Grammar.moarvm"},"452":{"name":"!INTERPOLATE","line":2268,"file":"gen/moar/stage2/QRegex.nqp"},"451":{"name":"stopper","line":-1,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/perl6/lib/Perl6/Grammar.moarvm"},"450":{"name":"do_nibbling","line":5543,"file":"gen/moar/Grammar.nqp"},"45":{"name":"IO","line":387,"file":"SETTING::src/core.c/Cool.pm6"},"449":{"name":"nibbler","line":-1,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/perl6/lib/Perl6/Grammar.moarvm"},"448":{"name":"nibble","line":259,"file":"gen/moar/Grammar.nqp"},"447":{"name":"save","line":549,"file":"gen/moar/stage2/QRegex.nqp"},"446":{"name":"addedge","line":93,"file":"gen/moar/stage2/QRegex.nqp"},"445":{"name":"ord-or-str","line":291,"file":"gen/moar/stage2/QRegex.nqp"},"444":{"name":"subtype","line":381,"file":"gen/moar/stage2/QASTNode.nqp"},"443":{"name":"literal","line":297,"file":"gen/moar/stage2/QRegex.nqp"},"442":"QAST::Regex","441":{"name":"new","line":367,"file":"gen/moar/stage2/QASTNode.nqp"},"440":{"name":"instantiate_generic","line":761,"file":"gen/moar/stage2/QRegex.nqp"},"44":{"name":"name","line":155,"file":"gen/moar/Metamodel.nqp"},"439":"QRegex::NFA","438":{"name":"from_saved","line":80,"file":"gen/moar/stage2/QRegex.nqp"},"437":"stop","436":{"name":"","line":21,"file":"gen/moar/Grammar.nqp"},"435":{"name":"specialize","line":436,"file":"gen/moar/stage2/nqpmo.nqp"},"434":"Perl6::QGrammar+{q}+{stop}","433":{"name":"name","line":440,"file":"gen/moar/stage2/nqpmo.nqp"},"432":{"name":"BUILD","line":426,"file":"gen/moar/stage2/nqpmo.nqp"},"431":"NQPCurriedRoleHOW","430":{"name":"new","line":420,"file":"gen/moar/stage2/nqpmo.nqp"},"43":{"name":"","line":4873,"file":"gen/moar/Metamodel.nqp"},"429":"stop","428":{"name":"new_type","line":431,"file":"gen/moar/stage2/nqpmo.nqp"},"427":{"name":"curry","line":576,"file":"gen/moar/stage2/nqpmo.nqp"},"426":{"name":"unbalanced","line":60,"file":"gen/moar/Grammar.nqp"},"425":{"name":"associative_delegate","line":1646,"file":"gen/moar/stage2/nqpmo.nqp"},"424":{"name":"positional_delegate","line":1642,"file":"gen/moar/stage2/nqpmo.nqp"},"423":{"name":"auto_viv_container","line":1626,"file":"gen/moar/stage2/nqpmo.nqp"},"422":{"name":"box_target","line":1622,"file":"gen/moar/stage2/nqpmo.nqp"},"421":{"name":"type","line":1602,"file":"gen/moar/stage2/nqpmo.nqp"},"420":{"name":"name","line":1598,"file":"gen/moar/stage2/nqpmo.nqp"},"42":{"name":"coerce","line":4856,"file":"gen/moar/Metamodel.nqp"},"419":{"name":"is_array_type","line":788,"file":"gen/moar/stage2/nqpmo.nqp"},"418":{"name":"compose_repr","line":903,"file":"gen/moar/stage2/nqpmo.nqp"},"417":{"name":"BUILDPLAN","line":1220,"file":"gen/moar/stage2/nqpmo.nqp"},"416":{"name":"create_BUILDPLAN","line":1168,"file":"gen/moar/stage2/nqpmo.nqp"},"415":{"name":"find_method","line":1347,"file":"gen/moar/stage2/nqpmo.nqp"},"414":{"name":"publish_boolification_spec","line":1144,"file":"gen/moar/stage2/nqpmo.nqp"},"413":{"name":"reverse","line":1124,"file":"gen/moar/stage2/nqpmo.nqp"},"412":{"name":"publish_method_cache","line":1130,"file":"gen/moar/stage2/nqpmo.nqp"},"411":{"name":"role_typecheck_list","line":331,"file":"gen/moar/stage2/nqpmo.nqp"},"410":{"name":"role_typecheck_list","line":1244,"file":"gen/moar/stage2/nqpmo.nqp"},"41":{"name":"accepts_type","line":4848,"file":"gen/moar/Metamodel.nqp"},"409":{"name":"mro","line":1236,"file":"gen/moar/stage2/nqpmo.nqp"},"408":{"name":"publish_type_cache","line":1104,"file":"gen/moar/stage2/nqpmo.nqp"},"407":{"name":"compose","line":1650,"file":"gen/moar/stage2/nqpmo.nqp"},"406":{"name":"attributes","line":1288,"file":"gen/moar/stage2/nqpmo.nqp"},"405":{"name":"incorporate_multi_candidates","line":959,"file":"gen/moar/stage2/nqpmo.nqp"},"404":{"name":"parents","line":1232,"file":"gen/moar/stage2/nqpmo.nqp"},"403":{"name":"compute_c3_mro","line":1012,"file":"gen/moar/stage2/nqpmo.nqp"},"402":{"name":"attributes","line":323,"file":"gen/moar/stage2/nqpmo.nqp"},"401":{"name":"add_method","line":752,"file":"gen/moar/stage2/nqpmo.nqp"},"400":{"name":"method_table","line":1267,"file":"gen/moar/stage2/nqpmo.nqp"},"40":{"name":"type_check","line":4839,"file":"gen/moar/Metamodel.nqp"},"4":{"name":"<unit>","line":1,"file":"-e"},"399":{"name":"has_method","line":343,"file":"gen/moar/stage2/nqpmo.nqp"},"398":{"name":"methods","line":294,"file":"gen/moar/stage2/nqpmo.nqp"},"397":{"name":"collisions","line":310,"file":"gen/moar/stage2/nqpmo.nqp"},"396":{"name":"apply","line":356,"file":"gen/moar/stage2/nqpmo.nqp"},"395":{"name":"compose","line":270,"file":"gen/moar/stage2/nqpmo.nqp"},"394":"NQPRoutine","393":{"name":"clone","line":365,"file":"gen/moar/stage2/NQPCORE.setting"},"392":{"name":"name","line":386,"file":"gen/moar/stage2/NQPCORE.setting"},"391":{"name":"add_method","line":231,"file":"gen/moar/stage2/nqpmo.nqp"},"390":"NQPRegex","39":{"name":"parents","line":1169,"file":"gen/moar/Metamodel.nqp"},"389":{"name":"clone","line":583,"file":"gen/moar/stage2/NQPCORE.setting"},"388":{"name":"instantiate_generic","line":603,"file":"gen/moar/stage2/NQPCORE.setting"},"387":{"name":"name","line":615,"file":"gen/moar/stage2/NQPCORE.setting"},"386":{"name":"BUILD","line":210,"file":"gen/moar/stage2/nqpmo.nqp"},"385":"NQPConcreteRoleHOW","384":{"name":"new","line":204,"file":"gen/moar/stage2/nqpmo.nqp"},"383":"q","382":{"name":"new_type","line":226,"file":"gen/moar/stage2/nqpmo.nqp"},"381":{"name":"","line":5508,"file":"gen/moar/Grammar.nqp"},"380":{"name":"specialize","line":582,"file":"gen/moar/stage2/nqpmo.nqp"},"38":{"name":"type_check_parents","line":3289,"file":"gen/moar/Metamodel.nqp"},"379":{"name":"compose","line":854,"file":"gen/moar/stage2/nqpmo.nqp"},"378":{"name":"add_role","line":844,"file":"gen/moar/stage2/nqpmo.nqp"},"377":{"name":"add_parent","line":801,"file":"gen/moar/stage2/nqpmo.nqp"},"376":{"name":"set_is_mixin","line":1396,"file":"gen/moar/stage2/nqpmo.nqp"},"375":{"name":"BUILD","line":719,"file":"gen/moar/stage2/nqpmo.nqp"},"374":"NQPClassHOW","373":{"name":"new","line":713,"file":"gen/moar/stage2/nqpmo.nqp"},"372":"Perl6::QGrammar+{q}","371":{"name":"new_type","line":739,"file":"gen/moar/stage2/nqpmo.nqp"},"370":{"name":"name","line":635,"file":"gen/moar/stage2/nqpmo.nqp"},"37":{"name":"!get_nonsignatured_candidate","line":3651,"file":"gen/moar/Metamodel.nqp"},"369":{"name":"flush_cache","line":1371,"file":"gen/moar/stage2/nqpmo.nqp"},"368":{"name":"","line":1404,"file":"gen/moar/stage2/nqpmo.nqp"},"367":{"name":"mixin","line":1399,"file":"gen/moar/stage2/nqpmo.nqp"},"366":{"name":"apply_tweak","line":5651,"file":"gen/moar/Grammar.nqp"},"365":{"name":"truly","line":5646,"file":"gen/moar/Grammar.nqp"},"364":{"name":"tweak_q","line":5657,"file":"gen/moar/Grammar.nqp"},"363":"Perl6::QGrammar","362":{"name":"con_lang","line":84,"file":"gen/moar/Grammar.nqp"},"361":{"name":"quote_lang_cache","line":5675,"file":"gen/moar/World.nqp"},"360":{"name":"name","line":1271,"file":"gen/moar/stage2/nqpmo.nqp"},"36":{"name":"pretending_to_be","line":339,"file":"gen/moar/Metamodel.nqp"},"359":{"name":"lang_key","line":68,"file":"gen/moar/Grammar.nqp"},"358":{"name":"quote_lang","line":67,"file":"gen/moar/Grammar.nqp"},"357":{"name":"quote:sym<apos>","line":-1,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/perl6/lib/Perl6/Grammar.moarvm"},"356":{"name":"quote","line":-1,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/perl6/lib/Perl6/Grammar.moarvm"},"355":{"name":"value:sym<quote>","line":-1,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/perl6/lib/Perl6/Grammar.moarvm"},"354":{"name":"value","line":-1,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/perl6/lib/Perl6/Grammar.moarvm"},"353":{"name":"term:sym<value>","line":-1,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/perl6/lib/Perl6/Grammar.moarvm"},"352":{"name":"stdstopper","line":-1,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/perl6/lib/Perl6/Grammar.moarvm"},"351":{"name":"!cursor_pos","line":1613,"file":"gen/moar/stage2/QRegex.nqp"},"350":{"name":"from","line":1146,"file":"gen/moar/stage2/QRegex.nqp"},"35":{"name":"type_check","line":3579,"file":"gen/moar/Metamodel.nqp"},"349":{"name":"arglist","line":-1,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/perl6/lib/Perl6/Grammar.moarvm"},"348":{"name":"args","line":-1,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/perl6/lib/Perl6/Grammar.moarvm"},"347":{"name":"is_lexical","line":366,"file":"gen/moar/World.nqp"},"346":{"name":"is_lexical","line":5179,"file":"gen/moar/World.nqp"},"345":{"name":"","line":-1,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/perl6/lib/Perl6/World.moarvm"},"344":{"name":"is_pseudo_package","line":4633,"file":"gen/moar/World.nqp"},"343":{"name":"is_pseudo_package","line":4775,"file":"gen/moar/World.nqp"},"342":{"name":"is_name","line":4780,"file":"gen/moar/World.nqp"},"341":{"name":"","line":-1,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/perl6/lib/Perl6/World.moarvm"},"340":{"name":"package","line":1354,"file":"gen/moar/stage2/QRegex.nqp"},"34":{"name":"is_narrower","line":2310,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"339":{"name":"find_symbol","line":5014,"file":"gen/moar/World.nqp"},"338":{"name":"is_type","line":4805,"file":"gen/moar/World.nqp"},"337":{"name":"components","line":4510,"file":"gen/moar/World.nqp"},"336":{"name":"get_who","line":4607,"file":"gen/moar/World.nqp"},"335":{"name":"contains_indirect_lookup","line":4528,"file":"gen/moar/World.nqp"},"334":{"name":"push","line":728,"file":"gen/moar/stage2/NQPCORE.setting"},"333":{"name":"to","line":1148,"file":"gen/moar/stage2/QRegex.nqp"},"332":{"name":"Str","line":1151,"file":"gen/moar/stage2/QRegex.nqp"},"331":{"name":"Bool","line":1128,"file":"gen/moar/stage2/QRegex.nqp"},"330":"LongName","33":{"name":"target_type","line":4788,"file":"gen/moar/Metamodel.nqp"},"329":{"name":"dissect_longname","line":4688,"file":"gen/moar/World.nqp"},"328":{"name":"","line":-1,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/perl6/lib/Perl6/Grammar.moarvm"},"327":{"name":"name","line":2754,"file":"gen/moar/Actions.nqp"},"326":{"name":"morename","line":592,"file":"gen/moar/Grammar.nqp"},"325":{"name":"apostrophe","line":-1,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/perl6/lib/Perl6/Grammar.moarvm"},"324":{"name":"!cursor_pass_quick","line":1598,"file":"gen/moar/stage2/QRegex.nqp"},"323":{"name":"ident","line":2008,"file":"gen/moar/stage2/QRegex.nqp"},"322":{"name":"identifier","line":-1,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/perl6/lib/Perl6/Grammar.moarvm"},"321":{"name":"name","line":-1,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/perl6/lib/Perl6/Grammar.moarvm"},"320":{"name":"longname","line":597,"file":"gen/moar/Grammar.nqp"},"32":{"name":"constraint_type","line":4792,"file":"gen/moar/Metamodel.nqp"},"319":{"name":"term:sym<name>","line":3156,"file":"gen/moar/Grammar.nqp"},"318":{"name":"states","line":119,"file":"gen/moar/stage2/QRegex.nqp"},"317":{"name":"run","line":735,"file":"gen/moar/stage2/QRegex.nqp"},"316":{"name":"!protoregex","line":1676,"file":"gen/moar/stage2/QRegex.nqp"},"315":{"name":"term","line":-1,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/perl6/lib/Perl6/Grammar.moarvm"},"314":{"name":"arg_flat_nok","line":3750,"file":"gen/moar/Grammar.nqp"},"313":{"name":"termish","line":3717,"file":"gen/moar/Grammar.nqp"},"312":{"name":"EXPR","line":1222,"file":"gen/moar/stage2/NQPHLL.nqp"},"311":{"name":"EXPR","line":3760,"file":"gen/moar/Grammar.nqp"},"310":{"name":"stopper","line":-1,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/perl6/lib/Perl6/Grammar.moarvm"},"31":{"name":"archetypes","line":4739,"file":"gen/moar/Metamodel.nqp"},"309":{"name":"","line":-1,"file":"/tmp/whateverable/rakudo-moar/34faae566b713e83b7291dfae716cb8bd161e040/share/perl6/lib/Perl6/Grammar.moarvm"},"308":{"name":"before","line":1924,"file":"gen/moar/stage2/QRegex.nqp"},"307":{"name":"statement","line":959,"file":"gen/moar/Grammar.nqp"},"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":58879,"thread":1,"start_time":0,"spesh_time":10012,"parent":0,"gcs":[],"call_graph":{"inclusive_time":48029,"id":"0","highest_child_id":3259,"first_entry_time":0,"exclusive_time":38,"entries":1,"callees":[{"inclusive_time":47990,"id":"1","highest_child_id":3259,"first_entry_time":38,"exclusive_time":28,"entries":1,"callees":[{"inclusive_time":47961,"id":"4","highest_child_id":3259,"first_entry_time":66,"exclusive_time":36,"entries":1,"callees":[{"inclusive_time":47765,"id":"5","highest_child_id":3234,"first_entry_time":100,"exclusive_time":203,"entries":1,"callees":[{"inclusive_time":421,"id":"9","highest_child_id":11,"first_entry_time":302,"exclusive_time":41,"entries":1,"callees":[{"inclusive_time":378,"id":"11","highest_child_id":10,"first_entry_time":331,"exclusive_time":46,"entries":1,"callees":[{"inclusive_time":331,"id":"12","highest_child_id":10,"first_entry_time":377,"exclusive_time":118,"entries":1,"callees":[{"inclusive_time":213,"id":"14","highest_child_id":10,"first_entry_time":495,"exclusive_time":173,"entries":1,"callees":[{"inclusive_time":38,"id":"15","highest_child_id":9,"first_entry_time":644,"exclusive_time":36,"entries":3,"callees":[{"inclusive_time":2,"id":"17","highest_child_id":9,"first_entry_time":660,"exclusive_time":2,"entries":3,"allocations":[{"id":"18","count":3}]}],"allocations":[{"id":"2","count":9},{"id":"16","count":3}]},{"inclusive_time":1,"id":"19","highest_child_id":10,"first_entry_time":685,"exclusive_time":1,"entries":2}]}],"allocations":[{"id":"13","count":2}]}]},{"inclusive_time":2,"id":"20","highest_child_id":11,"first_entry_time":720,"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":47139,"id":"22","highest_child_id":3234,"first_entry_time":725,"exclusive_time":562,"entries":1,"callees":[{"inclusive_time":6272,"id":"23","highest_child_id":237,"first_entry_time":743,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":4779,"id":"9","highest_child_id":148,"first_entry_time":746,"exclusive_time":194,"entries":1,"callees":[{"inclusive_time":1440,"id":"24","highest_child_id":27,"first_entry_time":901,"exclusive_time":827,"entries":1,"callees":[{"inclusive_time":1,"id":"29","highest_child_id":16,"first_entry_time":1329,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"30","highest_child_id":17,"first_entry_time":1338,"exclusive_time":1,"entries":4},{"inclusive_time":3,"id":"17","highest_child_id":18,"first_entry_time":1342,"exclusive_time":2,"entries":4,"allocations":[{"id":"18","count":4}]},{"inclusive_time":1,"id":"31","highest_child_id":19,"first_entry_time":1370,"exclusive_time":1,"entries":3},{"inclusive_time":1,"id":"32","highest_child_id":20,"first_entry_time":1379,"exclusive_time":0,"entries":3},{"inclusive_time":1,"id":"33","highest_child_id":21,"first_entry_time":1389,"exclusive_time":0,"entries":3},{"inclusive_time":614,"id":"34","highest_child_id":27,"first_entry_time":1568,"exclusive_time":241,"entries":56,"callees":[{"inclusive_time":367,"id":"35","highest_child_id":27,"first_entry_time":1671,"exclusive_time":262,"entries":24,"callees":[{"inclusive_time":6,"id":"36","highest_child_id":24,"first_entry_time":1684,"exclusive_time":2,"entries":24},{"inclusive_time":4,"id":"37","highest_child_id":25,"first_entry_time":1723,"exclusive_time":3,"entries":6},{"inclusive_time":95,"id":"38","highest_child_id":27,"first_entry_time":1871,"exclusive_time":83,"entries":6,"callees":[{"inclusive_time":11,"id":"39","highest_child_id":27,"first_entry_time":1946,"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":3140,"id":"11","highest_child_id":147,"first_entry_time":2377,"exclusive_time":38,"entries":1,"callees":[{"inclusive_time":3101,"id":"12","highest_child_id":147,"first_entry_time":2415,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":3096,"id":"14","highest_child_id":147,"first_entry_time":2420,"exclusive_time":27,"entries":1,"callees":[{"inclusive_time":3068,"id":"15","highest_child_id":147,"first_entry_time":2428,"exclusive_time":175,"entries":2,"callees":[{"inclusive_time":18,"id":"40","highest_child_id":38,"first_entry_time":2456,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"33","highest_child_id":33,"first_entry_time":2458,"exclusive_time":0,"entries":1},{"inclusive_time":13,"id":"35","highest_child_id":38,"first_entry_time":2461,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":0,"id":"36","highest_child_id":35,"first_entry_time":2462,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"37","highest_child_id":36,"first_entry_time":2466,"exclusive_time":1,"entries":1},{"inclusive_time":4,"id":"38","highest_child_id":38,"first_entry_time":2469,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":2,"id":"39","highest_child_id":38,"first_entry_time":2470,"exclusive_time":2,"entries":1}],"allocations":[{"id":"25","count":1}]}],"allocations":[{"id":"25","count":2}]}]},{"inclusive_time":4,"id":"41","highest_child_id":41,"first_entry_time":2491,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":0,"id":"33","highest_child_id":40,"first_entry_time":2493,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"32","highest_child_id":41,"first_entry_time":2495,"exclusive_time":0,"entries":1}]},{"inclusive_time":2,"id":"17","highest_child_id":42,"first_entry_time":2498,"exclusive_time":2,"entries":2,"allocations":[{"id":"18","count":2}]},{"inclusive_time":2867,"id":"42","highest_child_id":147,"first_entry_time":2612,"exclusive_time":74,"entries":1,"callees":[{"inclusive_time":1,"id":"29","highest_child_id":44,"first_entry_time":2620,"exclusive_time":0,"entries":2},{"inclusive_time":0,"id":"30","highest_child_id":45,"first_entry_time":2624,"exclusive_time":0,"entries":1},{"inclusive_time":2791,"id":"43","highest_child_id":147,"first_entry_time":2687,"exclusive_time":52,"entries":1,"callees":[{"inclusive_time":2,"id":"44","highest_child_id":47,"first_entry_time":2702,"exclusive_time":2,"entries":1},{"inclusive_time":2736,"id":"45","highest_child_id":147,"first_entry_time":2741,"exclusive_time":47,"entries":1,"callees":[{"inclusive_time":1,"id":"46","highest_child_id":49,"first_entry_time":2753,"exclusive_time":1,"entries":1,"allocations":[{"id":"47","count":1}]},{"inclusive_time":110,"id":"9","highest_child_id":56,"first_entry_time":2760,"exclusive_time":16,"entries":1,"callees":[{"inclusive_time":91,"id":"24","highest_child_id":55,"first_entry_time":2764,"exclusive_time":68,"entries":1,"callees":[{"inclusive_time":1,"id":"29","highest_child_id":52,"first_entry_time":2774,"exclusive_time":0,"entries":3},{"inclusive_time":2,"id":"30","highest_child_id":53,"first_entry_time":2775,"exclusive_time":1,"entries":3},{"inclusive_time":2,"id":"17","highest_child_id":54,"first_entry_time":2779,"exclusive_time":2,"entries":3,"allocations":[{"id":"18","count":3}]},{"inclusive_time":19,"id":"34","highest_child_id":55,"first_entry_time":2811,"exclusive_time":18,"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":2867,"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":2577,"id":"48","highest_child_id":147,"first_entry_time":2900,"exclusive_time":683,"entries":1,"callees":[{"inclusive_time":1892,"id":"49","highest_child_id":145,"first_entry_time":3580,"exclusive_time":72,"entries":1,"callees":[{"inclusive_time":1,"id":"46","highest_child_id":59,"first_entry_time":3584,"exclusive_time":1,"entries":1,"allocations":[{"id":"47","count":1}]},{"inclusive_time":444,"id":"9","highest_child_id":66,"first_entry_time":3600,"exclusive_time":35,"entries":1,"callees":[{"inclusive_time":406,"id":"24","highest_child_id":65,"first_entry_time":3606,"exclusive_time":300,"entries":1,"callees":[{"inclusive_time":4,"id":"29","highest_child_id":62,"first_entry_time":3717,"exclusive_time":2,"entries":10},{"inclusive_time":5,"id":"30","highest_child_id":63,"first_entry_time":3720,"exclusive_time":4,"entries":10},{"inclusive_time":10,"id":"17","highest_child_id":64,"first_entry_time":3724,"exclusive_time":9,"entries":10,"allocations":[{"id":"18","count":10}]},{"inclusive_time":95,"id":"34","highest_child_id":65,"first_entry_time":3846,"exclusive_time":90,"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":4041,"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":1373,"id":"50","highest_child_id":145,"first_entry_time":4098,"exclusive_time":83,"entries":1,"callees":[{"inclusive_time":1105,"id":"52","highest_child_id":119,"first_entry_time":4155,"exclusive_time":67,"entries":2,"callees":[{"inclusive_time":1038,"id":"54","highest_child_id":119,"first_entry_time":4225,"exclusive_time":59,"entries":1,"callees":[{"inclusive_time":1,"id":"55","highest_child_id":70,"first_entry_time":4255,"exclusive_time":1,"entries":1},{"inclusive_time":976,"id":"56","highest_child_id":119,"first_entry_time":4286,"exclusive_time":38,"entries":1,"callees":[{"inclusive_time":684,"id":"49","highest_child_id":108,"first_entry_time":4305,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":1,"id":"46","highest_child_id":73,"first_entry_time":4310,"exclusive_time":1,"entries":1,"allocations":[{"id":"47","count":1}]},{"inclusive_time":268,"id":"9","highest_child_id":85,"first_entry_time":4315,"exclusive_time":28,"entries":1,"callees":[{"inclusive_time":236,"id":"11","highest_child_id":84,"first_entry_time":4338,"exclusive_time":51,"entries":1,"callees":[{"inclusive_time":185,"id":"12","highest_child_id":84,"first_entry_time":4389,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":179,"id":"14","highest_child_id":84,"first_entry_time":4394,"exclusive_time":24,"entries":1,"callees":[{"inclusive_time":97,"id":"15","highest_child_id":80,"first_entry_time":4401,"exclusive_time":89,"entries":5,"callees":[{"inclusive_time":5,"id":"17","highest_child_id":79,"first_entry_time":4409,"exclusive_time":4,"entries":5,"allocations":[{"id":"18","count":5}]},{"inclusive_time":2,"id":"58","highest_child_id":80,"first_entry_time":4446,"exclusive_time":2,"entries":1}],"allocations":[{"id":"2","count":15},{"id":"16","count":3}]},{"inclusive_time":58,"id":"19","highest_child_id":84,"first_entry_time":4478,"exclusive_time":37,"entries":1,"callees":[{"inclusive_time":3,"id":"59","highest_child_id":82,"first_entry_time":4500,"exclusive_time":2,"entries":1,"allocations":[{"id":"60","count":1},{"id":"2","count":1}]},{"inclusive_time":17,"id":"61","highest_child_id":84,"first_entry_time":4518,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":14,"id":"52","highest_child_id":84,"first_entry_time":4520,"exclusive_time":14,"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":4579,"exclusive_time":3,"entries":1}],"allocations":[{"id":"2","count":1},{"id":"10","count":2},{"id":"6","count":1},{"id":"8","count":1}]},{"inclusive_time":403,"id":"62","highest_child_id":108,"first_entry_time":4586,"exclusive_time":218,"entries":1,"callees":[{"inclusive_time":2,"id":"59","highest_child_id":87,"first_entry_time":4590,"exclusive_time":2,"entries":1,"allocations":[{"id":"60","count":1},{"id":"2","count":1}]},{"inclusive_time":13,"id":"61","highest_child_id":89,"first_entry_time":4593,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":11,"id":"52","highest_child_id":89,"first_entry_time":4595,"exclusive_time":11,"entries":1,"allocations":[{"id":"53","count":1}]}]},{"inclusive_time":46,"id":"63","highest_child_id":94,"first_entry_time":4629,"exclusive_time":20,"entries":1,"callees":[{"inclusive_time":1,"id":"46","highest_child_id":91,"first_entry_time":4631,"exclusive_time":1,"entries":1,"allocations":[{"id":"47","count":1}]},{"inclusive_time":23,"id":"9","highest_child_id":93,"first_entry_time":4636,"exclusive_time":15,"entries":1,"callees":[{"inclusive_time":7,"id":"20","highest_child_id":93,"first_entry_time":4651,"exclusive_time":7,"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":4673,"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":22,"id":"65","highest_child_id":96,"first_entry_time":4740,"exclusive_time":20,"entries":1,"callees":[{"inclusive_time":2,"id":"66","highest_child_id":96,"first_entry_time":4755,"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":4792,"exclusive_time":3,"entries":1},{"inclusive_time":1,"id":"68","highest_child_id":98,"first_entry_time":4804,"exclusive_time":0,"entries":2},{"inclusive_time":96,"id":"69","highest_child_id":108,"first_entry_time":4889,"exclusive_time":76,"entries":1,"callees":[{"inclusive_time":1,"id":"70","highest_child_id":100,"first_entry_time":4900,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"30","highest_child_id":101,"first_entry_time":4902,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"71","highest_child_id":102,"first_entry_time":4928,"exclusive_time":1,"entries":1},{"inclusive_time":12,"id":"72","highest_child_id":104,"first_entry_time":4942,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":1,"id":"73","highest_child_id":104,"first_entry_time":4953,"exclusive_time":1,"entries":1}]},{"inclusive_time":2,"id":"74","highest_child_id":106,"first_entry_time":4966,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"73","highest_child_id":106,"first_entry_time":4967,"exclusive_time":0,"entries":1}]},{"inclusive_time":0,"id":"29","highest_child_id":107,"first_entry_time":4970,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"75","highest_child_id":108,"first_entry_time":4981,"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":253,"id":"76","highest_child_id":119,"first_entry_time":5009,"exclusive_time":24,"entries":1,"callees":[{"inclusive_time":57,"id":"9","highest_child_id":111,"first_entry_time":5016,"exclusive_time":47,"entries":1,"callees":[{"inclusive_time":9,"id":"20","highest_child_id":111,"first_entry_time":5062,"exclusive_time":9,"entries":1}],"allocations":[{"id":"2","count":1},{"id":"10","count":2},{"id":"6","count":1}]},{"inclusive_time":171,"id":"77","highest_child_id":119,"first_entry_time":5090,"exclusive_time":18,"entries":1,"callees":[{"inclusive_time":153,"id":"78","highest_child_id":119,"first_entry_time":5108,"exclusive_time":34,"entries":1,"callees":[{"inclusive_time":1,"id":"46","highest_child_id":114,"first_entry_time":5111,"exclusive_time":1,"entries":1,"allocations":[{"id":"47","count":1}]},{"inclusive_time":31,"id":"9","highest_child_id":116,"first_entry_time":5117,"exclusive_time":28,"entries":1,"callees":[{"inclusive_time":2,"id":"20","highest_child_id":116,"first_entry_time":5144,"exclusive_time":2,"entries":1}],"allocations":[{"id":"2","count":2},{"id":"10","count":2},{"id":"6","count":1}]},{"inclusive_time":86,"id":"79","highest_child_id":119,"first_entry_time":5175,"exclusive_time":79,"entries":1,"callees":[{"inclusive_time":6,"id":"80","highest_child_id":118,"first_entry_time":5238,"exclusive_time":6,"entries":1},{"inclusive_time":1,"id":"81","highest_child_id":119,"first_entry_time":5260,"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":147,"id":"63","highest_child_id":131,"first_entry_time":5265,"exclusive_time":26,"entries":1,"callees":[{"inclusive_time":1,"id":"46","highest_child_id":121,"first_entry_time":5268,"exclusive_time":1,"entries":1,"allocations":[{"id":"47","count":1}]},{"inclusive_time":110,"id":"9","highest_child_id":128,"first_entry_time":5273,"exclusive_time":14,"entries":1,"callees":[{"inclusive_time":93,"id":"24","highest_child_id":127,"first_entry_time":5277,"exclusive_time":69,"entries":1,"callees":[{"inclusive_time":1,"id":"29","highest_child_id":124,"first_entry_time":5287,"exclusive_time":0,"entries":3},{"inclusive_time":2,"id":"30","highest_child_id":125,"first_entry_time":5288,"exclusive_time":1,"entries":3},{"inclusive_time":2,"id":"17","highest_child_id":126,"first_entry_time":5292,"exclusive_time":2,"entries":3,"allocations":[{"id":"18","count":3}]},{"inclusive_time":20,"id":"34","highest_child_id":127,"first_entry_time":5329,"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":128,"first_entry_time":5380,"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":5404,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":2,"id":"67","highest_child_id":130,"first_entry_time":5408,"exclusive_time":2,"entries":1},{"inclusive_time":0,"id":"68","highest_child_id":131,"first_entry_time":5412,"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":10,"id":"65","highest_child_id":133,"first_entry_time":5414,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":2,"id":"66","highest_child_id":133,"first_entry_time":5418,"exclusive_time":1,"entries":2,"allocations":[{"id":"6","count":2}]}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":2,"id":"67","highest_child_id":134,"first_entry_time":5435,"exclusive_time":2,"entries":1},{"inclusive_time":0,"id":"68","highest_child_id":135,"first_entry_time":5440,"exclusive_time":0,"entries":2},{"inclusive_time":24,"id":"69","highest_child_id":145,"first_entry_time":5446,"exclusive_time":13,"entries":1,"callees":[{"inclusive_time":0,"id":"70","highest_child_id":137,"first_entry_time":5448,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"30","highest_child_id":138,"first_entry_time":5450,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"71","highest_child_id":139,"first_entry_time":5453,"exclusive_time":0,"entries":1},{"inclusive_time":5,"id":"72","highest_child_id":141,"first_entry_time":5455,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"73","highest_child_id":141,"first_entry_time":5459,"exclusive_time":0,"entries":1}]},{"inclusive_time":2,"id":"74","highest_child_id":143,"first_entry_time":5462,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"73","highest_child_id":143,"first_entry_time":5463,"exclusive_time":0,"entries":1}]},{"inclusive_time":0,"id":"29","highest_child_id":144,"first_entry_time":5466,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"75","highest_child_id":145,"first_entry_time":5467,"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":5474,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"68","highest_child_id":147,"first_entry_time":5477,"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":5521,"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":1487,"id":"83","highest_child_id":237,"first_entry_time":5527,"exclusive_time":40,"entries":1,"callees":[{"inclusive_time":4,"id":"41","highest_child_id":152,"first_entry_time":5530,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":0,"id":"33","highest_child_id":151,"first_entry_time":5532,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"32","highest_child_id":152,"first_entry_time":5534,"exclusive_time":0,"entries":1}]},{"inclusive_time":69,"id":"42","highest_child_id":166,"first_entry_time":5538,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":0,"id":"29","highest_child_id":154,"first_entry_time":5541,"exclusive_time":0,"entries":2},{"inclusive_time":0,"id":"30","highest_child_id":155,"first_entry_time":5544,"exclusive_time":0,"entries":1},{"inclusive_time":59,"id":"43","highest_child_id":166,"first_entry_time":5547,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":2,"id":"44","highest_child_id":157,"first_entry_time":5554,"exclusive_time":1,"entries":1},{"inclusive_time":46,"id":"48","highest_child_id":166,"first_entry_time":5559,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":41,"id":"50","highest_child_id":165,"first_entry_time":5562,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":18,"id":"52","highest_child_id":160,"first_entry_time":5565,"exclusive_time":17,"entries":2,"allocations":[{"id":"53","count":2}]},{"inclusive_time":3,"id":"82","highest_child_id":162,"first_entry_time":5587,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":0,"id":"68","highest_child_id":162,"first_entry_time":5589,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":9,"id":"65","highest_child_id":164,"first_entry_time":5592,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":1,"id":"66","highest_child_id":164,"first_entry_time":5595,"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":5602,"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":5604,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1}]}]}]},{"inclusive_time":1371,"id":"84","highest_child_id":235,"first_entry_time":5637,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":275,"id":"9","highest_child_id":180,"first_entry_time":5644,"exclusive_time":24,"entries":1,"callees":[{"inclusive_time":114,"id":"24","highest_child_id":173,"first_entry_time":5648,"exclusive_time":81,"entries":1,"callees":[{"inclusive_time":1,"id":"29","highest_child_id":170,"first_entry_time":5657,"exclusive_time":1,"entries":3},{"inclusive_time":2,"id":"30","highest_child_id":171,"first_entry_time":5659,"exclusive_time":1,"entries":3},{"inclusive_time":2,"id":"17","highest_child_id":172,"first_entry_time":5663,"exclusive_time":2,"entries":3,"allocations":[{"id":"18","count":3}]},{"inclusive_time":28,"id":"34","highest_child_id":173,"first_entry_time":5714,"exclusive_time":27,"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":133,"id":"11","highest_child_id":179,"first_entry_time":5779,"exclusive_time":71,"entries":1,"callees":[{"inclusive_time":62,"id":"12","highest_child_id":179,"first_entry_time":5849,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":56,"id":"14","highest_child_id":179,"first_entry_time":5855,"exclusive_time":16,"entries":1,"callees":[{"inclusive_time":40,"id":"15","highest_child_id":179,"first_entry_time":5861,"exclusive_time":35,"entries":3,"callees":[{"inclusive_time":2,"id":"58","highest_child_id":178,"first_entry_time":5867,"exclusive_time":2,"entries":1},{"inclusive_time":3,"id":"17","highest_child_id":179,"first_entry_time":5871,"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":2,"id":"20","highest_child_id":180,"first_entry_time":5916,"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":1087,"id":"85","highest_child_id":235,"first_entry_time":5921,"exclusive_time":88,"entries":1,"callees":[{"inclusive_time":717,"id":"86","highest_child_id":230,"first_entry_time":5950,"exclusive_time":37,"entries":1,"callees":[{"inclusive_time":1,"id":"46","highest_child_id":183,"first_entry_time":5953,"exclusive_time":0,"entries":1,"allocations":[{"id":"47","count":1}]},{"inclusive_time":70,"id":"9","highest_child_id":190,"first_entry_time":5958,"exclusive_time":15,"entries":1,"callees":[{"inclusive_time":53,"id":"24","highest_child_id":189,"first_entry_time":5962,"exclusive_time":44,"entries":1,"callees":[{"inclusive_time":1,"id":"29","highest_child_id":186,"first_entry_time":5970,"exclusive_time":0,"entries":3},{"inclusive_time":2,"id":"30","highest_child_id":187,"first_entry_time":5972,"exclusive_time":1,"entries":3},{"inclusive_time":2,"id":"17","highest_child_id":188,"first_entry_time":5975,"exclusive_time":2,"entries":3,"allocations":[{"id":"18","count":3}]},{"inclusive_time":4,"id":"34","highest_child_id":189,"first_entry_time":6005,"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":6026,"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":608,"id":"87","highest_child_id":230,"first_entry_time":6059,"exclusive_time":267,"entries":1,"callees":[{"inclusive_time":323,"id":"88","highest_child_id":218,"first_entry_time":6320,"exclusive_time":199,"entries":1,"callees":[{"inclusive_time":5,"id":"41","highest_child_id":195,"first_entry_time":6325,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"33","highest_child_id":194,"first_entry_time":6326,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"32","highest_child_id":195,"first_entry_time":6329,"exclusive_time":0,"entries":1}]},{"inclusive_time":27,"id":"80","highest_child_id":199,"first_entry_time":6335,"exclusive_time":24,"entries":2,"callees":[{"inclusive_time":1,"id":"89","highest_child_id":197,"first_entry_time":6349,"exclusive_time":1,"entries":2},{"inclusive_time":0,"id":"29","highest_child_id":198,"first_entry_time":6352,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"75","highest_child_id":199,"first_entry_time":6353,"exclusive_time":0,"entries":2}]},{"inclusive_time":1,"id":"81","highest_child_id":200,"first_entry_time":6359,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"64","highest_child_id":201,"first_entry_time":6364,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":87,"id":"90","highest_child_id":216,"first_entry_time":6551,"exclusive_time":57,"entries":1,"callees":[{"inclusive_time":1,"id":"64","highest_child_id":203,"first_entry_time":6562,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":2,"id":"67","highest_child_id":204,"first_entry_time":6579,"exclusive_time":2,"entries":1},{"inclusive_time":4,"id":"92","highest_child_id":205,"first_entry_time":6607,"exclusive_time":4,"entries":1},{"inclusive_time":21,"id":"69","highest_child_id":215,"first_entry_time":6615,"exclusive_time":12,"entries":1,"callees":[{"inclusive_time":1,"id":"70","highest_child_id":207,"first_entry_time":6617,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"30","highest_child_id":208,"first_entry_time":6619,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"71","highest_child_id":209,"first_entry_time":6622,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"72","highest_child_id":211,"first_entry_time":6624,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"73","highest_child_id":211,"first_entry_time":6625,"exclusive_time":0,"entries":1}]},{"inclusive_time":2,"id":"74","highest_child_id":213,"first_entry_time":6628,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"73","highest_child_id":213,"first_entry_time":6629,"exclusive_time":0,"entries":1}]},{"inclusive_time":0,"id":"29","highest_child_id":214,"first_entry_time":6631,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"75","highest_child_id":215,"first_entry_time":6632,"exclusive_time":0,"entries":1}]},{"inclusive_time":0,"id":"68","highest_child_id":216,"first_entry_time":6637,"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":6640,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"68","highest_child_id":218,"first_entry_time":6643,"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":6645,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"68","highest_child_id":220,"first_entry_time":6648,"exclusive_time":0,"entries":2},{"inclusive_time":15,"id":"69","highest_child_id":230,"first_entry_time":6649,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":0,"id":"70","highest_child_id":222,"first_entry_time":6651,"exclusive_time":0,"entries":2},{"inclusive_time":0,"id":"30","highest_child_id":223,"first_entry_time":6652,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"71","highest_child_id":224,"first_entry_time":6654,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"72","highest_child_id":226,"first_entry_time":6656,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"73","highest_child_id":226,"first_entry_time":6657,"exclusive_time":0,"entries":1}]},{"inclusive_time":1,"id":"74","highest_child_id":228,"first_entry_time":6659,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"73","highest_child_id":228,"first_entry_time":6660,"exclusive_time":0,"entries":1}]},{"inclusive_time":0,"id":"29","highest_child_id":229,"first_entry_time":6662,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"75","highest_child_id":230,"first_entry_time":6663,"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":277,"id":"93","highest_child_id":233,"first_entry_time":6714,"exclusive_time":88,"entries":1,"callees":[{"inclusive_time":188,"id":"95","highest_child_id":233,"first_entry_time":6794,"exclusive_time":184,"entries":1,"callees":[{"inclusive_time":4,"id":"97","highest_child_id":233,"first_entry_time":6926,"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":6995,"exclusive_time":3,"entries":1},{"inclusive_time":0,"id":"68","highest_child_id":235,"first_entry_time":7001,"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":1,"id":"67","highest_child_id":236,"first_entry_time":7011,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"68","highest_child_id":237,"first_entry_time":7014,"exclusive_time":0,"entries":1}],"allocations":[{"id":"16","count":1}]}],"allocations":[{"id":"8","count":3}]},{"inclusive_time":15,"id":"98","highest_child_id":240,"first_entry_time":7228,"exclusive_time":12,"entries":1,"callees":[{"inclusive_time":2,"id":"67","highest_child_id":239,"first_entry_time":7238,"exclusive_time":2,"entries":1},{"inclusive_time":0,"id":"68","highest_child_id":240,"first_entry_time":7243,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1},{"id":"7","count":1},{"id":"99","count":1},{"id":"13","count":2}]},{"inclusive_time":1092,"id":"76","highest_child_id":271,"first_entry_time":7248,"exclusive_time":22,"entries":1,"callees":[{"inclusive_time":175,"id":"9","highest_child_id":243,"first_entry_time":7254,"exclusive_time":172,"entries":1,"callees":[{"inclusive_time":3,"id":"20","highest_child_id":243,"first_entry_time":7425,"exclusive_time":2,"entries":1}],"allocations":[{"id":"2","count":2},{"id":"10","count":3},{"id":"6","count":2}]},{"inclusive_time":894,"id":"100","highest_child_id":271,"first_entry_time":7446,"exclusive_time":18,"entries":1,"callees":[{"inclusive_time":876,"id":"101","highest_child_id":271,"first_entry_time":7464,"exclusive_time":114,"entries":1,"callees":[{"inclusive_time":1,"id":"46","highest_child_id":246,"first_entry_time":7467,"exclusive_time":1,"entries":1,"allocations":[{"id":"47","count":1}]},{"inclusive_time":412,"id":"9","highest_child_id":256,"first_entry_time":7476,"exclusive_time":18,"entries":1,"callees":[{"inclusive_time":388,"id":"24","highest_child_id":255,"first_entry_time":7480,"exclusive_time":256,"entries":1,"callees":[{"inclusive_time":3,"id":"29","highest_child_id":249,"first_entry_time":7490,"exclusive_time":2,"entries":9},{"inclusive_time":5,"id":"30","highest_child_id":250,"first_entry_time":7492,"exclusive_time":4,"entries":10},{"inclusive_time":7,"id":"17","highest_child_id":251,"first_entry_time":7496,"exclusive_time":5,"entries":10,"allocations":[{"id":"18","count":10}]},{"inclusive_time":1,"id":"31","highest_child_id":252,"first_entry_time":7623,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"32","highest_child_id":253,"first_entry_time":7626,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"33","highest_child_id":254,"first_entry_time":7631,"exclusive_time":0,"entries":1},{"inclusive_time":122,"id":"34","highest_child_id":255,"first_entry_time":7641,"exclusive_time":118,"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":6,"id":"20","highest_child_id":256,"first_entry_time":7881,"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":347,"id":"102","highest_child_id":271,"first_entry_time":7992,"exclusive_time":41,"entries":1,"callees":[{"inclusive_time":5,"id":"41","highest_child_id":260,"first_entry_time":7997,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":0,"id":"33","highest_child_id":259,"first_entry_time":7999,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"32","highest_child_id":260,"first_entry_time":8001,"exclusive_time":0,"entries":1}]},{"inclusive_time":300,"id":"103","highest_child_id":271,"first_entry_time":8039,"exclusive_time":123,"entries":1,"callees":[{"inclusive_time":176,"id":"104","highest_child_id":271,"first_entry_time":8162,"exclusive_time":66,"entries":1,"callees":[{"inclusive_time":75,"id":"106","highest_child_id":265,"first_entry_time":8180,"exclusive_time":55,"entries":1,"callees":[{"inclusive_time":20,"id":"108","highest_child_id":265,"first_entry_time":8235,"exclusive_time":19,"entries":1,"callees":[{"inclusive_time":1,"id":"109","highest_child_id":265,"first_entry_time":8247,"exclusive_time":1,"entries":1}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"107","count":1}]},{"inclusive_time":3,"id":"110","highest_child_id":266,"first_entry_time":8270,"exclusive_time":3,"entries":1},{"inclusive_time":1,"id":"111","highest_child_id":267,"first_entry_time":8289,"exclusive_time":0,"entries":1},{"inclusive_time":30,"id":"112","highest_child_id":271,"first_entry_time":8308,"exclusive_time":26,"entries":1,"callees":[{"inclusive_time":1,"id":"114","highest_child_id":269,"first_entry_time":8317,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"115","highest_child_id":270,"first_entry_time":8328,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"44","highest_child_id":271,"first_entry_time":8335,"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":39196,"id":"116","highest_child_id":3232,"first_entry_time":8665,"exclusive_time":1578,"entries":1,"callees":[{"inclusive_time":27,"id":"80","highest_child_id":277,"first_entry_time":8673,"exclusive_time":22,"entries":3,"callees":[{"inclusive_time":1,"id":"89","highest_child_id":274,"first_entry_time":8678,"exclusive_time":1,"entries":3},{"inclusive_time":1,"id":"29","highest_child_id":275,"first_entry_time":8681,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"75","highest_child_id":276,"first_entry_time":8682,"exclusive_time":1,"entries":3},{"inclusive_time":0,"id":"31","highest_child_id":277,"first_entry_time":8702,"exclusive_time":0,"entries":1}]},{"inclusive_time":1,"id":"81","highest_child_id":278,"first_entry_time":8688,"exclusive_time":1,"entries":2},{"inclusive_time":15,"id":"41","highest_child_id":281,"first_entry_time":8692,"exclusive_time":12,"entries":3,"callees":[{"inclusive_time":1,"id":"33","highest_child_id":280,"first_entry_time":8694,"exclusive_time":1,"entries":3},{"inclusive_time":1,"id":"32","highest_child_id":281,"first_entry_time":8695,"exclusive_time":0,"entries":3}]},{"inclusive_time":14,"id":"117","highest_child_id":288,"first_entry_time":8735,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":4,"id":"41","highest_child_id":285,"first_entry_time":8737,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":0,"id":"33","highest_child_id":284,"first_entry_time":8739,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"32","highest_child_id":285,"first_entry_time":8741,"exclusive_time":0,"entries":1}]},{"inclusive_time":0,"id":"31","highest_child_id":286,"first_entry_time":8742,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"30","highest_child_id":287,"first_entry_time":8744,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"42","highest_child_id":288,"first_entry_time":8746,"exclusive_time":2,"entries":1}]},{"inclusive_time":31,"id":"42","highest_child_id":294,"first_entry_time":8769,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":1,"id":"29","highest_child_id":290,"first_entry_time":8772,"exclusive_time":0,"entries":2},{"inclusive_time":0,"id":"30","highest_child_id":291,"first_entry_time":8775,"exclusive_time":0,"entries":1},{"inclusive_time":22,"id":"43","highest_child_id":294,"first_entry_time":8778,"exclusive_time":17,"entries":1,"callees":[{"inclusive_time":2,"id":"44","highest_child_id":293,"first_entry_time":8780,"exclusive_time":2,"entries":1},{"inclusive_time":2,"id":"118","highest_child_id":294,"first_entry_time":8797,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1}]}]}]},{"inclusive_time":3,"id":"66","highest_child_id":295,"first_entry_time":8806,"exclusive_time":2,"entries":3,"allocations":[{"id":"6","count":3}]},{"inclusive_time":111,"id":"119","highest_child_id":310,"first_entry_time":8839,"exclusive_time":31,"entries":1,"callees":[{"inclusive_time":35,"id":"9","highest_child_id":298,"first_entry_time":8846,"exclusive_time":32,"entries":1,"callees":[{"inclusive_time":2,"id":"20","highest_child_id":298,"first_entry_time":8877,"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":44,"id":"120","highest_child_id":310,"first_entry_time":8905,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":36,"id":"69","highest_child_id":309,"first_entry_time":8910,"exclusive_time":27,"entries":1,"callees":[{"inclusive_time":1,"id":"70","highest_child_id":301,"first_entry_time":8913,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"30","highest_child_id":302,"first_entry_time":8914,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"71","highest_child_id":303,"first_entry_time":8917,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"72","highest_child_id":305,"first_entry_time":8919,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"73","highest_child_id":305,"first_entry_time":8920,"exclusive_time":0,"entries":1}]},{"inclusive_time":2,"id":"74","highest_child_id":307,"first_entry_time":8928,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"73","highest_child_id":307,"first_entry_time":8929,"exclusive_time":0,"entries":1}]},{"inclusive_time":1,"id":"121","highest_child_id":308,"first_entry_time":8941,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"75","highest_child_id":309,"first_entry_time":8943,"exclusive_time":0,"entries":1}]},{"inclusive_time":0,"id":"68","highest_child_id":310,"first_entry_time":8949,"exclusive_time":0,"entries":1}]}],"allocations":[{"id":"6","count":1},{"id":"7","count":1},{"id":"8","count":3}]},{"inclusive_time":454,"id":"122","highest_child_id":334,"first_entry_time":10132,"exclusive_time":20,"entries":1,"callees":[{"inclusive_time":2,"id":"17","highest_child_id":312,"first_entry_time":10141,"exclusive_time":2,"entries":1,"allocations":[{"id":"18","count":1}]},{"inclusive_time":1,"id":"46","highest_child_id":313,"first_entry_time":10148,"exclusive_time":1,"entries":1,"allocations":[{"id":"47","count":1}]},{"inclusive_time":361,"id":"9","highest_child_id":330,"first_entry_time":10153,"exclusive_time":29,"entries":1,"callees":[{"inclusive_time":163,"id":"24","highest_child_id":320,"first_entry_time":10157,"exclusive_time":117,"entries":1,"callees":[{"inclusive_time":2,"id":"123","highest_child_id":316,"first_entry_time":10197,"exclusive_time":1,"entries":3},{"inclusive_time":3,"id":"30","highest_child_id":317,"first_entry_time":10199,"exclusive_time":2,"entries":6},{"inclusive_time":4,"id":"17","highest_child_id":318,"first_entry_time":10203,"exclusive_time":3,"entries":6,"allocations":[{"id":"18","count":6}]},{"inclusive_time":1,"id":"29","highest_child_id":319,"first_entry_time":10208,"exclusive_time":0,"entries":3},{"inclusive_time":38,"id":"34","highest_child_id":320,"first_entry_time":10262,"exclusive_time":37,"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":165,"id":"11","highest_child_id":329,"first_entry_time":10341,"exclusive_time":77,"entries":1,"callees":[{"inclusive_time":87,"id":"12","highest_child_id":329,"first_entry_time":10418,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":82,"id":"14","highest_child_id":329,"first_entry_time":10423,"exclusive_time":17,"entries":1,"callees":[{"inclusive_time":63,"id":"15","highest_child_id":328,"first_entry_time":10429,"exclusive_time":45,"entries":4,"callees":[{"inclusive_time":6,"id":"35","highest_child_id":326,"first_entry_time":10435,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":0,"id":"36","highest_child_id":326,"first_entry_time":10437,"exclusive_time":0,"entries":1}],"allocations":[{"id":"25","count":2}]},{"inclusive_time":3,"id":"58","highest_child_id":327,"first_entry_time":10445,"exclusive_time":3,"entries":2},{"inclusive_time":7,"id":"17","highest_child_id":328,"first_entry_time":10449,"exclusive_time":7,"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":10470,"exclusive_time":1,"entries":1}],"allocations":[{"id":"7","count":1}]}],"allocations":[{"id":"13","count":2}]}]},{"inclusive_time":3,"id":"20","highest_child_id":330,"first_entry_time":10511,"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":70,"id":"124","highest_child_id":334,"first_entry_time":10517,"exclusive_time":45,"entries":1,"callees":[{"inclusive_time":24,"id":"125","highest_child_id":334,"first_entry_time":10554,"exclusive_time":21,"entries":1,"callees":[{"inclusive_time":2,"id":"67","highest_child_id":333,"first_entry_time":10574,"exclusive_time":2,"entries":1},{"inclusive_time":0,"id":"68","highest_child_id":334,"first_entry_time":10578,"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":47,"id":"126","highest_child_id":339,"first_entry_time":10622,"exclusive_time":23,"entries":1,"callees":[{"inclusive_time":1,"id":"46","highest_child_id":336,"first_entry_time":10625,"exclusive_time":0,"entries":1,"allocations":[{"id":"47","count":1}]},{"inclusive_time":21,"id":"9","highest_child_id":338,"first_entry_time":10630,"exclusive_time":18,"entries":1,"callees":[{"inclusive_time":2,"id":"20","highest_child_id":338,"first_entry_time":10648,"exclusive_time":2,"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":10667,"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":5,"id":"52","highest_child_id":340,"first_entry_time":10674,"exclusive_time":4,"entries":1},{"inclusive_time":1,"id":"128","highest_child_id":341,"first_entry_time":10690,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":531,"id":"76","highest_child_id":369,"first_entry_time":10696,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":440,"id":"9","highest_child_id":359,"first_entry_time":10703,"exclusive_time":169,"entries":1,"callees":[{"inclusive_time":268,"id":"11","highest_child_id":358,"first_entry_time":10868,"exclusive_time":38,"entries":1,"callees":[{"inclusive_time":229,"id":"12","highest_child_id":358,"first_entry_time":10906,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":224,"id":"14","highest_child_id":358,"first_entry_time":10911,"exclusive_time":15,"entries":1,"callees":[{"inclusive_time":209,"id":"15","highest_child_id":358,"first_entry_time":10917,"exclusive_time":36,"entries":3,"callees":[{"inclusive_time":3,"id":"17","highest_child_id":348,"first_entry_time":10929,"exclusive_time":2,"entries":3,"allocations":[{"id":"18","count":3}]},{"inclusive_time":162,"id":"40","highest_child_id":354,"first_entry_time":10954,"exclusive_time":39,"entries":1,"callees":[{"inclusive_time":0,"id":"33","highest_child_id":350,"first_entry_time":10956,"exclusive_time":0,"entries":1},{"inclusive_time":122,"id":"129","highest_child_id":354,"first_entry_time":10993,"exclusive_time":107,"entries":1,"callees":[{"inclusive_time":4,"id":"130","highest_child_id":352,"first_entry_time":11037,"exclusive_time":4,"entries":1},{"inclusive_time":1,"id":"131","highest_child_id":353,"first_entry_time":11057,"exclusive_time":1,"entries":1},{"inclusive_time":9,"id":"132","highest_child_id":354,"first_entry_time":11100,"exclusive_time":9,"entries":4}],"allocations":[{"id":"25","count":6}]}]},{"inclusive_time":4,"id":"41","highest_child_id":357,"first_entry_time":11118,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"33","highest_child_id":356,"first_entry_time":11120,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"32","highest_child_id":357,"first_entry_time":11122,"exclusive_time":0,"entries":1}]},{"inclusive_time":2,"id":"42","highest_child_id":358,"first_entry_time":11127,"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":3,"id":"20","highest_child_id":359,"first_entry_time":11140,"exclusive_time":2,"entries":1}],"allocations":[{"id":"2","count":2},{"id":"10","count":2},{"id":"6","count":1},{"id":"8","count":1}]},{"inclusive_time":81,"id":"133","highest_child_id":369,"first_entry_time":11146,"exclusive_time":57,"entries":1,"callees":[{"inclusive_time":3,"id":"41","highest_child_id":363,"first_entry_time":11149,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"33","highest_child_id":362,"first_entry_time":11151,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"32","highest_child_id":363,"first_entry_time":11152,"exclusive_time":0,"entries":1}]},{"inclusive_time":19,"id":"134","highest_child_id":369,"first_entry_time":11207,"exclusive_time":12,"entries":1,"callees":[{"inclusive_time":4,"id":"41","highest_child_id":367,"first_entry_time":11210,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":0,"id":"33","highest_child_id":366,"first_entry_time":11211,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"32","highest_child_id":367,"first_entry_time":11213,"exclusive_time":0,"entries":1}]},{"inclusive_time":2,"id":"67","highest_child_id":368,"first_entry_time":11222,"exclusive_time":2,"entries":1},{"inclusive_time":0,"id":"68","highest_child_id":369,"first_entry_time":11226,"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":7,"id":"98","highest_child_id":371,"first_entry_time":11237,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":0,"id":"68","highest_child_id":371,"first_entry_time":11243,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1},{"id":"7","count":1},{"id":"99","count":1},{"id":"13","count":2}]},{"inclusive_time":185,"id":"100","highest_child_id":393,"first_entry_time":11248,"exclusive_time":21,"entries":2,"callees":[{"inclusive_time":81,"id":"102","highest_child_id":387,"first_entry_time":11251,"exclusive_time":38,"entries":1,"callees":[{"inclusive_time":3,"id":"41","highest_child_id":376,"first_entry_time":11254,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"33","highest_child_id":375,"first_entry_time":11255,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"32","highest_child_id":376,"first_entry_time":11257,"exclusive_time":0,"entries":1}]},{"inclusive_time":39,"id":"135","highest_child_id":387,"first_entry_time":11293,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":32,"id":"104","highest_child_id":387,"first_entry_time":11300,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":11,"id":"106","highest_child_id":381,"first_entry_time":11303,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":9,"id":"108","highest_child_id":381,"first_entry_time":11305,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":0,"id":"109","highest_child_id":381,"first_entry_time":11307,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"107","count":1}]},{"inclusive_time":3,"id":"110","highest_child_id":382,"first_entry_time":11318,"exclusive_time":3,"entries":1},{"inclusive_time":0,"id":"111","highest_child_id":383,"first_entry_time":11322,"exclusive_time":0,"entries":1},{"inclusive_time":7,"id":"112","highest_child_id":387,"first_entry_time":11324,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":0,"id":"114","highest_child_id":385,"first_entry_time":11325,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"115","highest_child_id":386,"first_entry_time":11327,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"44","highest_child_id":387,"first_entry_time":11330,"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":81,"id":"137","highest_child_id":393,"first_entry_time":11417,"exclusive_time":20,"entries":1,"callees":[{"inclusive_time":61,"id":"138","highest_child_id":393,"first_entry_time":11437,"exclusive_time":32,"entries":1,"callees":[{"inclusive_time":1,"id":"140","highest_child_id":390,"first_entry_time":11452,"exclusive_time":1,"entries":1,"allocations":[{"id":"141","count":1}]},{"inclusive_time":27,"id":"142","highest_child_id":393,"first_entry_time":11471,"exclusive_time":24,"entries":1,"callees":[{"inclusive_time":2,"id":"143","highest_child_id":392,"first_entry_time":11485,"exclusive_time":2,"entries":1},{"inclusive_time":1,"id":"144","highest_child_id":393,"first_entry_time":11497,"exclusive_time":1,"entries":1}]}],"allocations":[{"id":"6","count":1},{"id":"139","count":1},{"id":"16","count":1}]}],"allocations":[{"id":"6","count":1}]}]},{"inclusive_time":29,"id":"133","highest_child_id":402,"first_entry_time":11335,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":3,"id":"41","highest_child_id":397,"first_entry_time":11337,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"33","highest_child_id":396,"first_entry_time":11338,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"32","highest_child_id":397,"first_entry_time":11340,"exclusive_time":0,"entries":1}]},{"inclusive_time":21,"id":"134","highest_child_id":402,"first_entry_time":11343,"exclusive_time":17,"entries":1,"callees":[{"inclusive_time":3,"id":"41","highest_child_id":401,"first_entry_time":11344,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"33","highest_child_id":400,"first_entry_time":11345,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"32","highest_child_id":401,"first_entry_time":11347,"exclusive_time":0,"entries":1}]},{"inclusive_time":0,"id":"68","highest_child_id":402,"first_entry_time":11363,"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":11382,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"146","highest_child_id":404,"first_entry_time":11393,"exclusive_time":2,"entries":1,"allocations":[{"id":"7","count":1}]},{"inclusive_time":3,"id":"147","highest_child_id":405,"first_entry_time":11527,"exclusive_time":3,"entries":1,"allocations":[{"id":"148","count":1},{"id":"2","count":1}]},{"inclusive_time":489,"id":"149","highest_child_id":420,"first_entry_time":11558,"exclusive_time":196,"entries":1,"callees":[{"inclusive_time":32,"id":"9","highest_child_id":409,"first_entry_time":11667,"exclusive_time":13,"entries":1,"callees":[{"inclusive_time":16,"id":"24","highest_child_id":408,"first_entry_time":11673,"exclusive_time":16,"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":11697,"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":260,"id":"150","highest_child_id":420,"first_entry_time":11787,"exclusive_time":206,"entries":1,"callees":[{"inclusive_time":49,"id":"151","highest_child_id":417,"first_entry_time":11973,"exclusive_time":37,"entries":1,"callees":[{"inclusive_time":1,"id":"46","highest_child_id":412,"first_entry_time":11978,"exclusive_time":1,"entries":1,"allocations":[{"id":"47","count":1}]},{"inclusive_time":9,"id":"154","highest_child_id":415,"first_entry_time":12008,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":2,"id":"67","highest_child_id":414,"first_entry_time":12013,"exclusive_time":2,"entries":1},{"inclusive_time":0,"id":"68","highest_child_id":415,"first_entry_time":12017,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":1,"id":"67","highest_child_id":416,"first_entry_time":12019,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"68","highest_child_id":417,"first_entry_time":12022,"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":12038,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":1,"id":"67","highest_child_id":419,"first_entry_time":12043,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"68","highest_child_id":420,"first_entry_time":12046,"exclusive_time":0,"entries":1}],"allocations":[{"id":"3","count":2},{"id":"16","count":1}]}],"allocations":[{"id":"8","count":3}]},{"inclusive_time":18,"id":"156","highest_child_id":423,"first_entry_time":12076,"exclusive_time":15,"entries":2,"callees":[{"inclusive_time":2,"id":"67","highest_child_id":422,"first_entry_time":12087,"exclusive_time":2,"entries":1},{"inclusive_time":0,"id":"68","highest_child_id":423,"first_entry_time":12092,"exclusive_time":0,"entries":2}],"allocations":[{"id":"6","count":2}]},{"inclusive_time":1,"id":"55","highest_child_id":424,"first_entry_time":12099,"exclusive_time":1,"entries":1},{"inclusive_time":10,"id":"157","highest_child_id":427,"first_entry_time":12121,"exclusive_time":7,"entries":2,"callees":[{"inclusive_time":2,"id":"67","highest_child_id":426,"first_entry_time":12125,"exclusive_time":2,"entries":1},{"inclusive_time":0,"id":"68","highest_child_id":427,"first_entry_time":12129,"exclusive_time":0,"entries":2}],"allocations":[{"id":"6","count":4}]},{"inclusive_time":34884,"id":"158","highest_child_id":3184,"first_entry_time":12208,"exclusive_time":165,"entries":1,"callees":[{"inclusive_time":1,"id":"159","highest_child_id":429,"first_entry_time":12242,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"160","highest_child_id":430,"first_entry_time":12272,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"161","highest_child_id":431,"first_entry_time":12289,"exclusive_time":2,"entries":1,"allocations":[{"id":"10","count":1}]},{"inclusive_time":34714,"id":"162","highest_child_id":3183,"first_entry_time":12359,"exclusive_time":51,"entries":8,"callees":[{"inclusive_time":34663,"id":"163","highest_child_id":3183,"first_entry_time":12374,"exclusive_time":35,"entries":8,"callees":[{"inclusive_time":34627,"id":"164","highest_child_id":3183,"first_entry_time":12400,"exclusive_time":185,"entries":8,"callees":[{"inclusive_time":137,"id":"165","highest_child_id":444,"first_entry_time":12442,"exclusive_time":24,"entries":1,"callees":[{"inclusive_time":114,"id":"166","highest_child_id":444,"first_entry_time":12461,"exclusive_time":14,"entries":2,"callees":[{"inclusive_time":99,"id":"167","highest_child_id":444,"first_entry_time":12473,"exclusive_time":14,"entries":2,"callees":[{"inclusive_time":2,"id":"168","highest_child_id":438,"first_entry_time":12483,"exclusive_time":1,"entries":2,"allocations":[{"id":"169","count":1},{"id":"170","count":1}]},{"inclusive_time":83,"id":"108","highest_child_id":444,"first_entry_time":12486,"exclusive_time":46,"entries":2,"callees":[{"inclusive_time":1,"id":"109","highest_child_id":440,"first_entry_time":12488,"exclusive_time":1,"entries":2},{"inclusive_time":5,"id":"171","highest_child_id":441,"first_entry_time":12514,"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":30,"id":"174","highest_child_id":444,"first_entry_time":12546,"exclusive_time":24,"entries":1,"callees":[{"inclusive_time":1,"id":"175","highest_child_id":443,"first_entry_time":12557,"exclusive_time":1,"entries":1,"allocations":[{"id":"172","count":1}]},{"inclusive_time":4,"id":"176","highest_child_id":444,"first_entry_time":12571,"exclusive_time":4,"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":21428,"id":"178","highest_child_id":1843,"first_entry_time":12636,"exclusive_time":59,"entries":1,"callees":[{"inclusive_time":2,"id":"179","highest_child_id":446,"first_entry_time":12653,"exclusive_time":1,"entries":1,"allocations":[{"id":"10","count":1}]},{"inclusive_time":1,"id":"180","highest_child_id":447,"first_entry_time":12667,"exclusive_time":1,"entries":1,"allocations":[{"id":"10","count":1}]},{"inclusive_time":21363,"id":"181","highest_child_id":1841,"first_entry_time":12697,"exclusive_time":321,"entries":1,"callees":[{"inclusive_time":3,"id":"182","highest_child_id":449,"first_entry_time":12719,"exclusive_time":2,"entries":1,"allocations":[{"id":"6","count":2},{"id":"183","count":1}]},{"inclusive_time":43,"id":"184","highest_child_id":451,"first_entry_time":12785,"exclusive_time":36,"entries":1,"callees":[{"inclusive_time":6,"id":"187","highest_child_id":451,"first_entry_time":12821,"exclusive_time":6,"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":20993,"id":"188","highest_child_id":1840,"first_entry_time":13064,"exclusive_time":491,"entries":1,"callees":[{"inclusive_time":3,"id":"189","highest_child_id":453,"first_entry_time":13077,"exclusive_time":2,"entries":2},{"inclusive_time":17,"id":"190","highest_child_id":454,"first_entry_time":13097,"exclusive_time":17,"entries":5,"allocations":[{"id":"27","count":5},{"id":"53","count":5}]},{"inclusive_time":2,"id":"191","highest_child_id":455,"first_entry_time":13140,"exclusive_time":2,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":2,"id":"192","highest_child_id":456,"first_entry_time":13154,"exclusive_time":2,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":10,"id":"193","highest_child_id":457,"first_entry_time":13173,"exclusive_time":10,"entries":2,"allocations":[{"id":"27","count":2},{"id":"53","count":2}]},{"inclusive_time":2,"id":"194","highest_child_id":458,"first_entry_time":13205,"exclusive_time":1,"entries":1},{"inclusive_time":146,"id":"166","highest_child_id":473,"first_entry_time":13225,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":143,"id":"167","highest_child_id":473,"first_entry_time":13228,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"168","highest_child_id":461,"first_entry_time":13231,"exclusive_time":1,"entries":1,"allocations":[{"id":"195","count":1}]},{"inclusive_time":137,"id":"108","highest_child_id":473,"first_entry_time":13234,"exclusive_time":49,"entries":1,"callees":[{"inclusive_time":1,"id":"109","highest_child_id":463,"first_entry_time":13237,"exclusive_time":0,"entries":1},{"inclusive_time":82,"id":"196","highest_child_id":472,"first_entry_time":13270,"exclusive_time":17,"entries":1,"callees":[{"inclusive_time":1,"id":"197","highest_child_id":465,"first_entry_time":13283,"exclusive_time":1,"entries":1},{"inclusive_time":63,"id":"166","highest_child_id":472,"first_entry_time":13285,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":61,"id":"167","highest_child_id":472,"first_entry_time":13288,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"168","highest_child_id":468,"first_entry_time":13290,"exclusive_time":1,"entries":1,"allocations":[{"id":"198","count":1}]},{"inclusive_time":55,"id":"108","highest_child_id":472,"first_entry_time":13293,"exclusive_time":42,"entries":1,"callees":[{"inclusive_time":0,"id":"109","highest_child_id":470,"first_entry_time":13295,"exclusive_time":0,"entries":1},{"inclusive_time":8,"id":"199","highest_child_id":471,"first_entry_time":13315,"exclusive_time":8,"entries":1,"allocations":[{"id":"200","count":1},{"id":"10","count":2}]},{"inclusive_time":4,"id":"201","highest_child_id":472,"first_entry_time":13344,"exclusive_time":4,"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":13367,"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":11,"id":"203","highest_child_id":475,"first_entry_time":13388,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":1,"id":"204","highest_child_id":475,"first_entry_time":13398,"exclusive_time":1,"entries":1}]},{"inclusive_time":20289,"id":"205","highest_child_id":1836,"first_entry_time":13742,"exclusive_time":876,"entries":1,"callees":[{"inclusive_time":18,"id":"206","highest_child_id":477,"first_entry_time":13775,"exclusive_time":18,"entries":1,"allocations":[{"id":"185","count":1},{"id":"26","count":1}]},{"inclusive_time":84,"id":"207","highest_child_id":484,"first_entry_time":13863,"exclusive_time":75,"entries":3,"callees":[{"inclusive_time":1,"id":"208","highest_child_id":479,"first_entry_time":13872,"exclusive_time":1,"entries":3},{"inclusive_time":1,"id":"209","highest_child_id":480,"first_entry_time":13880,"exclusive_time":1,"entries":3},{"inclusive_time":2,"id":"210","highest_child_id":481,"first_entry_time":13893,"exclusive_time":1,"entries":3},{"inclusive_time":3,"id":"211","highest_child_id":482,"first_entry_time":13910,"exclusive_time":2,"entries":3,"allocations":[{"id":"6","count":3}]},{"inclusive_time":1,"id":"212","highest_child_id":483,"first_entry_time":13919,"exclusive_time":0,"entries":3},{"inclusive_time":1,"id":"207","highest_child_id":484,"first_entry_time":18611,"exclusive_time":1,"entries":3}],"allocations":[{"id":"27","count":3}]},{"inclusive_time":0,"id":"213","highest_child_id":485,"first_entry_time":13929,"exclusive_time":0,"entries":1},{"inclusive_time":160,"id":"214","highest_child_id":497,"first_entry_time":13975,"exclusive_time":17,"entries":1,"callees":[{"inclusive_time":140,"id":"215","highest_child_id":495,"first_entry_time":13984,"exclusive_time":18,"entries":2,"callees":[{"inclusive_time":1,"id":"216","highest_child_id":488,"first_entry_time":13990,"exclusive_time":0,"entries":2},{"inclusive_time":121,"id":"217","highest_child_id":495,"first_entry_time":14001,"exclusive_time":28,"entries":2,"callees":[{"inclusive_time":92,"id":"218","highest_child_id":495,"first_entry_time":14028,"exclusive_time":44,"entries":2,"callees":[{"inclusive_time":39,"id":"219","highest_child_id":493,"first_entry_time":14037,"exclusive_time":22,"entries":2,"callees":[{"inclusive_time":17,"id":"221","highest_child_id":493,"first_entry_time":14049,"exclusive_time":14,"entries":2,"callees":[{"inclusive_time":2,"id":"223","highest_child_id":493,"first_entry_time":14061,"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":4,"id":"224","highest_child_id":494,"first_entry_time":14074,"exclusive_time":4,"entries":2,"allocations":[{"id":"10","count":2},{"id":"6","count":2},{"id":"225","count":2}]},{"inclusive_time":5,"id":"226","highest_child_id":495,"first_entry_time":14091,"exclusive_time":4,"entries":5,"allocations":[{"id":"6","count":2}]}]}]}]},{"inclusive_time":1,"id":"55","highest_child_id":496,"first_entry_time":14128,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"226","highest_child_id":497,"first_entry_time":14134,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]}],"allocations":[{"id":"53","count":2},{"id":"27","count":2}]},{"inclusive_time":24,"id":"227","highest_child_id":500,"first_entry_time":14158,"exclusive_time":13,"entries":1,"callees":[{"inclusive_time":8,"id":"206","highest_child_id":499,"first_entry_time":14160,"exclusive_time":8,"entries":1,"allocations":[{"id":"185","count":1},{"id":"26","count":1}]},{"inclusive_time":2,"id":"228","highest_child_id":500,"first_entry_time":14180,"exclusive_time":1,"entries":1}]},{"inclusive_time":4274,"id":"229","highest_child_id":546,"first_entry_time":14280,"exclusive_time":155,"entries":1,"callees":[{"inclusive_time":4,"id":"206","highest_child_id":502,"first_entry_time":14281,"exclusive_time":4,"entries":1,"allocations":[{"id":"185","count":1},{"id":"26","count":1}]},{"inclusive_time":280,"id":"230","highest_child_id":522,"first_entry_time":14299,"exclusive_time":86,"entries":4,"callees":[{"inclusive_time":19,"id":"231","highest_child_id":506,"first_entry_time":14318,"exclusive_time":16,"entries":4,"callees":[{"inclusive_time":1,"id":"232","highest_child_id":505,"first_entry_time":14328,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"233","highest_child_id":506,"first_entry_time":14585,"exclusive_time":1,"entries":6}]},{"inclusive_time":4,"id":"234","highest_child_id":507,"first_entry_time":14338,"exclusive_time":4,"entries":4},{"inclusive_time":169,"id":"235","highest_child_id":522,"first_entry_time":14393,"exclusive_time":79,"entries":1,"callees":[{"inclusive_time":4,"id":"206","highest_child_id":509,"first_entry_time":14394,"exclusive_time":4,"entries":1,"allocations":[{"id":"185","count":1},{"id":"26","count":1}]},{"inclusive_time":2,"id":"236","highest_child_id":510,"first_entry_time":14409,"exclusive_time":2,"entries":2,"allocations":[{"id":"173","count":2}]},{"inclusive_time":1,"id":"237","highest_child_id":511,"first_entry_time":14421,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"238","highest_child_id":512,"first_entry_time":14440,"exclusive_time":1,"entries":1},{"inclusive_time":28,"id":"239","highest_child_id":515,"first_entry_time":14461,"exclusive_time":21,"entries":1,"callees":[{"inclusive_time":2,"id":"240","highest_child_id":514,"first_entry_time":14472,"exclusive_time":2,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":4,"id":"241","highest_child_id":515,"first_entry_time":14485,"exclusive_time":4,"entries":1}]},{"inclusive_time":35,"id":"242","highest_child_id":519,"first_entry_time":14508,"exclusive_time":24,"entries":1,"callees":[{"inclusive_time":7,"id":"187","highest_child_id":517,"first_entry_time":14510,"exclusive_time":7,"entries":1,"allocations":[{"id":"185","count":1},{"id":"26","count":1}]},{"inclusive_time":1,"id":"233","highest_child_id":518,"first_entry_time":14525,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"243","highest_child_id":519,"first_entry_time":14540,"exclusive_time":2,"entries":1}]},{"inclusive_time":15,"id":"243","highest_child_id":522,"first_entry_time":14546,"exclusive_time":12,"entries":1,"callees":[{"inclusive_time":3,"id":"244","highest_child_id":522,"first_entry_time":14559,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"189","highest_child_id":522,"first_entry_time":14560,"exclusive_time":0,"entries":1}]}]}]}]},{"inclusive_time":7,"id":"245","highest_child_id":523,"first_entry_time":14580,"exclusive_time":7,"entries":4,"allocations":[{"id":"10","count":1}]},{"inclusive_time":18,"id":"246","highest_child_id":526,"first_entry_time":14606,"exclusive_time":6,"entries":3,"callees":[{"inclusive_time":8,"id":"187","highest_child_id":525,"first_entry_time":14608,"exclusive_time":8,"entries":3,"allocations":[{"id":"185","count":3},{"id":"26","count":3}]},{"inclusive_time":3,"id":"228","highest_child_id":526,"first_entry_time":14612,"exclusive_time":2,"entries":3}],"allocations":[{"id":"28","count":3}]},{"inclusive_time":10,"id":"207","highest_child_id":532,"first_entry_time":14639,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":0,"id":"208","highest_child_id":528,"first_entry_time":14641,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"209","highest_child_id":529,"first_entry_time":14643,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"210","highest_child_id":530,"first_entry_time":14644,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"211","highest_child_id":531,"first_entry_time":14645,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":0,"id":"212","highest_child_id":532,"first_entry_time":14647,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":5,"id":"247","highest_child_id":533,"first_entry_time":14744,"exclusive_time":5,"entries":1,"allocations":[{"id":"27","count":1},{"id":"10","count":1}]},{"inclusive_time":3795,"id":"243","highest_child_id":546,"first_entry_time":14759,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":3792,"id":"244","highest_child_id":546,"first_entry_time":14761,"exclusive_time":21,"entries":1,"callees":[{"inclusive_time":0,"id":"189","highest_child_id":536,"first_entry_time":14762,"exclusive_time":0,"entries":1},{"inclusive_time":11,"id":"207","highest_child_id":542,"first_entry_time":14768,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":0,"id":"208","highest_child_id":538,"first_entry_time":14771,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"209","highest_child_id":539,"first_entry_time":14772,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"210","highest_child_id":540,"first_entry_time":14774,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"211","highest_child_id":541,"first_entry_time":14775,"exclusive_time":0,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":0,"id":"212","highest_child_id":542,"first_entry_time":14776,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":3758,"id":"248","highest_child_id":546,"first_entry_time":14795,"exclusive_time":53,"entries":1,"callees":[{"inclusive_time":3705,"id":"249","highest_child_id":546,"first_entry_time":14848,"exclusive_time":2152,"entries":1,"callees":[{"inclusive_time":121,"id":"250","highest_child_id":545,"first_entry_time":14864,"exclusive_time":0,"entries":782},{"inclusive_time":1803,"id":"251","highest_child_id":546,"first_entry_time":14885,"exclusive_time":1553,"entries":1546,"allocations":[{"id":"6","count":783}]}],"allocations":[{"id":"222","count":6},{"id":"13","count":5}]}]}]}]}]},{"inclusive_time":8,"id":"252","highest_child_id":547,"first_entry_time":18595,"exclusive_time":7,"entries":2,"allocations":[{"id":"10","count":1}]},{"inclusive_time":1871,"id":"253","highest_child_id":593,"first_entry_time":18944,"exclusive_time":253,"entries":1,"callees":[{"inclusive_time":1383,"id":"254","highest_child_id":560,"first_entry_time":18969,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":5,"id":"206","highest_child_id":550,"first_entry_time":18970,"exclusive_time":5,"entries":1,"allocations":[{"id":"185","count":1},{"id":"26","count":1}]},{"inclusive_time":1373,"id":"243","highest_child_id":560,"first_entry_time":18978,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1370,"id":"244","highest_child_id":560,"first_entry_time":18981,"exclusive_time":13,"entries":1,"callees":[{"inclusive_time":0,"id":"189","highest_child_id":553,"first_entry_time":18982,"exclusive_time":0,"entries":1},{"inclusive_time":9,"id":"207","highest_child_id":556,"first_entry_time":18984,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":0,"id":"208","highest_child_id":555,"first_entry_time":18986,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"209","highest_child_id":556,"first_entry_time":18991,"exclusive_time":0,"entries":1}]},{"inclusive_time":1346,"id":"255","highest_child_id":560,"first_entry_time":19004,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1343,"id":"249","highest_child_id":560,"first_entry_time":19007,"exclusive_time":1033,"entries":1,"callees":[{"inclusive_time":103,"id":"250","highest_child_id":559,"first_entry_time":19014,"exclusive_time":0,"entries":782},{"inclusive_time":436,"id":"251","highest_child_id":560,"first_entry_time":19016,"exclusive_time":309,"entries":782,"allocations":[{"id":"6","count":782}]}],"allocations":[{"id":"222","count":6},{"id":"13","count":5}]}]}]}]}]},{"inclusive_time":49,"id":"256","highest_child_id":565,"first_entry_time":20422,"exclusive_time":31,"entries":1,"callees":[{"inclusive_time":1,"id":"216","highest_child_id":562,"first_entry_time":20427,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"257","highest_child_id":563,"first_entry_time":20436,"exclusive_time":0,"entries":1},{"inclusive_time":12,"id":"251","highest_child_id":564,"first_entry_time":20439,"exclusive_time":11,"entries":2,"allocations":[{"id":"6","count":3}]},{"inclusive_time":3,"id":"258","highest_child_id":565,"first_entry_time":20467,"exclusive_time":3,"entries":1,"allocations":[{"id":"27","count":1}]}]},{"inclusive_time":19,"id":"259","highest_child_id":569,"first_entry_time":20481,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":8,"id":"260","highest_child_id":569,"first_entry_time":20492,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":1,"id":"67","highest_child_id":568,"first_entry_time":20496,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"68","highest_child_id":569,"first_entry_time":20500,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1}]}]},{"inclusive_time":3,"id":"261","highest_child_id":570,"first_entry_time":20510,"exclusive_time":1,"entries":15},{"inclusive_time":2,"id":"262","highest_child_id":571,"first_entry_time":20517,"exclusive_time":0,"entries":15},{"inclusive_time":22,"id":"193","highest_child_id":572,"first_entry_time":20519,"exclusive_time":20,"entries":15,"allocations":[{"id":"53","count":15}]},{"inclusive_time":7,"id":"251","highest_child_id":573,"first_entry_time":20578,"exclusive_time":6,"entries":8,"allocations":[{"id":"6","count":8}]},{"inclusive_time":3,"id":"258","highest_child_id":574,"first_entry_time":20583,"exclusive_time":2,"entries":2,"allocations":[{"id":"27","count":2}]},{"inclusive_time":1,"id":"263","highest_child_id":575,"first_entry_time":20599,"exclusive_time":1,"entries":1},{"inclusive_time":76,"id":"264","highest_child_id":581,"first_entry_time":20648,"exclusive_time":34,"entries":4,"callees":[{"inclusive_time":10,"id":"251","highest_child_id":577,"first_entry_time":20650,"exclusive_time":9,"entries":8,"allocations":[{"id":"6","count":4}]},{"inclusive_time":29,"id":"265","highest_child_id":580,"first_entry_time":20666,"exclusive_time":11,"entries":4,"callees":[{"inclusive_time":17,"id":"221","highest_child_id":580,"first_entry_time":20671,"exclusive_time":15,"entries":4,"callees":[{"inclusive_time":2,"id":"267","highest_child_id":580,"first_entry_time":20681,"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":20691,"exclusive_time":2,"entries":4}]},{"inclusive_time":57,"id":"269","highest_child_id":592,"first_entry_time":20740,"exclusive_time":20,"entries":1,"callees":[{"inclusive_time":17,"id":"256","highest_child_id":587,"first_entry_time":20742,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":0,"id":"216","highest_child_id":584,"first_entry_time":20746,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"257","highest_child_id":585,"first_entry_time":20747,"exclusive_time":0,"entries":1},{"inclusive_time":5,"id":"251","highest_child_id":586,"first_entry_time":20750,"exclusive_time":5,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":2,"id":"258","highest_child_id":587,"first_entry_time":20756,"exclusive_time":2,"entries":1,"allocations":[{"id":"27","count":1}]}]},{"inclusive_time":0,"id":"216","highest_child_id":588,"first_entry_time":20761,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"270","highest_child_id":589,"first_entry_time":20770,"exclusive_time":1,"entries":1},{"inclusive_time":17,"id":"271","highest_child_id":592,"first_entry_time":20780,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":8,"id":"272","highest_child_id":592,"first_entry_time":20789,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":0,"id":"273","highest_child_id":592,"first_entry_time":20796,"exclusive_time":0,"entries":1}]}]}],"allocations":[{"id":"27","count":1},{"id":"148","count":1}]},{"inclusive_time":1,"id":"274","highest_child_id":593,"first_entry_time":20814,"exclusive_time":1,"entries":1}],"allocations":[{"id":"222","count":1},{"id":"27","count":15}]},{"inclusive_time":665,"id":"275","highest_child_id":627,"first_entry_time":20836,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":4,"id":"206","highest_child_id":595,"first_entry_time":20838,"exclusive_time":4,"entries":1,"allocations":[{"id":"185","count":1},{"id":"26","count":1}]},{"inclusive_time":656,"id":"243","highest_child_id":627,"first_entry_time":20844,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":653,"id":"244","highest_child_id":627,"first_entry_time":20847,"exclusive_time":75,"entries":1,"callees":[{"inclusive_time":0,"id":"189","highest_child_id":598,"first_entry_time":20848,"exclusive_time":0,"entries":1},{"inclusive_time":6,"id":"207","highest_child_id":601,"first_entry_time":20851,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":0,"id":"208","highest_child_id":600,"first_entry_time":20853,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"209","highest_child_id":601,"first_entry_time":20854,"exclusive_time":0,"entries":1}]},{"inclusive_time":571,"id":"276","highest_child_id":627,"first_entry_time":20929,"exclusive_time":73,"entries":1,"callees":[{"inclusive_time":12,"id":"277","highest_child_id":605,"first_entry_time":20940,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":0,"id":"216","highest_child_id":604,"first_entry_time":20941,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"278","highest_child_id":605,"first_entry_time":20951,"exclusive_time":1,"entries":1}]},{"inclusive_time":1,"id":"279","highest_child_id":606,"first_entry_time":20962,"exclusive_time":1,"entries":1},{"inclusive_time":4,"id":"251","highest_child_id":607,"first_entry_time":20965,"exclusive_time":4,"entries":2,"allocations":[{"id":"6","count":1}]},{"inclusive_time":4,"id":"265","highest_child_id":608,"first_entry_time":20969,"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":20973,"exclusive_time":2,"entries":2},{"inclusive_time":432,"id":"280","highest_child_id":620,"first_entry_time":20992,"exclusive_time":322,"entries":2,"callees":[{"inclusive_time":106,"id":"281","highest_child_id":618,"first_entry_time":21311,"exclusive_time":72,"entries":2,"callees":[{"inclusive_time":23,"id":"282","highest_child_id":614,"first_entry_time":21329,"exclusive_time":19,"entries":3,"callees":[{"inclusive_time":2,"id":"283","highest_child_id":613,"first_entry_time":21339,"exclusive_time":2,"entries":2},{"inclusive_time":1,"id":"284","highest_child_id":614,"first_entry_time":21375,"exclusive_time":1,"entries":1}]},{"inclusive_time":4,"id":"285","highest_child_id":616,"first_entry_time":21353,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":1,"id":"283","highest_child_id":616,"first_entry_time":21355,"exclusive_time":1,"entries":2}]},{"inclusive_time":1,"id":"286","highest_child_id":617,"first_entry_time":21364,"exclusive_time":1,"entries":2},{"inclusive_time":8,"id":"287","highest_child_id":618,"first_entry_time":21430,"exclusive_time":5,"entries":19}],"allocations":[{"id":"2","count":2},{"id":"27","count":21},{"id":"28","count":2}]},{"inclusive_time":3,"id":"282","highest_child_id":620,"first_entry_time":21378,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":1,"id":"284","highest_child_id":620,"first_entry_time":21379,"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":21391,"exclusive_time":2,"entries":1,"allocations":[{"id":"27","count":1},{"id":"6","count":1},{"id":"289","count":1}]},{"inclusive_time":13,"id":"290","highest_child_id":622,"first_entry_time":21405,"exclusive_time":13,"entries":2,"allocations":[{"id":"10","count":2},{"id":"6","count":2},{"id":"291","count":2}]},{"inclusive_time":25,"id":"256","highest_child_id":627,"first_entry_time":21471,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":1,"id":"216","highest_child_id":624,"first_entry_time":21475,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"257","highest_child_id":625,"first_entry_time":21477,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"251","highest_child_id":626,"first_entry_time":21479,"exclusive_time":2,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":12,"id":"258","highest_child_id":627,"first_entry_time":21483,"exclusive_time":12,"entries":1,"allocations":[{"id":"27","count":1}]}]}]}]}]}]},{"inclusive_time":10550,"id":"292","highest_child_id":1622,"first_entry_time":21548,"exclusive_time":38,"entries":1,"callees":[{"inclusive_time":2,"id":"293","highest_child_id":629,"first_entry_time":21559,"exclusive_time":1,"entries":1},{"inclusive_time":10510,"id":"294","highest_child_id":1622,"first_entry_time":21588,"exclusive_time":211,"entries":1,"callees":[{"inclusive_time":6,"id":"295","highest_child_id":631,"first_entry_time":21619,"exclusive_time":6,"entries":2,"allocations":[{"id":"27","count":2}]},{"inclusive_time":1,"id":"293","highest_child_id":632,"first_entry_time":21624,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"296","highest_child_id":633,"first_entry_time":21633,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"233","highest_child_id":634,"first_entry_time":21635,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"297","highest_child_id":635,"first_entry_time":21642,"exclusive_time":0,"entries":1},{"inclusive_time":12,"id":"184","highest_child_id":638,"first_entry_time":21644,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":1,"id":"182","highest_child_id":637,"first_entry_time":21648,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":2},{"id":"183","count":1}]},{"inclusive_time":3,"id":"187","highest_child_id":638,"first_entry_time":21652,"exclusive_time":3,"entries":1,"allocations":[{"id":"185","count":1},{"id":"26","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"185","count":1}]},{"inclusive_time":23,"id":"298","highest_child_id":641,"first_entry_time":21666,"exclusive_time":18,"entries":1,"callees":[{"inclusive_time":1,"id":"299","highest_child_id":640,"first_entry_time":21672,"exclusive_time":0,"entries":1},{"inclusive_time":4,"id":"300","highest_child_id":641,"first_entry_time":21684,"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":21698,"exclusive_time":2,"entries":1,"allocations":[{"id":"53","count":1}]},{"inclusive_time":2,"id":"302","highest_child_id":643,"first_entry_time":21709,"exclusive_time":2,"entries":1},{"inclusive_time":1,"id":"303","highest_child_id":644,"first_entry_time":21719,"exclusive_time":0,"entries":1},{"inclusive_time":10244,"id":"304","highest_child_id":1620,"first_entry_time":21850,"exclusive_time":247,"entries":1,"deopt_all":1,"callees":[{"inclusive_time":5,"id":"206","highest_child_id":646,"first_entry_time":21854,"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":21868,"exclusive_time":1,"entries":1},{"inclusive_time":42,"id":"306","highest_child_id":650,"first_entry_time":21881,"exclusive_time":42,"entries":1,"callees":[{"inclusive_time":4,"id":"261","highest_child_id":649,"first_entry_time":21885,"exclusive_time":0,"entries":27},{"inclusive_time":3,"id":"262","highest_child_id":650,"first_entry_time":21887,"exclusive_time":0,"entries":27}],"allocations":[{"id":"6","count":1},{"id":"222","count":1},{"id":"27","count":27}]},{"inclusive_time":1,"id":"237","highest_child_id":651,"first_entry_time":21927,"exclusive_time":1,"entries":1},{"inclusive_time":53,"id":"230","highest_child_id":655,"first_entry_time":21929,"exclusive_time":14,"entries":9,"callees":[{"inclusive_time":32,"id":"231","highest_child_id":654,"first_entry_time":21930,"exclusive_time":22,"entries":9,"callees":[{"inclusive_time":11,"id":"233","highest_child_id":654,"first_entry_time":21932,"exclusive_time":8,"entries":18}]},{"inclusive_time":8,"id":"234","highest_child_id":655,"first_entry_time":21935,"exclusive_time":6,"entries":9}]},{"inclusive_time":23,"id":"245","highest_child_id":656,"first_entry_time":21938,"exclusive_time":21,"entries":11,"allocations":[{"id":"10","count":1}]},{"inclusive_time":23,"id":"207","highest_child_id":663,"first_entry_time":21949,"exclusive_time":15,"entries":2,"callees":[{"inclusive_time":0,"id":"208","highest_child_id":658,"first_entry_time":21951,"exclusive_time":0,"entries":2},{"inclusive_time":0,"id":"209","highest_child_id":659,"first_entry_time":21952,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"210","highest_child_id":660,"first_entry_time":21953,"exclusive_time":0,"entries":2},{"inclusive_time":4,"id":"211","highest_child_id":661,"first_entry_time":21955,"exclusive_time":4,"entries":2,"allocations":[{"id":"6","count":2},{"id":"10","count":2}]},{"inclusive_time":0,"id":"212","highest_child_id":662,"first_entry_time":21958,"exclusive_time":0,"entries":2},{"inclusive_time":0,"id":"207","highest_child_id":663,"first_entry_time":31841,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":2}]},{"inclusive_time":6,"id":"298","highest_child_id":666,"first_entry_time":21962,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"299","highest_child_id":665,"first_entry_time":21963,"exclusive_time":0,"entries":1},{"inclusive_time":3,"id":"300","highest_child_id":666,"first_entry_time":21964,"exclusive_time":3,"entries":1,"allocations":[{"id":"183","count":1},{"id":"6","count":1}]}]},{"inclusive_time":8,"id":"239","highest_child_id":669,"first_entry_time":21978,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"240","highest_child_id":668,"first_entry_time":21980,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":3,"id":"241","highest_child_id":669,"first_entry_time":21982,"exclusive_time":2,"entries":1}]},{"inclusive_time":9518,"id":"307","highest_child_id":1566,"first_entry_time":22131,"exclusive_time":114,"entries":2,"deopt_all":1,"callees":[{"inclusive_time":7,"id":"206","highest_child_id":671,"first_entry_time":22135,"exclusive_time":7,"entries":2,"allocations":[{"id":"185","count":2},{"id":"26","count":2}]},{"inclusive_time":13,"id":"301","highest_child_id":672,"first_entry_time":22145,"exclusive_time":13,"entries":2,"allocations":[{"id":"27","count":2},{"id":"53","count":2}]},{"inclusive_time":27,"id":"207","highest_child_id":679,"first_entry_time":22158,"exclusive_time":21,"entries":4,"callees":[{"inclusive_time":1,"id":"208","highest_child_id":674,"first_entry_time":22161,"exclusive_time":0,"entries":3},{"inclusive_time":1,"id":"209","highest_child_id":675,"first_entry_time":22162,"exclusive_time":0,"entries":3},{"inclusive_time":1,"id":"210","highest_child_id":676,"first_entry_time":22163,"exclusive_time":1,"entries":3},{"inclusive_time":2,"id":"211","highest_child_id":677,"first_entry_time":22165,"exclusive_time":1,"entries":3,"allocations":[{"id":"6","count":3}]},{"inclusive_time":0,"id":"212","highest_child_id":678,"first_entry_time":22166,"exclusive_time":0,"entries":3},{"inclusive_time":0,"id":"207","highest_child_id":679,"first_entry_time":31372,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":3}]},{"inclusive_time":1,"id":"302","highest_child_id":680,"first_entry_time":22169,"exclusive_time":1,"entries":2},{"inclusive_time":72,"id":"308","highest_child_id":692,"first_entry_time":22196,"exclusive_time":30,"entries":2,"callees":[{"inclusive_time":9,"id":"187","highest_child_id":682,"first_entry_time":22200,"exclusive_time":8,"entries":2,"allocations":[{"id":"185","count":2},{"id":"26","count":2}]},{"inclusive_time":29,"id":"309","highest_child_id":689,"first_entry_time":22224,"exclusive_time":8,"entries":2,"callees":[{"inclusive_time":6,"id":"206","highest_child_id":684,"first_entry_time":22225,"exclusive_time":6,"entries":2,"allocations":[{"id":"185","count":2},{"id":"26","count":2}]},{"inclusive_time":11,"id":"239","highest_child_id":687,"first_entry_time":22232,"exclusive_time":6,"entries":2,"callees":[{"inclusive_time":2,"id":"240","highest_child_id":686,"first_entry_time":22234,"exclusive_time":1,"entries":2,"allocations":[{"id":"27","count":2}]},{"inclusive_time":3,"id":"241","highest_child_id":687,"first_entry_time":22237,"exclusive_time":2,"entries":2}]},{"inclusive_time":1,"id":"228","highest_child_id":688,"first_entry_time":22240,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"243","highest_child_id":689,"first_entry_time":31787,"exclusive_time":1,"entries":1}]},{"inclusive_time":4,"id":"243","highest_child_id":692,"first_entry_time":31790,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":2,"id":"244","highest_child_id":692,"first_entry_time":31792,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"189","highest_child_id":692,"first_entry_time":31793,"exclusive_time":0,"entries":1}]}]}],"allocations":[{"id":"173","count":2}]},{"inclusive_time":8,"id":"310","highest_child_id":695,"first_entry_time":22261,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":4,"id":"206","highest_child_id":694,"first_entry_time":22262,"exclusive_time":3,"entries":1,"allocations":[{"id":"185","count":1},{"id":"26","count":1}]},{"inclusive_time":1,"id":"228","highest_child_id":695,"first_entry_time":22268,"exclusive_time":1,"entries":1}]},{"inclusive_time":1,"id":"293","highest_child_id":696,"first_entry_time":22271,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":9,"id":"239","highest_child_id":699,"first_entry_time":22276,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"240","highest_child_id":698,"first_entry_time":22278,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":5,"id":"241","highest_child_id":699,"first_entry_time":22281,"exclusive_time":4,"entries":1}]},{"inclusive_time":9054,"id":"311","highest_child_id":1529,"first_entry_time":22298,"exclusive_time":121,"entries":1,"callees":[{"inclusive_time":8933,"id":"312","highest_child_id":1529,"first_entry_time":22419,"exclusive_time":196,"entries":1,"callees":[{"inclusive_time":4,"id":"187","highest_child_id":702,"first_entry_time":22423,"exclusive_time":4,"entries":1,"allocations":[{"id":"185","count":1},{"id":"26","count":1}]},{"inclusive_time":8673,"id":"313","highest_child_id":1504,"first_entry_time":22613,"exclusive_time":57,"entries":1,"callees":[{"inclusive_time":5,"id":"206","highest_child_id":704,"first_entry_time":22616,"exclusive_time":5,"entries":1,"allocations":[{"id":"185","count":1},{"id":"26","count":1}]},{"inclusive_time":2,"id":"237","highest_child_id":705,"first_entry_time":22625,"exclusive_time":2,"entries":2},{"inclusive_time":20,"id":"239","highest_child_id":708,"first_entry_time":22629,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"240","highest_child_id":707,"first_entry_time":22631,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":15,"id":"241","highest_child_id":708,"first_entry_time":22634,"exclusive_time":15,"entries":1}]},{"inclusive_time":19,"id":"314","highest_child_id":716,"first_entry_time":22672,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":4,"id":"206","highest_child_id":710,"first_entry_time":22673,"exclusive_time":4,"entries":1,"allocations":[{"id":"185","count":1},{"id":"26","count":1}]},{"inclusive_time":5,"id":"207","highest_child_id":713,"first_entry_time":22679,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":0,"id":"208","highest_child_id":712,"first_entry_time":22681,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"209","highest_child_id":713,"first_entry_time":22682,"exclusive_time":0,"entries":1}]},{"inclusive_time":5,"id":"243","highest_child_id":716,"first_entry_time":22686,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":2,"id":"244","highest_child_id":716,"first_entry_time":22689,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"189","highest_child_id":716,"first_entry_time":22690,"exclusive_time":0,"entries":1}]}]}]},{"inclusive_time":8477,"id":"315","highest_child_id":1470,"first_entry_time":22700,"exclusive_time":25,"entries":1,"callees":[{"inclusive_time":8451,"id":"316","highest_child_id":1470,"first_entry_time":22725,"exclusive_time":323,"entries":1,"callees":[{"inclusive_time":1,"id":"240","highest_child_id":719,"first_entry_time":22728,"exclusive_time":0,"entries":1},{"inclusive_time":13,"id":"317","highest_child_id":720,"first_entry_time":22739,"exclusive_time":13,"entries":1,"allocations":[{"id":"26","count":1}]},{"inclusive_time":0,"id":"318","highest_child_id":721,"first_entry_time":22760,"exclusive_time":0,"entries":1},{"inclusive_time":8113,"id":"319","highest_child_id":1470,"first_entry_time":23063,"exclusive_time":288,"entries":1,"callees":[{"inclusive_time":5,"id":"206","highest_child_id":723,"first_entry_time":23066,"exclusive_time":4,"entries":1,"allocations":[{"id":"185","count":1},{"id":"26","count":1}]},{"inclusive_time":396,"id":"320","highest_child_id":774,"first_entry_time":23114,"exclusive_time":65,"entries":1,"callees":[{"inclusive_time":4,"id":"206","highest_child_id":725,"first_entry_time":23116,"exclusive_time":3,"entries":1,"allocations":[{"id":"185","count":1},{"id":"26","count":1}]},{"inclusive_time":260,"id":"321","highest_child_id":758,"first_entry_time":23177,"exclusive_time":121,"entries":1,"callees":[{"inclusive_time":8,"id":"206","highest_child_id":727,"first_entry_time":23179,"exclusive_time":8,"entries":1,"allocations":[{"id":"185","count":1},{"id":"26","count":1}]},{"inclusive_time":8,"id":"239","highest_child_id":730,"first_entry_time":23190,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"240","highest_child_id":729,"first_entry_time":23192,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":3,"id":"241","highest_child_id":730,"first_entry_time":23195,"exclusive_time":2,"entries":1}]},{"inclusive_time":73,"id":"322","highest_child_id":741,"first_entry_time":23229,"exclusive_time":38,"entries":1,"callees":[{"inclusive_time":4,"id":"206","highest_child_id":732,"first_entry_time":23230,"exclusive_time":3,"entries":1,"allocations":[{"id":"185","count":1},{"id":"26","count":1}]},{"inclusive_time":18,"id":"323","highest_child_id":735,"first_entry_time":23252,"exclusive_time":12,"entries":1,"callees":[{"inclusive_time":3,"id":"187","highest_child_id":734,"first_entry_time":23255,"exclusive_time":3,"entries":1,"allocations":[{"id":"185","count":1},{"id":"26","count":1}]},{"inclusive_time":1,"id":"324","highest_child_id":735,"first_entry_time":23268,"exclusive_time":1,"entries":1}]},{"inclusive_time":8,"id":"325","highest_child_id":738,"first_entry_time":23288,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":3,"id":"206","highest_child_id":737,"first_entry_time":23289,"exclusive_time":3,"entries":1,"allocations":[{"id":"185","count":1},{"id":"26","count":1}]},{"inclusive_time":1,"id":"228","highest_child_id":738,"first_entry_time":23295,"exclusive_time":1,"entries":1}]},{"inclusive_time":4,"id":"243","highest_child_id":741,"first_entry_time":23297,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":2,"id":"244","highest_child_id":741,"first_entry_time":23300,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"189","highest_child_id":741,"first_entry_time":23301,"exclusive_time":0,"entries":1}]}]}]},{"inclusive_time":4,"id":"252","highest_child_id":742,"first_entry_time":23304,"exclusive_time":3,"entries":1,"allocations":[{"id":"10","count":1}]},{"inclusive_time":11,"id":"326","highest_child_id":745,"first_entry_time":23390,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":4,"id":"206","highest_child_id":744,"first_entry_time":23393,"exclusive_time":4,"entries":1,"allocations":[{"id":"185","count":1},{"id":"26","count":1}]},{"inclusive_time":1,"id":"228","highest_child_id":745,"first_entry_time":23399,"exclusive_time":1,"entries":1}],"allocations":[{"id":"2","count":1},{"id":"27","count":1}]},{"inclusive_time":32,"id":"243","highest_child_id":758,"first_entry_time":23404,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":30,"id":"244","highest_child_id":758,"first_entry_time":23406,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":0,"id":"189","highest_child_id":748,"first_entry_time":23407,"exclusive_time":0,"entries":1},{"inclusive_time":19,"id":"207","highest_child_id":757,"first_entry_time":23409,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":0,"id":"208","highest_child_id":750,"first_entry_time":23411,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"209","highest_child_id":751,"first_entry_time":23413,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"210","highest_child_id":752,"first_entry_time":23414,"exclusive_time":0,"entries":1},{"inclusive_time":3,"id":"211","highest_child_id":753,"first_entry_time":23416,"exclusive_time":2,"entries":1,"allocations":[{"id":"6","count":1},{"id":"10","count":1}]},{"inclusive_time":0,"id":"212","highest_child_id":754,"first_entry_time":23419,"exclusive_time":0,"entries":1},{"inclusive_time":4,"id":"207","highest_child_id":757,"first_entry_time":23422,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":0,"id":"208","highest_child_id":756,"first_entry_time":23424,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"209","highest_child_id":757,"first_entry_time":23425,"exclusive_time":0,"entries":1}]}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":1,"id":"327","highest_child_id":758,"first_entry_time":23435,"exclusive_time":0,"entries":1}]}]}]},{"inclusive_time":3,"id":"252","highest_child_id":759,"first_entry_time":23439,"exclusive_time":3,"entries":1,"allocations":[{"id":"10","count":1}]},{"inclusive_time":13,"id":"207","highest_child_id":766,"first_entry_time":23443,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":0,"id":"208","highest_child_id":761,"first_entry_time":23445,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"209","highest_child_id":762,"first_entry_time":23446,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"210","highest_child_id":763,"first_entry_time":23448,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"211","highest_child_id":764,"first_entry_time":23449,"exclusive_time":2,"entries":1,"allocations":[{"id":"6","count":1},{"id":"10","count":1}]},{"inclusive_time":0,"id":"212","highest_child_id":765,"first_entry_time":23452,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"207","highest_child_id":766,"first_entry_time":23455,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":46,"id":"308","highest_child_id":771,"first_entry_time":23458,"exclusive_time":33,"entries":1,"callees":[{"inclusive_time":4,"id":"187","highest_child_id":768,"first_entry_time":23461,"exclusive_time":3,"entries":1,"allocations":[{"id":"185","count":1},{"id":"26","count":1}]},{"inclusive_time":8,"id":"328","highest_child_id":771,"first_entry_time":23495,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":4,"id":"206","highest_child_id":770,"first_entry_time":23496,"exclusive_time":3,"entries":1,"allocations":[{"id":"185","count":1},{"id":"26","count":1}]},{"inclusive_time":1,"id":"228","highest_child_id":771,"first_entry_time":23502,"exclusive_time":1,"entries":1}]}],"allocations":[{"id":"173","count":1}]},{"inclusive_time":4,"id":"243","highest_child_id":774,"first_entry_time":23507,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":2,"id":"244","highest_child_id":774,"first_entry_time":23509,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"189","highest_child_id":774,"first_entry_time":23510,"exclusive_time":0,"entries":1}]}]}]},{"inclusive_time":6,"id":"252","highest_child_id":775,"first_entry_time":23512,"exclusive_time":6,"entries":2,"allocations":[{"id":"10","count":1}]},{"inclusive_time":40,"id":"207","highest_child_id":788,"first_entry_time":23517,"exclusive_time":19,"entries":3,"callees":[{"inclusive_time":1,"id":"208","highest_child_id":777,"first_entry_time":23519,"exclusive_time":0,"entries":2},{"inclusive_time":0,"id":"209","highest_child_id":778,"first_entry_time":23520,"exclusive_time":0,"entries":2},{"inclusive_time":4,"id":"210","highest_child_id":779,"first_entry_time":23522,"exclusive_time":4,"entries":2},{"inclusive_time":1,"id":"211","highest_child_id":780,"first_entry_time":23523,"exclusive_time":1,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":0,"id":"212","highest_child_id":781,"first_entry_time":23525,"exclusive_time":0,"entries":2},{"inclusive_time":13,"id":"207","highest_child_id":788,"first_entry_time":23527,"exclusive_time":8,"entries":3,"callees":[{"inclusive_time":0,"id":"208","highest_child_id":783,"first_entry_time":23529,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"209","highest_child_id":784,"first_entry_time":23530,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"210","highest_child_id":785,"first_entry_time":23531,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"211","highest_child_id":786,"first_entry_time":23532,"exclusive_time":2,"entries":1,"allocations":[{"id":"6","count":1},{"id":"10","count":1}]},{"inclusive_time":0,"id":"212","highest_child_id":787,"first_entry_time":23535,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"207","highest_child_id":788,"first_entry_time":23538,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]}],"allocations":[{"id":"27","count":2}]},{"inclusive_time":48,"id":"329","highest_child_id":794,"first_entry_time":23622,"exclusive_time":25,"entries":1,"callees":[{"inclusive_time":8,"id":"234","highest_child_id":791,"first_entry_time":23625,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":0,"id":"331","highest_child_id":791,"first_entry_time":23632,"exclusive_time":0,"entries":1}]},{"inclusive_time":13,"id":"332","highest_child_id":793,"first_entry_time":23648,"exclusive_time":12,"entries":1,"callees":[{"inclusive_time":1,"id":"333","highest_child_id":793,"first_entry_time":23658,"exclusive_time":1,"entries":1}],"allocations":[{"id":"53","count":1}]},{"inclusive_time":1,"id":"334","highest_child_id":794,"first_entry_time":23667,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]}],"allocations":[{"id":"10","count":2},{"id":"330","count":1}]},{"inclusive_time":1,"id":"233","highest_child_id":795,"first_entry_time":23671,"exclusive_time":1,"entries":2},{"inclusive_time":19,"id":"332","highest_child_id":797,"first_entry_time":23673,"exclusive_time":16,"entries":5,"callees":[{"inclusive_time":2,"id":"333","highest_child_id":797,"first_entry_time":23675,"exclusive_time":2,"entries":5}],"allocations":[{"id":"53","count":5}]},{"inclusive_time":3,"id":"335","highest_child_id":798,"first_entry_time":23695,"exclusive_time":3,"entries":1,"allocations":[{"id":"25","count":1}]},{"inclusive_time":1,"id":"336","highest_child_id":799,"first_entry_time":23709,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"337","highest_child_id":800,"first_entry_time":23718,"exclusive_time":1,"entries":2},{"inclusive_time":106,"id":"338","highest_child_id":808,"first_entry_time":23730,"exclusive_time":61,"entries":1,"callees":[{"inclusive_time":44,"id":"339","highest_child_id":808,"first_entry_time":23791,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":41,"id":"256","highest_child_id":808,"first_entry_time":23794,"exclusive_time":34,"entries":1,"callees":[{"inclusive_time":0,"id":"216","highest_child_id":804,"first_entry_time":23799,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"257","highest_child_id":805,"first_entry_time":23800,"exclusive_time":0,"entries":1},{"inclusive_time":3,"id":"251","highest_child_id":806,"first_entry_time":23802,"exclusive_time":2,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":1,"id":"340","highest_child_id":807,"first_entry_time":23817,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"341","highest_child_id":808,"first_entry_time":23833,"exclusive_time":1,"entries":1}],"allocations":[{"id":"53","count":1}]}]}]},{"inclusive_time":93,"id":"342","highest_child_id":822,"first_entry_time":23870,"exclusive_time":18,"entries":1,"callees":[{"inclusive_time":11,"id":"343","highest_child_id":811,"first_entry_time":23878,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":2,"id":"344","highest_child_id":811,"first_entry_time":23888,"exclusive_time":1,"entries":1}]},{"inclusive_time":28,"id":"339","highest_child_id":818,"first_entry_time":23891,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":26,"id":"256","highest_child_id":818,"first_entry_time":23893,"exclusive_time":20,"entries":1,"callees":[{"inclusive_time":0,"id":"216","highest_child_id":814,"first_entry_time":23895,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"257","highest_child_id":815,"first_entry_time":23897,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"251","highest_child_id":816,"first_entry_time":23898,"exclusive_time":2,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":1,"id":"340","highest_child_id":817,"first_entry_time":23904,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"345","highest_child_id":818,"first_entry_time":23917,"exclusive_time":1,"entries":1}],"allocations":[{"id":"53","count":1}]}]},{"inclusive_time":35,"id":"346","highest_child_id":822,"first_entry_time":23928,"exclusive_time":29,"entries":1,"callees":[{"inclusive_time":0,"id":"216","highest_child_id":820,"first_entry_time":23930,"exclusive_time":0,"entries":1},{"inclusive_time":5,"id":"347","highest_child_id":822,"first_entry_time":23958,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":2,"id":"251","highest_child_id":822,"first_entry_time":23960,"exclusive_time":2,"entries":2,"allocations":[{"id":"6","count":2}]}]}]}]},{"inclusive_time":6239,"id":"348","highest_child_id":1385,"first_entry_time":24037,"exclusive_time":52,"entries":1,"callees":[{"inclusive_time":5,"id":"206","highest_child_id":824,"first_entry_time":24043,"exclusive_time":5,"entries":1,"allocations":[{"id":"185","count":1},{"id":"26","count":1}]},{"inclusive_time":1,"id":"237","highest_child_id":825,"first_entry_time":24051,"exclusive_time":1,"entries":1},{"inclusive_time":8,"id":"239","highest_child_id":828,"first_entry_time":24055,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"240","highest_child_id":827,"first_entry_time":24056,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":3,"id":"241","highest_child_id":828,"first_entry_time":24060,"exclusive_time":2,"entries":1}]},{"inclusive_time":6114,"id":"349","highest_child_id":1369,"first_entry_time":24102,"exclusive_time":45,"entries":1,"callees":[{"inclusive_time":4,"id":"206","highest_child_id":830,"first_entry_time":24103,"exclusive_time":4,"entries":1,"allocations":[{"id":"185","count":1},{"id":"26","count":1}]},{"inclusive_time":63,"id":"230","highest_child_id":850,"first_entry_time":24110,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":4,"id":"231","highest_child_id":834,"first_entry_time":24111,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"233","highest_child_id":833,"first_entry_time":24112,"exclusive_time":0,"entries":2},{"inclusive_time":0,"id":"232","highest_child_id":834,"first_entry_time":24115,"exclusive_time":0,"entries":1}]},{"inclusive_time":1,"id":"234","highest_child_id":835,"first_entry_time":24116,"exclusive_time":1,"entries":1},{"inclusive_time":53,"id":"235","highest_child_id":850,"first_entry_time":24119,"exclusive_time":13,"entries":1,"callees":[{"inclusive_time":3,"id":"206","highest_child_id":837,"first_entry_time":24120,"exclusive_time":3,"entries":1,"allocations":[{"id":"185","count":1},{"id":"26","count":1}]},{"inclusive_time":2,"id":"236","highest_child_id":838,"first_entry_time":24124,"exclusive_time":2,"entries":2,"allocations":[{"id":"173","count":2}]},{"inclusive_time":1,"id":"237","highest_child_id":839,"first_entry_time":24126,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"238","highest_child_id":840,"first_entry_time":24128,"exclusive_time":1,"entries":1},{"inclusive_time":8,"id":"239","highest_child_id":843,"first_entry_time":24135,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"240","highest_child_id":842,"first_entry_time":24137,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":3,"id":"241","highest_child_id":843,"first_entry_time":24140,"exclusive_time":2,"entries":1}]},{"inclusive_time":19,"id":"242","highest_child_id":847,"first_entry_time":24146,"exclusive_time":16,"entries":1,"callees":[{"inclusive_time":1,"id":"350","highest_child_id":845,"first_entry_time":24154,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"233","highest_child_id":846,"first_entry_time":24156,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"351","highest_child_id":847,"first_entry_time":24163,"exclusive_time":1,"entries":1}]},{"inclusive_time":4,"id":"243","highest_child_id":850,"first_entry_time":24168,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":2,"id":"244","highest_child_id":850,"first_entry_time":24170,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"189","highest_child_id":850,"first_entry_time":24171,"exclusive_time":0,"entries":1}]}]}]}]},{"inclusive_time":1,"id":"237","highest_child_id":851,"first_entry_time":24173,"exclusive_time":1,"entries":1},{"inclusive_time":6,"id":"239","highest_child_id":854,"first_entry_time":24176,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"240","highest_child_id":853,"first_entry_time":24177,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":2,"id":"241","highest_child_id":854,"first_entry_time":24180,"exclusive_time":1,"entries":1}]},{"inclusive_time":24,"id":"352","highest_child_id":862,"first_entry_time":24216,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":4,"id":"206","highest_child_id":856,"first_entry_time":24217,"exclusive_time":3,"entries":1,"allocations":[{"id":"185","count":1},{"id":"26","count":1}]},{"inclusive_time":2,"id":"231","highest_child_id":858,"first_entry_time":24223,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"232","highest_child_id":858,"first_entry_time":24225,"exclusive_time":0,"entries":1}]},{"inclusive_time":6,"id":"239","highest_child_id":861,"first_entry_time":24227,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"240","highest_child_id":860,"first_entry_time":24229,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":2,"id":"241","highest_child_id":861,"first_entry_time":24231,"exclusive_time":2,"entries":1}]},{"inclusive_time":1,"id":"228","highest_child_id":862,"first_entry_time":24238,"exclusive_time":1,"entries":1}]},{"inclusive_time":5770,"id":"311","highest_child_id":1344,"first_entry_time":24242,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":5767,"id":"312","highest_child_id":1344,"first_entry_time":24244,"exclusive_time":262,"entries":1,"callees":[{"inclusive_time":3,"id":"187","highest_child_id":865,"first_entry_time":24247,"exclusive_time":3,"entries":1,"allocations":[{"id":"185","count":1},{"id":"26","count":1}]},{"inclusive_time":4890,"id":"313","highest_child_id":1303,"first_entry_time":24252,"exclusive_time":264,"entries":1,"callees":[{"inclusive_time":3,"id":"206","highest_child_id":867,"first_entry_time":24254,"exclusive_time":2,"entries":1,"allocations":[{"id":"185","count":1},{"id":"26","count":1}]},{"inclusive_time":2,"id":"237","highest_child_id":868,"first_entry_time":24260,"exclusive_time":2,"entries":2},{"inclusive_time":12,"id":"239","highest_child_id":871,"first_entry_time":24263,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"240","highest_child_id":870,"first_entry_time":24265,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":8,"id":"241","highest_child_id":871,"first_entry_time":24267,"exclusive_time":8,"entries":1}]},{"inclusive_time":21,"id":"314","highest_child_id":879,"first_entry_time":24277,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":6,"id":"206","highest_child_id":873,"first_entry_time":24278,"exclusive_time":6,"entries":1,"allocations":[{"id":"185","count":1},{"id":"26","count":1}]},{"inclusive_time":5,"id":"207","highest_child_id":876,"first_entry_time":24286,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":0,"id":"208","highest_child_id":875,"first_entry_time":24288,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"209","highest_child_id":876,"first_entry_time":24290,"exclusive_time":0,"entries":1}]},{"inclusive_time":4,"id":"243","highest_child_id":879,"first_entry_time":24293,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":2,"id":"244","highest_child_id":879,"first_entry_time":24295,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"189","highest_child_id":879,"first_entry_time":24297,"exclusive_time":0,"entries":1}]}]}]},{"inclusive_time":4480,"id":"315","highest_child_id":1269,"first_entry_time":24299,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":4479,"id":"316","highest_child_id":1269,"first_entry_time":24300,"exclusive_time":32,"entries":1,"callees":[{"inclusive_time":1,"id":"240","highest_child_id":882,"first_entry_time":24304,"exclusive_time":0,"entries":1},{"inclusive_time":7,"id":"317","highest_child_id":883,"first_entry_time":24306,"exclusive_time":7,"entries":1,"allocations":[{"id":"26","count":1}]},{"inclusive_time":0,"id":"318","highest_child_id":884,"first_entry_time":24315,"exclusive_time":0,"entries":1},{"inclusive_time":4437,"id":"353","highest_child_id":1269,"first_entry_time":24341,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":3,"id":"206","highest_child_id":886,"first_entry_time":24342,"exclusive_time":3,"entries":1,"allocations":[{"id":"185","count":1},{"id":"26","count":1}]},{"inclusive_time":4385,"id":"354","highest_child_id":1255,"first_entry_time":24354,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":4383,"id":"316","highest_child_id":1255,"first_entry_time":24356,"exclusive_time":27,"entries":1,"callees":[{"inclusive_time":1,"id":"240","highest_child_id":889,"first_entry_time":24358,"exclusive_time":0,"entries":1},{"inclusive_time":3,"id":"317","highest_child_id":890,"first_entry_time":24360,"exclusive_time":3,"entries":1,"allocations":[{"id":"26","count":1}]},{"inclusive_time":0,"id":"318","highest_child_id":891,"first_entry_time":24365,"exclusive_time":0,"entries":1},{"inclusive_time":4351,"id":"355","highest_child_id":1255,"first_entry_time":24387,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":3,"id":"206","highest_child_id":893,"first_entry_time":24389,"exclusive_time":3,"entries":1,"allocations":[{"id":"185","count":1},{"id":"26","count":1}]},{"inclusive_time":4301,"id":"356","highest_child_id":1241,"first_entry_time":24400,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":4299,"id":"316","highest_child_id":1241,"first_entry_time":24401,"exclusive_time":61,"entries":1,"callees":[{"inclusive_time":0,"id":"240","highest_child_id":896,"first_entry_time":24403,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"317","highest_child_id":897,"first_entry_time":24405,"exclusive_time":2,"entries":1,"allocations":[{"id":"26","count":1}]},{"inclusive_time":0,"id":"318","highest_child_id":898,"first_entry_time":24409,"exclusive_time":0,"entries":1},{"inclusive_time":4234,"id":"357","highest_child_id":1241,"first_entry_time":24465,"exclusive_time":47,"entries":1,"callees":[{"inclusive_time":4,"id":"206","highest_child_id":900,"first_entry_time":24466,"exclusive_time":4,"entries":1,"allocations":[{"id":"185","count":1},{"id":"26","count":1}]},{"inclusive_time":1,"id":"237","highest_child_id":901,"first_entry_time":24473,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"293","highest_child_id":902,"first_entry_time":24476,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":2328,"id":"358","highest_child_id":1093,"first_entry_time":24501,"exclusive_time":95,"entries":1,"callees":[{"inclusive_time":18,"id":"359","highest_child_id":906,"first_entry_time":24538,"exclusive_time":16,"entries":1,"callees":[{"inclusive_time":1,"id":"360","highest_child_id":905,"first_entry_time":24548,"exclusive_time":1,"entries":2},{"inclusive_time":0,"id":"334","highest_child_id":906,"first_entry_time":24553,"exclusive_time":0,"entries":1}],"allocations":[{"id":"10","count":1},{"id":"25","count":2},{"id":"53","count":1},{"id":"27","count":1}]},{"inclusive_time":1,"id":"361","highest_child_id":907,"first_entry_time":24566,"exclusive_time":1,"entries":1},{"inclusive_time":2211,"id":"362","highest_child_id":1091,"first_entry_time":24613,"exclusive_time":58,"entries":1,"callees":[{"inclusive_time":1,"id":"296","highest_child_id":909,"first_entry_time":24614,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"233","highest_child_id":910,"first_entry_time":24616,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"297","highest_child_id":911,"first_entry_time":24618,"exclusive_time":0,"entries":1},{"inclusive_time":11,"id":"184","highest_child_id":914,"first_entry_time":24619,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":1,"id":"182","highest_child_id":913,"first_entry_time":24624,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":2},{"id":"183","count":1}]},{"inclusive_time":3,"id":"187","highest_child_id":914,"first_entry_time":24627,"exclusive_time":3,"entries":1,"allocations":[{"id":"363","count":1},{"id":"26","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"363","count":1}]},{"inclusive_time":14,"id":"298","highest_child_id":917,"first_entry_time":24631,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"299","highest_child_id":916,"first_entry_time":24632,"exclusive_time":0,"entries":1},{"inclusive_time":11,"id":"300","highest_child_id":917,"first_entry_time":24634,"exclusive_time":11,"entries":1,"allocations":[{"id":"183","count":1},{"id":"6","count":1}]}]},{"inclusive_time":1402,"id":"364","highest_child_id":994,"first_entry_time":24663,"exclusive_time":20,"entries":1,"callees":[{"inclusive_time":1,"id":"365","highest_child_id":919,"first_entry_time":24673,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":1380,"id":"366","highest_child_id":994,"first_entry_time":24685,"exclusive_time":36,"entries":1,"callees":[{"inclusive_time":1343,"id":"367","highest_child_id":994,"first_entry_time":24721,"exclusive_time":142,"entries":1,"deopt_all":1,"callees":[{"inclusive_time":1,"id":"368","highest_child_id":922,"first_entry_time":24736,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"369","highest_child_id":923,"first_entry_time":24746,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":0,"id":"360","highest_child_id":924,"first_entry_time":24749,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"370","highest_child_id":925,"first_entry_time":24787,"exclusive_time":1,"entries":1},{"inclusive_time":45,"id":"371","highest_child_id":929,"first_entry_time":24806,"exclusive_time":22,"entries":1,"callees":[{"inclusive_time":22,"id":"373","highest_child_id":928,"first_entry_time":24818,"exclusive_time":18,"entries":1,"callees":[{"inclusive_time":3,"id":"375","highest_child_id":928,"first_entry_time":24837,"exclusive_time":3,"entries":1,"allocations":[{"id":"10","count":9},{"id":"6","count":1}]}],"allocations":[{"id":"374","count":1}]},{"inclusive_time":1,"id":"376","highest_child_id":929,"first_entry_time":24849,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1},{"id":"372","count":1},{"id":"6","count":1}]},{"inclusive_time":2,"id":"377","highest_child_id":930,"first_entry_time":24866,"exclusive_time":2,"entries":1,"allocations":[{"id":"25","count":1}]},{"inclusive_time":1,"id":"378","highest_child_id":931,"first_entry_time":24880,"exclusive_time":1,"entries":1,"allocations":[{"id":"25","count":1}]},{"inclusive_time":1147,"id":"379","highest_child_id":994,"first_entry_time":24915,"exclusive_time":320,"entries":1,"callees":[{"inclusive_time":195,"id":"380","highest_child_id":944,"first_entry_time":24959,"exclusive_time":121,"entries":1,"callees":[{"inclusive_time":4,"id":"381","highest_child_id":934,"first_entry_time":24973,"exclusive_time":4,"entries":1,"allocations":[{"id":"13","count":1}]},{"inclusive_time":31,"id":"382","highest_child_id":937,"first_entry_time":24987,"exclusive_time":13,"entries":1,"callees":[{"inclusive_time":17,"id":"384","highest_child_id":937,"first_entry_time":24995,"exclusive_time":14,"entries":1,"callees":[{"inclusive_time":2,"id":"386","highest_child_id":937,"first_entry_time":25010,"exclusive_time":2,"entries":1,"allocations":[{"id":"10","count":7},{"id":"6","count":1}]}],"allocations":[{"id":"385","count":1}]}],"allocations":[{"id":"383","count":1}]},{"inclusive_time":2,"id":"387","highest_child_id":938,"first_entry_time":25028,"exclusive_time":1,"entries":7},{"inclusive_time":23,"id":"388","highest_child_id":940,"first_entry_time":25044,"exclusive_time":16,"entries":7,"callees":[{"inclusive_time":6,"id":"389","highest_child_id":940,"first_entry_time":25055,"exclusive_time":5,"entries":7,"allocations":[{"id":"2","count":7},{"id":"390","count":7}]}]},{"inclusive_time":10,"id":"391","highest_child_id":941,"first_entry_time":25069,"exclusive_time":9,"entries":9},{"inclusive_time":1,"id":"392","highest_child_id":942,"first_entry_time":25110,"exclusive_time":0,"entries":2},{"inclusive_time":2,"id":"393","highest_child_id":943,"first_entry_time":25123,"exclusive_time":2,"entries":2,"allocations":[{"id":"2","count":2},{"id":"394","count":2}]},{"inclusive_time":2,"id":"395","highest_child_id":944,"first_entry_time":25150,"exclusive_time":2,"entries":1,"allocations":[{"id":"10","count":1},{"id":"6","count":1}]}],"allocations":[{"id":"10","count":1},{"id":"25","count":4},{"id":"27","count":9}]},{"inclusive_time":109,"id":"396","highest_child_id":953,"first_entry_time":25203,"exclusive_time":76,"entries":1,"callees":[{"inclusive_time":1,"id":"397","highest_child_id":946,"first_entry_time":25214,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"398","highest_child_id":947,"first_entry_time":25224,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"387","highest_child_id":948,"first_entry_time":25227,"exclusive_time":1,"entries":7},{"inclusive_time":19,"id":"399","highest_child_id":950,"first_entry_time":25237,"exclusive_time":13,"entries":9,"callees":[{"inclusive_time":5,"id":"400","highest_child_id":950,"first_entry_time":25244,"exclusive_time":4,"entries":9}]},{"inclusive_time":11,"id":"401","highest_child_id":951,"first_entry_time":25262,"exclusive_time":10,"entries":9},{"inclusive_time":0,"id":"392","highest_child_id":952,"first_entry_time":25295,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"402","highest_child_id":953,"first_entry_time":25310,"exclusive_time":0,"entries":1}],"allocations":[{"id":"10","count":1},{"id":"25","count":3},{"id":"27","count":9}]},{"inclusive_time":32,"id":"403","highest_child_id":965,"first_entry_time":25330,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":1,"id":"404","highest_child_id":955,"first_entry_time":25340,"exclusive_time":1,"entries":1},{"inclusive_time":19,"id":"403","highest_child_id":965,"first_entry_time":25342,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"404","highest_child_id":957,"first_entry_time":25344,"exclusive_time":0,"entries":1},{"inclusive_time":16,"id":"403","highest_child_id":965,"first_entry_time":25346,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"404","highest_child_id":959,"first_entry_time":25347,"exclusive_time":0,"entries":1},{"inclusive_time":13,"id":"403","highest_child_id":965,"first_entry_time":25349,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":0,"id":"404","highest_child_id":961,"first_entry_time":25350,"exclusive_time":0,"entries":1},{"inclusive_time":5,"id":"403","highest_child_id":965,"first_entry_time":25351,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"404","highest_child_id":963,"first_entry_time":25352,"exclusive_time":0,"entries":1},{"inclusive_time":3,"id":"403","highest_child_id":965,"first_entry_time":25354,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"404","highest_child_id":965,"first_entry_time":25355,"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}]},{"inclusive_time":2,"id":"405","highest_child_id":966,"first_entry_time":25402,"exclusive_time":1,"entries":1},{"inclusive_time":22,"id":"406","highest_child_id":968,"first_entry_time":25420,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":13,"id":"406","highest_child_id":968,"first_entry_time":25423,"exclusive_time":12,"entries":6,"allocations":[{"id":"10","count":6},{"id":"25","count":6}]}],"allocations":[{"id":"10","count":1},{"id":"25","count":7}]},{"inclusive_time":15,"id":"407","highest_child_id":969,"first_entry_time":25451,"exclusive_time":13,"entries":14},{"inclusive_time":52,"id":"408","highest_child_id":973,"first_entry_time":25507,"exclusive_time":47,"entries":1,"callees":[{"inclusive_time":1,"id":"409","highest_child_id":971,"first_entry_time":25527,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"410","highest_child_id":972,"first_entry_time":25538,"exclusive_time":1,"entries":6},{"inclusive_time":1,"id":"411","highest_child_id":973,"first_entry_time":25547,"exclusive_time":1,"entries":3}],"allocations":[{"id":"10","count":1},{"id":"25","count":10}]},{"inclusive_time":136,"id":"412","highest_child_id":976,"first_entry_time":25575,"exclusive_time":131,"entries":1,"callees":[{"inclusive_time":2,"id":"413","highest_child_id":975,"first_entry_time":25585,"exclusive_time":2,"entries":1,"allocations":[{"id":"10","count":1},{"id":"25","count":1}]},{"inclusive_time":2,"id":"400","highest_child_id":976,"first_entry_time":25589,"exclusive_time":1,"entries":6}],"allocations":[{"id":"6","count":1},{"id":"25","count":1},{"id":"222","count":6}]},{"inclusive_time":35,"id":"414","highest_child_id":979,"first_entry_time":25723,"exclusive_time":25,"entries":1,"callees":[{"inclusive_time":9,"id":"415","highest_child_id":979,"first_entry_time":25748,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":1,"id":"400","highest_child_id":979,"first_entry_time":25752,"exclusive_time":0,"entries":4}],"allocations":[{"id":"27","count":1},{"id":"25","count":1}]}]},{"inclusive_time":44,"id":"416","highest_child_id":984,"first_entry_time":25798,"exclusive_time":38,"entries":1,"callees":[{"inclusive_time":1,"id":"406","highest_child_id":981,"first_entry_time":25800,"exclusive_time":1,"entries":1,"allocations":[{"id":"10","count":1},{"id":"25","count":1}]},{"inclusive_time":0,"id":"400","highest_child_id":982,"first_entry_time":25803,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"409","highest_child_id":983,"first_entry_time":25805,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"417","highest_child_id":984,"first_entry_time":25814,"exclusive_time":1,"entries":6}],"allocations":[{"id":"10","count":2},{"id":"25","count":8}]},{"inclusive_time":185,"id":"418","highest_child_id":994,"first_entry_time":25877,"exclusive_time":141,"entries":1,"callees":[{"inclusive_time":13,"id":"419","highest_child_id":986,"first_entry_time":25884,"exclusive_time":12,"entries":1},{"inclusive_time":6,"id":"406","highest_child_id":987,"first_entry_time":25900,"exclusive_time":5,"entries":6,"allocations":[{"id":"10","count":6},{"id":"25","count":6}]},{"inclusive_time":3,"id":"404","highest_child_id":988,"first_entry_time":25903,"exclusive_time":2,"entries":6},{"inclusive_time":3,"id":"420","highest_child_id":989,"first_entry_time":25918,"exclusive_time":1,"entries":14},{"inclusive_time":6,"id":"421","highest_child_id":990,"first_entry_time":25928,"exclusive_time":3,"entries":14},{"inclusive_time":5,"id":"422","highest_child_id":991,"first_entry_time":25937,"exclusive_time":3,"entries":14},{"inclusive_time":5,"id":"423","highest_child_id":992,"first_entry_time":25946,"exclusive_time":2,"entries":14},{"inclusive_time":5,"id":"424","highest_child_id":993,"first_entry_time":25955,"exclusive_time":3,"entries":14},{"inclusive_time":9,"id":"425","highest_child_id":994,"first_entry_time":25964,"exclusive_time":6,"entries":14}],"allocations":[{"id":"10","count":13},{"id":"25","count":7},{"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}]}]}]},{"inclusive_time":1,"id":"305","highest_child_id":995,"first_entry_time":26067,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"262","highest_child_id":996,"first_entry_time":26070,"exclusive_time":0,"entries":14},{"inclusive_time":0,"id":"261","highest_child_id":997,"first_entry_time":26080,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"301","highest_child_id":998,"first_entry_time":26082,"exclusive_time":2,"entries":1,"allocations":[{"id":"53","count":1}]},{"inclusive_time":1,"id":"302","highest_child_id":999,"first_entry_time":26086,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"192","highest_child_id":1000,"first_entry_time":26088,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":715,"id":"426","highest_child_id":1091,"first_entry_time":26109,"exclusive_time":20,"entries":1,"callees":[{"inclusive_time":32,"id":"427","highest_child_id":1005,"first_entry_time":26128,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":21,"id":"428","highest_child_id":1005,"first_entry_time":26138,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":10,"id":"430","highest_child_id":1005,"first_entry_time":26148,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":1,"id":"432","highest_child_id":1005,"first_entry_time":26157,"exclusive_time":1,"entries":1}],"allocations":[{"id":"431","count":1}]}],"allocations":[{"id":"10","count":1},{"id":"429","count":1}]}],"allocations":[{"id":"10","count":1}]},{"inclusive_time":663,"id":"367","highest_child_id":1091,"first_entry_time":26161,"exclusive_time":21,"entries":1,"deopt_all":1,"callees":[{"inclusive_time":1,"id":"369","highest_child_id":1007,"first_entry_time":26164,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"360","highest_child_id":1008,"first_entry_time":26166,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"433","highest_child_id":1010,"first_entry_time":26176,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"370","highest_child_id":1010,"first_entry_time":26177,"exclusive_time":0,"entries":1}]},{"inclusive_time":9,"id":"371","highest_child_id":1014,"first_entry_time":26181,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":3,"id":"373","highest_child_id":1013,"first_entry_time":26182,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":2,"id":"375","highest_child_id":1013,"first_entry_time":26184,"exclusive_time":2,"entries":1,"allocations":[{"id":"10","count":9},{"id":"6","count":1}]}],"allocations":[{"id":"374","count":1}]},{"inclusive_time":0,"id":"376","highest_child_id":1014,"first_entry_time":26188,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1},{"id":"434","count":1},{"id":"6","count":1}]},{"inclusive_time":1,"id":"377","highest_child_id":1015,"first_entry_time":26191,"exclusive_time":1,"entries":1,"allocations":[{"id":"25","count":1}]},{"inclusive_time":1,"id":"378","highest_child_id":1016,"first_entry_time":26193,"exclusive_time":1,"entries":1,"allocations":[{"id":"25","count":1}]},{"inclusive_time":626,"id":"379","highest_child_id":1091,"first_entry_time":26195,"exclusive_time":27,"entries":1,"callees":[{"inclusive_time":260,"id":"435","highest_child_id":1040,"first_entry_time":26206,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":258,"id":"380","highest_child_id":1040,"first_entry_time":26208,"exclusive_time":26,"entries":1,"callees":[{"inclusive_time":7,"id":"436","highest_child_id":1020,"first_entry_time":26219,"exclusive_time":6,"entries":1,"allocations":[{"id":"13","count":1}]},{"inclusive_time":6,"id":"382","highest_child_id":1023,"first_entry_time":26228,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":3,"id":"384","highest_child_id":1023,"first_entry_time":26229,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":2,"id":"386","highest_child_id":1023,"first_entry_time":26231,"exclusive_time":1,"entries":1,"allocations":[{"id":"10","count":7},{"id":"6","count":1}]}],"allocations":[{"id":"385","count":1}]}],"allocations":[{"id":"437","count":1}]},{"inclusive_time":1,"id":"387","highest_child_id":1024,"first_entry_time":26236,"exclusive_time":0,"entries":2},{"inclusive_time":212,"id":"388","highest_child_id":1038,"first_entry_time":26239,"exclusive_time":53,"entries":2,"callees":[{"inclusive_time":2,"id":"389","highest_child_id":1026,"first_entry_time":26240,"exclusive_time":2,"entries":2,"allocations":[{"id":"2","count":2},{"id":"390","count":2}]},{"inclusive_time":13,"id":"438","highest_child_id":1031,"first_entry_time":26259,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":12,"id":"167","highest_child_id":1031,"first_entry_time":26261,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"168","highest_child_id":1029,"first_entry_time":26263,"exclusive_time":1,"entries":1,"allocations":[{"id":"439","count":1}]},{"inclusive_time":7,"id":"108","highest_child_id":1031,"first_entry_time":26265,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":0,"id":"109","highest_child_id":1031,"first_entry_time":26267,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1}]}]},{"inclusive_time":141,"id":"440","highest_child_id":1037,"first_entry_time":26302,"exclusive_time":77,"entries":1,"callees":[{"inclusive_time":3,"id":"441","highest_child_id":1033,"first_entry_time":26319,"exclusive_time":3,"entries":1,"allocations":[{"id":"10","count":1},{"id":"6","count":1},{"id":"442","count":1}]},{"inclusive_time":61,"id":"443","highest_child_id":1037,"first_entry_time":26382,"exclusive_time":52,"entries":1,"callees":[{"inclusive_time":2,"id":"444","highest_child_id":1035,"first_entry_time":26393,"exclusive_time":1,"entries":3},{"inclusive_time":2,"id":"445","highest_child_id":1036,"first_entry_time":26408,"exclusive_time":2,"entries":1,"allocations":[{"id":"27","count":1},{"id":"53","count":1},{"id":"28","count":1}]},{"inclusive_time":3,"id":"446","highest_child_id":1037,"first_entry_time":26438,"exclusive_time":3,"entries":1}],"allocations":[{"id":"27","count":3}]}],"allocations":[{"id":"10","count":5},{"id":"439","count":1},{"id":"25","count":2}]},{"inclusive_time":1,"id":"447","highest_child_id":1038,"first_entry_time":26457,"exclusive_time":1,"entries":1}]},{"inclusive_time":3,"id":"391","highest_child_id":1039,"first_entry_time":26245,"exclusive_time":2,"entries":2},{"inclusive_time":2,"id":"395","highest_child_id":1040,"first_entry_time":26463,"exclusive_time":2,"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":23,"id":"396","highest_child_id":1048,"first_entry_time":26468,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":0,"id":"397","highest_child_id":1042,"first_entry_time":26469,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"398","highest_child_id":1043,"first_entry_time":26471,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"387","highest_child_id":1044,"first_entry_time":26473,"exclusive_time":0,"entries":2},{"inclusive_time":6,"id":"399","highest_child_id":1046,"first_entry_time":26475,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":4,"id":"400","highest_child_id":1046,"first_entry_time":26476,"exclusive_time":4,"entries":2}]},{"inclusive_time":2,"id":"401","highest_child_id":1047,"first_entry_time":26482,"exclusive_time":2,"entries":2},{"inclusive_time":0,"id":"402","highest_child_id":1048,"first_entry_time":26489,"exclusive_time":0,"entries":1}],"allocations":[{"id":"10","count":1},{"id":"25","count":3},{"id":"27","count":2}]},{"inclusive_time":19,"id":"403","highest_child_id":1062,"first_entry_time":26491,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"404","highest_child_id":1050,"first_entry_time":26493,"exclusive_time":0,"entries":1},{"inclusive_time":16,"id":"403","highest_child_id":1062,"first_entry_time":26495,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"404","highest_child_id":1052,"first_entry_time":26496,"exclusive_time":0,"entries":1},{"inclusive_time":13,"id":"403","highest_child_id":1062,"first_entry_time":26497,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"404","highest_child_id":1054,"first_entry_time":26498,"exclusive_time":0,"entries":1},{"inclusive_time":10,"id":"403","highest_child_id":1062,"first_entry_time":26500,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"404","highest_child_id":1056,"first_entry_time":26501,"exclusive_time":0,"entries":1},{"inclusive_time":8,"id":"403","highest_child_id":1062,"first_entry_time":26502,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"404","highest_child_id":1058,"first_entry_time":26504,"exclusive_time":0,"entries":1},{"inclusive_time":5,"id":"403","highest_child_id":1062,"first_entry_time":26505,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"404","highest_child_id":1060,"first_entry_time":26506,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"403","highest_child_id":1062,"first_entry_time":26507,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"404","highest_child_id":1062,"first_entry_time":26508,"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":1,"id":"405","highest_child_id":1063,"first_entry_time":26512,"exclusive_time":1,"entries":1},{"inclusive_time":22,"id":"406","highest_child_id":1065,"first_entry_time":26514,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":11,"id":"406","highest_child_id":1065,"first_entry_time":26516,"exclusive_time":10,"entries":7,"allocations":[{"id":"10","count":7},{"id":"25","count":7}]}],"allocations":[{"id":"10","count":1},{"id":"25","count":8}]},{"inclusive_time":2,"id":"407","highest_child_id":1066,"first_entry_time":26537,"exclusive_time":0,"entries":14},{"inclusive_time":19,"id":"408","highest_child_id":1070,"first_entry_time":26546,"exclusive_time":16,"entries":1,"callees":[{"inclusive_time":0,"id":"409","highest_child_id":1068,"first_entry_time":26547,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"410","highest_child_id":1069,"first_entry_time":26549,"exclusive_time":1,"entries":7},{"inclusive_time":1,"id":"411","highest_child_id":1070,"first_entry_time":26551,"exclusive_time":0,"entries":4}],"allocations":[{"id":"10","count":1},{"id":"25","count":12}]},{"inclusive_time":107,"id":"412","highest_child_id":1073,"first_entry_time":26566,"exclusive_time":104,"entries":1,"callees":[{"inclusive_time":1,"id":"413","highest_child_id":1072,"first_entry_time":26567,"exclusive_time":1,"entries":1,"allocations":[{"id":"10","count":1},{"id":"25","count":1}]},{"inclusive_time":2,"id":"400","highest_child_id":1073,"first_entry_time":26570,"exclusive_time":1,"entries":7}],"allocations":[{"id":"6","count":1},{"id":"25","count":1},{"id":"222","count":7}]},{"inclusive_time":10,"id":"414","highest_child_id":1076,"first_entry_time":26675,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":8,"id":"415","highest_child_id":1076,"first_entry_time":26676,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":1,"id":"400","highest_child_id":1076,"first_entry_time":26679,"exclusive_time":0,"entries":5}],"allocations":[{"id":"27","count":1},{"id":"25","count":1}]}]},{"inclusive_time":20,"id":"416","highest_child_id":1081,"first_entry_time":26685,"exclusive_time":13,"entries":1,"callees":[{"inclusive_time":1,"id":"406","highest_child_id":1078,"first_entry_time":26687,"exclusive_time":1,"entries":1,"allocations":[{"id":"10","count":1},{"id":"25","count":1}]},{"inclusive_time":0,"id":"400","highest_child_id":1079,"first_entry_time":26689,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"409","highest_child_id":1080,"first_entry_time":26691,"exclusive_time":0,"entries":1},{"inclusive_time":4,"id":"417","highest_child_id":1081,"first_entry_time":26693,"exclusive_time":3,"entries":7}],"allocations":[{"id":"10","count":2},{"id":"25","count":9}]},{"inclusive_time":114,"id":"418","highest_child_id":1091,"first_entry_time":26707,"exclusive_time":88,"entries":1,"callees":[{"inclusive_time":0,"id":"419","highest_child_id":1083,"first_entry_time":26708,"exclusive_time":0,"entries":1},{"inclusive_time":6,"id":"406","highest_child_id":1084,"first_entry_time":26710,"exclusive_time":5,"entries":7,"allocations":[{"id":"10","count":7},{"id":"25","count":7}]},{"inclusive_time":3,"id":"404","highest_child_id":1085,"first_entry_time":26712,"exclusive_time":2,"entries":7},{"inclusive_time":3,"id":"420","highest_child_id":1086,"first_entry_time":26728,"exclusive_time":1,"entries":14},{"inclusive_time":5,"id":"421","highest_child_id":1087,"first_entry_time":26729,"exclusive_time":2,"entries":14},{"inclusive_time":5,"id":"422","highest_child_id":1088,"first_entry_time":26731,"exclusive_time":3,"entries":14},{"inclusive_time":4,"id":"423","highest_child_id":1089,"first_entry_time":26732,"exclusive_time":2,"entries":14},{"inclusive_time":5,"id":"424","highest_child_id":1090,"first_entry_time":26734,"exclusive_time":3,"entries":14},{"inclusive_time":5,"id":"425","highest_child_id":1091,"first_entry_time":26735,"exclusive_time":3,"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":"53","count":3},{"id":"27","count":1},{"id":"10","count":1}]}]}],"allocations":[{"id":"25","count":2},{"id":"53","count":1},{"id":"222","count":1},{"id":"27","count":1}]},{"inclusive_time":1,"id":"340","highest_child_id":1092,"first_entry_time":26826,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"263","highest_child_id":1093,"first_entry_time":26828,"exclusive_time":0,"entries":1}],"allocations":[{"id":"2","count":1},{"id":"27","count":2},{"id":"10","count":1}]},{"inclusive_time":1785,"id":"448","highest_child_id":1227,"first_entry_time":26844,"exclusive_time":38,"entries":1,"callees":[{"inclusive_time":1,"id":"296","highest_child_id":1095,"first_entry_time":26845,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"233","highest_child_id":1096,"first_entry_time":26847,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"297","highest_child_id":1097,"first_entry_time":26848,"exclusive_time":0,"entries":1},{"inclusive_time":13,"id":"184","highest_child_id":1100,"first_entry_time":26850,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":3,"id":"300","highest_child_id":1099,"first_entry_time":26854,"exclusive_time":3,"entries":1,"allocations":[{"id":"183","count":1},{"id":"6","count":1}]},{"inclusive_time":3,"id":"187","highest_child_id":1100,"first_entry_time":26859,"exclusive_time":3,"entries":1,"allocations":[{"id":"434","count":1},{"id":"26","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"434","count":1}]},{"inclusive_time":1728,"id":"449","highest_child_id":1225,"first_entry_time":26889,"exclusive_time":152,"entries":1,"callees":[{"inclusive_time":6,"id":"206","highest_child_id":1102,"first_entry_time":26891,"exclusive_time":6,"entries":1,"allocations":[{"id":"434","count":1},{"id":"26","count":1}]},{"inclusive_time":1246,"id":"450","highest_child_id":1191,"first_entry_time":27047,"exclusive_time":98,"entries":1,"callees":[{"inclusive_time":4,"id":"206","highest_child_id":1104,"first_entry_time":27049,"exclusive_time":4,"entries":1,"allocations":[{"id":"434","count":1},{"id":"26","count":1}]},{"inclusive_time":1,"id":"233","highest_child_id":1105,"first_entry_time":27056,"exclusive_time":1,"entries":3},{"inclusive_time":102,"id":"451","highest_child_id":1115,"first_entry_time":27089,"exclusive_time":60,"entries":3,"callees":[{"inclusive_time":8,"id":"206","highest_child_id":1107,"first_entry_time":27090,"exclusive_time":8,"entries":3,"allocations":[{"id":"434","count":3},{"id":"26","count":3}]},{"inclusive_time":27,"id":"452","highest_child_id":1111,"first_entry_time":27144,"exclusive_time":13,"entries":3,"callees":[{"inclusive_time":11,"id":"187","highest_child_id":1109,"first_entry_time":27146,"exclusive_time":10,"entries":3,"allocations":[{"id":"434","count":3},{"id":"26","count":3}]},{"inclusive_time":1,"id":"194","highest_child_id":1110,"first_entry_time":27152,"exclusive_time":1,"entries":3},{"inclusive_time":1,"id":"324","highest_child_id":1111,"first_entry_time":28254,"exclusive_time":1,"entries":1}],"allocations":[{"id":"27","count":3},{"id":"53","count":3}]},{"inclusive_time":2,"id":"228","highest_child_id":1112,"first_entry_time":27156,"exclusive_time":2,"entries":2},{"inclusive_time":4,"id":"243","highest_child_id":1115,"first_entry_time":28257,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":2,"id":"244","highest_child_id":1115,"first_entry_time":28259,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"189","highest_child_id":1115,"first_entry_time":28260,"exclusive_time":0,"entries":1}]}]}]},{"inclusive_time":13,"id":"453","highest_child_id":1118,"first_entry_time":27186,"exclusive_time":5,"entries":2,"callees":[{"inclusive_time":5,"id":"206","highest_child_id":1117,"first_entry_time":27188,"exclusive_time":5,"entries":2,"allocations":[{"id":"434","count":2},{"id":"26","count":2}]},{"inclusive_time":2,"id":"228","highest_child_id":1118,"first_entry_time":27193,"exclusive_time":2,"entries":2}]},{"inclusive_time":1010,"id":"454","highest_child_id":1181,"first_entry_time":27203,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":1007,"id":"316","highest_child_id":1181,"first_entry_time":27205,"exclusive_time":32,"entries":2,"callees":[{"inclusive_time":1,"id":"240","highest_child_id":1121,"first_entry_time":27207,"exclusive_time":1,"entries":2},{"inclusive_time":964,"id":"455","highest_child_id":1178,"first_entry_time":27229,"exclusive_time":165,"entries":1,"callees":[{"inclusive_time":432,"id":"456","highest_child_id":1130,"first_entry_time":27251,"exclusive_time":21,"entries":1,"callees":[{"inclusive_time":407,"id":"457","highest_child_id":1129,"first_entry_time":27260,"exclusive_time":16,"entries":1,"callees":[{"inclusive_time":391,"id":"458","highest_child_id":1129,"first_entry_time":27276,"exclusive_time":330,"entries":1,"callees":[{"inclusive_time":39,"id":"459","highest_child_id":1127,"first_entry_time":27296,"exclusive_time":35,"entries":1,"callees":[{"inclusive_time":4,"id":"459","highest_child_id":1127,"first_entry_time":27301,"exclusive_time":3,"entries":7}],"allocations":[{"id":"10","count":1},{"id":"25","count":8}]},{"inclusive_time":18,"id":"387","highest_child_id":1128,"first_entry_time":27337,"exclusive_time":7,"entries":69},{"inclusive_time":45,"id":"392","highest_child_id":1129,"first_entry_time":27359,"exclusive_time":13,"entries":195}],"allocations":[{"id":"6","count":1},{"id":"25","count":1},{"id":"27","count":284},{"id":"53","count":20},{"id":"10","count":5}]}]},{"inclusive_time":2,"id":"460","highest_child_id":1130,"first_entry_time":27680,"exclusive_time":2,"entries":1,"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":33,"id":"461","highest_child_id":1136,"first_entry_time":27693,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":20,"id":"167","highest_child_id":1135,"first_entry_time":27695,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":0,"id":"168","highest_child_id":1133,"first_entry_time":27698,"exclusive_time":0,"entries":1,"allocations":[{"id":"439","count":1}]},{"inclusive_time":15,"id":"108","highest_child_id":1135,"first_entry_time":27699,"exclusive_time":15,"entries":1,"callees":[{"inclusive_time":0,"id":"109","highest_child_id":1135,"first_entry_time":27708,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":2,"id":"462","highest_child_id":1136,"first_entry_time":27724,"exclusive_time":2,"entries":2,"allocations":[{"id":"10","count":2}]}],"allocations":[{"id":"10","count":2}]},{"inclusive_time":0,"id":"318","highest_child_id":1137,"first_entry_time":27728,"exclusive_time":0,"entries":1},{"inclusive_time":272,"id":"463","highest_child_id":1177,"first_entry_time":27773,"exclusive_time":63,"entries":1,"callees":[{"inclusive_time":0,"id":"303","highest_child_id":1139,"first_entry_time":27779,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"464","highest_child_id":1140,"first_entry_time":27787,"exclusive_time":0,"entries":1},{"inclusive_time":207,"id":"465","highest_child_id":1177,"first_entry_time":27838,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":1,"id":"462","highest_child_id":1142,"first_entry_time":27841,"exclusive_time":1,"entries":1,"allocations":[{"id":"10","count":1}]},{"inclusive_time":191,"id":"463","highest_child_id":1176,"first_entry_time":27848,"exclusive_time":18,"entries":1,"callees":[{"inclusive_time":0,"id":"303","highest_child_id":1144,"first_entry_time":27852,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"464","highest_child_id":1145,"first_entry_time":27854,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"456","highest_child_id":1146,"first_entry_time":27856,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":16,"id":"461","highest_child_id":1152,"first_entry_time":27862,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":11,"id":"167","highest_child_id":1151,"first_entry_time":27863,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":0,"id":"168","highest_child_id":1149,"first_entry_time":27866,"exclusive_time":0,"entries":1,"allocations":[{"id":"439","count":1}]},{"inclusive_time":8,"id":"108","highest_child_id":1151,"first_entry_time":27867,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":0,"id":"109","highest_child_id":1151,"first_entry_time":27870,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":2,"id":"462","highest_child_id":1152,"first_entry_time":27876,"exclusive_time":1,"entries":2,"allocations":[{"id":"10","count":2}]}],"allocations":[{"id":"10","count":2}]},{"inclusive_time":7,"id":"446","highest_child_id":1153,"first_entry_time":27881,"exclusive_time":7,"entries":4,"allocations":[{"id":"27","count":4}]},{"inclusive_time":0,"id":"318","highest_child_id":1154,"first_entry_time":27892,"exclusive_time":0,"entries":1},{"inclusive_time":145,"id":"465","highest_child_id":1176,"first_entry_time":27894,"exclusive_time":13,"entries":1,"callees":[{"inclusive_time":1,"id":"462","highest_child_id":1156,"first_entry_time":27895,"exclusive_time":1,"entries":1,"allocations":[{"id":"10","count":1}]},{"inclusive_time":128,"id":"463","highest_child_id":1175,"first_entry_time":27900,"exclusive_time":30,"entries":4,"callees":[{"inclusive_time":2,"id":"303","highest_child_id":1158,"first_entry_time":27904,"exclusive_time":1,"entries":4},{"inclusive_time":1,"id":"464","highest_child_id":1159,"first_entry_time":27906,"exclusive_time":0,"entries":4},{"inclusive_time":76,"id":"465","highest_child_id":1168,"first_entry_time":27908,"exclusive_time":26,"entries":4,"callees":[{"inclusive_time":1,"id":"462","highest_child_id":1161,"first_entry_time":27909,"exclusive_time":1,"entries":3,"allocations":[{"id":"10","count":3}]},{"inclusive_time":11,"id":"446","highest_child_id":1162,"first_entry_time":27918,"exclusive_time":10,"entries":7},{"inclusive_time":38,"id":"463","highest_child_id":1168,"first_entry_time":27958,"exclusive_time":11,"entries":2,"callees":[{"inclusive_time":1,"id":"303","highest_child_id":1164,"first_entry_time":27961,"exclusive_time":0,"entries":2},{"inclusive_time":0,"id":"464","highest_child_id":1165,"first_entry_time":27963,"exclusive_time":0,"entries":2},{"inclusive_time":25,"id":"465","highest_child_id":1168,"first_entry_time":27965,"exclusive_time":13,"entries":2,"callees":[{"inclusive_time":4,"id":"462","highest_child_id":1167,"first_entry_time":27967,"exclusive_time":4,"entries":2,"allocations":[{"id":"10","count":2}]},{"inclusive_time":7,"id":"446","highest_child_id":1168,"first_entry_time":27974,"exclusive_time":6,"entries":4,"allocations":[{"id":"28","count":3}]}],"allocations":[{"id":"10","count":4},{"id":"28","count":4}]}],"allocations":[{"id":"10","count":2},{"id":"6","count":2}]}],"allocations":[{"id":"10","count":9}]},{"inclusive_time":1,"id":"456","highest_child_id":1169,"first_entry_time":28009,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":18,"id":"461","highest_child_id":1175,"first_entry_time":28012,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":11,"id":"167","highest_child_id":1174,"first_entry_time":28016,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":0,"id":"168","highest_child_id":1172,"first_entry_time":28018,"exclusive_time":0,"entries":1,"allocations":[{"id":"439","count":1}]},{"inclusive_time":7,"id":"108","highest_child_id":1174,"first_entry_time":28019,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":0,"id":"109","highest_child_id":1174,"first_entry_time":28021,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":1,"id":"462","highest_child_id":1175,"first_entry_time":28028,"exclusive_time":1,"entries":2,"allocations":[{"id":"10","count":2}]}],"allocations":[{"id":"10","count":2}]}],"allocations":[{"id":"10","count":4},{"id":"6","count":4}]},{"inclusive_time":3,"id":"446","highest_child_id":1176,"first_entry_time":28036,"exclusive_time":3,"entries":2}],"allocations":[{"id":"10","count":6}]}],"allocations":[{"id":"10","count":2},{"id":"6","count":1},{"id":"25","count":1}]},{"inclusive_time":3,"id":"446","highest_child_id":1177,"first_entry_time":28041,"exclusive_time":3,"entries":2}],"allocations":[{"id":"10","count":4}]}],"allocations":[{"id":"6","count":2},{"id":"10","count":1}]},{"inclusive_time":60,"id":"466","highest_child_id":1178,"first_entry_time":28133,"exclusive_time":60,"entries":1,"allocations":[{"id":"26","count":2},{"id":"10","count":13}]}],"allocations":[{"id":"25","count":1}]},{"inclusive_time":2,"id":"460","highest_child_id":1179,"first_entry_time":28195,"exclusive_time":2,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":5,"id":"317","highest_child_id":1180,"first_entry_time":28200,"exclusive_time":5,"entries":2,"allocations":[{"id":"467","count":1},{"id":"26","count":2}]},{"inclusive_time":0,"id":"318","highest_child_id":1181,"first_entry_time":28206,"exclusive_time":0,"entries":2}],"allocations":[{"id":"27","count":2}]}]},{"inclusive_time":12,"id":"207","highest_child_id":1187,"first_entry_time":28263,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":0,"id":"208","highest_child_id":1183,"first_entry_time":28265,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"209","highest_child_id":1184,"first_entry_time":28266,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"210","highest_child_id":1185,"first_entry_time":28268,"exclusive_time":0,"entries":1},{"inclusive_time":3,"id":"211","highest_child_id":1186,"first_entry_time":28269,"exclusive_time":3,"entries":1,"allocations":[{"id":"6","count":1},{"id":"10","count":4}]},{"inclusive_time":0,"id":"212","highest_child_id":1187,"first_entry_time":28273,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":1,"id":"296","highest_child_id":1188,"first_entry_time":28286,"exclusive_time":0,"entries":1},{"inclusive_time":4,"id":"243","highest_child_id":1191,"first_entry_time":28289,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":2,"id":"244","highest_child_id":1191,"first_entry_time":28291,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"189","highest_child_id":1191,"first_entry_time":28292,"exclusive_time":0,"entries":1}]}]}],"allocations":[{"id":"10","count":1},{"id":"53","count":1},{"id":"27","count":1}]},{"inclusive_time":323,"id":"243","highest_child_id":1225,"first_entry_time":28294,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":322,"id":"244","highest_child_id":1225,"first_entry_time":28295,"exclusive_time":75,"entries":1,"callees":[{"inclusive_time":0,"id":"189","highest_child_id":1194,"first_entry_time":28296,"exclusive_time":0,"entries":1},{"inclusive_time":4,"id":"207","highest_child_id":1197,"first_entry_time":28298,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":0,"id":"208","highest_child_id":1196,"first_entry_time":28300,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"209","highest_child_id":1197,"first_entry_time":28301,"exclusive_time":0,"entries":1}]},{"inclusive_time":241,"id":"468","highest_child_id":1225,"first_entry_time":28376,"exclusive_time":45,"entries":1,"callees":[{"inclusive_time":191,"id":"469","highest_child_id":1221,"first_entry_time":28405,"exclusive_time":63,"entries":1,"callees":[{"inclusive_time":115,"id":"470","highest_child_id":1216,"first_entry_time":28456,"exclusive_time":64,"entries":1,"callees":[{"inclusive_time":1,"id":"216","highest_child_id":1201,"first_entry_time":28460,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"471","highest_child_id":1202,"first_entry_time":28468,"exclusive_time":0,"entries":1},{"inclusive_time":3,"id":"472","highest_child_id":1203,"first_entry_time":28491,"exclusive_time":3,"entries":1,"allocations":[{"id":"10","count":1},{"id":"222","count":1}]},{"inclusive_time":3,"id":"473","highest_child_id":1204,"first_entry_time":28508,"exclusive_time":3,"entries":1,"allocations":[{"id":"27","count":1},{"id":"173","count":1},{"id":"25","count":1}]},{"inclusive_time":18,"id":"339","highest_child_id":1210,"first_entry_time":28514,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":16,"id":"256","highest_child_id":1210,"first_entry_time":28517,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":0,"id":"216","highest_child_id":1207,"first_entry_time":28522,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"257","highest_child_id":1208,"first_entry_time":28524,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"251","highest_child_id":1209,"first_entry_time":28525,"exclusive_time":2,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":2,"id":"258","highest_child_id":1210,"first_entry_time":28529,"exclusive_time":2,"entries":1,"allocations":[{"id":"27","count":1}]}]}]},{"inclusive_time":4,"id":"271","highest_child_id":1213,"first_entry_time":28535,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":2,"id":"272","highest_child_id":1213,"first_entry_time":28536,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"273","highest_child_id":1213,"first_entry_time":28537,"exclusive_time":0,"entries":1}]}]},{"inclusive_time":20,"id":"474","highest_child_id":1216,"first_entry_time":28550,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":16,"id":"221","highest_child_id":1216,"first_entry_time":28554,"exclusive_time":14,"entries":1,"callees":[{"inclusive_time":1,"id":"476","highest_child_id":1216,"first_entry_time":28564,"exclusive_time":1,"entries":1}],"allocations":[{"id":"222","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"475","count":1}]}],"allocations":[{"id":"27","count":3},{"id":"10","count":1},{"id":"6","count":1},{"id":"25","count":1},{"id":"53","count":4},{"id":"57","count":1}]},{"inclusive_time":4,"id":"288","highest_child_id":1217,"first_entry_time":28573,"exclusive_time":4,"entries":1,"allocations":[{"id":"6","count":1},{"id":"289","count":1}]},{"inclusive_time":1,"id":"476","highest_child_id":1218,"first_entry_time":28579,"exclusive_time":0,"entries":1},{"inclusive_time":7,"id":"477","highest_child_id":1221,"first_entry_time":28589,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":3,"id":"221","highest_child_id":1221,"first_entry_time":28592,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"476","highest_child_id":1221,"first_entry_time":28594,"exclusive_time":0,"entries":1}],"allocations":[{"id":"222","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"478","count":1}]}]},{"inclusive_time":0,"id":"334","highest_child_id":1222,"first_entry_time":28597,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"479","highest_child_id":1223,"first_entry_time":28604,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"223","highest_child_id":1224,"first_entry_time":28607,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"480","highest_child_id":1225,"first_entry_time":28615,"exclusive_time":1,"entries":1}],"allocations":[{"id":"10","count":1},{"id":"27","count":2},{"id":"25","count":2}]}]}]}],"allocations":[{"id":"10","count":1}]},{"inclusive_time":3,"id":"481","highest_child_id":1227,"first_entry_time":28626,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"299","highest_child_id":1227,"first_entry_time":28628,"exclusive_time":0,"entries":1}]}]},{"inclusive_time":4,"id":"252","highest_child_id":1228,"first_entry_time":28631,"exclusive_time":4,"entries":1,"allocations":[{"id":"10","count":1}]},{"inclusive_time":62,"id":"243","highest_child_id":1241,"first_entry_time":28638,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":56,"id":"244","highest_child_id":1241,"first_entry_time":28640,"exclusive_time":29,"entries":1,"callees":[{"inclusive_time":0,"id":"189","highest_child_id":1231,"first_entry_time":28641,"exclusive_time":0,"entries":1},{"inclusive_time":14,"id":"207","highest_child_id":1238,"first_entry_time":28643,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":0,"id":"208","highest_child_id":1233,"first_entry_time":28645,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"209","highest_child_id":1234,"first_entry_time":28647,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"210","highest_child_id":1235,"first_entry_time":28648,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"211","highest_child_id":1236,"first_entry_time":28650,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":0,"id":"212","highest_child_id":1237,"first_entry_time":28652,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"207","highest_child_id":1238,"first_entry_time":28655,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":11,"id":"482","highest_child_id":1241,"first_entry_time":28684,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":1,"id":"483","highest_child_id":1240,"first_entry_time":28692,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"480","highest_child_id":1241,"first_entry_time":28695,"exclusive_time":0,"entries":1}]}]}]}],"allocations":[{"id":"10","count":1},{"id":"27","count":1}]}],"allocations":[{"id":"27","count":1}]}]},{"inclusive_time":4,"id":"252","highest_child_id":1242,"first_entry_time":28702,"exclusive_time":3,"entries":1,"allocations":[{"id":"10","count":1}]},{"inclusive_time":31,"id":"243","highest_child_id":1255,"first_entry_time":28707,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":29,"id":"244","highest_child_id":1255,"first_entry_time":28709,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":0,"id":"189","highest_child_id":1245,"first_entry_time":28710,"exclusive_time":0,"entries":1},{"inclusive_time":13,"id":"207","highest_child_id":1252,"first_entry_time":28712,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":0,"id":"208","highest_child_id":1247,"first_entry_time":28714,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"209","highest_child_id":1248,"first_entry_time":28715,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"210","highest_child_id":1249,"first_entry_time":28716,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"211","highest_child_id":1250,"first_entry_time":28717,"exclusive_time":0,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":0,"id":"212","highest_child_id":1251,"first_entry_time":28719,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"207","highest_child_id":1252,"first_entry_time":28722,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":4,"id":"484","highest_child_id":1255,"first_entry_time":28734,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"483","highest_child_id":1254,"first_entry_time":28736,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"480","highest_child_id":1255,"first_entry_time":28737,"exclusive_time":0,"entries":1}]}]}]}]}],"allocations":[{"id":"27","count":1}]}]},{"inclusive_time":3,"id":"252","highest_child_id":1256,"first_entry_time":28741,"exclusive_time":3,"entries":1,"allocations":[{"id":"10","count":1}]},{"inclusive_time":33,"id":"243","highest_child_id":1269,"first_entry_time":28745,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":31,"id":"244","highest_child_id":1269,"first_entry_time":28747,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":0,"id":"189","highest_child_id":1259,"first_entry_time":28748,"exclusive_time":0,"entries":1},{"inclusive_time":15,"id":"207","highest_child_id":1266,"first_entry_time":28749,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":0,"id":"208","highest_child_id":1261,"first_entry_time":28751,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"209","highest_child_id":1262,"first_entry_time":28752,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"210","highest_child_id":1263,"first_entry_time":28756,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"211","highest_child_id":1264,"first_entry_time":28758,"exclusive_time":0,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":0,"id":"212","highest_child_id":1265,"first_entry_time":28759,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"207","highest_child_id":1266,"first_entry_time":28762,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":4,"id":"485","highest_child_id":1269,"first_entry_time":28774,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"483","highest_child_id":1268,"first_entry_time":28775,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"480","highest_child_id":1269,"first_entry_time":28777,"exclusive_time":0,"entries":1}]}]}]}]}],"allocations":[{"id":"27","count":1}]}]},{"inclusive_time":3,"id":"252","highest_child_id":1270,"first_entry_time":28780,"exclusive_time":3,"entries":1,"allocations":[{"id":"10","count":1}]},{"inclusive_time":14,"id":"207","highest_child_id":1277,"first_entry_time":28789,"exclusive_time":8,"entries":3,"callees":[{"inclusive_time":0,"id":"208","highest_child_id":1272,"first_entry_time":28790,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"209","highest_child_id":1273,"first_entry_time":28792,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"210","highest_child_id":1274,"first_entry_time":28793,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"211","highest_child_id":1275,"first_entry_time":28794,"exclusive_time":2,"entries":1,"allocations":[{"id":"6","count":1},{"id":"10","count":2}]},{"inclusive_time":0,"id":"212","highest_child_id":1276,"first_entry_time":28797,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"207","highest_child_id":1277,"first_entry_time":28800,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":41,"id":"486","highest_child_id":1290,"first_entry_time":29049,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":5,"id":"206","highest_child_id":1279,"first_entry_time":29052,"exclusive_time":5,"entries":1,"allocations":[{"id":"185","count":1},{"id":"26","count":1}]},{"inclusive_time":28,"id":"352","highest_child_id":1289,"first_entry_time":29059,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":6,"id":"206","highest_child_id":1281,"first_entry_time":29061,"exclusive_time":6,"entries":1,"allocations":[{"id":"185","count":1},{"id":"26","count":1}]},{"inclusive_time":2,"id":"231","highest_child_id":1283,"first_entry_time":29070,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"232","highest_child_id":1283,"first_entry_time":29072,"exclusive_time":0,"entries":1}]},{"inclusive_time":7,"id":"239","highest_child_id":1286,"first_entry_time":29074,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"240","highest_child_id":1285,"first_entry_time":29076,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":2,"id":"241","highest_child_id":1286,"first_entry_time":29079,"exclusive_time":2,"entries":1}]},{"inclusive_time":4,"id":"243","highest_child_id":1289,"first_entry_time":29083,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":2,"id":"244","highest_child_id":1289,"first_entry_time":29085,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"189","highest_child_id":1289,"first_entry_time":29086,"exclusive_time":0,"entries":1}]}]}]},{"inclusive_time":1,"id":"228","highest_child_id":1290,"first_entry_time":29089,"exclusive_time":1,"entries":1}]},{"inclusive_time":47,"id":"243","highest_child_id":1303,"first_entry_time":29094,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":44,"id":"244","highest_child_id":1303,"first_entry_time":29096,"exclusive_time":18,"entries":1,"callees":[{"inclusive_time":0,"id":"189","highest_child_id":1293,"first_entry_time":29097,"exclusive_time":0,"entries":1},{"inclusive_time":15,"id":"207","highest_child_id":1300,"first_entry_time":29099,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":0,"id":"208","highest_child_id":1295,"first_entry_time":29101,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"209","highest_child_id":1296,"first_entry_time":29102,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"210","highest_child_id":1297,"first_entry_time":29103,"exclusive_time":0,"entries":1},{"inclusive_time":3,"id":"211","highest_child_id":1298,"first_entry_time":29105,"exclusive_time":3,"entries":1,"allocations":[{"id":"6","count":1},{"id":"10","count":2}]},{"inclusive_time":0,"id":"212","highest_child_id":1299,"first_entry_time":29109,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"207","highest_child_id":1300,"first_entry_time":29112,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":11,"id":"487","highest_child_id":1303,"first_entry_time":29124,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":1,"id":"488","highest_child_id":1302,"first_entry_time":29132,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"480","highest_child_id":1303,"first_entry_time":29135,"exclusive_time":0,"entries":1}]}]}]}],"allocations":[{"id":"27","count":2}]},{"inclusive_time":0,"id":"207","highest_child_id":1304,"first_entry_time":29143,"exclusive_time":0,"entries":1},{"inclusive_time":47,"id":"230","highest_child_id":1324,"first_entry_time":29147,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":5,"id":"231","highest_child_id":1308,"first_entry_time":29147,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"233","highest_child_id":1307,"first_entry_time":29149,"exclusive_time":0,"entries":2},{"inclusive_time":0,"id":"232","highest_child_id":1308,"first_entry_time":29151,"exclusive_time":0,"entries":1}]},{"inclusive_time":1,"id":"234","highest_child_id":1309,"first_entry_time":29153,"exclusive_time":1,"entries":1},{"inclusive_time":38,"id":"235","highest_child_id":1324,"first_entry_time":29156,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":3,"id":"206","highest_child_id":1311,"first_entry_time":29157,"exclusive_time":3,"entries":1,"allocations":[{"id":"185","count":1},{"id":"26","count":1}]},{"inclusive_time":2,"id":"236","highest_child_id":1312,"first_entry_time":29162,"exclusive_time":1,"entries":2,"allocations":[{"id":"173","count":2}]},{"inclusive_time":1,"id":"237","highest_child_id":1313,"first_entry_time":29164,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"238","highest_child_id":1314,"first_entry_time":29166,"exclusive_time":1,"entries":1},{"inclusive_time":6,"id":"239","highest_child_id":1317,"first_entry_time":29169,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"240","highest_child_id":1316,"first_entry_time":29171,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":2,"id":"241","highest_child_id":1317,"first_entry_time":29173,"exclusive_time":2,"entries":1}]},{"inclusive_time":5,"id":"242","highest_child_id":1321,"first_entry_time":29178,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":0,"id":"350","highest_child_id":1319,"first_entry_time":29180,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"233","highest_child_id":1320,"first_entry_time":29181,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"351","highest_child_id":1321,"first_entry_time":29182,"exclusive_time":0,"entries":1}]},{"inclusive_time":8,"id":"243","highest_child_id":1324,"first_entry_time":29186,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":6,"id":"244","highest_child_id":1324,"first_entry_time":29187,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":0,"id":"189","highest_child_id":1324,"first_entry_time":29188,"exclusive_time":0,"entries":1}]}]}]}]},{"inclusive_time":39,"id":"489","highest_child_id":1337,"first_entry_time":29407,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":4,"id":"206","highest_child_id":1326,"first_entry_time":29414,"exclusive_time":4,"entries":1,"allocations":[{"id":"185","count":1},{"id":"26","count":1}]},{"inclusive_time":23,"id":"352","highest_child_id":1336,"first_entry_time":29421,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":3,"id":"206","highest_child_id":1328,"first_entry_time":29422,"exclusive_time":3,"entries":1,"allocations":[{"id":"185","count":1},{"id":"26","count":1}]},{"inclusive_time":2,"id":"231","highest_child_id":1330,"first_entry_time":29427,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"232","highest_child_id":1330,"first_entry_time":29429,"exclusive_time":0,"entries":1}]},{"inclusive_time":6,"id":"239","highest_child_id":1333,"first_entry_time":29431,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"240","highest_child_id":1332,"first_entry_time":29433,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":2,"id":"241","highest_child_id":1333,"first_entry_time":29436,"exclusive_time":2,"entries":1}]},{"inclusive_time":4,"id":"243","highest_child_id":1336,"first_entry_time":29440,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":2,"id":"244","highest_child_id":1336,"first_entry_time":29441,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"189","highest_child_id":1336,"first_entry_time":29442,"exclusive_time":0,"entries":1}]}]}]},{"inclusive_time":1,"id":"228","highest_child_id":1337,"first_entry_time":29445,"exclusive_time":1,"entries":1}],"allocations":[{"id":"2","count":2}]},{"inclusive_time":22,"id":"490","highest_child_id":1340,"first_entry_time":29483,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":12,"id":"187","highest_child_id":1339,"first_entry_time":29485,"exclusive_time":12,"entries":1,"allocations":[{"id":"185","count":1},{"id":"26","count":1}]},{"inclusive_time":1,"id":"324","highest_child_id":1340,"first_entry_time":29499,"exclusive_time":1,"entries":1}],"allocations":[{"id":"18","count":2}]},{"inclusive_time":501,"id":"244","highest_child_id":1344,"first_entry_time":29510,"exclusive_time":495,"entries":1,"callees":[{"inclusive_time":1,"id":"189","highest_child_id":1342,"first_entry_time":29511,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"207","highest_child_id":1343,"first_entry_time":29513,"exclusive_time":0,"entries":1},{"inclusive_time":4,"id":"491","highest_child_id":1344,"first_entry_time":30006,"exclusive_time":3,"entries":1,"allocations":[{"id":"2","count":1}]}]}],"allocations":[{"id":"10","count":4},{"id":"6","count":2}]}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":5,"id":"252","highest_child_id":1345,"first_entry_time":30014,"exclusive_time":4,"entries":1,"allocations":[{"id":"10","count":1}]},{"inclusive_time":194,"id":"243","highest_child_id":1369,"first_entry_time":30021,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":192,"id":"244","highest_child_id":1369,"first_entry_time":30023,"exclusive_time":120,"entries":1,"callees":[{"inclusive_time":0,"id":"189","highest_child_id":1348,"first_entry_time":30024,"exclusive_time":0,"entries":1},{"inclusive_time":14,"id":"207","highest_child_id":1355,"first_entry_time":30027,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":0,"id":"208","highest_child_id":1350,"first_entry_time":30029,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"209","highest_child_id":1351,"first_entry_time":30030,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"210","highest_child_id":1352,"first_entry_time":30032,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"211","highest_child_id":1353,"first_entry_time":30033,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":0,"id":"212","highest_child_id":1354,"first_entry_time":30035,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"207","highest_child_id":1355,"first_entry_time":30038,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":56,"id":"492","highest_child_id":1369,"first_entry_time":30159,"exclusive_time":18,"entries":1,"callees":[{"inclusive_time":24,"id":"256","highest_child_id":1361,"first_entry_time":30165,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":0,"id":"216","highest_child_id":1358,"first_entry_time":30168,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"257","highest_child_id":1359,"first_entry_time":30170,"exclusive_time":0,"entries":1},{"inclusive_time":10,"id":"251","highest_child_id":1360,"first_entry_time":30172,"exclusive_time":9,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":3,"id":"258","highest_child_id":1361,"first_entry_time":30185,"exclusive_time":2,"entries":1,"allocations":[{"id":"27","count":1}]}]},{"inclusive_time":7,"id":"290","highest_child_id":1364,"first_entry_time":30190,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":3,"id":"221","highest_child_id":1364,"first_entry_time":30194,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"223","highest_child_id":1364,"first_entry_time":30196,"exclusive_time":0,"entries":1}],"allocations":[{"id":"222","count":1}]}],"allocations":[{"id":"10","count":1},{"id":"6","count":1},{"id":"291","count":1}]},{"inclusive_time":2,"id":"234","highest_child_id":1366,"first_entry_time":30198,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"331","highest_child_id":1366,"first_entry_time":30200,"exclusive_time":0,"entries":1}]},{"inclusive_time":1,"id":"483","highest_child_id":1367,"first_entry_time":30203,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"268","highest_child_id":1368,"first_entry_time":30212,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"480","highest_child_id":1369,"first_entry_time":30214,"exclusive_time":0,"entries":1}],"allocations":[{"id":"10","count":3},{"id":"6","count":1},{"id":"25","count":2}]}]}]}],"allocations":[{"id":"27","count":2}]},{"inclusive_time":3,"id":"252","highest_child_id":1370,"first_entry_time":30217,"exclusive_time":3,"entries":1,"allocations":[{"id":"10","count":1}]},{"inclusive_time":54,"id":"243","highest_child_id":1385,"first_entry_time":30222,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":51,"id":"244","highest_child_id":1385,"first_entry_time":30224,"exclusive_time":27,"entries":1,"callees":[{"inclusive_time":0,"id":"189","highest_child_id":1373,"first_entry_time":30225,"exclusive_time":0,"entries":1},{"inclusive_time":13,"id":"207","highest_child_id":1380,"first_entry_time":30227,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":0,"id":"208","highest_child_id":1375,"first_entry_time":30229,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"209","highest_child_id":1376,"first_entry_time":30230,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"210","highest_child_id":1377,"first_entry_time":30232,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"211","highest_child_id":1378,"first_entry_time":30233,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":0,"id":"212","highest_child_id":1379,"first_entry_time":30235,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"207","highest_child_id":1380,"first_entry_time":30238,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":9,"id":"493","highest_child_id":1385,"first_entry_time":30266,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":2,"id":"234","highest_child_id":1383,"first_entry_time":30269,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"331","highest_child_id":1383,"first_entry_time":30270,"exclusive_time":0,"entries":1}]},{"inclusive_time":0,"id":"483","highest_child_id":1384,"first_entry_time":30272,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"480","highest_child_id":1385,"first_entry_time":30275,"exclusive_time":0,"entries":1}]}]}]}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":1,"id":"296","highest_child_id":1386,"first_entry_time":30305,"exclusive_time":0,"entries":1},{"inclusive_time":862,"id":"243","highest_child_id":1470,"first_entry_time":30313,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":860,"id":"244","highest_child_id":1470,"first_entry_time":30315,"exclusive_time":262,"entries":1,"callees":[{"inclusive_time":0,"id":"189","highest_child_id":1389,"first_entry_time":30316,"exclusive_time":0,"entries":1},{"inclusive_time":13,"id":"207","highest_child_id":1396,"first_entry_time":30318,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":0,"id":"208","highest_child_id":1391,"first_entry_time":30320,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"209","highest_child_id":1392,"first_entry_time":30321,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"210","highest_child_id":1393,"first_entry_time":30322,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"211","highest_child_id":1394,"first_entry_time":30323,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":0,"id":"212","highest_child_id":1395,"first_entry_time":30325,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"207","highest_child_id":1396,"first_entry_time":30327,"exclusive_time":0,"entries":2}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":583,"id":"494","highest_child_id":1470,"first_entry_time":30591,"exclusive_time":236,"entries":1,"callees":[{"inclusive_time":3,"id":"335","highest_child_id":1398,"first_entry_time":30597,"exclusive_time":3,"entries":1,"allocations":[{"id":"25","count":1}]},{"inclusive_time":2,"id":"234","highest_child_id":1400,"first_entry_time":30602,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"331","highest_child_id":1400,"first_entry_time":30604,"exclusive_time":0,"entries":1}]},{"inclusive_time":1,"id":"495","highest_child_id":1401,"first_entry_time":30618,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"337","highest_child_id":1402,"first_entry_time":30625,"exclusive_time":0,"entries":1},{"inclusive_time":45,"id":"496","highest_child_id":1415,"first_entry_time":30647,"exclusive_time":15,"entries":1,"callees":[{"inclusive_time":18,"id":"339","highest_child_id":1409,"first_entry_time":30650,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":15,"id":"256","highest_child_id":1409,"first_entry_time":30652,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":0,"id":"216","highest_child_id":1406,"first_entry_time":30656,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"257","highest_child_id":1407,"first_entry_time":30658,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"251","highest_child_id":1408,"first_entry_time":30660,"exclusive_time":2,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":2,"id":"258","highest_child_id":1409,"first_entry_time":30664,"exclusive_time":2,"entries":1,"allocations":[{"id":"27","count":1}]}]}]},{"inclusive_time":9,"id":"256","highest_child_id":1414,"first_entry_time":30670,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":0,"id":"216","highest_child_id":1411,"first_entry_time":30672,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"257","highest_child_id":1412,"first_entry_time":30673,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"251","highest_child_id":1413,"first_entry_time":30674,"exclusive_time":1,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":1,"id":"258","highest_child_id":1414,"first_entry_time":30677,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]}]},{"inclusive_time":2,"id":"497","highest_child_id":1415,"first_entry_time":30690,"exclusive_time":1,"entries":1}]},{"inclusive_time":1,"id":"483","highest_child_id":1416,"first_entry_time":30694,"exclusive_time":1,"entries":1},{"inclusive_time":4,"id":"332","highest_child_id":1418,"first_entry_time":30696,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"333","highest_child_id":1418,"first_entry_time":30698,"exclusive_time":0,"entries":1}],"allocations":[{"id":"53","count":1}]},{"inclusive_time":57,"id":"498","highest_child_id":1431,"first_entry_time":30764,"exclusive_time":18,"entries":1,"callees":[{"inclusive_time":39,"id":"499","highest_child_id":1431,"first_entry_time":30782,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":1,"id":"286","highest_child_id":1421,"first_entry_time":30784,"exclusive_time":0,"entries":1},{"inclusive_time":32,"id":"280","highest_child_id":1431,"first_entry_time":30788,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":23,"id":"281","highest_child_id":1429,"first_entry_time":30791,"exclusive_time":15,"entries":1,"callees":[{"inclusive_time":5,"id":"282","highest_child_id":1426,"first_entry_time":30802,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":1,"id":"283","highest_child_id":1425,"first_entry_time":30804,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"284","highest_child_id":1426,"first_entry_time":30813,"exclusive_time":0,"entries":1}]},{"inclusive_time":2,"id":"285","highest_child_id":1428,"first_entry_time":30807,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"283","highest_child_id":1428,"first_entry_time":30808,"exclusive_time":0,"entries":1}]},{"inclusive_time":0,"id":"286","highest_child_id":1429,"first_entry_time":30810,"exclusive_time":0,"entries":1}],"allocations":[{"id":"2","count":1},{"id":"27","count":1},{"id":"28","count":1}]},{"inclusive_time":4,"id":"282","highest_child_id":1431,"first_entry_time":30815,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":0,"id":"284","highest_child_id":1431,"first_entry_time":30819,"exclusive_time":0,"entries":1}]}],"allocations":[{"id":"27","count":1},{"id":"53","count":1}]}],"allocations":[{"id":"27","count":1},{"id":"53","count":1}]}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":2,"id":"500","highest_child_id":1432,"first_entry_time":30833,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"350","highest_child_id":1433,"first_entry_time":30837,"exclusive_time":0,"entries":1},{"inclusive_time":225,"id":"501","highest_child_id":1467,"first_entry_time":30942,"exclusive_time":28,"entries":1,"callees":[{"inclusive_time":1,"id":"189","highest_child_id":1435,"first_entry_time":30946,"exclusive_time":1,"entries":1},{"inclusive_time":11,"id":"502","highest_child_id":1440,"first_entry_time":30958,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":9,"id":"167","highest_child_id":1440,"first_entry_time":30960,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":0,"id":"168","highest_child_id":1438,"first_entry_time":30962,"exclusive_time":0,"entries":1,"allocations":[{"id":"503","count":1}]},{"inclusive_time":5,"id":"108","highest_child_id":1440,"first_entry_time":30964,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":0,"id":"109","highest_child_id":1440,"first_entry_time":30966,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1}]}]},{"inclusive_time":151,"id":"504","highest_child_id":1455,"first_entry_time":30977,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":149,"id":"181","highest_child_id":1455,"first_entry_time":30979,"exclusive_time":31,"entries":1,"callees":[{"inclusive_time":1,"id":"182","highest_child_id":1443,"first_entry_time":30984,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":2},{"id":"183","count":1}]},{"inclusive_time":9,"id":"184","highest_child_id":1445,"first_entry_time":30987,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":3,"id":"187","highest_child_id":1445,"first_entry_time":30993,"exclusive_time":3,"entries":1,"allocations":[{"id":"505","count":1},{"id":"26","count":1}]}],"allocations":[{"id":"6","count":2},{"id":"505","count":1},{"id":"186","count":1},{"id":"173","count":1}]},{"inclusive_time":104,"id":"506","highest_child_id":1454,"first_entry_time":31022,"exclusive_time":56,"entries":1,"callees":[{"inclusive_time":3,"id":"206","highest_child_id":1447,"first_entry_time":31024,"exclusive_time":3,"entries":1,"allocations":[{"id":"505","count":1},{"id":"26","count":1}]},{"inclusive_time":43,"id":"507","highest_child_id":1453,"first_entry_time":31081,"exclusive_time":22,"entries":1,"callees":[{"inclusive_time":4,"id":"206","highest_child_id":1449,"first_entry_time":31084,"exclusive_time":3,"entries":1,"allocations":[{"id":"505","count":1},{"id":"26","count":1}]},{"inclusive_time":15,"id":"508","highest_child_id":1452,"first_entry_time":31107,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":3,"id":"206","highest_child_id":1451,"first_entry_time":31108,"exclusive_time":3,"entries":1,"allocations":[{"id":"505","count":1},{"id":"26","count":1}]},{"inclusive_time":1,"id":"228","highest_child_id":1452,"first_entry_time":31120,"exclusive_time":1,"entries":1}]},{"inclusive_time":1,"id":"228","highest_child_id":1453,"first_entry_time":31123,"exclusive_time":1,"entries":1}],"allocations":[{"id":"2","count":2}]},{"inclusive_time":1,"id":"228","highest_child_id":1454,"first_entry_time":31125,"exclusive_time":0,"entries":1}]},{"inclusive_time":2,"id":"207","highest_child_id":1455,"first_entry_time":31127,"exclusive_time":1,"entries":1}],"allocations":[{"id":"6","count":1}]}]},{"inclusive_time":0,"id":"234","highest_child_id":1456,"first_entry_time":31130,"exclusive_time":0,"entries":1},{"inclusive_time":33,"id":"346","highest_child_id":1467,"first_entry_time":31134,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"216","highest_child_id":1458,"first_entry_time":31135,"exclusive_time":0,"entries":1},{"inclusive_time":30,"id":"347","highest_child_id":1467,"first_entry_time":31137,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":3,"id":"251","highest_child_id":1460,"first_entry_time":31139,"exclusive_time":2,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":1,"id":"258","highest_child_id":1461,"first_entry_time":31145,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":17,"id":"339","highest_child_id":1467,"first_entry_time":31149,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":0,"id":"216","highest_child_id":1463,"first_entry_time":31151,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"257","highest_child_id":1464,"first_entry_time":31152,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"251","highest_child_id":1465,"first_entry_time":31155,"exclusive_time":1,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":2,"id":"258","highest_child_id":1466,"first_entry_time":31159,"exclusive_time":2,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":0,"id":"479","highest_child_id":1467,"first_entry_time":31162,"exclusive_time":0,"entries":1}],"allocations":[{"id":"10","count":1},{"id":"25","count":1}]}],"allocations":[{"id":"10","count":1},{"id":"27","count":3}]}]}],"allocations":[{"id":"2","count":1},{"id":"27","count":3},{"id":"53","count":2}]},{"inclusive_time":1,"id":"286","highest_child_id":1468,"first_entry_time":31168,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"223","highest_child_id":1469,"first_entry_time":31172,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"480","highest_child_id":1470,"first_entry_time":31174,"exclusive_time":1,"entries":1}],"allocations":[{"id":"2","count":1},{"id":"10","count":1},{"id":"53","count":1},{"id":"27","count":2}]}]}]}],"allocations":[{"id":"6","count":1},{"id":"27","count":5}]}],"allocations":[{"id":"27","count":1}]}]},{"inclusive_time":4,"id":"252","highest_child_id":1471,"first_entry_time":31178,"exclusive_time":4,"entries":1,"allocations":[{"id":"10","count":1}]},{"inclusive_time":23,"id":"207","highest_child_id":1478,"first_entry_time":31190,"exclusive_time":17,"entries":3,"callees":[{"inclusive_time":0,"id":"208","highest_child_id":1473,"first_entry_time":31193,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"209","highest_child_id":1474,"first_entry_time":31194,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"210","highest_child_id":1475,"first_entry_time":31195,"exclusive_time":0,"entries":1},{"inclusive_time":3,"id":"211","highest_child_id":1476,"first_entry_time":31197,"exclusive_time":2,"entries":1,"allocations":[{"id":"6","count":1},{"id":"10","count":2}]},{"inclusive_time":0,"id":"212","highest_child_id":1477,"first_entry_time":31200,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"207","highest_child_id":1478,"first_entry_time":31210,"exclusive_time":1,"entries":1}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":38,"id":"486","highest_child_id":1491,"first_entry_time":31218,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":4,"id":"206","highest_child_id":1480,"first_entry_time":31220,"exclusive_time":4,"entries":1,"allocations":[{"id":"185","count":1},{"id":"26","count":1}]},{"inclusive_time":23,"id":"352","highest_child_id":1490,"first_entry_time":31226,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":3,"id":"206","highest_child_id":1482,"first_entry_time":31227,"exclusive_time":2,"entries":1,"allocations":[{"id":"185","count":1},{"id":"26","count":1}]},{"inclusive_time":2,"id":"231","highest_child_id":1484,"first_entry_time":31232,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"232","highest_child_id":1484,"first_entry_time":31233,"exclusive_time":0,"entries":1}]},{"inclusive_time":7,"id":"239","highest_child_id":1487,"first_entry_time":31236,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"240","highest_child_id":1486,"first_entry_time":31237,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":2,"id":"241","highest_child_id":1487,"first_entry_time":31240,"exclusive_time":2,"entries":1}]},{"inclusive_time":4,"id":"243","highest_child_id":1490,"first_entry_time":31244,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":2,"id":"244","highest_child_id":1490,"first_entry_time":31247,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"189","highest_child_id":1490,"first_entry_time":31248,"exclusive_time":0,"entries":1}]}]}]},{"inclusive_time":1,"id":"228","highest_child_id":1491,"first_entry_time":31250,"exclusive_time":1,"entries":1}]},{"inclusive_time":24,"id":"243","highest_child_id":1504,"first_entry_time":31261,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":21,"id":"244","highest_child_id":1504,"first_entry_time":31264,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"189","highest_child_id":1494,"first_entry_time":31264,"exclusive_time":0,"entries":1},{"inclusive_time":14,"id":"207","highest_child_id":1501,"first_entry_time":31266,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":0,"id":"208","highest_child_id":1496,"first_entry_time":31268,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"209","highest_child_id":1497,"first_entry_time":31270,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"210","highest_child_id":1498,"first_entry_time":31271,"exclusive_time":0,"entries":1},{"inclusive_time":3,"id":"211","highest_child_id":1499,"first_entry_time":31272,"exclusive_time":2,"entries":1,"allocations":[{"id":"6","count":1},{"id":"10","count":2}]},{"inclusive_time":0,"id":"212","highest_child_id":1500,"first_entry_time":31276,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"207","highest_child_id":1501,"first_entry_time":31279,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":3,"id":"487","highest_child_id":1504,"first_entry_time":31282,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"488","highest_child_id":1503,"first_entry_time":31283,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"480","highest_child_id":1504,"first_entry_time":31284,"exclusive_time":0,"entries":1}]}]}]}],"allocations":[{"id":"27","count":2}]},{"inclusive_time":0,"id":"207","highest_child_id":1505,"first_entry_time":31287,"exclusive_time":0,"entries":1},{"inclusive_time":6,"id":"230","highest_child_id":1509,"first_entry_time":31290,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":3,"id":"231","highest_child_id":1508,"first_entry_time":31290,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"233","highest_child_id":1508,"first_entry_time":31292,"exclusive_time":0,"entries":2}]},{"inclusive_time":1,"id":"234","highest_child_id":1509,"first_entry_time":31294,"exclusive_time":1,"entries":1}]},{"inclusive_time":34,"id":"489","highest_child_id":1522,"first_entry_time":31297,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":3,"id":"206","highest_child_id":1511,"first_entry_time":31300,"exclusive_time":3,"entries":1,"allocations":[{"id":"185","count":1},{"id":"26","count":1}]},{"inclusive_time":24,"id":"352","highest_child_id":1521,"first_entry_time":31305,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":6,"id":"206","highest_child_id":1513,"first_entry_time":31306,"exclusive_time":6,"entries":1,"allocations":[{"id":"185","count":1},{"id":"26","count":1}]},{"inclusive_time":2,"id":"231","highest_child_id":1515,"first_entry_time":31314,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"232","highest_child_id":1515,"first_entry_time":31316,"exclusive_time":0,"entries":1}]},{"inclusive_time":5,"id":"239","highest_child_id":1518,"first_entry_time":31318,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"240","highest_child_id":1517,"first_entry_time":31320,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":1,"id":"241","highest_child_id":1518,"first_entry_time":31322,"exclusive_time":1,"entries":1}]},{"inclusive_time":4,"id":"243","highest_child_id":1521,"first_entry_time":31325,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":2,"id":"244","highest_child_id":1521,"first_entry_time":31327,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"189","highest_child_id":1521,"first_entry_time":31328,"exclusive_time":0,"entries":1}]}]}]},{"inclusive_time":1,"id":"228","highest_child_id":1522,"first_entry_time":31330,"exclusive_time":1,"entries":1}],"allocations":[{"id":"2","count":2}]},{"inclusive_time":10,"id":"490","highest_child_id":1525,"first_entry_time":31334,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":3,"id":"187","highest_child_id":1524,"first_entry_time":31335,"exclusive_time":3,"entries":1,"allocations":[{"id":"185","count":1},{"id":"26","count":1}]},{"inclusive_time":1,"id":"324","highest_child_id":1525,"first_entry_time":31339,"exclusive_time":1,"entries":1}],"allocations":[{"id":"18","count":2}]},{"inclusive_time":6,"id":"244","highest_child_id":1529,"first_entry_time":31345,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":0,"id":"189","highest_child_id":1527,"first_entry_time":31346,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"207","highest_child_id":1528,"first_entry_time":31348,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"491","highest_child_id":1529,"first_entry_time":31349,"exclusive_time":2,"entries":1,"allocations":[{"id":"2","count":1}]}]}],"allocations":[{"id":"10","count":4},{"id":"6","count":2}]}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":4,"id":"252","highest_child_id":1530,"first_entry_time":31354,"exclusive_time":4,"entries":1,"allocations":[{"id":"10","count":1}]},{"inclusive_time":3,"id":"237","highest_child_id":1531,"first_entry_time":31362,"exclusive_time":2,"entries":3},{"inclusive_time":2,"id":"231","highest_child_id":1533,"first_entry_time":31376,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"232","highest_child_id":1533,"first_entry_time":31377,"exclusive_time":0,"entries":1}]},{"inclusive_time":10,"id":"230","highest_child_id":1537,"first_entry_time":31381,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":5,"id":"231","highest_child_id":1536,"first_entry_time":31382,"exclusive_time":4,"entries":2,"callees":[{"inclusive_time":1,"id":"233","highest_child_id":1536,"first_entry_time":31383,"exclusive_time":0,"entries":4}]},{"inclusive_time":1,"id":"234","highest_child_id":1537,"first_entry_time":31386,"exclusive_time":1,"entries":2}]},{"inclusive_time":10,"id":"509","highest_child_id":1542,"first_entry_time":31396,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":8,"id":"316","highest_child_id":1542,"first_entry_time":31397,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":0,"id":"240","highest_child_id":1540,"first_entry_time":31399,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"317","highest_child_id":1541,"first_entry_time":31402,"exclusive_time":1,"entries":1,"allocations":[{"id":"26","count":1}]},{"inclusive_time":0,"id":"318","highest_child_id":1542,"first_entry_time":31404,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]}]},{"inclusive_time":12,"id":"510","highest_child_id":1547,"first_entry_time":31421,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":11,"id":"316","highest_child_id":1547,"first_entry_time":31423,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":1,"id":"240","highest_child_id":1545,"first_entry_time":31428,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"317","highest_child_id":1546,"first_entry_time":31430,"exclusive_time":1,"entries":1,"allocations":[{"id":"26","count":1}]},{"inclusive_time":0,"id":"318","highest_child_id":1547,"first_entry_time":31432,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]}]},{"inclusive_time":164,"id":"243","highest_child_id":1565,"first_entry_time":31436,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":162,"id":"244","highest_child_id":1565,"first_entry_time":31438,"exclusive_time":73,"entries":1,"callees":[{"inclusive_time":0,"id":"189","highest_child_id":1550,"first_entry_time":31439,"exclusive_time":0,"entries":1},{"inclusive_time":12,"id":"207","highest_child_id":1557,"first_entry_time":31441,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":0,"id":"208","highest_child_id":1552,"first_entry_time":31443,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"209","highest_child_id":1553,"first_entry_time":31444,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"210","highest_child_id":1554,"first_entry_time":31445,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"211","highest_child_id":1555,"first_entry_time":31447,"exclusive_time":0,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":0,"id":"212","highest_child_id":1556,"first_entry_time":31448,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"207","highest_child_id":1557,"first_entry_time":31451,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":75,"id":"511","highest_child_id":1565,"first_entry_time":31525,"exclusive_time":63,"entries":1,"callees":[{"inclusive_time":2,"id":"234","highest_child_id":1560,"first_entry_time":31529,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"331","highest_child_id":1560,"first_entry_time":31530,"exclusive_time":0,"entries":1}]},{"inclusive_time":5,"id":"512","highest_child_id":1562,"first_entry_time":31586,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"483","highest_child_id":1562,"first_entry_time":31589,"exclusive_time":1,"entries":1}]},{"inclusive_time":2,"id":"226","highest_child_id":1563,"first_entry_time":31593,"exclusive_time":2,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":1,"id":"191","highest_child_id":1564,"first_entry_time":31596,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":1,"id":"480","highest_child_id":1565,"first_entry_time":31599,"exclusive_time":1,"entries":1}],"allocations":[{"id":"2","count":1}]}]}]},{"inclusive_time":1,"id":"228","highest_child_id":1566,"first_entry_time":31796,"exclusive_time":1,"entries":1}],"allocations":[{"id":"27","count":6}]},{"inclusive_time":3,"id":"252","highest_child_id":1567,"first_entry_time":31602,"exclusive_time":3,"entries":1},{"inclusive_time":71,"id":"513","highest_child_id":1582,"first_entry_time":31665,"exclusive_time":15,"entries":1,"callees":[{"inclusive_time":4,"id":"206","highest_child_id":1569,"first_entry_time":31670,"exclusive_time":4,"entries":1,"allocations":[{"id":"185","count":1},{"id":"26","count":1}]},{"inclusive_time":2,"id":"231","highest_child_id":1571,"first_entry_time":31678,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"232","highest_child_id":1571,"first_entry_time":31680,"exclusive_time":0,"entries":1}]},{"inclusive_time":44,"id":"308","highest_child_id":1579,"first_entry_time":31682,"exclusive_time":25,"entries":1,"callees":[{"inclusive_time":3,"id":"187","highest_child_id":1573,"first_entry_time":31685,"exclusive_time":3,"entries":1,"allocations":[{"id":"185","count":1},{"id":"26","count":1}]},{"inclusive_time":16,"id":"514","highest_child_id":1579,"first_entry_time":31709,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":3,"id":"206","highest_child_id":1575,"first_entry_time":31711,"exclusive_time":3,"entries":1,"allocations":[{"id":"185","count":1},{"id":"26","count":1}]},{"inclusive_time":6,"id":"239","highest_child_id":1578,"first_entry_time":31717,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"240","highest_child_id":1577,"first_entry_time":31719,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":1,"id":"241","highest_child_id":1578,"first_entry_time":31721,"exclusive_time":1,"entries":1}]},{"inclusive_time":1,"id":"228","highest_child_id":1579,"first_entry_time":31724,"exclusive_time":1,"entries":1}]}],"allocations":[{"id":"173","count":1}]},{"inclusive_time":5,"id":"243","highest_child_id":1582,"first_entry_time":31731,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":2,"id":"244","highest_child_id":1582,"first_entry_time":31734,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"189","highest_child_id":1582,"first_entry_time":31735,"exclusive_time":0,"entries":1}]}]}],"allocations":[{"id":"2","count":1}]},{"inclusive_time":2,"id":"481","highest_child_id":1584,"first_entry_time":31819,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"299","highest_child_id":1584,"first_entry_time":31821,"exclusive_time":0,"entries":1}]},{"inclusive_time":240,"id":"243","highest_child_id":1620,"first_entry_time":31855,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":237,"id":"244","highest_child_id":1620,"first_entry_time":31856,"exclusive_time":93,"entries":1,"callees":[{"inclusive_time":0,"id":"189","highest_child_id":1587,"first_entry_time":31857,"exclusive_time":0,"entries":1},{"inclusive_time":13,"id":"207","highest_child_id":1594,"first_entry_time":31859,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":0,"id":"208","highest_child_id":1589,"first_entry_time":31861,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"209","highest_child_id":1590,"first_entry_time":31862,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"210","highest_child_id":1591,"first_entry_time":31863,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"211","highest_child_id":1592,"first_entry_time":31864,"exclusive_time":2,"entries":1,"allocations":[{"id":"6","count":1},{"id":"10","count":1}]},{"inclusive_time":0,"id":"212","highest_child_id":1593,"first_entry_time":31867,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"207","highest_child_id":1594,"first_entry_time":31870,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":131,"id":"515","highest_child_id":1620,"first_entry_time":31963,"exclusive_time":60,"entries":1,"callees":[{"inclusive_time":7,"id":"219","highest_child_id":1598,"first_entry_time":31965,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":3,"id":"221","highest_child_id":1598,"first_entry_time":31968,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"223","highest_child_id":1598,"first_entry_time":31971,"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":1,"id":"483","highest_child_id":1599,"first_entry_time":31974,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"279","highest_child_id":1600,"first_entry_time":31976,"exclusive_time":1,"entries":3},{"inclusive_time":2,"id":"287","highest_child_id":1601,"first_entry_time":31979,"exclusive_time":1,"entries":4},{"inclusive_time":41,"id":"516","highest_child_id":1608,"first_entry_time":32006,"exclusive_time":29,"entries":1,"callees":[{"inclusive_time":1,"id":"287","highest_child_id":1603,"first_entry_time":32008,"exclusive_time":0,"entries":1},{"inclusive_time":3,"id":"517","highest_child_id":1605,"first_entry_time":32023,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"283","highest_child_id":1605,"first_entry_time":32025,"exclusive_time":1,"entries":1}]},{"inclusive_time":7,"id":"518","highest_child_id":1608,"first_entry_time":32040,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":2,"id":"290","highest_child_id":1607,"first_entry_time":32041,"exclusive_time":2,"entries":1,"allocations":[{"id":"10","count":1},{"id":"6","count":1},{"id":"291","count":1}]},{"inclusive_time":1,"id":"477","highest_child_id":1608,"first_entry_time":32045,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1},{"id":"478","count":1}]}]}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":1,"id":"476","highest_child_id":1609,"first_entry_time":32048,"exclusive_time":1,"entries":3},{"inclusive_time":7,"id":"519","highest_child_id":1612,"first_entry_time":32058,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":3,"id":"221","highest_child_id":1612,"first_entry_time":32062,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"476","highest_child_id":1612,"first_entry_time":32064,"exclusive_time":0,"entries":1}],"allocations":[{"id":"222","count":1}]}],"allocations":[{"id":"10","count":1},{"id":"6","count":1},{"id":"520","count":1}]},{"inclusive_time":0,"id":"223","highest_child_id":1613,"first_entry_time":32067,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"268","highest_child_id":1614,"first_entry_time":32068,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"286","highest_child_id":1615,"first_entry_time":32070,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"285","highest_child_id":1617,"first_entry_time":32072,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"283","highest_child_id":1617,"first_entry_time":32073,"exclusive_time":1,"entries":1}]},{"inclusive_time":4,"id":"521","highest_child_id":1619,"first_entry_time":32086,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"284","highest_child_id":1619,"first_entry_time":32088,"exclusive_time":1,"entries":1,"allocations":[{"id":"28","count":1}]}],"allocations":[{"id":"28","count":1}]},{"inclusive_time":1,"id":"480","highest_child_id":1620,"first_entry_time":32093,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":4}]}]}]}]},{"inclusive_time":2,"id":"481","highest_child_id":1622,"first_entry_time":32096,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"299","highest_child_id":1622,"first_entry_time":32097,"exclusive_time":0,"entries":1}]}],"allocations":[{"id":"10","count":1}]}],"allocations":[{"id":"27","count":1},{"id":"10","count":1}]},{"inclusive_time":69,"id":"522","highest_child_id":1631,"first_entry_time":32122,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":4,"id":"206","highest_child_id":1624,"first_entry_time":32123,"exclusive_time":4,"entries":1,"allocations":[{"id":"185","count":1},{"id":"26","count":1}]},{"inclusive_time":62,"id":"243","highest_child_id":1631,"first_entry_time":32129,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":59,"id":"244","highest_child_id":1631,"first_entry_time":32131,"exclusive_time":49,"entries":1,"callees":[{"inclusive_time":1,"id":"189","highest_child_id":1627,"first_entry_time":32135,"exclusive_time":0,"entries":1},{"inclusive_time":5,"id":"207","highest_child_id":1630,"first_entry_time":32138,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":0,"id":"208","highest_child_id":1629,"first_entry_time":32140,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"209","highest_child_id":1630,"first_entry_time":32141,"exclusive_time":0,"entries":1}]},{"inclusive_time":3,"id":"523","highest_child_id":1631,"first_entry_time":32186,"exclusive_time":3,"entries":1}]}]}]},{"inclusive_time":22,"id":"524","highest_child_id":1633,"first_entry_time":32265,"exclusive_time":20,"entries":1,"callees":[{"inclusive_time":1,"id":"525","highest_child_id":1633,"first_entry_time":32282,"exclusive_time":1,"entries":2,"allocations":[{"id":"6","count":2}]}],"allocations":[{"id":"6","count":3},{"id":"222","count":1}]},{"inclusive_time":1,"id":"526","highest_child_id":1634,"first_entry_time":32317,"exclusive_time":1,"entries":1},{"inclusive_time":346,"id":"527","highest_child_id":1695,"first_entry_time":32366,"exclusive_time":49,"entries":1,"callees":[{"inclusive_time":126,"id":"470","highest_child_id":1667,"first_entry_time":32369,"exclusive_time":23,"entries":1,"callees":[{"inclusive_time":0,"id":"216","highest_child_id":1637,"first_entry_time":32372,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"471","highest_child_id":1638,"first_entry_time":32374,"exclusive_time":0,"entries":1},{"inclusive_time":15,"id":"339","highest_child_id":1644,"first_entry_time":32377,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":13,"id":"256","highest_child_id":1644,"first_entry_time":32379,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":0,"id":"216","highest_child_id":1641,"first_entry_time":32382,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"257","highest_child_id":1642,"first_entry_time":32383,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"251","highest_child_id":1643,"first_entry_time":32385,"exclusive_time":2,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":2,"id":"258","highest_child_id":1644,"first_entry_time":32389,"exclusive_time":2,"entries":1,"allocations":[{"id":"27","count":1}]}]}]},{"inclusive_time":74,"id":"528","highest_child_id":1661,"first_entry_time":32407,"exclusive_time":18,"entries":1,"callees":[{"inclusive_time":1,"id":"46","highest_child_id":1646,"first_entry_time":32409,"exclusive_time":0,"entries":1,"allocations":[{"id":"47","count":1}]},{"inclusive_time":21,"id":"9","highest_child_id":1648,"first_entry_time":32414,"exclusive_time":20,"entries":1,"callees":[{"inclusive_time":1,"id":"20","highest_child_id":1648,"first_entry_time":32434,"exclusive_time":1,"entries":1}],"allocations":[{"id":"2","count":2},{"id":"10","count":3},{"id":"6","count":2}]},{"inclusive_time":33,"id":"529","highest_child_id":1661,"first_entry_time":32447,"exclusive_time":16,"entries":1,"callees":[{"inclusive_time":1,"id":"67","highest_child_id":1650,"first_entry_time":32451,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"68","highest_child_id":1651,"first_entry_time":32461,"exclusive_time":0,"entries":2},{"inclusive_time":15,"id":"69","highest_child_id":1661,"first_entry_time":32464,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":0,"id":"70","highest_child_id":1653,"first_entry_time":32466,"exclusive_time":0,"entries":2},{"inclusive_time":0,"id":"30","highest_child_id":1654,"first_entry_time":32467,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"71","highest_child_id":1655,"first_entry_time":32469,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"72","highest_child_id":1657,"first_entry_time":32471,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"73","highest_child_id":1657,"first_entry_time":32471,"exclusive_time":0,"entries":1}]},{"inclusive_time":1,"id":"74","highest_child_id":1659,"first_entry_time":32474,"exclusive_time":0,"entries":1,"callees":[{"inclusive_time":0,"id":"73","highest_child_id":1659,"first_entry_time":32474,"exclusive_time":0,"entries":1}]},{"inclusive_time":0,"id":"29","highest_child_id":1660,"first_entry_time":32476,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"75","highest_child_id":1661,"first_entry_time":32477,"exclusive_time":0,"entries":1}]}],"allocations":[{"id":"6","count":1},{"id":"530","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"3","count":1},{"id":"8","count":3}]},{"inclusive_time":4,"id":"271","highest_child_id":1664,"first_entry_time":32482,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":2,"id":"272","highest_child_id":1664,"first_entry_time":32484,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"273","highest_child_id":1664,"first_entry_time":32485,"exclusive_time":0,"entries":1}]}]},{"inclusive_time":7,"id":"474","highest_child_id":1667,"first_entry_time":32488,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":3,"id":"221","highest_child_id":1667,"first_entry_time":32491,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"476","highest_child_id":1667,"first_entry_time":32493,"exclusive_time":1,"entries":1}],"allocations":[{"id":"222","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"475","count":1}]}],"allocations":[{"id":"27","count":2},{"id":"10","count":1},{"id":"6","count":1}]},{"inclusive_time":1,"id":"531","highest_child_id":1668,"first_entry_time":32505,"exclusive_time":1,"entries":1},{"inclusive_time":15,"id":"264","highest_child_id":1674,"first_entry_time":32508,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":3,"id":"251","highest_child_id":1670,"first_entry_time":32509,"exclusive_time":3,"entries":2,"allocations":[{"id":"6","count":1}]},{"inclusive_time":6,"id":"265","highest_child_id":1673,"first_entry_time":32512,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":3,"id":"221","highest_child_id":1673,"first_entry_time":32515,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"267","highest_child_id":1673,"first_entry_time":32517,"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":1674,"first_entry_time":32519,"exclusive_time":0,"entries":1}]},{"inclusive_time":144,"id":"532","highest_child_id":1693,"first_entry_time":32538,"exclusive_time":51,"entries":2,"callees":[{"inclusive_time":9,"id":"533","highest_child_id":1676,"first_entry_time":32547,"exclusive_time":9,"entries":2,"allocations":[{"id":"27","count":2},{"id":"53","count":2}]},{"inclusive_time":51,"id":"534","highest_child_id":1686,"first_entry_time":32579,"exclusive_time":22,"entries":2,"callees":[{"inclusive_time":23,"id":"535","highest_child_id":1683,"first_entry_time":32597,"exclusive_time":10,"entries":2,"callees":[{"inclusive_time":3,"id":"110","highest_child_id":1679,"first_entry_time":32602,"exclusive_time":3,"entries":2},{"inclusive_time":9,"id":"112","highest_child_id":1683,"first_entry_time":32605,"exclusive_time":7,"entries":2,"callees":[{"inclusive_time":0,"id":"114","highest_child_id":1681,"first_entry_time":32606,"exclusive_time":0,"entries":2},{"inclusive_time":0,"id":"115","highest_child_id":1682,"first_entry_time":32607,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"44","highest_child_id":1683,"first_entry_time":32609,"exclusive_time":1,"entries":2}],"allocations":[{"id":"6","count":2},{"id":"113","count":2}]}],"allocations":[{"id":"536","count":2},{"id":"537","count":1},{"id":"538","count":1}]},{"inclusive_time":6,"id":"271","highest_child_id":1686,"first_entry_time":32612,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":4,"id":"272","highest_child_id":1686,"first_entry_time":32613,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":0,"id":"273","highest_child_id":1686,"first_entry_time":32614,"exclusive_time":0,"entries":2}]}]}],"allocations":[{"id":"6","count":4},{"id":"27","count":2}]},{"inclusive_time":1,"id":"539","highest_child_id":1687,"first_entry_time":32624,"exclusive_time":1,"entries":2},{"inclusive_time":31,"id":"264","highest_child_id":1693,"first_entry_time":32627,"exclusive_time":8,"entries":2,"callees":[{"inclusive_time":6,"id":"251","highest_child_id":1689,"first_entry_time":32629,"exclusive_time":6,"entries":4,"allocations":[{"id":"6","count":2}]},{"inclusive_time":15,"id":"265","highest_child_id":1692,"first_entry_time":32632,"exclusive_time":9,"entries":2,"callees":[{"inclusive_time":6,"id":"221","highest_child_id":1692,"first_entry_time":32639,"exclusive_time":4,"entries":2,"callees":[{"inclusive_time":1,"id":"267","highest_child_id":1692,"first_entry_time":32641,"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":1693,"first_entry_time":32643,"exclusive_time":1,"entries":2}]}],"allocations":[{"id":"27","count":2}]},{"inclusive_time":10,"id":"540","highest_child_id":1695,"first_entry_time":32702,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":1,"id":"541","highest_child_id":1695,"first_entry_time":32710,"exclusive_time":1,"entries":1}],"allocations":[{"id":"25","count":1}]}]},{"inclusive_time":1317,"id":"243","highest_child_id":1836,"first_entry_time":32714,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1314,"id":"244","highest_child_id":1836,"first_entry_time":32717,"exclusive_time":193,"entries":1,"callees":[{"inclusive_time":0,"id":"189","highest_child_id":1698,"first_entry_time":32718,"exclusive_time":0,"entries":1},{"inclusive_time":16,"id":"207","highest_child_id":1705,"first_entry_time":32720,"exclusive_time":12,"entries":1,"callees":[{"inclusive_time":0,"id":"208","highest_child_id":1700,"first_entry_time":32722,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"209","highest_child_id":1701,"first_entry_time":32723,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"210","highest_child_id":1702,"first_entry_time":32725,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"211","highest_child_id":1703,"first_entry_time":32726,"exclusive_time":0,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":0,"id":"212","highest_child_id":1704,"first_entry_time":32728,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"207","highest_child_id":1705,"first_entry_time":32731,"exclusive_time":0,"entries":2}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":1104,"id":"542","highest_child_id":1836,"first_entry_time":32926,"exclusive_time":448,"entries":1,"callees":[{"inclusive_time":96,"id":"543","highest_child_id":1732,"first_entry_time":32967,"exclusive_time":19,"entries":1,"callees":[{"inclusive_time":20,"id":"256","highest_child_id":1712,"first_entry_time":32969,"exclusive_time":13,"entries":2,"callees":[{"inclusive_time":1,"id":"216","highest_child_id":1709,"first_entry_time":32973,"exclusive_time":0,"entries":2},{"inclusive_time":0,"id":"257","highest_child_id":1710,"first_entry_time":32974,"exclusive_time":0,"entries":2},{"inclusive_time":2,"id":"251","highest_child_id":1711,"first_entry_time":32977,"exclusive_time":2,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":3,"id":"258","highest_child_id":1712,"first_entry_time":32980,"exclusive_time":3,"entries":2,"allocations":[{"id":"27","count":2}]}]},{"inclusive_time":3,"id":"271","highest_child_id":1715,"first_entry_time":32984,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":2,"id":"272","highest_child_id":1715,"first_entry_time":32985,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"273","highest_child_id":1715,"first_entry_time":32987,"exclusive_time":0,"entries":1}]}]},{"inclusive_time":51,"id":"470","highest_child_id":1730,"first_entry_time":32997,"exclusive_time":22,"entries":1,"callees":[{"inclusive_time":0,"id":"216","highest_child_id":1717,"first_entry_time":33000,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"471","highest_child_id":1718,"first_entry_time":33001,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"472","highest_child_id":1719,"first_entry_time":33003,"exclusive_time":2,"entries":1,"allocations":[{"id":"10","count":1},{"id":"222","count":1}]},{"inclusive_time":2,"id":"473","highest_child_id":1720,"first_entry_time":33008,"exclusive_time":2,"entries":1,"allocations":[{"id":"27","count":1},{"id":"173","count":1},{"id":"25","count":1}]},{"inclusive_time":15,"id":"339","highest_child_id":1726,"first_entry_time":33022,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":12,"id":"256","highest_child_id":1726,"first_entry_time":33024,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":0,"id":"216","highest_child_id":1723,"first_entry_time":33027,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"257","highest_child_id":1724,"first_entry_time":33029,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"251","highest_child_id":1725,"first_entry_time":33030,"exclusive_time":1,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":2,"id":"258","highest_child_id":1726,"first_entry_time":33034,"exclusive_time":2,"entries":1,"allocations":[{"id":"27","count":1}]}]}]},{"inclusive_time":0,"id":"271","highest_child_id":1727,"first_entry_time":33039,"exclusive_time":0,"entries":1},{"inclusive_time":6,"id":"474","highest_child_id":1730,"first_entry_time":33041,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":3,"id":"221","highest_child_id":1730,"first_entry_time":33044,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"476","highest_child_id":1730,"first_entry_time":33046,"exclusive_time":1,"entries":1}],"allocations":[{"id":"222","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"475","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":3,"id":"545","highest_child_id":1732,"first_entry_time":33059,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"531","highest_child_id":1732,"first_entry_time":33061,"exclusive_time":1,"entries":1}]}],"allocations":[{"id":"544","count":1}]},{"inclusive_time":50,"id":"546","highest_child_id":1738,"first_entry_time":33074,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":46,"id":"256","highest_child_id":1738,"first_entry_time":33076,"exclusive_time":27,"entries":2,"callees":[{"inclusive_time":1,"id":"216","highest_child_id":1735,"first_entry_time":33079,"exclusive_time":0,"entries":2},{"inclusive_time":0,"id":"257","highest_child_id":1736,"first_entry_time":33080,"exclusive_time":0,"entries":2},{"inclusive_time":3,"id":"251","highest_child_id":1737,"first_entry_time":33096,"exclusive_time":2,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":15,"id":"258","highest_child_id":1738,"first_entry_time":33100,"exclusive_time":14,"entries":2,"allocations":[{"id":"27","count":2}]}]}]},{"inclusive_time":231,"id":"547","highest_child_id":1771,"first_entry_time":33200,"exclusive_time":141,"entries":1,"callees":[{"inclusive_time":2,"id":"219","highest_child_id":1740,"first_entry_time":33205,"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":1741,"first_entry_time":33209,"exclusive_time":0,"entries":4},{"inclusive_time":8,"id":"548","highest_child_id":1743,"first_entry_time":33217,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":1,"id":"549","highest_child_id":1743,"first_entry_time":33225,"exclusive_time":1,"entries":1}]},{"inclusive_time":17,"id":"256","highest_child_id":1748,"first_entry_time":33227,"exclusive_time":11,"entries":2,"callees":[{"inclusive_time":1,"id":"216","highest_child_id":1745,"first_entry_time":33231,"exclusive_time":0,"entries":2},{"inclusive_time":0,"id":"257","highest_child_id":1746,"first_entry_time":33232,"exclusive_time":0,"entries":2},{"inclusive_time":2,"id":"251","highest_child_id":1747,"first_entry_time":33234,"exclusive_time":1,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":2,"id":"258","highest_child_id":1748,"first_entry_time":33236,"exclusive_time":2,"entries":2,"allocations":[{"id":"27","count":2}]}]},{"inclusive_time":1,"id":"226","highest_child_id":1749,"first_entry_time":33246,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"550","highest_child_id":1750,"first_entry_time":33257,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"551","highest_child_id":1751,"first_entry_time":33269,"exclusive_time":2,"entries":1},{"inclusive_time":1,"id":"552","highest_child_id":1752,"first_entry_time":33280,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"553","highest_child_id":1753,"first_entry_time":33289,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"554","highest_child_id":1754,"first_entry_time":33303,"exclusive_time":1,"entries":1},{"inclusive_time":22,"id":"555","highest_child_id":1759,"first_entry_time":33319,"exclusive_time":18,"entries":1,"callees":[{"inclusive_time":1,"id":"556","highest_child_id":1756,"first_entry_time":33328,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"557","highest_child_id":1757,"first_entry_time":33336,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"334","highest_child_id":1758,"first_entry_time":33339,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"273","highest_child_id":1759,"first_entry_time":33340,"exclusive_time":0,"entries":1}]},{"inclusive_time":1,"id":"558","highest_child_id":1760,"first_entry_time":33348,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"204","highest_child_id":1761,"first_entry_time":33351,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"559","highest_child_id":1762,"first_entry_time":33361,"exclusive_time":1,"entries":2},{"inclusive_time":2,"id":"560","highest_child_id":1763,"first_entry_time":33371,"exclusive_time":2,"entries":1,"allocations":[{"id":"6","count":1},{"id":"561","count":1}]},{"inclusive_time":12,"id":"562","highest_child_id":1767,"first_entry_time":33387,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":2,"id":"474","highest_child_id":1765,"first_entry_time":33389,"exclusive_time":2,"entries":2,"allocations":[{"id":"6","count":2},{"id":"475","count":2}]},{"inclusive_time":2,"id":"265","highest_child_id":1766,"first_entry_time":33393,"exclusive_time":2,"entries":1,"allocations":[{"id":"10","count":1},{"id":"6","count":1},{"id":"266","count":1}]},{"inclusive_time":1,"id":"290","highest_child_id":1767,"first_entry_time":33397,"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":1,"id":"268","highest_child_id":1768,"first_entry_time":33400,"exclusive_time":1,"entries":1},{"inclusive_time":11,"id":"563","highest_child_id":1771,"first_entry_time":33420,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":1,"id":"564","highest_child_id":1770,"first_entry_time":33428,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"334","highest_child_id":1771,"first_entry_time":33430,"exclusive_time":0,"entries":1}]}],"allocations":[{"id":"2","count":4},{"id":"10","count":1},{"id":"27","count":2}]},{"inclusive_time":17,"id":"565","highest_child_id":1777,"first_entry_time":33502,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":13,"id":"256","highest_child_id":1777,"first_entry_time":33505,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":0,"id":"216","highest_child_id":1774,"first_entry_time":33509,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"257","highest_child_id":1775,"first_entry_time":33511,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"251","highest_child_id":1776,"first_entry_time":33514,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":1,"id":"258","highest_child_id":1777,"first_entry_time":33517,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]}]}]},{"inclusive_time":12,"id":"566","highest_child_id":1780,"first_entry_time":33540,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":1,"id":"216","highest_child_id":1779,"first_entry_time":33543,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"567","highest_child_id":1780,"first_entry_time":33551,"exclusive_time":1,"entries":1}],"allocations":[{"id":"10","count":1},{"id":"25","count":1}]},{"inclusive_time":11,"id":"568","highest_child_id":1783,"first_entry_time":33567,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":0,"id":"216","highest_child_id":1782,"first_entry_time":33569,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"569","highest_child_id":1783,"first_entry_time":33576,"exclusive_time":0,"entries":1}],"allocations":[{"id":"25","count":1}]},{"inclusive_time":9,"id":"570","highest_child_id":1786,"first_entry_time":33613,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":2,"id":"483","highest_child_id":1785,"first_entry_time":33615,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"360","highest_child_id":1786,"first_entry_time":33620,"exclusive_time":0,"entries":1}]},{"inclusive_time":2,"id":"219","highest_child_id":1787,"first_entry_time":33623,"exclusive_time":2,"entries":1,"allocations":[{"id":"10","count":1},{"id":"6","count":1},{"id":"220","count":1}]},{"inclusive_time":2,"id":"571","highest_child_id":1788,"first_entry_time":33636,"exclusive_time":2,"entries":1},{"inclusive_time":2,"id":"288","highest_child_id":1789,"first_entry_time":33645,"exclusive_time":2,"entries":1,"allocations":[{"id":"27","count":1},{"id":"6","count":1},{"id":"289","count":1}]},{"inclusive_time":2,"id":"474","highest_child_id":1790,"first_entry_time":33649,"exclusive_time":2,"entries":2,"allocations":[{"id":"6","count":2},{"id":"475","count":2}]},{"inclusive_time":10,"id":"290","highest_child_id":1791,"first_entry_time":33651,"exclusive_time":10,"entries":4,"allocations":[{"id":"10","count":4},{"id":"6","count":4},{"id":"291","count":4}]},{"inclusive_time":5,"id":"563","highest_child_id":1794,"first_entry_time":33659,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"564","highest_child_id":1793,"first_entry_time":33662,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"334","highest_child_id":1794,"first_entry_time":33664,"exclusive_time":0,"entries":1}]},{"inclusive_time":1,"id":"223","highest_child_id":1795,"first_entry_time":33666,"exclusive_time":1,"entries":1},{"inclusive_time":18,"id":"265","highest_child_id":1798,"first_entry_time":33668,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":13,"id":"221","highest_child_id":1798,"first_entry_time":33672,"exclusive_time":12,"entries":1,"callees":[{"inclusive_time":1,"id":"572","highest_child_id":1798,"first_entry_time":33684,"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":"573","highest_child_id":1799,"first_entry_time":33694,"exclusive_time":2,"entries":1},{"inclusive_time":2,"id":"554","highest_child_id":1800,"first_entry_time":33698,"exclusive_time":2,"entries":2,"allocations":[{"id":"27","count":2}]},{"inclusive_time":1,"id":"204","highest_child_id":1801,"first_entry_time":33703,"exclusive_time":0,"entries":2},{"inclusive_time":28,"id":"574","highest_child_id":1806,"first_entry_time":33734,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":7,"id":"265","highest_child_id":1803,"first_entry_time":33736,"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":1804,"first_entry_time":33741,"exclusive_time":6,"entries":6,"allocations":[{"id":"10","count":6},{"id":"6","count":6},{"id":"291","count":6}]},{"inclusive_time":2,"id":"288","highest_child_id":1805,"first_entry_time":33749,"exclusive_time":2,"entries":1,"allocations":[{"id":"27","count":1},{"id":"6","count":1},{"id":"289","count":1}]},{"inclusive_time":1,"id":"219","highest_child_id":1806,"first_entry_time":33760,"exclusive_time":1,"entries":1,"allocations":[{"id":"10","count":1},{"id":"6","count":1},{"id":"220","count":1}]}]},{"inclusive_time":2,"id":"268","highest_child_id":1807,"first_entry_time":33763,"exclusive_time":1,"entries":3},{"inclusive_time":2,"id":"575","highest_child_id":1808,"first_entry_time":33813,"exclusive_time":2,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":2,"id":"576","highest_child_id":1810,"first_entry_time":33825,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"273","highest_child_id":1810,"first_entry_time":33827,"exclusive_time":0,"entries":1}]},{"inclusive_time":2,"id":"577","highest_child_id":1812,"first_entry_time":33836,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"557","highest_child_id":1812,"first_entry_time":33838,"exclusive_time":0,"entries":1}]},{"inclusive_time":1,"id":"578","highest_child_id":1813,"first_entry_time":33847,"exclusive_time":0,"entries":1},{"inclusive_time":3,"id":"579","highest_child_id":1815,"first_entry_time":33856,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"564","highest_child_id":1815,"first_entry_time":33858,"exclusive_time":0,"entries":1}]},{"inclusive_time":1,"id":"559","highest_child_id":1816,"first_entry_time":33860,"exclusive_time":0,"entries":1},{"inclusive_time":21,"id":"339","highest_child_id":1822,"first_entry_time":33864,"exclusive_time":14,"entries":1,"callees":[{"inclusive_time":0,"id":"216","highest_child_id":1818,"first_entry_time":33866,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"257","highest_child_id":1819,"first_entry_time":33867,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"251","highest_child_id":1820,"first_entry_time":33870,"exclusive_time":2,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":2,"id":"258","highest_child_id":1821,"first_entry_time":33874,"exclusive_time":2,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":1,"id":"479","highest_child_id":1822,"first_entry_time":33881,"exclusive_time":0,"entries":1}],"allocations":[{"id":"10","count":1},{"id":"25","count":1}]},{"inclusive_time":1,"id":"560","highest_child_id":1823,"first_entry_time":33890,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1},{"id":"561","count":1}]},{"inclusive_time":107,"id":"580","highest_child_id":1834,"first_entry_time":33903,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":102,"id":"221","highest_child_id":1834,"first_entry_time":33907,"exclusive_time":89,"entries":1,"callees":[{"inclusive_time":1,"id":"582","highest_child_id":1826,"first_entry_time":33919,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"583","highest_child_id":1827,"first_entry_time":33929,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"584","highest_child_id":1828,"first_entry_time":33939,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"585","highest_child_id":1829,"first_entry_time":33948,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"586","highest_child_id":1830,"first_entry_time":33964,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"587","highest_child_id":1831,"first_entry_time":33974,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"588","highest_child_id":1832,"first_entry_time":33985,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"589","highest_child_id":1833,"first_entry_time":33994,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"590","highest_child_id":1834,"first_entry_time":34008,"exclusive_time":1,"entries":1}],"allocations":[{"id":"222","count":1}]}],"allocations":[{"id":"10","count":1},{"id":"581","count":1}]},{"inclusive_time":4,"id":"591","highest_child_id":1835,"first_entry_time":34020,"exclusive_time":3,"entries":4,"allocations":[{"id":"6","count":1}]},{"inclusive_time":1,"id":"480","highest_child_id":1836,"first_entry_time":34029,"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":17,"id":"592","highest_child_id":1840,"first_entry_time":34040,"exclusive_time":11,"entries":2,"callees":[{"inclusive_time":0,"id":"216","highest_child_id":1838,"first_entry_time":34042,"exclusive_time":0,"entries":2},{"inclusive_time":4,"id":"593","highest_child_id":1840,"first_entry_time":34051,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":1,"id":"549","highest_child_id":1840,"first_entry_time":34053,"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":1841,"first_entry_time":34059,"exclusive_time":1,"entries":1}],"allocations":[{"id":"27","count":1},{"id":"6","count":1}]},{"inclusive_time":2,"id":"234","highest_child_id":1843,"first_entry_time":34061,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"331","highest_child_id":1843,"first_entry_time":34063,"exclusive_time":0,"entries":1}]}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":3,"id":"594","highest_child_id":1844,"first_entry_time":34107,"exclusive_time":3,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":4,"id":"595","highest_child_id":1846,"first_entry_time":34129,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"483","highest_child_id":1846,"first_entry_time":34132,"exclusive_time":1,"entries":1}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":3957,"id":"596","highest_child_id":2124,"first_entry_time":34153,"exclusive_time":58,"entries":1,"callees":[{"inclusive_time":16,"id":"166","highest_child_id":1852,"first_entry_time":34157,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":14,"id":"167","highest_child_id":1852,"first_entry_time":34158,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"168","highest_child_id":1850,"first_entry_time":34160,"exclusive_time":0,"entries":1,"allocations":[{"id":"597","count":1}]},{"inclusive_time":10,"id":"108","highest_child_id":1852,"first_entry_time":34162,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":0,"id":"109","highest_child_id":1852,"first_entry_time":34163,"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":3847,"id":"598","highest_child_id":2118,"first_entry_time":34213,"exclusive_time":212,"entries":1,"callees":[{"inclusive_time":197,"id":"599","highest_child_id":1863,"first_entry_time":34224,"exclusive_time":36,"entries":1,"callees":[{"inclusive_time":160,"id":"601","highest_child_id":1863,"first_entry_time":34260,"exclusive_time":70,"entries":1,"callees":[{"inclusive_time":2,"id":"279","highest_child_id":1856,"first_entry_time":34263,"exclusive_time":1,"entries":2},{"inclusive_time":76,"id":"602","highest_child_id":1859,"first_entry_time":34284,"exclusive_time":44,"entries":10,"callees":[{"inclusive_time":25,"id":"251","highest_child_id":1858,"first_entry_time":34287,"exclusive_time":21,"entries":20,"allocations":[{"id":"6","count":20}]},{"inclusive_time":10,"id":"603","highest_child_id":1859,"first_entry_time":34303,"exclusive_time":9,"entries":10}],"allocations":[{"id":"27","count":10}]},{"inclusive_time":13,"id":"604","highest_child_id":1863,"first_entry_time":34407,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":2,"id":"251","highest_child_id":1861,"first_entry_time":34410,"exclusive_time":2,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":1,"id":"603","highest_child_id":1862,"first_entry_time":34414,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"479","highest_child_id":1863,"first_entry_time":34417,"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":"600","count":1}]},{"inclusive_time":10,"id":"605","highest_child_id":1865,"first_entry_time":34430,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":1,"id":"607","highest_child_id":1865,"first_entry_time":34439,"exclusive_time":1,"entries":1}],"allocations":[{"id":"606","count":1}]},{"inclusive_time":10,"id":"608","highest_child_id":1867,"first_entry_time":34448,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":1,"id":"610","highest_child_id":1867,"first_entry_time":34457,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1},{"id":"10","count":1}]}],"allocations":[{"id":"609","count":1}]},{"inclusive_time":1,"id":"279","highest_child_id":1868,"first_entry_time":34460,"exclusive_time":1,"entries":2},{"inclusive_time":2,"id":"288","highest_child_id":1869,"first_entry_time":34465,"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":1870,"first_entry_time":34468,"exclusive_time":2,"entries":1,"allocations":[{"id":"10","count":1},{"id":"6","count":1},{"id":"291","count":1}]},{"inclusive_time":1,"id":"611","highest_child_id":1871,"first_entry_time":34477,"exclusive_time":0,"entries":1},{"inclusive_time":3409,"id":"612","highest_child_id":2117,"first_entry_time":34609,"exclusive_time":505,"entries":1,"callees":[{"inclusive_time":1,"id":"613","highest_child_id":1873,"first_entry_time":34619,"exclusive_time":1,"entries":1},{"inclusive_time":19,"id":"166","highest_child_id":1878,"first_entry_time":34621,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":17,"id":"167","highest_child_id":1878,"first_entry_time":34623,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"168","highest_child_id":1876,"first_entry_time":34624,"exclusive_time":0,"entries":1,"allocations":[{"id":"614","count":1}]},{"inclusive_time":14,"id":"108","highest_child_id":1878,"first_entry_time":34626,"exclusive_time":13,"entries":1,"callees":[{"inclusive_time":0,"id":"109","highest_child_id":1878,"first_entry_time":34627,"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":0,"id":"334","highest_child_id":1879,"first_entry_time":34641,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"279","highest_child_id":1880,"first_entry_time":34643,"exclusive_time":1,"entries":2},{"inclusive_time":2748,"id":"615","highest_child_id":2092,"first_entry_time":34862,"exclusive_time":39,"entries":1,"callees":[{"inclusive_time":5,"id":"282","highest_child_id":1883,"first_entry_time":34870,"exclusive_time":3,"entries":3,"callees":[{"inclusive_time":1,"id":"283","highest_child_id":1883,"first_entry_time":34871,"exclusive_time":1,"entries":3}]},{"inclusive_time":3,"id":"285","highest_child_id":1885,"first_entry_time":34874,"exclusive_time":2,"entries":3,"callees":[{"inclusive_time":1,"id":"283","highest_child_id":1885,"first_entry_time":34875,"exclusive_time":1,"entries":3}]},{"inclusive_time":4,"id":"521","highest_child_id":1887,"first_entry_time":34876,"exclusive_time":2,"entries":3,"callees":[{"inclusive_time":2,"id":"283","highest_child_id":1887,"first_entry_time":34877,"exclusive_time":1,"entries":3,"allocations":[{"id":"28","count":3}]}]},{"inclusive_time":2,"id":"616","highest_child_id":1888,"first_entry_time":34889,"exclusive_time":1,"entries":3},{"inclusive_time":2692,"id":"615","highest_child_id":2091,"first_entry_time":34892,"exclusive_time":1009,"entries":3,"callees":[{"inclusive_time":16,"id":"282","highest_child_id":1891,"first_entry_time":34896,"exclusive_time":11,"entries":13,"callees":[{"inclusive_time":5,"id":"283","highest_child_id":1891,"first_entry_time":34897,"exclusive_time":3,"entries":13}]},{"inclusive_time":13,"id":"285","highest_child_id":1893,"first_entry_time":34899,"exclusive_time":8,"entries":13,"callees":[{"inclusive_time":4,"id":"283","highest_child_id":1893,"first_entry_time":34899,"exclusive_time":2,"entries":13}]},{"inclusive_time":15,"id":"521","highest_child_id":1895,"first_entry_time":34901,"exclusive_time":8,"entries":13,"callees":[{"inclusive_time":6,"id":"283","highest_child_id":1895,"first_entry_time":34902,"exclusive_time":4,"entries":13,"allocations":[{"id":"28","count":13}]}]},{"inclusive_time":112,"id":"617","highest_child_id":1901,"first_entry_time":34963,"exclusive_time":66,"entries":8,"callees":[{"inclusive_time":5,"id":"618","highest_child_id":1897,"first_entry_time":34981,"exclusive_time":4,"entries":8},{"inclusive_time":3,"id":"619","highest_child_id":1898,"first_entry_time":34993,"exclusive_time":2,"entries":8},{"inclusive_time":38,"id":"620","highest_child_id":1901,"first_entry_time":35008,"exclusive_time":31,"entries":8,"callees":[{"inclusive_time":4,"id":"618","highest_child_id":1900,"first_entry_time":35010,"exclusive_time":2,"entries":8},{"inclusive_time":4,"id":"621","highest_child_id":1901,"first_entry_time":35022,"exclusive_time":2,"entries":8}],"allocations":[{"id":"27","count":16}]}],"allocations":[{"id":"27","count":16}]},{"inclusive_time":439,"id":"622","highest_child_id":1969,"first_entry_time":35925,"exclusive_time":92,"entries":3,"callees":[{"inclusive_time":4,"id":"287","highest_child_id":1903,"first_entry_time":35930,"exclusive_time":3,"entries":8},{"inclusive_time":36,"id":"623","highest_child_id":1907,"first_entry_time":35971,"exclusive_time":24,"entries":3,"callees":[{"inclusive_time":11,"id":"624","highest_child_id":1906,"first_entry_time":35991,"exclusive_time":8,"entries":3,"callees":[{"inclusive_time":3,"id":"287","highest_child_id":1906,"first_entry_time":35993,"exclusive_time":2,"entries":6}],"allocations":[{"id":"27","count":6}]},{"inclusive_time":1,"id":"287","highest_child_id":1907,"first_entry_time":36246,"exclusive_time":1,"entries":2}],"allocations":[{"id":"27","count":2}]},{"inclusive_time":303,"id":"625","highest_child_id":1966,"first_entry_time":36010,"exclusive_time":7,"entries":3,"callees":[{"inclusive_time":1,"id":"287","highest_child_id":1909,"first_entry_time":36012,"exclusive_time":1,"entries":3},{"inclusive_time":295,"id":"615","highest_child_id":1966,"first_entry_time":36015,"exclusive_time":31,"entries":3,"callees":[{"inclusive_time":8,"id":"282","highest_child_id":1912,"first_entry_time":36020,"exclusive_time":5,"entries":6,"callees":[{"inclusive_time":3,"id":"283","highest_child_id":1912,"first_entry_time":36021,"exclusive_time":2,"entries":6}]},{"inclusive_time":44,"id":"617","highest_child_id":1920,"first_entry_time":36024,"exclusive_time":28,"entries":3,"callees":[{"inclusive_time":2,"id":"618","highest_child_id":1914,"first_entry_time":36026,"exclusive_time":1,"entries":3},{"inclusive_time":1,"id":"619","highest_child_id":1915,"first_entry_time":36028,"exclusive_time":1,"entries":3},{"inclusive_time":9,"id":"626","highest_child_id":1918,"first_entry_time":36048,"exclusive_time":6,"entries":2,"callees":[{"inclusive_time":1,"id":"618","highest_child_id":1917,"first_entry_time":36049,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"621","highest_child_id":1918,"first_entry_time":36052,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":3},{"id":"10","count":1}]},{"inclusive_time":2,"id":"620","highest_child_id":1920,"first_entry_time":36207,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"618","highest_child_id":1920,"first_entry_time":36208,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]}],"allocations":[{"id":"27","count":6}]},{"inclusive_time":202,"id":"622","highest_child_id":1962,"first_entry_time":36062,"exclusive_time":25,"entries":3,"callees":[{"inclusive_time":3,"id":"287","highest_child_id":1922,"first_entry_time":36064,"exclusive_time":2,"entries":6},{"inclusive_time":25,"id":"623","highest_child_id":1926,"first_entry_time":36068,"exclusive_time":6,"entries":3,"callees":[{"inclusive_time":18,"id":"624","highest_child_id":1925,"first_entry_time":36069,"exclusive_time":15,"entries":3,"callees":[{"inclusive_time":2,"id":"287","highest_child_id":1925,"first_entry_time":36070,"exclusive_time":1,"entries":6}],"allocations":[{"id":"27","count":6}]},{"inclusive_time":1,"id":"287","highest_child_id":1926,"first_entry_time":36316,"exclusive_time":1,"entries":2}],"allocations":[{"id":"27","count":2}]},{"inclusive_time":149,"id":"625","highest_child_id":1962,"first_entry_time":36074,"exclusive_time":6,"entries":3,"callees":[{"inclusive_time":1,"id":"287","highest_child_id":1928,"first_entry_time":36076,"exclusive_time":1,"entries":3},{"inclusive_time":141,"id":"615","highest_child_id":1962,"first_entry_time":36078,"exclusive_time":22,"entries":3,"callees":[{"inclusive_time":5,"id":"282","highest_child_id":1931,"first_entry_time":36081,"exclusive_time":3,"entries":4,"callees":[{"inclusive_time":2,"id":"283","highest_child_id":1931,"first_entry_time":36082,"exclusive_time":1,"entries":4}]},{"inclusive_time":4,"id":"285","highest_child_id":1933,"first_entry_time":36083,"exclusive_time":2,"entries":4,"callees":[{"inclusive_time":1,"id":"283","highest_child_id":1933,"first_entry_time":36084,"exclusive_time":1,"entries":4}]},{"inclusive_time":5,"id":"521","highest_child_id":1935,"first_entry_time":36086,"exclusive_time":3,"entries":4,"callees":[{"inclusive_time":2,"id":"283","highest_child_id":1935,"first_entry_time":36087,"exclusive_time":1,"entries":4,"allocations":[{"id":"28","count":4}]}]},{"inclusive_time":9,"id":"617","highest_child_id":1940,"first_entry_time":36286,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":1,"id":"618","highest_child_id":1937,"first_entry_time":36288,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"619","highest_child_id":1938,"first_entry_time":36290,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"626","highest_child_id":1940,"first_entry_time":36293,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"618","highest_child_id":1940,"first_entry_time":36294,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]}],"allocations":[{"id":"27","count":2}]},{"inclusive_time":95,"id":"622","highest_child_id":1962,"first_entry_time":36328,"exclusive_time":31,"entries":2,"callees":[{"inclusive_time":2,"id":"287","highest_child_id":1942,"first_entry_time":36330,"exclusive_time":1,"entries":4},{"inclusive_time":8,"id":"623","highest_child_id":1945,"first_entry_time":36334,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":6,"id":"624","highest_child_id":1945,"first_entry_time":36335,"exclusive_time":4,"entries":2,"callees":[{"inclusive_time":1,"id":"287","highest_child_id":1945,"first_entry_time":36336,"exclusive_time":1,"entries":4}],"allocations":[{"id":"27","count":4}]}]},{"inclusive_time":50,"id":"625","highest_child_id":1960,"first_entry_time":36339,"exclusive_time":5,"entries":2,"callees":[{"inclusive_time":1,"id":"287","highest_child_id":1947,"first_entry_time":36341,"exclusive_time":0,"entries":2},{"inclusive_time":43,"id":"615","highest_child_id":1959,"first_entry_time":36343,"exclusive_time":15,"entries":2,"callees":[{"inclusive_time":4,"id":"282","highest_child_id":1950,"first_entry_time":36345,"exclusive_time":2,"entries":3,"callees":[{"inclusive_time":1,"id":"283","highest_child_id":1950,"first_entry_time":36347,"exclusive_time":1,"entries":3}]},{"inclusive_time":3,"id":"285","highest_child_id":1952,"first_entry_time":36348,"exclusive_time":2,"entries":3,"callees":[{"inclusive_time":1,"id":"283","highest_child_id":1952,"first_entry_time":36349,"exclusive_time":0,"entries":3}]},{"inclusive_time":4,"id":"521","highest_child_id":1954,"first_entry_time":36350,"exclusive_time":2,"entries":3,"callees":[{"inclusive_time":1,"id":"283","highest_child_id":1954,"first_entry_time":36351,"exclusive_time":1,"entries":3,"allocations":[{"id":"28","count":3}]}]},{"inclusive_time":17,"id":"617","highest_child_id":1959,"first_entry_time":36354,"exclusive_time":10,"entries":2,"callees":[{"inclusive_time":1,"id":"618","highest_child_id":1956,"first_entry_time":36355,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"619","highest_child_id":1957,"first_entry_time":36357,"exclusive_time":1,"entries":2},{"inclusive_time":3,"id":"626","highest_child_id":1959,"first_entry_time":36359,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":1,"id":"618","highest_child_id":1959,"first_entry_time":36360,"exclusive_time":1,"entries":2}],"allocations":[{"id":"27","count":2}]}],"allocations":[{"id":"27","count":4}]}]},{"inclusive_time":0,"id":"500","highest_child_id":1960,"first_entry_time":36393,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":3}]},{"inclusive_time":2,"id":"500","highest_child_id":1961,"first_entry_time":36384,"exclusive_time":2,"entries":5},{"inclusive_time":1,"id":"627","highest_child_id":1962,"first_entry_time":36421,"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":5,"id":"285","highest_child_id":1964,"first_entry_time":36197,"exclusive_time":3,"entries":4,"callees":[{"inclusive_time":1,"id":"283","highest_child_id":1964,"first_entry_time":36198,"exclusive_time":1,"entries":4}]},{"inclusive_time":5,"id":"521","highest_child_id":1966,"first_entry_time":36200,"exclusive_time":3,"entries":4,"callees":[{"inclusive_time":2,"id":"283","highest_child_id":1966,"first_entry_time":36201,"exclusive_time":2,"entries":4,"allocations":[{"id":"28","count":4}]}]}]}],"allocations":[{"id":"27","count":3}]},{"inclusive_time":1,"id":"628","highest_child_id":1967,"first_entry_time":36109,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"621","highest_child_id":1968,"first_entry_time":36224,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"279","highest_child_id":1969,"first_entry_time":36226,"exclusive_time":0,"entries":1}],"allocations":[{"id":"2","count":3},{"id":"27","count":9}]},{"inclusive_time":1,"id":"279","highest_child_id":1970,"first_entry_time":36460,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"629","highest_child_id":1971,"first_entry_time":36469,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"223","highest_child_id":1972,"first_entry_time":36471,"exclusive_time":0,"entries":1},{"inclusive_time":5,"id":"545","highest_child_id":1974,"first_entry_time":36473,"exclusive_time":3,"entries":3,"callees":[{"inclusive_time":2,"id":"531","highest_child_id":1974,"first_entry_time":36474,"exclusive_time":1,"entries":3}]},{"inclusive_time":1,"id":"630","highest_child_id":1975,"first_entry_time":36483,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"631","highest_child_id":1976,"first_entry_time":36492,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"632","highest_child_id":1977,"first_entry_time":36501,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"286","highest_child_id":1978,"first_entry_time":36511,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"633","highest_child_id":1979,"first_entry_time":36524,"exclusive_time":1,"entries":1},{"inclusive_time":1080,"id":"615","highest_child_id":2091,"first_entry_time":36527,"exclusive_time":19,"entries":1,"callees":[{"inclusive_time":2,"id":"282","highest_child_id":1982,"first_entry_time":36531,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"283","highest_child_id":1982,"first_entry_time":36532,"exclusive_time":0,"entries":1}]},{"inclusive_time":2,"id":"285","highest_child_id":1984,"first_entry_time":36534,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"283","highest_child_id":1984,"first_entry_time":36535,"exclusive_time":0,"entries":1}]},{"inclusive_time":2,"id":"521","highest_child_id":1986,"first_entry_time":36536,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"283","highest_child_id":1986,"first_entry_time":36537,"exclusive_time":1,"entries":1,"allocations":[{"id":"28","count":2}]}]},{"inclusive_time":1,"id":"634","highest_child_id":1987,"first_entry_time":36549,"exclusive_time":1,"entries":1},{"inclusive_time":1051,"id":"615","highest_child_id":2090,"first_entry_time":36552,"exclusive_time":91,"entries":1,"callees":[{"inclusive_time":2,"id":"282","highest_child_id":1990,"first_entry_time":36555,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"283","highest_child_id":1990,"first_entry_time":36556,"exclusive_time":0,"entries":1}]},{"inclusive_time":2,"id":"285","highest_child_id":1992,"first_entry_time":36558,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"283","highest_child_id":1992,"first_entry_time":36559,"exclusive_time":0,"entries":1}]},{"inclusive_time":2,"id":"521","highest_child_id":1994,"first_entry_time":36560,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"283","highest_child_id":1994,"first_entry_time":36562,"exclusive_time":0,"entries":1,"allocations":[{"id":"28","count":1}]}]},{"inclusive_time":953,"id":"635","highest_child_id":2090,"first_entry_time":36649,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":1,"id":"287","highest_child_id":1996,"first_entry_time":36652,"exclusive_time":1,"entries":1},{"inclusive_time":945,"id":"615","highest_child_id":2090,"first_entry_time":36656,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":2,"id":"282","highest_child_id":1999,"first_entry_time":36659,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"283","highest_child_id":1999,"first_entry_time":36661,"exclusive_time":0,"entries":1}]},{"inclusive_time":1,"id":"285","highest_child_id":2001,"first_entry_time":36663,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"283","highest_child_id":2001,"first_entry_time":36664,"exclusive_time":0,"entries":1}]},{"inclusive_time":2,"id":"521","highest_child_id":2003,"first_entry_time":36665,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"283","highest_child_id":2003,"first_entry_time":36666,"exclusive_time":0,"entries":1,"allocations":[{"id":"28","count":1}]}]},{"inclusive_time":931,"id":"622","highest_child_id":2090,"first_entry_time":36668,"exclusive_time":166,"entries":1,"callees":[{"inclusive_time":1,"id":"287","highest_child_id":2005,"first_entry_time":36671,"exclusive_time":1,"entries":2},{"inclusive_time":7,"id":"623","highest_child_id":2009,"first_entry_time":36679,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":5,"id":"624","highest_child_id":2009,"first_entry_time":36680,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":0,"id":"287","highest_child_id":2008,"first_entry_time":36681,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"500","highest_child_id":2009,"first_entry_time":36684,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":2}]}]},{"inclusive_time":44,"id":"625","highest_child_id":2027,"first_entry_time":36687,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"287","highest_child_id":2011,"first_entry_time":36688,"exclusive_time":0,"entries":1},{"inclusive_time":40,"id":"615","highest_child_id":2027,"first_entry_time":36691,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":2,"id":"282","highest_child_id":2014,"first_entry_time":36694,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"283","highest_child_id":2014,"first_entry_time":36695,"exclusive_time":0,"entries":1}]},{"inclusive_time":33,"id":"635","highest_child_id":2027,"first_entry_time":36697,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":30,"id":"615","highest_child_id":2027,"first_entry_time":36699,"exclusive_time":15,"entries":1,"callees":[{"inclusive_time":3,"id":"282","highest_child_id":2018,"first_entry_time":36703,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":1,"id":"283","highest_child_id":2018,"first_entry_time":36704,"exclusive_time":0,"entries":2}]},{"inclusive_time":2,"id":"285","highest_child_id":2020,"first_entry_time":36705,"exclusive_time":1,"entries":2,"callees":[{"inclusive_time":1,"id":"283","highest_child_id":2020,"first_entry_time":36706,"exclusive_time":0,"entries":2}]},{"inclusive_time":3,"id":"521","highest_child_id":2022,"first_entry_time":36708,"exclusive_time":1,"entries":2,"callees":[{"inclusive_time":1,"id":"283","highest_child_id":2022,"first_entry_time":36709,"exclusive_time":1,"entries":2,"allocations":[{"id":"28","count":2}]}]},{"inclusive_time":4,"id":"545","highest_child_id":2024,"first_entry_time":36712,"exclusive_time":2,"entries":3,"callees":[{"inclusive_time":1,"id":"531","highest_child_id":2024,"first_entry_time":36713,"exclusive_time":1,"entries":3}]},{"inclusive_time":0,"id":"630","highest_child_id":2025,"first_entry_time":36715,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"631","highest_child_id":2026,"first_entry_time":36718,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"632","highest_child_id":2027,"first_entry_time":36721,"exclusive_time":0,"entries":1}]}]}]}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":1,"id":"627","highest_child_id":2028,"first_entry_time":36733,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"500","highest_child_id":2029,"first_entry_time":36734,"exclusive_time":1,"entries":3},{"inclusive_time":8,"id":"602","highest_child_id":2032,"first_entry_time":36739,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":3,"id":"251","highest_child_id":2031,"first_entry_time":36741,"exclusive_time":2,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":1,"id":"603","highest_child_id":2032,"first_entry_time":36746,"exclusive_time":1,"entries":1}]},{"inclusive_time":4,"id":"636","highest_child_id":2034,"first_entry_time":36760,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"500","highest_child_id":2034,"first_entry_time":36762,"exclusive_time":1,"entries":1}],"allocations":[{"id":"27","count":2}]},{"inclusive_time":697,"id":"637","highest_child_id":2090,"first_entry_time":36901,"exclusive_time":273,"entries":1,"callees":[{"inclusive_time":3,"id":"500","highest_child_id":2036,"first_entry_time":36905,"exclusive_time":2,"entries":5},{"inclusive_time":8,"id":"602","highest_child_id":2039,"first_entry_time":36908,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":2,"id":"251","highest_child_id":2038,"first_entry_time":36910,"exclusive_time":2,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":1,"id":"603","highest_child_id":2039,"first_entry_time":36914,"exclusive_time":1,"entries":1}]},{"inclusive_time":1,"id":"638","highest_child_id":2040,"first_entry_time":36930,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"639","highest_child_id":2041,"first_entry_time":36941,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":57,"id":"640","highest_child_id":2052,"first_entry_time":37020,"exclusive_time":45,"entries":1,"callees":[{"inclusive_time":1,"id":"286","highest_child_id":2043,"first_entry_time":37023,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"641","highest_child_id":2044,"first_entry_time":37038,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"633","highest_child_id":2045,"first_entry_time":37041,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"476","highest_child_id":2046,"first_entry_time":37043,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"642","highest_child_id":2047,"first_entry_time":37051,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"29","highest_child_id":2048,"first_entry_time":37053,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"75","highest_child_id":2049,"first_entry_time":37055,"exclusive_time":0,"entries":1},{"inclusive_time":3,"id":"643","highest_child_id":2051,"first_entry_time":37066,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"629","highest_child_id":2051,"first_entry_time":37068,"exclusive_time":0,"entries":1}]},{"inclusive_time":2,"id":"334","highest_child_id":2052,"first_entry_time":37071,"exclusive_time":1,"entries":3,"allocations":[{"id":"27","count":1}]}],"allocations":[{"id":"10","count":4},{"id":"25","count":1},{"id":"28","count":1}]},{"inclusive_time":7,"id":"644","highest_child_id":2055,"first_entry_time":37088,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":2,"id":"67","highest_child_id":2054,"first_entry_time":37091,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"68","highest_child_id":2055,"first_entry_time":37095,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":83,"id":"645","highest_child_id":2057,"first_entry_time":37105,"exclusive_time":79,"entries":1,"callees":[{"inclusive_time":4,"id":"646","highest_child_id":2057,"first_entry_time":37184,"exclusive_time":4,"entries":1}],"allocations":[{"id":"10","count":1},{"id":"8","count":1}]},{"inclusive_time":9,"id":"647","highest_child_id":2058,"first_entry_time":37261,"exclusive_time":9,"entries":1,"allocations":[{"id":"10","count":1}]},{"inclusive_time":1,"id":"287","highest_child_id":2059,"first_entry_time":37272,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"648","highest_child_id":2060,"first_entry_time":37290,"exclusive_time":1,"entries":1},{"inclusive_time":249,"id":"649","highest_child_id":2090,"first_entry_time":37349,"exclusive_time":89,"entries":1,"callees":[{"inclusive_time":3,"id":"644","highest_child_id":2063,"first_entry_time":37351,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":0,"id":"68","highest_child_id":2063,"first_entry_time":37354,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":142,"id":"650","highest_child_id":2084,"first_entry_time":37396,"exclusive_time":104,"entries":1,"callees":[{"inclusive_time":2,"id":"651","highest_child_id":2065,"first_entry_time":37456,"exclusive_time":2,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":7,"id":"652","highest_child_id":2068,"first_entry_time":37472,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":2,"id":"67","highest_child_id":2067,"first_entry_time":37475,"exclusive_time":2,"entries":1},{"inclusive_time":0,"id":"68","highest_child_id":2068,"first_entry_time":37479,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":23,"id":"653","highest_child_id":2080,"first_entry_time":37506,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":16,"id":"69","highest_child_id":2079,"first_entry_time":37511,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":1,"id":"70","highest_child_id":2071,"first_entry_time":37513,"exclusive_time":0,"entries":2},{"inclusive_time":0,"id":"30","highest_child_id":2072,"first_entry_time":37515,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"71","highest_child_id":2073,"first_entry_time":37518,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"72","highest_child_id":2075,"first_entry_time":37519,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"73","highest_child_id":2075,"first_entry_time":37520,"exclusive_time":0,"entries":1}]},{"inclusive_time":1,"id":"74","highest_child_id":2077,"first_entry_time":37522,"exclusive_time":0,"entries":1,"callees":[{"inclusive_time":0,"id":"73","highest_child_id":2077,"first_entry_time":37523,"exclusive_time":0,"entries":1}]},{"inclusive_time":0,"id":"29","highest_child_id":2078,"first_entry_time":37525,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"75","highest_child_id":2079,"first_entry_time":37525,"exclusive_time":0,"entries":1}]},{"inclusive_time":0,"id":"68","highest_child_id":2080,"first_entry_time":37529,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1},{"id":"654","count":1}]},{"inclusive_time":1,"id":"286","highest_child_id":2081,"first_entry_time":37531,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"500","highest_child_id":2082,"first_entry_time":37533,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"633","highest_child_id":2083,"first_entry_time":37536,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"641","highest_child_id":2084,"first_entry_time":37538,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":1,"id":"655","highest_child_id":2085,"first_entry_time":37555,"exclusive_time":1,"entries":1,"allocations":[{"id":"10","count":1}]},{"inclusive_time":2,"id":"656","highest_child_id":2086,"first_entry_time":37566,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"500","highest_child_id":2087,"first_entry_time":37570,"exclusive_time":0,"entries":1},{"inclusive_time":7,"id":"657","highest_child_id":2089,"first_entry_time":37588,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":2,"id":"251","highest_child_id":2089,"first_entry_time":37590,"exclusive_time":2,"entries":2,"allocations":[{"id":"6","count":2}]}]},{"inclusive_time":1,"id":"287","highest_child_id":2090,"first_entry_time":37596,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]}],"allocations":[{"id":"27","count":2}]}],"allocations":[{"id":"2","count":3},{"id":"27","count":6}]}],"allocations":[{"id":"2","count":1},{"id":"27","count":5}]}]}],"allocations":[{"id":"27","count":1}]}]},{"inclusive_time":1,"id":"476","highest_child_id":2091,"first_entry_time":37604,"exclusive_time":1,"entries":2}]}]},{"inclusive_time":3,"id":"476","highest_child_id":2092,"first_entry_time":36164,"exclusive_time":2,"entries":6}]},{"inclusive_time":1,"id":"658","highest_child_id":2093,"first_entry_time":37618,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"549","highest_child_id":2094,"first_entry_time":37621,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"611","highest_child_id":2095,"first_entry_time":37622,"exclusive_time":0,"entries":1},{"inclusive_time":10,"id":"659","highest_child_id":2097,"first_entry_time":37695,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":1,"id":"619","highest_child_id":2097,"first_entry_time":37702,"exclusive_time":1,"entries":1}],"allocations":[{"id":"6","count":1},{"id":"27","count":1}]},{"inclusive_time":2,"id":"660","highest_child_id":2098,"first_entry_time":37733,"exclusive_time":2,"entries":1},{"inclusive_time":1,"id":"661","highest_child_id":2099,"first_entry_time":37748,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"662","highest_child_id":2100,"first_entry_time":37757,"exclusive_time":0,"entries":1},{"inclusive_time":115,"id":"663","highest_child_id":2116,"first_entry_time":37899,"exclusive_time":78,"entries":1,"callees":[{"inclusive_time":6,"id":"618","highest_child_id":2102,"first_entry_time":37904,"exclusive_time":4,"entries":11,"allocations":[{"id":"27","count":2}]},{"inclusive_time":3,"id":"619","highest_child_id":2103,"first_entry_time":37907,"exclusive_time":2,"entries":8},{"inclusive_time":1,"id":"279","highest_child_id":2104,"first_entry_time":37920,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"267","highest_child_id":2105,"first_entry_time":37922,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"621","highest_child_id":2106,"first_entry_time":37924,"exclusive_time":2,"entries":4},{"inclusive_time":4,"id":"664","highest_child_id":2107,"first_entry_time":37952,"exclusive_time":4,"entries":1,"allocations":[{"id":"27","count":1},{"id":"53","count":2}]},{"inclusive_time":1,"id":"476","highest_child_id":2108,"first_entry_time":37958,"exclusive_time":0,"entries":1},{"inclusive_time":8,"id":"265","highest_child_id":2111,"first_entry_time":37963,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":3,"id":"221","highest_child_id":2111,"first_entry_time":37967,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"267","highest_child_id":2111,"first_entry_time":37969,"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":"573","highest_child_id":2112,"first_entry_time":37972,"exclusive_time":2,"entries":1},{"inclusive_time":6,"id":"251","highest_child_id":2115,"first_entry_time":37981,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":0,"id":"261","highest_child_id":2114,"first_entry_time":37985,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"262","highest_child_id":2115,"first_entry_time":37987,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1},{"id":"222","count":1},{"id":"27","count":1}]},{"inclusive_time":3,"id":"665","highest_child_id":2116,"first_entry_time":38001,"exclusive_time":3,"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":"575","highest_child_id":2117,"first_entry_time":38015,"exclusive_time":1,"entries":1}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":2,"id":"666","highest_child_id":2118,"first_entry_time":38058,"exclusive_time":1,"entries":1}],"allocations":[{"id":"6","count":1},{"id":"10","count":1}]},{"inclusive_time":1,"id":"279","highest_child_id":2119,"first_entry_time":38062,"exclusive_time":1,"entries":1},{"inclusive_time":34,"id":"667","highest_child_id":2124,"first_entry_time":38076,"exclusive_time":29,"entries":1,"callees":[{"inclusive_time":0,"id":"216","highest_child_id":2121,"first_entry_time":38077,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"668","highest_child_id":2122,"first_entry_time":38085,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"669","highest_child_id":2123,"first_entry_time":38094,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"670","highest_child_id":2124,"first_entry_time":38108,"exclusive_time":1,"entries":1}],"allocations":[{"id":"25","count":1}]}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":7485,"id":"671","highest_child_id":3088,"first_entry_time":38131,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":7474,"id":"672","highest_child_id":3088,"first_entry_time":38142,"exclusive_time":51,"entries":1,"callees":[{"inclusive_time":12,"id":"166","highest_child_id":2131,"first_entry_time":38144,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":10,"id":"167","highest_child_id":2131,"first_entry_time":38146,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"168","highest_child_id":2129,"first_entry_time":38147,"exclusive_time":0,"entries":1,"allocations":[{"id":"673","count":1}]},{"inclusive_time":7,"id":"108","highest_child_id":2131,"first_entry_time":38149,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":0,"id":"109","highest_child_id":2131,"first_entry_time":38150,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":2}]}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":7410,"id":"674","highest_child_id":3088,"first_entry_time":38206,"exclusive_time":39,"entries":1,"callees":[{"inclusive_time":1,"id":"175","highest_child_id":2133,"first_entry_time":38211,"exclusive_time":0,"entries":1,"allocations":[{"id":"172","count":1}]},{"inclusive_time":57,"id":"166","highest_child_id":2141,"first_entry_time":38215,"exclusive_time":4,"entries":2,"callees":[{"inclusive_time":53,"id":"167","highest_child_id":2141,"first_entry_time":38216,"exclusive_time":6,"entries":2,"callees":[{"inclusive_time":1,"id":"168","highest_child_id":2136,"first_entry_time":38218,"exclusive_time":1,"entries":2,"allocations":[{"id":"675","count":1},{"id":"676","count":1}]},{"inclusive_time":45,"id":"108","highest_child_id":2141,"first_entry_time":38220,"exclusive_time":35,"entries":2,"callees":[{"inclusive_time":1,"id":"109","highest_child_id":2138,"first_entry_time":38222,"exclusive_time":0,"entries":2},{"inclusive_time":5,"id":"677","highest_child_id":2140,"first_entry_time":38238,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"175","highest_child_id":2140,"first_entry_time":38241,"exclusive_time":0,"entries":2,"allocations":[{"id":"172","count":2}]}],"allocations":[{"id":"10","count":3}]},{"inclusive_time":3,"id":"678","highest_child_id":2141,"first_entry_time":38269,"exclusive_time":3,"entries":1}],"allocations":[{"id":"6","count":2}]}],"allocations":[{"id":"6","count":2}]}],"allocations":[{"id":"6","count":2}]},{"inclusive_time":1,"id":"679","highest_child_id":2142,"first_entry_time":38280,"exclusive_time":0,"entries":1},{"inclusive_time":7313,"id":"680","highest_child_id":3088,"first_entry_time":38303,"exclusive_time":88,"entries":1,"callees":[{"inclusive_time":7224,"id":"681","highest_child_id":3088,"first_entry_time":38391,"exclusive_time":76,"entries":1,"callees":[{"inclusive_time":1,"id":"286","highest_child_id":2145,"first_entry_time":38394,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"583","highest_child_id":2146,"first_entry_time":38397,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"682","highest_child_id":2147,"first_entry_time":38409,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"586","highest_child_id":2148,"first_entry_time":38413,"exclusive_time":1,"entries":3},{"inclusive_time":7122,"id":"680","highest_child_id":3075,"first_entry_time":38416,"exclusive_time":124,"entries":3,"callees":[{"inclusive_time":6997,"id":"683","highest_child_id":3075,"first_entry_time":38537,"exclusive_time":89,"entries":3,"callees":[{"inclusive_time":5,"id":"551","highest_child_id":2151,"first_entry_time":38542,"exclusive_time":5,"entries":3,"allocations":[{"id":"53","count":2}]},{"inclusive_time":6899,"id":"684","highest_child_id":3073,"first_entry_time":38611,"exclusive_time":368,"entries":3,"callees":[{"inclusive_time":2,"id":"554","highest_child_id":2153,"first_entry_time":38619,"exclusive_time":2,"entries":3},{"inclusive_time":269,"id":"685","highest_child_id":2164,"first_entry_time":38634,"exclusive_time":45,"entries":3,"callees":[{"inclusive_time":223,"id":"687","highest_child_id":2164,"first_entry_time":38677,"exclusive_time":89,"entries":3,"callees":[{"inclusive_time":2,"id":"688","highest_child_id":2156,"first_entry_time":38698,"exclusive_time":1,"entries":3},{"inclusive_time":1,"id":"689","highest_child_id":2157,"first_entry_time":38707,"exclusive_time":1,"entries":3},{"inclusive_time":1,"id":"175","highest_child_id":2158,"first_entry_time":38709,"exclusive_time":0,"entries":6,"allocations":[{"id":"172","count":6}]},{"inclusive_time":114,"id":"690","highest_child_id":2162,"first_entry_time":38722,"exclusive_time":37,"entries":6,"callees":[{"inclusive_time":77,"id":"691","highest_child_id":2162,"first_entry_time":38751,"exclusive_time":70,"entries":6,"callees":[{"inclusive_time":4,"id":"692","highest_child_id":2161,"first_entry_time":38764,"exclusive_time":3,"entries":6},{"inclusive_time":4,"id":"693","highest_child_id":2162,"first_entry_time":38775,"exclusive_time":2,"entries":12}]}]},{"inclusive_time":16,"id":"694","highest_child_id":2164,"first_entry_time":38804,"exclusive_time":13,"entries":3,"callees":[{"inclusive_time":2,"id":"696","highest_child_id":2164,"first_entry_time":38815,"exclusive_time":2,"entries":3}],"allocations":[{"id":"695","count":3}]}],"allocations":[{"id":"10","count":18},{"id":"6","count":12},{"id":"26","count":6}]}],"allocations":[{"id":"686","count":3}]},{"inclusive_time":15,"id":"697","highest_child_id":2166,"first_entry_time":38827,"exclusive_time":12,"entries":3,"callees":[{"inclusive_time":2,"id":"698","highest_child_id":2166,"first_entry_time":38836,"exclusive_time":1,"entries":3}],"allocations":[{"id":"28","count":3}]},{"inclusive_time":25,"id":"699","highest_child_id":2168,"first_entry_time":38849,"exclusive_time":19,"entries":3,"callees":[{"inclusive_time":5,"id":"701","highest_child_id":2168,"first_entry_time":38867,"exclusive_time":5,"entries":3,"allocations":[{"id":"6","count":27},{"id":"10","count":9}]}],"allocations":[{"id":"700","count":3}]},{"inclusive_time":2,"id":"702","highest_child_id":2169,"first_entry_time":38882,"exclusive_time":1,"entries":3},{"inclusive_time":1,"id":"703","highest_child_id":2170,"first_entry_time":38892,"exclusive_time":1,"entries":3},{"inclusive_time":1,"id":"704","highest_child_id":2171,"first_entry_time":38901,"exclusive_time":1,"entries":3},{"inclusive_time":1,"id":"550","highest_child_id":2172,"first_entry_time":38903,"exclusive_time":1,"entries":3},{"inclusive_time":6200,"id":"705","highest_child_id":3071,"first_entry_time":39160,"exclusive_time":221,"entries":3,"callees":[{"inclusive_time":8,"id":"706","highest_child_id":2174,"first_entry_time":39176,"exclusive_time":8,"entries":3,"allocations":[{"id":"707","count":3},{"id":"10","count":39},{"id":"26","count":3}]},{"inclusive_time":3,"id":"575","highest_child_id":2175,"first_entry_time":39183,"exclusive_time":2,"entries":6},{"inclusive_time":3,"id":"286","highest_child_id":2176,"first_entry_time":39187,"exclusive_time":2,"entries":4},{"inclusive_time":5730,"id":"708","highest_child_id":3011,"first_entry_time":39237,"exclusive_time":63,"entries":3,"callees":[{"inclusive_time":5661,"id":"680","highest_child_id":3007,"first_entry_time":39243,"exclusive_time":55,"entries":6,"callees":[{"inclusive_time":649,"id":"709","highest_child_id":2193,"first_entry_time":39253,"exclusive_time":487,"entries":1,"callees":[{"inclusive_time":162,"id":"710","highest_child_id":2193,"first_entry_time":39740,"exclusive_time":35,"entries":1,"callees":[{"inclusive_time":1,"id":"618","highest_child_id":2181,"first_entry_time":39743,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"619","highest_child_id":2182,"first_entry_time":39747,"exclusive_time":1,"entries":1},{"inclusive_time":122,"id":"711","highest_child_id":2192,"first_entry_time":39770,"exclusive_time":37,"entries":1,"callees":[{"inclusive_time":1,"id":"618","highest_child_id":2184,"first_entry_time":39773,"exclusive_time":1,"entries":1},{"inclusive_time":83,"id":"712","highest_child_id":2192,"first_entry_time":39808,"exclusive_time":57,"entries":1,"callees":[{"inclusive_time":1,"id":"621","highest_child_id":2186,"first_entry_time":39810,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"476","highest_child_id":2187,"first_entry_time":39815,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"713","highest_child_id":2188,"first_entry_time":39841,"exclusive_time":1,"entries":1},{"inclusive_time":21,"id":"714","highest_child_id":2191,"first_entry_time":39861,"exclusive_time":17,"entries":1,"callees":[{"inclusive_time":1,"id":"715","highest_child_id":2190,"first_entry_time":39871,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"716","highest_child_id":2191,"first_entry_time":39880,"exclusive_time":2,"entries":1,"allocations":[{"id":"717","count":1}]}]},{"inclusive_time":1,"id":"718","highest_child_id":2192,"first_entry_time":39889,"exclusive_time":1,"entries":1}],"allocations":[{"id":"27","count":1}]}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":1,"id":"719","highest_child_id":2193,"first_entry_time":39900,"exclusive_time":1,"entries":1,"allocations":[{"id":"720","count":1}]}],"allocations":[{"id":"27","count":2}]}]},{"inclusive_time":13,"id":"721","highest_child_id":2195,"first_entry_time":39913,"exclusive_time":11,"entries":3,"callees":[{"inclusive_time":1,"id":"722","highest_child_id":2195,"first_entry_time":39920,"exclusive_time":1,"entries":3}]},{"inclusive_time":174,"id":"723","highest_child_id":2214,"first_entry_time":39969,"exclusive_time":21,"entries":1,"callees":[{"inclusive_time":146,"id":"724","highest_child_id":2210,"first_entry_time":39987,"exclusive_time":44,"entries":1,"callees":[{"inclusive_time":1,"id":"223","highest_child_id":2198,"first_entry_time":39989,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"296","highest_child_id":2199,"first_entry_time":39991,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"350","highest_child_id":2200,"first_entry_time":39993,"exclusive_time":0,"entries":1},{"inclusive_time":36,"id":"725","highest_child_id":2202,"first_entry_time":40021,"exclusive_time":29,"entries":1,"callees":[{"inclusive_time":6,"id":"726","highest_child_id":2202,"first_entry_time":40046,"exclusive_time":6,"entries":1,"allocations":[{"id":"26","count":2}]}],"allocations":[{"id":"10","count":1},{"id":"27","count":1}]},{"inclusive_time":62,"id":"727","highest_child_id":2210,"first_entry_time":40070,"exclusive_time":18,"entries":1,"callees":[{"inclusive_time":44,"id":"728","highest_child_id":2210,"first_entry_time":40088,"exclusive_time":18,"entries":1,"callees":[{"inclusive_time":2,"id":"729","highest_child_id":2205,"first_entry_time":40097,"exclusive_time":1,"entries":3},{"inclusive_time":24,"id":"730","highest_child_id":2210,"first_entry_time":40106,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":22,"id":"690","highest_child_id":2210,"first_entry_time":40108,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":19,"id":"691","highest_child_id":2210,"first_entry_time":40111,"exclusive_time":17,"entries":1,"callees":[{"inclusive_time":1,"id":"692","highest_child_id":2209,"first_entry_time":40124,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"693","highest_child_id":2210,"first_entry_time":40127,"exclusive_time":1,"entries":3}]}]}]}]}]}]},{"inclusive_time":1,"id":"616","highest_child_id":2211,"first_entry_time":40134,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"286","highest_child_id":2212,"first_entry_time":40136,"exclusive_time":0,"entries":1},{"inclusive_time":5,"id":"708","highest_child_id":2214,"first_entry_time":40138,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"719","highest_child_id":2214,"first_entry_time":40141,"exclusive_time":1,"entries":1,"allocations":[{"id":"720","count":1}]}],"allocations":[{"id":"25","count":1}]}]},{"inclusive_time":4310,"id":"731","highest_child_id":2869,"first_entry_time":40162,"exclusive_time":19,"entries":2,"callees":[{"inclusive_time":4291,"id":"732","highest_child_id":2869,"first_entry_time":40181,"exclusive_time":150,"entries":2,"callees":[{"inclusive_time":1,"id":"287","highest_child_id":2217,"first_entry_time":40183,"exclusive_time":1,"entries":2},{"inclusive_time":4139,"id":"733","highest_child_id":2869,"first_entry_time":40326,"exclusive_time":82,"entries":2,"callees":[{"inclusive_time":1,"id":"286","highest_child_id":2219,"first_entry_time":40334,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"500","highest_child_id":2220,"first_entry_time":40337,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"479","highest_child_id":2221,"first_entry_time":40340,"exclusive_time":0,"entries":2},{"inclusive_time":4,"id":"290","highest_child_id":2222,"first_entry_time":40342,"exclusive_time":4,"entries":2,"allocations":[{"id":"10","count":2},{"id":"6","count":2},{"id":"291","count":2}]},{"inclusive_time":3994,"id":"680","highest_child_id":2849,"first_entry_time":40346,"exclusive_time":5,"entries":2,"callees":[{"inclusive_time":3986,"id":"731","highest_child_id":2847,"first_entry_time":40349,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":3982,"id":"732","highest_child_id":2847,"first_entry_time":40351,"exclusive_time":16,"entries":2,"callees":[{"inclusive_time":1,"id":"287","highest_child_id":2226,"first_entry_time":40352,"exclusive_time":0,"entries":2},{"inclusive_time":3965,"id":"734","highest_child_id":2847,"first_entry_time":40365,"exclusive_time":99,"entries":2,"callees":[{"inclusive_time":1,"id":"286","highest_child_id":2228,"first_entry_time":40367,"exclusive_time":1,"entries":2},{"inclusive_time":3865,"id":"735","highest_child_id":2847,"first_entry_time":40463,"exclusive_time":41,"entries":2,"callees":[{"inclusive_time":3789,"id":"680","highest_child_id":2835,"first_entry_time":40474,"exclusive_time":6,"entries":2,"callees":[{"inclusive_time":3748,"id":"683","highest_child_id":2819,"first_entry_time":40477,"exclusive_time":40,"entries":1,"callees":[{"inclusive_time":1,"id":"551","highest_child_id":2232,"first_entry_time":40479,"exclusive_time":1,"entries":1},{"inclusive_time":3685,"id":"684","highest_child_id":2809,"first_entry_time":40484,"exclusive_time":82,"entries":1,"callees":[{"inclusive_time":1,"id":"554","highest_child_id":2234,"first_entry_time":40487,"exclusive_time":1,"entries":1},{"inclusive_time":48,"id":"685","highest_child_id":2245,"first_entry_time":40490,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":45,"id":"687","highest_child_id":2245,"first_entry_time":40492,"exclusive_time":19,"entries":1,"callees":[{"inclusive_time":0,"id":"688","highest_child_id":2237,"first_entry_time":40496,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"689","highest_child_id":2238,"first_entry_time":40497,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"175","highest_child_id":2239,"first_entry_time":40499,"exclusive_time":0,"entries":2,"allocations":[{"id":"172","count":2}]},{"inclusive_time":20,"id":"690","highest_child_id":2243,"first_entry_time":40501,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":17,"id":"691","highest_child_id":2243,"first_entry_time":40503,"exclusive_time":14,"entries":2,"callees":[{"inclusive_time":1,"id":"692","highest_child_id":2242,"first_entry_time":40507,"exclusive_time":1,"entries":2},{"inclusive_time":2,"id":"693","highest_child_id":2243,"first_entry_time":40510,"exclusive_time":1,"entries":5}]}]},{"inclusive_time":4,"id":"694","highest_child_id":2245,"first_entry_time":40533,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"696","highest_child_id":2245,"first_entry_time":40536,"exclusive_time":1,"entries":1}],"allocations":[{"id":"695","count":1}]}],"allocations":[{"id":"10","count":6},{"id":"6","count":4},{"id":"26","count":2}]}],"allocations":[{"id":"686","count":1}]},{"inclusive_time":3,"id":"697","highest_child_id":2247,"first_entry_time":40539,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"698","highest_child_id":2247,"first_entry_time":40541,"exclusive_time":1,"entries":1}],"allocations":[{"id":"28","count":1}]},{"inclusive_time":4,"id":"699","highest_child_id":2249,"first_entry_time":40545,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":2,"id":"701","highest_child_id":2249,"first_entry_time":40547,"exclusive_time":2,"entries":1,"allocations":[{"id":"6","count":9},{"id":"10","count":3}]}],"allocations":[{"id":"700","count":1}]},{"inclusive_time":1,"id":"736","highest_child_id":2250,"first_entry_time":40560,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"737","highest_child_id":2251,"first_entry_time":40570,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"702","highest_child_id":2252,"first_entry_time":40573,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"703","highest_child_id":2253,"first_entry_time":40575,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"704","highest_child_id":2254,"first_entry_time":40576,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"550","highest_child_id":2255,"first_entry_time":40578,"exclusive_time":0,"entries":1},{"inclusive_time":3,"id":"738","highest_child_id":2256,"first_entry_time":40591,"exclusive_time":2,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":1,"id":"739","highest_child_id":2257,"first_entry_time":40603,"exclusive_time":1,"entries":1},{"inclusive_time":3526,"id":"705","highest_child_id":2804,"first_entry_time":40606,"exclusive_time":99,"entries":1,"callees":[{"inclusive_time":3,"id":"706","highest_child_id":2259,"first_entry_time":40608,"exclusive_time":3,"entries":1,"allocations":[{"id":"707","count":1},{"id":"10","count":13},{"id":"26","count":1}]},{"inclusive_time":1,"id":"575","highest_child_id":2260,"first_entry_time":40612,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"286","highest_child_id":2261,"first_entry_time":40616,"exclusive_time":1,"entries":1},{"inclusive_time":3289,"id":"708","highest_child_id":2765,"first_entry_time":40618,"exclusive_time":20,"entries":1,"callees":[{"inclusive_time":3265,"id":"680","highest_child_id":2761,"first_entry_time":40623,"exclusive_time":7,"entries":3,"callees":[{"inclusive_time":3255,"id":"723","highest_child_id":2759,"first_entry_time":40625,"exclusive_time":10,"entries":3,"callees":[{"inclusive_time":34,"id":"724","highest_child_id":2275,"first_entry_time":40627,"exclusive_time":8,"entries":3,"callees":[{"inclusive_time":1,"id":"223","highest_child_id":2266,"first_entry_time":40628,"exclusive_time":1,"entries":3},{"inclusive_time":1,"id":"296","highest_child_id":2267,"first_entry_time":40630,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"350","highest_child_id":2268,"first_entry_time":40632,"exclusive_time":0,"entries":1},{"inclusive_time":11,"id":"725","highest_child_id":2270,"first_entry_time":40634,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":4,"id":"726","highest_child_id":2270,"first_entry_time":40636,"exclusive_time":4,"entries":1,"allocations":[{"id":"26","count":1}]}],"allocations":[{"id":"10","count":1},{"id":"27","count":1}]},{"inclusive_time":11,"id":"727","highest_child_id":2275,"first_entry_time":40647,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":8,"id":"728","highest_child_id":2275,"first_entry_time":40649,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"729","highest_child_id":2273,"first_entry_time":40651,"exclusive_time":1,"entries":3},{"inclusive_time":3,"id":"730","highest_child_id":2275,"first_entry_time":40653,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"690","highest_child_id":2275,"first_entry_time":40655,"exclusive_time":1,"entries":1}]}]}]}]},{"inclusive_time":1,"id":"616","highest_child_id":2276,"first_entry_time":40659,"exclusive_time":1,"entries":3},{"inclusive_time":1,"id":"286","highest_child_id":2277,"first_entry_time":40661,"exclusive_time":1,"entries":3},{"inclusive_time":3208,"id":"708","highest_child_id":2759,"first_entry_time":40662,"exclusive_time":72,"entries":3,"callees":[{"inclusive_time":3126,"id":"680","highest_child_id":2755,"first_entry_time":40666,"exclusive_time":81,"entries":14,"callees":[{"inclusive_time":306,"id":"709","highest_child_id":2303,"first_entry_time":40668,"exclusive_time":15,"entries":9,"callees":[{"inclusive_time":291,"id":"710","highest_child_id":2303,"first_entry_time":40670,"exclusive_time":74,"entries":9,"callees":[{"inclusive_time":5,"id":"618","highest_child_id":2282,"first_entry_time":40671,"exclusive_time":4,"entries":9},{"inclusive_time":3,"id":"619","highest_child_id":2283,"first_entry_time":40673,"exclusive_time":2,"entries":9},{"inclusive_time":184,"id":"740","highest_child_id":2294,"first_entry_time":40706,"exclusive_time":114,"entries":8,"callees":[{"inclusive_time":4,"id":"476","highest_child_id":2285,"first_entry_time":40709,"exclusive_time":2,"entries":8},{"inclusive_time":4,"id":"713","highest_child_id":2286,"first_entry_time":40711,"exclusive_time":3,"entries":8},{"inclusive_time":7,"id":"621","highest_child_id":2287,"first_entry_time":40712,"exclusive_time":4,"entries":16},{"inclusive_time":9,"id":"741","highest_child_id":2288,"first_entry_time":40724,"exclusive_time":8,"entries":8},{"inclusive_time":31,"id":"742","highest_child_id":2290,"first_entry_time":40741,"exclusive_time":23,"entries":8,"callees":[{"inclusive_time":8,"id":"743","highest_child_id":2290,"first_entry_time":40751,"exclusive_time":7,"entries":8,"allocations":[{"id":"744","count":8}]}]},{"inclusive_time":3,"id":"267","highest_child_id":2291,"first_entry_time":40756,"exclusive_time":2,"entries":8},{"inclusive_time":2,"id":"745","highest_child_id":2292,"first_entry_time":40769,"exclusive_time":1,"entries":8},{"inclusive_time":7,"id":"738","highest_child_id":2293,"first_entry_time":40771,"exclusive_time":6,"entries":8,"allocations":[{"id":"27","count":2}]},{"inclusive_time":9,"id":"746","highest_child_id":2294,"first_entry_time":40784,"exclusive_time":8,"entries":8,"allocations":[{"id":"28","count":1}]}],"allocations":[{"id":"27","count":16},{"id":"28","count":8}]},{"inclusive_time":5,"id":"719","highest_child_id":2295,"first_entry_time":40789,"exclusive_time":3,"entries":9,"allocations":[{"id":"720","count":9}]},{"inclusive_time":22,"id":"712","highest_child_id":2303,"first_entry_time":40922,"exclusive_time":12,"entries":1,"callees":[{"inclusive_time":1,"id":"621","highest_child_id":2297,"first_entry_time":40924,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"476","highest_child_id":2298,"first_entry_time":40930,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"713","highest_child_id":2299,"first_entry_time":40932,"exclusive_time":1,"entries":1},{"inclusive_time":6,"id":"714","highest_child_id":2302,"first_entry_time":40935,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"715","highest_child_id":2301,"first_entry_time":40937,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"716","highest_child_id":2302,"first_entry_time":40939,"exclusive_time":1,"entries":1,"allocations":[{"id":"717","count":1}]}]},{"inclusive_time":0,"id":"718","highest_child_id":2303,"first_entry_time":40942,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]}],"allocations":[{"id":"27","count":18}]}]},{"inclusive_time":248,"id":"721","highest_child_id":2312,"first_entry_time":40792,"exclusive_time":218,"entries":13,"callees":[{"inclusive_time":3,"id":"722","highest_child_id":2305,"first_entry_time":40794,"exclusive_time":1,"entries":13},{"inclusive_time":21,"id":"747","highest_child_id":2309,"first_entry_time":41483,"exclusive_time":16,"entries":2,"callees":[{"inclusive_time":1,"id":"722","highest_child_id":2307,"first_entry_time":41495,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"748","highest_child_id":2308,"first_entry_time":41497,"exclusive_time":1,"entries":2},{"inclusive_time":2,"id":"719","highest_child_id":2309,"first_entry_time":41500,"exclusive_time":1,"entries":2,"allocations":[{"id":"720","count":2}]}]},{"inclusive_time":6,"id":"749","highest_child_id":2312,"first_entry_time":41512,"exclusive_time":4,"entries":2,"callees":[{"inclusive_time":1,"id":"748","highest_child_id":2311,"first_entry_time":41514,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"722","highest_child_id":2312,"first_entry_time":41516,"exclusive_time":0,"entries":2}]}]},{"inclusive_time":1999,"id":"731","highest_child_id":2627,"first_entry_time":40956,"exclusive_time":4,"entries":3,"callees":[{"inclusive_time":1994,"id":"732","highest_child_id":2627,"first_entry_time":40958,"exclusive_time":314,"entries":3,"callees":[{"inclusive_time":1,"id":"287","highest_child_id":2315,"first_entry_time":40959,"exclusive_time":1,"entries":3},{"inclusive_time":447,"id":"750","highest_child_id":2407,"first_entry_time":40980,"exclusive_time":5,"entries":2,"callees":[{"inclusive_time":1,"id":"286","highest_child_id":2317,"first_entry_time":40982,"exclusive_time":1,"entries":2},{"inclusive_time":440,"id":"680","highest_child_id":2407,"first_entry_time":40985,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":437,"id":"709","highest_child_id":2407,"first_entry_time":40987,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":434,"id":"710","highest_child_id":2407,"first_entry_time":40988,"exclusive_time":62,"entries":2,"callees":[{"inclusive_time":1,"id":"618","highest_child_id":2321,"first_entry_time":40990,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"619","highest_child_id":2322,"first_entry_time":40992,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"621","highest_child_id":2323,"first_entry_time":40995,"exclusive_time":1,"entries":2},{"inclusive_time":2,"id":"751","highest_child_id":2324,"first_entry_time":41005,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"752","highest_child_id":2325,"first_entry_time":41015,"exclusive_time":1,"entries":2},{"inclusive_time":323,"id":"753","highest_child_id":2392,"first_entry_time":41028,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":319,"id":"680","highest_child_id":2392,"first_entry_time":41030,"exclusive_time":10,"entries":2,"callees":[{"inclusive_time":215,"id":"731","highest_child_id":2364,"first_entry_time":41032,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":213,"id":"732","highest_child_id":2364,"first_entry_time":41034,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":0,"id":"287","highest_child_id":2330,"first_entry_time":41036,"exclusive_time":0,"entries":1},{"inclusive_time":208,"id":"734","highest_child_id":2364,"first_entry_time":41039,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"286","highest_child_id":2332,"first_entry_time":41040,"exclusive_time":0,"entries":1},{"inclusive_time":205,"id":"735","highest_child_id":2364,"first_entry_time":41042,"exclusive_time":55,"entries":1,"callees":[{"inclusive_time":115,"id":"680","highest_child_id":2352,"first_entry_time":41051,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":101,"id":"754","highest_child_id":2350,"first_entry_time":41061,"exclusive_time":22,"entries":1,"callees":[{"inclusive_time":1,"id":"755","highest_child_id":2336,"first_entry_time":41071,"exclusive_time":1,"entries":1},{"inclusive_time":77,"id":"756","highest_child_id":2350,"first_entry_time":41086,"exclusive_time":22,"entries":1,"callees":[{"inclusive_time":9,"id":"757","highest_child_id":2341,"first_entry_time":41094,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":7,"id":"714","highest_child_id":2341,"first_entry_time":41096,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"715","highest_child_id":2340,"first_entry_time":41099,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"716","highest_child_id":2341,"first_entry_time":41101,"exclusive_time":2,"entries":1,"allocations":[{"id":"717","count":1}]}]}]},{"inclusive_time":44,"id":"758","highest_child_id":2349,"first_entry_time":41116,"exclusive_time":16,"entries":1,"callees":[{"inclusive_time":27,"id":"759","highest_child_id":2349,"first_entry_time":41132,"exclusive_time":12,"entries":1,"callees":[{"inclusive_time":1,"id":"760","highest_child_id":2344,"first_entry_time":41143,"exclusive_time":1,"entries":1},{"inclusive_time":13,"id":"730","highest_child_id":2349,"first_entry_time":41146,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":11,"id":"690","highest_child_id":2349,"first_entry_time":41147,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":10,"id":"691","highest_child_id":2349,"first_entry_time":41149,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":1,"id":"692","highest_child_id":2348,"first_entry_time":41154,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"693","highest_child_id":2349,"first_entry_time":41156,"exclusive_time":0,"entries":2}]}]}]}]}],"allocations":[{"id":"10","count":1}]},{"inclusive_time":1,"id":"719","highest_child_id":2350,"first_entry_time":41161,"exclusive_time":1,"entries":1,"allocations":[{"id":"720","count":1}]}]}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":2,"id":"721","highest_child_id":2352,"first_entry_time":41164,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"722","highest_child_id":2352,"first_entry_time":41165,"exclusive_time":0,"entries":1}]}]},{"inclusive_time":0,"id":"722","highest_child_id":2353,"first_entry_time":41167,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"748","highest_child_id":2354,"first_entry_time":41170,"exclusive_time":0,"entries":2},{"inclusive_time":18,"id":"761","highest_child_id":2358,"first_entry_time":41192,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":16,"id":"762","highest_child_id":2358,"first_entry_time":41195,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":4,"id":"763","highest_child_id":2358,"first_entry_time":41205,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"718","highest_child_id":2358,"first_entry_time":41208,"exclusive_time":0,"entries":1}]}]}]},{"inclusive_time":6,"id":"714","highest_child_id":2361,"first_entry_time":41212,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"715","highest_child_id":2360,"first_entry_time":41215,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"716","highest_child_id":2361,"first_entry_time":41217,"exclusive_time":1,"entries":1,"allocations":[{"id":"717","count":1}]}]},{"inclusive_time":6,"id":"764","highest_child_id":2363,"first_entry_time":41238,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"760","highest_child_id":2363,"first_entry_time":41242,"exclusive_time":1,"entries":1}]},{"inclusive_time":1,"id":"719","highest_child_id":2364,"first_entry_time":41245,"exclusive_time":1,"entries":1,"allocations":[{"id":"720","count":1}]}],"allocations":[{"id":"10","count":4},{"id":"25","count":2}]}]}],"allocations":[{"id":"27","count":1}]}]},{"inclusive_time":3,"id":"721","highest_child_id":2366,"first_entry_time":41248,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":1,"id":"722","highest_child_id":2366,"first_entry_time":41250,"exclusive_time":0,"entries":2}]},{"inclusive_time":90,"id":"709","highest_child_id":2392,"first_entry_time":41679,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":87,"id":"710","highest_child_id":2392,"first_entry_time":41681,"exclusive_time":34,"entries":1,"callees":[{"inclusive_time":1,"id":"618","highest_child_id":2369,"first_entry_time":41682,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"619","highest_child_id":2370,"first_entry_time":41684,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"621","highest_child_id":2371,"first_entry_time":41687,"exclusive_time":0,"entries":1},{"inclusive_time":34,"id":"756","highest_child_id":2383,"first_entry_time":41689,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":3,"id":"757","highest_child_id":2374,"first_entry_time":41691,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":2,"id":"714","highest_child_id":2374,"first_entry_time":41693,"exclusive_time":1,"entries":1}]},{"inclusive_time":25,"id":"758","highest_child_id":2382,"first_entry_time":41696,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":22,"id":"759","highest_child_id":2382,"first_entry_time":41698,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"760","highest_child_id":2377,"first_entry_time":41701,"exclusive_time":0,"entries":1},{"inclusive_time":16,"id":"730","highest_child_id":2382,"first_entry_time":41704,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":15,"id":"690","highest_child_id":2382,"first_entry_time":41705,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":13,"id":"691","highest_child_id":2382,"first_entry_time":41707,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":1,"id":"692","highest_child_id":2381,"first_entry_time":41713,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"693","highest_child_id":2382,"first_entry_time":41715,"exclusive_time":0,"entries":3}]}]}]}]}],"allocations":[{"id":"10","count":1}]},{"inclusive_time":1,"id":"719","highest_child_id":2383,"first_entry_time":41722,"exclusive_time":1,"entries":1,"allocations":[{"id":"720","count":1}]}]},{"inclusive_time":1,"id":"765","highest_child_id":2384,"first_entry_time":41733,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"714","highest_child_id":2385,"first_entry_time":41737,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"748","highest_child_id":2386,"first_entry_time":41740,"exclusive_time":0,"entries":2},{"inclusive_time":4,"id":"766","highest_child_id":2388,"first_entry_time":41754,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"760","highest_child_id":2388,"first_entry_time":41756,"exclusive_time":0,"entries":1}]},{"inclusive_time":6,"id":"762","highest_child_id":2391,"first_entry_time":41760,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":3,"id":"763","highest_child_id":2391,"first_entry_time":41762,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"718","highest_child_id":2391,"first_entry_time":41764,"exclusive_time":0,"entries":1}]}]},{"inclusive_time":1,"id":"719","highest_child_id":2392,"first_entry_time":41767,"exclusive_time":1,"entries":1,"allocations":[{"id":"720","count":1}]}],"allocations":[{"id":"27","count":3}]}]}]}]},{"inclusive_time":1,"id":"748","highest_child_id":2393,"first_entry_time":41252,"exclusive_time":1,"entries":4},{"inclusive_time":11,"id":"767","highest_child_id":2395,"first_entry_time":41265,"exclusive_time":9,"entries":2,"callees":[{"inclusive_time":1,"id":"760","highest_child_id":2395,"first_entry_time":41271,"exclusive_time":1,"entries":2}]},{"inclusive_time":9,"id":"762","highest_child_id":2398,"first_entry_time":41276,"exclusive_time":5,"entries":2,"callees":[{"inclusive_time":4,"id":"763","highest_child_id":2398,"first_entry_time":41278,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":1,"id":"718","highest_child_id":2398,"first_entry_time":41280,"exclusive_time":0,"entries":2}]}]},{"inclusive_time":2,"id":"719","highest_child_id":2399,"first_entry_time":41283,"exclusive_time":1,"entries":2,"allocations":[{"id":"720","count":2}]},{"inclusive_time":17,"id":"712","highest_child_id":2407,"first_entry_time":41651,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":1,"id":"621","highest_child_id":2401,"first_entry_time":41652,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"476","highest_child_id":2402,"first_entry_time":41656,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"713","highest_child_id":2403,"first_entry_time":41658,"exclusive_time":0,"entries":1},{"inclusive_time":5,"id":"714","highest_child_id":2406,"first_entry_time":41660,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"715","highest_child_id":2405,"first_entry_time":41663,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"716","highest_child_id":2406,"first_entry_time":41665,"exclusive_time":1,"entries":1,"allocations":[{"id":"717","count":1}]}]},{"inclusive_time":0,"id":"718","highest_child_id":2407,"first_entry_time":41667,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]}],"allocations":[{"id":"27","count":6}]}]}]}]},{"inclusive_time":1231,"id":"768","highest_child_id":2627,"first_entry_time":42087,"exclusive_time":99,"entries":1,"callees":[{"inclusive_time":1,"id":"286","highest_child_id":2409,"first_entry_time":42092,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"769","highest_child_id":2410,"first_entry_time":42107,"exclusive_time":2,"entries":1,"allocations":[{"id":"53","count":1}]},{"inclusive_time":15,"id":"770","highest_child_id":2412,"first_entry_time":42121,"exclusive_time":10,"entries":2,"callees":[{"inclusive_time":5,"id":"772","highest_child_id":2412,"first_entry_time":42129,"exclusive_time":5,"entries":2}],"allocations":[{"id":"771","count":2}]},{"inclusive_time":3,"id":"773","highest_child_id":2413,"first_entry_time":42154,"exclusive_time":2,"entries":4},{"inclusive_time":1035,"id":"680","highest_child_id":2592,"first_entry_time":42159,"exclusive_time":7,"entries":2,"callees":[{"inclusive_time":1024,"id":"731","highest_child_id":2590,"first_entry_time":42161,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":1021,"id":"732","highest_child_id":2590,"first_entry_time":42163,"exclusive_time":7,"entries":2,"callees":[{"inclusive_time":1,"id":"287","highest_child_id":2417,"first_entry_time":42164,"exclusive_time":1,"entries":2},{"inclusive_time":87,"id":"734","highest_child_id":2443,"first_entry_time":42168,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":0,"id":"286","highest_child_id":2419,"first_entry_time":42169,"exclusive_time":0,"entries":1},{"inclusive_time":83,"id":"735","highest_child_id":2443,"first_entry_time":42171,"exclusive_time":33,"entries":1,"callees":[{"inclusive_time":25,"id":"680","highest_child_id":2431,"first_entry_time":42182,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":19,"id":"709","highest_child_id":2429,"first_entry_time":42185,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":16,"id":"710","highest_child_id":2429,"first_entry_time":42186,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":1,"id":"618","highest_child_id":2424,"first_entry_time":42188,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"619","highest_child_id":2425,"first_entry_time":42190,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"621","highest_child_id":2426,"first_entry_time":42193,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"751","highest_child_id":2427,"first_entry_time":42196,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"752","highest_child_id":2428,"first_entry_time":42198,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"719","highest_child_id":2429,"first_entry_time":42201,"exclusive_time":1,"entries":1,"allocations":[{"id":"720","count":1}]}],"allocations":[{"id":"27","count":3}]}]},{"inclusive_time":2,"id":"721","highest_child_id":2431,"first_entry_time":42204,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"722","highest_child_id":2431,"first_entry_time":42206,"exclusive_time":0,"entries":1}]}]},{"inclusive_time":0,"id":"722","highest_child_id":2432,"first_entry_time":42208,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"748","highest_child_id":2433,"first_entry_time":42211,"exclusive_time":0,"entries":2},{"inclusive_time":7,"id":"761","highest_child_id":2437,"first_entry_time":42214,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":5,"id":"762","highest_child_id":2437,"first_entry_time":42216,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":2,"id":"763","highest_child_id":2437,"first_entry_time":42218,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"718","highest_child_id":2437,"first_entry_time":42220,"exclusive_time":0,"entries":1}]}]}]},{"inclusive_time":9,"id":"714","highest_child_id":2440,"first_entry_time":42223,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":1,"id":"715","highest_child_id":2439,"first_entry_time":42225,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"716","highest_child_id":2440,"first_entry_time":42230,"exclusive_time":1,"entries":1,"allocations":[{"id":"717","count":1}]}]},{"inclusive_time":5,"id":"774","highest_child_id":2442,"first_entry_time":42246,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"760","highest_child_id":2442,"first_entry_time":42250,"exclusive_time":1,"entries":1}]},{"inclusive_time":1,"id":"719","highest_child_id":2443,"first_entry_time":42253,"exclusive_time":1,"entries":1,"allocations":[{"id":"720","count":1}]}],"allocations":[{"id":"10","count":4},{"id":"25","count":2}]}]},{"inclusive_time":925,"id":"768","highest_child_id":2590,"first_entry_time":42289,"exclusive_time":144,"entries":1,"callees":[{"inclusive_time":1,"id":"286","highest_child_id":2445,"first_entry_time":42291,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"769","highest_child_id":2446,"first_entry_time":42296,"exclusive_time":1,"entries":1,"allocations":[{"id":"53","count":1}]},{"inclusive_time":5,"id":"770","highest_child_id":2448,"first_entry_time":42299,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":1,"id":"772","highest_child_id":2448,"first_entry_time":42301,"exclusive_time":1,"entries":2}],"allocations":[{"id":"771","count":2}]},{"inclusive_time":3,"id":"773","highest_child_id":2449,"first_entry_time":42305,"exclusive_time":2,"entries":4},{"inclusive_time":603,"id":"680","highest_child_id":2556,"first_entry_time":42309,"exclusive_time":4,"entries":2,"callees":[{"inclusive_time":585,"id":"731","highest_child_id":2547,"first_entry_time":42311,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":582,"id":"732","highest_child_id":2547,"first_entry_time":42312,"exclusive_time":124,"entries":2,"callees":[{"inclusive_time":1,"id":"287","highest_child_id":2453,"first_entry_time":42314,"exclusive_time":1,"entries":2},{"inclusive_time":167,"id":"734","highest_child_id":2497,"first_entry_time":42316,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":0,"id":"286","highest_child_id":2455,"first_entry_time":42318,"exclusive_time":0,"entries":1},{"inclusive_time":161,"id":"735","highest_child_id":2497,"first_entry_time":42322,"exclusive_time":46,"entries":1,"callees":[{"inclusive_time":64,"id":"680","highest_child_id":2481,"first_entry_time":42330,"exclusive_time":5,"entries":2,"callees":[{"inclusive_time":19,"id":"709","highest_child_id":2465,"first_entry_time":42332,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":17,"id":"710","highest_child_id":2465,"first_entry_time":42334,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":1,"id":"618","highest_child_id":2460,"first_entry_time":42335,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"619","highest_child_id":2461,"first_entry_time":42337,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"621","highest_child_id":2462,"first_entry_time":42340,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"751","highest_child_id":2463,"first_entry_time":42344,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"752","highest_child_id":2464,"first_entry_time":42346,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"719","highest_child_id":2465,"first_entry_time":42349,"exclusive_time":1,"entries":1,"allocations":[{"id":"720","count":1}]}],"allocations":[{"id":"27","count":3}]}]},{"inclusive_time":3,"id":"721","highest_child_id":2467,"first_entry_time":42352,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":1,"id":"722","highest_child_id":2467,"first_entry_time":42353,"exclusive_time":0,"entries":2}]},{"inclusive_time":36,"id":"754","highest_child_id":2481,"first_entry_time":42397,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"755","highest_child_id":2469,"first_entry_time":42398,"exclusive_time":1,"entries":1},{"inclusive_time":32,"id":"756","highest_child_id":2481,"first_entry_time":42401,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":3,"id":"757","highest_child_id":2472,"first_entry_time":42402,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"714","highest_child_id":2472,"first_entry_time":42404,"exclusive_time":1,"entries":1}]},{"inclusive_time":24,"id":"758","highest_child_id":2480,"first_entry_time":42407,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":22,"id":"759","highest_child_id":2480,"first_entry_time":42409,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"760","highest_child_id":2475,"first_entry_time":42411,"exclusive_time":0,"entries":1},{"inclusive_time":17,"id":"730","highest_child_id":2480,"first_entry_time":42413,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":15,"id":"690","highest_child_id":2480,"first_entry_time":42415,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":13,"id":"691","highest_child_id":2480,"first_entry_time":42416,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":1,"id":"692","highest_child_id":2479,"first_entry_time":42425,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"693","highest_child_id":2480,"first_entry_time":42428,"exclusive_time":0,"entries":1}]}]}]}]}],"allocations":[{"id":"10","count":1}]},{"inclusive_time":1,"id":"719","highest_child_id":2481,"first_entry_time":42432,"exclusive_time":1,"entries":1,"allocations":[{"id":"720","count":1}]}]}],"allocations":[{"id":"27","count":1}]}]},{"inclusive_time":1,"id":"722","highest_child_id":2482,"first_entry_time":42355,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"748","highest_child_id":2483,"first_entry_time":42358,"exclusive_time":0,"entries":4},{"inclusive_time":1,"id":"775","highest_child_id":2484,"first_entry_time":42367,"exclusive_time":0,"entries":1},{"inclusive_time":7,"id":"714","highest_child_id":2487,"first_entry_time":42369,"exclusive_time":4,"entries":2,"callees":[{"inclusive_time":1,"id":"715","highest_child_id":2486,"first_entry_time":42457,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"716","highest_child_id":2487,"first_entry_time":42459,"exclusive_time":1,"entries":1,"allocations":[{"id":"717","count":1}]}]},{"inclusive_time":20,"id":"758","highest_child_id":2490,"first_entry_time":42373,"exclusive_time":14,"entries":1,"callees":[{"inclusive_time":5,"id":"776","highest_child_id":2490,"first_entry_time":42388,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"760","highest_child_id":2490,"first_entry_time":42391,"exclusive_time":1,"entries":1}]}],"allocations":[{"id":"10","count":1}]},{"inclusive_time":14,"id":"761","highest_child_id":2494,"first_entry_time":42440,"exclusive_time":3,"entries":3,"callees":[{"inclusive_time":10,"id":"762","highest_child_id":2494,"first_entry_time":42442,"exclusive_time":5,"entries":3,"callees":[{"inclusive_time":4,"id":"763","highest_child_id":2494,"first_entry_time":42444,"exclusive_time":3,"entries":3,"callees":[{"inclusive_time":1,"id":"718","highest_child_id":2494,"first_entry_time":42445,"exclusive_time":0,"entries":3}]}]}]},{"inclusive_time":5,"id":"777","highest_child_id":2496,"first_entry_time":42475,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"760","highest_child_id":2496,"first_entry_time":42479,"exclusive_time":1,"entries":1}]},{"inclusive_time":1,"id":"719","highest_child_id":2497,"first_entry_time":42482,"exclusive_time":1,"entries":1,"allocations":[{"id":"720","count":1}]}],"allocations":[{"id":"10","count":4},{"id":"25","count":2}]}]},{"inclusive_time":289,"id":"778","highest_child_id":2547,"first_entry_time":42632,"exclusive_time":150,"entries":1,"callees":[{"inclusive_time":1,"id":"286","highest_child_id":2499,"first_entry_time":42635,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"479","highest_child_id":2500,"first_entry_time":42639,"exclusive_time":0,"entries":1},{"inclusive_time":26,"id":"680","highest_child_id":2511,"first_entry_time":42640,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":20,"id":"709","highest_child_id":2509,"first_entry_time":42643,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":18,"id":"710","highest_child_id":2509,"first_entry_time":42645,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":1,"id":"618","highest_child_id":2504,"first_entry_time":42646,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"619","highest_child_id":2505,"first_entry_time":42649,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"621","highest_child_id":2506,"first_entry_time":42652,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"751","highest_child_id":2507,"first_entry_time":42656,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"752","highest_child_id":2508,"first_entry_time":42658,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"719","highest_child_id":2509,"first_entry_time":42661,"exclusive_time":1,"entries":1,"allocations":[{"id":"720","count":1}]}],"allocations":[{"id":"27","count":3}]}]},{"inclusive_time":2,"id":"721","highest_child_id":2511,"first_entry_time":42664,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"722","highest_child_id":2511,"first_entry_time":42666,"exclusive_time":0,"entries":1}]}]},{"inclusive_time":3,"id":"500","highest_child_id":2512,"first_entry_time":42668,"exclusive_time":2,"entries":5},{"inclusive_time":2,"id":"779","highest_child_id":2513,"first_entry_time":42685,"exclusive_time":2,"entries":1,"allocations":[{"id":"10","count":2},{"id":"25","count":2}]},{"inclusive_time":1,"id":"722","highest_child_id":2514,"first_entry_time":42688,"exclusive_time":0,"entries":2},{"inclusive_time":2,"id":"748","highest_child_id":2515,"first_entry_time":42690,"exclusive_time":1,"entries":5},{"inclusive_time":1,"id":"736","highest_child_id":2516,"first_entry_time":42693,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"760","highest_child_id":2517,"first_entry_time":42695,"exclusive_time":1,"entries":1},{"inclusive_time":10,"id":"780","highest_child_id":2521,"first_entry_time":42706,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":8,"id":"714","highest_child_id":2521,"first_entry_time":42708,"exclusive_time":5,"entries":2,"callees":[{"inclusive_time":1,"id":"715","highest_child_id":2520,"first_entry_time":42720,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"716","highest_child_id":2521,"first_entry_time":42722,"exclusive_time":1,"entries":1,"allocations":[{"id":"717","count":1}]}]}]},{"inclusive_time":4,"id":"776","highest_child_id":2523,"first_entry_time":42726,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"760","highest_child_id":2523,"first_entry_time":42728,"exclusive_time":0,"entries":1}]},{"inclusive_time":9,"id":"781","highest_child_id":2527,"first_entry_time":42746,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"760","highest_child_id":2525,"first_entry_time":42749,"exclusive_time":1,"entries":1},{"inclusive_time":3,"id":"730","highest_child_id":2527,"first_entry_time":42752,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"690","highest_child_id":2527,"first_entry_time":42753,"exclusive_time":1,"entries":1}]}]},{"inclusive_time":11,"id":"762","highest_child_id":2530,"first_entry_time":42756,"exclusive_time":6,"entries":3,"callees":[{"inclusive_time":5,"id":"763","highest_child_id":2530,"first_entry_time":42758,"exclusive_time":3,"entries":3,"callees":[{"inclusive_time":1,"id":"718","highest_child_id":2530,"first_entry_time":42760,"exclusive_time":0,"entries":3}]}]},{"inclusive_time":1,"id":"782","highest_child_id":2531,"first_entry_time":42770,"exclusive_time":1,"entries":1},{"inclusive_time":35,"id":"783","highest_child_id":2538,"first_entry_time":42818,"exclusive_time":27,"entries":1,"callees":[{"inclusive_time":0,"id":"175","highest_child_id":2533,"first_entry_time":42820,"exclusive_time":0,"entries":1,"allocations":[{"id":"172","count":1}]},{"inclusive_time":1,"id":"722","highest_child_id":2534,"first_entry_time":42824,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"641","highest_child_id":2535,"first_entry_time":42826,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"633","highest_child_id":2536,"first_entry_time":42828,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"784","highest_child_id":2537,"first_entry_time":42838,"exclusive_time":1,"entries":1},{"inclusive_time":3,"id":"785","highest_child_id":2538,"first_entry_time":42846,"exclusive_time":2,"entries":1,"allocations":[{"id":"53","count":1}]}],"allocations":[{"id":"26","count":2},{"id":"25","count":3},{"id":"27","count":1}]},{"inclusive_time":1,"id":"641","highest_child_id":2539,"first_entry_time":42856,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"633","highest_child_id":2540,"first_entry_time":42858,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"476","highest_child_id":2541,"first_entry_time":42875,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"713","highest_child_id":2542,"first_entry_time":42877,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"714","highest_child_id":2543,"first_entry_time":42879,"exclusive_time":1,"entries":1},{"inclusive_time":20,"id":"786","highest_child_id":2545,"first_entry_time":42889,"exclusive_time":16,"entries":1,"callees":[{"inclusive_time":3,"id":"787","highest_child_id":2545,"first_entry_time":42905,"exclusive_time":3,"entries":1}]},{"inclusive_time":1,"id":"788","highest_child_id":2546,"first_entry_time":42916,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"719","highest_child_id":2547,"first_entry_time":42920,"exclusive_time":1,"entries":1,"allocations":[{"id":"720","count":1}]}],"allocations":[{"id":"10","count":2},{"id":"27","count":5},{"id":"25","count":2}]}],"allocations":[{"id":"27","count":2}]}]},{"inclusive_time":13,"id":"721","highest_child_id":2556,"first_entry_time":42923,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":0,"id":"722","highest_child_id":2549,"first_entry_time":42924,"exclusive_time":0,"entries":1},{"inclusive_time":5,"id":"747","highest_child_id":2553,"first_entry_time":42926,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":0,"id":"722","highest_child_id":2551,"first_entry_time":42927,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"748","highest_child_id":2552,"first_entry_time":42929,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"719","highest_child_id":2553,"first_entry_time":42930,"exclusive_time":1,"entries":1,"allocations":[{"id":"720","count":1}]}]},{"inclusive_time":3,"id":"749","highest_child_id":2556,"first_entry_time":42933,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"748","highest_child_id":2555,"first_entry_time":42934,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"722","highest_child_id":2556,"first_entry_time":42935,"exclusive_time":0,"entries":1}]}]}]},{"inclusive_time":19,"id":"789","highest_child_id":2559,"first_entry_time":42486,"exclusive_time":15,"entries":1,"callees":[{"inclusive_time":4,"id":"694","highest_child_id":2559,"first_entry_time":42500,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"696","highest_child_id":2559,"first_entry_time":42502,"exclusive_time":1,"entries":1}],"allocations":[{"id":"695","count":1}]}],"allocations":[{"id":"172","count":1},{"id":"6","count":1},{"id":"26","count":1},{"id":"10","count":1}]},{"inclusive_time":1,"id":"722","highest_child_id":2560,"first_entry_time":42937,"exclusive_time":1,"entries":5},{"inclusive_time":46,"id":"790","highest_child_id":2567,"first_entry_time":42957,"exclusive_time":39,"entries":1,"callees":[{"inclusive_time":1,"id":"791","highest_child_id":2562,"first_entry_time":42965,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"792","highest_child_id":2563,"first_entry_time":42972,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"793","highest_child_id":2564,"first_entry_time":42979,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"794","highest_child_id":2565,"first_entry_time":42986,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"795","highest_child_id":2566,"first_entry_time":42994,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"796","highest_child_id":2567,"first_entry_time":43002,"exclusive_time":1,"entries":1}]},{"inclusive_time":1,"id":"748","highest_child_id":2568,"first_entry_time":43014,"exclusive_time":1,"entries":2},{"inclusive_time":45,"id":"797","highest_child_id":2574,"first_entry_time":43029,"exclusive_time":21,"entries":1,"callees":[{"inclusive_time":1,"id":"760","highest_child_id":2570,"first_entry_time":43031,"exclusive_time":1,"entries":1},{"inclusive_time":22,"id":"798","highest_child_id":2574,"first_entry_time":43051,"exclusive_time":19,"entries":1,"callees":[{"inclusive_time":1,"id":"799","highest_child_id":2572,"first_entry_time":43059,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"800","highest_child_id":2573,"first_entry_time":43068,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"729","highest_child_id":2574,"first_entry_time":43072,"exclusive_time":1,"entries":1}],"allocations":[{"id":"28","count":1},{"id":"53","count":3},{"id":"26","count":1}]}]},{"inclusive_time":1,"id":"760","highest_child_id":2575,"first_entry_time":43075,"exclusive_time":0,"entries":1},{"inclusive_time":37,"id":"801","highest_child_id":2584,"first_entry_time":43136,"exclusive_time":29,"entries":1,"callees":[{"inclusive_time":1,"id":"791","highest_child_id":2577,"first_entry_time":43138,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"802","highest_child_id":2578,"first_entry_time":43147,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"792","highest_child_id":2579,"first_entry_time":43150,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"794","highest_child_id":2580,"first_entry_time":43153,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"793","highest_child_id":2581,"first_entry_time":43155,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"795","highest_child_id":2582,"first_entry_time":43156,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"803","highest_child_id":2583,"first_entry_time":43164,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"804","highest_child_id":2584,"first_entry_time":43172,"exclusive_time":1,"entries":1}],"allocations":[{"id":"25","count":4},{"id":"222","count":2}]},{"inclusive_time":8,"id":"762","highest_child_id":2587,"first_entry_time":43177,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":3,"id":"763","highest_child_id":2587,"first_entry_time":43181,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"718","highest_child_id":2587,"first_entry_time":43182,"exclusive_time":0,"entries":1}]}]},{"inclusive_time":8,"id":"805","highest_child_id":2589,"first_entry_time":43204,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":1,"id":"692","highest_child_id":2589,"first_entry_time":43210,"exclusive_time":1,"entries":1}],"allocations":[{"id":"53","count":1},{"id":"28","count":1},{"id":"25","count":1}]},{"inclusive_time":1,"id":"719","highest_child_id":2590,"first_entry_time":43213,"exclusive_time":1,"entries":1,"allocations":[{"id":"720","count":1}]}],"allocations":[{"id":"10","count":1},{"id":"27","count":2}]}],"allocations":[{"id":"27","count":2}]}]},{"inclusive_time":3,"id":"721","highest_child_id":2592,"first_entry_time":43219,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"722","highest_child_id":2592,"first_entry_time":43220,"exclusive_time":0,"entries":1}]}]},{"inclusive_time":7,"id":"789","highest_child_id":2595,"first_entry_time":42272,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":3,"id":"694","highest_child_id":2595,"first_entry_time":42275,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"696","highest_child_id":2595,"first_entry_time":42277,"exclusive_time":1,"entries":1}],"allocations":[{"id":"695","count":1}]}],"allocations":[{"id":"172","count":1},{"id":"6","count":1},{"id":"26","count":1},{"id":"10","count":1}]},{"inclusive_time":1,"id":"722","highest_child_id":2596,"first_entry_time":43223,"exclusive_time":0,"entries":5},{"inclusive_time":10,"id":"790","highest_child_id":2603,"first_entry_time":43226,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":1,"id":"791","highest_child_id":2598,"first_entry_time":43227,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"792","highest_child_id":2599,"first_entry_time":43229,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"793","highest_child_id":2600,"first_entry_time":43230,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"794","highest_child_id":2601,"first_entry_time":43232,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"795","highest_child_id":2602,"first_entry_time":43233,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"796","highest_child_id":2603,"first_entry_time":43235,"exclusive_time":0,"entries":1}]},{"inclusive_time":1,"id":"748","highest_child_id":2604,"first_entry_time":43242,"exclusive_time":1,"entries":2},{"inclusive_time":14,"id":"806","highest_child_id":2610,"first_entry_time":43257,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"760","highest_child_id":2606,"first_entry_time":43259,"exclusive_time":1,"entries":1},{"inclusive_time":8,"id":"798","highest_child_id":2610,"first_entry_time":43262,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":1,"id":"799","highest_child_id":2608,"first_entry_time":43264,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"800","highest_child_id":2609,"first_entry_time":43267,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"729","highest_child_id":2610,"first_entry_time":43270,"exclusive_time":0,"entries":1}],"allocations":[{"id":"28","count":1},{"id":"53","count":3},{"id":"26","count":1}]}]},{"inclusive_time":0,"id":"760","highest_child_id":2611,"first_entry_time":43272,"exclusive_time":0,"entries":1},{"inclusive_time":26,"id":"801","highest_child_id":2621,"first_entry_time":43274,"exclusive_time":17,"entries":1,"callees":[{"inclusive_time":1,"id":"791","highest_child_id":2613,"first_entry_time":43275,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"802","highest_child_id":2614,"first_entry_time":43278,"exclusive_time":1,"entries":3},{"inclusive_time":0,"id":"792","highest_child_id":2615,"first_entry_time":43280,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"692","highest_child_id":2616,"first_entry_time":43283,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"794","highest_child_id":2617,"first_entry_time":43286,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"793","highest_child_id":2618,"first_entry_time":43289,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"795","highest_child_id":2619,"first_entry_time":43295,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"803","highest_child_id":2620,"first_entry_time":43297,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"804","highest_child_id":2621,"first_entry_time":43299,"exclusive_time":1,"entries":1}],"allocations":[{"id":"25","count":4},{"id":"28","count":2},{"id":"222","count":2}]},{"inclusive_time":6,"id":"762","highest_child_id":2624,"first_entry_time":43303,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":3,"id":"763","highest_child_id":2624,"first_entry_time":43306,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"718","highest_child_id":2624,"first_entry_time":43307,"exclusive_time":0,"entries":1}]}]},{"inclusive_time":5,"id":"805","highest_child_id":2626,"first_entry_time":43311,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"692","highest_child_id":2626,"first_entry_time":43315,"exclusive_time":1,"entries":1}],"allocations":[{"id":"53","count":1},{"id":"28","count":1},{"id":"25","count":1}]},{"inclusive_time":1,"id":"719","highest_child_id":2627,"first_entry_time":43317,"exclusive_time":1,"entries":1,"allocations":[{"id":"720","count":1}]}],"allocations":[{"id":"10","count":1},{"id":"27","count":2}]}],"allocations":[{"id":"27","count":3}]}]},{"inclusive_time":4,"id":"807","highest_child_id":2629,"first_entry_time":43370,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"719","highest_child_id":2629,"first_entry_time":43373,"exclusive_time":1,"entries":1,"allocations":[{"id":"720","count":1}]}]},{"inclusive_time":486,"id":"808","highest_child_id":2755,"first_entry_time":43411,"exclusive_time":22,"entries":1,"callees":[{"inclusive_time":42,"id":"724","highest_child_id":2641,"first_entry_time":43413,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":1,"id":"223","highest_child_id":2632,"first_entry_time":43415,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"296","highest_child_id":2633,"first_entry_time":43417,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"350","highest_child_id":2634,"first_entry_time":43419,"exclusive_time":0,"entries":1},{"inclusive_time":19,"id":"725","highest_child_id":2636,"first_entry_time":43421,"exclusive_time":14,"entries":1,"callees":[{"inclusive_time":5,"id":"726","highest_child_id":2636,"first_entry_time":43423,"exclusive_time":4,"entries":1,"allocations":[{"id":"26","count":1}]}],"allocations":[{"id":"10","count":1},{"id":"27","count":1}]},{"inclusive_time":12,"id":"727","highest_child_id":2641,"first_entry_time":43443,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":9,"id":"728","highest_child_id":2641,"first_entry_time":43446,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"729","highest_child_id":2639,"first_entry_time":43448,"exclusive_time":1,"entries":3},{"inclusive_time":3,"id":"730","highest_child_id":2641,"first_entry_time":43450,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"690","highest_child_id":2641,"first_entry_time":43452,"exclusive_time":1,"entries":1}]}]}]}]},{"inclusive_time":419,"id":"809","highest_child_id":2754,"first_entry_time":43474,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"634","highest_child_id":2643,"first_entry_time":43477,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"286","highest_child_id":2644,"first_entry_time":43479,"exclusive_time":0,"entries":1},{"inclusive_time":412,"id":"708","highest_child_id":2754,"first_entry_time":43481,"exclusive_time":12,"entries":1,"callees":[{"inclusive_time":396,"id":"680","highest_child_id":2751,"first_entry_time":43486,"exclusive_time":13,"entries":1,"callees":[{"inclusive_time":383,"id":"810","highest_child_id":2751,"first_entry_time":43499,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":380,"id":"680","highest_child_id":2751,"first_entry_time":43502,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":378,"id":"731","highest_child_id":2751,"first_entry_time":43504,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":373,"id":"732","highest_child_id":2751,"first_entry_time":43509,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":0,"id":"287","highest_child_id":2651,"first_entry_time":43511,"exclusive_time":0,"entries":1},{"inclusive_time":367,"id":"733","highest_child_id":2751,"first_entry_time":43514,"exclusive_time":50,"entries":1,"callees":[{"inclusive_time":0,"id":"286","highest_child_id":2653,"first_entry_time":43517,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"500","highest_child_id":2654,"first_entry_time":43519,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"287","highest_child_id":2655,"first_entry_time":43521,"exclusive_time":1,"entries":2},{"inclusive_time":2,"id":"288","highest_child_id":2656,"first_entry_time":43523,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1},{"id":"289","count":1}]},{"inclusive_time":3,"id":"811","highest_child_id":2657,"first_entry_time":43534,"exclusive_time":3,"entries":1,"allocations":[{"id":"10","count":1},{"id":"812","count":1}]},{"inclusive_time":1,"id":"290","highest_child_id":2658,"first_entry_time":43538,"exclusive_time":1,"entries":1,"allocations":[{"id":"10","count":1},{"id":"6","count":1},{"id":"291","count":1}]},{"inclusive_time":255,"id":"680","highest_child_id":2725,"first_entry_time":43541,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":206,"id":"731","highest_child_id":2711,"first_entry_time":43543,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":204,"id":"732","highest_child_id":2711,"first_entry_time":43544,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"287","highest_child_id":2662,"first_entry_time":43546,"exclusive_time":0,"entries":1},{"inclusive_time":200,"id":"734","highest_child_id":2711,"first_entry_time":43548,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"286","highest_child_id":2664,"first_entry_time":43550,"exclusive_time":0,"entries":1},{"inclusive_time":196,"id":"735","highest_child_id":2711,"first_entry_time":43552,"exclusive_time":20,"entries":1,"callees":[{"inclusive_time":156,"id":"680","highest_child_id":2701,"first_entry_time":43563,"exclusive_time":33,"entries":1,"callees":[{"inclusive_time":120,"id":"813","highest_child_id":2699,"first_entry_time":43596,"exclusive_time":20,"entries":1,"callees":[{"inclusive_time":2,"id":"814","highest_child_id":2668,"first_entry_time":43605,"exclusive_time":2,"entries":2,"allocations":[{"id":"27","count":2}]},{"inclusive_time":1,"id":"815","highest_child_id":2669,"first_entry_time":43615,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":0,"id":"286","highest_child_id":2670,"first_entry_time":43618,"exclusive_time":0,"entries":1},{"inclusive_time":95,"id":"735","highest_child_id":2699,"first_entry_time":43620,"exclusive_time":30,"entries":1,"callees":[{"inclusive_time":43,"id":"680","highest_child_id":2687,"first_entry_time":43628,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":37,"id":"754","highest_child_id":2685,"first_entry_time":43630,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"755","highest_child_id":2674,"first_entry_time":43632,"exclusive_time":1,"entries":1},{"inclusive_time":33,"id":"756","highest_child_id":2685,"first_entry_time":43633,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":3,"id":"757","highest_child_id":2677,"first_entry_time":43636,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":2,"id":"714","highest_child_id":2677,"first_entry_time":43637,"exclusive_time":2,"entries":1}]},{"inclusive_time":24,"id":"758","highest_child_id":2684,"first_entry_time":43640,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":21,"id":"759","highest_child_id":2684,"first_entry_time":43643,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":1,"id":"760","highest_child_id":2680,"first_entry_time":43649,"exclusive_time":1,"entries":1},{"inclusive_time":11,"id":"730","highest_child_id":2684,"first_entry_time":43652,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":10,"id":"690","highest_child_id":2684,"first_entry_time":43653,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":8,"id":"691","highest_child_id":2684,"first_entry_time":43655,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":1,"id":"692","highest_child_id":2684,"first_entry_time":43661,"exclusive_time":0,"entries":1}]}]}]}]}],"allocations":[{"id":"10","count":1}]},{"inclusive_time":1,"id":"719","highest_child_id":2685,"first_entry_time":43665,"exclusive_time":1,"entries":1,"allocations":[{"id":"720","count":1}]}]}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":2,"id":"721","highest_child_id":2687,"first_entry_time":43668,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"722","highest_child_id":2687,"first_entry_time":43669,"exclusive_time":0,"entries":1}]}]},{"inclusive_time":0,"id":"722","highest_child_id":2688,"first_entry_time":43671,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"748","highest_child_id":2689,"first_entry_time":43674,"exclusive_time":0,"entries":2},{"inclusive_time":9,"id":"761","highest_child_id":2693,"first_entry_time":43678,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":7,"id":"762","highest_child_id":2693,"first_entry_time":43680,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":2,"id":"763","highest_child_id":2693,"first_entry_time":43683,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"718","highest_child_id":2693,"first_entry_time":43685,"exclusive_time":0,"entries":1}]}]}]},{"inclusive_time":1,"id":"714","highest_child_id":2694,"first_entry_time":43688,"exclusive_time":1,"entries":1},{"inclusive_time":5,"id":"816","highest_child_id":2696,"first_entry_time":43704,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"760","highest_child_id":2696,"first_entry_time":43707,"exclusive_time":1,"entries":1}]},{"inclusive_time":1,"id":"719","highest_child_id":2697,"first_entry_time":43710,"exclusive_time":1,"entries":1,"allocations":[{"id":"720","count":1}]},{"inclusive_time":2,"id":"721","highest_child_id":2699,"first_entry_time":43713,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"722","highest_child_id":2699,"first_entry_time":43714,"exclusive_time":0,"entries":1}]}],"allocations":[{"id":"10","count":4},{"id":"25","count":2}]}],"allocations":[{"id":"10","count":1}]},{"inclusive_time":2,"id":"721","highest_child_id":2701,"first_entry_time":43717,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"722","highest_child_id":2701,"first_entry_time":43718,"exclusive_time":0,"entries":1}]}]},{"inclusive_time":0,"id":"722","highest_child_id":2702,"first_entry_time":43720,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"748","highest_child_id":2703,"first_entry_time":43722,"exclusive_time":0,"entries":2},{"inclusive_time":11,"id":"761","highest_child_id":2707,"first_entry_time":43726,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":10,"id":"762","highest_child_id":2707,"first_entry_time":43728,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":3,"id":"763","highest_child_id":2707,"first_entry_time":43734,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"718","highest_child_id":2707,"first_entry_time":43735,"exclusive_time":0,"entries":1}]}]}]},{"inclusive_time":1,"id":"714","highest_child_id":2708,"first_entry_time":43739,"exclusive_time":1,"entries":1},{"inclusive_time":3,"id":"776","highest_child_id":2710,"first_entry_time":43742,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"760","highest_child_id":2710,"first_entry_time":43744,"exclusive_time":0,"entries":1}]},{"inclusive_time":1,"id":"719","highest_child_id":2711,"first_entry_time":43747,"exclusive_time":1,"entries":1,"allocations":[{"id":"720","count":1}]}],"allocations":[{"id":"10","count":4},{"id":"25","count":2}]}]}],"allocations":[{"id":"27","count":1}]}]},{"inclusive_time":45,"id":"810","highest_child_id":2725,"first_entry_time":43766,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":42,"id":"680","highest_child_id":2725,"first_entry_time":43768,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":40,"id":"807","highest_child_id":2725,"first_entry_time":43770,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":2,"id":"545","highest_child_id":2716,"first_entry_time":43772,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"531","highest_child_id":2716,"first_entry_time":43773,"exclusive_time":0,"entries":1}]},{"inclusive_time":1,"id":"738","highest_child_id":2717,"first_entry_time":43776,"exclusive_time":1,"entries":1},{"inclusive_time":7,"id":"780","highest_child_id":2721,"first_entry_time":43778,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":5,"id":"714","highest_child_id":2721,"first_entry_time":43779,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"715","highest_child_id":2720,"first_entry_time":43781,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"716","highest_child_id":2721,"first_entry_time":43783,"exclusive_time":1,"entries":1,"allocations":[{"id":"717","count":1}]}]}]},{"inclusive_time":21,"id":"758","highest_child_id":2724,"first_entry_time":43787,"exclusive_time":15,"entries":1,"callees":[{"inclusive_time":6,"id":"817","highest_child_id":2724,"first_entry_time":43802,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"760","highest_child_id":2724,"first_entry_time":43806,"exclusive_time":1,"entries":1}]}],"allocations":[{"id":"10","count":1}]},{"inclusive_time":1,"id":"719","highest_child_id":2725,"first_entry_time":43809,"exclusive_time":1,"entries":1,"allocations":[{"id":"720","count":1}]}],"allocations":[{"id":"27","count":1}]}]}]}]},{"inclusive_time":4,"id":"779","highest_child_id":2727,"first_entry_time":43750,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"633","highest_child_id":2727,"first_entry_time":43753,"exclusive_time":0,"entries":1}],"allocations":[{"id":"10","count":2},{"id":"25","count":2}]},{"inclusive_time":2,"id":"748","highest_child_id":2728,"first_entry_time":43756,"exclusive_time":1,"entries":6},{"inclusive_time":1,"id":"736","highest_child_id":2729,"first_entry_time":43759,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"760","highest_child_id":2730,"first_entry_time":43762,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"722","highest_child_id":2731,"first_entry_time":43812,"exclusive_time":0,"entries":2},{"inclusive_time":0,"id":"782","highest_child_id":2732,"first_entry_time":43814,"exclusive_time":0,"entries":1},{"inclusive_time":21,"id":"783","highest_child_id":2739,"first_entry_time":43816,"exclusive_time":14,"entries":1,"callees":[{"inclusive_time":0,"id":"175","highest_child_id":2734,"first_entry_time":43818,"exclusive_time":0,"entries":1,"allocations":[{"id":"172","count":1}]},{"inclusive_time":1,"id":"722","highest_child_id":2735,"first_entry_time":43825,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"641","highest_child_id":2736,"first_entry_time":43826,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"633","highest_child_id":2737,"first_entry_time":43828,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"784","highest_child_id":2738,"first_entry_time":43831,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"785","highest_child_id":2739,"first_entry_time":43833,"exclusive_time":1,"entries":1,"allocations":[{"id":"53","count":1}]}],"allocations":[{"id":"26","count":2},{"id":"25","count":1},{"id":"27","count":1}]},{"inclusive_time":1,"id":"641","highest_child_id":2740,"first_entry_time":43840,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"633","highest_child_id":2741,"first_entry_time":43842,"exclusive_time":0,"entries":1},{"inclusive_time":9,"id":"762","highest_child_id":2744,"first_entry_time":43847,"exclusive_time":5,"entries":2,"callees":[{"inclusive_time":3,"id":"763","highest_child_id":2744,"first_entry_time":43850,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":1,"id":"718","highest_child_id":2744,"first_entry_time":43852,"exclusive_time":0,"entries":2}]}]},{"inclusive_time":1,"id":"476","highest_child_id":2745,"first_entry_time":43861,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"713","highest_child_id":2746,"first_entry_time":43862,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"714","highest_child_id":2747,"first_entry_time":43864,"exclusive_time":1,"entries":1},{"inclusive_time":4,"id":"786","highest_child_id":2749,"first_entry_time":43867,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":3,"id":"787","highest_child_id":2749,"first_entry_time":43869,"exclusive_time":2,"entries":1}]},{"inclusive_time":1,"id":"788","highest_child_id":2750,"first_entry_time":43873,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"719","highest_child_id":2751,"first_entry_time":43880,"exclusive_time":1,"entries":1,"allocations":[{"id":"720","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":"722","highest_child_id":2752,"first_entry_time":43883,"exclusive_time":0,"entries":3},{"inclusive_time":1,"id":"748","highest_child_id":2753,"first_entry_time":43889,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"719","highest_child_id":2754,"first_entry_time":43892,"exclusive_time":1,"entries":1,"allocations":[{"id":"720","count":1}]}],"allocations":[{"id":"25","count":1}]}]},{"inclusive_time":2,"id":"472","highest_child_id":2755,"first_entry_time":43895,"exclusive_time":2,"entries":1,"allocations":[{"id":"10","count":1},{"id":"222","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"25","count":1}]}]},{"inclusive_time":4,"id":"748","highest_child_id":2756,"first_entry_time":40797,"exclusive_time":2,"entries":14},{"inclusive_time":3,"id":"722","highest_child_id":2757,"first_entry_time":40798,"exclusive_time":1,"entries":16},{"inclusive_time":8,"id":"762","highest_child_id":2758,"first_entry_time":40800,"exclusive_time":5,"entries":13},{"inclusive_time":2,"id":"719","highest_child_id":2759,"first_entry_time":41613,"exclusive_time":2,"entries":3,"allocations":[{"id":"720","count":3}]}],"allocations":[{"id":"25","count":3}]}]},{"inclusive_time":3,"id":"721","highest_child_id":2761,"first_entry_time":41616,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":1,"id":"722","highest_child_id":2761,"first_entry_time":41617,"exclusive_time":0,"entries":2}]}]},{"inclusive_time":1,"id":"748","highest_child_id":2762,"first_entry_time":41620,"exclusive_time":0,"entries":3},{"inclusive_time":1,"id":"722","highest_child_id":2763,"first_entry_time":41621,"exclusive_time":0,"entries":5},{"inclusive_time":1,"id":"762","highest_child_id":2764,"first_entry_time":41625,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"719","highest_child_id":2765,"first_entry_time":43906,"exclusive_time":1,"entries":1,"allocations":[{"id":"720","count":1}]}],"allocations":[{"id":"25","count":1}]},{"inclusive_time":1,"id":"722","highest_child_id":2766,"first_entry_time":43908,"exclusive_time":0,"entries":3},{"inclusive_time":7,"id":"818","highest_child_id":2768,"first_entry_time":43930,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":1,"id":"575","highest_child_id":2768,"first_entry_time":43933,"exclusive_time":1,"entries":2}],"allocations":[{"id":"10","count":1},{"id":"27","count":2}]},{"inclusive_time":0,"id":"748","highest_child_id":2769,"first_entry_time":43939,"exclusive_time":0,"entries":1},{"inclusive_time":5,"id":"819","highest_child_id":2771,"first_entry_time":43952,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"760","highest_child_id":2771,"first_entry_time":43955,"exclusive_time":1,"entries":1}]},{"inclusive_time":15,"id":"789","highest_child_id":2774,"first_entry_time":43958,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":11,"id":"694","highest_child_id":2774,"first_entry_time":43961,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":7,"id":"696","highest_child_id":2774,"first_entry_time":43965,"exclusive_time":6,"entries":1}],"allocations":[{"id":"695","count":1}]}],"allocations":[{"id":"172","count":1},{"id":"6","count":1},{"id":"26","count":1},{"id":"10","count":1}]},{"inclusive_time":2,"id":"714","highest_child_id":2775,"first_entry_time":43976,"exclusive_time":2,"entries":1},{"inclusive_time":1,"id":"820","highest_child_id":2776,"first_entry_time":43986,"exclusive_time":1,"entries":1},{"inclusive_time":9,"id":"762","highest_child_id":2779,"first_entry_time":43989,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":3,"id":"763","highest_child_id":2779,"first_entry_time":43991,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"718","highest_child_id":2779,"first_entry_time":43993,"exclusive_time":1,"entries":1}]}]},{"inclusive_time":1,"id":"821","highest_child_id":2780,"first_entry_time":44006,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"472","highest_child_id":2781,"first_entry_time":44008,"exclusive_time":2,"entries":1,"allocations":[{"id":"10","count":1},{"id":"222","count":1}]},{"inclusive_time":1,"id":"822","highest_child_id":2782,"first_entry_time":44018,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"823","highest_child_id":2783,"first_entry_time":44028,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"824","highest_child_id":2784,"first_entry_time":44036,"exclusive_time":1,"entries":2},{"inclusive_time":44,"id":"825","highest_child_id":2790,"first_entry_time":44047,"exclusive_time":11,"entries":2,"callees":[{"inclusive_time":32,"id":"826","highest_child_id":2790,"first_entry_time":44057,"exclusive_time":23,"entries":2,"callees":[{"inclusive_time":5,"id":"827","highest_child_id":2788,"first_entry_time":44070,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"760","highest_child_id":2788,"first_entry_time":44073,"exclusive_time":1,"entries":1}]},{"inclusive_time":4,"id":"828","highest_child_id":2790,"first_entry_time":44089,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"760","highest_child_id":2790,"first_entry_time":44091,"exclusive_time":1,"entries":1}]}]}],"allocations":[{"id":"10","count":2}]},{"inclusive_time":11,"id":"790","highest_child_id":2797,"first_entry_time":44094,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":1,"id":"791","highest_child_id":2792,"first_entry_time":44096,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"792","highest_child_id":2793,"first_entry_time":44097,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"793","highest_child_id":2794,"first_entry_time":44099,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"794","highest_child_id":2795,"first_entry_time":44100,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"795","highest_child_id":2796,"first_entry_time":44102,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"796","highest_child_id":2797,"first_entry_time":44104,"exclusive_time":0,"entries":1}],"allocations":[{"id":"28","count":1}]},{"inclusive_time":25,"id":"801","highest_child_id":2804,"first_entry_time":44106,"exclusive_time":19,"entries":1,"callees":[{"inclusive_time":0,"id":"791","highest_child_id":2799,"first_entry_time":44107,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"802","highest_child_id":2800,"first_entry_time":44110,"exclusive_time":1,"entries":4},{"inclusive_time":1,"id":"692","highest_child_id":2801,"first_entry_time":44113,"exclusive_time":1,"entries":4},{"inclusive_time":0,"id":"792","highest_child_id":2802,"first_entry_time":44117,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"794","highest_child_id":2803,"first_entry_time":44121,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"804","highest_child_id":2804,"first_entry_time":44130,"exclusive_time":1,"entries":1}],"allocations":[{"id":"25","count":3},{"id":"28","count":6},{"id":"222","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"27","count":2},{"id":"10","count":2},{"id":"25","count":5}]},{"inclusive_time":1,"id":"829","highest_child_id":2805,"first_entry_time":44140,"exclusive_time":1,"entries":1},{"inclusive_time":5,"id":"472","highest_child_id":2807,"first_entry_time":44143,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":0,"id":"261","highest_child_id":2807,"first_entry_time":44146,"exclusive_time":0,"entries":1}],"allocations":[{"id":"10","count":1},{"id":"222","count":1},{"id":"27","count":1}]},{"inclusive_time":1,"id":"751","highest_child_id":2808,"first_entry_time":44153,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"830","highest_child_id":2809,"first_entry_time":44166,"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":3,"id":"575","highest_child_id":2810,"first_entry_time":44170,"exclusive_time":2,"entries":6},{"inclusive_time":3,"id":"831","highest_child_id":2812,"first_entry_time":44186,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"551","highest_child_id":2812,"first_entry_time":44188,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":14,"id":"832","highest_child_id":2818,"first_entry_time":44208,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":0,"id":"551","highest_child_id":2814,"first_entry_time":44210,"exclusive_time":0,"entries":1},{"inclusive_time":6,"id":"714","highest_child_id":2817,"first_entry_time":44213,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"715","highest_child_id":2816,"first_entry_time":44216,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"716","highest_child_id":2817,"first_entry_time":44218,"exclusive_time":1,"entries":1,"allocations":[{"id":"717","count":1}]}]},{"inclusive_time":0,"id":"718","highest_child_id":2818,"first_entry_time":44221,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":1,"id":"719","highest_child_id":2819,"first_entry_time":44223,"exclusive_time":1,"entries":1,"allocations":[{"id":"720","count":1}]}],"allocations":[{"id":"2","count":1},{"id":"27","count":7}]},{"inclusive_time":3,"id":"721","highest_child_id":2821,"first_entry_time":44226,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":1,"id":"722","highest_child_id":2821,"first_entry_time":44227,"exclusive_time":1,"entries":2}]},{"inclusive_time":30,"id":"833","highest_child_id":2835,"first_entry_time":45390,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":1,"id":"834","highest_child_id":2823,"first_entry_time":45392,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"551","highest_child_id":2824,"first_entry_time":45394,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"736","highest_child_id":2825,"first_entry_time":45396,"exclusive_time":0,"entries":1},{"inclusive_time":7,"id":"780","highest_child_id":2829,"first_entry_time":45399,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":6,"id":"714","highest_child_id":2829,"first_entry_time":45400,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"715","highest_child_id":2828,"first_entry_time":45402,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"716","highest_child_id":2829,"first_entry_time":45404,"exclusive_time":1,"entries":1,"allocations":[{"id":"717","count":1}]}]}]},{"inclusive_time":11,"id":"758","highest_child_id":2834,"first_entry_time":45407,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":9,"id":"835","highest_child_id":2834,"first_entry_time":45409,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":1,"id":"760","highest_child_id":2832,"first_entry_time":45412,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"836","highest_child_id":2833,"first_entry_time":45414,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"837","highest_child_id":2834,"first_entry_time":45416,"exclusive_time":1,"entries":1,"allocations":[{"id":"18","count":2}]}]}],"allocations":[{"id":"10","count":1}]},{"inclusive_time":1,"id":"719","highest_child_id":2835,"first_entry_time":45419,"exclusive_time":1,"entries":1,"allocations":[{"id":"720","count":1}]}],"allocations":[{"id":"27","count":1}]}]},{"inclusive_time":1,"id":"722","highest_child_id":2836,"first_entry_time":44229,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"748","highest_child_id":2837,"first_entry_time":44232,"exclusive_time":1,"entries":4},{"inclusive_time":18,"id":"761","highest_child_id":2841,"first_entry_time":44236,"exclusive_time":8,"entries":2,"callees":[{"inclusive_time":10,"id":"762","highest_child_id":2841,"first_entry_time":44243,"exclusive_time":5,"entries":2,"callees":[{"inclusive_time":4,"id":"763","highest_child_id":2841,"first_entry_time":44246,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":1,"id":"718","highest_child_id":2841,"first_entry_time":44247,"exclusive_time":0,"entries":2}]}]}]},{"inclusive_time":6,"id":"714","highest_child_id":2844,"first_entry_time":44250,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":1,"id":"715","highest_child_id":2843,"first_entry_time":44252,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"716","highest_child_id":2844,"first_entry_time":44254,"exclusive_time":1,"entries":1,"allocations":[{"id":"717","count":1}]}]},{"inclusive_time":6,"id":"776","highest_child_id":2846,"first_entry_time":44257,"exclusive_time":5,"entries":2,"callees":[{"inclusive_time":1,"id":"760","highest_child_id":2846,"first_entry_time":44260,"exclusive_time":1,"entries":2}]},{"inclusive_time":1,"id":"719","highest_child_id":2847,"first_entry_time":44262,"exclusive_time":1,"entries":2,"allocations":[{"id":"720","count":2}]}],"allocations":[{"id":"10","count":8},{"id":"25","count":4}]}]}],"allocations":[{"id":"27","count":2}]}]},{"inclusive_time":3,"id":"721","highest_child_id":2849,"first_entry_time":44265,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":1,"id":"722","highest_child_id":2849,"first_entry_time":44266,"exclusive_time":0,"entries":2}]}]},{"inclusive_time":2,"id":"287","highest_child_id":2850,"first_entry_time":44268,"exclusive_time":2,"entries":4},{"inclusive_time":2,"id":"779","highest_child_id":2851,"first_entry_time":44270,"exclusive_time":2,"entries":2,"allocations":[{"id":"10","count":4},{"id":"25","count":4}]},{"inclusive_time":2,"id":"748","highest_child_id":2852,"first_entry_time":44273,"exclusive_time":1,"entries":8},{"inclusive_time":1,"id":"736","highest_child_id":2853,"first_entry_time":44275,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"760","highest_child_id":2854,"first_entry_time":44279,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"782","highest_child_id":2855,"first_entry_time":44281,"exclusive_time":0,"entries":2},{"inclusive_time":16,"id":"783","highest_child_id":2859,"first_entry_time":44283,"exclusive_time":11,"entries":2,"callees":[{"inclusive_time":0,"id":"175","highest_child_id":2857,"first_entry_time":44284,"exclusive_time":0,"entries":2,"allocations":[{"id":"172","count":2}]},{"inclusive_time":2,"id":"784","highest_child_id":2858,"first_entry_time":44287,"exclusive_time":2,"entries":2},{"inclusive_time":2,"id":"785","highest_child_id":2859,"first_entry_time":44289,"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":9,"id":"762","highest_child_id":2862,"first_entry_time":44296,"exclusive_time":5,"entries":2,"callees":[{"inclusive_time":4,"id":"763","highest_child_id":2862,"first_entry_time":44298,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":1,"id":"718","highest_child_id":2862,"first_entry_time":44300,"exclusive_time":0,"entries":2}]}]},{"inclusive_time":1,"id":"476","highest_child_id":2863,"first_entry_time":44305,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"713","highest_child_id":2864,"first_entry_time":44306,"exclusive_time":1,"entries":2},{"inclusive_time":6,"id":"714","highest_child_id":2865,"first_entry_time":44308,"exclusive_time":5,"entries":2},{"inclusive_time":9,"id":"786","highest_child_id":2867,"first_entry_time":44315,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":5,"id":"787","highest_child_id":2867,"first_entry_time":44317,"exclusive_time":5,"entries":2}]},{"inclusive_time":1,"id":"788","highest_child_id":2868,"first_entry_time":44321,"exclusive_time":0,"entries":2},{"inclusive_time":2,"id":"719","highest_child_id":2869,"first_entry_time":44328,"exclusive_time":2,"entries":2,"allocations":[{"id":"720","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":457,"id":"808","highest_child_id":3007,"first_entry_time":44711,"exclusive_time":8,"entries":2,"callees":[{"inclusive_time":4,"id":"724","highest_child_id":2872,"first_entry_time":44713,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":1,"id":"223","highest_child_id":2872,"first_entry_time":44714,"exclusive_time":1,"entries":2}]},{"inclusive_time":437,"id":"809","highest_child_id":3006,"first_entry_time":44717,"exclusive_time":5,"entries":2,"callees":[{"inclusive_time":1,"id":"634","highest_child_id":2874,"first_entry_time":44718,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"286","highest_child_id":2875,"first_entry_time":44720,"exclusive_time":0,"entries":2},{"inclusive_time":429,"id":"708","highest_child_id":3006,"first_entry_time":44721,"exclusive_time":14,"entries":2,"callees":[{"inclusive_time":410,"id":"680","highest_child_id":3002,"first_entry_time":44725,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":259,"id":"723","highest_child_id":2955,"first_entry_time":44727,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":2,"id":"724","highest_child_id":2880,"first_entry_time":44728,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"223","highest_child_id":2880,"first_entry_time":44729,"exclusive_time":0,"entries":1}]},{"inclusive_time":0,"id":"616","highest_child_id":2881,"first_entry_time":44731,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"286","highest_child_id":2882,"first_entry_time":44732,"exclusive_time":0,"entries":1},{"inclusive_time":253,"id":"708","highest_child_id":2955,"first_entry_time":44733,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":242,"id":"680","highest_child_id":2951,"first_entry_time":44736,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":225,"id":"731","highest_child_id":2942,"first_entry_time":44738,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":224,"id":"732","highest_child_id":2942,"first_entry_time":44740,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":0,"id":"287","highest_child_id":2887,"first_entry_time":44741,"exclusive_time":0,"entries":1},{"inclusive_time":219,"id":"750","highest_child_id":2942,"first_entry_time":44745,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"286","highest_child_id":2889,"first_entry_time":44746,"exclusive_time":0,"entries":1},{"inclusive_time":216,"id":"680","highest_child_id":2942,"first_entry_time":44748,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":214,"id":"709","highest_child_id":2942,"first_entry_time":44749,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":211,"id":"710","highest_child_id":2942,"first_entry_time":44751,"exclusive_time":41,"entries":1,"callees":[{"inclusive_time":1,"id":"618","highest_child_id":2893,"first_entry_time":44753,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"619","highest_child_id":2894,"first_entry_time":44755,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"621","highest_child_id":2895,"first_entry_time":44757,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"286","highest_child_id":2896,"first_entry_time":44760,"exclusive_time":0,"entries":1},{"inclusive_time":123,"id":"753","highest_child_id":2926,"first_entry_time":44761,"exclusive_time":4,"entries":3,"callees":[{"inclusive_time":119,"id":"680","highest_child_id":2926,"first_entry_time":44763,"exclusive_time":28,"entries":3,"callees":[{"inclusive_time":46,"id":"807","highest_child_id":2910,"first_entry_time":44765,"exclusive_time":12,"entries":2,"callees":[{"inclusive_time":6,"id":"545","highest_child_id":2901,"first_entry_time":44767,"exclusive_time":5,"entries":2,"callees":[{"inclusive_time":1,"id":"531","highest_child_id":2901,"first_entry_time":44771,"exclusive_time":1,"entries":2}]},{"inclusive_time":2,"id":"738","highest_child_id":2902,"first_entry_time":44773,"exclusive_time":2,"entries":2,"allocations":[{"id":"27","count":1}]},{"inclusive_time":11,"id":"780","highest_child_id":2906,"first_entry_time":44776,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":9,"id":"714","highest_child_id":2906,"first_entry_time":44778,"exclusive_time":5,"entries":2,"callees":[{"inclusive_time":1,"id":"715","highest_child_id":2905,"first_entry_time":44780,"exclusive_time":1,"entries":2},{"inclusive_time":2,"id":"716","highest_child_id":2906,"first_entry_time":44782,"exclusive_time":1,"entries":2,"allocations":[{"id":"717","count":2}]}]}]},{"inclusive_time":13,"id":"758","highest_child_id":2909,"first_entry_time":44785,"exclusive_time":4,"entries":2,"callees":[{"inclusive_time":9,"id":"817","highest_child_id":2909,"first_entry_time":44788,"exclusive_time":7,"entries":2,"callees":[{"inclusive_time":1,"id":"760","highest_child_id":2909,"first_entry_time":44791,"exclusive_time":1,"entries":2}]}],"allocations":[{"id":"10","count":2}]},{"inclusive_time":1,"id":"719","highest_child_id":2910,"first_entry_time":44795,"exclusive_time":1,"entries":2,"allocations":[{"id":"720","count":2}]}],"allocations":[{"id":"27","count":2},{"id":"28","count":1}]},{"inclusive_time":4,"id":"721","highest_child_id":2912,"first_entry_time":44797,"exclusive_time":3,"entries":3,"callees":[{"inclusive_time":1,"id":"722","highest_child_id":2912,"first_entry_time":44798,"exclusive_time":1,"entries":3}]},{"inclusive_time":40,"id":"833","highest_child_id":2926,"first_entry_time":44858,"exclusive_time":16,"entries":1,"callees":[{"inclusive_time":1,"id":"834","highest_child_id":2914,"first_entry_time":44868,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"551","highest_child_id":2915,"first_entry_time":44871,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"736","highest_child_id":2916,"first_entry_time":44874,"exclusive_time":0,"entries":1},{"inclusive_time":7,"id":"780","highest_child_id":2920,"first_entry_time":44876,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":6,"id":"714","highest_child_id":2920,"first_entry_time":44877,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"715","highest_child_id":2919,"first_entry_time":44880,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"716","highest_child_id":2920,"first_entry_time":44882,"exclusive_time":1,"entries":1,"allocations":[{"id":"717","count":1}]}]}]},{"inclusive_time":12,"id":"758","highest_child_id":2925,"first_entry_time":44884,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":9,"id":"835","highest_child_id":2925,"first_entry_time":44887,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":1,"id":"760","highest_child_id":2923,"first_entry_time":44890,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"836","highest_child_id":2924,"first_entry_time":44892,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"837","highest_child_id":2925,"first_entry_time":44894,"exclusive_time":2,"entries":1,"allocations":[{"id":"18","count":2}]}]}],"allocations":[{"id":"10","count":1}]},{"inclusive_time":1,"id":"719","highest_child_id":2926,"first_entry_time":44897,"exclusive_time":1,"entries":1,"allocations":[{"id":"720","count":1}]}],"allocations":[{"id":"27","count":1}]}]}]},{"inclusive_time":7,"id":"545","highest_child_id":2928,"first_entry_time":44821,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":0,"id":"531","highest_child_id":2928,"first_entry_time":44822,"exclusive_time":0,"entries":1}]},{"inclusive_time":1,"id":"476","highest_child_id":2929,"first_entry_time":44829,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"713","highest_child_id":2930,"first_entry_time":44831,"exclusive_time":1,"entries":1},{"inclusive_time":5,"id":"748","highest_child_id":2931,"first_entry_time":44904,"exclusive_time":4,"entries":6},{"inclusive_time":17,"id":"838","highest_child_id":2937,"first_entry_time":44922,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":1,"id":"760","highest_child_id":2933,"first_entry_time":44926,"exclusive_time":1,"entries":1},{"inclusive_time":10,"id":"730","highest_child_id":2937,"first_entry_time":44929,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":9,"id":"690","highest_child_id":2937,"first_entry_time":44930,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":7,"id":"691","highest_child_id":2937,"first_entry_time":44932,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":1,"id":"692","highest_child_id":2937,"first_entry_time":44937,"exclusive_time":1,"entries":1}]}]}]}]},{"inclusive_time":0,"id":"722","highest_child_id":2938,"first_entry_time":44945,"exclusive_time":0,"entries":1},{"inclusive_time":9,"id":"762","highest_child_id":2941,"first_entry_time":44949,"exclusive_time":5,"entries":2,"callees":[{"inclusive_time":3,"id":"763","highest_child_id":2941,"first_entry_time":44952,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":1,"id":"718","highest_child_id":2941,"first_entry_time":44954,"exclusive_time":0,"entries":2}]}]},{"inclusive_time":1,"id":"719","highest_child_id":2942,"first_entry_time":44961,"exclusive_time":1,"entries":1,"allocations":[{"id":"720","count":1}]}],"allocations":[{"id":"27","count":3},{"id":"53","count":1}]}]}]}]}],"allocations":[{"id":"27","count":1}]}]},{"inclusive_time":13,"id":"721","highest_child_id":2951,"first_entry_time":44965,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":0,"id":"722","highest_child_id":2944,"first_entry_time":44966,"exclusive_time":0,"entries":1},{"inclusive_time":5,"id":"747","highest_child_id":2948,"first_entry_time":44968,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"722","highest_child_id":2946,"first_entry_time":44969,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"748","highest_child_id":2947,"first_entry_time":44971,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"719","highest_child_id":2948,"first_entry_time":44972,"exclusive_time":1,"entries":1,"allocations":[{"id":"720","count":1}]}]},{"inclusive_time":3,"id":"749","highest_child_id":2951,"first_entry_time":44975,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"748","highest_child_id":2950,"first_entry_time":44976,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"722","highest_child_id":2951,"first_entry_time":44977,"exclusive_time":0,"entries":1}]}]}]},{"inclusive_time":0,"id":"748","highest_child_id":2952,"first_entry_time":44980,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"722","highest_child_id":2953,"first_entry_time":44981,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"762","highest_child_id":2954,"first_entry_time":44983,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"719","highest_child_id":2955,"first_entry_time":44985,"exclusive_time":1,"entries":1,"allocations":[{"id":"720","count":1}]}],"allocations":[{"id":"25","count":1}]}]},{"inclusive_time":2,"id":"721","highest_child_id":2957,"first_entry_time":44987,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"722","highest_child_id":2957,"first_entry_time":44988,"exclusive_time":0,"entries":1}]},{"inclusive_time":144,"id":"731","highest_child_id":3002,"first_entry_time":45027,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":142,"id":"732","highest_child_id":3002,"first_entry_time":45029,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":0,"id":"287","highest_child_id":2960,"first_entry_time":45031,"exclusive_time":0,"entries":1},{"inclusive_time":137,"id":"734","highest_child_id":3002,"first_entry_time":45034,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"286","highest_child_id":2962,"first_entry_time":45035,"exclusive_time":0,"entries":1},{"inclusive_time":133,"id":"735","highest_child_id":3002,"first_entry_time":45037,"exclusive_time":35,"entries":1,"callees":[{"inclusive_time":73,"id":"680","highest_child_id":2992,"first_entry_time":45044,"exclusive_time":5,"entries":2,"callees":[{"inclusive_time":41,"id":"754","highest_child_id":2980,"first_entry_time":45046,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"755","highest_child_id":2966,"first_entry_time":45048,"exclusive_time":0,"entries":1},{"inclusive_time":38,"id":"756","highest_child_id":2980,"first_entry_time":45050,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":7,"id":"757","highest_child_id":2971,"first_entry_time":45051,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":6,"id":"714","highest_child_id":2971,"first_entry_time":45053,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"715","highest_child_id":2970,"first_entry_time":45055,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"716","highest_child_id":2971,"first_entry_time":45057,"exclusive_time":1,"entries":1,"allocations":[{"id":"717","count":1}]}]}]},{"inclusive_time":25,"id":"758","highest_child_id":2979,"first_entry_time":45060,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":23,"id":"759","highest_child_id":2979,"first_entry_time":45062,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"760","highest_child_id":2974,"first_entry_time":45065,"exclusive_time":0,"entries":1},{"inclusive_time":17,"id":"730","highest_child_id":2979,"first_entry_time":45067,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":16,"id":"690","highest_child_id":2979,"first_entry_time":45068,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":11,"id":"691","highest_child_id":2979,"first_entry_time":45072,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":1,"id":"692","highest_child_id":2978,"first_entry_time":45078,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"693","highest_child_id":2979,"first_entry_time":45080,"exclusive_time":0,"entries":2}]}]}]}]}],"allocations":[{"id":"10","count":1}]},{"inclusive_time":1,"id":"719","highest_child_id":2980,"first_entry_time":45086,"exclusive_time":1,"entries":1,"allocations":[{"id":"720","count":1}]}]}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":3,"id":"721","highest_child_id":2982,"first_entry_time":45088,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":1,"id":"722","highest_child_id":2982,"first_entry_time":45090,"exclusive_time":0,"entries":2}]},{"inclusive_time":23,"id":"807","highest_child_id":2992,"first_entry_time":45100,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":2,"id":"545","highest_child_id":2985,"first_entry_time":45101,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"531","highest_child_id":2985,"first_entry_time":45103,"exclusive_time":0,"entries":1}]},{"inclusive_time":1,"id":"738","highest_child_id":2986,"first_entry_time":45105,"exclusive_time":1,"entries":1},{"inclusive_time":3,"id":"780","highest_child_id":2988,"first_entry_time":45108,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"714","highest_child_id":2988,"first_entry_time":45109,"exclusive_time":1,"entries":1}]},{"inclusive_time":8,"id":"758","highest_child_id":2991,"first_entry_time":45113,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":5,"id":"817","highest_child_id":2991,"first_entry_time":45115,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"760","highest_child_id":2991,"first_entry_time":45119,"exclusive_time":0,"entries":1}]}],"allocations":[{"id":"10","count":1}]},{"inclusive_time":1,"id":"719","highest_child_id":2992,"first_entry_time":45122,"exclusive_time":1,"entries":1,"allocations":[{"id":"720","count":1}]}],"allocations":[{"id":"27","count":1}]}]},{"inclusive_time":0,"id":"722","highest_child_id":2993,"first_entry_time":45092,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"748","highest_child_id":2994,"first_entry_time":45094,"exclusive_time":0,"entries":4},{"inclusive_time":15,"id":"761","highest_child_id":2998,"first_entry_time":45129,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":12,"id":"762","highest_child_id":2998,"first_entry_time":45131,"exclusive_time":8,"entries":2,"callees":[{"inclusive_time":4,"id":"763","highest_child_id":2998,"first_entry_time":45136,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":1,"id":"718","highest_child_id":2998,"first_entry_time":45138,"exclusive_time":0,"entries":2}]}]}]},{"inclusive_time":1,"id":"714","highest_child_id":2999,"first_entry_time":45146,"exclusive_time":1,"entries":1},{"inclusive_time":5,"id":"839","highest_child_id":3001,"first_entry_time":45162,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"760","highest_child_id":3001,"first_entry_time":45166,"exclusive_time":0,"entries":1}]},{"inclusive_time":1,"id":"719","highest_child_id":3002,"first_entry_time":45169,"exclusive_time":1,"entries":1,"allocations":[{"id":"720","count":1}]}],"allocations":[{"id":"10","count":4},{"id":"25","count":2}]}]}],"allocations":[{"id":"27","count":1}]}]}]},{"inclusive_time":1,"id":"748","highest_child_id":3003,"first_entry_time":44991,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"722","highest_child_id":3004,"first_entry_time":44992,"exclusive_time":1,"entries":4},{"inclusive_time":1,"id":"762","highest_child_id":3005,"first_entry_time":44994,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"719","highest_child_id":3006,"first_entry_time":44996,"exclusive_time":1,"entries":2,"allocations":[{"id":"720","count":2}]}],"allocations":[{"id":"25","count":2}]}]},{"inclusive_time":7,"id":"472","highest_child_id":3007,"first_entry_time":44998,"exclusive_time":7,"entries":2,"allocations":[{"id":"10","count":2},{"id":"222","count":2}]}],"allocations":[{"id":"6","count":2},{"id":"25","count":2}]}]},{"inclusive_time":2,"id":"748","highest_child_id":3008,"first_entry_time":39929,"exclusive_time":1,"entries":6},{"inclusive_time":3,"id":"722","highest_child_id":3009,"first_entry_time":39931,"exclusive_time":1,"entries":12},{"inclusive_time":2,"id":"762","highest_child_id":3010,"first_entry_time":39948,"exclusive_time":2,"entries":3},{"inclusive_time":2,"id":"719","highest_child_id":3011,"first_entry_time":44335,"exclusive_time":1,"entries":3,"allocations":[{"id":"720","count":3}]}],"allocations":[{"id":"25","count":3}]},{"inclusive_time":3,"id":"722","highest_child_id":3012,"first_entry_time":44337,"exclusive_time":1,"entries":9},{"inclusive_time":20,"id":"818","highest_child_id":3014,"first_entry_time":44340,"exclusive_time":17,"entries":3,"callees":[{"inclusive_time":3,"id":"575","highest_child_id":3014,"first_entry_time":44342,"exclusive_time":2,"entries":6}],"allocations":[{"id":"10","count":3},{"id":"27","count":6}]},{"inclusive_time":1,"id":"748","highest_child_id":3015,"first_entry_time":44347,"exclusive_time":0,"entries":3},{"inclusive_time":8,"id":"819","highest_child_id":3017,"first_entry_time":44349,"exclusive_time":7,"entries":3,"callees":[{"inclusive_time":1,"id":"760","highest_child_id":3017,"first_entry_time":44351,"exclusive_time":1,"entries":3}]},{"inclusive_time":15,"id":"789","highest_child_id":3020,"first_entry_time":44354,"exclusive_time":8,"entries":3,"callees":[{"inclusive_time":6,"id":"694","highest_child_id":3020,"first_entry_time":44356,"exclusive_time":4,"entries":3,"callees":[{"inclusive_time":2,"id":"696","highest_child_id":3020,"first_entry_time":44358,"exclusive_time":1,"entries":3}],"allocations":[{"id":"695","count":3}]}],"allocations":[{"id":"172","count":3},{"id":"6","count":3},{"id":"26","count":3},{"id":"10","count":3}]},{"inclusive_time":10,"id":"714","highest_child_id":3023,"first_entry_time":44361,"exclusive_time":6,"entries":3,"callees":[{"inclusive_time":1,"id":"715","highest_child_id":3022,"first_entry_time":44363,"exclusive_time":1,"entries":2},{"inclusive_time":2,"id":"716","highest_child_id":3023,"first_entry_time":44365,"exclusive_time":1,"entries":2,"allocations":[{"id":"717","count":2}]}]},{"inclusive_time":1,"id":"820","highest_child_id":3024,"first_entry_time":44368,"exclusive_time":1,"entries":3},{"inclusive_time":37,"id":"835","highest_child_id":3028,"first_entry_time":44388,"exclusive_time":31,"entries":2,"callees":[{"inclusive_time":1,"id":"760","highest_child_id":3026,"first_entry_time":44391,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"836","highest_child_id":3027,"first_entry_time":44399,"exclusive_time":1,"entries":2},{"inclusive_time":3,"id":"837","highest_child_id":3028,"first_entry_time":44418,"exclusive_time":3,"entries":2,"allocations":[{"id":"18","count":4}]}]},{"inclusive_time":4,"id":"840","highest_child_id":3030,"first_entry_time":44433,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"760","highest_child_id":3030,"first_entry_time":44435,"exclusive_time":1,"entries":1}]},{"inclusive_time":13,"id":"762","highest_child_id":3033,"first_entry_time":44438,"exclusive_time":7,"entries":3,"callees":[{"inclusive_time":5,"id":"763","highest_child_id":3033,"first_entry_time":44440,"exclusive_time":4,"entries":3,"callees":[{"inclusive_time":1,"id":"718","highest_child_id":3033,"first_entry_time":44442,"exclusive_time":0,"entries":3}]}]},{"inclusive_time":1,"id":"821","highest_child_id":3034,"first_entry_time":44445,"exclusive_time":1,"entries":3},{"inclusive_time":11,"id":"472","highest_child_id":3036,"first_entry_time":44447,"exclusive_time":10,"entries":3,"callees":[{"inclusive_time":0,"id":"261","highest_child_id":3036,"first_entry_time":44453,"exclusive_time":0,"entries":1}],"allocations":[{"id":"10","count":3},{"id":"222","count":3},{"id":"27","count":1}]},{"inclusive_time":4,"id":"841","highest_child_id":3038,"first_entry_time":44474,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"760","highest_child_id":3038,"first_entry_time":44477,"exclusive_time":1,"entries":1}]},{"inclusive_time":1,"id":"822","highest_child_id":3039,"first_entry_time":44480,"exclusive_time":1,"entries":3},{"inclusive_time":2,"id":"823","highest_child_id":3040,"first_entry_time":44482,"exclusive_time":1,"entries":3},{"inclusive_time":2,"id":"824","highest_child_id":3041,"first_entry_time":44484,"exclusive_time":1,"entries":6},{"inclusive_time":1,"id":"572","highest_child_id":3042,"first_entry_time":44486,"exclusive_time":1,"entries":3},{"inclusive_time":2,"id":"633","highest_child_id":3043,"first_entry_time":44488,"exclusive_time":1,"entries":4},{"inclusive_time":48,"id":"825","highest_child_id":3051,"first_entry_time":44490,"exclusive_time":9,"entries":7,"callees":[{"inclusive_time":39,"id":"826","highest_child_id":3051,"first_entry_time":44492,"exclusive_time":19,"entries":7,"callees":[{"inclusive_time":9,"id":"827","highest_child_id":3047,"first_entry_time":44494,"exclusive_time":7,"entries":3,"callees":[{"inclusive_time":1,"id":"760","highest_child_id":3047,"first_entry_time":44496,"exclusive_time":1,"entries":3}]},{"inclusive_time":5,"id":"842","highest_child_id":3049,"first_entry_time":44546,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"760","highest_child_id":3049,"first_entry_time":44549,"exclusive_time":1,"entries":1}]},{"inclusive_time":6,"id":"828","highest_child_id":3051,"first_entry_time":44556,"exclusive_time":4,"entries":3,"callees":[{"inclusive_time":1,"id":"760","highest_child_id":3051,"first_entry_time":44558,"exclusive_time":1,"entries":3}]}]}],"allocations":[{"id":"10","count":7}]},{"inclusive_time":1,"id":"618","highest_child_id":3052,"first_entry_time":44501,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"476","highest_child_id":3053,"first_entry_time":44503,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"713","highest_child_id":3054,"first_entry_time":44505,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"843","highest_child_id":3055,"first_entry_time":44520,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"621","highest_child_id":3056,"first_entry_time":44526,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"751","highest_child_id":3057,"first_entry_time":44528,"exclusive_time":1,"entries":1},{"inclusive_time":20,"id":"790","highest_child_id":3064,"first_entry_time":44561,"exclusive_time":14,"entries":3,"callees":[{"inclusive_time":1,"id":"791","highest_child_id":3059,"first_entry_time":44562,"exclusive_time":1,"entries":3},{"inclusive_time":1,"id":"792","highest_child_id":3060,"first_entry_time":44564,"exclusive_time":0,"entries":3},{"inclusive_time":1,"id":"793","highest_child_id":3061,"first_entry_time":44565,"exclusive_time":0,"entries":3},{"inclusive_time":1,"id":"794","highest_child_id":3062,"first_entry_time":44567,"exclusive_time":1,"entries":3},{"inclusive_time":1,"id":"795","highest_child_id":3063,"first_entry_time":44569,"exclusive_time":0,"entries":3},{"inclusive_time":1,"id":"796","highest_child_id":3064,"first_entry_time":44570,"exclusive_time":1,"entries":3}]},{"inclusive_time":25,"id":"801","highest_child_id":3071,"first_entry_time":44572,"exclusive_time":19,"entries":3,"callees":[{"inclusive_time":1,"id":"791","highest_child_id":3066,"first_entry_time":44574,"exclusive_time":0,"entries":3},{"inclusive_time":1,"id":"792","highest_child_id":3067,"first_entry_time":44576,"exclusive_time":0,"entries":3},{"inclusive_time":1,"id":"794","highest_child_id":3068,"first_entry_time":44578,"exclusive_time":1,"entries":3},{"inclusive_time":1,"id":"802","highest_child_id":3069,"first_entry_time":44580,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"692","highest_child_id":3070,"first_entry_time":44582,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"804","highest_child_id":3071,"first_entry_time":44584,"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":2,"id":"829","highest_child_id":3072,"first_entry_time":44587,"exclusive_time":2,"entries":3,"allocations":[{"id":"6","count":3}]},{"inclusive_time":11,"id":"472","highest_child_id":3073,"first_entry_time":44593,"exclusive_time":10,"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":2,"id":"575","highest_child_id":3074,"first_entry_time":44596,"exclusive_time":2,"entries":3},{"inclusive_time":2,"id":"719","highest_child_id":3075,"first_entry_time":44599,"exclusive_time":2,"entries":3,"allocations":[{"id":"720","count":3}]}],"allocations":[{"id":"2","count":3},{"id":"27","count":6}]}]},{"inclusive_time":1,"id":"589","highest_child_id":3076,"first_entry_time":44602,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"587","highest_child_id":3077,"first_entry_time":44604,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"582","highest_child_id":3078,"first_entry_time":44605,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"590","highest_child_id":3079,"first_entry_time":44607,"exclusive_time":1,"entries":1},{"inclusive_time":4,"id":"224","highest_child_id":3080,"first_entry_time":44609,"exclusive_time":3,"entries":2,"allocations":[{"id":"10","count":2},{"id":"6","count":2},{"id":"225","count":2}]},{"inclusive_time":2,"id":"519","highest_child_id":3081,"first_entry_time":44614,"exclusive_time":2,"entries":2,"allocations":[{"id":"10","count":2},{"id":"6","count":2},{"id":"520","count":2}]},{"inclusive_time":1,"id":"268","highest_child_id":3082,"first_entry_time":44617,"exclusive_time":1,"entries":2},{"inclusive_time":2,"id":"551","highest_child_id":3083,"first_entry_time":45261,"exclusive_time":1,"entries":3},{"inclusive_time":1,"id":"844","highest_child_id":3084,"first_entry_time":45272,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"585","highest_child_id":3085,"first_entry_time":45275,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"845","highest_child_id":3086,"first_entry_time":45591,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"846","highest_child_id":3087,"first_entry_time":45602,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"847","highest_child_id":3088,"first_entry_time":45614,"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":1420,"id":"848","highest_child_id":3182,"first_entry_time":45642,"exclusive_time":13,"entries":1,"callees":[{"inclusive_time":1407,"id":"849","highest_child_id":3182,"first_entry_time":45655,"exclusive_time":45,"entries":1,"callees":[{"inclusive_time":1357,"id":"850","highest_child_id":3180,"first_entry_time":45669,"exclusive_time":79,"entries":1,"callees":[{"inclusive_time":1,"id":"851","highest_child_id":3092,"first_entry_time":45676,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"852","highest_child_id":3093,"first_entry_time":45685,"exclusive_time":1,"entries":4},{"inclusive_time":320,"id":"853","highest_child_id":3113,"first_entry_time":45718,"exclusive_time":93,"entries":1,"callees":[{"inclusive_time":99,"id":"854","highest_child_id":3100,"first_entry_time":45730,"exclusive_time":14,"entries":1,"callees":[{"inclusive_time":85,"id":"855","highest_child_id":3100,"first_entry_time":45741,"exclusive_time":4,"entries":4,"callees":[{"inclusive_time":81,"id":"690","highest_child_id":3100,"first_entry_time":45743,"exclusive_time":3,"entries":4,"callees":[{"inclusive_time":77,"id":"691","highest_child_id":3100,"first_entry_time":45745,"exclusive_time":73,"entries":4,"callees":[{"inclusive_time":2,"id":"692","highest_child_id":3099,"first_entry_time":45765,"exclusive_time":1,"entries":4},{"inclusive_time":1,"id":"693","highest_child_id":3100,"first_entry_time":45826,"exclusive_time":1,"entries":2}],"allocations":[{"id":"28","count":4}]}]}]}],"allocations":[{"id":"25","count":1}]},{"inclusive_time":2,"id":"856","highest_child_id":3101,"first_entry_time":45842,"exclusive_time":2,"entries":1,"allocations":[{"id":"25","count":1}]},{"inclusive_time":118,"id":"857","highest_child_id":3110,"first_entry_time":45868,"exclusive_time":25,"entries":4,"callees":[{"inclusive_time":12,"id":"472","highest_child_id":3104,"first_entry_time":45872,"exclusive_time":11,"entries":4,"callees":[{"inclusive_time":0,"id":"261","highest_child_id":3104,"first_entry_time":45995,"exclusive_time":0,"entries":1}],"allocations":[{"id":"10","count":4},{"id":"222","count":4},{"id":"27","count":1}]},{"inclusive_time":81,"id":"730","highest_child_id":3109,"first_entry_time":45905,"exclusive_time":7,"entries":9,"callees":[{"inclusive_time":74,"id":"690","highest_child_id":3109,"first_entry_time":45906,"exclusive_time":6,"entries":9,"callees":[{"inclusive_time":67,"id":"691","highest_child_id":3109,"first_entry_time":45911,"exclusive_time":62,"entries":7,"callees":[{"inclusive_time":3,"id":"692","highest_child_id":3108,"first_entry_time":45916,"exclusive_time":1,"entries":7},{"inclusive_time":3,"id":"693","highest_child_id":3109,"first_entry_time":45919,"exclusive_time":1,"entries":13}],"allocations":[{"id":"28","count":7}]}]}]},{"inclusive_time":1,"id":"718","highest_child_id":3110,"first_entry_time":46002,"exclusive_time":0,"entries":1}],"allocations":[{"id":"26","count":8},{"id":"25","count":8}]},{"inclusive_time":3,"id":"858","highest_child_id":3111,"first_entry_time":45884,"exclusive_time":3,"entries":4,"allocations":[{"id":"28","count":2}]},{"inclusive_time":1,"id":"859","highest_child_id":3112,"first_entry_time":45892,"exclusive_time":1,"entries":4},{"inclusive_time":3,"id":"860","highest_child_id":3113,"first_entry_time":45900,"exclusive_time":2,"entries":4}],"allocations":[{"id":"25","count":1},{"id":"28","count":2}]},{"inclusive_time":954,"id":"861","highest_child_id":3180,"first_entry_time":46072,"exclusive_time":325,"entries":1,"callees":[{"inclusive_time":1,"id":"682","highest_child_id":3115,"first_entry_time":46074,"exclusive_time":1,"entries":1},{"inclusive_time":11,"id":"855","highest_child_id":3119,"first_entry_time":46077,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":9,"id":"690","highest_child_id":3119,"first_entry_time":46078,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":7,"id":"691","highest_child_id":3119,"first_entry_time":46080,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":1,"id":"692","highest_child_id":3119,"first_entry_time":46085,"exclusive_time":1,"entries":1}],"allocations":[{"id":"28","count":1}]}]}]},{"inclusive_time":24,"id":"862","highest_child_id":3123,"first_entry_time":46101,"exclusive_time":18,"entries":1,"callees":[{"inclusive_time":3,"id":"863","highest_child_id":3121,"first_entry_time":46110,"exclusive_time":2,"entries":4,"allocations":[{"id":"28","count":3}]},{"inclusive_time":1,"id":"760","highest_child_id":3122,"first_entry_time":46113,"exclusive_time":0,"entries":4},{"inclusive_time":2,"id":"860","highest_child_id":3123,"first_entry_time":46115,"exclusive_time":2,"entries":4}],"allocations":[{"id":"25","count":1},{"id":"28","count":3}]},{"inclusive_time":179,"id":"864","highest_child_id":3142,"first_entry_time":46229,"exclusive_time":119,"entries":1,"callees":[{"inclusive_time":5,"id":"865","highest_child_id":3125,"first_entry_time":46239,"exclusive_time":3,"entries":8,"allocations":[{"id":"28","count":4}]},{"inclusive_time":34,"id":"866","highest_child_id":3130,"first_entry_time":46266,"exclusive_time":29,"entries":4,"callees":[{"inclusive_time":1,"id":"788","highest_child_id":3127,"first_entry_time":46268,"exclusive_time":1,"entries":4},{"inclusive_time":1,"id":"867","highest_child_id":3128,"first_entry_time":46275,"exclusive_time":1,"entries":4},{"inclusive_time":1,"id":"868","highest_child_id":3129,"first_entry_time":46283,"exclusive_time":1,"entries":4},{"inclusive_time":1,"id":"869","highest_child_id":3130,"first_entry_time":46290,"exclusive_time":1,"entries":4}],"allocations":[{"id":"25","count":4}]},{"inclusive_time":1,"id":"870","highest_child_id":3131,"first_entry_time":46311,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"871","highest_child_id":3132,"first_entry_time":46320,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"872","highest_child_id":3133,"first_entry_time":46335,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"873","highest_child_id":3134,"first_entry_time":46344,"exclusive_time":2,"entries":1},{"inclusive_time":8,"id":"729","highest_child_id":3135,"first_entry_time":46348,"exclusive_time":5,"entries":22},{"inclusive_time":1,"id":"874","highest_child_id":3136,"first_entry_time":46365,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"875","highest_child_id":3137,"first_entry_time":46375,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"847","highest_child_id":3138,"first_entry_time":46384,"exclusive_time":1,"entries":1},{"inclusive_time":3,"id":"837","highest_child_id":3139,"first_entry_time":46386,"exclusive_time":3,"entries":3,"allocations":[{"id":"18","count":6}]},{"inclusive_time":1,"id":"876","highest_child_id":3140,"first_entry_time":46397,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"845","highest_child_id":3141,"first_entry_time":46401,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"844","highest_child_id":3142,"first_entry_time":46405,"exclusive_time":1,"entries":1}],"allocations":[{"id":"28","count":11},{"id":"25","count":1}]},{"inclusive_time":24,"id":"877","highest_child_id":3144,"first_entry_time":46424,"exclusive_time":20,"entries":9,"callees":[{"inclusive_time":5,"id":"693","highest_child_id":3144,"first_entry_time":46934,"exclusive_time":2,"entries":14}]},{"inclusive_time":7,"id":"878","highest_child_id":3146,"first_entry_time":46439,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":2,"id":"729","highest_child_id":3146,"first_entry_time":46442,"exclusive_time":1,"entries":4}],"allocations":[{"id":"25","count":1}]},{"inclusive_time":2,"id":"879","highest_child_id":3147,"first_entry_time":46470,"exclusive_time":1,"entries":1},{"inclusive_time":350,"id":"880","highest_child_id":3169,"first_entry_time":46576,"exclusive_time":295,"entries":4,"callees":[{"inclusive_time":2,"id":"788","highest_child_id":3149,"first_entry_time":46578,"exclusive_time":1,"entries":4},{"inclusive_time":1,"id":"867","highest_child_id":3150,"first_entry_time":46580,"exclusive_time":0,"entries":4},{"inclusive_time":2,"id":"881","highest_child_id":3151,"first_entry_time":46587,"exclusive_time":1,"entries":4},{"inclusive_time":1,"id":"868","highest_child_id":3152,"first_entry_time":46589,"exclusive_time":0,"entries":4},{"inclusive_time":1,"id":"882","highest_child_id":3153,"first_entry_time":46596,"exclusive_time":1,"entries":4},{"inclusive_time":1,"id":"883","highest_child_id":3154,"first_entry_time":46603,"exclusive_time":1,"entries":4},{"inclusive_time":2,"id":"884","highest_child_id":3155,"first_entry_time":46611,"exclusive_time":1,"entries":4},{"inclusive_time":22,"id":"729","highest_child_id":3156,"first_entry_time":46613,"exclusive_time":10,"entries":73},{"inclusive_time":2,"id":"885","highest_child_id":3157,"first_entry_time":46620,"exclusive_time":1,"entries":4},{"inclusive_time":1,"id":"886","highest_child_id":3158,"first_entry_time":46630,"exclusive_time":1,"entries":4},{"inclusive_time":1,"id":"887","highest_child_id":3159,"first_entry_time":46639,"exclusive_time":1,"entries":4},{"inclusive_time":2,"id":"888","highest_child_id":3160,"first_entry_time":46647,"exclusive_time":1,"entries":4},{"inclusive_time":18,"id":"889","highest_child_id":3161,"first_entry_time":46656,"exclusive_time":9,"entries":55},{"inclusive_time":1,"id":"890","highest_child_id":3162,"first_entry_time":46663,"exclusive_time":1,"entries":4},{"inclusive_time":2,"id":"891","highest_child_id":3163,"first_entry_time":46671,"exclusive_time":1,"entries":4},{"inclusive_time":2,"id":"892","highest_child_id":3164,"first_entry_time":46684,"exclusive_time":1,"entries":8},{"inclusive_time":2,"id":"869","highest_child_id":3165,"first_entry_time":46691,"exclusive_time":1,"entries":4},{"inclusive_time":14,"id":"893","highest_child_id":3166,"first_entry_time":46713,"exclusive_time":10,"entries":26,"allocations":[{"id":"53","count":2}]},{"inclusive_time":2,"id":"837","highest_child_id":3167,"first_entry_time":46741,"exclusive_time":2,"entries":1,"allocations":[{"id":"18","count":2}]},{"inclusive_time":1,"id":"894","highest_child_id":3168,"first_entry_time":46757,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"895","highest_child_id":3169,"first_entry_time":46766,"exclusive_time":1,"entries":1}],"allocations":[{"id":"28","count":17},{"id":"25","count":12}]},{"inclusive_time":11,"id":"896","highest_child_id":3172,"first_entry_time":46951,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":1,"id":"897","highest_child_id":3171,"first_entry_time":46958,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"860","highest_child_id":3172,"first_entry_time":46961,"exclusive_time":1,"entries":1}]},{"inclusive_time":10,"id":"898","highest_child_id":3175,"first_entry_time":46974,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":1,"id":"899","highest_child_id":3174,"first_entry_time":46981,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"860","highest_child_id":3175,"first_entry_time":46983,"exclusive_time":1,"entries":1}]},{"inclusive_time":3,"id":"900","highest_child_id":3177,"first_entry_time":46998,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"872","highest_child_id":3177,"first_entry_time":47000,"exclusive_time":1,"entries":1}]},{"inclusive_time":1,"id":"860","highest_child_id":3178,"first_entry_time":47004,"exclusive_time":1,"entries":1},{"inclusive_time":3,"id":"901","highest_child_id":3180,"first_entry_time":47017,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"860","highest_child_id":3180,"first_entry_time":47019,"exclusive_time":1,"entries":1}]}],"allocations":[{"id":"27","count":1},{"id":"25","count":1}]}],"allocations":[{"id":"25","count":1}]},{"inclusive_time":1,"id":"902","highest_child_id":3181,"first_entry_time":47032,"exclusive_time":1,"entries":1},{"inclusive_time":3,"id":"903","highest_child_id":3182,"first_entry_time":47058,"exclusive_time":2,"entries":1}]}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":3,"id":"904","highest_child_id":3183,"first_entry_time":47078,"exclusive_time":3,"entries":1,"allocations":[{"id":"6","count":1}]}]}]}]},{"inclusive_time":1,"id":"905","highest_child_id":3184,"first_entry_time":47090,"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":"906","highest_child_id":3185,"first_entry_time":47102,"exclusive_time":2,"entries":1,"allocations":[{"id":"907","count":1}]},{"inclusive_time":739,"id":"908","highest_child_id":3230,"first_entry_time":47117,"exclusive_time":19,"entries":1,"callees":[{"inclusive_time":720,"id":"909","highest_child_id":3230,"first_entry_time":47137,"exclusive_time":19,"entries":1,"callees":[{"inclusive_time":700,"id":"910","highest_child_id":3230,"first_entry_time":47156,"exclusive_time":28,"entries":1,"callees":[{"inclusive_time":13,"id":"9","highest_child_id":3190,"first_entry_time":47160,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":2,"id":"20","highest_child_id":3190,"first_entry_time":47171,"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":658,"id":"911","highest_child_id":3230,"first_entry_time":47198,"exclusive_time":103,"entries":1,"callees":[{"inclusive_time":8,"id":"52","highest_child_id":3192,"first_entry_time":47204,"exclusive_time":8,"entries":1,"allocations":[{"id":"53","count":1}]},{"inclusive_time":119,"id":"912","highest_child_id":3202,"first_entry_time":47231,"exclusive_time":24,"entries":1,"callees":[{"inclusive_time":1,"id":"46","highest_child_id":3194,"first_entry_time":47233,"exclusive_time":0,"entries":1,"allocations":[{"id":"47","count":1}]},{"inclusive_time":92,"id":"9","highest_child_id":3201,"first_entry_time":47237,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":79,"id":"24","highest_child_id":3200,"first_entry_time":47240,"exclusive_time":61,"entries":1,"callees":[{"inclusive_time":1,"id":"29","highest_child_id":3197,"first_entry_time":47259,"exclusive_time":1,"entries":3},{"inclusive_time":1,"id":"30","highest_child_id":3198,"first_entry_time":47262,"exclusive_time":1,"entries":3},{"inclusive_time":2,"id":"17","highest_child_id":3199,"first_entry_time":47265,"exclusive_time":1,"entries":3,"allocations":[{"id":"18","count":3}]},{"inclusive_time":15,"id":"34","highest_child_id":3200,"first_entry_time":47289,"exclusive_time":14,"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":1,"id":"20","highest_child_id":3201,"first_entry_time":47327,"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":2,"id":"913","highest_child_id":3202,"first_entry_time":47348,"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":"914","highest_child_id":3203,"first_entry_time":47408,"exclusive_time":2,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":422,"id":"915","highest_child_id":3228,"first_entry_time":47428,"exclusive_time":34,"entries":1,"callees":[{"inclusive_time":1,"id":"46","highest_child_id":3205,"first_entry_time":47431,"exclusive_time":0,"entries":1,"allocations":[{"id":"47","count":1}]},{"inclusive_time":169,"id":"9","highest_child_id":3212,"first_entry_time":47435,"exclusive_time":16,"entries":1,"callees":[{"inclusive_time":151,"id":"24","highest_child_id":3211,"first_entry_time":47438,"exclusive_time":109,"entries":1,"callees":[{"inclusive_time":2,"id":"29","highest_child_id":3208,"first_entry_time":47445,"exclusive_time":0,"entries":8},{"inclusive_time":3,"id":"30","highest_child_id":3209,"first_entry_time":47446,"exclusive_time":1,"entries":8},{"inclusive_time":3,"id":"17","highest_child_id":3210,"first_entry_time":47448,"exclusive_time":2,"entries":8,"allocations":[{"id":"18","count":8}]},{"inclusive_time":39,"id":"34","highest_child_id":3211,"first_entry_time":47511,"exclusive_time":36,"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":1,"id":"20","highest_child_id":3212,"first_entry_time":47602,"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":217,"id":"916","highest_child_id":3228,"first_entry_time":47633,"exclusive_time":132,"entries":1,"callees":[{"inclusive_time":28,"id":"917","highest_child_id":3226,"first_entry_time":47655,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":2,"id":"67","highest_child_id":3215,"first_entry_time":47662,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"68","highest_child_id":3216,"first_entry_time":47665,"exclusive_time":0,"entries":2},{"inclusive_time":15,"id":"69","highest_child_id":3226,"first_entry_time":47667,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":0,"id":"70","highest_child_id":3218,"first_entry_time":47668,"exclusive_time":0,"entries":2},{"inclusive_time":0,"id":"30","highest_child_id":3219,"first_entry_time":47669,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"71","highest_child_id":3220,"first_entry_time":47672,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"72","highest_child_id":3222,"first_entry_time":47673,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"73","highest_child_id":3222,"first_entry_time":47674,"exclusive_time":0,"entries":1}]},{"inclusive_time":1,"id":"74","highest_child_id":3224,"first_entry_time":47676,"exclusive_time":0,"entries":1,"callees":[{"inclusive_time":0,"id":"73","highest_child_id":3224,"first_entry_time":47677,"exclusive_time":0,"entries":1}]},{"inclusive_time":0,"id":"123","highest_child_id":3225,"first_entry_time":47679,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"75","highest_child_id":3226,"first_entry_time":47680,"exclusive_time":0,"entries":1}]}],"allocations":[{"id":"6","count":1},{"id":"918","count":1}]},{"inclusive_time":54,"id":"919","highest_child_id":3227,"first_entry_time":47719,"exclusive_time":54,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":1,"id":"128","highest_child_id":3228,"first_entry_time":47848,"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":3229,"first_entry_time":47852,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"68","highest_child_id":3230,"first_entry_time":47856,"exclusive_time":0,"entries":1}],"allocations":[{"id":"16","count":1},{"id":"53","count":1}]}],"allocations":[{"id":"8","count":3}]}]}],"allocations":[{"id":"2","count":1},{"id":"3","count":1}]},{"inclusive_time":1,"id":"67","highest_child_id":3231,"first_entry_time":47858,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"68","highest_child_id":3232,"first_entry_time":47861,"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":0,"id":"67","highest_child_id":3233,"first_entry_time":47862,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"68","highest_child_id":3234,"first_entry_time":47864,"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":159,"id":"910","highest_child_id":3258,"first_entry_time":47866,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":17,"id":"9","highest_child_id":3237,"first_entry_time":47870,"exclusive_time":15,"entries":1,"callees":[{"inclusive_time":1,"id":"20","highest_child_id":3237,"first_entry_time":47884,"exclusive_time":1,"entries":1}],"allocations":[{"id":"2","count":2},{"id":"10","count":2},{"id":"6","count":1}]},{"inclusive_time":136,"id":"911","highest_child_id":3258,"first_entry_time":47889,"exclusive_time":26,"entries":1,"callees":[{"inclusive_time":7,"id":"52","highest_child_id":3239,"first_entry_time":47892,"exclusive_time":7,"entries":1,"allocations":[{"id":"53","count":1}]},{"inclusive_time":87,"id":"920","highest_child_id":3251,"first_entry_time":47918,"exclusive_time":24,"entries":1,"callees":[{"inclusive_time":0,"id":"46","highest_child_id":3241,"first_entry_time":47920,"exclusive_time":0,"entries":1,"allocations":[{"id":"47","count":1}]},{"inclusive_time":52,"id":"9","highest_child_id":3248,"first_entry_time":47924,"exclusive_time":12,"entries":1,"callees":[{"inclusive_time":38,"id":"24","highest_child_id":3247,"first_entry_time":47927,"exclusive_time":28,"entries":1,"callees":[{"inclusive_time":1,"id":"121","highest_child_id":3244,"first_entry_time":47934,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"30","highest_child_id":3245,"first_entry_time":47936,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"17","highest_child_id":3246,"first_entry_time":47939,"exclusive_time":1,"entries":2,"allocations":[{"id":"18","count":2}]},{"inclusive_time":7,"id":"34","highest_child_id":3247,"first_entry_time":47953,"exclusive_time":6,"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":3248,"first_entry_time":47975,"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":10,"id":"921","highest_child_id":3251,"first_entry_time":47995,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":1,"id":"67","highest_child_id":3250,"first_entry_time":48001,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"68","highest_child_id":3251,"first_entry_time":48005,"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":"914","highest_child_id":3252,"first_entry_time":48007,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":14,"id":"916","highest_child_id":3257,"first_entry_time":48010,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":5,"id":"917","highest_child_id":3255,"first_entry_time":48014,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":0,"id":"68","highest_child_id":3255,"first_entry_time":48018,"exclusive_time":0,"entries":2}],"allocations":[{"id":"6","count":1},{"id":"918","count":1}]},{"inclusive_time":2,"id":"919","highest_child_id":3256,"first_entry_time":48020,"exclusive_time":2,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":0,"id":"128","highest_child_id":3257,"first_entry_time":48023,"exclusive_time":0,"entries":1,"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"57","count":1},{"id":"6","count":1}]},{"inclusive_time":0,"id":"68","highest_child_id":3258,"first_entry_time":48025,"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":3259,"first_entry_time":48027,"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