Skip to content

Instantly share code, notes, and snippets.

@gfldex
Created January 14, 2016 13:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gfldex/e6f32ca9851f1456376b to your computer and use it in GitHub Desktop.
Save gfldex/e6f32ca9851f1456376b to your computer and use it in GitHub Desktop.
This file has been truncated, but you can view the full file.
<!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.5/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/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>{{OverheadTime}}ms</strong> were spent on garbage collection
and dynamic optimization (that's <strong>{{OverheadTimePercent}}%</strong>).
</p>
<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>
</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 == 'InclusiveTimePercent' ? !reverse : true; predicate = 'InclusiveTimePercent';">Inclusive Time</a></th>
<th><a href="" ng-click="reverse = predicate == 'ExclusiveTimePercent' ? !reverse : true; predicate = 'ExclusiveTimePercent';">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 == 'TimePercent' ? !reverse : true; predicate = 'TimePercent';">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" 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" 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 == '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><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.4.2/angular.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular-ui-bootstrap/0.13.4/ui-bootstrap-tpls.js"></script>
<script>
var rawData = JSON.parse('[{"spesh_time":75647,"total_time":168374389,"call_graph":{"exclusive_time":10,"id":36461728,"line":1298,"name":"","inclusive_time":152388462,"file":"gen/moar/stage2/NQPHLL.nqp","entries":1,"callees":[{"exclusive_time":23,"id":84948480,"line":1,"name":"<unit-outer>","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"}],"inclusive_time":152388452,"file":"hibbified-249.p6","entries":1,"callees":[{"exclusive_time":112,"id":92650768,"line":1,"name":"<unit>","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"}],"inclusive_time":152388428,"file":"hibbified-249.p6","entries":1,"callees":[{"exclusive_time":546,"id":48805504,"line":26121,"name":"MAIN_HELPER","allocations":[{"count":3,"id":44229096,"type":"Scalar"},{"count":1,"id":44228976,"type":"Array"}],"inclusive_time":152388315,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":8,"id":52311584,"line":1621,"name":"","allocations":[{"count":3,"id":44228712,"type":"Sub"},{"count":6,"id":33960376,"type":"BOOTCode"},{"count":3,"id":44229240,"type":"Block"}],"inclusive_time":8,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":6},{"exclusive_time":171,"id":48790608,"line":25672,"name":"callframe","inclusive_time":501,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":48477184,"line":8439,"name":"infix:<+>","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":100,"id":50635888,"line":25631,"name":"new","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":3,"id":44229096,"type":"Scalar"},{"count":1,"id":73527848,"type":"CallFrame"},{"count":2,"id":33960448,"type":"BOOTContext"},{"count":1,"id":44228952,"type":"Map"}],"inclusive_time":327,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":48477184,"line":8439,"name":"infix:<+>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":159,"id":48252528,"line":2179,"name":"postfix:<-->","inclusive_time":220,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":53,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":56,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":2,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":2,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]},{"exclusive_time":4,"id":48475360,"line":8414,"name":"postfix:<-->","inclusive_time":4,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":1,"id":48475360,"line":8414,"name":"postfix:<-->","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":3},{"exclusive_time":2,"id":50636496,"line":-1,"name":"","inclusive_time":2,"file":"/usr/local/src/rakudo/install/share/perl6/runtime/CORE.setting.moarvm","entries":1},{"exclusive_time":1,"id":52321616,"line":3013,"name":"","allocations":[{"count":1,"id":44228640,"type":"Hash"}],"inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]}]},{"exclusive_time":1,"id":49200400,"line":2339,"name":"<anon>","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":35,"id":48358320,"line":6139,"name":"postcircumfix:<{ }>","inclusive_time":720,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":176,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":3,"id":33961312,"type":"NQPArray"},{"count":2,"id":33960328,"type":"BOOTHash"}],"inclusive_time":179,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":2,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":2,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]},{"exclusive_time":16,"id":48358624,"line":6142,"name":"postcircumfix:<{ }>","inclusive_time":505,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":60,"id":49189456,"line":2092,"name":"AT-KEY","inclusive_time":489,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List"}],"inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1},{"exclusive_time":197,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":406,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":178,"id":52313712,"line":1708,"name":"","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":17,"id":33961312,"type":"NQPArray"},{"count":4,"id":33961360,"type":"NQPArrayIter"},{"count":6,"id":33960328,"type":"BOOTHash"},{"count":6,"id":33960832,"type":"BOOTIntArray"},{"count":3,"id":33960232,"type":"BOOTInt"}],"inclusive_time":206,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":28,"id":52314016,"line":1738,"name":"is_narrower","inclusive_time":28,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":6}]},{"exclusive_time":2,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":2,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]},{"exclusive_time":19,"id":49988064,"line":17329,"name":"AT-KEY","inclusive_time":20,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49564288,"line":10026,"name":"Str","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]}]}]}]},{"exclusive_time":1,"id":49806576,"line":14088,"name":"sink","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":2},{"exclusive_time":29,"id":39748256,"line":556,"name":"DYNAMIC","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"}],"inclusive_time":736,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":21,"id":39748560,"line":558,"name":"","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":706,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":40,"id":39748864,"line":564,"name":"","allocations":[{"count":1,"id":44229048,"type":"StrLexRef"}],"inclusive_time":684,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":38,"id":49240832,"line":3355,"name":"INITIALIZE-DYNAMIC","inclusive_time":644,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":8,"id":44299920,"line":56,"name":"language_version","inclusive_time":10,"file":"src/Perl6/Compiler.nqp","entries":1,"callees":[{"exclusive_time":1,"id":36458080,"line":1184,"name":"config","inclusive_time":1,"file":"gen/moar/stage2/NQPHLL.nqp","entries":1}]},{"exclusive_time":10,"id":49032288,"line":35845,"name":"","allocations":[{"count":1,"id":44228976,"type":"Array"}],"inclusive_time":595,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":8,"id":48358320,"line":6139,"name":"postcircumfix:<{ }>","inclusive_time":584,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":137,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"},{"count":1,"id":33960520,"type":"CallCapture"}],"inclusive_time":548,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":42,"id":52294864,"line":920,"name":"is_bindable","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"}],"inclusive_time":410,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":143,"id":52295168,"line":926,"name":"","inclusive_time":368,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":213,"id":52292736,"line":606,"name":"bind","inclusive_time":224,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":10,"id":52290912,"line":168,"name":"bind_one_param","allocations":[{"count":6,"id":33960376,"type":"BOOTCode"}],"inclusive_time":10,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":3}]}]}]}]},{"exclusive_time":21,"id":48359232,"line":6148,"name":"postcircumfix:<{ }>","inclusive_time":27,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":6,"id":49995664,"line":17444,"name":"BIND-KEY","inclusive_time":6,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]}]}]}]}]}]}]},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":88,"id":48805808,"line":26127,"name":"process-cmd-args","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":2,"id":44228976,"type":"Array"},{"count":1,"id":44228640,"type":"Hash"},{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":525,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":21,"id":49859472,"line":15771,"name":"STORE","inclusive_time":264,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":115,"id":49860080,"line":15779,"name":"STORE-ITERABLE","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":1,"id":68411984,"type":"IterationBuffer"},{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":242,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":46,"id":49800800,"line":13990,"name":"iterator","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"}],"inclusive_time":106,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":2,"id":49794416,"line":13900,"name":"ensure-allocated","allocations":[{"count":1,"id":44229096,"type":"Scalar"},{"count":1,"id":68411984,"type":"IterationBuffer"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":49072720,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":2,"id":49801104,"line":13992,"name":"","allocations":[{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":40,"id":49801712,"line":14004,"name":"new","allocations":[{"count":1,"id":67906128,"type":"<anon|352550624>"}],"inclusive_time":53,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":9,"id":49877712,"line":16147,"name":"of","inclusive_time":10,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52651072,"line":3777,"name":"of","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","entries":1}]},{"exclusive_time":2,"id":49801408,"line":13998,"name":"BUILD","allocations":[{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":1,"id":49882880,"line":15464,"name":"new","allocations":[{"count":1,"id":68412368,"type":"Array::ArrayReificationTarget"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":17,"id":49802624,"line":14020,"name":"push-until-lazy","allocations":[{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":18,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":48509712,"line":8704,"name":"prefix:<!>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":0,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":40,"id":48618240,"line":14541,"name":"infix:<,>","inclusive_time":74,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":22,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":25,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":3,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":3,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]},{"exclusive_time":8,"id":48619152,"line":14547,"name":"infix:<,>","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":1,"id":44228664,"type":"List"},{"count":1,"id":68411984,"type":"IterationBuffer"},{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":8,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":1,"id":49806576,"line":14088,"name":"sink","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":19,"id":49097344,"line":1155,"name":"Numeric","inclusive_time":92,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List"}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1},{"exclusive_time":13,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":14,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":1,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]},{"exclusive_time":47,"id":49795632,"line":13911,"name":"Numeric","inclusive_time":58,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":7,"id":49797760,"line":13932,"name":"elems","inclusive_time":10,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":2,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":2}]}]}]},{"exclusive_time":4,"id":48619152,"line":14547,"name":"infix:<,>","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":1,"id":44228664,"type":"List"},{"count":1,"id":68411984,"type":"IterationBuffer"},{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":4,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":51,"id":49821776,"line":14252,"name":"Capture","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":1,"id":44229192,"type":"Capture"},{"count":1,"id":68411984,"type":"IterationBuffer"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":123,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":3,"id":49823600,"line":14286,"name":"is-lazy","allocations":[{"count":2,"id":44229096,"type":"Scalar"}],"inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":24,"id":49822080,"line":14262,"name":"","allocations":[{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":68,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":19,"id":49170912,"line":1907,"name":"push","inclusive_time":43,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":2,"id":44228664,"type":"List"}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":2},{"exclusive_time":19,"id":52314624,"line":2048,"name":"","allocations":[{"count":4,"id":33960376,"type":"BOOTCode"},{"count":4,"id":33961312,"type":"NQPArray"},{"count":2,"id":33960328,"type":"BOOTHash"}],"inclusive_time":21,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":2,"callees":[{"exclusive_time":1,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":2}]},{"exclusive_time":1,"id":49692880,"line":12283,"name":"push","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":2}]},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":49072720,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":17,"id":52295472,"line":929,"name":"bind_cap_to_sig","allocations":[{"count":1,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960448,"type":"BOOTContext"}],"inclusive_time":47,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":7,"id":52293040,"line":911,"name":"make_vm_capture","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"}],"inclusive_time":10,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":2,"id":52293344,"line":912,"name":"vm_capture","inclusive_time":2,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]},{"exclusive_time":9,"id":52292736,"line":606,"name":"bind","inclusive_time":19,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":9,"id":52290912,"line":168,"name":"bind_one_param","allocations":[{"count":4,"id":33960376,"type":"BOOTCode"},{"count":2,"id":44229096,"type":"Scalar"}],"inclusive_time":9,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":2}]}]},{"exclusive_time":2,"id":52305504,"line":1335,"name":"","allocations":[{"count":1,"id":44228568,"type":"Proxy"}],"inclusive_time":2,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1},{"exclusive_time":15,"id":49679808,"line":12129,"name":"new","inclusive_time":248,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":38,"id":49081536,"line":956,"name":"bless","allocations":[{"count":1,"id":44228640,"type":"Hash"},{"count":1,"id":44229192,"type":"Capture"}],"inclusive_time":233,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":17,"id":49793200,"line":13860,"name":"from-slurpy-flat","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":2,"id":68411984,"type":"IterationBuffer"},{"count":1,"id":44228976,"type":"Array"},{"count":1,"id":65481320,"type":"List::Reifier"}],"inclusive_time":23,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List"}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1},{"exclusive_time":4,"id":49861296,"line":15806,"name":"reification-target","inclusive_time":6,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":49882880,"line":15464,"name":"new","allocations":[{"count":1,"id":68412368,"type":"Array::ArrayReificationTarget"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":53,"id":49081840,"line":960,"name":"BUILDALL","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"}],"inclusive_time":171,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":3,"id":52582064,"line":1475,"name":"BUILDALLPLAN","inclusive_time":3,"file":"gen/moar/m-Metamodel.nqp","entries":1},{"exclusive_time":74,"id":49082144,"line":967,"name":"","allocations":[{"count":33,"id":33960376,"type":"BOOTCode"},{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":114,"file":"gen/moar/m-CORE.setting","entries":3,"callees":[{"exclusive_time":0,"id":49991712,"line":17376,"name":"FLATTENABLE_LIST","allocations":[{"count":1,"id":33960304,"type":"BOOTArray"}],"inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":3,"id":49992016,"line":17377,"name":"FLATTENABLE_HASH","inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49072720,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":23,"id":49680416,"line":12133,"name":"BUILD","allocations":[{"count":1,"id":44229096,"type":"Scalar"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":35,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":8,"id":49797760,"line":13932,"name":"elems","allocations":[{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":10,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":49794416,"line":13900,"name":"ensure-allocated","allocations":[{"count":1,"id":44229096,"type":"Scalar"},{"count":1,"id":68411984,"type":"IterationBuffer"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":49072720,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":0,"id":49072720,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":49805664,"line":14083,"name":"list","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]}]}]}]}]},{"exclusive_time":76,"id":48169344,"line":6999,"name":"cando","allocations":[{"count":1,"id":44229096,"type":"Scalar"},{"count":1,"id":44228712,"type":"Sub"},{"count":1,"id":33960304,"type":"BOOTArray"}],"inclusive_time":122,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":52311584,"line":1621,"name":"","allocations":[{"count":1,"id":44228712,"type":"Sub"},{"count":1,"id":33960376,"type":"BOOTCode"}],"inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1},{"exclusive_time":0,"id":52311888,"line":1666,"name":"","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1},{"exclusive_time":0,"id":49689840,"line":12248,"name":"FLATTENABLE_LIST","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":1,"id":49690144,"line":12249,"name":"FLATTENABLE_HASH","allocations":[{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":7,"id":48169648,"line":7009,"name":"checker","inclusive_time":41,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":15,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":3,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":34,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":18,"id":52313712,"line":1708,"name":"","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":7,"id":33961312,"type":"NQPArray"},{"count":2,"id":33961360,"type":"NQPArrayIter"},{"count":2,"id":33960328,"type":"BOOTHash"},{"count":2,"id":33960832,"type":"BOOTIntArray"},{"count":1,"id":33960232,"type":"BOOTInt"}],"inclusive_time":18,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]},{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List"}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]}]},{"exclusive_time":3,"id":49859472,"line":15771,"name":"STORE","inclusive_time":118,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":18,"id":49860080,"line":15779,"name":"STORE-ITERABLE","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":1,"id":68411984,"type":"IterationBuffer"},{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":114,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":11,"id":49800800,"line":13990,"name":"iterator","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"}],"inclusive_time":51,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":2,"id":49801104,"line":13992,"name":"","allocations":[{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":31,"id":49801712,"line":14004,"name":"new","allocations":[{"count":1,"id":67906128,"type":"<anon|352550624>"}],"inclusive_time":34,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49052656,"line":495,"name":"of","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":2,"id":49801408,"line":13998,"name":"BUILD","allocations":[{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":1,"id":49882880,"line":15464,"name":"new","allocations":[{"count":1,"id":68412368,"type":"Array::ArrayReificationTarget"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":39,"id":49802624,"line":14020,"name":"push-until-lazy","allocations":[{"count":2,"id":44229096,"type":"Scalar"}],"inclusive_time":42,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":2,"id":49883184,"line":15471,"name":"push","allocations":[{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":48509712,"line":8704,"name":"prefix:<!>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":0,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":42,"id":49126528,"line":1418,"name":"dispatch:<.=>","allocations":[{"count":2,"id":44229096,"type":"Scalar"},{"count":1,"id":44229192,"type":"Capture"}],"inclusive_time":5451,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":49689840,"line":12248,"name":"FLATTENABLE_LIST","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":49690144,"line":12249,"name":"FLATTENABLE_HASH","allocations":[{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":49564592,"line":10027,"name":"Stringy","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":184,"id":49338112,"line":4386,"name":"grep","inclusive_time":994,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List"}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1},{"exclusive_time":28,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":80,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":38,"id":52313712,"line":1708,"name":"","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":12,"id":33961312,"type":"NQPArray"},{"count":3,"id":33961360,"type":"NQPArrayIter"},{"count":4,"id":33960328,"type":"BOOTHash"},{"count":4,"id":33960832,"type":"BOOTIntArray"},{"count":2,"id":33960232,"type":"BOOTInt"}],"inclusive_time":49,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":11,"id":52314016,"line":1738,"name":"is_narrower","inclusive_time":11,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":2}]},{"exclusive_time":2,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":2,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]},{"exclusive_time":102,"id":49338720,"line":4390,"name":"grep","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":44229096,"type":"Scalar"},{"count":1,"id":44228640,"type":"Hash"}],"inclusive_time":729,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":40,"id":48450736,"line":7971,"name":"infix:<==>","inclusive_time":235,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":55,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":56,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":1,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]},{"exclusive_time":22,"id":48451344,"line":7973,"name":"infix:<==>","inclusive_time":138,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":38,"id":49097344,"line":1155,"name":"Numeric","inclusive_time":113,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List"}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1},{"exclusive_time":13,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":56,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":32,"id":52313712,"line":1708,"name":"","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":12,"id":33961312,"type":"NQPArray"},{"count":3,"id":33961360,"type":"NQPArrayIter"},{"count":4,"id":33960328,"type":"BOOTHash"},{"count":4,"id":33960832,"type":"BOOTIntArray"},{"count":2,"id":33960232,"type":"BOOTInt"}],"inclusive_time":42,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":9,"id":52314016,"line":1738,"name":"is_narrower","inclusive_time":9,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":2,"entries":2}]},{"exclusive_time":1,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]},{"exclusive_time":16,"id":49974688,"line":17179,"name":"Numeric","inclusive_time":17,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":49974080,"line":17175,"name":"elems","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":0,"id":49449984,"line":7729,"name":"Numeric","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":1,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":17,"id":52649552,"line":3739,"name":"accepts_type","inclusive_time":29,"file":"gen/moar/m-Metamodel.nqp","entries":2,"callees":[{"exclusive_time":9,"id":52648032,"line":3687,"name":"base_type","inclusive_time":9,"file":"gen/moar/m-Metamodel.nqp","entries":2,"callees":[{"exclusive_time":0,"id":52646816,"line":3682,"name":"check_instantiated","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","entries":2}]},{"exclusive_time":1,"id":52648336,"line":3692,"name":"definite","inclusive_time":1,"file":"gen/moar/m-Metamodel.nqp","entries":2,"callees":[{"exclusive_time":0,"id":52646816,"line":3682,"name":"check_instantiated","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","entries":2}]}]},{"exclusive_time":218,"id":49324736,"line":4256,"name":"grep-callable","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":361,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":28,"id":49411680,"line":6408,"name":"count","inclusive_time":29,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":50093552,"line":18706,"name":"count","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":0,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":41,"id":49126832,"line":1423,"name":"dispatch:<.?>","allocations":[{"count":1,"id":44229096,"type":"Scalar"},{"count":1,"id":44229192,"type":"Capture"}],"inclusive_time":56,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":49689840,"line":12248,"name":"FLATTENABLE_LIST","allocations":[{"count":1,"id":33960304,"type":"BOOTArray"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":49690144,"line":12249,"name":"FLATTENABLE_HASH","allocations":[{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":49564592,"line":10027,"name":"Stringy","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":11,"id":49417152,"line":6476,"name":"has-phasers","inclusive_time":12,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":48510016,"line":8705,"name":"prefix:<!>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":1,"id":49325648,"line":4260,"name":"","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":18,"id":49402864,"line":4226,"name":"new","allocations":[{"count":1,"id":67907928,"type":"<anon|165409568>"}],"inclusive_time":52,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":6,"id":49402560,"line":4221,"name":"BUILD","allocations":[{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":33,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":10,"id":49800800,"line":13990,"name":"iterator","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"}],"inclusive_time":27,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":2,"id":49801104,"line":13992,"name":"","allocations":[{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":6,"id":49801712,"line":14004,"name":"new","allocations":[{"count":1,"id":67906128,"type":"<anon|352550624>"}],"inclusive_time":12,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":3,"id":49877712,"line":16147,"name":"of","inclusive_time":4,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52651072,"line":3777,"name":"of","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","entries":1}]},{"exclusive_time":2,"id":49801408,"line":13998,"name":"BUILD","inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1}]}]}]}]},{"exclusive_time":1,"id":49700480,"line":12399,"name":"new","allocations":[{"count":1,"id":67909080,"type":"Seq"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]}]}]},{"exclusive_time":3,"id":49859472,"line":15771,"name":"STORE","inclusive_time":4412,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":72,"id":49860080,"line":15779,"name":"STORE-ITERABLE","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":1,"id":68411984,"type":"IterationBuffer"},{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":4408,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":39,"id":49701088,"line":12407,"name":"iterator","inclusive_time":41,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":1,"id":52616112,"line":2635,"name":"type_check","inclusive_time":1,"file":"gen/moar/m-Metamodel.nqp","entries":1}]},{"exclusive_time":1,"id":49882880,"line":15464,"name":"new","allocations":[{"count":1,"id":68412368,"type":"Array::ArrayReificationTarget"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":32,"id":49213776,"line":2476,"name":"push-until-lazy","allocations":[{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":4293,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49215296,"line":2511,"name":"is-lazy","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":75,"id":49327168,"line":4279,"name":"push-all","allocations":[{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":4260,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":6,"id":49802016,"line":14006,"name":"pull-one","inclusive_time":7,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":1,"id":49802320,"line":14013,"name":"reify-and-pull-one","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":7,"id":39774400,"line":1558,"name":"infix:<=:=>","inclusive_time":28,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":18,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":20,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":1,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]},{"exclusive_time":0,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":75,"id":48817664,"line":26253,"name":"","inclusive_time":4146,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49411984,"line":6410,"name":"signature","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":328,"id":48815536,"line":26228,"name":"has-unexpected-named-arguments","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":1,"id":44229096,"type":"Scalar"},{"count":1,"id":44228976,"type":"Array"},{"count":1,"id":44228640,"type":"Hash"}],"inclusive_time":4069,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":2,"id":50093856,"line":18710,"name":"params","allocations":[{"count":1,"id":44228664,"type":"List"},{"count":1,"id":33961312,"type":"NQPArray"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":2,"id":52309760,"line":1563,"name":"","allocations":[{"count":2,"id":68413016,"type":"WhateverCode"},{"count":2,"id":33960376,"type":"BOOTCode"}],"inclusive_time":2,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":2},{"exclusive_time":16,"id":49338112,"line":4386,"name":"grep","inclusive_time":192,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":1,"id":52321312,"line":3008,"name":"","allocations":[{"count":2,"id":44228664,"type":"List","jit":1}],"inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":2},{"exclusive_time":32,"id":52314624,"line":2048,"name":"","allocations":[{"count":4,"id":33960376,"type":"BOOTCode"},{"count":4,"id":33961312,"type":"NQPArray"},{"count":2,"id":33960328,"type":"BOOTHash"}],"inclusive_time":34,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":2,"callees":[{"exclusive_time":1,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":2}]},{"exclusive_time":22,"id":49338720,"line":4390,"name":"grep","allocations":[{"count":4,"id":33960376,"type":"BOOTCode"},{"count":4,"id":44229096,"type":"Scalar"},{"count":2,"id":44228640,"type":"Hash"}],"inclusive_time":140,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":11,"id":48451344,"line":7973,"name":"infix:<==>","inclusive_time":19,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":4,"id":49974688,"line":17179,"name":"Numeric","inclusive_time":5,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":1,"id":49974080,"line":17175,"name":"elems","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":2}]},{"exclusive_time":0,"id":49449984,"line":7729,"name":"Numeric","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":2},{"exclusive_time":1,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":2}]},{"exclusive_time":7,"id":52649552,"line":3739,"name":"accepts_type","inclusive_time":15,"file":"gen/moar/m-Metamodel.nqp","entries":4,"callees":[{"exclusive_time":3,"id":52648032,"line":3687,"name":"base_type","inclusive_time":4,"file":"gen/moar/m-Metamodel.nqp","entries":4,"callees":[{"exclusive_time":1,"id":52646816,"line":3682,"name":"check_instantiated","inclusive_time":1,"file":"gen/moar/m-Metamodel.nqp","entries":4}]},{"exclusive_time":2,"id":52648336,"line":3692,"name":"definite","inclusive_time":2,"file":"gen/moar/m-Metamodel.nqp","entries":4,"callees":[{"exclusive_time":0,"id":52646816,"line":3682,"name":"check_instantiated","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","entries":4}]}]},{"exclusive_time":21,"id":49324736,"line":4256,"name":"grep-callable","allocations":[{"count":4,"id":33960376,"type":"BOOTCode"},{"count":2,"id":44229096,"type":"Scalar"}],"inclusive_time":82,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":5,"id":49411680,"line":6408,"name":"count","inclusive_time":6,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":1,"id":50093552,"line":18706,"name":"count","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":2}]},{"exclusive_time":0,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":2},{"exclusive_time":6,"id":49126832,"line":1423,"name":"dispatch:<.?>","allocations":[{"count":2,"id":44229096,"type":"Scalar"},{"count":2,"id":44229192,"type":"Capture"}],"inclusive_time":6,"file":"gen/moar/m-CORE.setting","entries":2},{"exclusive_time":1,"id":49325648,"line":4260,"name":"","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":2},{"exclusive_time":4,"id":49402864,"line":4226,"name":"new","allocations":[{"count":2,"id":67907928,"type":"<anon|165409568>"}],"inclusive_time":43,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":6,"id":49402560,"line":4221,"name":"BUILD","allocations":[{"count":2,"id":44229096,"type":"Scalar"}],"inclusive_time":38,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":12,"id":49800800,"line":13990,"name":"iterator","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"}],"inclusive_time":32,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":1,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":2},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2},{"exclusive_time":2,"id":49801104,"line":13992,"name":"","allocations":[{"count":2,"id":44229096,"type":"Scalar"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":2},{"exclusive_time":8,"id":49801712,"line":14004,"name":"new","allocations":[{"count":2,"id":67906128,"type":"<anon|352550624>"}],"inclusive_time":15,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":0,"id":49052656,"line":495,"name":"of","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":3,"id":49801408,"line":13998,"name":"BUILD","allocations":[{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":2},{"exclusive_time":2,"id":49877712,"line":16147,"name":"of","inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52651072,"line":3777,"name":"of","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","entries":1}]}]}]}]}]},{"exclusive_time":2,"id":49700480,"line":12399,"name":"new","allocations":[{"count":2,"id":67909080,"type":"Seq"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":2}]}]}]},{"exclusive_time":2,"id":49859472,"line":15771,"name":"STORE","inclusive_time":147,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":9,"id":49860080,"line":15779,"name":"STORE-ITERABLE","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":1,"id":68411984,"type":"IterationBuffer"},{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":145,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":4,"id":49701088,"line":12407,"name":"iterator","inclusive_time":5,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":1,"id":52616112,"line":2635,"name":"type_check","inclusive_time":1,"file":"gen/moar/m-Metamodel.nqp","entries":1}]},{"exclusive_time":1,"id":49882880,"line":15464,"name":"new","allocations":[{"count":1,"id":68412368,"type":"Array::ArrayReificationTarget"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":3,"id":49213776,"line":2476,"name":"push-until-lazy","allocations":[{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":128,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49215296,"line":2511,"name":"is-lazy","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":37,"id":49327168,"line":4279,"name":"push-all","allocations":[{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":124,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":35,"id":49802016,"line":14006,"name":"pull-one","inclusive_time":37,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":1,"id":49802320,"line":14013,"name":"reify-and-pull-one","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":4,"id":39774400,"line":1558,"name":"infix:<=:=>","inclusive_time":15,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":10,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":10,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]},{"exclusive_time":0,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":14,"id":48815840,"line":26229,"name":"","inclusive_time":33,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":17,"id":50066496,"line":18408,"name":"named","allocations":[{"count":1,"id":44228616,"type":"IntAttrRef"}],"inclusive_time":19,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":48509712,"line":8704,"name":"prefix:<!>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":1,"id":48486608,"line":8561,"name":"infix:<+&>","allocations":[{"count":1,"id":44229024,"type":"Int"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":0,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":0,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":36,"id":49703824,"line":12450,"name":"Bool","inclusive_time":322,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":29,"id":49698960,"line":12379,"name":"cache","allocations":[{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":63,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":4,"id":49701088,"line":12407,"name":"iterator","inclusive_time":5,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":52616112,"line":2635,"name":"type_check","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","entries":1}]},{"exclusive_time":23,"id":49791072,"line":13804,"name":"from-iterator","allocations":[{"count":1,"id":44228664,"type":"List"},{"count":1,"id":68411984,"type":"IterationBuffer"},{"count":1,"id":65481320,"type":"List::Reifier"}],"inclusive_time":28,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":3,"id":49800496,"line":13985,"name":"reification-target","inclusive_time":4,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]}]},{"exclusive_time":75,"id":49794720,"line":13904,"name":"Bool","inclusive_time":222,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":37,"id":49843664,"line":13724,"name":"reify-at-least","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":2,"id":44229096,"type":"Scalar"}],"inclusive_time":136,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":37,"id":49212864,"line":2454,"name":"push-at-least","allocations":[{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":97,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":20,"id":49326256,"line":4266,"name":"push-exactly","allocations":[{"count":2,"id":44229096,"type":"Scalar"}],"inclusive_time":59,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":2,"id":49802016,"line":14006,"name":"pull-one","inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":49802320,"line":14013,"name":"reify-and-pull-one","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":0,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":31,"id":39751296,"line":625,"name":"","inclusive_time":35,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":2,"id":39750688,"line":611,"name":"RETURN-LIST","inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]}]}]}]},{"exclusive_time":0,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":52616112,"line":2635,"name":"type_check","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","entries":1}]},{"exclusive_time":8,"id":48509104,"line":8701,"name":"prefix:<so>","inclusive_time":9,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49476736,"line":8248,"name":"Bool","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]}]}]},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":24,"id":48943520,"line":29503,"name":"METAOP_ZIP","inclusive_time":26,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":52311584,"line":1621,"name":"","allocations":[{"count":1,"id":44229240,"type":"Block"},{"count":1,"id":33960376,"type":"BOOTCode"}],"inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]},{"exclusive_time":2,"id":52311584,"line":1621,"name":"","allocations":[{"count":2,"id":44229240,"spesh":1,"type":"Block"},{"count":2,"id":33960376,"spesh":1,"type":"BOOTCode"}],"inclusive_time":2,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":2},{"exclusive_time":48,"id":49298592,"line":3773,"name":"map","inclusive_time":277,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":2,"id":44228664,"type":"List","jit":2}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":2,"entries":2},{"exclusive_time":42,"id":52314624,"line":2048,"name":"","allocations":[{"count":4,"id":33960376,"type":"BOOTCode"},{"count":4,"id":33961312,"type":"NQPArray"},{"count":2,"id":33960328,"type":"BOOTHash"}],"inclusive_time":44,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":2,"callees":[{"exclusive_time":2,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":2,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":2,"entries":2}]},{"exclusive_time":61,"id":49299808,"line":3779,"name":"map","allocations":[{"count":4,"id":44229096,"type":"Scalar"}],"inclusive_time":184,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":6,"id":49800800,"line":13990,"name":"iterator","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"}],"inclusive_time":17,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":1,"id":49801104,"line":13992,"name":"","allocations":[{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":3,"id":49801712,"line":14004,"name":"new","allocations":[{"count":1,"id":67906128,"type":"<anon|352550624>"}],"inclusive_time":8,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":2,"id":49877712,"line":16147,"name":"of","inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52651072,"line":3777,"name":"of","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","entries":1}]},{"exclusive_time":1,"id":49801408,"line":13998,"name":"BUILD","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":75,"id":49303152,"line":3840,"name":"sequential-map","allocations":[{"count":4,"id":33960376,"type":"BOOTCode"},{"count":6,"id":44229096,"type":"Scalar"}],"inclusive_time":96,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":7,"id":49411680,"line":6408,"name":"count","inclusive_time":8,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":1,"id":50093552,"line":18706,"name":"count","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":2}]},{"exclusive_time":1,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":2},{"exclusive_time":2,"id":49304064,"line":3847,"name":"","inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":2},{"exclusive_time":6,"id":49401344,"line":3827,"name":"new","allocations":[{"count":6,"id":44229096,"type":"Scalar"},{"count":2,"id":67908360,"type":"<anon|159066640>"}],"inclusive_time":6,"file":"gen/moar/m-CORE.setting","entries":2},{"exclusive_time":2,"id":49700480,"line":12399,"name":"new","allocations":[{"count":2,"id":67909080,"type":"Seq"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":2}]},{"exclusive_time":7,"id":49701088,"line":12407,"name":"iterator","inclusive_time":8,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":52616112,"line":2635,"name":"type_check","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","jit_entries":1,"entries":1}]}]}]},{"exclusive_time":22,"id":48621584,"line":14587,"name":"infix:<xx>","allocations":[{"count":1,"id":44228640,"type":"Hash"}],"inclusive_time":235,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":32,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":33,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":1,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]},{"exclusive_time":157,"id":48627360,"line":14638,"name":"infix:<xx>","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"}],"inclusive_time":178,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":3,"id":48627664,"line":14639,"name":"","allocations":[{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":14,"id":49850656,"line":14583,"name":"new","allocations":[{"count":1,"id":67905816,"type":"<anon|371779232>"}],"inclusive_time":17,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":2,"id":49850352,"line":14582,"name":"BUILD","allocations":[{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":1,"id":49700480,"line":12399,"name":"new","allocations":[{"count":1,"id":67909080,"type":"Seq"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":111,"id":48943824,"line":29504,"name":"","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":4,"id":44229096,"type":"Scalar"},{"count":1,"id":44228976,"type":"Array"}],"inclusive_time":1380,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":22,"id":49791680,"line":13831,"name":"from-slurpy-onearg","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":1,"id":44229192,"type":"Capture"},{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":37,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49689840,"line":12248,"name":"FLATTENABLE_LIST","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":49690144,"line":12249,"name":"FLATTENABLE_HASH","allocations":[{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":7,"id":49791376,"line":13817,"name":"from-slurpy","allocations":[{"count":1,"id":44228664,"type":"List"},{"count":1,"id":68411984,"type":"IterationBuffer"},{"count":1,"id":65481320,"type":"List::Reifier"}],"inclusive_time":13,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":4,"id":49800496,"line":13985,"name":"reification-target","inclusive_time":5,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]}]},{"exclusive_time":80,"id":49797760,"line":13932,"name":"elems","allocations":[{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":155,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":22,"id":49845792,"line":13753,"name":"reify-until-lazy","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":2,"id":44229096,"type":"Scalar"}],"inclusive_time":69,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":48509712,"line":8704,"name":"prefix:<!>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":16,"id":49847008,"line":13760,"name":"","allocations":[{"count":4,"id":33960376,"type":"BOOTCode"}],"inclusive_time":46,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":7,"id":49847920,"line":13769,"name":"","allocations":[{"count":2,"id":44229096,"type":"Scalar"}],"inclusive_time":29,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":7,"id":49170912,"line":1907,"name":"push","inclusive_time":21,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":12,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":13,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":1,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":49692880,"line":12283,"name":"push","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":0,"id":49692880,"line":12283,"name":"push","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":0,"id":49072720,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":2}]}]},{"exclusive_time":0,"id":49072720,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":4,"id":49849440,"line":13795,"name":"fully-reified","inclusive_time":4,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":48509712,"line":8704,"name":"prefix:<!>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":2}]}]},{"exclusive_time":0,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":1,"id":52309760,"line":1563,"name":"","allocations":[{"count":1,"id":44229264,"type":"Code"},{"count":1,"id":33960376,"type":"BOOTCode"}],"inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1},{"exclusive_time":33,"id":48944128,"line":29508,"name":"","inclusive_time":959,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":52311584,"line":1621,"name":"","allocations":[{"count":1,"id":44229240,"type":"Block"},{"count":1,"id":33960376,"type":"BOOTCode"}],"inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1},{"exclusive_time":9,"id":49298592,"line":3773,"name":"map","inclusive_time":117,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":18,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":18,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":45,"id":49299808,"line":3779,"name":"map","allocations":[{"count":2,"id":44229096,"type":"Scalar"}],"inclusive_time":88,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":8,"id":49800800,"line":13990,"name":"iterator","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"}],"inclusive_time":20,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":1,"id":49801104,"line":13992,"name":"","allocations":[{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":6,"id":49801712,"line":14004,"name":"new","allocations":[{"count":1,"id":67906128,"type":"<anon|352550624>"}],"inclusive_time":8,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49052656,"line":495,"name":"of","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":1,"id":49801408,"line":13998,"name":"BUILD","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":13,"id":49303152,"line":3840,"name":"sequential-map","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":3,"id":44229096,"type":"Scalar"}],"inclusive_time":23,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":3,"id":49411680,"line":6408,"name":"count","inclusive_time":4,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":50093552,"line":18706,"name":"count","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":0,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":49304064,"line":3847,"name":"","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":2,"id":49401344,"line":3827,"name":"new","allocations":[{"count":3,"id":44229096,"type":"Scalar"},{"count":1,"id":67908360,"type":"<anon|159066640>"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":49700480,"line":12399,"name":"new","allocations":[{"count":1,"id":67909080,"type":"Seq"}],"inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]}]}]},{"exclusive_time":41,"id":49701696,"line":12420,"name":"eager","inclusive_time":806,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":7,"id":49701088,"line":12407,"name":"iterator","inclusive_time":9,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":2,"id":52616112,"line":2635,"name":"type_check","inclusive_time":2,"file":"gen/moar/m-Metamodel.nqp","entries":1}]},{"exclusive_time":3,"id":49791072,"line":13804,"name":"from-iterator","allocations":[{"count":1,"id":44228664,"type":"List"},{"count":1,"id":68411984,"type":"IterationBuffer"},{"count":1,"id":65481320,"type":"List::Reifier"}],"inclusive_time":9,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":4,"id":49800496,"line":13985,"name":"reification-target","inclusive_time":5,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]},{"exclusive_time":40,"id":49821472,"line":14247,"name":"eager","inclusive_time":745,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":28,"id":49848224,"line":13778,"name":"reify-all","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":2,"id":44229096,"type":"Scalar"}],"inclusive_time":705,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":6,"id":49213168,"line":2463,"name":"push-all","allocations":[{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":675,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":21,"id":49212864,"line":2454,"name":"push-at-least","allocations":[{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":668,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":88,"id":49212256,"line":2436,"name":"push-exactly","allocations":[{"count":2,"id":44229096,"type":"Scalar"}],"inclusive_time":646,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":199,"id":49304368,"line":3853,"name":"pull-one","allocations":[{"count":3,"id":33960376,"type":"BOOTCode"},{"count":7,"id":44229096,"type":"Scalar"}],"inclusive_time":519,"file":"gen/moar/m-CORE.setting","entries":3,"callees":[{"exclusive_time":1,"id":48510016,"line":8705,"name":"prefix:<!>","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":3},{"exclusive_time":5,"id":49417456,"line":6478,"name":"phasers","inclusive_time":5,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]},{"exclusive_time":4,"id":48405440,"line":7763,"name":"prefix:<+>","inclusive_time":14,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":3,"id":49795632,"line":13911,"name":"Numeric","inclusive_time":10,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":5,"id":49797760,"line":13932,"name":"elems","inclusive_time":7,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]}]}]},{"exclusive_time":6,"id":49078192,"line":929,"name":"Bool","inclusive_time":31,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":24,"id":49794720,"line":13904,"name":"Bool","inclusive_time":24,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":48508496,"line":8699,"name":"prefix:<so>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":6,"entries":6},{"exclusive_time":6,"id":49802016,"line":14006,"name":"pull-one","inclusive_time":7,"file":"gen/moar/m-CORE.setting","entries":3,"callees":[{"exclusive_time":1,"id":49802320,"line":14013,"name":"reify-and-pull-one","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":7,"id":39774400,"line":1558,"name":"infix:<=:=>","inclusive_time":28,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":19,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":20,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":1,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]},{"exclusive_time":0,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":141,"id":48944432,"line":29508,"name":"","inclusive_time":222,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":50,"id":49701392,"line":12414,"name":"is-lazy","inclusive_time":66,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2},{"exclusive_time":13,"id":49401648,"line":3836,"name":"is-lazy","inclusive_time":14,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":49803232,"line":14034,"name":"is-lazy","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":0,"id":49850960,"line":14584,"name":"is-lazy","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":0,"id":49072720,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":9,"id":49701088,"line":12407,"name":"iterator","inclusive_time":11,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2},{"exclusive_time":2,"id":52616112,"line":2635,"name":"type_check","inclusive_time":2,"file":"gen/moar/m-Metamodel.nqp","entries":2}]},{"exclusive_time":2,"id":49254816,"line":2551,"name":"new","allocations":[{"count":2,"id":67908600,"type":"Rakudo::Internals::WhateverIterator"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":2},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":2},{"exclusive_time":0,"id":49072720,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":4,"id":49416544,"line":6469,"name":"fire_phasers","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"}],"inclusive_time":5,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":48510016,"line":8705,"name":"prefix:<!>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":4,"id":39774400,"line":1558,"name":"infix:<=:=>","inclusive_time":17,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":11,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":12,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":1,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":1,"id":48509712,"line":8704,"name":"prefix:<!>","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":3},{"exclusive_time":7,"id":49170912,"line":1907,"name":"push","inclusive_time":19,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":9,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":10,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":49692880,"line":12283,"name":"push","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":0,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":2},{"exclusive_time":0,"id":49692880,"line":12283,"name":"push","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":0,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":49072720,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":52616112,"line":2635,"name":"type_check","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","entries":1},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":49072720,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]}]}]},{"exclusive_time":4,"id":49821472,"line":14247,"name":"eager","inclusive_time":8,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":3,"id":49848224,"line":13778,"name":"reify-all","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"}],"inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]},{"exclusive_time":0,"id":49072720,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":3,"id":49859472,"line":15771,"name":"STORE","inclusive_time":61,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":11,"id":49860080,"line":15779,"name":"STORE-ITERABLE","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":1,"id":68411984,"type":"IterationBuffer"},{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":58,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":7,"id":49800800,"line":13990,"name":"iterator","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"}],"inclusive_time":18,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":2,"id":49801104,"line":13992,"name":"","allocations":[{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":5,"id":49801712,"line":14004,"name":"new","allocations":[{"count":1,"id":67906128,"type":"<anon|352550624>"}],"inclusive_time":8,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49052656,"line":495,"name":"of","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":2,"id":49801408,"line":13998,"name":"BUILD","inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":1,"id":49882880,"line":15464,"name":"new","allocations":[{"count":1,"id":68412368,"type":"Array::ArrayReificationTarget"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":15,"id":49802624,"line":14020,"name":"push-until-lazy","allocations":[{"count":2,"id":44229096,"type":"Scalar"}],"inclusive_time":25,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":4,"id":49845792,"line":13753,"name":"reify-until-lazy","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"}],"inclusive_time":4,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]},{"exclusive_time":2,"id":49883184,"line":15471,"name":"push","allocations":[{"count":2,"id":44229096,"type":"Scalar"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":2},{"exclusive_time":0,"id":48509712,"line":8704,"name":"prefix:<!>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":3,"id":49849440,"line":13795,"name":"fully-reified","inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":48509712,"line":8704,"name":"prefix:<!>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]}]},{"exclusive_time":0,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]},{"exclusive_time":2,"id":52311584,"line":1621,"name":"","allocations":[{"count":2,"id":44229240,"type":"Block"},{"count":2,"id":33960376,"type":"BOOTCode"}],"inclusive_time":2,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":2},{"exclusive_time":25,"id":48602736,"line":12668,"name":"GATHER","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"}],"inclusive_time":36,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":2,"id":48603040,"line":12669,"name":"","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":5,"id":48603648,"line":12676,"name":"new","allocations":[{"count":1,"id":67906656,"type":"<anon|340889968>"}],"inclusive_time":7,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":2,"id":52311584,"line":1621,"name":"","allocations":[{"count":2,"id":44229240,"spesh":2,"type":"Block"},{"count":2,"id":33960376,"spesh":2,"type":"BOOTCode"}],"inclusive_time":2,"spesh_entries":2,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":2}]},{"exclusive_time":1,"id":49700480,"line":12399,"name":"new","allocations":[{"count":1,"id":67909080,"type":"Seq"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":5,"id":49291904,"line":3690,"name":"lazy-if","allocations":[{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":5,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":39,"id":49988368,"line":17336,"name":"STORE","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":666,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":5,"id":49701088,"line":12407,"name":"iterator","inclusive_time":6,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":1,"id":52616112,"line":2635,"name":"type_check","inclusive_time":1,"file":"gen/moar/m-Metamodel.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":45,"id":48605472,"line":12707,"name":"pull-one","allocations":[{"count":2,"id":44229096,"type":"Scalar"},{"count":1,"id":68411984,"type":"IterationBuffer"}],"inclusive_time":619,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49072720,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":18,"id":48604560,"line":12698,"name":"","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":572,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":35,"id":48945344,"line":29518,"name":"","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"}],"inclusive_time":552,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":65,"id":48945648,"line":29519,"name":"","allocations":[{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":517,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":52311584,"line":1621,"name":"","allocations":[{"count":1,"id":44229240,"spesh":1,"type":"Block"},{"count":1,"id":33960376,"spesh":1,"type":"BOOTCode"}],"inclusive_time":1,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1},{"exclusive_time":8,"id":49299808,"line":3779,"name":"map","allocations":[{"count":2,"id":44229096,"type":"Scalar"}],"inclusive_time":53,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":6,"id":49800800,"line":13990,"name":"iterator","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"}],"inclusive_time":18,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":1,"id":49801104,"line":13992,"name":"","allocations":[{"count":1,"id":44229096,"type":"Scalar","jit":1}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":4,"id":49801712,"line":14004,"name":"new","allocations":[{"count":1,"id":67906128,"type":"<anon|352550624>"}],"inclusive_time":10,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":3,"id":49877712,"line":16147,"name":"of","inclusive_time":4,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52651072,"line":3777,"name":"of","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","entries":1}]},{"exclusive_time":1,"id":49801408,"line":13998,"name":"BUILD","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":15,"id":49303152,"line":3840,"name":"sequential-map","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":3,"id":44229096,"type":"Scalar"}],"inclusive_time":26,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":4,"id":49411680,"line":6408,"name":"count","inclusive_time":4,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":50093552,"line":18706,"name":"count","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":1,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":49304064,"line":3847,"name":"","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":3,"id":49401344,"line":3827,"name":"new","allocations":[{"count":3,"id":44229096,"type":"Scalar"},{"count":1,"id":67908360,"type":"<anon|159066640>"}],"inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":49700480,"line":12399,"name":"new","allocations":[{"count":1,"id":67909080,"type":"Seq"}],"inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":3,"id":49701088,"line":12407,"name":"iterator","inclusive_time":4,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":52616112,"line":2635,"name":"type_check","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":4,"id":49791072,"line":13804,"name":"from-iterator","allocations":[{"count":1,"id":44228664,"type":"List"},{"count":1,"id":68411984,"type":"IterationBuffer"},{"count":1,"id":65481320,"type":"List::Reifier"}],"inclusive_time":8,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":3,"id":49800496,"line":13985,"name":"reification-target","inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]},{"exclusive_time":4,"id":49821472,"line":14247,"name":"eager","inclusive_time":295,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":8,"id":49848224,"line":13778,"name":"reify-all","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":2,"id":44229096,"type":"Scalar"}],"inclusive_time":291,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":4,"id":49213168,"line":2463,"name":"push-all","allocations":[{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":281,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":3,"id":49212864,"line":2454,"name":"push-at-least","allocations":[{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":277,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":6,"id":49212256,"line":2436,"name":"push-exactly","allocations":[{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":273,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":42,"id":49304368,"line":3853,"name":"pull-one","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":4,"id":44229096,"type":"Scalar"}],"inclusive_time":267,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":48510016,"line":8705,"name":"prefix:<!>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":4,"id":49417456,"line":6478,"name":"phasers","inclusive_time":4,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]},{"exclusive_time":3,"id":48405440,"line":7763,"name":"prefix:<+>","inclusive_time":11,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":3,"id":49795632,"line":13911,"name":"Numeric","inclusive_time":8,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":4,"id":49797760,"line":13932,"name":"elems","inclusive_time":4,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]}]}]},{"exclusive_time":5,"id":49078192,"line":929,"name":"Bool","inclusive_time":12,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":5,"id":49794720,"line":13904,"name":"Bool","inclusive_time":6,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":48508496,"line":8699,"name":"prefix:<so>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2},{"exclusive_time":2,"id":49802016,"line":14006,"name":"pull-one","inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":5,"id":39774400,"line":1558,"name":"infix:<=:=>","inclusive_time":24,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":17,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":18,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":32,"id":48945952,"line":29520,"name":"","inclusive_time":165,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":20,"id":49255120,"line":2557,"name":"pull-one","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"}],"inclusive_time":68,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":6,"id":49255728,"line":2561,"name":"","allocations":[{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":48,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":17,"id":49304368,"line":3853,"name":"pull-one","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":5,"id":44229096,"type":"Scalar"}],"inclusive_time":41,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":48510016,"line":8705,"name":"prefix:<!>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":4,"id":49417456,"line":6478,"name":"phasers","inclusive_time":4,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]},{"exclusive_time":1,"id":48405440,"line":7763,"name":"prefix:<+>","inclusive_time":7,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":49795632,"line":13911,"name":"Numeric","inclusive_time":5,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":3,"id":49797760,"line":13932,"name":"elems","inclusive_time":4,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]}]}]},{"exclusive_time":2,"id":49078192,"line":929,"name":"Bool","inclusive_time":7,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":4,"id":49794720,"line":13904,"name":"Bool","inclusive_time":4,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":48508496,"line":8699,"name":"prefix:<so>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2},{"exclusive_time":2,"id":49802016,"line":14006,"name":"pull-one","inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":49802320,"line":14013,"name":"reify-and-pull-one","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":0,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":49072720,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":0,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]},{"exclusive_time":0,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":14,"id":39754640,"line":654,"name":"last","inclusive_time":64,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":8,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":9,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":13,"id":39754944,"line":655,"name":"last","inclusive_time":40,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":24,"id":39750384,"line":603,"name":"THROW-NIL","allocations":[{"count":1,"id":33960568,"type":"BOOTException"}],"inclusive_time":27,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":2,"id":49305888,"line":3899,"name":"","allocations":[{"count":2,"id":44229024,"type":"Int"},{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1}]}]}]}]},{"exclusive_time":4,"id":49416544,"line":6469,"name":"fire_phasers","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"}],"inclusive_time":5,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":48510016,"line":8705,"name":"prefix:<!>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":0,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":48509712,"line":8704,"name":"prefix:<!>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]},{"exclusive_time":0,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":49072720,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":52616112,"line":2635,"name":"type_check","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","jit_entries":1,"entries":1},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":49072720,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":6,"id":49153584,"line":1805,"name":"elems","inclusive_time":37,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":10,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":12,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":1,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]},{"exclusive_time":9,"id":49797760,"line":13932,"name":"elems","allocations":[{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":18,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":3,"id":49845792,"line":13753,"name":"reify-until-lazy","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"}],"inclusive_time":4,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]},{"exclusive_time":0,"id":49072720,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":3,"id":49849440,"line":13795,"name":"fully-reified","inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":48509712,"line":8704,"name":"prefix:<!>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]}]}]},{"exclusive_time":13,"id":48454688,"line":7995,"name":"infix:«<»","inclusive_time":48,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":33,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":34,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":48483568,"line":8526,"name":"infix:«<»","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":1,"id":39754944,"line":655,"name":"last","inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":39750384,"line":603,"name":"THROW-NIL","allocations":[{"count":1,"id":33960568,"type":"BOOTException"}],"inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]}]}]},{"exclusive_time":1,"id":52311584,"line":1621,"name":"","allocations":[{"count":1,"id":44229240,"spesh":1,"type":"Block"},{"count":1,"id":33960376,"spesh":1,"type":"BOOTCode"}],"inclusive_time":1,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]},{"exclusive_time":1,"id":48604864,"line":12700,"name":"","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":0,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]},{"exclusive_time":81,"id":49155408,"line":1813,"name":"keys","inclusive_time":335,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":13,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":73,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":44,"id":52313712,"line":1708,"name":"","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":17,"id":33961312,"type":"NQPArray"},{"count":4,"id":33961360,"type":"NQPArrayIter"},{"count":6,"id":33960328,"type":"BOOTHash"},{"count":6,"id":33960832,"type":"BOOTIntArray"},{"count":3,"id":33960232,"type":"BOOTInt"}],"inclusive_time":59,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":14,"id":52314016,"line":1738,"name":"is_narrower","inclusive_time":14,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":6,"entries":6}]},{"exclusive_time":1,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":150,"id":49980464,"line":17243,"name":"keys","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"}],"inclusive_time":180,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":2,"id":49980768,"line":17244,"name":"","allocations":[{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":21,"id":49253296,"line":2536,"name":"new","allocations":[{"count":1,"id":67905528,"type":"<anon|426299328>"}],"inclusive_time":26,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":4,"id":49252992,"line":2530,"name":"BUILD","allocations":[{"count":1,"id":33960328,"type":"BOOTHash"},{"count":1,"id":33960424,"type":"BOOTIter"}],"inclusive_time":4,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":1,"id":49700480,"line":12399,"name":"new","allocations":[{"count":1,"id":67909080,"type":"Seq"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":71,"id":49705648,"line":12474,"name":"sink","inclusive_time":148,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":3,"id":49701088,"line":12407,"name":"iterator","inclusive_time":4,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":52616112,"line":2635,"name":"type_check","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":40,"id":49306192,"line":3921,"name":"sink-all","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":6,"id":44229096,"type":"Scalar"}],"inclusive_time":73,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":48510016,"line":8705,"name":"prefix:<!>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":4,"id":49417456,"line":6478,"name":"phasers","inclusive_time":4,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]},{"exclusive_time":3,"id":48405440,"line":7763,"name":"prefix:<+>","inclusive_time":12,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":3,"id":49795632,"line":13911,"name":"Numeric","inclusive_time":8,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":5,"id":49797760,"line":13932,"name":"elems","inclusive_time":5,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]}]}]},{"exclusive_time":4,"id":49078192,"line":929,"name":"Bool","inclusive_time":13,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":7,"id":49794720,"line":13904,"name":"Bool","inclusive_time":8,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":48508496,"line":8699,"name":"prefix:<so>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2},{"exclusive_time":1,"id":49981072,"line":17245,"name":"pull-one","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":49072720,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":0,"id":49072720,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":0,"id":48509712,"line":8704,"name":"prefix:<!>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]},{"exclusive_time":2,"id":49883184,"line":15471,"name":"push","allocations":[{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]},{"exclusive_time":0,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]}]},{"exclusive_time":2,"id":49795632,"line":13911,"name":"Numeric","inclusive_time":9,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":6,"id":49797760,"line":13932,"name":"elems","inclusive_time":7,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]}]},{"exclusive_time":4,"id":49147808,"line":1777,"name":"cache","inclusive_time":5,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49805664,"line":14083,"name":"list","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":5,"id":49822384,"line":14273,"name":"FLATTENABLE_LIST","inclusive_time":6,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]},{"exclusive_time":0,"id":49993232,"line":17392,"name":"hash","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":49991712,"line":17376,"name":"FLATTENABLE_LIST","allocations":[{"count":1,"id":33960304,"type":"BOOTArray"}],"inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":49822688,"line":14278,"name":"FLATTENABLE_HASH","allocations":[{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":2,"id":49992016,"line":17377,"name":"FLATTENABLE_HASH","allocations":[{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":73,"id":91759184,"line":72,"name":"MAIN","inclusive_time":152379131,"file":"hibbified-249.p6","entries":1,"callees":[{"exclusive_time":15,"id":48610944,"line":13606,"name":"prefix:<^>","allocations":[{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":345,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49449984,"line":7729,"name":"Numeric","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":8,"id":49079712,"line":941,"name":"new","inclusive_time":328,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":25,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"},{"count":1,"id":33960520,"type":"CallCapture"}],"inclusive_time":183,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":23,"id":52294864,"line":920,"name":"is_bindable","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"}],"inclusive_time":158,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":3,"id":52295168,"line":926,"name":"","inclusive_time":134,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":41,"id":52292736,"line":606,"name":"bind","allocations":[{"count":1,"id":44228640,"type":"Hash"}],"inclusive_time":130,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":57,"id":52290912,"line":168,"name":"bind_one_param","allocations":[{"count":12,"id":33960376,"type":"BOOTCode"},{"count":1,"id":33961456,"type":"str"},{"count":3,"id":44229096,"type":"Scalar"}],"inclusive_time":88,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":6,"callees":[{"exclusive_time":29,"id":52616112,"line":2635,"name":"type_check","allocations":[{"count":2,"id":33961360,"type":"NQPArrayIter"}],"inclusive_time":29,"file":"gen/moar/m-Metamodel.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52544976,"line":161,"name":"pretending_to_be","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","entries":1}]},{"exclusive_time":0,"id":52611248,"line":2516,"name":"archetypes","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","entries":1},{"exclusive_time":1,"id":52538592,"line":88,"name":"generic","inclusive_time":1,"file":"gen/moar/m-Metamodel.nqp","entries":1}]},{"exclusive_time":0,"id":52292432,"line":573,"name":"handle_optional","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]}]}]}]},{"exclusive_time":52,"id":49746080,"line":13100,"name":"new","allocations":[{"count":3,"id":44229096,"type":"Scalar"},{"count":1,"id":65480504,"type":"Range"}],"inclusive_time":136,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":63,"id":48468064,"line":8187,"name":"infix:<==>","inclusive_time":68,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":2,"id":49478864,"line":8273,"name":"Bridge","allocations":[{"count":2,"id":44229000,"type":"Num"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":2},{"exclusive_time":0,"id":49496496,"line":8826,"name":"Bridge","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":2},{"exclusive_time":1,"id":48537680,"line":9200,"name":"infix:<==>","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":2}]},{"exclusive_time":14,"id":49747904,"line":13124,"name":"BUILD","allocations":[{"count":2,"id":44229096,"type":"Scalar"}],"inclusive_time":15,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49079408,"line":937,"name":"defined","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":2}]}]}]}]},{"exclusive_time":1,"id":52311584,"line":1621,"name":"","allocations":[{"count":1,"id":44229240,"spesh":1,"type":"Block"},{"count":1,"id":33960376,"spesh":1,"type":"BOOTCode"}],"inclusive_time":1,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1},{"exclusive_time":9,"id":49298592,"line":3773,"name":"map","inclusive_time":532,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":20,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":20,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":83,"id":49299808,"line":3779,"name":"map","allocations":[{"count":2,"id":44229096,"type":"Scalar"}],"inclusive_time":502,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":189,"id":49750640,"line":13159,"name":"iterator","allocations":[{"count":5,"id":33960376,"type":"BOOTCode"},{"count":3,"id":44228616,"type":"IntAttrRef"},{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":384,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":48510016,"line":8705,"name":"prefix:<!>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":2},{"exclusive_time":1,"id":49752160,"line":13164,"name":"","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":6,"id":48438272,"line":7908,"name":"infix:<+>","inclusive_time":60,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":50,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":53,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":2,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":2,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]},{"exclusive_time":1,"id":48477184,"line":8439,"name":"infix:<+>","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":17,"id":48439184,"line":7912,"name":"infix:<->","inclusive_time":64,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":43,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":45,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":1,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]},{"exclusive_time":1,"id":48477792,"line":8446,"name":"infix:<->","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":18,"id":49752768,"line":13169,"name":"new","allocations":[{"count":1,"id":67906560,"type":"<anon|349030928>"}],"inclusive_time":66,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":3,"id":49752464,"line":13168,"name":"BUILD","inclusive_time":48,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":4,"id":48439184,"line":7912,"name":"infix:<->","inclusive_time":44,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":38,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":39,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]},{"exclusive_time":0,"id":48477792,"line":8446,"name":"infix:<->","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]}]}]}]},{"exclusive_time":21,"id":49303152,"line":3840,"name":"sequential-map","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":3,"id":44229096,"type":"Scalar"}],"inclusive_time":34,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":4,"id":49411680,"line":6408,"name":"count","inclusive_time":6,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":50093552,"line":18706,"name":"count","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":1,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":49304064,"line":3847,"name":"","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":3,"id":49401344,"line":3827,"name":"new","allocations":[{"count":3,"id":44229096,"type":"Scalar"},{"count":1,"id":67908360,"type":"<anon|159066640>"}],"inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":1,"id":49700480,"line":12399,"name":"new","allocations":[{"count":1,"id":67909080,"type":"Seq"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]}]}]},{"exclusive_time":7,"id":49705648,"line":12474,"name":"sink","inclusive_time":152377648,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":8,"id":49701088,"line":12407,"name":"iterator","inclusive_time":10,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":1,"id":52616112,"line":2635,"name":"type_check","inclusive_time":1,"file":"gen/moar/m-Metamodel.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":206,"id":49306192,"line":3921,"name":"sink-all","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":6,"id":44229096,"type":"Scalar"}],"inclusive_time":152377629,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":48510016,"line":8705,"name":"prefix:<!>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":10,"id":49417456,"line":6478,"name":"phasers","allocations":[{"count":2,"id":44229096,"type":"Scalar","jit":2}],"inclusive_time":11,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2,"callees":[{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]},{"exclusive_time":3,"id":48405440,"line":7763,"name":"prefix:<+>","inclusive_time":13,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":3,"id":49795632,"line":13911,"name":"Numeric","inclusive_time":10,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":6,"id":49797760,"line":13932,"name":"elems","inclusive_time":6,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]}]}]},{"exclusive_time":4,"id":49078192,"line":929,"name":"Bool","inclusive_time":11,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":6,"id":49794720,"line":13904,"name":"Bool","inclusive_time":7,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":48508496,"line":8699,"name":"prefix:<so>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":1,"id":49806576,"line":14088,"name":"sink","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":12,"entries":12},{"exclusive_time":27,"id":49753072,"line":13171,"name":"pull-one","allocations":[{"count":10,"id":44228616,"type":"IntAttrRef","jit":9}],"inclusive_time":27,"file":"gen/moar/m-CORE.setting","jit_entries":10,"entries":11},{"exclusive_time":5452,"id":95416944,"line":75,"name":"","allocations":[{"count":20,"id":33960376,"type":"BOOTCode"},{"count":10,"id":73528976,"type":"array[uint8]"},{"count":10,"id":44228976,"type":"Array"},{"count":20,"id":44229096,"type":"Scalar"}],"inclusive_time":152377353,"file":"hibbified-249.p6","entries":10,"callees":[{"exclusive_time":371,"id":98174944,"line":98,"name":"","inclusive_time":6310,"file":"hibbified-249.p6","entries":10,"callees":[{"exclusive_time":199,"id":50648656,"line":26296,"name":"from-posix","allocations":[{"count":10,"id":44229096,"type":"Scalar"},{"count":10,"id":67909248,"type":"Instant"}],"inclusive_time":5939,"file":"gen/moar/m-CORE.setting","entries":10,"callees":[{"exclusive_time":358,"id":49239920,"line":3328,"name":"tai-from-posix","allocations":[{"count":20,"id":44229096,"type":"Scalar"},{"count":20,"id":44229072,"type":"IntLexRef"}],"inclusive_time":1002,"file":"gen/moar/m-CORE.setting","entries":10,"callees":[{"exclusive_time":34,"id":49504400,"line":8939,"name":"floor","allocations":[{"count":10,"id":44229024,"type":"Int"}],"inclusive_time":34,"file":"gen/moar/m-CORE.setting","entries":10},{"exclusive_time":13,"id":48456512,"line":8003,"name":"infix:«>»","inclusive_time":58,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":41,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":42,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":1,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":2,"id":48484784,"line":8540,"name":"infix:«>»","inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":170,"id":48484784,"line":8540,"name":"infix:«>»","inclusive_time":170,"file":"gen/moar/m-CORE.setting","jit_entries":234,"entries":259},{"exclusive_time":25,"id":48438272,"line":7908,"name":"infix:<+>","inclusive_time":252,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":135,"id":52314624,"line":2048,"name":"","allocations":[{"count":4,"id":33960376,"type":"BOOTCode"},{"count":4,"id":33961312,"type":"NQPArray"},{"count":2,"id":33960328,"type":"BOOTHash"}],"inclusive_time":136,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":2,"callees":[{"exclusive_time":1,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":2,"entries":2}]},{"exclusive_time":17,"id":48465936,"line":8173,"name":"infix:<+>","inclusive_time":89,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":1,"id":49496496,"line":8826,"name":"Bridge","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":2},{"exclusive_time":2,"id":49478864,"line":8273,"name":"Bridge","allocations":[{"count":2,"id":44229000,"type":"Num"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":2},{"exclusive_time":26,"id":48438272,"line":7908,"name":"infix:<+>","inclusive_time":67,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":40,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":40,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":1,"id":48531904,"line":9115,"name":"infix:<+>","allocations":[{"count":1,"id":44229000,"type":"Num"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":0,"id":48531904,"line":9115,"name":"infix:<+>","allocations":[{"count":1,"id":44229000,"type":"Num"}],"inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":98,"id":48465936,"line":8173,"name":"infix:<+>","inclusive_time":128,"file":"gen/moar/m-CORE.setting","entries":28,"callees":[{"exclusive_time":2,"id":49496496,"line":8826,"name":"Bridge","inclusive_time":2,"file":"gen/moar/m-CORE.setting","jit_entries":26,"entries":28},{"exclusive_time":11,"id":49478864,"line":8273,"name":"Bridge","allocations":[{"count":28,"id":44229000,"type":"Num","jit":25}],"inclusive_time":11,"file":"gen/moar/m-CORE.setting","jit_entries":25,"entries":28},{"exclusive_time":15,"id":48531904,"line":9115,"name":"infix:<+>","allocations":[{"count":28,"id":44229000,"type":"Num","jit":3}],"inclusive_time":15,"file":"gen/moar/m-CORE.setting","jit_entries":3,"entries":28}]}]},{"exclusive_time":677,"id":49498928,"line":8849,"name":"Rat","allocations":[{"count":10,"id":33960376,"type":"BOOTCode"},{"count":80,"id":44229096,"type":"Scalar"},{"count":10,"id":44229024,"type":"Int"}],"inclusive_time":4723,"file":"gen/moar/m-CORE.setting","entries":10,"callees":[{"exclusive_time":1,"id":49806576,"line":14088,"name":"sink","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":20,"entries":20},{"exclusive_time":4,"id":48537680,"line":9200,"name":"infix:<==>","inclusive_time":4,"file":"gen/moar/m-CORE.setting","jit_entries":18,"entries":20},{"exclusive_time":3,"id":49072720,"line":856,"name":"sink","inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":10},{"exclusive_time":19,"id":48454688,"line":7995,"name":"infix:«<»","inclusive_time":113,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":39,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":40,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":4,"id":48468368,"line":8189,"name":"infix:«<»","inclusive_time":53,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49496496,"line":8826,"name":"Bridge","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":49478864,"line":8273,"name":"Bridge","allocations":[{"count":1,"id":44229000,"type":"Num"}],"inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":16,"id":48454688,"line":7995,"name":"infix:«<»","inclusive_time":47,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":28,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":30,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":1,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]},{"exclusive_time":0,"id":48538592,"line":9211,"name":"infix:«<»","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]}]}]},{"exclusive_time":3,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":3,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":10},{"exclusive_time":13,"id":49504400,"line":8939,"name":"floor","allocations":[{"count":10,"id":44229024,"type":"Int"}],"inclusive_time":13,"file":"gen/moar/m-CORE.setting","entries":10},{"exclusive_time":24,"id":48439184,"line":7912,"name":"infix:<->","inclusive_time":239,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":103,"id":52314624,"line":2048,"name":"","allocations":[{"count":4,"id":33960376,"spesh":4,"type":"BOOTCode"},{"count":4,"id":33961312,"spesh":4,"type":"NQPArray"},{"count":2,"id":33960328,"spesh":2,"type":"BOOTHash"}],"inclusive_time":105,"spesh_entries":2,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":2,"callees":[{"exclusive_time":1,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":2,"entries":2}]},{"exclusive_time":26,"id":48466240,"line":8175,"name":"infix:<->","inclusive_time":109,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":1,"id":49496496,"line":8826,"name":"Bridge","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":2},{"exclusive_time":0,"id":49478864,"line":8273,"name":"Bridge","allocations":[{"count":1,"id":44229000,"type":"Num"}],"inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":15,"id":48439184,"line":7912,"name":"infix:<->","inclusive_time":51,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":34,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"spesh":2,"type":"BOOTCode"},{"count":2,"id":33961312,"spesh":2,"type":"NQPArray"},{"count":1,"id":33960328,"spesh":1,"type":"BOOTHash"}],"inclusive_time":35,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":1,"id":48532512,"line":9122,"name":"infix:<->","allocations":[{"count":1,"id":44229000,"type":"Num"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":21,"id":50101152,"line":18832,"name":"Bridge","inclusive_time":28,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":6,"id":50099936,"line":18807,"name":"Num","allocations":[{"count":1,"id":44229000,"type":"Num"}],"inclusive_time":7,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":0,"id":48532512,"line":9122,"name":"infix:<->","allocations":[{"count":1,"id":44229000,"type":"Num"}],"inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":22,"id":48442224,"line":7926,"name":"infix:</>","inclusive_time":347,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":49,"id":52314624,"line":2048,"name":"","allocations":[{"count":4,"id":33960376,"spesh":4,"type":"BOOTCode"},{"count":4,"id":33961312,"spesh":4,"type":"NQPArray"},{"count":2,"id":33960328,"spesh":2,"type":"BOOTHash"}],"inclusive_time":51,"spesh_entries":2,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":2,"callees":[{"exclusive_time":2,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":2,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":2,"entries":2}]},{"exclusive_time":59,"id":48716432,"line":19154,"name":"infix:</>","inclusive_time":273,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":57,"id":48708528,"line":18996,"name":"DIVIDE_NUMBERS","allocations":[{"count":6,"id":44229096,"type":"Scalar"},{"count":2,"id":66684936,"type":"Rat"}],"inclusive_time":214,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":1,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":2},{"exclusive_time":16,"id":48447392,"line":7954,"name":"infix:<gcd>","inclusive_time":65,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":26,"id":52314624,"line":2048,"name":"","allocations":[{"count":4,"id":33960376,"spesh":4,"type":"BOOTCode"},{"count":4,"id":33961312,"spesh":4,"type":"NQPArray"},{"count":2,"id":33960328,"spesh":2,"type":"BOOTHash"}],"inclusive_time":28,"spesh_entries":2,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":2,"callees":[{"exclusive_time":1,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":2}]},{"exclusive_time":19,"id":48481440,"line":8500,"name":"infix:<gcd>","allocations":[{"count":2,"id":44229024,"type":"Int"}],"inclusive_time":19,"file":"gen/moar/m-CORE.setting","entries":2}]},{"exclusive_time":17,"id":48443744,"line":7933,"name":"infix:<div>","inclusive_time":37,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":11,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"spesh":2,"type":"BOOTCode"},{"count":2,"id":33961312,"spesh":2,"type":"NQPArray"},{"count":1,"id":33960328,"spesh":1,"type":"BOOTHash"}],"inclusive_time":12,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":7,"id":48479008,"line":8460,"name":"infix:<div>","allocations":[{"count":1,"id":44229024,"type":"Int"}],"inclusive_time":7,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]},{"exclusive_time":12,"id":48479008,"line":8460,"name":"infix:<div>","allocations":[{"count":3,"id":44229024,"type":"Int"}],"inclusive_time":12,"file":"gen/moar/m-CORE.setting","entries":3,"callees":[{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":3,"entries":3}]},{"exclusive_time":4,"id":48454688,"line":7995,"name":"infix:«<»","inclusive_time":37,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":30,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":31,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":1,"id":48483568,"line":8526,"name":"infix:«<»","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2},{"exclusive_time":1,"id":48483568,"line":8526,"name":"infix:«<»","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":3},{"exclusive_time":0,"id":49072720,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":2}]}]}]},{"exclusive_time":13,"id":48406656,"line":7770,"name":"abs","inclusive_time":34,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":18,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":19,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":48531296,"line":9108,"name":"abs","allocations":[{"count":1,"id":44229000,"type":"Num"}],"inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":15,"id":48456512,"line":8003,"name":"infix:«>»","inclusive_time":48,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":30,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":31,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]},{"exclusive_time":0,"id":48539808,"line":9225,"name":"infix:«>»","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":475,"id":49499536,"line":8869,"name":"","allocations":[{"count":146,"id":44229096,"spesh":39,"type":"Scalar"},{"count":68,"id":44229024,"spesh":18,"type":"Int"}],"inclusive_time":928,"spesh_entries":18,"file":"gen/moar/m-CORE.setting","entries":68,"callees":[{"exclusive_time":22,"id":48442224,"line":7926,"name":"infix:</>","inclusive_time":47,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":21,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"spesh":2,"type":"BOOTCode"},{"count":2,"id":33961312,"spesh":2,"type":"NQPArray"},{"count":1,"id":33960328,"spesh":1,"type":"BOOTHash"}],"inclusive_time":22,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":3,"id":48533728,"line":9136,"name":"infix:</>","allocations":[{"count":1,"id":44229000,"type":"Num"}],"inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]},{"exclusive_time":15,"id":48441008,"line":7920,"name":"infix:<*>","inclusive_time":50,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":30,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"spesh":2,"type":"BOOTCode"},{"count":2,"id":33961312,"spesh":2,"type":"NQPArray"},{"count":1,"id":33960328,"spesh":1,"type":"BOOTHash"}],"inclusive_time":32,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":1,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]},{"exclusive_time":2,"id":48478400,"line":8453,"name":"infix:<*>","allocations":[{"count":1,"id":44229024,"type":"Int"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":4,"id":48438272,"line":7908,"name":"infix:<+>","inclusive_time":49,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":41,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"spesh":2,"type":"BOOTCode"},{"count":2,"id":33961312,"spesh":2,"type":"NQPArray"},{"count":1,"id":33960328,"spesh":1,"type":"BOOTHash"}],"inclusive_time":42,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":1,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]},{"exclusive_time":3,"id":48477184,"line":8439,"name":"infix:<+>","allocations":[{"count":1,"id":44229024,"type":"Int"}],"inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":97,"id":48478400,"line":8453,"name":"infix:<*>","allocations":[{"count":135,"id":44229024,"spesh":36,"type":"Int","jit":74}],"inclusive_time":97,"spesh_entries":36,"file":"gen/moar/m-CORE.setting","inlined_entries":36,"jit_entries":74,"entries":135},{"exclusive_time":90,"id":48477184,"line":8439,"name":"infix:<+>","allocations":[{"count":135,"id":44229024,"spesh":36,"type":"Int","jit":86}],"inclusive_time":90,"spesh_entries":36,"file":"gen/moar/m-CORE.setting","inlined_entries":36,"jit_entries":86,"entries":135},{"exclusive_time":113,"id":48533728,"line":9136,"name":"infix:</>","allocations":[{"count":67,"id":44229000,"spesh":18,"type":"Num","jit":13}],"inclusive_time":118,"spesh_entries":18,"file":"gen/moar/m-CORE.setting","jit_entries":13,"entries":67,"callees":[{"exclusive_time":5,"id":49806576,"line":14088,"name":"sink","inclusive_time":5,"file":"gen/moar/m-CORE.setting","jit_entries":67,"entries":67}]}]},{"exclusive_time":129,"id":48716432,"line":19154,"name":"infix:</>","inclusive_time":1680,"file":"gen/moar/m-CORE.setting","jit_entries":55,"entries":86,"callees":[{"exclusive_time":570,"id":48708528,"line":18996,"name":"DIVIDE_NUMBERS","allocations":[{"count":258,"id":44229096,"type":"Scalar","jit":162},{"count":86,"id":66684936,"type":"Rat","jit":54}],"inclusive_time":1551,"file":"gen/moar/m-CORE.setting","jit_entries":54,"entries":86,"callees":[{"exclusive_time":56,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":56,"file":"gen/moar/m-CORE.setting","inlined_entries":54,"jit_entries":86,"entries":86},{"exclusive_time":325,"id":48481440,"line":8500,"name":"infix:<gcd>","allocations":[{"count":86,"id":44229024,"type":"Int","jit":64}],"inclusive_time":325,"file":"gen/moar/m-CORE.setting","inlined_entries":54,"jit_entries":64,"entries":86},{"exclusive_time":495,"id":48479008,"line":8460,"name":"infix:<div>","allocations":[{"count":172,"id":44229024,"spesh":108,"type":"Int","jit":34}],"inclusive_time":509,"spesh_entries":108,"file":"gen/moar/m-CORE.setting","jit_entries":34,"entries":172,"callees":[{"exclusive_time":14,"id":49806576,"line":14088,"name":"sink","inclusive_time":14,"file":"gen/moar/m-CORE.setting","jit_entries":172,"entries":172}]},{"exclusive_time":75,"id":48483568,"line":8526,"name":"infix:«<»","inclusive_time":75,"file":"gen/moar/m-CORE.setting","inlined_entries":108,"jit_entries":159,"entries":172},{"exclusive_time":6,"id":49806576,"line":14088,"name":"sink","inclusive_time":6,"file":"gen/moar/m-CORE.setting","jit_entries":86,"entries":86},{"exclusive_time":7,"id":49072720,"line":856,"name":"sink","inclusive_time":7,"file":"gen/moar/m-CORE.setting","jit_entries":86,"entries":86}]}]},{"exclusive_time":213,"id":48466240,"line":8175,"name":"infix:<->","inclusive_time":519,"file":"gen/moar/m-CORE.setting","jit_entries":46,"entries":86,"callees":[{"exclusive_time":7,"id":49496496,"line":8826,"name":"Bridge","inclusive_time":7,"file":"gen/moar/m-CORE.setting","jit_entries":79,"entries":86},{"exclusive_time":72,"id":50101152,"line":18832,"name":"Bridge","inclusive_time":266,"file":"gen/moar/m-CORE.setting","jit_entries":63,"entries":77,"callees":[{"exclusive_time":70,"id":50099936,"line":18807,"name":"Num","allocations":[{"count":77,"id":44229000,"type":"Num","jit":70}],"inclusive_time":193,"file":"gen/moar/m-CORE.setting","jit_entries":70,"entries":77,"callees":[{"exclusive_time":123,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":123,"file":"gen/moar/m-CORE.setting","inlined_entries":70,"jit_entries":76,"entries":77}]}]},{"exclusive_time":29,"id":48532512,"line":9122,"name":"infix:<->","allocations":[{"count":86,"id":44229000,"type":"Num","jit":58}],"inclusive_time":29,"file":"gen/moar/m-CORE.setting","inlined_entries":46,"jit_entries":58,"entries":86},{"exclusive_time":2,"id":49478864,"line":8273,"name":"Bridge","allocations":[{"count":9,"id":44229000,"type":"Num","jit":9}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9}]},{"exclusive_time":28,"id":48531296,"line":9108,"name":"abs","allocations":[{"count":77,"id":44229000,"spesh":49,"type":"Num"}],"inclusive_time":28,"spesh_entries":49,"file":"gen/moar/m-CORE.setting","entries":77},{"exclusive_time":25,"id":48539808,"line":9225,"name":"infix:«>»","inclusive_time":25,"file":"gen/moar/m-CORE.setting","jit_entries":41,"entries":77},{"exclusive_time":13,"id":48478400,"line":8453,"name":"infix:<*>","allocations":[{"count":10,"id":44229024,"type":"Int","jit":8}],"inclusive_time":13,"file":"gen/moar/m-CORE.setting","jit_entries":8,"entries":10},{"exclusive_time":34,"id":48468368,"line":8189,"name":"infix:«<»","inclusive_time":40,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":0,"id":49496496,"line":8826,"name":"Bridge","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9},{"exclusive_time":2,"id":49478864,"line":8273,"name":"Bridge","allocations":[{"count":9,"id":44229000,"type":"Num","jit":9}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9},{"exclusive_time":2,"id":48538592,"line":9211,"name":"infix:«<»","inclusive_time":2,"file":"gen/moar/m-CORE.setting","jit_entries":8,"entries":9}]}]},{"exclusive_time":13,"id":50648048,"line":26292,"name":"BUILD","allocations":[{"count":10,"id":44229096,"type":"Scalar"}],"inclusive_time":13,"file":"gen/moar/m-CORE.setting","entries":10}]}]},{"exclusive_time":21,"id":97751680,"line":98,"name":"","inclusive_time":4240,"file":"hibbified-249.p6","entries":10,"callees":[{"exclusive_time":64,"id":50648656,"line":26296,"name":"from-posix","allocations":[{"count":10,"id":44229096,"type":"Scalar"},{"count":10,"id":67909248,"type":"Instant"}],"inclusive_time":4218,"file":"gen/moar/m-CORE.setting","entries":10,"callees":[{"exclusive_time":314,"id":49239920,"line":3328,"name":"tai-from-posix","allocations":[{"count":20,"id":44229096,"type":"Scalar"},{"count":20,"id":44229072,"type":"IntLexRef"}],"inclusive_time":627,"file":"gen/moar/m-CORE.setting","entries":10,"callees":[{"exclusive_time":13,"id":49504400,"line":8939,"name":"floor","allocations":[{"count":10,"id":44229024,"type":"Int"}],"inclusive_time":13,"file":"gen/moar/m-CORE.setting","entries":10},{"exclusive_time":171,"id":48484784,"line":8540,"name":"infix:«>»","inclusive_time":171,"file":"gen/moar/m-CORE.setting","jit_entries":234,"entries":260},{"exclusive_time":98,"id":48465936,"line":8173,"name":"infix:<+>","inclusive_time":127,"file":"gen/moar/m-CORE.setting","entries":30,"callees":[{"exclusive_time":2,"id":49496496,"line":8826,"name":"Bridge","inclusive_time":2,"file":"gen/moar/m-CORE.setting","jit_entries":26,"entries":30},{"exclusive_time":10,"id":49478864,"line":8273,"name":"Bridge","allocations":[{"count":30,"id":44229000,"type":"Num","jit":27}],"inclusive_time":10,"file":"gen/moar/m-CORE.setting","jit_entries":27,"entries":30},{"exclusive_time":15,"id":48531904,"line":9115,"name":"infix:<+>","allocations":[{"count":30,"id":44229000,"type":"Num","jit":3}],"inclusive_time":15,"file":"gen/moar/m-CORE.setting","jit_entries":3,"entries":30}]}]},{"exclusive_time":560,"id":49498928,"line":8849,"name":"Rat","allocations":[{"count":10,"id":33960376,"type":"BOOTCode"},{"count":80,"id":44229096,"type":"Scalar"},{"count":10,"id":44229024,"type":"Int"}],"inclusive_time":3514,"file":"gen/moar/m-CORE.setting","entries":10,"callees":[{"exclusive_time":1,"id":49806576,"line":14088,"name":"sink","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":20,"entries":20},{"exclusive_time":4,"id":48537680,"line":9200,"name":"infix:<==>","inclusive_time":4,"file":"gen/moar/m-CORE.setting","jit_entries":18,"entries":20},{"exclusive_time":3,"id":49072720,"line":856,"name":"sink","inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":10},{"exclusive_time":34,"id":48468368,"line":8189,"name":"infix:«<»","inclusive_time":41,"file":"gen/moar/m-CORE.setting","entries":10,"callees":[{"exclusive_time":0,"id":49496496,"line":8826,"name":"Bridge","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":10},{"exclusive_time":3,"id":49478864,"line":8273,"name":"Bridge","allocations":[{"count":10,"id":44229000,"type":"Num","jit":9}],"inclusive_time":3,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":10},{"exclusive_time":2,"id":48538592,"line":9211,"name":"infix:«<»","inclusive_time":2,"file":"gen/moar/m-CORE.setting","jit_entries":8,"entries":10}]},{"exclusive_time":1,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":10,"entries":10},{"exclusive_time":11,"id":49504400,"line":8939,"name":"floor","allocations":[{"count":10,"id":44229024,"type":"Int"}],"inclusive_time":11,"file":"gen/moar/m-CORE.setting","entries":10},{"exclusive_time":199,"id":48466240,"line":8175,"name":"infix:<->","inclusive_time":434,"file":"gen/moar/m-CORE.setting","jit_entries":47,"entries":87,"callees":[{"exclusive_time":8,"id":49496496,"line":8826,"name":"Bridge","inclusive_time":8,"file":"gen/moar/m-CORE.setting","jit_entries":78,"entries":87},{"exclusive_time":3,"id":49478864,"line":8273,"name":"Bridge","allocations":[{"count":10,"id":44229000,"type":"Num","jit":9}],"inclusive_time":3,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":10},{"exclusive_time":30,"id":48532512,"line":9122,"name":"infix:<->","allocations":[{"count":87,"id":44229000,"type":"Num","jit":58}],"inclusive_time":30,"file":"gen/moar/m-CORE.setting","inlined_entries":47,"jit_entries":58,"entries":87},{"exclusive_time":71,"id":50101152,"line":18832,"name":"Bridge","inclusive_time":192,"file":"gen/moar/m-CORE.setting","jit_entries":58,"entries":77,"callees":[{"exclusive_time":64,"id":50099936,"line":18807,"name":"Num","allocations":[{"count":77,"id":44229000,"type":"Num","jit":69}],"inclusive_time":120,"file":"gen/moar/m-CORE.setting","jit_entries":69,"entries":77,"callees":[{"exclusive_time":55,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":55,"file":"gen/moar/m-CORE.setting","inlined_entries":69,"jit_entries":77,"entries":77}]}]}]},{"exclusive_time":119,"id":48716432,"line":19154,"name":"infix:</>","inclusive_time":1694,"file":"gen/moar/m-CORE.setting","jit_entries":57,"entries":87,"callees":[{"exclusive_time":602,"id":48708528,"line":18996,"name":"DIVIDE_NUMBERS","allocations":[{"count":261,"id":44229096,"type":"Scalar","jit":144},{"count":87,"id":66684936,"type":"Rat","jit":48}],"inclusive_time":1574,"file":"gen/moar/m-CORE.setting","jit_entries":48,"entries":87,"callees":[{"exclusive_time":53,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":53,"file":"gen/moar/m-CORE.setting","inlined_entries":48,"jit_entries":87,"entries":87},{"exclusive_time":326,"id":48481440,"line":8500,"name":"infix:<gcd>","allocations":[{"count":87,"id":44229024,"type":"Int","jit":57}],"inclusive_time":326,"file":"gen/moar/m-CORE.setting","inlined_entries":48,"jit_entries":57,"entries":87},{"exclusive_time":494,"id":48479008,"line":8460,"name":"infix:<div>","allocations":[{"count":174,"id":44229024,"spesh":96,"type":"Int","jit":40}],"inclusive_time":507,"spesh_entries":96,"file":"gen/moar/m-CORE.setting","jit_entries":40,"entries":174,"callees":[{"exclusive_time":13,"id":49806576,"line":14088,"name":"sink","inclusive_time":13,"file":"gen/moar/m-CORE.setting","jit_entries":174,"entries":174}]},{"exclusive_time":70,"id":48483568,"line":8526,"name":"infix:«<»","inclusive_time":70,"file":"gen/moar/m-CORE.setting","inlined_entries":96,"jit_entries":174,"entries":174},{"exclusive_time":6,"id":49806576,"line":14088,"name":"sink","inclusive_time":6,"file":"gen/moar/m-CORE.setting","jit_entries":87,"entries":87},{"exclusive_time":7,"id":49072720,"line":856,"name":"sink","inclusive_time":7,"file":"gen/moar/m-CORE.setting","jit_entries":87,"entries":87}]}]},{"exclusive_time":27,"id":48531296,"line":9108,"name":"abs","allocations":[{"count":77,"id":44229000,"spesh":43,"type":"Num"}],"inclusive_time":27,"spesh_entries":43,"file":"gen/moar/m-CORE.setting","entries":77},{"exclusive_time":26,"id":48539808,"line":9225,"name":"infix:«>»","inclusive_time":26,"file":"gen/moar/m-CORE.setting","jit_entries":36,"entries":77},{"exclusive_time":404,"id":49499536,"line":8869,"name":"","allocations":[{"count":144,"id":44229096,"spesh":37,"type":"Scalar"},{"count":67,"id":44229024,"spesh":17,"type":"Int"}],"inclusive_time":693,"spesh_entries":17,"file":"gen/moar/m-CORE.setting","entries":67,"callees":[{"exclusive_time":105,"id":48533728,"line":9136,"name":"infix:</>","allocations":[{"count":67,"id":44229000,"spesh":17,"type":"Num","jit":14}],"inclusive_time":111,"spesh_entries":17,"file":"gen/moar/m-CORE.setting","jit_entries":14,"entries":67,"callees":[{"exclusive_time":5,"id":49806576,"line":14088,"name":"sink","inclusive_time":5,"file":"gen/moar/m-CORE.setting","jit_entries":67,"entries":67}]},{"exclusive_time":91,"id":48478400,"line":8453,"name":"infix:<*>","allocations":[{"count":134,"id":44229024,"spesh":34,"type":"Int","jit":66}],"inclusive_time":91,"spesh_entries":34,"file":"gen/moar/m-CORE.setting","inlined_entries":34,"jit_entries":66,"entries":134},{"exclusive_time":86,"id":48477184,"line":8439,"name":"infix:<+>","allocations":[{"count":134,"id":44229024,"spesh":34,"type":"Int","jit":86}],"inclusive_time":86,"spesh_entries":34,"file":"gen/moar/m-CORE.setting","inlined_entries":34,"jit_entries":86,"entries":134}]},{"exclusive_time":13,"id":48478400,"line":8453,"name":"infix:<*>","allocations":[{"count":10,"id":44229024,"type":"Int","jit":8}],"inclusive_time":13,"file":"gen/moar/m-CORE.setting","jit_entries":8,"entries":10}]},{"exclusive_time":12,"id":50648048,"line":26292,"name":"BUILD","allocations":[{"count":10,"id":44229096,"type":"Scalar"}],"inclusive_time":12,"file":"gen/moar/m-CORE.setting","entries":10}]}]},{"exclusive_time":17,"id":98423328,"line":99,"name":"","inclusive_time":3968,"file":"hibbified-249.p6","entries":10,"callees":[{"exclusive_time":58,"id":50648656,"line":26296,"name":"from-posix","allocations":[{"count":10,"id":44229096,"type":"Scalar"},{"count":10,"id":67909248,"type":"Instant"}],"inclusive_time":3951,"file":"gen/moar/m-CORE.setting","entries":10,"callees":[{"exclusive_time":300,"id":49239920,"line":3328,"name":"tai-from-posix","allocations":[{"count":20,"id":44229096,"type":"Scalar"},{"count":20,"id":44229072,"type":"IntLexRef"}],"inclusive_time":599,"file":"gen/moar/m-CORE.setting","entries":10,"callees":[{"exclusive_time":12,"id":49504400,"line":8939,"name":"floor","allocations":[{"count":10,"id":44229024,"type":"Int"}],"inclusive_time":12,"file":"gen/moar/m-CORE.setting","entries":10},{"exclusive_time":166,"id":48484784,"line":8540,"name":"infix:«>»","inclusive_time":166,"file":"gen/moar/m-CORE.setting","jit_entries":234,"entries":260},{"exclusive_time":91,"id":48465936,"line":8173,"name":"infix:<+>","inclusive_time":119,"file":"gen/moar/m-CORE.setting","entries":30,"callees":[{"exclusive_time":3,"id":49496496,"line":8826,"name":"Bridge","inclusive_time":3,"file":"gen/moar/m-CORE.setting","jit_entries":26,"entries":30},{"exclusive_time":9,"id":49478864,"line":8273,"name":"Bridge","allocations":[{"count":30,"id":44229000,"type":"Num","jit":27}],"inclusive_time":9,"file":"gen/moar/m-CORE.setting","jit_entries":27,"entries":30},{"exclusive_time":14,"id":48531904,"line":9115,"name":"infix:<+>","allocations":[{"count":30,"id":44229000,"type":"Num","jit":6}],"inclusive_time":14,"file":"gen/moar/m-CORE.setting","jit_entries":6,"entries":30}]}]},{"exclusive_time":521,"id":49498928,"line":8849,"name":"Rat","allocations":[{"count":10,"id":33960376,"type":"BOOTCode"},{"count":80,"id":44229096,"type":"Scalar"},{"count":10,"id":44229024,"type":"Int"}],"inclusive_time":3281,"file":"gen/moar/m-CORE.setting","entries":10,"callees":[{"exclusive_time":1,"id":49806576,"line":14088,"name":"sink","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":20,"entries":20},{"exclusive_time":4,"id":48537680,"line":9200,"name":"infix:<==>","inclusive_time":4,"file":"gen/moar/m-CORE.setting","jit_entries":18,"entries":20},{"exclusive_time":3,"id":49072720,"line":856,"name":"sink","inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":10},{"exclusive_time":32,"id":48468368,"line":8189,"name":"infix:«<»","inclusive_time":39,"file":"gen/moar/m-CORE.setting","entries":10,"callees":[{"exclusive_time":0,"id":49496496,"line":8826,"name":"Bridge","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":10},{"exclusive_time":3,"id":49478864,"line":8273,"name":"Bridge","allocations":[{"count":10,"id":44229000,"type":"Num","jit":9}],"inclusive_time":3,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":10},{"exclusive_time":2,"id":48538592,"line":9211,"name":"infix:«<»","inclusive_time":2,"file":"gen/moar/m-CORE.setting","jit_entries":8,"entries":10}]},{"exclusive_time":1,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":10,"entries":10},{"exclusive_time":11,"id":49504400,"line":8939,"name":"floor","allocations":[{"count":10,"id":44229024,"type":"Int"}],"inclusive_time":11,"file":"gen/moar/m-CORE.setting","entries":10},{"exclusive_time":185,"id":48466240,"line":8175,"name":"infix:<->","inclusive_time":402,"file":"gen/moar/m-CORE.setting","jit_entries":50,"entries":84,"callees":[{"exclusive_time":8,"id":49496496,"line":8826,"name":"Bridge","inclusive_time":8,"file":"gen/moar/m-CORE.setting","jit_entries":77,"entries":84},{"exclusive_time":3,"id":49478864,"line":8273,"name":"Bridge","allocations":[{"count":10,"id":44229000,"type":"Num","jit":9}],"inclusive_time":3,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":10},{"exclusive_time":27,"id":48532512,"line":9122,"name":"infix:<->","allocations":[{"count":84,"id":44229000,"type":"Num","jit":58}],"inclusive_time":27,"file":"gen/moar/m-CORE.setting","inlined_entries":50,"jit_entries":58,"entries":84},{"exclusive_time":67,"id":50101152,"line":18832,"name":"Bridge","inclusive_time":178,"file":"gen/moar/m-CORE.setting","jit_entries":58,"entries":74,"callees":[{"exclusive_time":59,"id":50099936,"line":18807,"name":"Num","allocations":[{"count":74,"id":44229000,"type":"Num","jit":68}],"inclusive_time":111,"file":"gen/moar/m-CORE.setting","jit_entries":68,"entries":74,"callees":[{"exclusive_time":52,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":52,"file":"gen/moar/m-CORE.setting","inlined_entries":68,"jit_entries":74,"entries":74}]}]}]},{"exclusive_time":111,"id":48716432,"line":19154,"name":"infix:</>","inclusive_time":1584,"file":"gen/moar/m-CORE.setting","jit_entries":57,"entries":84,"callees":[{"exclusive_time":552,"id":48708528,"line":18996,"name":"DIVIDE_NUMBERS","allocations":[{"count":252,"id":44229096,"type":"Scalar","jit":150},{"count":84,"id":66684936,"type":"Rat","jit":50}],"inclusive_time":1473,"file":"gen/moar/m-CORE.setting","jit_entries":50,"entries":84,"callees":[{"exclusive_time":51,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":51,"file":"gen/moar/m-CORE.setting","inlined_entries":50,"jit_entries":84,"entries":84},{"exclusive_time":318,"id":48481440,"line":8500,"name":"infix:<gcd>","allocations":[{"count":84,"id":44229024,"type":"Int","jit":57}],"inclusive_time":318,"file":"gen/moar/m-CORE.setting","inlined_entries":50,"jit_entries":57,"entries":84},{"exclusive_time":457,"id":48479008,"line":8460,"name":"infix:<div>","allocations":[{"count":168,"id":44229024,"spesh":100,"type":"Int","jit":53}],"inclusive_time":470,"spesh_entries":100,"file":"gen/moar/m-CORE.setting","jit_entries":53,"entries":168,"callees":[{"exclusive_time":12,"id":49806576,"line":14088,"name":"sink","inclusive_time":12,"file":"gen/moar/m-CORE.setting","jit_entries":168,"entries":168}]},{"exclusive_time":67,"id":48483568,"line":8526,"name":"infix:«<»","inclusive_time":67,"file":"gen/moar/m-CORE.setting","inlined_entries":100,"jit_entries":168,"entries":168},{"exclusive_time":6,"id":49806576,"line":14088,"name":"sink","inclusive_time":6,"file":"gen/moar/m-CORE.setting","jit_entries":84,"entries":84},{"exclusive_time":7,"id":49072720,"line":856,"name":"sink","inclusive_time":7,"file":"gen/moar/m-CORE.setting","jit_entries":84,"entries":84}]}]},{"exclusive_time":25,"id":48531296,"line":9108,"name":"abs","allocations":[{"count":74,"id":44229000,"spesh":45,"type":"Num"}],"inclusive_time":25,"spesh_entries":45,"file":"gen/moar/m-CORE.setting","entries":74},{"exclusive_time":24,"id":48539808,"line":9225,"name":"infix:«>»","inclusive_time":24,"file":"gen/moar/m-CORE.setting","jit_entries":38,"entries":74},{"exclusive_time":377,"id":49499536,"line":8869,"name":"","allocations":[{"count":138,"id":44229096,"spesh":43,"type":"Scalar"},{"count":64,"id":44229024,"spesh":20,"type":"Int"}],"inclusive_time":647,"spesh_entries":20,"file":"gen/moar/m-CORE.setting","entries":64,"callees":[{"exclusive_time":98,"id":48533728,"line":9136,"name":"infix:</>","allocations":[{"count":64,"id":44229000,"spesh":20,"type":"Num","jit":13}],"inclusive_time":103,"spesh_entries":20,"file":"gen/moar/m-CORE.setting","jit_entries":13,"entries":64,"callees":[{"exclusive_time":4,"id":49806576,"line":14088,"name":"sink","inclusive_time":4,"file":"gen/moar/m-CORE.setting","jit_entries":64,"entries":64}]},{"exclusive_time":83,"id":48478400,"line":8453,"name":"infix:<*>","allocations":[{"count":128,"id":44229024,"spesh":40,"type":"Int","jit":60}],"inclusive_time":83,"spesh_entries":40,"file":"gen/moar/m-CORE.setting","inlined_entries":40,"jit_entries":60,"entries":128},{"exclusive_time":83,"id":48477184,"line":8439,"name":"infix:<+>","allocations":[{"count":128,"id":44229024,"spesh":40,"type":"Int","jit":78}],"inclusive_time":83,"spesh_entries":40,"file":"gen/moar/m-CORE.setting","inlined_entries":40,"jit_entries":78,"entries":128}]},{"exclusive_time":12,"id":48478400,"line":8453,"name":"infix:<*>","allocations":[{"count":10,"id":44229024,"type":"Int","jit":8}],"inclusive_time":12,"file":"gen/moar/m-CORE.setting","jit_entries":8,"entries":10}]},{"exclusive_time":11,"id":50648048,"line":26292,"name":"BUILD","allocations":[{"count":10,"id":44229096,"type":"Scalar"}],"inclusive_time":11,"file":"gen/moar/m-CORE.setting","entries":10}]}]},{"exclusive_time":214,"id":49600464,"line":10609,"name":"ords","inclusive_time":521,"file":"gen/moar/m-CORE.setting","entries":10,"callees":[{"exclusive_time":36,"id":49636336,"line":11340,"name":"NFC","allocations":[{"count":10,"id":73526720,"spesh":4,"type":"NFC"}],"inclusive_time":36,"spesh_entries":4,"file":"gen/moar/m-CORE.setting","entries":10},{"exclusive_time":80,"id":49550000,"line":9880,"name":"list","inclusive_time":270,"file":"gen/moar/m-CORE.setting","jit_entries":3,"entries":10,"callees":[{"exclusive_time":27,"id":52311584,"line":1621,"name":"","allocations":[{"count":20,"id":44229240,"spesh":20,"type":"Block"},{"count":20,"id":33960376,"spesh":20,"type":"BOOTCode"}],"inclusive_time":27,"spesh_entries":20,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":20},{"exclusive_time":81,"id":48602736,"line":12668,"name":"GATHER","allocations":[{"count":10,"id":33960376,"type":"BOOTCode","jit":8}],"inclusive_time":161,"file":"gen/moar/m-CORE.setting","jit_entries":8,"entries":10,"callees":[{"exclusive_time":19,"id":48603040,"line":12669,"name":"","allocations":[{"count":10,"id":33960376,"type":"BOOTCode","jit":8},{"count":10,"id":44229096,"type":"Scalar","jit":8}],"inclusive_time":19,"file":"gen/moar/m-CORE.setting","jit_entries":8,"entries":10},{"exclusive_time":33,"id":48603648,"line":12676,"name":"new","allocations":[{"count":10,"id":67906656,"type":"<anon|340889968>","jit":8}],"inclusive_time":49,"file":"gen/moar/m-CORE.setting","jit_entries":8,"entries":10,"callees":[{"exclusive_time":15,"id":52311584,"line":1621,"name":"","allocations":[{"count":20,"id":44229240,"spesh":20,"type":"Block"},{"count":20,"id":33960376,"spesh":20,"type":"BOOTCode"}],"inclusive_time":15,"spesh_entries":20,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":20}]},{"exclusive_time":11,"id":49700480,"line":12399,"name":"new","allocations":[{"count":10,"id":67909080,"type":"Seq","jit":9}],"inclusive_time":11,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":10}]}]}]},{"exclusive_time":182,"id":49126528,"line":1418,"name":"dispatch:<.=>","allocations":[{"count":11,"id":44229096,"type":"Scalar"},{"count":10,"id":44229192,"type":"Capture"}],"inclusive_time":5559,"file":"gen/moar/m-CORE.setting","entries":10,"callees":[{"exclusive_time":7,"id":49689840,"line":12248,"name":"FLATTENABLE_LIST","inclusive_time":7,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":10},{"exclusive_time":6,"id":49690144,"line":12249,"name":"FLATTENABLE_HASH","allocations":[{"count":10,"id":33960328,"type":"BOOTHash","jit":9}],"inclusive_time":6,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":10},{"exclusive_time":1,"id":49564592,"line":10027,"name":"Stringy","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":10},{"exclusive_time":100,"id":49079712,"line":941,"name":"new","inclusive_time":4400,"file":"gen/moar/m-CORE.setting","entries":10,"callees":[{"exclusive_time":2,"id":52321312,"line":3008,"name":"","allocations":[{"count":10,"id":44228664,"type":"List","jit":10}],"inclusive_time":2,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":10,"entries":10},{"exclusive_time":243,"id":52314624,"line":2048,"name":"","allocations":[{"count":20,"id":33960376,"type":"BOOTCode"},{"count":20,"id":33961312,"type":"NQPArray"},{"count":10,"id":33960328,"type":"BOOTHash"},{"count":10,"id":33960520,"type":"CallCapture"}],"inclusive_time":988,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":10,"callees":[{"exclusive_time":72,"id":52294864,"line":920,"name":"is_bindable","allocations":[{"count":10,"id":33960376,"spesh":9,"type":"BOOTCode"}],"inclusive_time":745,"spesh_entries":9,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":10,"callees":[{"exclusive_time":37,"id":52295168,"line":926,"name":"","inclusive_time":672,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":10,"callees":[{"exclusive_time":153,"id":52292736,"line":606,"name":"bind","allocations":[{"count":10,"id":44228640,"spesh":9,"type":"Hash"}],"inclusive_time":634,"spesh_entries":9,"file":"gen/moar/m-BOOTSTRAP.nqp","deopt_one":9,"entries":10,"callees":[{"exclusive_time":227,"id":52290912,"line":168,"name":"bind_one_param","allocations":[{"count":80,"id":33960376,"type":"BOOTCode"},{"count":10,"id":44229096,"type":"Scalar"}],"inclusive_time":474,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":40,"callees":[{"exclusive_time":13,"id":52616112,"line":2635,"name":"type_check","inclusive_time":13,"file":"gen/moar/m-Metamodel.nqp","jit_entries":9,"entries":10},{"exclusive_time":78,"id":49698960,"line":12379,"name":"cache","allocations":[{"count":10,"id":44229096,"type":"Scalar","jit":9}],"inclusive_time":232,"file":"gen/moar/m-CORE.setting","deopt_one":9,"jit_entries":9,"entries":10,"callees":[{"exclusive_time":47,"id":49701088,"line":12407,"name":"iterator","inclusive_time":58,"file":"gen/moar/m-CORE.setting","jit_entries":10,"entries":10,"callees":[{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":10,"entries":10},{"exclusive_time":9,"id":52616112,"line":2635,"name":"type_check","inclusive_time":9,"file":"gen/moar/m-Metamodel.nqp","jit_entries":10,"entries":10}]},{"exclusive_time":56,"id":49791072,"line":13804,"name":"from-iterator","allocations":[{"count":10,"id":44228664,"type":"List","jit":1},{"count":10,"id":68411984,"type":"IterationBuffer","jit":1},{"count":10,"id":65481320,"type":"List::Reifier","jit":1}],"inclusive_time":96,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":10,"callees":[{"exclusive_time":36,"id":49800496,"line":13985,"name":"reification-target","inclusive_time":40,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":10,"callees":[{"exclusive_time":2,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":2,"file":"gen/moar/m-CORE.setting","jit_entries":10,"entries":10},{"exclusive_time":1,"id":49806576,"line":14088,"name":"sink","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":10,"entries":10}]}]}]}]},{"exclusive_time":6,"id":52292432,"line":573,"name":"handle_optional","inclusive_time":6,"spesh_entries":9,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":10}]}]}]}]},{"exclusive_time":126,"id":49911760,"line":16936,"name":"new","allocations":[{"count":10,"id":44229096,"type":"Scalar"}],"inclusive_time":3308,"file":"gen/moar/m-CORE.setting","entries":10,"callees":[{"exclusive_time":6,"id":49698960,"line":12379,"name":"cache","inclusive_time":6,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":10},{"exclusive_time":38,"id":49912368,"line":16943,"name":"create","allocations":[{"count":10,"id":44229096,"type":"Scalar","jit":1},{"count":10,"id":73528976,"type":"array[uint8]","jit":1}],"inclusive_time":39,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":10,"callees":[{"exclusive_time":0,"id":49072720,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":10,"entries":10}]},{"exclusive_time":35,"id":49905072,"line":16310,"name":"STORE","inclusive_time":1117,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":17,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":129,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":72,"id":52313712,"line":1708,"name":"","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":22,"id":33961312,"type":"NQPArray"},{"count":5,"id":33961360,"type":"NQPArrayIter"},{"count":8,"id":33960328,"type":"BOOTHash"},{"count":8,"id":33960832,"type":"BOOTIntArray"},{"count":5,"id":33960232,"type":"BOOTInt"}],"inclusive_time":110,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":28,"id":52314016,"line":1738,"name":"is_narrower","inclusive_time":38,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":12,"entries":12,"callees":[{"exclusive_time":8,"id":52616112,"line":2635,"name":"type_check","allocations":[{"count":4,"id":33961360,"type":"NQPArrayIter"}],"inclusive_time":9,"file":"gen/moar/m-Metamodel.nqp","entries":3,"callees":[{"exclusive_time":0,"id":52544976,"line":161,"name":"pretending_to_be","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","entries":3}]}]}]},{"exclusive_time":1,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":32,"id":49927264,"line":16355,"name":"STORE","allocations":[{"count":1,"id":44229096,"type":"Scalar"},{"count":13,"id":44229072,"type":"IntLexRef"}],"inclusive_time":952,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":11,"id":49797760,"line":13932,"name":"elems","allocations":[{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":277,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":11,"id":49845792,"line":13753,"name":"reify-until-lazy","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":2,"id":44229096,"type":"Scalar"}],"inclusive_time":259,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":5,"id":49213776,"line":2476,"name":"push-until-lazy","allocations":[{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":246,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49215296,"line":2511,"name":"is-lazy","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":7,"id":49213168,"line":2463,"name":"push-all","allocations":[{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":240,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":28,"id":49212864,"line":2454,"name":"push-at-least","allocations":[{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":233,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":6,"id":48606384,"line":12722,"name":"push-exactly","allocations":[{"count":2,"id":44229096,"type":"Scalar"}],"inclusive_time":205,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":21,"id":48604560,"line":12698,"name":"","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":198,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":36,"id":49550304,"line":9881,"name":"","allocations":[{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":175,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":12,"id":39752816,"line":639,"name":"take","inclusive_time":70,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":10,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":11,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":10,"id":39753424,"line":641,"name":"take","allocations":[{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":46,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":9,"id":39750080,"line":596,"name":"THROW","allocations":[{"count":1,"id":33960568,"type":"BOOTException"}],"inclusive_time":36,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":18,"id":48605168,"line":-1,"name":"","allocations":[{"count":2,"id":44229024,"type":"Int"}],"inclusive_time":27,"file":"/usr/local/src/rakudo/install/share/perl6/runtime/CORE.setting.moarvm","entries":1,"callees":[{"exclusive_time":8,"id":48603952,"line":12680,"name":"","inclusive_time":8,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49692880,"line":12283,"name":"push","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]}]}]}]}]},{"exclusive_time":1,"id":49072720,"line":856,"name":"sink","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":13,"entries":13},{"exclusive_time":16,"id":39753424,"line":641,"name":"take","allocations":[{"count":12,"id":44229096,"type":"Scalar"}],"inclusive_time":67,"file":"gen/moar/m-CORE.setting","entries":12,"callees":[{"exclusive_time":11,"id":39750080,"line":596,"name":"THROW","allocations":[{"count":12,"id":33960568,"type":"BOOTException"}],"inclusive_time":50,"file":"gen/moar/m-CORE.setting","entries":12,"callees":[{"exclusive_time":10,"id":48605168,"line":-1,"name":"","allocations":[{"count":24,"id":44229024,"type":"Int"}],"inclusive_time":39,"file":"/usr/local/src/rakudo/install/share/perl6/runtime/CORE.setting.moarvm","entries":12,"callees":[{"exclusive_time":23,"id":48603952,"line":12680,"name":"","inclusive_time":28,"file":"gen/moar/m-CORE.setting","entries":12,"callees":[{"exclusive_time":5,"id":49692880,"line":12283,"name":"push","inclusive_time":5,"file":"gen/moar/m-CORE.setting","entries":12}]}]}]}]}]},{"exclusive_time":1,"id":52311584,"line":1621,"name":"","allocations":[{"count":1,"id":44229240,"spesh":1,"type":"Block"},{"count":1,"id":33960376,"spesh":1,"type":"BOOTCode"}],"inclusive_time":1,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]},{"exclusive_time":0,"id":48604864,"line":12700,"name":"","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":0,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]},{"exclusive_time":0,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":52616112,"line":2635,"name":"type_check","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","jit_entries":1,"entries":1},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":49072720,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":5,"id":49849440,"line":13795,"name":"fully-reified","inclusive_time":5,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":48509712,"line":8704,"name":"prefix:<!>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]}]},{"exclusive_time":27,"id":49176992,"line":1964,"name":"AT-POS","inclusive_time":617,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":11,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":584,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":336,"id":52313712,"line":1708,"name":"","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":62,"id":33961312,"type":"NQPArray"},{"count":13,"id":33961360,"type":"NQPArrayIter"},{"count":24,"id":33960328,"type":"BOOTHash"},{"count":24,"id":33960832,"type":"BOOTIntArray"},{"count":13,"id":33960232,"type":"BOOTInt"}],"inclusive_time":572,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":236,"id":52314016,"line":1738,"name":"is_narrower","inclusive_time":236,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":132,"entries":132}]},{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":4,"id":49799280,"line":13954,"name":"AT-POS","inclusive_time":5,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]},{"exclusive_time":23,"id":49799280,"line":13954,"name":"AT-POS","inclusive_time":25,"file":"gen/moar/m-CORE.setting","entries":12,"callees":[{"exclusive_time":1,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":12,"entries":12},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":12,"entries":12}]}]}]},{"exclusive_time":148,"id":49927264,"line":16355,"name":"STORE","allocations":[{"count":9,"id":44229096,"type":"Scalar","jit":9},{"count":117,"id":44229072,"type":"IntLexRef","jit":117}],"inclusive_time":2018,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9,"callees":[{"exclusive_time":92,"id":49797760,"line":13932,"name":"elems","allocations":[{"count":9,"id":44229096,"spesh":9,"type":"Scalar"}],"inclusive_time":1630,"spesh_entries":9,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":1,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9},{"exclusive_time":122,"id":49845792,"line":13753,"name":"reify-until-lazy","allocations":[{"count":9,"id":33960376,"type":"BOOTCode","jit":9},{"count":18,"id":44229096,"type":"Scalar","jit":18}],"inclusive_time":1514,"file":"gen/moar/m-CORE.setting","deopt_one":9,"jit_entries":9,"entries":9,"callees":[{"exclusive_time":59,"id":49213776,"line":2476,"name":"push-until-lazy","allocations":[{"count":9,"id":44229096,"type":"Scalar"}],"inclusive_time":1386,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":3,"id":49215296,"line":2511,"name":"is-lazy","inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":9},{"exclusive_time":74,"id":49213168,"line":2463,"name":"push-all","allocations":[{"count":9,"id":44229096,"type":"Scalar"}],"inclusive_time":1323,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":35,"id":49212864,"line":2454,"name":"push-at-least","allocations":[{"count":9,"id":44229096,"spesh":9,"type":"Scalar"}],"inclusive_time":1246,"spesh_entries":9,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":60,"id":48606384,"line":12722,"name":"push-exactly","allocations":[{"count":18,"id":44229096,"type":"Scalar"}],"inclusive_time":1210,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":72,"id":48604560,"line":12698,"name":"","allocations":[{"count":9,"id":33960376,"type":"BOOTCode"},{"count":9,"id":44229096,"type":"Scalar"}],"inclusive_time":1141,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":249,"id":49550304,"line":9881,"name":"","allocations":[{"count":9,"id":44229096,"type":"Scalar","jit":3}],"inclusive_time":1058,"file":"gen/moar/m-CORE.setting","jit_entries":3,"entries":9,"callees":[{"exclusive_time":177,"id":39753424,"line":641,"name":"take","allocations":[{"count":117,"id":44229096,"spesh":39,"type":"Scalar","jit":78}],"inclusive_time":798,"spesh_entries":39,"file":"gen/moar/m-CORE.setting","jit_entries":78,"entries":117,"callees":[{"exclusive_time":128,"id":39750080,"line":596,"name":"THROW","allocations":[{"count":117,"id":33960568,"spesh":117,"type":"BOOTException"}],"inclusive_time":620,"spesh_entries":117,"file":"gen/moar/m-CORE.setting","entries":117,"callees":[{"exclusive_time":135,"id":48605168,"line":-1,"name":"","allocations":[{"count":234,"id":44229024,"spesh":234,"type":"Int"}],"inclusive_time":492,"spesh_entries":117,"file":"/usr/local/src/rakudo/install/share/perl6/runtime/CORE.setting.moarvm","entries":117,"callees":[{"exclusive_time":292,"id":48603952,"line":12680,"name":"","inclusive_time":356,"file":"gen/moar/m-CORE.setting","entries":117,"callees":[{"exclusive_time":63,"id":49692880,"line":12283,"name":"push","inclusive_time":63,"file":"gen/moar/m-CORE.setting","entries":117}]}]}]}]},{"exclusive_time":10,"id":49072720,"line":856,"name":"sink","inclusive_time":10,"file":"gen/moar/m-CORE.setting","jit_entries":117,"entries":117}]},{"exclusive_time":9,"id":52311584,"line":1621,"name":"","allocations":[{"count":9,"id":44229240,"spesh":9,"type":"Block"},{"count":9,"id":33960376,"spesh":9,"type":"BOOTCode"}],"inclusive_time":9,"spesh_entries":9,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":9}]},{"exclusive_time":8,"id":48604864,"line":12700,"name":"","inclusive_time":8,"file":"gen/moar/m-CORE.setting","jit_entries":4,"entries":9}]}]},{"exclusive_time":2,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":2,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9}]}]},{"exclusive_time":0,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9},{"exclusive_time":4,"id":52616112,"line":2635,"name":"type_check","inclusive_time":4,"file":"gen/moar/m-Metamodel.nqp","jit_entries":9,"entries":9},{"exclusive_time":1,"id":49806576,"line":14088,"name":"sink","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9}]},{"exclusive_time":1,"id":49072720,"line":856,"name":"sink","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9},{"exclusive_time":16,"id":49849440,"line":13795,"name":"fully-reified","inclusive_time":19,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9,"callees":[{"exclusive_time":3,"id":48509712,"line":8704,"name":"prefix:<!>","inclusive_time":3,"file":"gen/moar/m-CORE.setting","inlined_entries":18,"jit_entries":18,"entries":18}]}]},{"exclusive_time":218,"id":49799280,"line":13954,"name":"AT-POS","inclusive_time":239,"spesh_entries":117,"file":"gen/moar/m-CORE.setting","entries":117,"callees":[{"exclusive_time":11,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":11,"file":"gen/moar/m-CORE.setting","jit_entries":117,"entries":117},{"exclusive_time":9,"id":49806576,"line":14088,"name":"sink","inclusive_time":9,"file":"gen/moar/m-CORE.setting","jit_entries":117,"entries":117}]}]}]}]},{"exclusive_time":4,"id":49905072,"line":16310,"name":"STORE","inclusive_time":707,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":13,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":14,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":20,"id":49927264,"line":16355,"name":"STORE","allocations":[{"count":1,"id":44229096,"type":"Scalar"},{"count":13,"id":44229072,"type":"IntLexRef"}],"inclusive_time":688,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":13,"id":49153584,"line":1805,"name":"elems","inclusive_time":70,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":9,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":55,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":36,"id":52313712,"line":1708,"name":"","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":17,"id":33961312,"type":"NQPArray"},{"count":4,"id":33961360,"type":"NQPArrayIter"},{"count":6,"id":33960328,"type":"BOOTHash"},{"count":6,"id":33960832,"type":"BOOTIntArray"},{"count":3,"id":33960232,"type":"BOOTInt"}],"inclusive_time":45,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":9,"id":52314016,"line":1738,"name":"is_narrower","inclusive_time":9,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":6,"entries":6}]},{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":49916320,"line":16988,"name":"elems","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":17,"id":49176992,"line":1964,"name":"AT-POS","inclusive_time":592,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":10,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":570,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":323,"id":52313712,"line":1708,"name":"","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":62,"id":33961312,"type":"NQPArray"},{"count":13,"id":33961360,"type":"NQPArrayIter"},{"count":24,"id":33960328,"type":"BOOTHash"},{"count":24,"id":33960832,"type":"BOOTIntArray"},{"count":13,"id":33960232,"type":"BOOTInt"}],"inclusive_time":559,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":235,"id":52314016,"line":1738,"name":"is_narrower","inclusive_time":235,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":132,"entries":132}]},{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":3,"id":49924528,"line":16320,"name":"AT-POS","allocations":[{"count":1,"id":44228928,"type":"IntPosRef"}],"inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":4,"id":49924528,"line":16320,"name":"AT-POS","allocations":[{"count":12,"id":44228928,"type":"IntPosRef"}],"inclusive_time":4,"file":"gen/moar/m-CORE.setting","entries":12}]}]},{"exclusive_time":195,"id":49927264,"line":16355,"name":"STORE","allocations":[{"count":9,"id":44229096,"type":"Scalar","jit":1},{"count":117,"id":44229072,"type":"IntLexRef","jit":13}],"inclusive_time":253,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":9,"callees":[{"exclusive_time":1,"id":49916320,"line":16988,"name":"elems","inclusive_time":1,"file":"gen/moar/m-CORE.setting","inlined_entries":1,"jit_entries":9,"entries":9},{"exclusive_time":56,"id":49924528,"line":16320,"name":"AT-POS","allocations":[{"count":117,"id":44228928,"type":"IntPosRef"}],"inclusive_time":56,"file":"gen/moar/m-CORE.setting","entries":117}]}]},{"exclusive_time":5,"id":49919056,"line":16998,"name":"sink","inclusive_time":5,"file":"gen/moar/m-CORE.setting","entries":10},{"exclusive_time":11,"id":52309760,"line":1563,"name":"","allocations":[{"count":10,"id":44229264,"spesh":9,"type":"Code"},{"count":10,"id":33960376,"spesh":9,"type":"BOOTCode"}],"inclusive_time":11,"spesh_entries":9,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":10},{"exclusive_time":41,"id":48621584,"line":14587,"name":"infix:<xx>","allocations":[{"count":1,"id":44228640,"type":"Hash"}],"inclusive_time":3660,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":20,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":21,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":38,"id":48625232,"line":14616,"name":"infix:<xx>","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":2,"id":44229096,"type":"Scalar"},{"count":1,"id":33960304,"type":"BOOTArray"},{"count":1,"id":44228664,"type":"List"}],"inclusive_time":3597,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":38,"id":93460480,"line":78,"name":"","inclusive_time":3555,"file":"hibbified-249.p6","entries":10,"callees":[{"exclusive_time":4,"id":49916320,"line":16988,"name":"elems","inclusive_time":4,"file":"gen/moar/m-CORE.setting","entries":10},{"exclusive_time":20,"id":85412224,"line":5,"name":"random-bytes","inclusive_time":1204,"file":"hibbified-249.p6","entries":1,"callees":[{"exclusive_time":10,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":56,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":35,"id":52313712,"line":1708,"name":"","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":14,"id":33961312,"type":"NQPArray"},{"count":3,"id":33961360,"type":"NQPArrayIter"},{"count":6,"id":33960328,"type":"BOOTHash"},{"count":4,"id":33960832,"type":"BOOTIntArray"},{"count":3,"id":33960232,"type":"BOOTInt"}],"inclusive_time":44,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":9,"id":52314016,"line":1738,"name":"is_narrower","inclusive_time":9,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":6,"entries":6}]},{"exclusive_time":1,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]},{"exclusive_time":19,"id":90023072,"line":5,"name":"random-bytes","inclusive_time":1127,"file":"hibbified-249.p6","entries":1,"callees":[{"exclusive_time":25,"id":49772224,"line":13386,"name":"roll","inclusive_time":689,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":14,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":82,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":45,"id":52313712,"line":1708,"name":"","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":19,"id":33961312,"type":"NQPArray"},{"count":4,"id":33961360,"type":"NQPArrayIter"},{"count":8,"id":33960328,"type":"BOOTHash"},{"count":6,"id":33960832,"type":"BOOTIntArray"},{"count":4,"id":33960232,"type":"BOOTInt"}],"inclusive_time":67,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":21,"id":52314016,"line":1738,"name":"is_narrower","inclusive_time":21,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":12,"entries":12}]},{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":48,"id":49775872,"line":13419,"name":"roll","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":581,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":30,"id":49750336,"line":13153,"name":"elems","allocations":[{"count":1,"id":44228640,"type":"Hash"},{"count":3,"id":44228616,"type":"IntAttrRef"}],"inclusive_time":387,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":35,"id":48477792,"line":8446,"name":"infix:<->","allocations":[{"count":1,"id":44229024,"type":"Int"}],"inclusive_time":35,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":7,"id":48439184,"line":7912,"name":"infix:<->","inclusive_time":87,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":75,"id":52314624,"line":2048,"name":"","allocations":[{"count":4,"id":33960376,"spesh":4,"type":"BOOTCode"},{"count":4,"id":33961312,"spesh":4,"type":"NQPArray"},{"count":2,"id":33960328,"spesh":2,"type":"BOOTHash"}],"inclusive_time":77,"spesh_entries":2,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":2,"callees":[{"exclusive_time":1,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":2}]},{"exclusive_time":2,"id":48477792,"line":8446,"name":"infix:<->","allocations":[{"count":2,"id":44229024,"type":"Int"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":2}]},{"exclusive_time":1,"id":48477184,"line":8439,"name":"infix:<+>","allocations":[{"count":1,"id":44229024,"type":"Int"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":125,"id":48271376,"line":5208,"name":"infix:<max>","inclusive_time":232,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":18,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":19,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":13,"id":48272288,"line":5211,"name":"infix:<max>","inclusive_time":87,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":14,"id":48524608,"line":8782,"name":"infix:<cmp>","inclusive_time":72,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":55,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"spesh":2,"type":"BOOTCode"},{"count":2,"id":33961312,"spesh":2,"type":"NQPArray"},{"count":1,"id":33960328,"spesh":1,"type":"BOOTHash"}],"inclusive_time":55,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":2,"id":48525520,"line":8789,"name":"infix:<cmp>","inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":1,"id":48484784,"line":8540,"name":"infix:«>»","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]}]}]},{"exclusive_time":119,"id":49776480,"line":13420,"name":"","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":2,"id":44229096,"type":"Scalar"},{"count":2,"id":44228616,"type":"IntAttrRef"}],"inclusive_time":145,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49776784,"line":13422,"name":"","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":48477184,"line":8439,"name":"infix:<+>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":2,"id":48272288,"line":5211,"name":"infix:<max>","inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":48525520,"line":8789,"name":"infix:<cmp>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":48484784,"line":8540,"name":"infix:«>»","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":17,"id":49777392,"line":13432,"name":"new","allocations":[{"count":1,"id":67906272,"type":"<anon|348661744>"}],"inclusive_time":19,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":49777088,"line":13426,"name":"BUILD","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":1,"id":49700480,"line":12399,"name":"new","allocations":[{"count":1,"id":67909080,"type":"Seq"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]}]}]},{"exclusive_time":5,"id":49079712,"line":941,"name":"new","inclusive_time":418,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":15,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"},{"count":1,"id":33960520,"type":"CallCapture"}],"inclusive_time":78,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":4,"id":52294864,"line":920,"name":"is_bindable","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"}],"inclusive_time":62,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":2,"id":52295168,"line":926,"name":"","inclusive_time":58,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":13,"id":52292736,"line":606,"name":"bind","allocations":[{"count":1,"id":44228640,"type":"Hash"}],"inclusive_time":55,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":19,"id":52290912,"line":168,"name":"bind_one_param","allocations":[{"count":8,"id":33960376,"type":"BOOTCode"},{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":41,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":4,"callees":[{"exclusive_time":1,"id":52616112,"line":2635,"name":"type_check","inclusive_time":1,"file":"gen/moar/m-Metamodel.nqp","entries":1},{"exclusive_time":6,"id":49698960,"line":12379,"name":"cache","allocations":[{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":21,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":5,"id":49701088,"line":12407,"name":"iterator","inclusive_time":5,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":52616112,"line":2635,"name":"type_check","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":4,"id":49791072,"line":13804,"name":"from-iterator","allocations":[{"count":1,"id":44228664,"type":"List"},{"count":1,"id":68411984,"type":"IterationBuffer"},{"count":1,"id":65481320,"type":"List::Reifier"}],"inclusive_time":8,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":3,"id":49800496,"line":13985,"name":"reification-target","inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]}]}]},{"exclusive_time":0,"id":52292432,"line":573,"name":"handle_optional","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]}]}]}]},{"exclusive_time":6,"id":49911760,"line":16936,"name":"new","allocations":[{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":333,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49698960,"line":12379,"name":"cache","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":4,"id":49912368,"line":16943,"name":"create","allocations":[{"count":1,"id":44229096,"type":"Scalar"},{"count":1,"id":73528976,"type":"array[uint8]"}],"inclusive_time":4,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49072720,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]},{"exclusive_time":22,"id":49927264,"line":16355,"name":"STORE","allocations":[{"count":1,"id":44229096,"type":"Scalar"},{"count":13,"id":44229072,"type":"IntLexRef"}],"inclusive_time":320,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":10,"id":49797760,"line":13932,"name":"elems","allocations":[{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":267,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":13,"id":49845792,"line":13753,"name":"reify-until-lazy","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":2,"id":44229096,"type":"Scalar"}],"inclusive_time":251,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":27,"id":49213776,"line":2476,"name":"push-until-lazy","allocations":[{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":237,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49215296,"line":2511,"name":"is-lazy","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":101,"id":49778000,"line":13438,"name":"push-all","allocations":[{"count":1,"id":44229096,"type":"Scalar"},{"count":27,"id":44228616,"type":"IntAttrRef"},{"count":13,"id":44229024,"type":"Int"}],"inclusive_time":209,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":13,"id":48252528,"line":2179,"name":"postfix:<-->","inclusive_time":28,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":12,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":13,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":1,"id":48475664,"line":8419,"name":"postfix:<-->","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":4,"id":48438272,"line":7908,"name":"infix:<+>","inclusive_time":51,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":42,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"spesh":2,"type":"BOOTCode"},{"count":2,"id":33961312,"spesh":2,"type":"NQPArray"},{"count":1,"id":33960328,"spesh":1,"type":"BOOTHash"}],"inclusive_time":43,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":1,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]},{"exclusive_time":3,"id":48477184,"line":8439,"name":"infix:<+>","allocations":[{"count":1,"id":44229024,"type":"Int"}],"inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":6,"id":49692880,"line":12283,"name":"push","inclusive_time":6,"file":"gen/moar/m-CORE.setting","entries":13},{"exclusive_time":6,"id":48475664,"line":8419,"name":"postfix:<-->","inclusive_time":6,"file":"gen/moar/m-CORE.setting","entries":13},{"exclusive_time":15,"id":48477184,"line":8439,"name":"infix:<+>","allocations":[{"count":12,"id":44229024,"type":"Int","jit":5}],"inclusive_time":15,"file":"gen/moar/m-CORE.setting","jit_entries":5,"entries":12}]}]},{"exclusive_time":0,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":52616112,"line":2635,"name":"type_check","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","jit_entries":1,"entries":1},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":49072720,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":5,"id":49849440,"line":13795,"name":"fully-reified","inclusive_time":5,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":48509712,"line":8704,"name":"prefix:<!>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]}]},{"exclusive_time":28,"id":49799280,"line":13954,"name":"AT-POS","inclusive_time":30,"file":"gen/moar/m-CORE.setting","entries":13,"callees":[{"exclusive_time":1,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":13,"entries":13},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":13,"entries":13}]}]}]}]}]}]},{"exclusive_time":26,"id":90023072,"line":5,"name":"random-bytes","inclusive_time":2308,"file":"hibbified-249.p6","entries":9,"callees":[{"exclusive_time":22,"id":49775872,"line":13419,"name":"roll","allocations":[{"count":9,"id":33960376,"type":"BOOTCode"},{"count":9,"id":44229096,"type":"Scalar"}],"inclusive_time":269,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":56,"id":49750336,"line":13153,"name":"elems","allocations":[{"count":9,"id":44228640,"type":"Hash"},{"count":27,"id":44228616,"type":"IntAttrRef"}],"inclusive_time":118,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":23,"id":48477792,"line":8446,"name":"infix:<->","allocations":[{"count":27,"id":44229024,"type":"Int"}],"inclusive_time":23,"file":"gen/moar/m-CORE.setting","entries":27},{"exclusive_time":5,"id":48477184,"line":8439,"name":"infix:<+>","allocations":[{"count":9,"id":44229024,"type":"Int","jit":2}],"inclusive_time":5,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":9},{"exclusive_time":21,"id":48272288,"line":5211,"name":"infix:<max>","inclusive_time":33,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":8,"id":48525520,"line":8789,"name":"infix:<cmp>","inclusive_time":8,"file":"gen/moar/m-CORE.setting","entries":9},{"exclusive_time":3,"id":48484784,"line":8540,"name":"infix:«>»","inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":9}]}]},{"exclusive_time":57,"id":49776480,"line":13420,"name":"","allocations":[{"count":9,"id":33960376,"type":"BOOTCode"},{"count":18,"id":44229096,"type":"Scalar"},{"count":18,"id":44228616,"type":"IntAttrRef"}],"inclusive_time":128,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":5,"id":49776784,"line":13422,"name":"","inclusive_time":5,"file":"gen/moar/m-CORE.setting","entries":9},{"exclusive_time":6,"id":48477184,"line":8439,"name":"infix:<+>","inclusive_time":6,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":9},{"exclusive_time":17,"id":48272288,"line":5211,"name":"infix:<max>","inclusive_time":28,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":6,"id":48525520,"line":8789,"name":"infix:<cmp>","inclusive_time":6,"file":"gen/moar/m-CORE.setting","entries":9},{"exclusive_time":3,"id":48484784,"line":8540,"name":"infix:«>»","inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":9}]},{"exclusive_time":14,"id":49777392,"line":13432,"name":"new","allocations":[{"count":9,"id":67906272,"type":"<anon|348661744>"}],"inclusive_time":23,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":8,"id":49777088,"line":13426,"name":"BUILD","inclusive_time":8,"file":"gen/moar/m-CORE.setting","entries":9}]},{"exclusive_time":6,"id":49700480,"line":12399,"name":"new","allocations":[{"count":9,"id":67909080,"type":"Seq"}],"inclusive_time":6,"file":"gen/moar/m-CORE.setting","entries":9}]}]},{"exclusive_time":44,"id":49079712,"line":941,"name":"new","inclusive_time":2012,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":1,"id":52321312,"line":3008,"name":"","allocations":[{"count":9,"id":44228664,"type":"List","jit":9}],"inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":9,"entries":9},{"exclusive_time":106,"id":52314624,"line":2048,"name":"","allocations":[{"count":18,"id":33960376,"type":"BOOTCode"},{"count":18,"id":33961312,"type":"NQPArray"},{"count":9,"id":33960328,"type":"BOOTHash"},{"count":9,"id":33960520,"type":"CallCapture"}],"inclusive_time":440,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":9,"callees":[{"exclusive_time":17,"id":52294864,"line":920,"name":"is_bindable","allocations":[{"count":9,"id":33960376,"spesh":5,"type":"BOOTCode"}],"inclusive_time":334,"spesh_entries":5,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":9,"callees":[{"exclusive_time":15,"id":52295168,"line":926,"name":"","inclusive_time":316,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":9,"callees":[{"exclusive_time":75,"id":52292736,"line":606,"name":"bind","allocations":[{"count":9,"id":44228640,"type":"Hash"}],"inclusive_time":300,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":9,"callees":[{"exclusive_time":115,"id":52290912,"line":168,"name":"bind_one_param","allocations":[{"count":72,"id":33960376,"type":"BOOTCode"},{"count":9,"id":44229096,"type":"Scalar"}],"inclusive_time":221,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":36,"callees":[{"exclusive_time":6,"id":52616112,"line":2635,"name":"type_check","inclusive_time":6,"file":"gen/moar/m-Metamodel.nqp","jit_entries":3,"entries":9},{"exclusive_time":28,"id":49698960,"line":12379,"name":"cache","allocations":[{"count":9,"id":44229096,"type":"Scalar"}],"inclusive_time":99,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":22,"id":49701088,"line":12407,"name":"iterator","inclusive_time":26,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9,"callees":[{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9},{"exclusive_time":2,"id":52616112,"line":2635,"name":"type_check","inclusive_time":2,"file":"gen/moar/m-Metamodel.nqp","jit_entries":9,"entries":9}]},{"exclusive_time":22,"id":49791072,"line":13804,"name":"from-iterator","allocations":[{"count":9,"id":44228664,"type":"List"},{"count":9,"id":68411984,"type":"IterationBuffer"},{"count":9,"id":65481320,"type":"List::Reifier"}],"inclusive_time":44,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":20,"id":49800496,"line":13985,"name":"reification-target","inclusive_time":22,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":1,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9}]}]}]}]},{"exclusive_time":4,"id":52292432,"line":573,"name":"handle_optional","inclusive_time":4,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":9}]}]}]}]},{"exclusive_time":37,"id":49911760,"line":16936,"name":"new","allocations":[{"count":9,"id":44229096,"type":"Scalar"}],"inclusive_time":1526,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":7,"id":49698960,"line":12379,"name":"cache","inclusive_time":7,"file":"gen/moar/m-CORE.setting","entries":9},{"exclusive_time":20,"id":49912368,"line":16943,"name":"create","allocations":[{"count":9,"id":44229096,"type":"Scalar"},{"count":9,"id":73528976,"type":"array[uint8]"}],"inclusive_time":20,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":0,"id":49072720,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9}]},{"exclusive_time":143,"id":49927264,"line":16355,"name":"STORE","allocations":[{"count":9,"id":44229096,"type":"Scalar"},{"count":117,"id":44229072,"type":"IntLexRef"}],"inclusive_time":1460,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":43,"id":49797760,"line":13932,"name":"elems","allocations":[{"count":9,"id":44229096,"type":"Scalar","jit":9}],"inclusive_time":1075,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9,"callees":[{"exclusive_time":1,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9},{"exclusive_time":62,"id":49845792,"line":13753,"name":"reify-until-lazy","allocations":[{"count":9,"id":33960376,"type":"BOOTCode"},{"count":18,"id":44229096,"type":"Scalar"}],"inclusive_time":1004,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":20,"id":49213776,"line":2476,"name":"push-until-lazy","allocations":[{"count":9,"id":44229096,"type":"Scalar"}],"inclusive_time":936,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":2,"id":49215296,"line":2511,"name":"is-lazy","inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":9},{"exclusive_time":691,"id":49778000,"line":13438,"name":"push-all","allocations":[{"count":9,"id":44229096,"type":"Scalar"},{"count":243,"id":44228616,"type":"IntAttrRef"},{"count":117,"id":44229024,"type":"Int"}],"inclusive_time":913,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":58,"id":48475664,"line":8419,"name":"postfix:<-->","inclusive_time":58,"file":"gen/moar/m-CORE.setting","entries":126},{"exclusive_time":108,"id":48477184,"line":8439,"name":"infix:<+>","allocations":[{"count":117,"id":44229024,"type":"Int","jit":117}],"inclusive_time":108,"file":"gen/moar/m-CORE.setting","jit_entries":117,"entries":117},{"exclusive_time":54,"id":49692880,"line":12283,"name":"push","inclusive_time":54,"file":"gen/moar/m-CORE.setting","entries":117}]}]},{"exclusive_time":1,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9},{"exclusive_time":3,"id":52616112,"line":2635,"name":"type_check","inclusive_time":3,"file":"gen/moar/m-Metamodel.nqp","jit_entries":9,"entries":9},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9}]},{"exclusive_time":0,"id":49072720,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9},{"exclusive_time":22,"id":49849440,"line":13795,"name":"fully-reified","inclusive_time":24,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":1,"id":48509712,"line":8704,"name":"prefix:<!>","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":18,"entries":18}]}]},{"exclusive_time":222,"id":49799280,"line":13954,"name":"AT-POS","inclusive_time":242,"file":"gen/moar/m-CORE.setting","entries":117,"callees":[{"exclusive_time":11,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":11,"file":"gen/moar/m-CORE.setting","jit_entries":117,"entries":117},{"exclusive_time":8,"id":49806576,"line":14088,"name":"sink","inclusive_time":8,"file":"gen/moar/m-CORE.setting","jit_entries":117,"entries":117}]}]}]}]}]}]},{"exclusive_time":3,"id":49919056,"line":16998,"name":"sink","inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":10}]}]},{"exclusive_time":31,"id":49859472,"line":15771,"name":"STORE","inclusive_time":534,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":10,"callees":[{"exclusive_time":99,"id":49860080,"line":15779,"name":"STORE-ITERABLE","allocations":[{"count":10,"id":33960376,"type":"BOOTCode","jit":8},{"count":10,"id":68411984,"type":"IterationBuffer","jit":8},{"count":10,"id":44229096,"type":"Scalar","jit":8}],"inclusive_time":502,"file":"gen/moar/m-CORE.setting","jit_entries":8,"entries":10,"callees":[{"exclusive_time":61,"id":49800800,"line":13990,"name":"iterator","allocations":[{"count":10,"id":33960376,"type":"BOOTCode","jit":9}],"inclusive_time":136,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":10,"callees":[{"exclusive_time":1,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":10,"entries":10},{"exclusive_time":1,"id":49806576,"line":14088,"name":"sink","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":10,"entries":10},{"exclusive_time":15,"id":49801104,"line":13992,"name":"","allocations":[{"count":10,"id":44229096,"type":"Scalar","jit":10}],"inclusive_time":15,"file":"gen/moar/m-CORE.setting","jit_entries":10,"entries":10},{"exclusive_time":43,"id":49801712,"line":14004,"name":"new","allocations":[{"count":10,"id":67906128,"type":"<anon|352550624>","jit":9}],"inclusive_time":57,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":10,"callees":[{"exclusive_time":2,"id":49052656,"line":495,"name":"of","inclusive_time":2,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":10},{"exclusive_time":11,"id":49801408,"line":13998,"name":"BUILD","allocations":[{"count":10,"id":44229096,"type":"Scalar","jit":9}],"inclusive_time":11,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":10}]}]},{"exclusive_time":13,"id":49882880,"line":15464,"name":"new","allocations":[{"count":10,"id":68412368,"type":"Array::ArrayReificationTarget","jit":9}],"inclusive_time":13,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":10},{"exclusive_time":203,"id":49802624,"line":14020,"name":"push-until-lazy","allocations":[{"count":20,"id":44229096,"type":"Scalar","jit":18}],"inclusive_time":251,"file":"gen/moar/m-CORE.setting","deopt_one":9,"jit_entries":9,"entries":10,"callees":[{"exclusive_time":45,"id":49883184,"line":15471,"name":"push","allocations":[{"count":100,"id":44229096,"type":"Scalar","jit":92}],"inclusive_time":45,"file":"gen/moar/m-CORE.setting","jit_entries":92,"entries":100},{"exclusive_time":2,"id":48509712,"line":8704,"name":"prefix:<!>","inclusive_time":2,"file":"gen/moar/m-CORE.setting","jit_entries":10,"entries":10}]},{"exclusive_time":2,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":2,"file":"gen/moar/m-CORE.setting","inlined_entries":8,"jit_entries":10,"entries":10}]}]},{"exclusive_time":36230,"id":82405840,"line":83,"name":"","allocations":[{"count":601,"id":44229096,"type":"Scalar","jit":344}],"inclusive_time":152290839,"file":"hibbified-249.p6","deopt_one":45,"jit_entries":344,"entries":601,"callees":[{"exclusive_time":857,"id":52311584,"line":1621,"name":"","allocations":[{"count":601,"id":44229240,"spesh":601,"type":"Block"},{"count":601,"id":33960376,"spesh":601,"type":"BOOTCode"}],"inclusive_time":857,"spesh_entries":601,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":601},{"exclusive_time":7413,"id":98277280,"line":52,"name":"survival","allocations":[{"count":601,"id":44229096,"type":"Scalar","jit":344}],"inclusive_time":37010916,"file":"hibbified-249.p6","jit_entries":344,"entries":601,"callees":[{"exclusive_time":24865,"id":49359392,"line":4666,"name":"sort","allocations":[{"count":1202,"id":33960376,"spesh":688,"type":"BOOTCode"},{"count":601,"id":44229096,"spesh":344,"type":"Scalar"},{"count":1202,"id":33960304,"spesh":688,"type":"BOOTArray"},{"count":14875,"id":44229072,"spesh":8525,"type":"IntLexRef"}],"inclusive_time":36933525,"spesh_entries":344,"file":"gen/moar/m-CORE.setting","entries":601,"callees":[{"exclusive_time":2629,"id":49800800,"line":13990,"name":"iterator","allocations":[{"count":601,"id":33960376,"type":"BOOTCode","jit":600}],"inclusive_time":6063,"file":"gen/moar/m-CORE.setting","jit_entries":600,"entries":601,"callees":[{"exclusive_time":95,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":95,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601},{"exclusive_time":72,"id":49806576,"line":14088,"name":"sink","inclusive_time":72,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601},{"exclusive_time":503,"id":49801104,"line":13992,"name":"","allocations":[{"count":601,"id":44229096,"type":"Scalar","jit":601}],"inclusive_time":503,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601},{"exclusive_time":1335,"id":49801712,"line":14004,"name":"new","allocations":[{"count":601,"id":67906128,"type":"<anon|352550624>","jit":600}],"inclusive_time":2762,"file":"gen/moar/m-CORE.setting","jit_entries":600,"entries":601,"callees":[{"exclusive_time":1119,"id":49877712,"line":16147,"name":"of","inclusive_time":1184,"file":"gen/moar/m-CORE.setting","deopt_one":599,"jit_entries":599,"entries":601,"callees":[{"exclusive_time":65,"id":52651072,"line":3777,"name":"of","inclusive_time":65,"file":"gen/moar/m-Metamodel.nqp","jit_entries":555,"entries":601}]},{"exclusive_time":242,"id":49801408,"line":13998,"name":"BUILD","inclusive_time":242,"file":"gen/moar/m-CORE.setting","jit_entries":600,"entries":601}]}]},{"exclusive_time":1439,"id":49080016,"line":942,"name":"new","allocations":[{"count":601,"id":44228640,"spesh":600,"type":"Hash"}],"inclusive_time":11413,"spesh_entries":600,"file":"gen/moar/m-CORE.setting","entries":601,"callees":[{"exclusive_time":2740,"id":49081536,"line":956,"name":"bless","allocations":[{"count":601,"id":44228640,"spesh":600,"type":"Hash"},{"count":601,"id":68411984,"spesh":600,"type":"IterationBuffer"}],"inclusive_time":9973,"spesh_entries":600,"file":"gen/moar/m-CORE.setting","entries":601,"callees":[{"exclusive_time":3501,"id":49793200,"line":13860,"name":"from-slurpy-flat","allocations":[{"count":601,"id":33960376,"spesh":600,"type":"BOOTCode"},{"count":1202,"id":68411984,"spesh":1200,"type":"IterationBuffer"},{"count":601,"id":44228976,"spesh":600,"type":"Array"},{"count":601,"id":65481320,"spesh":600,"type":"List::Reifier"}],"inclusive_time":4980,"spesh_entries":600,"file":"gen/moar/m-CORE.setting","entries":601,"callees":[{"exclusive_time":154,"id":52321312,"line":3008,"name":"","allocations":[{"count":601,"id":44228664,"type":"List","jit":601}],"inclusive_time":154,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":601,"entries":601},{"exclusive_time":970,"id":49861296,"line":15806,"name":"reification-target","inclusive_time":1324,"file":"gen/moar/m-CORE.setting","jit_entries":600,"entries":601,"callees":[{"exclusive_time":353,"id":49882880,"line":15464,"name":"new","allocations":[{"count":601,"id":68412368,"type":"Array::ArrayReificationTarget","jit":600}],"inclusive_time":353,"file":"gen/moar/m-CORE.setting","jit_entries":600,"entries":601}]}]},{"exclusive_time":2101,"id":49081840,"line":960,"name":"BUILDALL","allocations":[{"count":601,"id":33960376,"type":"BOOTCode","jit":600}],"inclusive_time":2252,"file":"gen/moar/m-CORE.setting","jit_entries":600,"entries":601,"callees":[{"exclusive_time":150,"id":52582064,"line":1475,"name":"BUILDALLPLAN","inclusive_time":150,"file":"gen/moar/m-Metamodel.nqp","jit_entries":600,"entries":601}]}]}]},{"exclusive_time":12756,"id":49802624,"line":14020,"name":"push-until-lazy","allocations":[{"count":1202,"id":44229096,"type":"Scalar","jit":1138},{"count":591,"id":44229024,"type":"Int","jit":560}],"inclusive_time":20064,"file":"gen/moar/m-CORE.setting","jit_entries":569,"entries":601,"callees":[{"exclusive_time":6,"id":49170912,"line":1907,"name":"push","inclusive_time":21,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":13,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":14,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":1,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":49692880,"line":12283,"name":"push","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":7194,"id":49692880,"line":12283,"name":"push","inclusive_time":7194,"file":"gen/moar/m-CORE.setting","entries":14874},{"exclusive_time":91,"id":48509712,"line":8704,"name":"prefix:<!>","inclusive_time":91,"file":"gen/moar/m-CORE.setting","inlined_entries":569,"jit_entries":601,"entries":601}]},{"exclusive_time":71,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":71,"spesh_entries":344,"file":"gen/moar/m-CORE.setting","inlined_entries":344,"jit_entries":257,"entries":601},{"exclusive_time":61,"id":49806576,"line":14088,"name":"sink","inclusive_time":61,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601},{"exclusive_time":6273,"id":49126832,"line":1423,"name":"dispatch:<.?>","allocations":[{"count":601,"id":44229096,"spesh":562,"type":"Scalar"},{"count":601,"id":44229192,"spesh":562,"type":"Capture"}],"inclusive_time":9661,"spesh_entries":562,"file":"gen/moar/m-CORE.setting","entries":601,"callees":[{"exclusive_time":409,"id":49689840,"line":12248,"name":"FLATTENABLE_LIST","allocations":[{"count":601,"id":33960304,"type":"BOOTArray","jit":599}],"inclusive_time":409,"file":"gen/moar/m-CORE.setting","jit_entries":599,"entries":601},{"exclusive_time":345,"id":49690144,"line":12249,"name":"FLATTENABLE_HASH","allocations":[{"count":601,"id":33960328,"type":"BOOTHash","jit":599}],"inclusive_time":345,"file":"gen/moar/m-CORE.setting","jit_entries":599,"entries":601},{"exclusive_time":43,"id":49564592,"line":10027,"name":"Stringy","inclusive_time":43,"file":"gen/moar/m-CORE.setting","jit_entries":599,"entries":601},{"exclusive_time":2514,"id":49411680,"line":6408,"name":"count","inclusive_time":2589,"file":"gen/moar/m-CORE.setting","entries":601,"callees":[{"exclusive_time":75,"id":50093552,"line":18706,"name":"count","inclusive_time":75,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601}]}]},{"exclusive_time":153,"id":49079408,"line":937,"name":"defined","inclusive_time":153,"file":"gen/moar/m-CORE.setting","jit_entries":593,"entries":601},{"exclusive_time":256,"id":48483568,"line":8526,"name":"infix:«<»","inclusive_time":256,"spesh_entries":344,"file":"gen/moar/m-CORE.setting","inlined_entries":344,"jit_entries":257,"entries":601},{"exclusive_time":5220,"id":49360912,"line":4677,"name":"","allocations":[{"count":601,"id":44229096,"type":"Scalar","jit":394},{"count":601,"id":44228664,"type":"List","jit":394}],"inclusive_time":36589815,"file":"gen/moar/m-CORE.setting","jit_entries":394,"entries":601,"callees":[{"exclusive_time":855,"id":49080016,"line":942,"name":"new","allocations":[{"count":601,"id":44228640,"spesh":600,"type":"Hash"}],"inclusive_time":6840,"spesh_entries":600,"file":"gen/moar/m-CORE.setting","entries":601,"callees":[{"exclusive_time":1610,"id":49081536,"line":956,"name":"bless","allocations":[{"count":601,"id":44228640,"spesh":600,"type":"Hash"},{"count":601,"id":68411984,"spesh":600,"type":"IterationBuffer"}],"inclusive_time":5984,"spesh_entries":600,"file":"gen/moar/m-CORE.setting","entries":601,"callees":[{"exclusive_time":2349,"id":49793200,"line":13860,"name":"from-slurpy-flat","allocations":[{"count":601,"id":33960376,"spesh":600,"type":"BOOTCode"},{"count":1202,"id":68411984,"spesh":1200,"type":"IterationBuffer"},{"count":601,"id":44228976,"spesh":600,"type":"Array"},{"count":601,"id":65481320,"spesh":600,"type":"List::Reifier"}],"inclusive_time":3404,"spesh_entries":600,"file":"gen/moar/m-CORE.setting","entries":601,"callees":[{"exclusive_time":114,"id":52321312,"line":3008,"name":"","allocations":[{"count":601,"id":44228664,"type":"List","jit":601}],"inclusive_time":114,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":601,"entries":601},{"exclusive_time":706,"id":49861296,"line":15806,"name":"reification-target","inclusive_time":941,"file":"gen/moar/m-CORE.setting","jit_entries":600,"entries":601,"callees":[{"exclusive_time":234,"id":49882880,"line":15464,"name":"new","allocations":[{"count":601,"id":68412368,"type":"Array::ArrayReificationTarget","jit":600}],"inclusive_time":234,"file":"gen/moar/m-CORE.setting","jit_entries":600,"entries":601}]}]},{"exclusive_time":908,"id":49081840,"line":960,"name":"BUILDALL","allocations":[{"count":601,"id":33960376,"type":"BOOTCode","jit":600}],"inclusive_time":968,"file":"gen/moar/m-CORE.setting","jit_entries":600,"entries":601,"callees":[{"exclusive_time":60,"id":52582064,"line":1475,"name":"BUILDALLPLAN","inclusive_time":60,"file":"gen/moar/m-Metamodel.nqp","jit_entries":600,"entries":601}]}]}]},{"exclusive_time":4104,"id":49299808,"line":3779,"name":"map","allocations":[{"count":1202,"id":44229096,"type":"Scalar"}],"inclusive_time":17380,"file":"gen/moar/m-CORE.setting","entries":601,"callees":[{"exclusive_time":2136,"id":49800800,"line":13990,"name":"iterator","allocations":[{"count":601,"id":33960376,"type":"BOOTCode","jit":600}],"inclusive_time":4419,"file":"gen/moar/m-CORE.setting","jit_entries":600,"entries":601,"callees":[{"exclusive_time":79,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":79,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601},{"exclusive_time":65,"id":49806576,"line":14088,"name":"sink","inclusive_time":65,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601},{"exclusive_time":405,"id":49801104,"line":13992,"name":"","allocations":[{"count":601,"id":44229096,"type":"Scalar","jit":601}],"inclusive_time":405,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601},{"exclusive_time":1261,"id":49801712,"line":14004,"name":"new","allocations":[{"count":601,"id":67906128,"type":"<anon|352550624>","jit":600}],"inclusive_time":1733,"file":"gen/moar/m-CORE.setting","jit_entries":600,"entries":601,"callees":[{"exclusive_time":49,"id":49052656,"line":495,"name":"of","inclusive_time":49,"file":"gen/moar/m-CORE.setting","jit_entries":600,"entries":601},{"exclusive_time":421,"id":49801408,"line":13998,"name":"BUILD","allocations":[{"count":601,"id":44229096,"type":"Scalar","jit":600}],"inclusive_time":421,"file":"gen/moar/m-CORE.setting","jit_entries":600,"entries":601}]}]},{"exclusive_time":5778,"id":49303152,"line":3840,"name":"sequential-map","allocations":[{"count":1202,"id":33960376,"type":"BOOTCode","jit":1200},{"count":1803,"id":44229096,"type":"Scalar","jit":1800}],"inclusive_time":8856,"file":"gen/moar/m-CORE.setting","jit_entries":600,"entries":601,"callees":[{"exclusive_time":943,"id":49411680,"line":6408,"name":"count","inclusive_time":994,"file":"gen/moar/m-CORE.setting","jit_entries":600,"entries":601,"callees":[{"exclusive_time":50,"id":50093552,"line":18706,"name":"count","inclusive_time":50,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601}]},{"exclusive_time":194,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":194,"file":"gen/moar/m-CORE.setting","inlined_entries":600,"jit_entries":601,"entries":601},{"exclusive_time":358,"id":49304064,"line":3847,"name":"","inclusive_time":358,"file":"gen/moar/m-CORE.setting","jit_entries":600,"entries":601},{"exclusive_time":1180,"id":49401344,"line":3827,"name":"new","allocations":[{"count":1803,"id":44229096,"type":"Scalar","jit":1800},{"count":601,"id":67908360,"type":"<anon|159066640>","jit":600}],"inclusive_time":1180,"file":"gen/moar/m-CORE.setting","jit_entries":600,"entries":601},{"exclusive_time":349,"id":49700480,"line":12399,"name":"new","allocations":[{"count":601,"id":67909080,"type":"Seq","jit":600}],"inclusive_time":349,"file":"gen/moar/m-CORE.setting","jit_entries":600,"entries":601}]}]},{"exclusive_time":1809,"id":49701088,"line":12407,"name":"iterator","inclusive_time":2182,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601,"callees":[{"exclusive_time":54,"id":49806576,"line":14088,"name":"sink","inclusive_time":54,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601},{"exclusive_time":317,"id":52616112,"line":2635,"name":"type_check","inclusive_time":317,"file":"gen/moar/m-Metamodel.nqp","jit_entries":601,"entries":601}]},{"exclusive_time":2309,"id":49213168,"line":2463,"name":"push-all","allocations":[{"count":601,"id":44229096,"type":"Scalar","jit":573}],"inclusive_time":36558192,"file":"gen/moar/m-CORE.setting","jit_entries":573,"entries":601,"callees":[{"exclusive_time":3126,"id":49212864,"line":2454,"name":"push-at-least","allocations":[{"count":601,"id":44229096,"spesh":575,"type":"Scalar"}],"inclusive_time":36555735,"spesh_entries":575,"file":"gen/moar/m-CORE.setting","entries":601,"callees":[{"exclusive_time":152687,"id":49212256,"line":2436,"name":"push-exactly","allocations":[{"count":1202,"id":44229096,"type":"Scalar","jit":1188}],"inclusive_time":36552609,"file":"gen/moar/m-CORE.setting","deopt_one":594,"jit_entries":594,"entries":601,"callees":[{"exclusive_time":196658,"id":49304368,"line":3853,"name":"pull-one","allocations":[{"count":15476,"id":33960376,"type":"BOOTCode","jit":15335},{"count":17880,"id":44229096,"type":"Scalar","jit":17715}],"inclusive_time":36381672,"file":"gen/moar/m-CORE.setting","deopt_one":595,"jit_entries":15335,"entries":15476,"callees":[{"exclusive_time":3488,"id":48510016,"line":8705,"name":"prefix:<!>","inclusive_time":3488,"file":"gen/moar/m-CORE.setting","inlined_entries":14740,"jit_entries":15469,"entries":15476},{"exclusive_time":1733,"id":49417456,"line":6478,"name":"phasers","inclusive_time":1836,"file":"gen/moar/m-CORE.setting","jit_entries":1202,"entries":1202,"callees":[{"exclusive_time":103,"id":49806576,"line":14088,"name":"sink","inclusive_time":103,"file":"gen/moar/m-CORE.setting","jit_entries":1202,"entries":1202}]},{"exclusive_time":803,"id":48405440,"line":7763,"name":"prefix:<+>","inclusive_time":4051,"file":"gen/moar/m-CORE.setting","jit_entries":600,"entries":601,"callees":[{"exclusive_time":952,"id":49795632,"line":13911,"name":"Numeric","inclusive_time":3248,"spesh_entries":600,"file":"gen/moar/m-CORE.setting","entries":601,"callees":[{"exclusive_time":2124,"id":49797760,"line":13932,"name":"elems","inclusive_time":2295,"spesh_entries":600,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":601,"callees":[{"exclusive_time":72,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":72,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601},{"exclusive_time":98,"id":49806576,"line":14088,"name":"sink","inclusive_time":98,"file":"gen/moar/m-CORE.setting","jit_entries":1202,"entries":1202}]}]}]},{"exclusive_time":1830,"id":49078192,"line":929,"name":"Bool","inclusive_time":4526,"spesh_entries":600,"file":"gen/moar/m-CORE.setting","entries":601,"callees":[{"exclusive_time":122,"id":52321312,"line":3008,"name":"","allocations":[{"count":601,"id":44228664,"type":"List","jit":601}],"inclusive_time":122,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":601,"entries":601},{"exclusive_time":2413,"id":49794720,"line":13904,"name":"Bool","inclusive_time":2574,"file":"gen/moar/m-CORE.setting","jit_entries":600,"entries":601,"callees":[{"exclusive_time":56,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":56,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601},{"exclusive_time":61,"id":49806576,"line":14088,"name":"sink","inclusive_time":61,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601},{"exclusive_time":41,"id":48508496,"line":8699,"name":"prefix:<so>","inclusive_time":41,"file":"gen/moar/m-CORE.setting","jit_entries":600,"entries":601}]}]},{"exclusive_time":3149,"id":49806576,"line":14088,"name":"sink","inclusive_time":3149,"file":"gen/moar/m-CORE.setting","jit_entries":30952,"entries":30952},{"exclusive_time":7584,"id":49802016,"line":14006,"name":"pull-one","inclusive_time":7761,"file":"gen/moar/m-CORE.setting","jit_entries":15475,"entries":15476,"callees":[{"exclusive_time":177,"id":49802320,"line":14013,"name":"reify-and-pull-one","inclusive_time":177,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601}]},{"exclusive_time":82009,"id":39774400,"line":1558,"name":"infix:<=:=>","inclusive_time":253987,"file":"gen/moar/m-CORE.setting","jit_entries":14869,"entries":14875,"callees":[{"exclusive_time":161040,"id":52314624,"line":2048,"name":"","allocations":[{"count":29750,"id":33960376,"type":"BOOTCode"},{"count":29750,"id":33961312,"type":"NQPArray"},{"count":14875,"id":33960328,"type":"BOOTHash"}],"inclusive_time":167650,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":14875,"callees":[{"exclusive_time":6609,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":6609,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":14875,"entries":14875}]},{"exclusive_time":4327,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":4327,"file":"gen/moar/m-CORE.setting","entries":14875}]},{"exclusive_time":42905,"id":98874000,"line":85,"name":"","inclusive_time":35904967,"file":"hibbified-249.p6","jit_entries":14718,"entries":14875,"callees":[{"exclusive_time":236929,"id":89321232,"line":29,"name":"hamming-distance","allocations":[{"count":5196,"id":44229024,"type":"Int","jit":4949}],"inclusive_time":35862062,"file":"hibbified-249.p6","jit_entries":14628,"entries":14875,"callees":[{"exclusive_time":687424,"id":52604256,"line":2222,"name":"accepts_type","allocations":[{"count":29750,"id":33961312,"type":"NQPArray","jit":29630},{"count":59500,"id":33961360,"type":"NQPArrayIter","jit":59260},{"count":59500,"id":33960256,"type":"BOOTNum","jit":59260}],"inclusive_time":1169868,"file":"gen/moar/m-Metamodel.nqp","deopt_one":29630,"jit_entries":29630,"entries":29750,"callees":[{"exclusive_time":3736,"id":52624624,"line":3092,"name":"role_typecheck_list","inclusive_time":3736,"file":"gen/moar/m-Metamodel.nqp","jit_entries":29680,"entries":29750},{"exclusive_time":209706,"id":52600912,"line":2140,"name":"archetypes","allocations":[{"count":89250,"id":33961360,"type":"NQPArrayIter","jit":89188},{"count":59500,"id":33961384,"type":"NQPHashIter","jit":59458}],"inclusive_time":235807,"file":"gen/moar/m-Metamodel.nqp","jit_entries":89188,"entries":89250,"callees":[{"exclusive_time":6614,"id":52627664,"line":3168,"name":"archetypes","inclusive_time":6614,"file":"gen/moar/m-Metamodel.nqp","jit_entries":59460,"entries":59500},{"exclusive_time":15047,"id":52538592,"line":88,"name":"generic","inclusive_time":15047,"file":"gen/moar/m-Metamodel.nqp","inlined_entries":89188,"jit_entries":89246,"entries":89250},{"exclusive_time":4438,"id":52551968,"line":304,"name":"archetypes","inclusive_time":4438,"file":"gen/moar/m-Metamodel.nqp","jit_entries":29680,"entries":29750}]},{"exclusive_time":16477,"id":52538592,"line":88,"name":"generic","inclusive_time":16477,"file":"gen/moar/m-Metamodel.nqp","inlined_entries":29630,"jit_entries":89247,"entries":89250},{"exclusive_time":5497,"id":52602736,"line":2202,"name":"curried_role","inclusive_time":5497,"file":"gen/moar/m-Metamodel.nqp","jit_entries":59460,"entries":59500},{"exclusive_time":9349,"id":34678320,"line":596,"name":"push","inclusive_time":9349,"file":"gen/moar/stage2/NQPCORE.setting","jit_entries":29742,"entries":29750},{"exclusive_time":2943,"id":52603040,"line":2206,"name":"role_arguments","inclusive_time":2943,"file":"gen/moar/m-Metamodel.nqp","jit_entries":29680,"entries":29750},{"exclusive_time":185261,"id":52573248,"line":1073,"name":"find_method","allocations":[{"count":29750,"id":33960328,"type":"BOOTHash","jit":29637},{"count":29750,"id":33961360,"type":"NQPArrayIter","jit":29637}],"inclusive_time":204035,"file":"gen/moar/m-Metamodel.nqp","jit_entries":29637,"entries":29750,"callees":[{"exclusive_time":3637,"id":52631008,"line":3264,"name":"submethod_table","allocations":[{"count":29750,"id":33960328,"type":"BOOTHash","jit":29680}],"inclusive_time":3637,"file":"gen/moar/m-Metamodel.nqp","jit_entries":29680,"entries":29750},{"exclusive_time":7406,"id":52572336,"line":1041,"name":"mro","inclusive_time":7406,"file":"gen/moar/m-Metamodel.nqp","inlined_entries":29637,"jit_entries":29705,"entries":29750},{"exclusive_time":3679,"id":52630704,"line":3263,"name":"method_table","allocations":[{"count":29750,"id":33960328,"type":"BOOTHash","jit":29680}],"inclusive_time":3679,"file":"gen/moar/m-Metamodel.nqp","jit_entries":29680,"entries":29750},{"exclusive_time":4049,"id":52558352,"line":515,"name":"method_table","inclusive_time":4049,"file":"gen/moar/m-Metamodel.nqp","jit_entries":29740,"entries":29750}]},{"exclusive_time":4597,"id":49143552,"line":1749,"name":"ACCEPTS","inclusive_time":4597,"file":"gen/moar/m-CORE.setting","jit_entries":29680,"entries":29750}]},{"exclusive_time":37076,"id":48965712,"line":29779,"name":"METAOP_HYPER","allocations":[{"count":14875,"id":44228640,"type":"Hash","jit":14830}],"inclusive_time":55771,"file":"gen/moar/m-CORE.setting","jit_entries":14830,"entries":14875,"callees":[{"exclusive_time":18694,"id":52311584,"line":1621,"name":"","allocations":[{"count":14875,"id":44229240,"spesh":14875,"type":"Block"},{"count":14875,"id":33960376,"spesh":14875,"type":"BOOTCode"}],"inclusive_time":18694,"spesh_entries":14875,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":14875}]},{"exclusive_time":106301,"id":48966016,"line":29780,"name":"","allocations":[{"count":14875,"id":44229096,"type":"Scalar","jit":14840}],"inclusive_time":31841092,"file":"gen/moar/m-CORE.setting","jit_entries":14840,"entries":14875,"callees":[{"exclusive_time":4731,"id":49991712,"line":17376,"name":"FLATTENABLE_LIST","allocations":[{"count":14875,"id":33960304,"type":"BOOTArray","jit":14840}],"inclusive_time":4731,"file":"gen/moar/m-CORE.setting","jit_entries":14840,"entries":14875},{"exclusive_time":28073,"id":49992016,"line":17377,"name":"FLATTENABLE_HASH","inclusive_time":29537,"file":"gen/moar/m-CORE.setting","jit_entries":14840,"entries":14875,"callees":[{"exclusive_time":1464,"id":49072720,"line":856,"name":"sink","inclusive_time":1464,"file":"gen/moar/m-CORE.setting","jit_entries":14875,"entries":14875}]},{"exclusive_time":120326,"id":48971488,"line":29815,"name":"HYPER","inclusive_time":31700521,"file":"gen/moar/m-CORE.setting","entries":14875,"callees":[{"exclusive_time":278084,"id":52314624,"line":2048,"name":"","allocations":[{"count":29750,"id":33960376,"type":"BOOTCode"},{"count":29750,"id":33961312,"type":"NQPArray"},{"count":14875,"id":33960328,"type":"BOOTHash"},{"count":14875,"id":33960520,"type":"CallCapture"}],"inclusive_time":983714,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":14875,"callees":[{"exclusive_time":168,"id":52313712,"line":1708,"name":"","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":42,"id":33961312,"type":"NQPArray"},{"count":9,"id":33961360,"type":"NQPArrayIter"},{"count":16,"id":33960328,"type":"BOOTHash"},{"count":16,"id":33960832,"type":"BOOTIntArray"},{"count":8,"id":33960232,"type":"BOOTInt"}],"inclusive_time":506,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":200,"id":52314016,"line":1738,"name":"is_narrower","inclusive_time":338,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":56,"entries":56,"callees":[{"exclusive_time":131,"id":52616112,"line":2635,"name":"type_check","allocations":[{"count":128,"id":33961360,"type":"NQPArrayIter","jit":6}],"inclusive_time":137,"file":"gen/moar/m-Metamodel.nqp","jit_entries":6,"entries":88,"callees":[{"exclusive_time":6,"id":52544976,"line":161,"name":"pretending_to_be","inclusive_time":6,"spesh_entries":6,"file":"gen/moar/m-Metamodel.nqp","jit_entries":78,"entries":88}]}]}]},{"exclusive_time":53965,"id":52294864,"line":920,"name":"is_bindable","allocations":[{"count":14875,"id":33960376,"spesh":14875,"type":"BOOTCode"}],"inclusive_time":705123,"spesh_entries":14875,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":14875,"callees":[{"exclusive_time":43324,"id":52295168,"line":926,"name":"","inclusive_time":651158,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":14875,"callees":[{"exclusive_time":197890,"id":52292736,"line":606,"name":"bind","inclusive_time":607834,"spesh_entries":14870,"file":"gen/moar/m-BOOTSTRAP.nqp","deopt_one":14870,"entries":14875,"callees":[{"exclusive_time":282522,"id":52290912,"line":168,"name":"bind_one_param","allocations":[{"count":148750,"id":33960376,"type":"BOOTCode"},{"count":44625,"id":44229096,"type":"Scalar"}],"inclusive_time":395377,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":74375,"callees":[{"exclusive_time":108591,"id":52616112,"line":2635,"name":"type_check","allocations":[{"count":89250,"id":33961360,"type":"NQPArrayIter"}],"inclusive_time":112855,"file":"gen/moar/m-Metamodel.nqp","entries":44625,"callees":[{"exclusive_time":4263,"id":52544976,"line":161,"name":"pretending_to_be","inclusive_time":4263,"file":"gen/moar/m-Metamodel.nqp","jit_entries":44625,"entries":44625}]}]},{"exclusive_time":14566,"id":52292432,"line":573,"name":"handle_optional","inclusive_time":14566,"spesh_entries":29730,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":29750}]}]}]}]},{"exclusive_time":554999,"id":48976048,"line":29887,"name":"HYPER","allocations":[{"count":14875,"id":33960376,"type":"BOOTCode"},{"count":44625,"id":44229096,"type":"Scalar"}],"inclusive_time":30596479,"file":"gen/moar/m-CORE.setting","entries":14875,"callees":[{"exclusive_time":83932,"id":49933344,"line":16487,"name":"iterator","allocations":[{"count":29750,"id":33960376,"type":"BOOTCode","jit":29716}],"inclusive_time":176115,"file":"gen/moar/m-CORE.setting","jit_entries":29716,"entries":29750,"callees":[{"exclusive_time":31419,"id":49933648,"line":16488,"name":"","allocations":[{"count":29750,"id":44229096,"type":"Scalar","jit":29716}],"inclusive_time":31419,"file":"gen/moar/m-CORE.setting","jit_entries":29716,"entries":29750},{"exclusive_time":52651,"id":49934256,"line":16497,"name":"new","allocations":[{"count":29750,"id":67905768,"type":"<anon|414432224>","jit":29680}],"inclusive_time":60763,"file":"gen/moar/m-CORE.setting","jit_entries":29680,"entries":29750,"callees":[{"exclusive_time":8111,"id":49933952,"line":16492,"name":"BUILD","inclusive_time":8111,"file":"gen/moar/m-CORE.setting","jit_entries":29680,"entries":29750}]}]},{"exclusive_time":3089,"id":49215296,"line":2511,"name":"is-lazy","inclusive_time":3089,"file":"gen/moar/m-CORE.setting","jit_entries":29730,"entries":29750},{"exclusive_time":2817,"id":49806576,"line":14088,"name":"sink","inclusive_time":2817,"file":"gen/moar/m-CORE.setting","jit_entries":29750,"entries":29750},{"exclusive_time":63676,"id":49257248,"line":2585,"name":"new","allocations":[{"count":29750,"id":67908552,"type":"Rakudo::Internals::DwimIterator","jit":29705}],"inclusive_time":465352,"file":"gen/moar/m-CORE.setting","jit_entries":29705,"entries":29750,"callees":[{"exclusive_time":45145,"id":49080016,"line":942,"name":"new","allocations":[{"count":29750,"id":44228640,"spesh":29730,"type":"Hash"}],"inclusive_time":401676,"spesh_entries":29730,"file":"gen/moar/m-CORE.setting","entries":29750,"callees":[{"exclusive_time":100636,"id":49081536,"line":956,"name":"bless","allocations":[{"count":29750,"id":44228640,"spesh":29730,"type":"Hash"},{"count":29750,"id":68411984,"spesh":29730,"type":"IterationBuffer"}],"inclusive_time":356530,"spesh_entries":29730,"file":"gen/moar/m-CORE.setting","entries":29750,"callees":[{"exclusive_time":128260,"id":49793200,"line":13860,"name":"from-slurpy-flat","allocations":[{"count":29750,"id":33960376,"spesh":29730,"type":"BOOTCode"},{"count":59500,"id":68411984,"spesh":59460,"type":"IterationBuffer"},{"count":29750,"id":44228976,"spesh":29730,"type":"Array"},{"count":29750,"id":65481320,"spesh":29730,"type":"List::Reifier"}],"inclusive_time":190568,"spesh_entries":29730,"file":"gen/moar/m-CORE.setting","entries":29750,"callees":[{"exclusive_time":4898,"id":52321312,"line":3008,"name":"","allocations":[{"count":29750,"id":44228664,"type":"List","jit":29750}],"inclusive_time":4898,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":29750,"entries":29750},{"exclusive_time":43905,"id":49861296,"line":15806,"name":"reification-target","inclusive_time":57410,"file":"gen/moar/m-CORE.setting","jit_entries":29730,"entries":29750,"callees":[{"exclusive_time":13505,"id":49882880,"line":15464,"name":"new","allocations":[{"count":29750,"id":68412368,"type":"Array::ArrayReificationTarget","jit":29748}],"inclusive_time":13505,"file":"gen/moar/m-CORE.setting","jit_entries":29748,"entries":29750}]}]},{"exclusive_time":60807,"id":49081840,"line":960,"name":"BUILDALL","allocations":[{"count":29750,"id":33960376,"type":"BOOTCode","jit":29730}],"inclusive_time":65325,"file":"gen/moar/m-CORE.setting","jit_entries":29730,"entries":29750,"callees":[{"exclusive_time":4517,"id":52582064,"line":1475,"name":"BUILDALLPLAN","inclusive_time":4517,"file":"gen/moar/m-Metamodel.nqp","jit_entries":29730,"entries":29750}]}]}]}]},{"exclusive_time":13171,"id":49080016,"line":942,"name":"new","allocations":[{"count":14875,"id":44228640,"spesh":14865,"type":"Hash"}],"inclusive_time":132670,"spesh_entries":14865,"file":"gen/moar/m-CORE.setting","entries":14875,"callees":[{"exclusive_time":36306,"id":49081536,"line":956,"name":"bless","allocations":[{"count":14875,"id":44228640,"spesh":14865,"type":"Hash"},{"count":14875,"id":68411984,"spesh":14865,"type":"IterationBuffer"}],"inclusive_time":119498,"spesh_entries":14865,"file":"gen/moar/m-CORE.setting","entries":14875,"callees":[{"exclusive_time":44732,"id":49793200,"line":13860,"name":"from-slurpy-flat","allocations":[{"count":14875,"id":33960376,"spesh":14865,"type":"BOOTCode"},{"count":29750,"id":68411984,"spesh":29730,"type":"IterationBuffer"},{"count":14875,"id":44228976,"spesh":14865,"type":"Array"},{"count":14875,"id":65481320,"spesh":14865,"type":"List::Reifier"}],"inclusive_time":66076,"spesh_entries":14865,"file":"gen/moar/m-CORE.setting","entries":14875,"callees":[{"exclusive_time":2097,"id":52321312,"line":3008,"name":"","allocations":[{"count":14875,"id":44228664,"type":"List","jit":14875}],"inclusive_time":2097,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":14875,"entries":14875},{"exclusive_time":15824,"id":49861296,"line":15806,"name":"reification-target","inclusive_time":19246,"file":"gen/moar/m-CORE.setting","jit_entries":14865,"entries":14875,"callees":[{"exclusive_time":3422,"id":49882880,"line":15464,"name":"new","allocations":[{"count":14875,"id":68412368,"type":"Array::ArrayReificationTarget","jit":14874}],"inclusive_time":3422,"file":"gen/moar/m-CORE.setting","jit_entries":14874,"entries":14875}]}]},{"exclusive_time":15818,"id":49081840,"line":960,"name":"BUILDALL","allocations":[{"count":14875,"id":33960376,"type":"BOOTCode","jit":14865}],"inclusive_time":17115,"file":"gen/moar/m-CORE.setting","jit_entries":14865,"entries":14875,"callees":[{"exclusive_time":1296,"id":52582064,"line":1475,"name":"BUILDALLPLAN","inclusive_time":1296,"file":"gen/moar/m-Metamodel.nqp","jit_entries":14865,"entries":14875}]}]}]},{"exclusive_time":3741668,"id":48976656,"line":29903,"name":"","allocations":[{"count":14875,"id":44229096,"type":"Scalar","jit":14865}],"inclusive_time":27072223,"file":"gen/moar/m-CORE.setting","deopt_one":208110,"jit_entries":208110,"entries":208250,"callees":[{"exclusive_time":570298,"id":49257552,"line":2595,"name":"pull-one","allocations":[{"count":416500,"id":33960376,"type":"BOOTCode","jit":416259}],"inclusive_time":8506603,"file":"gen/moar/m-CORE.setting","jit_entries":416259,"entries":416500,"callees":[{"exclusive_time":1920700,"id":49258160,"line":2602,"name":"","allocations":[{"count":416500,"id":44229096,"type":"Scalar","jit":416243}],"inclusive_time":7936305,"file":"gen/moar/m-CORE.setting","jit_entries":416243,"entries":416500,"callees":[{"exclusive_time":294024,"id":49934560,"line":16499,"name":"pull-one","allocations":[{"count":386750,"id":44228928,"spesh":386557,"type":"IntPosRef"}],"inclusive_time":294024,"spesh_entries":416293,"file":"gen/moar/m-CORE.setting","entries":416500},{"exclusive_time":1230713,"id":39774400,"line":1558,"name":"infix:<=:=>","inclusive_time":4953037,"file":"gen/moar/m-CORE.setting","jit_entries":386616,"entries":386750,"callees":[{"exclusive_time":3484448,"id":52314624,"line":2048,"name":"","allocations":[{"count":773500,"id":33960376,"type":"BOOTCode"},{"count":773500,"id":33961312,"type":"NQPArray"},{"count":386750,"id":33960328,"type":"BOOTHash"}],"inclusive_time":3611254,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":386750,"callees":[{"exclusive_time":126806,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":126806,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":386750,"entries":386750}]},{"exclusive_time":111068,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":111068,"file":"gen/moar/m-CORE.setting","entries":386750}]},{"exclusive_time":60260,"id":48477184,"line":8439,"name":"infix:<+>","inclusive_time":60260,"file":"gen/moar/m-CORE.setting","inlined_entries":386511,"jit_entries":386750,"entries":386750},{"exclusive_time":6,"id":49170912,"line":1907,"name":"push","inclusive_time":17,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":9,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":10,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":1,"id":49692880,"line":12283,"name":"push","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":31611,"id":49072720,"line":856,"name":"sink","inclusive_time":31611,"file":"gen/moar/m-CORE.setting","jit_entries":386750,"entries":386750},{"exclusive_time":263067,"id":49692880,"line":12283,"name":"push","inclusive_time":263067,"file":"gen/moar/m-CORE.setting","entries":386749},{"exclusive_time":4917,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":4917,"file":"gen/moar/m-CORE.setting","jit_entries":29750,"entries":29750},{"exclusive_time":4320,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":4320,"file":"gen/moar/m-CORE.setting","jit_entries":29750,"entries":29750},{"exclusive_time":241782,"id":49257552,"line":2595,"name":"pull-one","allocations":[{"count":29750,"id":33960376,"type":"BOOTCode","jit":29734},{"count":29750,"id":44229096,"type":"Scalar","jit":29734}],"inclusive_time":404348,"file":"gen/moar/m-CORE.setting","jit_entries":29734,"entries":29750,"callees":[{"exclusive_time":7659,"id":48477184,"line":8439,"name":"infix:<+>","inclusive_time":7659,"file":"gen/moar/m-CORE.setting","jit_entries":29750,"entries":29750},{"exclusive_time":9192,"id":48477792,"line":8446,"name":"infix:<->","inclusive_time":9192,"file":"gen/moar/m-CORE.setting","jit_entries":29730,"entries":29750},{"exclusive_time":25,"id":48444048,"line":7935,"name":"infix:<%>","inclusive_time":63,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":26,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"spesh":2,"type":"BOOTCode"},{"count":2,"id":33961312,"spesh":2,"type":"NQPArray"},{"count":1,"id":33960328,"spesh":1,"type":"BOOTHash"}],"inclusive_time":27,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":1,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]},{"exclusive_time":9,"id":48479616,"line":8471,"name":"infix:<%>","allocations":[{"count":1,"id":44229024,"type":"Int"}],"inclusive_time":9,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]},{"exclusive_time":17,"id":49176992,"line":1964,"name":"AT-POS","inclusive_time":598,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":22,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":579,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":321,"id":52313712,"line":1708,"name":"","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":62,"id":33961312,"type":"NQPArray"},{"count":13,"id":33961360,"type":"NQPArrayIter"},{"count":24,"id":33960328,"type":"BOOTHash"},{"count":24,"id":33960832,"type":"BOOTIntArray"},{"count":13,"id":33960232,"type":"BOOTInt"}],"inclusive_time":556,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":234,"id":52314016,"line":1738,"name":"is_narrower","inclusive_time":234,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":132,"entries":132}]},{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":1,"id":49693488,"line":12290,"name":"AT-POS","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":135876,"id":48479616,"line":8471,"name":"infix:<%>","allocations":[{"count":29749,"id":44229024,"type":"Int","jit":29680}],"inclusive_time":138486,"file":"gen/moar/m-CORE.setting","jit_entries":29680,"entries":29749,"callees":[{"exclusive_time":2609,"id":49806576,"line":14088,"name":"sink","inclusive_time":2609,"file":"gen/moar/m-CORE.setting","jit_entries":29749,"entries":29749}]},{"exclusive_time":6565,"id":49693488,"line":12290,"name":"AT-POS","inclusive_time":6565,"file":"gen/moar/m-CORE.setting","jit_entries":29730,"entries":29749}]}]}]},{"exclusive_time":5,"id":48509408,"line":8703,"name":"prefix:<!>","inclusive_time":18,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":11,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"spesh":2,"type":"BOOTCode"},{"count":2,"id":33961312,"spesh":2,"type":"NQPArray"},{"count":1,"id":33960328,"spesh":1,"type":"BOOTHash"}],"inclusive_time":12,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":48510016,"line":8705,"name":"prefix:<!>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":33071,"id":48510016,"line":8705,"name":"prefix:<!>","inclusive_time":33071,"file":"gen/moar/m-CORE.setting","jit_entries":416492,"entries":416499},{"exclusive_time":46201,"id":49259376,"line":2620,"name":"ended","inclusive_time":46201,"file":"gen/moar/m-CORE.setting","jit_entries":639468,"entries":639625},{"exclusive_time":15,"id":48453776,"line":7991,"name":"infix:<!=>","inclusive_time":111,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":19,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"spesh":2,"type":"BOOTCode"},{"count":2,"id":33961312,"spesh":2,"type":"NQPArray"},{"count":1,"id":33960328,"spesh":1,"type":"BOOTHash"}],"inclusive_time":20,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":1,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":15,"id":48454384,"line":7993,"name":"infix:<!=>","inclusive_time":76,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":3,"id":48450736,"line":7971,"name":"infix:<==>","inclusive_time":42,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":36,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"spesh":2,"type":"BOOTCode"},{"count":2,"id":33961312,"spesh":2,"type":"NQPArray"},{"count":1,"id":33960328,"spesh":1,"type":"BOOTHash"}],"inclusive_time":37,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":10,"id":48510320,"line":8707,"name":"prefix:<not>","inclusive_time":18,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":7,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"spesh":2,"type":"BOOTCode"},{"count":2,"id":33961312,"spesh":2,"type":"NQPArray"},{"count":1,"id":33960328,"spesh":1,"type":"BOOTHash"}],"inclusive_time":8,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":48510624,"line":8708,"name":"prefix:<not>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]}]}]},{"exclusive_time":48322,"id":49806576,"line":14088,"name":"sink","inclusive_time":48322,"file":"gen/moar/m-CORE.setting","jit_entries":595000,"entries":595000},{"exclusive_time":24,"id":48251616,"line":2176,"name":"postfix:<++>","inclusive_time":79,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":52,"id":52314624,"line":2048,"name":"","allocations":[{"count":4,"id":33960376,"type":"BOOTCode"},{"count":4,"id":33961312,"type":"NQPArray"},{"count":2,"id":33960328,"type":"BOOTHash"}],"inclusive_time":53,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":2,"callees":[{"exclusive_time":1,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":2,"entries":2}]},{"exclusive_time":0,"id":48252224,"line":2178,"name":"postfix:<++>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":48474752,"line":8404,"name":"postfix:<++>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":31361,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":31361,"file":"gen/moar/m-CORE.setting","jit_entries":193375,"entries":193375},{"exclusive_time":738454,"id":48971488,"line":29815,"name":"HYPER","inclusive_time":14284383,"file":"gen/moar/m-CORE.setting","jit_entries":193245,"entries":193375,"callees":[{"exclusive_time":6572747,"id":52314624,"line":2048,"name":"","allocations":[{"count":386750,"id":33960376,"type":"BOOTCode"},{"count":386750,"id":33961312,"type":"NQPArray"},{"count":193375,"id":33960328,"type":"BOOTHash"},{"count":193375,"id":33960520,"type":"CallCapture"}],"inclusive_time":13068836,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":193375,"callees":[{"exclusive_time":381146,"id":52294864,"line":920,"name":"is_bindable","allocations":[{"count":193375,"id":33960376,"spesh":193375,"type":"BOOTCode"}],"inclusive_time":6496088,"spesh_entries":193375,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":193375,"callees":[{"exclusive_time":342174,"id":52295168,"line":926,"name":"","inclusive_time":6114941,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":193375,"callees":[{"exclusive_time":2337165,"id":52292736,"line":606,"name":"bind","inclusive_time":5772767,"spesh_entries":193321,"file":"gen/moar/m-BOOTSTRAP.nqp","deopt_one":193321,"entries":193375,"callees":[{"exclusive_time":2916469,"id":52290912,"line":168,"name":"bind_one_param","allocations":[{"count":1933750,"id":33960376,"type":"BOOTCode"},{"count":580125,"id":44229096,"type":"Scalar"}],"inclusive_time":3435601,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":966875,"callees":[{"exclusive_time":498611,"id":52616112,"line":2635,"name":"type_check","allocations":[{"count":386750,"id":33961360,"type":"NQPArrayIter"}],"inclusive_time":519132,"file":"gen/moar/m-Metamodel.nqp","entries":193375,"callees":[{"exclusive_time":20520,"id":52544976,"line":161,"name":"pretending_to_be","inclusive_time":20520,"file":"gen/moar/m-Metamodel.nqp","jit_entries":193375,"entries":193375}]}]}]}]}]}]},{"exclusive_time":387698,"id":48971792,"line":29817,"name":"HYPER","allocations":[{"count":386750,"id":44229096,"type":"Scalar","jit":386490}],"inclusive_time":477093,"file":"gen/moar/m-CORE.setting","jit_entries":193245,"entries":193375,"callees":[{"exclusive_time":10,"id":48460768,"line":8023,"name":"infix:<+^>","inclusive_time":21,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":10,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"spesh":2,"type":"BOOTCode"},{"count":2,"id":33961312,"spesh":2,"type":"NQPArray"},{"count":1,"id":33960328,"spesh":1,"type":"BOOTHash"}],"inclusive_time":11,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":48487520,"line":8571,"name":"infix:<+^>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":89373,"id":48487520,"line":8571,"name":"infix:<+^>","inclusive_time":89373,"spesh_entries":193245,"file":"gen/moar/m-CORE.setting","entries":193374}]}]},{"exclusive_time":126959,"id":49692880,"line":12283,"name":"push","inclusive_time":126959,"file":"gen/moar/m-CORE.setting","entries":193375},{"exclusive_time":17522,"id":49072720,"line":856,"name":"sink","inclusive_time":17522,"file":"gen/moar/m-CORE.setting","jit_entries":193375,"entries":193375},{"exclusive_time":75880,"id":48454384,"line":7993,"name":"infix:<!=>","inclusive_time":135086,"file":"gen/moar/m-CORE.setting","jit_entries":208110,"entries":208249,"callees":[{"exclusive_time":34486,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":34486,"file":"gen/moar/m-CORE.setting","inlined_entries":208110,"jit_entries":208242,"entries":208249},{"exclusive_time":24719,"id":48510624,"line":8708,"name":"prefix:<not>","inclusive_time":24719,"file":"gen/moar/m-CORE.setting","inlined_entries":208110,"jit_entries":208110,"entries":208249}]},{"exclusive_time":50011,"id":48474752,"line":8404,"name":"postfix:<++>","inclusive_time":50011,"file":"gen/moar/m-CORE.setting","jit_entries":178380,"entries":178499},{"exclusive_time":22580,"id":39754944,"line":655,"name":"last","inclusive_time":46563,"file":"gen/moar/m-CORE.setting","jit_entries":14840,"entries":14875,"callees":[{"exclusive_time":23983,"id":39750384,"line":603,"name":"THROW-NIL","allocations":[{"count":14875,"id":33960568,"spesh":14840,"type":"BOOTException"}],"inclusive_time":23983,"spesh_entries":14840,"file":"gen/moar/m-CORE.setting","entries":14875}]},{"exclusive_time":4258,"id":48252224,"line":2178,"name":"postfix:<++>","inclusive_time":4258,"file":"gen/moar/m-CORE.setting","jit_entries":14840,"entries":14874}]},{"exclusive_time":137072,"id":49793808,"line":13890,"name":"new","allocations":[{"count":14875,"id":44228664,"spesh":14832,"type":"List"},{"count":14875,"id":68411984,"spesh":14832,"type":"IterationBuffer"}],"inclusive_time":2189211,"spesh_entries":14832,"file":"gen/moar/m-CORE.setting","entries":14875,"callees":[{"exclusive_time":79820,"id":49791376,"line":13817,"name":"from-slurpy","allocations":[{"count":14875,"id":44228976,"spesh":14865,"type":"Array"},{"count":14875,"id":68411984,"spesh":14865,"type":"IterationBuffer"},{"count":14875,"id":65481320,"spesh":14865,"type":"List::Reifier"}],"inclusive_time":124435,"spesh_entries":14865,"file":"gen/moar/m-CORE.setting","entries":14875,"callees":[{"exclusive_time":4414,"id":52321312,"line":3008,"name":"","allocations":[{"count":14875,"id":44228664,"type":"List","jit":14875}],"inclusive_time":4414,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":14875,"entries":14875},{"exclusive_time":29028,"id":49861296,"line":15806,"name":"reification-target","inclusive_time":40200,"file":"gen/moar/m-CORE.setting","jit_entries":14865,"entries":14875,"callees":[{"exclusive_time":11171,"id":49882880,"line":15464,"name":"new","allocations":[{"count":14875,"id":68412368,"type":"Array::ArrayReificationTarget","jit":14874}],"inclusive_time":11171,"file":"gen/moar/m-CORE.setting","jit_entries":14874,"entries":14875}]}]},{"exclusive_time":20982,"id":52311584,"line":1621,"name":"","allocations":[{"count":14875,"id":44229240,"spesh":14875,"type":"Block"},{"count":14875,"id":33960376,"spesh":14875,"type":"BOOTCode"}],"inclusive_time":20982,"spesh_entries":14875,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":14875},{"exclusive_time":114735,"id":49298592,"line":3773,"name":"map","inclusive_time":970742,"spesh_entries":14872,"file":"gen/moar/m-CORE.setting","entries":14875,"callees":[{"exclusive_time":2670,"id":52321312,"line":3008,"name":"","allocations":[{"count":14875,"id":44228664,"type":"List","jit":14875}],"inclusive_time":2670,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":14875,"entries":14875},{"exclusive_time":261532,"id":52314624,"line":2048,"name":"","allocations":[{"count":29750,"id":33960376,"type":"BOOTCode"},{"count":29750,"id":33961312,"type":"NQPArray"},{"count":14875,"id":33960328,"type":"BOOTHash"}],"inclusive_time":264268,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":14875,"callees":[{"exclusive_time":2736,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":2736,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":14875,"entries":14875}]},{"exclusive_time":130555,"id":49299808,"line":3779,"name":"map","allocations":[{"count":29750,"id":44229096,"type":"Scalar"}],"inclusive_time":589067,"file":"gen/moar/m-CORE.setting","entries":14875,"callees":[{"exclusive_time":100482,"id":49800800,"line":13990,"name":"iterator","allocations":[{"count":14875,"id":33960376,"type":"BOOTCode","jit":14873}],"inclusive_time":207089,"file":"gen/moar/m-CORE.setting","jit_entries":14873,"entries":14875,"callees":[{"exclusive_time":4083,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":4083,"file":"gen/moar/m-CORE.setting","jit_entries":14875,"entries":14875},{"exclusive_time":1440,"id":49806576,"line":14088,"name":"sink","inclusive_time":1440,"file":"gen/moar/m-CORE.setting","jit_entries":14875,"entries":14875},{"exclusive_time":21708,"id":49801104,"line":13992,"name":"","allocations":[{"count":14875,"id":44229096,"type":"Scalar","jit":14875}],"inclusive_time":21708,"file":"gen/moar/m-CORE.setting","jit_entries":14875,"entries":14875},{"exclusive_time":58094,"id":49801712,"line":14004,"name":"new","allocations":[{"count":14875,"id":67906128,"type":"<anon|352550624>","jit":14873}],"inclusive_time":79373,"file":"gen/moar/m-CORE.setting","jit_entries":14873,"entries":14875,"callees":[{"exclusive_time":11838,"id":49877712,"line":16147,"name":"of","inclusive_time":11838,"file":"gen/moar/m-CORE.setting","jit_entries":14840,"entries":14875},{"exclusive_time":9439,"id":49801408,"line":13998,"name":"BUILD","inclusive_time":9439,"file":"gen/moar/m-CORE.setting","jit_entries":14873,"entries":14875}]}]},{"exclusive_time":155742,"id":49303152,"line":3840,"name":"sequential-map","allocations":[{"count":29750,"id":33960376,"type":"BOOTCode","jit":29746},{"count":44625,"id":44229096,"type":"Scalar","jit":44619}],"inclusive_time":251422,"file":"gen/moar/m-CORE.setting","jit_entries":14873,"entries":14875,"callees":[{"exclusive_time":35191,"id":49411680,"line":6408,"name":"count","inclusive_time":37627,"file":"gen/moar/m-CORE.setting","jit_entries":14874,"entries":14875,"callees":[{"exclusive_time":2436,"id":50093552,"line":18706,"name":"count","inclusive_time":2436,"file":"gen/moar/m-CORE.setting","jit_entries":14875,"entries":14875}]},{"exclusive_time":4451,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":4451,"file":"gen/moar/m-CORE.setting","inlined_entries":14873,"jit_entries":14875,"entries":14875},{"exclusive_time":9826,"id":49304064,"line":3847,"name":"","inclusive_time":9826,"file":"gen/moar/m-CORE.setting","jit_entries":14874,"entries":14875},{"exclusive_time":32361,"id":49401344,"line":3827,"name":"new","allocations":[{"count":44625,"id":44229096,"type":"Scalar","jit":44619},{"count":14875,"id":67908360,"type":"<anon|159066640>","jit":14873}],"inclusive_time":32361,"file":"gen/moar/m-CORE.setting","jit_entries":14873,"entries":14875},{"exclusive_time":11413,"id":49700480,"line":12399,"name":"new","allocations":[{"count":14875,"id":67909080,"type":"Seq","jit":14874}],"inclusive_time":11413,"file":"gen/moar/m-CORE.setting","jit_entries":14874,"entries":14875}]}]}]},{"exclusive_time":97184,"id":49705648,"line":12474,"name":"sink","inclusive_time":935978,"file":"gen/moar/m-CORE.setting","entries":14875,"callees":[{"exclusive_time":61264,"id":49701088,"line":12407,"name":"iterator","inclusive_time":76690,"file":"gen/moar/m-CORE.setting","jit_entries":14875,"entries":14875,"callees":[{"exclusive_time":1380,"id":49806576,"line":14088,"name":"sink","inclusive_time":1380,"file":"gen/moar/m-CORE.setting","jit_entries":14875,"entries":14875},{"exclusive_time":14045,"id":52616112,"line":2635,"name":"type_check","inclusive_time":14045,"file":"gen/moar/m-Metamodel.nqp","jit_entries":14875,"entries":14875}]},{"exclusive_time":301231,"id":49306192,"line":3921,"name":"sink-all","allocations":[{"count":14875,"id":33960376,"type":"BOOTCode","jit":14865},{"count":89250,"id":44229096,"type":"Scalar","jit":89190}],"inclusive_time":758231,"file":"gen/moar/m-CORE.setting","deopt_one":14865,"jit_entries":14865,"entries":14875,"callees":[{"exclusive_time":2561,"id":48510016,"line":8705,"name":"prefix:<!>","inclusive_time":2561,"file":"gen/moar/m-CORE.setting","jit_entries":14874,"entries":14875},{"exclusive_time":41541,"id":49417456,"line":6478,"name":"phasers","inclusive_time":44087,"file":"gen/moar/m-CORE.setting","jit_entries":29750,"entries":29750,"callees":[{"exclusive_time":2545,"id":49806576,"line":14088,"name":"sink","inclusive_time":2545,"file":"gen/moar/m-CORE.setting","jit_entries":29750,"entries":29750}]},{"exclusive_time":19853,"id":48405440,"line":7763,"name":"prefix:<+>","inclusive_time":112822,"file":"gen/moar/m-CORE.setting","jit_entries":14874,"entries":14875,"callees":[{"exclusive_time":23239,"id":49795632,"line":13911,"name":"Numeric","inclusive_time":92969,"spesh_entries":14874,"file":"gen/moar/m-CORE.setting","entries":14875,"callees":[{"exclusive_time":63228,"id":49797760,"line":13932,"name":"elems","inclusive_time":69730,"spesh_entries":14874,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":14875,"callees":[{"exclusive_time":4036,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":4036,"file":"gen/moar/m-CORE.setting","jit_entries":14875,"entries":14875},{"exclusive_time":2465,"id":49806576,"line":14088,"name":"sink","inclusive_time":2465,"file":"gen/moar/m-CORE.setting","jit_entries":29750,"entries":29750}]}]}]},{"exclusive_time":44728,"id":49078192,"line":929,"name":"Bool","inclusive_time":104139,"spesh_entries":14874,"file":"gen/moar/m-CORE.setting","entries":14875,"callees":[{"exclusive_time":2291,"id":52321312,"line":3008,"name":"","allocations":[{"count":14875,"id":44228664,"type":"List","jit":14875}],"inclusive_time":2291,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":14875,"entries":14875},{"exclusive_time":53254,"id":49794720,"line":13904,"name":"Bool","inclusive_time":57119,"file":"gen/moar/m-CORE.setting","jit_entries":14874,"entries":14875,"callees":[{"exclusive_time":1497,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":1497,"file":"gen/moar/m-CORE.setting","jit_entries":14875,"entries":14875},{"exclusive_time":1185,"id":49806576,"line":14088,"name":"sink","inclusive_time":1185,"file":"gen/moar/m-CORE.setting","jit_entries":14875,"entries":14875},{"exclusive_time":1181,"id":48508496,"line":8699,"name":"prefix:<so>","inclusive_time":1181,"file":"gen/moar/m-CORE.setting","jit_entries":14874,"entries":14875}]}]},{"exclusive_time":2286,"id":49806576,"line":14088,"name":"sink","inclusive_time":2286,"file":"gen/moar/m-CORE.setting","jit_entries":29750,"entries":29750},{"exclusive_time":29319,"id":49802016,"line":14006,"name":"pull-one","inclusive_time":185108,"file":"gen/moar/m-CORE.setting","jit_entries":14874,"entries":14875,"callees":[{"exclusive_time":94855,"id":49802320,"line":14013,"name":"reify-and-pull-one","allocations":[{"count":14875,"id":44229072,"type":"IntLexRef","jit":14873}],"inclusive_time":155788,"file":"gen/moar/m-CORE.setting","jit_entries":14873,"entries":14875,"callees":[{"exclusive_time":56360,"id":49843664,"line":13724,"name":"reify-at-least","allocations":[{"count":14875,"id":33960376,"type":"BOOTCode","jit":14867},{"count":14875,"id":44229096,"type":"Scalar","jit":14867}],"inclusive_time":57671,"file":"gen/moar/m-CORE.setting","jit_entries":14867,"entries":14875,"callees":[{"exclusive_time":1310,"id":49806576,"line":14088,"name":"sink","inclusive_time":1310,"file":"gen/moar/m-CORE.setting","jit_entries":14875,"entries":14875}]},{"exclusive_time":3261,"id":48483568,"line":8526,"name":"infix:«<»","inclusive_time":3261,"file":"gen/moar/m-CORE.setting","jit_entries":14867,"entries":14875}]}]},{"exclusive_time":5994,"id":49072720,"line":856,"name":"sink","inclusive_time":5994,"file":"gen/moar/m-CORE.setting","entries":14875}]},{"exclusive_time":3871,"id":49072720,"line":856,"name":"sink","inclusive_time":3871,"file":"gen/moar/m-CORE.setting","entries":14875}]}]}]}]}]},{"exclusive_time":18836,"id":52311584,"line":1621,"name":"","allocations":[{"count":14875,"id":44229240,"spesh":14875,"type":"Block"},{"count":14875,"id":33960376,"spesh":14875,"type":"BOOTCode"}],"inclusive_time":18836,"spesh_entries":14875,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":14875},{"exclusive_time":110070,"id":49298592,"line":3773,"name":"map","inclusive_time":708570,"spesh_entries":14873,"file":"gen/moar/m-CORE.setting","entries":14875,"callees":[{"exclusive_time":2412,"id":52321312,"line":3008,"name":"","allocations":[{"count":14875,"id":44228664,"type":"List","jit":14875}],"inclusive_time":2412,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":14875,"entries":14875},{"exclusive_time":235113,"id":52314624,"line":2048,"name":"","allocations":[{"count":29750,"id":33960376,"type":"BOOTCode"},{"count":29750,"id":33961312,"type":"NQPArray"},{"count":14875,"id":33960328,"type":"BOOTHash"}],"inclusive_time":236638,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":14875,"callees":[{"exclusive_time":1524,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":1524,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":14875,"entries":14875}]},{"exclusive_time":70802,"id":49299808,"line":3779,"name":"map","allocations":[{"count":29750,"id":44229096,"spesh":29736,"type":"Scalar"}],"inclusive_time":359449,"spesh_entries":14868,"file":"gen/moar/m-CORE.setting","entries":14875,"callees":[{"exclusive_time":68541,"id":49800800,"line":13990,"name":"iterator","allocations":[{"count":14875,"id":33960376,"type":"BOOTCode","jit":14873}],"inclusive_time":154779,"file":"gen/moar/m-CORE.setting","jit_entries":14873,"entries":14875,"callees":[{"exclusive_time":2118,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":2118,"file":"gen/moar/m-CORE.setting","jit_entries":14875,"entries":14875},{"exclusive_time":1331,"id":49806576,"line":14088,"name":"sink","inclusive_time":1331,"file":"gen/moar/m-CORE.setting","jit_entries":14875,"entries":14875},{"exclusive_time":11709,"id":49801104,"line":13992,"name":"","allocations":[{"count":14875,"id":44229096,"type":"Scalar","jit":14875}],"inclusive_time":11709,"file":"gen/moar/m-CORE.setting","jit_entries":14875,"entries":14875},{"exclusive_time":52133,"id":49801712,"line":14004,"name":"new","allocations":[{"count":14875,"id":67906128,"type":"<anon|352550624>","jit":14873}],"inclusive_time":71079,"file":"gen/moar/m-CORE.setting","jit_entries":14873,"entries":14875,"callees":[{"exclusive_time":2503,"id":49052656,"line":495,"name":"of","inclusive_time":2503,"file":"gen/moar/m-CORE.setting","jit_entries":14873,"entries":14875},{"exclusive_time":16443,"id":49801408,"line":13998,"name":"BUILD","allocations":[{"count":14875,"id":44229096,"type":"Scalar","jit":14873}],"inclusive_time":16443,"file":"gen/moar/m-CORE.setting","jit_entries":14873,"entries":14875}]}]},{"exclusive_time":80277,"id":49303152,"line":3840,"name":"sequential-map","allocations":[{"count":29750,"id":33960376,"type":"BOOTCode","jit":29746},{"count":44625,"id":44229096,"type":"Scalar","jit":44619}],"inclusive_time":133867,"file":"gen/moar/m-CORE.setting","jit_entries":14873,"entries":14875,"callees":[{"exclusive_time":22529,"id":49411680,"line":6408,"name":"count","inclusive_time":23687,"file":"gen/moar/m-CORE.setting","jit_entries":14875,"entries":14875,"callees":[{"exclusive_time":1157,"id":50093552,"line":18706,"name":"count","inclusive_time":1157,"file":"gen/moar/m-CORE.setting","jit_entries":14875,"entries":14875}]},{"exclusive_time":2536,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":2536,"file":"gen/moar/m-CORE.setting","inlined_entries":14873,"jit_entries":14875,"entries":14875},{"exclusive_time":4398,"id":49304064,"line":3847,"name":"","inclusive_time":4398,"file":"gen/moar/m-CORE.setting","jit_entries":14874,"entries":14875},{"exclusive_time":18208,"id":49401344,"line":3827,"name":"new","allocations":[{"count":44625,"id":44229096,"type":"Scalar","jit":44619},{"count":14875,"id":67908360,"type":"<anon|159066640>","jit":14873}],"inclusive_time":18208,"file":"gen/moar/m-CORE.setting","jit_entries":14873,"entries":14875},{"exclusive_time":4758,"id":49700480,"line":12399,"name":"new","allocations":[{"count":14875,"id":67909080,"type":"Seq","jit":14874}],"inclusive_time":4758,"file":"gen/moar/m-CORE.setting","jit_entries":14874,"entries":14875}]}]}]},{"exclusive_time":67822,"id":49705648,"line":12474,"name":"sink","inclusive_time":1830994,"file":"gen/moar/m-CORE.setting","entries":14875,"callees":[{"exclusive_time":43945,"id":49701088,"line":12407,"name":"iterator","inclusive_time":53202,"file":"gen/moar/m-CORE.setting","jit_entries":14875,"entries":14875,"callees":[{"exclusive_time":1454,"id":49806576,"line":14088,"name":"sink","inclusive_time":1454,"file":"gen/moar/m-CORE.setting","jit_entries":14875,"entries":14875},{"exclusive_time":7802,"id":52616112,"line":2635,"name":"type_check","inclusive_time":7802,"file":"gen/moar/m-Metamodel.nqp","jit_entries":14875,"entries":14875}]},{"exclusive_time":885970,"id":49306192,"line":3921,"name":"sink-all","allocations":[{"count":14875,"id":33960376,"type":"BOOTCode","jit":14865},{"count":89250,"id":44229096,"type":"Scalar","jit":89190}],"inclusive_time":1705949,"file":"gen/moar/m-CORE.setting","deopt_one":14865,"jit_entries":14865,"entries":14875,"callees":[{"exclusive_time":1208,"id":48510016,"line":8705,"name":"prefix:<!>","inclusive_time":1208,"file":"gen/moar/m-CORE.setting","jit_entries":14874,"entries":14875},{"exclusive_time":32767,"id":49417456,"line":6478,"name":"phasers","inclusive_time":35154,"file":"gen/moar/m-CORE.setting","jit_entries":29750,"entries":29750,"callees":[{"exclusive_time":2387,"id":49806576,"line":14088,"name":"sink","inclusive_time":2387,"file":"gen/moar/m-CORE.setting","jit_entries":29750,"entries":29750}]},{"exclusive_time":8790,"id":48405440,"line":7763,"name":"prefix:<+>","inclusive_time":75494,"file":"gen/moar/m-CORE.setting","jit_entries":14874,"entries":14875,"callees":[{"exclusive_time":15180,"id":49795632,"line":13911,"name":"Numeric","inclusive_time":66703,"spesh_entries":14874,"file":"gen/moar/m-CORE.setting","entries":14875,"callees":[{"exclusive_time":47380,"id":49797760,"line":13932,"name":"elems","inclusive_time":51523,"spesh_entries":14874,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":14875,"callees":[{"exclusive_time":1665,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":1665,"file":"gen/moar/m-CORE.setting","jit_entries":14875,"entries":14875},{"exclusive_time":2477,"id":49806576,"line":14088,"name":"sink","inclusive_time":2477,"file":"gen/moar/m-CORE.setting","jit_entries":29750,"entries":29750}]}]}]},{"exclusive_time":34623,"id":49078192,"line":929,"name":"Bool","inclusive_time":76190,"spesh_entries":14874,"file":"gen/moar/m-CORE.setting","entries":14875,"callees":[{"exclusive_time":2227,"id":52321312,"line":3008,"name":"","allocations":[{"count":14875,"id":44228664,"type":"List","jit":14875}],"inclusive_time":2227,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":14875,"entries":14875},{"exclusive_time":35956,"id":49794720,"line":13904,"name":"Bool","inclusive_time":39339,"file":"gen/moar/m-CORE.setting","jit_entries":14875,"entries":14875,"callees":[{"exclusive_time":1374,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":1374,"file":"gen/moar/m-CORE.setting","jit_entries":14875,"entries":14875},{"exclusive_time":1106,"id":49806576,"line":14088,"name":"sink","inclusive_time":1106,"file":"gen/moar/m-CORE.setting","jit_entries":14875,"entries":14875},{"exclusive_time":902,"id":48508496,"line":8699,"name":"prefix:<so>","inclusive_time":902,"file":"gen/moar/m-CORE.setting","jit_entries":14874,"entries":14875}]}]},{"exclusive_time":17788,"id":49806576,"line":14088,"name":"sink","inclusive_time":17788,"file":"gen/moar/m-CORE.setting","jit_entries":223125,"entries":223125},{"exclusive_time":62374,"id":49802016,"line":14006,"name":"pull-one","inclusive_time":67765,"file":"gen/moar/m-CORE.setting","jit_entries":208249,"entries":208250,"callees":[{"exclusive_time":5390,"id":49802320,"line":14013,"name":"reify-and-pull-one","inclusive_time":5390,"file":"gen/moar/m-CORE.setting","jit_entries":14874,"entries":14875}]},{"exclusive_time":458979,"id":86694640,"line":31,"name":"","allocations":[{"count":14875,"id":44229096,"spesh":14863,"type":"Scalar"},{"count":203686,"id":44229072,"spesh":203131,"type":"IntLexRef"}],"inclusive_time":502428,"spesh_entries":193231,"file":"hibbified-249.p6","entries":193375,"callees":[{"exclusive_time":11,"id":48251616,"line":2176,"name":"postfix:<++>","inclusive_time":31,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":15,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":16,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":1,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":3,"id":48475056,"line":8409,"name":"postfix:<++>","inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":16904,"id":49072720,"line":856,"name":"sink","inclusive_time":16904,"file":"gen/moar/m-CORE.setting","jit_entries":203686,"entries":203686},{"exclusive_time":26512,"id":48475056,"line":8409,"name":"postfix:<++>","inclusive_time":26512,"file":"gen/moar/m-CORE.setting","jit_entries":203672,"entries":203685}]},{"exclusive_time":5697,"id":49072720,"line":856,"name":"sink","inclusive_time":5697,"file":"gen/moar/m-CORE.setting","entries":14875},{"exclusive_time":33115,"id":49416544,"line":6469,"name":"fire_phasers","allocations":[{"count":14875,"id":33960376,"spesh":14773,"type":"BOOTCode"}],"inclusive_time":38250,"spesh_entries":14773,"file":"gen/moar/m-CORE.setting","entries":14875,"callees":[{"exclusive_time":5135,"id":48510016,"line":8705,"name":"prefix:<!>","inclusive_time":5135,"spesh_entries":14773,"file":"gen/moar/m-CORE.setting","inlined_entries":14773,"jit_entries":99,"entries":14875}]}]},{"exclusive_time":4020,"id":49072720,"line":856,"name":"sink","inclusive_time":4020,"file":"gen/moar/m-CORE.setting","entries":14875}]}]}]},{"exclusive_time":62,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":62,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601},{"exclusive_time":181,"id":49072720,"line":856,"name":"sink","inclusive_time":181,"file":"gen/moar/m-CORE.setting","entries":601},{"exclusive_time":859,"id":49416544,"line":6469,"name":"fire_phasers","allocations":[{"count":601,"id":33960376,"spesh":597,"type":"BOOTCode"}],"inclusive_time":999,"spesh_entries":597,"file":"gen/moar/m-CORE.setting","entries":601,"callees":[{"exclusive_time":139,"id":48510016,"line":8705,"name":"prefix:<!>","inclusive_time":139,"spesh_entries":597,"file":"gen/moar/m-CORE.setting","inlined_entries":597,"jit_entries":4,"entries":601}]}]},{"exclusive_time":4015,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":4015,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":15476},{"exclusive_time":2875,"id":48509712,"line":8704,"name":"prefix:<!>","inclusive_time":2875,"file":"gen/moar/m-CORE.setting","jit_entries":15476,"entries":15476},{"exclusive_time":11357,"id":49692880,"line":12283,"name":"push","inclusive_time":11357,"file":"gen/moar/m-CORE.setting","entries":14875}]}]},{"exclusive_time":146,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":146,"file":"gen/moar/m-CORE.setting","inlined_entries":573,"jit_entries":601,"entries":601}]}]},{"exclusive_time":192,"id":49072720,"line":856,"name":"sink","inclusive_time":192,"file":"gen/moar/m-CORE.setting","entries":601},{"exclusive_time":42,"id":49153584,"line":1805,"name":"elems","inclusive_time":110,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":11,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":67,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":41,"id":52313712,"line":1708,"name":"","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":17,"id":33961312,"type":"NQPArray"},{"count":4,"id":33961360,"type":"NQPArrayIter"},{"count":6,"id":33960328,"type":"BOOTHash"},{"count":6,"id":33960832,"type":"BOOTIntArray"},{"count":3,"id":33960232,"type":"BOOTInt"}],"inclusive_time":54,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":13,"id":52314016,"line":1738,"name":"is_narrower","inclusive_time":13,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":6,"entries":6}]},{"exclusive_time":1,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":49692576,"line":12279,"name":"elems","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":629,"id":52311584,"line":1621,"name":"","allocations":[{"count":601,"id":44229240,"spesh":601,"type":"Block"},{"count":601,"id":33960376,"spesh":601,"type":"BOOTCode"}],"inclusive_time":629,"spesh_entries":601,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":601},{"exclusive_time":88614,"id":41447504,"line":284,"name":"p6sort","osr":1,"allocations":[{"count":1202,"id":33960832,"spesh":1198,"type":"BOOTIntArray"},{"count":1202,"id":33961360,"spesh":1198,"type":"NQPArrayIter"}],"inclusive_time":269859,"spesh_entries":600,"file":"src/vm/moar/Perl6/Ops.nqp","entries":601,"callees":[{"exclusive_time":11724,"id":49477648,"line":8258,"name":"Num","allocations":[{"count":65953,"id":44229000,"type":"Num","jit":65937}],"inclusive_time":11724,"file":"gen/moar/m-CORE.setting","jit_entries":65937,"entries":65953},{"exclusive_time":73972,"id":49360000,"line":4696,"name":"","inclusive_time":169520,"file":"gen/moar/m-CORE.setting","jit_entries":50921,"entries":51078,"callees":[{"exclusive_time":10221,"id":48525520,"line":8789,"name":"infix:<cmp>","inclusive_time":10221,"file":"gen/moar/m-CORE.setting","jit_entries":50960,"entries":51078},{"exclusive_time":71959,"id":49078192,"line":929,"name":"Bool","inclusive_time":82609,"spesh_entries":51078,"file":"gen/moar/m-CORE.setting","entries":51078,"callees":[{"exclusive_time":5737,"id":52321312,"line":3008,"name":"","allocations":[{"count":51078,"id":44228664,"type":"List","jit":51078}],"inclusive_time":5737,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":51078,"entries":51078},{"exclusive_time":9,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":10,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":4902,"id":49476736,"line":8248,"name":"Bool","inclusive_time":4902,"file":"gen/moar/m-CORE.setting","jit_entries":51070,"entries":51078}]},{"exclusive_time":17,"id":48450128,"line":7968,"name":"infix:«<=>»","inclusive_time":35,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":12,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":13,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":5,"id":48526432,"line":8799,"name":"infix:«<=>»","inclusive_time":5,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":2680,"id":48526432,"line":8799,"name":"infix:«<=>»","inclusive_time":2680,"file":"gen/moar/m-CORE.setting","jit_entries":18781,"entries":18937}]}]},{"exclusive_time":307,"id":49692576,"line":12279,"name":"elems","allocations":[{"count":591,"id":44229024,"spesh":339,"type":"Int","jit":98}],"inclusive_time":307,"spesh_entries":344,"file":"gen/moar/m-CORE.setting","inlined_entries":344,"jit_entries":100,"entries":600}]},{"exclusive_time":85,"id":52321312,"line":3008,"name":"","allocations":[{"count":601,"id":44228664,"type":"List","jit":601}],"inclusive_time":85,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":601,"entries":601},{"exclusive_time":7278,"id":49383712,"line":4995,"name":"squish","inclusive_time":56806,"spesh_entries":394,"file":"gen/moar/m-CORE.setting","entries":601,"callees":[{"exclusive_time":103,"id":52321312,"line":3008,"name":"","allocations":[{"count":601,"id":44228664,"type":"List","jit":601}],"inclusive_time":103,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":601,"entries":601},{"exclusive_time":10219,"id":52314624,"line":2048,"name":"","allocations":[{"count":1202,"id":33960376,"type":"BOOTCode"},{"count":1202,"id":33961312,"type":"NQPArray"},{"count":601,"id":33960328,"type":"BOOTHash"},{"count":601,"id":33960520,"type":"CallCapture"}],"inclusive_time":32210,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":601,"callees":[{"exclusive_time":23,"id":52313712,"line":1708,"name":"","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":12,"id":33961312,"type":"NQPArray"},{"count":3,"id":33961360,"type":"NQPArrayIter"},{"count":4,"id":33960328,"type":"BOOTHash"},{"count":4,"id":33960832,"type":"BOOTIntArray"},{"count":2,"id":33960232,"type":"BOOTInt"}],"inclusive_time":31,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":7,"id":52314016,"line":1738,"name":"is_narrower","inclusive_time":7,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":2,"entries":2}]},{"exclusive_time":1883,"id":52294864,"line":920,"name":"is_bindable","allocations":[{"count":601,"id":33960376,"spesh":601,"type":"BOOTCode"}],"inclusive_time":21959,"spesh_entries":601,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":601,"callees":[{"exclusive_time":2177,"id":52295168,"line":926,"name":"","inclusive_time":20075,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":601,"callees":[{"exclusive_time":6296,"id":52292736,"line":606,"name":"bind","allocations":[{"count":601,"id":44228640,"spesh":601,"type":"Hash"}],"inclusive_time":17898,"spesh_entries":601,"file":"gen/moar/m-BOOTSTRAP.nqp","deopt_one":601,"entries":601,"callees":[{"exclusive_time":7488,"id":52290912,"line":168,"name":"bind_one_param","allocations":[{"count":3606,"id":33960376,"type":"BOOTCode"},{"count":601,"id":44229096,"type":"Scalar"}],"inclusive_time":9677,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1803,"callees":[{"exclusive_time":2063,"id":52616112,"line":2635,"name":"type_check","allocations":[{"count":1202,"id":33961360,"type":"NQPArrayIter"}],"inclusive_time":2188,"file":"gen/moar/m-Metamodel.nqp","entries":601,"callees":[{"exclusive_time":125,"id":52544976,"line":161,"name":"pretending_to_be","inclusive_time":125,"file":"gen/moar/m-Metamodel.nqp","jit_entries":601,"entries":601}]}]},{"exclusive_time":1811,"id":52292432,"line":573,"name":"handle_optional","inclusive_time":1924,"spesh_entries":600,"file":"gen/moar/m-BOOTSTRAP.nqp","deopt_one":600,"entries":601,"callees":[{"exclusive_time":112,"id":49388576,"line":5050,"name":"","inclusive_time":112,"file":"gen/moar/m-CORE.setting","jit_entries":522,"entries":601}]}]}]}]}]},{"exclusive_time":4925,"id":49388272,"line":5050,"name":"squish","allocations":[{"count":1202,"id":33960376,"spesh":988,"type":"BOOTCode"}],"inclusive_time":17214,"spesh_entries":494,"file":"gen/moar/m-CORE.setting","entries":601,"callees":[{"exclusive_time":600,"id":52309760,"line":1563,"name":"","allocations":[{"count":601,"id":44229264,"spesh":595,"type":"Code"},{"count":601,"id":33960376,"spesh":595,"type":"BOOTCode"}],"inclusive_time":600,"spesh_entries":595,"file":"gen/moar/m-BOOTSTRAP.nqp","inlined_entries":494,"entries":601},{"exclusive_time":58,"id":49388576,"line":5050,"name":"","inclusive_time":58,"file":"gen/moar/m-CORE.setting","jit_entries":523,"entries":601},{"exclusive_time":997,"id":49388880,"line":5051,"name":"","allocations":[{"count":601,"id":44229096,"type":"Scalar","jit":444}],"inclusive_time":997,"file":"gen/moar/m-CORE.setting","jit_entries":444,"entries":601},{"exclusive_time":2005,"id":49389488,"line":5061,"name":"new","allocations":[{"count":601,"id":67907544,"type":"<anon|171669248>","jit":394}],"inclusive_time":9828,"file":"gen/moar/m-CORE.setting","jit_entries":394,"entries":601,"callees":[{"exclusive_time":3019,"id":49389184,"line":5056,"name":"BUILD","allocations":[{"count":1202,"id":44229096,"type":"Scalar","jit":788}],"inclusive_time":7822,"file":"gen/moar/m-CORE.setting","deopt_one":394,"jit_entries":394,"entries":601,"callees":[{"exclusive_time":2388,"id":49800800,"line":13990,"name":"iterator","allocations":[{"count":601,"id":33960376,"type":"BOOTCode","jit":601}],"inclusive_time":4803,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601,"callees":[{"exclusive_time":88,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":88,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601},{"exclusive_time":53,"id":49806576,"line":14088,"name":"sink","inclusive_time":53,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601},{"exclusive_time":512,"id":49801104,"line":13992,"name":"","allocations":[{"count":601,"id":44229096,"type":"Scalar","jit":601}],"inclusive_time":512,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601},{"exclusive_time":1339,"id":49801712,"line":14004,"name":"new","allocations":[{"count":601,"id":67906128,"type":"<anon|352550624>","jit":601}],"inclusive_time":1758,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601,"callees":[{"exclusive_time":67,"id":49052656,"line":495,"name":"of","inclusive_time":67,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601},{"exclusive_time":352,"id":49801408,"line":13998,"name":"BUILD","allocations":[{"count":601,"id":44229096,"type":"Scalar","jit":601}],"inclusive_time":352,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601}]}]}]}]},{"exclusive_time":804,"id":49700480,"line":12399,"name":"new","allocations":[{"count":601,"id":67909080,"type":"Seq"}],"inclusive_time":804,"file":"gen/moar/m-CORE.setting","entries":601}]}]},{"exclusive_time":27,"id":49395264,"line":5123,"name":"head","inclusive_time":270,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":12,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":41,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":22,"id":52313712,"line":1708,"name":"","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":9,"id":33961312,"type":"NQPArray"},{"count":2,"id":33961360,"type":"NQPArrayIter"},{"count":4,"id":33960328,"type":"BOOTHash"},{"count":2,"id":33960832,"type":"BOOTIntArray"},{"count":2,"id":33960232,"type":"BOOTInt"}],"inclusive_time":28,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":5,"id":52314016,"line":1738,"name":"is_narrower","inclusive_time":5,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":2,"entries":2}]},{"exclusive_time":1,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":105,"id":49395568,"line":5124,"name":"head","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":200,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":11,"id":48455600,"line":7999,"name":"infix:«<=»","inclusive_time":47,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":33,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":34,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":48484176,"line":8533,"name":"infix:«<=»","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":2,"id":49395872,"line":5127,"name":"","allocations":[{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":26,"id":49396480,"line":5135,"name":"new","allocations":[{"count":1,"id":67907496,"type":"<anon|182679216>"}],"inclusive_time":44,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":11,"id":49396176,"line":5130,"name":"BUILD","allocations":[{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":17,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":5,"id":49701088,"line":12407,"name":"iterator","inclusive_time":5,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":52616112,"line":2635,"name":"type_check","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","jit_entries":1,"entries":1}]}]}]},{"exclusive_time":0,"id":49700480,"line":12399,"name":"new","allocations":[{"count":1,"id":67909080,"type":"Seq"}],"inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":6030,"id":49395568,"line":5124,"name":"head","allocations":[{"count":600,"id":33960376,"type":"BOOTCode","jit":468},{"count":600,"id":44229096,"type":"Scalar","jit":468}],"inclusive_time":12813,"file":"gen/moar/m-CORE.setting","jit_entries":468,"entries":600,"callees":[{"exclusive_time":238,"id":48484176,"line":8533,"name":"infix:«<=»","inclusive_time":238,"file":"gen/moar/m-CORE.setting","jit_entries":522,"entries":600},{"exclusive_time":53,"id":49806576,"line":14088,"name":"sink","inclusive_time":53,"file":"gen/moar/m-CORE.setting","jit_entries":600,"entries":600},{"exclusive_time":858,"id":49395872,"line":5127,"name":"","allocations":[{"count":600,"id":44229096,"type":"Scalar","jit":522}],"inclusive_time":858,"file":"gen/moar/m-CORE.setting","jit_entries":522,"entries":600},{"exclusive_time":1501,"id":49396480,"line":5135,"name":"new","allocations":[{"count":600,"id":67907496,"type":"<anon|182679216>","jit":493}],"inclusive_time":5023,"file":"gen/moar/m-CORE.setting","jit_entries":493,"entries":600,"callees":[{"exclusive_time":1475,"id":49396176,"line":5130,"name":"BUILD","allocations":[{"count":600,"id":44229096,"type":"Scalar","jit":493}],"inclusive_time":3521,"file":"gen/moar/m-CORE.setting","jit_entries":493,"entries":600,"callees":[{"exclusive_time":1674,"id":49701088,"line":12407,"name":"iterator","inclusive_time":2046,"file":"gen/moar/m-CORE.setting","jit_entries":600,"entries":600,"callees":[{"exclusive_time":48,"id":49806576,"line":14088,"name":"sink","inclusive_time":48,"file":"gen/moar/m-CORE.setting","jit_entries":600,"entries":600},{"exclusive_time":322,"id":52616112,"line":2635,"name":"type_check","inclusive_time":322,"file":"gen/moar/m-Metamodel.nqp","jit_entries":600,"entries":600}]}]}]},{"exclusive_time":608,"id":49700480,"line":12399,"name":"new","allocations":[{"count":600,"id":67909080,"type":"Seq"}],"inclusive_time":608,"file":"gen/moar/m-CORE.setting","entries":600}]}]},{"exclusive_time":3169,"id":49859472,"line":15771,"name":"STORE","inclusive_time":416853,"spesh_entries":637,"file":"gen/moar/m-CORE.setting","jit_entries":453,"entries":1192,"callees":[{"exclusive_time":9072,"id":49860080,"line":15779,"name":"STORE-ITERABLE","allocations":[{"count":1192,"id":33960376,"type":"BOOTCode","jit":1065},{"count":1192,"id":68411984,"type":"IterationBuffer","jit":1065},{"count":1192,"id":44229096,"type":"Scalar","jit":1065}],"inclusive_time":413684,"file":"gen/moar/m-CORE.setting","jit_entries":1065,"entries":1192,"callees":[{"exclusive_time":1231,"id":49701088,"line":12407,"name":"iterator","inclusive_time":1487,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601,"callees":[{"exclusive_time":48,"id":49806576,"line":14088,"name":"sink","inclusive_time":48,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601},{"exclusive_time":207,"id":52616112,"line":2635,"name":"type_check","inclusive_time":207,"file":"gen/moar/m-Metamodel.nqp","jit_entries":601,"entries":601}]},{"exclusive_time":827,"id":49882880,"line":15464,"name":"new","allocations":[{"count":1192,"id":68412368,"type":"Array::ArrayReificationTarget","jit":1191}],"inclusive_time":827,"file":"gen/moar/m-CORE.setting","jit_entries":1191,"entries":1192},{"exclusive_time":3465,"id":49213776,"line":2476,"name":"push-until-lazy","allocations":[{"count":601,"id":44229096,"type":"Scalar","jit":585}],"inclusive_time":232289,"file":"gen/moar/m-CORE.setting","jit_entries":585,"entries":601,"callees":[{"exclusive_time":72,"id":49215296,"line":2511,"name":"is-lazy","inclusive_time":72,"file":"gen/moar/m-CORE.setting","jit_entries":596,"entries":601},{"exclusive_time":2007,"id":49213168,"line":2463,"name":"push-all","allocations":[{"count":601,"id":44229096,"type":"Scalar","jit":567}],"inclusive_time":228752,"file":"gen/moar/m-CORE.setting","jit_entries":567,"entries":601,"callees":[{"exclusive_time":2795,"id":49212864,"line":2454,"name":"push-at-least","allocations":[{"count":601,"id":44229096,"spesh":575,"type":"Scalar"}],"inclusive_time":226648,"spesh_entries":575,"file":"gen/moar/m-CORE.setting","entries":601,"callees":[{"exclusive_time":32576,"id":49212256,"line":2436,"name":"push-exactly","allocations":[{"count":1202,"id":44229096,"type":"Scalar","jit":1176}],"inclusive_time":223853,"file":"gen/moar/m-CORE.setting","deopt_one":588,"jit_entries":588,"entries":601,"callees":[{"exclusive_time":22261,"id":49396784,"line":5136,"name":"pull-one","allocations":[{"count":6611,"id":44228616,"type":"IntAttrRef","jit":6476}],"inclusive_time":98147,"file":"gen/moar/m-CORE.setting","deopt_one":5887,"jit_entries":6476,"entries":6611,"callees":[{"exclusive_time":2706,"id":48475664,"line":8419,"name":"postfix:<-->","inclusive_time":2706,"file":"gen/moar/m-CORE.setting","jit_entries":6600,"entries":6611},{"exclusive_time":22961,"id":49389792,"line":5062,"name":"pull-one","allocations":[{"count":6010,"id":44228616,"type":"IntAttrRef","jit":5753},{"count":6611,"id":44229096,"type":"Scalar","jit":6328}],"inclusive_time":73178,"file":"gen/moar/m-CORE.setting","jit_entries":5753,"entries":6010,"callees":[{"exclusive_time":2553,"id":49802016,"line":14006,"name":"pull-one","inclusive_time":2553,"file":"gen/moar/m-CORE.setting","jit_entries":6007,"entries":6010},{"exclusive_time":76,"id":49072720,"line":856,"name":"sink","inclusive_time":76,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601},{"exclusive_time":12,"id":48247056,"line":2155,"name":"infix:<===>","inclusive_time":137,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":31,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":32,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":12,"id":48247664,"line":2157,"name":"infix:<===>","allocations":[{"count":2,"id":44229096,"type":"Scalar"}],"inclusive_time":92,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":14,"id":49074544,"line":881,"name":"WHICH","inclusive_time":76,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":11,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":38,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":20,"id":52313712,"line":1708,"name":"","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":12,"id":33961312,"type":"NQPArray"},{"count":3,"id":33961360,"type":"NQPArrayIter"},{"count":4,"id":33960328,"type":"BOOTHash"},{"count":4,"id":33960832,"type":"BOOTIntArray"},{"count":2,"id":33960232,"type":"BOOTInt"}],"inclusive_time":26,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":5,"id":52314016,"line":1738,"name":"is_narrower","inclusive_time":5,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":2,"entries":2}]},{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":20,"id":49075152,"line":885,"name":"WHICH","allocations":[{"count":1,"id":44229120,"type":"ObjAt"}],"inclusive_time":23,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":2,"id":52540720,"line":104,"name":"name","inclusive_time":2,"file":"gen/moar/m-Metamodel.nqp","entries":1}]}]},{"exclusive_time":2,"id":49075152,"line":885,"name":"WHICH","allocations":[{"count":1,"id":44229120,"type":"ObjAt"}],"inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52540720,"line":104,"name":"name","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","entries":1}]}]}]},{"exclusive_time":682,"id":48509712,"line":8704,"name":"prefix:<!>","inclusive_time":682,"file":"gen/moar/m-CORE.setting","inlined_entries":5178,"jit_entries":5409,"entries":5409},{"exclusive_time":13056,"id":48247664,"line":2157,"name":"infix:<===>","allocations":[{"count":10816,"id":44229096,"type":"Scalar","jit":10574}],"inclusive_time":46767,"file":"gen/moar/m-CORE.setting","jit_entries":5287,"entries":5408,"callees":[{"exclusive_time":32795,"id":49075152,"line":885,"name":"WHICH","allocations":[{"count":10816,"id":44229120,"spesh":10661,"type":"ObjAt"}],"inclusive_time":33711,"spesh_entries":10661,"file":"gen/moar/m-CORE.setting","entries":10816,"callees":[{"exclusive_time":915,"id":52540720,"line":104,"name":"name","inclusive_time":915,"file":"gen/moar/m-Metamodel.nqp","jit_entries":10810,"entries":10816}]}]}]}]},{"exclusive_time":24941,"id":39774400,"line":1558,"name":"infix:<=:=>","inclusive_time":85795,"file":"gen/moar/m-CORE.setting","jit_entries":6010,"entries":6010,"callees":[{"exclusive_time":56988,"id":52314624,"line":2048,"name":"","allocations":[{"count":12020,"id":33960376,"type":"BOOTCode"},{"count":12020,"id":33961312,"type":"NQPArray"},{"count":6010,"id":33960328,"type":"BOOTHash"}],"inclusive_time":59125,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":6010,"callees":[{"exclusive_time":2137,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":2137,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":6010,"entries":6010}]},{"exclusive_time":1728,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":1728,"file":"gen/moar/m-CORE.setting","entries":6010}]},{"exclusive_time":802,"id":48509712,"line":8704,"name":"prefix:<!>","inclusive_time":802,"file":"gen/moar/m-CORE.setting","jit_entries":6611,"entries":6611},{"exclusive_time":6439,"id":49883184,"line":15471,"name":"push","allocations":[{"count":6010,"id":44229096,"type":"Scalar"}],"inclusive_time":6439,"file":"gen/moar/m-CORE.setting","entries":6010},{"exclusive_time":92,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":92,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601}]}]},{"exclusive_time":96,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":96,"file":"gen/moar/m-CORE.setting","inlined_entries":567,"jit_entries":601,"entries":601}]}]},{"exclusive_time":161,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":161,"file":"gen/moar/m-CORE.setting","inlined_entries":1065,"jit_entries":1192,"entries":1192},{"exclusive_time":2251,"id":49800800,"line":13990,"name":"iterator","allocations":[{"count":591,"id":33960376,"type":"BOOTCode","jit":591}],"inclusive_time":4286,"file":"gen/moar/m-CORE.setting","jit_entries":591,"entries":591,"callees":[{"exclusive_time":61,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":61,"file":"gen/moar/m-CORE.setting","jit_entries":591,"entries":591},{"exclusive_time":50,"id":49806576,"line":14088,"name":"sink","inclusive_time":50,"file":"gen/moar/m-CORE.setting","jit_entries":591,"entries":591},{"exclusive_time":412,"id":49801104,"line":13992,"name":"","allocations":[{"count":591,"id":44229096,"type":"Scalar","jit":591}],"inclusive_time":412,"file":"gen/moar/m-CORE.setting","jit_entries":591,"entries":591},{"exclusive_time":1226,"id":49801712,"line":14004,"name":"new","allocations":[{"count":591,"id":67906128,"type":"<anon|352550624>","jit":591}],"inclusive_time":1511,"file":"gen/moar/m-CORE.setting","jit_entries":591,"entries":591,"callees":[{"exclusive_time":63,"id":49052656,"line":495,"name":"of","inclusive_time":63,"file":"gen/moar/m-CORE.setting","jit_entries":591,"entries":591},{"exclusive_time":220,"id":49801408,"line":13998,"name":"BUILD","inclusive_time":220,"file":"gen/moar/m-CORE.setting","jit_entries":591,"entries":591}]}]},{"exclusive_time":18671,"id":49802624,"line":14020,"name":"push-until-lazy","allocations":[{"count":1182,"id":44229096,"type":"Scalar","jit":1120}],"inclusive_time":165559,"file":"gen/moar/m-CORE.setting","deopt_one":560,"jit_entries":560,"entries":591,"callees":[{"exclusive_time":4840,"id":49845792,"line":13753,"name":"reify-until-lazy","allocations":[{"count":591,"id":33960376,"type":"BOOTCode","jit":586},{"count":1182,"id":44229096,"type":"Scalar","jit":1172},{"count":591,"id":44229024,"type":"Int","jit":586}],"inclusive_time":135161,"file":"gen/moar/m-CORE.setting","deopt_one":586,"jit_entries":586,"entries":591,"callees":[{"exclusive_time":50,"id":49806576,"line":14088,"name":"sink","inclusive_time":50,"file":"gen/moar/m-CORE.setting","jit_entries":591,"entries":591},{"exclusive_time":69,"id":48509712,"line":8704,"name":"prefix:<!>","inclusive_time":69,"file":"gen/moar/m-CORE.setting","jit_entries":591,"entries":591},{"exclusive_time":3900,"id":49847008,"line":13760,"name":"","allocations":[{"count":2364,"id":33960376,"type":"BOOTCode","jit":2164}],"inclusive_time":130200,"file":"gen/moar/m-CORE.setting","jit_entries":1082,"entries":1182,"callees":[{"exclusive_time":5131,"id":49847312,"line":13762,"name":"","inclusive_time":126196,"file":"gen/moar/m-CORE.setting","jit_entries":975,"entries":1182,"callees":[{"exclusive_time":4633,"id":49800800,"line":13990,"name":"iterator","allocations":[{"count":1182,"id":33960376,"type":"BOOTCode","jit":1174}],"inclusive_time":9353,"file":"gen/moar/m-CORE.setting","jit_entries":1174,"entries":1182,"callees":[{"exclusive_time":154,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":154,"file":"gen/moar/m-CORE.setting","jit_entries":1177,"entries":1182},{"exclusive_time":102,"id":49806576,"line":14088,"name":"sink","inclusive_time":102,"file":"gen/moar/m-CORE.setting","jit_entries":1182,"entries":1182},{"exclusive_time":762,"id":49801104,"line":13992,"name":"","allocations":[{"count":1182,"id":44229096,"type":"Scalar","jit":1182}],"inclusive_time":762,"file":"gen/moar/m-CORE.setting","jit_entries":1182,"entries":1182},{"exclusive_time":2894,"id":49801712,"line":14004,"name":"new","allocations":[{"count":1182,"id":67906128,"type":"<anon|352550624>","jit":1174}],"inclusive_time":3700,"file":"gen/moar/m-CORE.setting","jit_entries":1174,"entries":1182,"callees":[{"exclusive_time":131,"id":49052656,"line":495,"name":"of","inclusive_time":131,"file":"gen/moar/m-CORE.setting","jit_entries":1174,"entries":1182},{"exclusive_time":675,"id":49801408,"line":13998,"name":"BUILD","allocations":[{"count":591,"id":44229096,"type":"Scalar","jit":587}],"inclusive_time":675,"file":"gen/moar/m-CORE.setting","jit_entries":1174,"entries":1182}]}]},{"exclusive_time":15904,"id":49802624,"line":14020,"name":"push-until-lazy","allocations":[{"count":2364,"id":44229096,"type":"Scalar","jit":2236},{"count":591,"id":44229024,"type":"Int","jit":559}],"inclusive_time":111571,"file":"gen/moar/m-CORE.setting","jit_entries":1118,"entries":1182,"callees":[{"exclusive_time":5418,"id":49845792,"line":13753,"name":"reify-until-lazy","allocations":[{"count":591,"id":33960376,"type":"BOOTCode","jit":586},{"count":1182,"id":44229096,"type":"Scalar","jit":1172}],"inclusive_time":87673,"file":"gen/moar/m-CORE.setting","deopt_one":586,"jit_entries":586,"entries":591,"callees":[{"exclusive_time":3218,"id":49213776,"line":2476,"name":"push-until-lazy","allocations":[{"count":591,"id":44229096,"type":"Scalar","jit":576}],"inclusive_time":81851,"file":"gen/moar/m-CORE.setting","jit_entries":576,"entries":591,"callees":[{"exclusive_time":60,"id":49215296,"line":2511,"name":"is-lazy","inclusive_time":60,"file":"gen/moar/m-CORE.setting","jit_entries":587,"entries":591},{"exclusive_time":2123,"id":49213168,"line":2463,"name":"push-all","allocations":[{"count":591,"id":44229096,"type":"Scalar","jit":558}],"inclusive_time":78572,"file":"gen/moar/m-CORE.setting","jit_entries":558,"entries":591,"callees":[{"exclusive_time":2743,"id":49212864,"line":2454,"name":"push-at-least","allocations":[{"count":591,"id":44229096,"spesh":566,"type":"Scalar"}],"inclusive_time":76324,"spesh_entries":566,"file":"gen/moar/m-CORE.setting","entries":591,"callees":[{"exclusive_time":17171,"id":49212256,"line":2436,"name":"push-exactly","allocations":[{"count":1182,"id":44229096,"type":"Scalar","jit":1156}],"inclusive_time":73580,"file":"gen/moar/m-CORE.setting","deopt_one":578,"jit_entries":578,"entries":591,"callees":[{"exclusive_time":10966,"id":49396784,"line":5136,"name":"pull-one","allocations":[{"count":3546,"id":44228616,"type":"IntAttrRef","jit":3474}],"inclusive_time":13796,"file":"gen/moar/m-CORE.setting","jit_entries":3474,"entries":3546,"callees":[{"exclusive_time":1611,"id":48475664,"line":8419,"name":"postfix:<-->","inclusive_time":1611,"file":"gen/moar/m-CORE.setting","jit_entries":3546,"entries":3546},{"exclusive_time":1218,"id":49802016,"line":14006,"name":"pull-one","inclusive_time":1218,"file":"gen/moar/m-CORE.setting","jit_entries":2955,"entries":2955}]},{"exclusive_time":10666,"id":39774400,"line":1558,"name":"infix:<=:=>","inclusive_time":40068,"file":"gen/moar/m-CORE.setting","jit_entries":2955,"entries":2955,"callees":[{"exclusive_time":27608,"id":52314624,"line":2048,"name":"","allocations":[{"count":5910,"id":33960376,"type":"BOOTCode"},{"count":5910,"id":33961312,"type":"NQPArray"},{"count":2955,"id":33960328,"type":"BOOTHash"}],"inclusive_time":28525,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":2955,"callees":[{"exclusive_time":916,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":916,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":2955,"entries":2955}]},{"exclusive_time":876,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":876,"file":"gen/moar/m-CORE.setting","entries":2955}]},{"exclusive_time":422,"id":48509712,"line":8704,"name":"prefix:<!>","inclusive_time":422,"file":"gen/moar/m-CORE.setting","jit_entries":3546,"entries":3546},{"exclusive_time":2046,"id":49692880,"line":12283,"name":"push","inclusive_time":2046,"file":"gen/moar/m-CORE.setting","entries":2955},{"exclusive_time":74,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":74,"file":"gen/moar/m-CORE.setting","jit_entries":591,"entries":591}]}]},{"exclusive_time":124,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":124,"file":"gen/moar/m-CORE.setting","inlined_entries":558,"jit_entries":591,"entries":591}]}]},{"exclusive_time":43,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":43,"file":"gen/moar/m-CORE.setting","jit_entries":591,"entries":591},{"exclusive_time":294,"id":52616112,"line":2635,"name":"type_check","inclusive_time":294,"file":"gen/moar/m-Metamodel.nqp","jit_entries":591,"entries":591},{"exclusive_time":66,"id":49806576,"line":14088,"name":"sink","inclusive_time":66,"file":"gen/moar/m-CORE.setting","jit_entries":591,"entries":591}]},{"exclusive_time":7214,"id":49692880,"line":12283,"name":"push","inclusive_time":7214,"file":"gen/moar/m-CORE.setting","entries":14775},{"exclusive_time":204,"id":48509712,"line":8704,"name":"prefix:<!>","inclusive_time":204,"file":"gen/moar/m-CORE.setting","inlined_entries":1118,"jit_entries":1182,"entries":1182},{"exclusive_time":440,"id":49849440,"line":13795,"name":"fully-reified","inclusive_time":574,"file":"gen/moar/m-CORE.setting","jit_entries":586,"entries":591,"callees":[{"exclusive_time":134,"id":48509712,"line":8704,"name":"prefix:<!>","inclusive_time":134,"file":"gen/moar/m-CORE.setting","inlined_entries":1172,"jit_entries":1182,"entries":1182}]}]},{"exclusive_time":141,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":141,"file":"gen/moar/m-CORE.setting","inlined_entries":975,"jit_entries":1182,"entries":1182}]},{"exclusive_time":103,"id":49806576,"line":14088,"name":"sink","inclusive_time":103,"file":"gen/moar/m-CORE.setting","jit_entries":1182,"entries":1182}]}]},{"exclusive_time":10049,"id":49883184,"line":15471,"name":"push","allocations":[{"count":14775,"id":44229096,"type":"Scalar"}],"inclusive_time":10049,"file":"gen/moar/m-CORE.setting","entries":14775},{"exclusive_time":62,"id":48509712,"line":8704,"name":"prefix:<!>","inclusive_time":62,"file":"gen/moar/m-CORE.setting","jit_entries":591,"entries":591},{"exclusive_time":1520,"id":49849440,"line":13795,"name":"fully-reified","inclusive_time":1613,"file":"gen/moar/m-CORE.setting","deopt_one":586,"jit_entries":586,"entries":591,"callees":[{"exclusive_time":93,"id":48509712,"line":8704,"name":"prefix:<!>","inclusive_time":93,"file":"gen/moar/m-CORE.setting","jit_entries":1182,"entries":1182}]}]}]}]},{"exclusive_time":998,"id":48657456,"line":14967,"name":"postcircumfix:<[ ]>","inclusive_time":1899,"file":"gen/moar/m-CORE.setting","inlined_entries":344,"jit_entries":599,"entries":601,"callees":[{"exclusive_time":900,"id":49863120,"line":15835,"name":"AT-POS","inclusive_time":900,"spesh_entries":599,"file":"gen/moar/m-CORE.setting","entries":601}]},{"exclusive_time":10656,"id":89321232,"line":29,"name":"hamming-distance","allocations":[{"count":175,"id":44229024,"type":"Int","jit":165}],"inclusive_time":1457834,"file":"hibbified-249.p6","jit_entries":591,"entries":601,"callees":[{"exclusive_time":28941,"id":52604256,"line":2222,"name":"accepts_type","allocations":[{"count":1202,"id":33961312,"type":"NQPArray","jit":1196},{"count":2404,"id":33961360,"type":"NQPArrayIter","jit":2392},{"count":2404,"id":33960256,"type":"BOOTNum","jit":2392}],"inclusive_time":48901,"file":"gen/moar/m-Metamodel.nqp","deopt_one":1196,"jit_entries":1196,"entries":1202,"callees":[{"exclusive_time":126,"id":52624624,"line":3092,"name":"role_typecheck_list","inclusive_time":126,"file":"gen/moar/m-Metamodel.nqp","jit_entries":1198,"entries":1202},{"exclusive_time":8736,"id":52600912,"line":2140,"name":"archetypes","allocations":[{"count":3606,"id":33961360,"type":"NQPArrayIter","jit":3600},{"count":2404,"id":33961384,"type":"NQPHashIter","jit":2400}],"inclusive_time":9806,"file":"gen/moar/m-Metamodel.nqp","jit_entries":3600,"entries":3606,"callees":[{"exclusive_time":274,"id":52627664,"line":3168,"name":"archetypes","inclusive_time":274,"file":"gen/moar/m-Metamodel.nqp","jit_entries":2400,"entries":2404},{"exclusive_time":613,"id":52538592,"line":88,"name":"generic","inclusive_time":613,"file":"gen/moar/m-Metamodel.nqp","inlined_entries":3600,"jit_entries":3606,"entries":3606},{"exclusive_time":181,"id":52551968,"line":304,"name":"archetypes","inclusive_time":181,"file":"gen/moar/m-Metamodel.nqp","jit_entries":1198,"entries":1202}]},{"exclusive_time":627,"id":52538592,"line":88,"name":"generic","inclusive_time":627,"file":"gen/moar/m-Metamodel.nqp","inlined_entries":1196,"jit_entries":3606,"entries":3606},{"exclusive_time":222,"id":52602736,"line":2202,"name":"curried_role","inclusive_time":222,"file":"gen/moar/m-Metamodel.nqp","jit_entries":2400,"entries":2404},{"exclusive_time":385,"id":34678320,"line":596,"name":"push","inclusive_time":385,"file":"gen/moar/stage2/NQPCORE.setting","jit_entries":1202,"entries":1202},{"exclusive_time":111,"id":52603040,"line":2206,"name":"role_arguments","inclusive_time":111,"file":"gen/moar/m-Metamodel.nqp","jit_entries":1198,"entries":1202},{"exclusive_time":7693,"id":52573248,"line":1073,"name":"find_method","allocations":[{"count":1202,"id":33960328,"type":"BOOTHash","jit":1198},{"count":1202,"id":33961360,"type":"NQPArrayIter","jit":1198}],"inclusive_time":8503,"file":"gen/moar/m-Metamodel.nqp","jit_entries":1198,"entries":1202,"callees":[{"exclusive_time":151,"id":52631008,"line":3264,"name":"submethod_table","allocations":[{"count":1202,"id":33960328,"type":"BOOTHash","jit":1198}],"inclusive_time":151,"file":"gen/moar/m-Metamodel.nqp","jit_entries":1198,"entries":1202},{"exclusive_time":317,"id":52572336,"line":1041,"name":"mro","inclusive_time":317,"file":"gen/moar/m-Metamodel.nqp","inlined_entries":1198,"jit_entries":1200,"entries":1202},{"exclusive_time":138,"id":52630704,"line":3263,"name":"method_table","allocations":[{"count":1202,"id":33960328,"type":"BOOTHash","jit":1198}],"inclusive_time":138,"file":"gen/moar/m-Metamodel.nqp","jit_entries":1198,"entries":1202},{"exclusive_time":202,"id":52558352,"line":515,"name":"method_table","inclusive_time":202,"file":"gen/moar/m-Metamodel.nqp","jit_entries":1202,"entries":1202}]},{"exclusive_time":176,"id":49143552,"line":1749,"name":"ACCEPTS","inclusive_time":176,"file":"gen/moar/m-CORE.setting","jit_entries":1198,"entries":1202}]},{"exclusive_time":1718,"id":48965712,"line":29779,"name":"METAOP_HYPER","allocations":[{"count":601,"id":44228640,"type":"Hash","jit":599}],"inclusive_time":2575,"file":"gen/moar/m-CORE.setting","jit_entries":599,"entries":601,"callees":[{"exclusive_time":856,"id":52311584,"line":1621,"name":"","allocations":[{"count":601,"id":44229240,"spesh":601,"type":"Block"},{"count":601,"id":33960376,"spesh":601,"type":"BOOTCode"}],"inclusive_time":856,"spesh_entries":601,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":601}]},{"exclusive_time":4561,"id":48966016,"line":29780,"name":"","allocations":[{"count":601,"id":44229096,"type":"Scalar","jit":599}],"inclusive_time":1296506,"file":"gen/moar/m-CORE.setting","jit_entries":599,"entries":601,"callees":[{"exclusive_time":184,"id":49991712,"line":17376,"name":"FLATTENABLE_LIST","allocations":[{"count":601,"id":33960304,"type":"BOOTArray","jit":599}],"inclusive_time":184,"file":"gen/moar/m-CORE.setting","jit_entries":599,"entries":601},{"exclusive_time":1148,"id":49992016,"line":17377,"name":"FLATTENABLE_HASH","inclusive_time":1208,"file":"gen/moar/m-CORE.setting","jit_entries":599,"entries":601,"callees":[{"exclusive_time":60,"id":49072720,"line":856,"name":"sink","inclusive_time":60,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601}]},{"exclusive_time":4814,"id":48971488,"line":29815,"name":"HYPER","inclusive_time":1290551,"file":"gen/moar/m-CORE.setting","entries":601,"callees":[{"exclusive_time":11712,"id":52314624,"line":2048,"name":"","allocations":[{"count":1202,"id":33960376,"type":"BOOTCode"},{"count":1202,"id":33961312,"type":"NQPArray"},{"count":601,"id":33960328,"type":"BOOTHash"},{"count":601,"id":33960520,"type":"CallCapture"}],"inclusive_time":39530,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":601,"callees":[{"exclusive_time":1814,"id":52294864,"line":920,"name":"is_bindable","allocations":[{"count":601,"id":33960376,"spesh":601,"type":"BOOTCode"}],"inclusive_time":27817,"spesh_entries":601,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":601,"callees":[{"exclusive_time":1699,"id":52295168,"line":926,"name":"","inclusive_time":26003,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":601,"callees":[{"exclusive_time":7628,"id":52292736,"line":606,"name":"bind","inclusive_time":24303,"spesh_entries":601,"file":"gen/moar/m-BOOTSTRAP.nqp","deopt_one":601,"entries":601,"callees":[{"exclusive_time":11611,"id":52290912,"line":168,"name":"bind_one_param","allocations":[{"count":6010,"id":33960376,"type":"BOOTCode"},{"count":1803,"id":44229096,"type":"Scalar"}],"inclusive_time":16125,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":3005,"callees":[{"exclusive_time":4349,"id":52616112,"line":2635,"name":"type_check","allocations":[{"count":3606,"id":33961360,"type":"NQPArrayIter"}],"inclusive_time":4514,"file":"gen/moar/m-Metamodel.nqp","entries":1803,"callees":[{"exclusive_time":165,"id":52544976,"line":161,"name":"pretending_to_be","inclusive_time":165,"file":"gen/moar/m-Metamodel.nqp","jit_entries":1803,"entries":1803}]}]},{"exclusive_time":549,"id":52292432,"line":573,"name":"handle_optional","inclusive_time":549,"spesh_entries":1200,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1202}]}]}]}]},{"exclusive_time":23691,"id":48976048,"line":29887,"name":"HYPER","allocations":[{"count":601,"id":33960376,"type":"BOOTCode"},{"count":1803,"id":44229096,"type":"Scalar"}],"inclusive_time":1246207,"file":"gen/moar/m-CORE.setting","entries":601,"callees":[{"exclusive_time":3426,"id":49933344,"line":16487,"name":"iterator","allocations":[{"count":1202,"id":33960376,"type":"BOOTCode","jit":1200}],"inclusive_time":7138,"file":"gen/moar/m-CORE.setting","jit_entries":1200,"entries":1202,"callees":[{"exclusive_time":1348,"id":49933648,"line":16488,"name":"","allocations":[{"count":1202,"id":44229096,"type":"Scalar","jit":1200}],"inclusive_time":1348,"file":"gen/moar/m-CORE.setting","jit_entries":1200,"entries":1202},{"exclusive_time":2003,"id":49934256,"line":16497,"name":"new","allocations":[{"count":1202,"id":67905768,"type":"<anon|414432224>","jit":1198}],"inclusive_time":2363,"file":"gen/moar/m-CORE.setting","jit_entries":1198,"entries":1202,"callees":[{"exclusive_time":359,"id":49933952,"line":16492,"name":"BUILD","inclusive_time":359,"file":"gen/moar/m-CORE.setting","jit_entries":1198,"entries":1202}]}]},{"exclusive_time":115,"id":49215296,"line":2511,"name":"is-lazy","inclusive_time":115,"file":"gen/moar/m-CORE.setting","jit_entries":1200,"entries":1202},{"exclusive_time":105,"id":49806576,"line":14088,"name":"sink","inclusive_time":105,"file":"gen/moar/m-CORE.setting","jit_entries":1202,"entries":1202},{"exclusive_time":2827,"id":49257248,"line":2585,"name":"new","allocations":[{"count":1202,"id":67908552,"type":"Rakudo::Internals::DwimIterator","jit":1200}],"inclusive_time":20133,"file":"gen/moar/m-CORE.setting","jit_entries":1200,"entries":1202,"callees":[{"exclusive_time":1942,"id":49080016,"line":942,"name":"new","allocations":[{"count":1202,"id":44228640,"spesh":1200,"type":"Hash"}],"inclusive_time":17305,"spesh_entries":1200,"file":"gen/moar/m-CORE.setting","entries":1202,"callees":[{"exclusive_time":4111,"id":49081536,"line":956,"name":"bless","allocations":[{"count":1202,"id":44228640,"spesh":1200,"type":"Hash"},{"count":1202,"id":68411984,"spesh":1200,"type":"IterationBuffer"}],"inclusive_time":15363,"spesh_entries":1200,"file":"gen/moar/m-CORE.setting","entries":1202,"callees":[{"exclusive_time":5706,"id":49793200,"line":13860,"name":"from-slurpy-flat","allocations":[{"count":1202,"id":33960376,"spesh":1200,"type":"BOOTCode"},{"count":2404,"id":68411984,"spesh":2400,"type":"IterationBuffer"},{"count":1202,"id":44228976,"spesh":1200,"type":"Array"},{"count":1202,"id":65481320,"spesh":1200,"type":"List::Reifier"}],"inclusive_time":8274,"spesh_entries":1200,"file":"gen/moar/m-CORE.setting","entries":1202,"callees":[{"exclusive_time":215,"id":52321312,"line":3008,"name":"","allocations":[{"count":1202,"id":44228664,"type":"List","jit":1202}],"inclusive_time":215,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1202,"entries":1202},{"exclusive_time":1799,"id":49861296,"line":15806,"name":"reification-target","inclusive_time":2352,"file":"gen/moar/m-CORE.setting","jit_entries":1200,"entries":1202,"callees":[{"exclusive_time":553,"id":49882880,"line":15464,"name":"new","allocations":[{"count":1202,"id":68412368,"type":"Array::ArrayReificationTarget","jit":1202}],"inclusive_time":553,"file":"gen/moar/m-CORE.setting","jit_entries":1202,"entries":1202}]}]},{"exclusive_time":2750,"id":49081840,"line":960,"name":"BUILDALL","allocations":[{"count":1202,"id":33960376,"type":"BOOTCode","jit":1200}],"inclusive_time":2978,"file":"gen/moar/m-CORE.setting","jit_entries":1200,"entries":1202,"callees":[{"exclusive_time":228,"id":52582064,"line":1475,"name":"BUILDALLPLAN","inclusive_time":228,"file":"gen/moar/m-Metamodel.nqp","jit_entries":1200,"entries":1202}]}]}]}]},{"exclusive_time":642,"id":49080016,"line":942,"name":"new","allocations":[{"count":601,"id":44228640,"spesh":600,"type":"Hash"}],"inclusive_time":5342,"spesh_entries":600,"file":"gen/moar/m-CORE.setting","entries":601,"callees":[{"exclusive_time":1381,"id":49081536,"line":956,"name":"bless","allocations":[{"count":601,"id":44228640,"spesh":600,"type":"Hash"},{"count":601,"id":68411984,"spesh":600,"type":"IterationBuffer"}],"inclusive_time":4699,"spesh_entries":600,"file":"gen/moar/m-CORE.setting","entries":601,"callees":[{"exclusive_time":1775,"id":49793200,"line":13860,"name":"from-slurpy-flat","allocations":[{"count":601,"id":33960376,"spesh":600,"type":"BOOTCode"},{"count":1202,"id":68411984,"spesh":1200,"type":"IterationBuffer"},{"count":601,"id":44228976,"spesh":600,"type":"Array"},{"count":601,"id":65481320,"spesh":600,"type":"List::Reifier"}],"inclusive_time":2654,"spesh_entries":600,"file":"gen/moar/m-CORE.setting","entries":601,"callees":[{"exclusive_time":68,"id":52321312,"line":3008,"name":"","allocations":[{"count":601,"id":44228664,"type":"List","jit":601}],"inclusive_time":68,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":601,"entries":601},{"exclusive_time":669,"id":49861296,"line":15806,"name":"reification-target","inclusive_time":810,"file":"gen/moar/m-CORE.setting","jit_entries":600,"entries":601,"callees":[{"exclusive_time":141,"id":49882880,"line":15464,"name":"new","allocations":[{"count":601,"id":68412368,"type":"Array::ArrayReificationTarget","jit":601}],"inclusive_time":141,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601}]}]},{"exclusive_time":612,"id":49081840,"line":960,"name":"BUILDALL","allocations":[{"count":601,"id":33960376,"type":"BOOTCode","jit":600}],"inclusive_time":663,"file":"gen/moar/m-CORE.setting","jit_entries":600,"entries":601,"callees":[{"exclusive_time":51,"id":52582064,"line":1475,"name":"BUILDALLPLAN","inclusive_time":51,"file":"gen/moar/m-Metamodel.nqp","jit_entries":600,"entries":601}]}]}]},{"exclusive_time":149875,"id":48976656,"line":29903,"name":"","allocations":[{"count":601,"id":44229096,"type":"Scalar","jit":600}],"inclusive_time":1094918,"file":"gen/moar/m-CORE.setting","deopt_one":8400,"jit_entries":8400,"entries":8414,"callees":[{"exclusive_time":22149,"id":49257552,"line":2595,"name":"pull-one","allocations":[{"count":16828,"id":33960376,"type":"BOOTCode","jit":16828}],"inclusive_time":346832,"file":"gen/moar/m-CORE.setting","jit_entries":16828,"entries":16828,"callees":[{"exclusive_time":77204,"id":49258160,"line":2602,"name":"","allocations":[{"count":16828,"id":44229096,"type":"Scalar","jit":16828}],"inclusive_time":324682,"file":"gen/moar/m-CORE.setting","jit_entries":16828,"entries":16828,"callees":[{"exclusive_time":11916,"id":49934560,"line":16499,"name":"pull-one","allocations":[{"count":15626,"id":44228928,"spesh":15626,"type":"IntPosRef"}],"inclusive_time":11916,"spesh_entries":16828,"file":"gen/moar/m-CORE.setting","entries":16828},{"exclusive_time":53677,"id":39774400,"line":1558,"name":"infix:<=:=>","inclusive_time":204298,"file":"gen/moar/m-CORE.setting","jit_entries":15626,"entries":15626,"callees":[{"exclusive_time":141169,"id":52314624,"line":2048,"name":"","allocations":[{"count":31252,"id":33960376,"type":"BOOTCode"},{"count":31252,"id":33961312,"type":"NQPArray"},{"count":15626,"id":33960328,"type":"BOOTHash"}],"inclusive_time":146153,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":15626,"callees":[{"exclusive_time":4983,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":4983,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":15626,"entries":15626}]},{"exclusive_time":4467,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":4467,"file":"gen/moar/m-CORE.setting","entries":15626}]},{"exclusive_time":2418,"id":48477184,"line":8439,"name":"infix:<+>","inclusive_time":2418,"file":"gen/moar/m-CORE.setting","inlined_entries":15626,"jit_entries":15626,"entries":15626},{"exclusive_time":10339,"id":49692880,"line":12283,"name":"push","inclusive_time":10339,"file":"gen/moar/m-CORE.setting","entries":15626},{"exclusive_time":1281,"id":49072720,"line":856,"name":"sink","inclusive_time":1281,"file":"gen/moar/m-CORE.setting","jit_entries":15626,"entries":15626},{"exclusive_time":182,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":182,"file":"gen/moar/m-CORE.setting","jit_entries":1202,"entries":1202},{"exclusive_time":168,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":168,"file":"gen/moar/m-CORE.setting","jit_entries":1202,"entries":1202},{"exclusive_time":10155,"id":49257552,"line":2595,"name":"pull-one","allocations":[{"count":1202,"id":33960376,"type":"BOOTCode","jit":1202},{"count":1202,"id":44229096,"type":"Scalar","jit":1202}],"inclusive_time":16871,"file":"gen/moar/m-CORE.setting","jit_entries":1202,"entries":1202,"callees":[{"exclusive_time":295,"id":48477184,"line":8439,"name":"infix:<+>","inclusive_time":295,"file":"gen/moar/m-CORE.setting","jit_entries":1202,"entries":1202},{"exclusive_time":384,"id":48477792,"line":8446,"name":"infix:<->","inclusive_time":384,"file":"gen/moar/m-CORE.setting","jit_entries":1200,"entries":1202},{"exclusive_time":5658,"id":48479616,"line":8471,"name":"infix:<%>","allocations":[{"count":1202,"id":44229024,"type":"Int","jit":1198}],"inclusive_time":5762,"file":"gen/moar/m-CORE.setting","jit_entries":1198,"entries":1202,"callees":[{"exclusive_time":103,"id":49806576,"line":14088,"name":"sink","inclusive_time":103,"file":"gen/moar/m-CORE.setting","jit_entries":1202,"entries":1202}]},{"exclusive_time":273,"id":49693488,"line":12290,"name":"AT-POS","inclusive_time":273,"file":"gen/moar/m-CORE.setting","jit_entries":1200,"entries":1202}]}]}]},{"exclusive_time":1384,"id":48510016,"line":8705,"name":"prefix:<!>","inclusive_time":1384,"file":"gen/moar/m-CORE.setting","jit_entries":16828,"entries":16828},{"exclusive_time":1860,"id":49259376,"line":2620,"name":"ended","inclusive_time":1860,"file":"gen/moar/m-CORE.setting","jit_entries":25843,"entries":25843},{"exclusive_time":3236,"id":48454384,"line":7993,"name":"infix:<!=>","inclusive_time":5446,"file":"gen/moar/m-CORE.setting","jit_entries":8400,"entries":8414,"callees":[{"exclusive_time":1372,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":1372,"file":"gen/moar/m-CORE.setting","inlined_entries":8400,"jit_entries":8414,"entries":8414},{"exclusive_time":837,"id":48510624,"line":8708,"name":"prefix:<not>","inclusive_time":837,"file":"gen/moar/m-CORE.setting","inlined_entries":8400,"jit_entries":8400,"entries":8414}]},{"exclusive_time":1968,"id":49806576,"line":14088,"name":"sink","inclusive_time":1968,"file":"gen/moar/m-CORE.setting","jit_entries":24040,"entries":24040},{"exclusive_time":191,"id":48252224,"line":2178,"name":"postfix:<++>","inclusive_time":191,"file":"gen/moar/m-CORE.setting","jit_entries":599,"entries":601},{"exclusive_time":1213,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":1213,"file":"gen/moar/m-CORE.setting","jit_entries":7813,"entries":7813},{"exclusive_time":29007,"id":48971488,"line":29815,"name":"HYPER","inclusive_time":576360,"file":"gen/moar/m-CORE.setting","jit_entries":7800,"entries":7813,"callees":[{"exclusive_time":265930,"id":52314624,"line":2048,"name":"","allocations":[{"count":15626,"id":33960376,"type":"BOOTCode"},{"count":15626,"id":33961312,"type":"NQPArray"},{"count":7813,"id":33960328,"type":"BOOTHash"},{"count":7813,"id":33960520,"type":"CallCapture"}],"inclusive_time":527919,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":7813,"callees":[{"exclusive_time":15054,"id":52294864,"line":920,"name":"is_bindable","allocations":[{"count":7813,"id":33960376,"spesh":7813,"type":"BOOTCode"}],"inclusive_time":261988,"spesh_entries":7813,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":7813,"callees":[{"exclusive_time":13374,"id":52295168,"line":926,"name":"","inclusive_time":246934,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":7813,"callees":[{"exclusive_time":94763,"id":52292736,"line":606,"name":"bind","inclusive_time":233560,"spesh_entries":7813,"file":"gen/moar/m-BOOTSTRAP.nqp","deopt_one":7813,"entries":7813,"callees":[{"exclusive_time":117923,"id":52290912,"line":168,"name":"bind_one_param","allocations":[{"count":78130,"id":33960376,"type":"BOOTCode"},{"count":23439,"id":44229096,"type":"Scalar"}],"inclusive_time":138796,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":39065,"callees":[{"exclusive_time":20039,"id":52616112,"line":2635,"name":"type_check","allocations":[{"count":15626,"id":33961360,"type":"NQPArrayIter"}],"inclusive_time":20872,"file":"gen/moar/m-Metamodel.nqp","entries":7813,"callees":[{"exclusive_time":833,"id":52544976,"line":161,"name":"pretending_to_be","inclusive_time":833,"file":"gen/moar/m-Metamodel.nqp","jit_entries":7813,"entries":7813}]}]}]}]}]}]},{"exclusive_time":15746,"id":48971792,"line":29817,"name":"HYPER","allocations":[{"count":15626,"id":44229096,"type":"Scalar","jit":15622}],"inclusive_time":19432,"file":"gen/moar/m-CORE.setting","jit_entries":7811,"entries":7813,"callees":[{"exclusive_time":3686,"id":48487520,"line":8571,"name":"infix:<+^>","inclusive_time":3686,"spesh_entries":7800,"file":"gen/moar/m-CORE.setting","entries":7813}]}]},{"exclusive_time":5019,"id":49692880,"line":12283,"name":"push","inclusive_time":5019,"file":"gen/moar/m-CORE.setting","entries":7813},{"exclusive_time":686,"id":49072720,"line":856,"name":"sink","inclusive_time":686,"file":"gen/moar/m-CORE.setting","jit_entries":7813,"entries":7813},{"exclusive_time":1979,"id":48474752,"line":8404,"name":"postfix:<++>","inclusive_time":1979,"file":"gen/moar/m-CORE.setting","jit_entries":7200,"entries":7212},{"exclusive_time":1058,"id":39754944,"line":655,"name":"last","inclusive_time":2100,"file":"gen/moar/m-CORE.setting","jit_entries":599,"entries":601,"callees":[{"exclusive_time":1042,"id":39750384,"line":603,"name":"THROW-NIL","allocations":[{"count":601,"id":33960568,"spesh":599,"type":"BOOTException"}],"inclusive_time":1042,"spesh_entries":599,"file":"gen/moar/m-CORE.setting","entries":601}]}]},{"exclusive_time":5783,"id":49793808,"line":13890,"name":"new","allocations":[{"count":601,"id":44228664,"spesh":599,"type":"List"},{"count":601,"id":68411984,"spesh":599,"type":"IterationBuffer"}],"inclusive_time":94761,"spesh_entries":599,"file":"gen/moar/m-CORE.setting","entries":601,"callees":[{"exclusive_time":3395,"id":49791376,"line":13817,"name":"from-slurpy","allocations":[{"count":601,"id":44228976,"spesh":600,"type":"Array"},{"count":601,"id":68411984,"spesh":600,"type":"IterationBuffer"},{"count":601,"id":65481320,"spesh":600,"type":"List::Reifier"}],"inclusive_time":5163,"spesh_entries":600,"file":"gen/moar/m-CORE.setting","entries":601,"callees":[{"exclusive_time":196,"id":52321312,"line":3008,"name":"","allocations":[{"count":601,"id":44228664,"type":"List","jit":601}],"inclusive_time":196,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":601,"entries":601},{"exclusive_time":1159,"id":49861296,"line":15806,"name":"reification-target","inclusive_time":1571,"file":"gen/moar/m-CORE.setting","jit_entries":600,"entries":601,"callees":[{"exclusive_time":412,"id":49882880,"line":15464,"name":"new","allocations":[{"count":601,"id":68412368,"type":"Array::ArrayReificationTarget","jit":601}],"inclusive_time":412,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601}]}]},{"exclusive_time":793,"id":52311584,"line":1621,"name":"","allocations":[{"count":601,"id":44229240,"spesh":601,"type":"Block"},{"count":601,"id":33960376,"spesh":601,"type":"BOOTCode"}],"inclusive_time":793,"spesh_entries":601,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":601},{"exclusive_time":4346,"id":49298592,"line":3773,"name":"map","inclusive_time":41476,"spesh_entries":601,"file":"gen/moar/m-CORE.setting","entries":601,"callees":[{"exclusive_time":73,"id":52321312,"line":3008,"name":"","allocations":[{"count":601,"id":44228664,"type":"List","jit":601}],"inclusive_time":73,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":601,"entries":601},{"exclusive_time":10877,"id":52314624,"line":2048,"name":"","allocations":[{"count":1202,"id":33960376,"type":"BOOTCode"},{"count":1202,"id":33961312,"type":"NQPArray"},{"count":601,"id":33960328,"type":"BOOTHash"}],"inclusive_time":10998,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":601,"callees":[{"exclusive_time":120,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":120,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":601,"entries":601}]},{"exclusive_time":5713,"id":49299808,"line":3779,"name":"map","allocations":[{"count":1202,"id":44229096,"type":"Scalar"}],"inclusive_time":26057,"file":"gen/moar/m-CORE.setting","entries":601,"callees":[{"exclusive_time":4282,"id":49800800,"line":13990,"name":"iterator","allocations":[{"count":601,"id":33960376,"type":"BOOTCode","jit":601}],"inclusive_time":8806,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601,"callees":[{"exclusive_time":179,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":179,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601},{"exclusive_time":56,"id":49806576,"line":14088,"name":"sink","inclusive_time":56,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601},{"exclusive_time":900,"id":49801104,"line":13992,"name":"","allocations":[{"count":601,"id":44229096,"type":"Scalar","jit":601}],"inclusive_time":900,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601},{"exclusive_time":2474,"id":49801712,"line":14004,"name":"new","allocations":[{"count":601,"id":67906128,"type":"<anon|352550624>","jit":601}],"inclusive_time":3387,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601,"callees":[{"exclusive_time":509,"id":49877712,"line":16147,"name":"of","inclusive_time":509,"file":"gen/moar/m-CORE.setting","jit_entries":599,"entries":601},{"exclusive_time":404,"id":49801408,"line":13998,"name":"BUILD","inclusive_time":404,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601}]}]},{"exclusive_time":7179,"id":49303152,"line":3840,"name":"sequential-map","allocations":[{"count":1202,"id":33960376,"type":"BOOTCode","jit":1202},{"count":1803,"id":44229096,"type":"Scalar","jit":1803}],"inclusive_time":11538,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601,"callees":[{"exclusive_time":1622,"id":49411680,"line":6408,"name":"count","inclusive_time":1735,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601,"callees":[{"exclusive_time":112,"id":50093552,"line":18706,"name":"count","inclusive_time":112,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601}]},{"exclusive_time":200,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":200,"file":"gen/moar/m-CORE.setting","inlined_entries":601,"jit_entries":601,"entries":601},{"exclusive_time":495,"id":49304064,"line":3847,"name":"","inclusive_time":495,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601},{"exclusive_time":1428,"id":49401344,"line":3827,"name":"new","allocations":[{"count":1803,"id":44229096,"type":"Scalar","jit":1803},{"count":601,"id":67908360,"type":"<anon|159066640>","jit":601}],"inclusive_time":1428,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601},{"exclusive_time":499,"id":49700480,"line":12399,"name":"new","allocations":[{"count":601,"id":67909080,"type":"Seq","jit":601}],"inclusive_time":499,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601}]}]}]},{"exclusive_time":4428,"id":49705648,"line":12474,"name":"sink","inclusive_time":41544,"file":"gen/moar/m-CORE.setting","entries":601,"callees":[{"exclusive_time":2584,"id":49701088,"line":12407,"name":"iterator","inclusive_time":3263,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601,"callees":[{"exclusive_time":55,"id":49806576,"line":14088,"name":"sink","inclusive_time":55,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601},{"exclusive_time":623,"id":52616112,"line":2635,"name":"type_check","inclusive_time":623,"file":"gen/moar/m-Metamodel.nqp","jit_entries":601,"entries":601}]},{"exclusive_time":13543,"id":49306192,"line":3921,"name":"sink-all","allocations":[{"count":601,"id":33960376,"type":"BOOTCode","jit":600},{"count":3606,"id":44229096,"type":"Scalar","jit":3600}],"inclusive_time":33687,"file":"gen/moar/m-CORE.setting","deopt_one":600,"jit_entries":600,"entries":601,"callees":[{"exclusive_time":109,"id":48510016,"line":8705,"name":"prefix:<!>","inclusive_time":109,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601},{"exclusive_time":1722,"id":49417456,"line":6478,"name":"phasers","inclusive_time":1845,"file":"gen/moar/m-CORE.setting","jit_entries":1202,"entries":1202,"callees":[{"exclusive_time":122,"id":49806576,"line":14088,"name":"sink","inclusive_time":122,"file":"gen/moar/m-CORE.setting","jit_entries":1202,"entries":1202}]},{"exclusive_time":898,"id":48405440,"line":7763,"name":"prefix:<+>","inclusive_time":4954,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601,"callees":[{"exclusive_time":1122,"id":49795632,"line":13911,"name":"Numeric","inclusive_time":4055,"spesh_entries":601,"file":"gen/moar/m-CORE.setting","entries":601,"callees":[{"exclusive_time":2645,"id":49797760,"line":13932,"name":"elems","inclusive_time":2933,"spesh_entries":601,"file":"gen/moar/m-CORE.setting","entries":601,"callees":[{"exclusive_time":189,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":189,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601},{"exclusive_time":98,"id":49806576,"line":14088,"name":"sink","inclusive_time":98,"file":"gen/moar/m-CORE.setting","jit_entries":1202,"entries":1202}]}]}]},{"exclusive_time":1938,"id":49078192,"line":929,"name":"Bool","inclusive_time":4754,"spesh_entries":601,"file":"gen/moar/m-CORE.setting","entries":601,"callees":[{"exclusive_time":98,"id":52321312,"line":3008,"name":"","allocations":[{"count":601,"id":44228664,"type":"List","jit":601}],"inclusive_time":98,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":601,"entries":601},{"exclusive_time":2569,"id":49794720,"line":13904,"name":"Bool","inclusive_time":2718,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601,"callees":[{"exclusive_time":60,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":60,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601},{"exclusive_time":47,"id":49806576,"line":14088,"name":"sink","inclusive_time":47,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601},{"exclusive_time":40,"id":48508496,"line":8699,"name":"prefix:<so>","inclusive_time":40,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601}]}]},{"exclusive_time":92,"id":49806576,"line":14088,"name":"sink","inclusive_time":92,"file":"gen/moar/m-CORE.setting","jit_entries":1202,"entries":1202},{"exclusive_time":1442,"id":49802016,"line":14006,"name":"pull-one","inclusive_time":8145,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601,"callees":[{"exclusive_time":4153,"id":49802320,"line":14013,"name":"reify-and-pull-one","allocations":[{"count":601,"id":44229072,"type":"IntLexRef","jit":601}],"inclusive_time":6702,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601,"callees":[{"exclusive_time":2377,"id":49843664,"line":13724,"name":"reify-at-least","allocations":[{"count":601,"id":33960376,"type":"BOOTCode","jit":601},{"count":601,"id":44229096,"type":"Scalar","jit":601}],"inclusive_time":2432,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601,"callees":[{"exclusive_time":54,"id":49806576,"line":14088,"name":"sink","inclusive_time":54,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601}]},{"exclusive_time":117,"id":48483568,"line":8526,"name":"infix:«<»","inclusive_time":117,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601}]}]},{"exclusive_time":243,"id":49072720,"line":856,"name":"sink","inclusive_time":243,"file":"gen/moar/m-CORE.setting","entries":601}]},{"exclusive_time":165,"id":49072720,"line":856,"name":"sink","inclusive_time":165,"file":"gen/moar/m-CORE.setting","entries":601}]}]}]}]}]},{"exclusive_time":768,"id":52311584,"line":1621,"name":"","allocations":[{"count":601,"id":44229240,"spesh":601,"type":"Block"},{"count":601,"id":33960376,"spesh":601,"type":"BOOTCode"}],"inclusive_time":768,"spesh_entries":601,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":601},{"exclusive_time":3926,"id":49298592,"line":3773,"name":"map","inclusive_time":28214,"spesh_entries":601,"file":"gen/moar/m-CORE.setting","entries":601,"callees":[{"exclusive_time":76,"id":52321312,"line":3008,"name":"","allocations":[{"count":601,"id":44228664,"type":"List","jit":601}],"inclusive_time":76,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":601,"entries":601},{"exclusive_time":9734,"id":52314624,"line":2048,"name":"","allocations":[{"count":1202,"id":33960376,"type":"BOOTCode"},{"count":1202,"id":33961312,"type":"NQPArray"},{"count":601,"id":33960328,"type":"BOOTHash"}],"inclusive_time":9796,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":601,"callees":[{"exclusive_time":61,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":61,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":601,"entries":601}]},{"exclusive_time":2868,"id":49299808,"line":3779,"name":"map","allocations":[{"count":1202,"id":44229096,"spesh":1202,"type":"Scalar"}],"inclusive_time":14415,"spesh_entries":601,"file":"gen/moar/m-CORE.setting","entries":601,"callees":[{"exclusive_time":2775,"id":49800800,"line":13990,"name":"iterator","allocations":[{"count":601,"id":33960376,"type":"BOOTCode","jit":601}],"inclusive_time":6262,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601,"callees":[{"exclusive_time":86,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":86,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601},{"exclusive_time":52,"id":49806576,"line":14088,"name":"sink","inclusive_time":52,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601},{"exclusive_time":442,"id":49801104,"line":13992,"name":"","allocations":[{"count":601,"id":44229096,"type":"Scalar","jit":601}],"inclusive_time":442,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601},{"exclusive_time":2174,"id":49801712,"line":14004,"name":"new","allocations":[{"count":601,"id":67906128,"type":"<anon|352550624>","jit":601}],"inclusive_time":2906,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601,"callees":[{"exclusive_time":94,"id":49052656,"line":495,"name":"of","inclusive_time":94,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601},{"exclusive_time":636,"id":49801408,"line":13998,"name":"BUILD","allocations":[{"count":601,"id":44229096,"type":"Scalar","jit":601}],"inclusive_time":636,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601}]}]},{"exclusive_time":3249,"id":49303152,"line":3840,"name":"sequential-map","allocations":[{"count":1202,"id":33960376,"type":"BOOTCode","jit":1202},{"count":1803,"id":44229096,"type":"Scalar","jit":1803}],"inclusive_time":5284,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601,"callees":[{"exclusive_time":810,"id":49411680,"line":6408,"name":"count","inclusive_time":856,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601,"callees":[{"exclusive_time":45,"id":50093552,"line":18706,"name":"count","inclusive_time":45,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601}]},{"exclusive_time":106,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":106,"file":"gen/moar/m-CORE.setting","inlined_entries":601,"jit_entries":601,"entries":601},{"exclusive_time":166,"id":49304064,"line":3847,"name":"","inclusive_time":166,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601},{"exclusive_time":693,"id":49401344,"line":3827,"name":"new","allocations":[{"count":1803,"id":44229096,"type":"Scalar","jit":1803},{"count":601,"id":67908360,"type":"<anon|159066640>","jit":601}],"inclusive_time":693,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601},{"exclusive_time":212,"id":49700480,"line":12399,"name":"new","allocations":[{"count":601,"id":67909080,"type":"Seq","jit":601}],"inclusive_time":212,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601}]}]}]},{"exclusive_time":2613,"id":49705648,"line":12474,"name":"sink","inclusive_time":70210,"file":"gen/moar/m-CORE.setting","entries":601,"callees":[{"exclusive_time":1740,"id":49701088,"line":12407,"name":"iterator","inclusive_time":2068,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601,"callees":[{"exclusive_time":55,"id":49806576,"line":14088,"name":"sink","inclusive_time":55,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601},{"exclusive_time":272,"id":52616112,"line":2635,"name":"type_check","inclusive_time":272,"file":"gen/moar/m-Metamodel.nqp","jit_entries":601,"entries":601}]},{"exclusive_time":35200,"id":49306192,"line":3921,"name":"sink-all","allocations":[{"count":601,"id":33960376,"type":"BOOTCode","jit":600},{"count":3606,"id":44229096,"type":"Scalar","jit":3600}],"inclusive_time":65364,"file":"gen/moar/m-CORE.setting","deopt_one":600,"jit_entries":600,"entries":601,"callees":[{"exclusive_time":57,"id":48510016,"line":8705,"name":"prefix:<!>","inclusive_time":57,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601},{"exclusive_time":1194,"id":49417456,"line":6478,"name":"phasers","inclusive_time":1295,"file":"gen/moar/m-CORE.setting","jit_entries":1202,"entries":1202,"callees":[{"exclusive_time":100,"id":49806576,"line":14088,"name":"sink","inclusive_time":100,"file":"gen/moar/m-CORE.setting","jit_entries":1202,"entries":1202}]},{"exclusive_time":393,"id":48405440,"line":7763,"name":"prefix:<+>","inclusive_time":3060,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601,"callees":[{"exclusive_time":616,"id":49795632,"line":13911,"name":"Numeric","inclusive_time":2666,"spesh_entries":601,"file":"gen/moar/m-CORE.setting","entries":601,"callees":[{"exclusive_time":1888,"id":49797760,"line":13932,"name":"elems","inclusive_time":2050,"spesh_entries":601,"file":"gen/moar/m-CORE.setting","entries":601,"callees":[{"exclusive_time":66,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":66,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601},{"exclusive_time":95,"id":49806576,"line":14088,"name":"sink","inclusive_time":95,"file":"gen/moar/m-CORE.setting","jit_entries":1202,"entries":1202}]}]}]},{"exclusive_time":1342,"id":49078192,"line":929,"name":"Bool","inclusive_time":2925,"spesh_entries":601,"file":"gen/moar/m-CORE.setting","entries":601,"callees":[{"exclusive_time":95,"id":52321312,"line":3008,"name":"","allocations":[{"count":601,"id":44228664,"type":"List","jit":601}],"inclusive_time":95,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":601,"entries":601},{"exclusive_time":1352,"id":49794720,"line":13904,"name":"Bool","inclusive_time":1488,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601,"callees":[{"exclusive_time":55,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":55,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601},{"exclusive_time":43,"id":49806576,"line":14088,"name":"sink","inclusive_time":43,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601},{"exclusive_time":36,"id":48508496,"line":8699,"name":"prefix:<so>","inclusive_time":36,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601}]}]},{"exclusive_time":671,"id":49806576,"line":14088,"name":"sink","inclusive_time":671,"file":"gen/moar/m-CORE.setting","jit_entries":9015,"entries":9015},{"exclusive_time":2513,"id":49802016,"line":14006,"name":"pull-one","inclusive_time":2699,"file":"gen/moar/m-CORE.setting","jit_entries":8414,"entries":8414,"callees":[{"exclusive_time":186,"id":49802320,"line":14013,"name":"reify-and-pull-one","inclusive_time":186,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601}]},{"exclusive_time":16172,"id":86694640,"line":31,"name":"","allocations":[{"count":601,"id":44229096,"spesh":600,"type":"Scalar"},{"count":6623,"id":44229072,"spesh":6580,"type":"IntLexRef"}],"inclusive_time":17586,"spesh_entries":7800,"file":"hibbified-249.p6","entries":7813,"callees":[{"exclusive_time":870,"id":48475056,"line":8409,"name":"postfix:<++>","inclusive_time":870,"file":"gen/moar/m-CORE.setting","jit_entries":6623,"entries":6623},{"exclusive_time":544,"id":49072720,"line":856,"name":"sink","inclusive_time":544,"file":"gen/moar/m-CORE.setting","jit_entries":6623,"entries":6623}]},{"exclusive_time":207,"id":49072720,"line":856,"name":"sink","inclusive_time":207,"file":"gen/moar/m-CORE.setting","entries":601},{"exclusive_time":1448,"id":49416544,"line":6469,"name":"fire_phasers","allocations":[{"count":601,"id":33960376,"spesh":597,"type":"BOOTCode"}],"inclusive_time":1659,"spesh_entries":597,"file":"gen/moar/m-CORE.setting","entries":601,"callees":[{"exclusive_time":211,"id":48510016,"line":8705,"name":"prefix:<!>","inclusive_time":211,"spesh_entries":597,"file":"gen/moar/m-CORE.setting","inlined_entries":597,"jit_entries":4,"entries":601}]}]},{"exclusive_time":163,"id":49072720,"line":856,"name":"sink","inclusive_time":163,"file":"gen/moar/m-CORE.setting","entries":601}]}]},{"exclusive_time":1090,"id":96896416,"line":89,"name":"","inclusive_time":1427,"file":"hibbified-249.p6","jit_entries":444,"entries":601,"callees":[{"exclusive_time":337,"id":48474752,"line":8404,"name":"postfix:<++>","allocations":[{"count":471,"id":44229024,"type":"Int","jit":471}],"inclusive_time":337,"file":"gen/moar/m-CORE.setting","inlined_entries":444,"jit_entries":600,"entries":601}]},{"exclusive_time":31,"id":49101296,"line":1178,"name":"Stringy","inclusive_time":73,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":2,"id":44228664,"type":"List","jit":2}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":2,"entries":2},{"exclusive_time":22,"id":52314624,"line":2048,"name":"","allocations":[{"count":4,"id":33960376,"type":"BOOTCode"},{"count":4,"id":33961312,"type":"NQPArray"},{"count":2,"id":33960328,"type":"BOOTHash"}],"inclusive_time":24,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":2,"callees":[{"exclusive_time":1,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":2,"entries":2}]},{"exclusive_time":10,"id":49102512,"line":1183,"name":"Stringy","inclusive_time":17,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":6,"id":49477344,"line":8254,"name":"Str","allocations":[{"count":2,"id":44229144,"type":"Str"}],"inclusive_time":6,"file":"gen/moar/m-CORE.setting","entries":2}]}]},{"exclusive_time":221,"id":49564592,"line":10027,"name":"Stringy","inclusive_time":221,"file":"gen/moar/m-CORE.setting","inlined_entries":1032,"jit_entries":1793,"entries":1803},{"exclusive_time":3679,"id":48569600,"line":11811,"name":"infix:<~>","allocations":[{"count":3005,"id":44229144,"type":"Str","jit":3001}],"inclusive_time":3679,"file":"gen/moar/m-CORE.setting","inlined_entries":1720,"jit_entries":3001,"entries":3005},{"exclusive_time":6133,"id":96967952,"line":89,"name":"","inclusive_time":606068,"file":"hibbified-249.p6","jit_entries":444,"entries":601,"callees":[{"exclusive_time":906,"id":48657456,"line":14967,"name":"postcircumfix:<[ ]>","inclusive_time":1941,"file":"gen/moar/m-CORE.setting","inlined_entries":444,"jit_entries":599,"entries":601,"callees":[{"exclusive_time":1034,"id":49863120,"line":15835,"name":"AT-POS","inclusive_time":1034,"spesh_entries":599,"file":"gen/moar/m-CORE.setting","entries":601}]},{"exclusive_time":10982,"id":49128960,"line":1462,"name":"dispatch:<hyper>","allocations":[{"count":1803,"id":44229096,"spesh":1032,"type":"Scalar"},{"count":601,"id":44229192,"spesh":344,"type":"Capture"}],"inclusive_time":343711,"spesh_entries":344,"file":"gen/moar/m-CORE.setting","entries":601,"callees":[{"exclusive_time":2593,"id":49121664,"line":1337,"name":"can","allocations":[{"count":601,"id":44229096,"type":"Scalar","jit":444}],"inclusive_time":13933,"file":"gen/moar/m-CORE.setting","jit_entries":444,"entries":601,"callees":[{"exclusive_time":8516,"id":52573856,"line":1106,"name":"can","allocations":[{"count":601,"id":33961312,"type":"NQPArray","jit":394},{"count":601,"id":33961360,"type":"NQPArrayIter","jit":394}],"inclusive_time":11154,"file":"gen/moar/m-Metamodel.nqp","jit_entries":394,"entries":601,"callees":[{"exclusive_time":405,"id":52558656,"line":520,"name":"submethod_table","inclusive_time":405,"file":"gen/moar/m-Metamodel.nqp","inlined_entries":394,"jit_entries":477,"entries":601},{"exclusive_time":289,"id":52572336,"line":1041,"name":"mro","inclusive_time":289,"file":"gen/moar/m-Metamodel.nqp","inlined_entries":394,"jit_entries":592,"entries":601},{"exclusive_time":1678,"id":52558352,"line":515,"name":"method_table","inclusive_time":1678,"file":"gen/moar/m-Metamodel.nqp","jit_entries":1779,"entries":2404},{"exclusive_time":264,"id":34678320,"line":596,"name":"push","inclusive_time":264,"file":"gen/moar/stage2/NQPCORE.setting","jit_entries":593,"entries":601}]},{"exclusive_time":185,"id":52321312,"line":3008,"name":"","allocations":[{"count":601,"id":44228664,"type":"List","jit":594}],"inclusive_time":185,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":594,"entries":601}]},{"exclusive_time":3162,"id":49078192,"line":929,"name":"Bool","inclusive_time":7216,"spesh_entries":1202,"file":"gen/moar/m-CORE.setting","entries":1202,"callees":[{"exclusive_time":192,"id":52321312,"line":3008,"name":"","allocations":[{"count":1202,"id":44228664,"type":"List","jit":1202}],"inclusive_time":192,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1202,"entries":1202},{"exclusive_time":2603,"id":49794720,"line":13904,"name":"Bool","inclusive_time":3409,"file":"gen/moar/m-CORE.setting","deopt_one":601,"jit_entries":601,"entries":601,"callees":[{"exclusive_time":91,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":91,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601},{"exclusive_time":49,"id":49806576,"line":14088,"name":"sink","inclusive_time":49,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601},{"exclusive_time":501,"id":48509104,"line":8701,"name":"prefix:<so>","inclusive_time":666,"file":"gen/moar/m-CORE.setting","jit_entries":530,"entries":601,"callees":[{"exclusive_time":164,"id":49476736,"line":8248,"name":"Bool","inclusive_time":164,"file":"gen/moar/m-CORE.setting","inlined_entries":530,"jit_entries":594,"entries":601}]}]},{"exclusive_time":11,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":45,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":28,"id":52313712,"line":1708,"name":"","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":12,"id":33961312,"type":"NQPArray"},{"count":3,"id":33961360,"type":"NQPArrayIter"},{"count":4,"id":33960328,"type":"BOOTHash"},{"count":4,"id":33960832,"type":"BOOTIntArray"},{"count":2,"id":33960232,"type":"BOOTInt"}],"inclusive_time":33,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":5,"id":52314016,"line":1738,"name":"is_narrower","inclusive_time":5,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":2,"entries":2}]},{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":406,"id":49688928,"line":12236,"name":"Bool","inclusive_time":406,"file":"gen/moar/m-CORE.setting","jit_entries":444,"entries":601}]},{"exclusive_time":4,"id":48652592,"line":14916,"name":"postcircumfix:<[ ]>","inclusive_time":265,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":182,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":3,"id":33961312,"type":"NQPArray"},{"count":2,"id":33960328,"type":"BOOTHash"}],"inclusive_time":183,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":3,"id":48657456,"line":14967,"name":"postcircumfix:<[ ]>","inclusive_time":77,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":34,"id":49176992,"line":1964,"name":"AT-POS","inclusive_time":73,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":22,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":23,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":15,"id":49798976,"line":13946,"name":"AT-POS","inclusive_time":15,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]}]}]},{"exclusive_time":1504,"id":49126832,"line":1423,"name":"dispatch:<.?>","allocations":[{"count":601,"id":44229096,"spesh":559,"type":"Scalar"},{"count":601,"id":44229192,"spesh":559,"type":"Capture"}],"inclusive_time":1504,"spesh_entries":559,"file":"gen/moar/m-CORE.setting","entries":601},{"exclusive_time":637,"id":52311584,"line":1621,"name":"","allocations":[{"count":601,"id":44229240,"spesh":601,"type":"Block"},{"count":601,"id":33960376,"spesh":601,"type":"BOOTCode"}],"inclusive_time":637,"spesh_entries":601,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":601},{"exclusive_time":36,"id":48971488,"line":29815,"name":"HYPER","inclusive_time":942,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":11,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":12,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":25,"id":48976960,"line":29924,"name":"HYPER","inclusive_time":892,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":2,"id":49126832,"line":1423,"name":"dispatch:<.?>","allocations":[{"count":1,"id":44229096,"type":"Scalar"},{"count":1,"id":44229192,"type":"Capture"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":31,"id":48977264,"line":29930,"name":"deepmap","inclusive_time":864,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":14,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":14,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":162,"id":48977568,"line":29932,"name":"deepmap","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":818,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":2,"id":48977872,"line":29941,"name":"","allocations":[{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":5,"id":49933344,"line":16487,"name":"iterator","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"}],"inclusive_time":12,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":2,"id":49933648,"line":16488,"name":"","allocations":[{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":2,"id":49934256,"line":16497,"name":"new","allocations":[{"count":1,"id":67905768,"type":"<anon|414432224>"}],"inclusive_time":4,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":49933952,"line":16492,"name":"BUILD","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":2,"id":48978176,"line":29945,"name":"new","allocations":[{"count":1,"id":44229096,"type":"Scalar"},{"count":1,"id":67904136,"type":"<anon|668011024>"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":2,"id":49080016,"line":942,"name":"new","allocations":[{"count":1,"id":44228640,"type":"Hash"}],"inclusive_time":27,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":5,"id":49081536,"line":956,"name":"bless","allocations":[{"count":1,"id":44228640,"type":"Hash"},{"count":1,"id":68411984,"type":"IterationBuffer"}],"inclusive_time":25,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":7,"id":49793200,"line":13860,"name":"from-slurpy-flat","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":2,"id":68411984,"type":"IterationBuffer"},{"count":1,"id":44228976,"type":"Array"},{"count":1,"id":65481320,"type":"List::Reifier"}],"inclusive_time":12,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":3,"id":49861296,"line":15806,"name":"reification-target","inclusive_time":4,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49882880,"line":15464,"name":"new","allocations":[{"count":1,"id":68412368,"type":"Array::ArrayReificationTarget","jit":1}],"inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]},{"exclusive_time":5,"id":49081840,"line":960,"name":"BUILDALL","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"}],"inclusive_time":7,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":2,"id":52582064,"line":1475,"name":"BUILDALLPLAN","inclusive_time":2,"file":"gen/moar/m-Metamodel.nqp","entries":1}]}]}]},{"exclusive_time":4,"id":49213168,"line":2463,"name":"push-all","allocations":[{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":466,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":2,"id":49212864,"line":2454,"name":"push-at-least","allocations":[{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":461,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":112,"id":49212256,"line":2436,"name":"push-exactly","allocations":[{"count":2,"id":44229096,"type":"Scalar"}],"inclusive_time":458,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":97,"id":48978784,"line":29955,"name":"pull-one","allocations":[{"count":14,"id":33960376,"type":"BOOTCode"},{"count":14,"id":44229096,"type":"Scalar"}],"inclusive_time":318,"file":"gen/moar/m-CORE.setting","entries":14,"callees":[{"exclusive_time":12,"id":49934560,"line":16499,"name":"pull-one","allocations":[{"count":13,"id":44228928,"spesh":5,"type":"IntPosRef"}],"inclusive_time":12,"spesh_entries":6,"file":"gen/moar/m-CORE.setting","entries":14},{"exclusive_time":26,"id":39774400,"line":1558,"name":"infix:<=:=>","inclusive_time":142,"file":"gen/moar/m-CORE.setting","jit_entries":13,"entries":13,"callees":[{"exclusive_time":108,"id":52314624,"line":2048,"name":"","allocations":[{"count":26,"id":33960376,"type":"BOOTCode"},{"count":26,"id":33961312,"type":"NQPArray"},{"count":13,"id":33960328,"type":"BOOTHash"}],"inclusive_time":112,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":13,"callees":[{"exclusive_time":3,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":3,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":13,"entries":13}]},{"exclusive_time":4,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":4,"file":"gen/moar/m-CORE.setting","entries":13}]},{"exclusive_time":41,"id":49130784,"line":1472,"name":"","inclusive_time":66,"file":"gen/moar/m-CORE.setting","entries":13,"callees":[{"exclusive_time":5,"id":49564592,"line":10027,"name":"Stringy","inclusive_time":5,"file":"gen/moar/m-CORE.setting","entries":13},{"exclusive_time":19,"id":49479168,"line":8277,"name":"chr","allocations":[{"count":13,"id":44229144,"type":"Str"}],"inclusive_time":19,"file":"gen/moar/m-CORE.setting","entries":13}]},{"exclusive_time":0,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]},{"exclusive_time":2,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":2,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":14},{"exclusive_time":1,"id":48509712,"line":8704,"name":"prefix:<!>","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":14,"entries":14},{"exclusive_time":6,"id":49170912,"line":1907,"name":"push","inclusive_time":18,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":9,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":10,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":49692880,"line":12283,"name":"push","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":5,"id":49692880,"line":12283,"name":"push","inclusive_time":5,"file":"gen/moar/m-CORE.setting","entries":12}]}]},{"exclusive_time":0,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":49072720,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":11,"id":49793808,"line":13890,"name":"new","allocations":[{"count":1,"id":44228664,"type":"List"},{"count":1,"id":68411984,"type":"IterationBuffer"}],"inclusive_time":142,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":4,"id":49791376,"line":13817,"name":"from-slurpy","allocations":[{"count":1,"id":44228976,"type":"Array"},{"count":1,"id":68411984,"type":"IterationBuffer"},{"count":1,"id":65481320,"type":"List::Reifier"}],"inclusive_time":6,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":1,"id":49861296,"line":15806,"name":"reification-target","inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49882880,"line":15464,"name":"new","allocations":[{"count":1,"id":68412368,"type":"Array::ArrayReificationTarget","jit":1}],"inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]},{"exclusive_time":1,"id":52311584,"line":1621,"name":"","allocations":[{"count":1,"id":44229240,"spesh":1,"type":"Block"},{"count":1,"id":33960376,"spesh":1,"type":"BOOTCode"}],"inclusive_time":1,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1},{"exclusive_time":5,"id":49298592,"line":3773,"name":"map","inclusive_time":61,"spesh_entries":1,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":16,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":16,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":8,"id":49299808,"line":3779,"name":"map","allocations":[{"count":2,"id":44229096,"type":"Scalar"}],"inclusive_time":39,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":7,"id":49800800,"line":13990,"name":"iterator","allocations":[{"count":1,"id":33960376,"type":"BOOTCode","jit":1}],"inclusive_time":13,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":0,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":1,"id":49801104,"line":13992,"name":"","allocations":[{"count":1,"id":44229096,"type":"Scalar","jit":1}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":3,"id":49801712,"line":14004,"name":"new","allocations":[{"count":1,"id":67906128,"type":"<anon|352550624>","jit":1}],"inclusive_time":5,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":0,"id":49877712,"line":16147,"name":"of","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":49801408,"line":13998,"name":"BUILD","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]},{"exclusive_time":10,"id":49303152,"line":3840,"name":"sequential-map","allocations":[{"count":2,"id":33960376,"type":"BOOTCode","jit":2},{"count":3,"id":44229096,"type":"Scalar","jit":3}],"inclusive_time":17,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":2,"id":49411680,"line":6408,"name":"count","inclusive_time":2,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":0,"id":50093552,"line":18706,"name":"count","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","inlined_entries":1,"jit_entries":1,"entries":1},{"exclusive_time":0,"id":49304064,"line":3847,"name":"","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":2,"id":49401344,"line":3827,"name":"new","allocations":[{"count":3,"id":44229096,"type":"Scalar","jit":3},{"count":1,"id":67908360,"type":"<anon|159066640>","jit":1}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":1,"id":49700480,"line":12399,"name":"new","allocations":[{"count":1,"id":67909080,"type":"Seq","jit":1}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]}]},{"exclusive_time":4,"id":49705648,"line":12474,"name":"sink","inclusive_time":62,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":5,"id":49701088,"line":12407,"name":"iterator","inclusive_time":7,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":1,"id":52616112,"line":2635,"name":"type_check","inclusive_time":1,"file":"gen/moar/m-Metamodel.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":20,"id":49306192,"line":3921,"name":"sink-all","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":6,"id":44229096,"type":"Scalar"}],"inclusive_time":49,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":48510016,"line":8705,"name":"prefix:<!>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":3,"id":49417456,"line":6478,"name":"phasers","inclusive_time":3,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2,"callees":[{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]},{"exclusive_time":1,"id":48405440,"line":7763,"name":"prefix:<+>","inclusive_time":7,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":1,"id":49795632,"line":13911,"name":"Numeric","inclusive_time":6,"spesh_entries":1,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":3,"id":49797760,"line":13932,"name":"elems","inclusive_time":4,"spesh_entries":1,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]}]}]},{"exclusive_time":2,"id":49078192,"line":929,"name":"Bool","inclusive_time":6,"spesh_entries":1,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":3,"id":49794720,"line":13904,"name":"Bool","inclusive_time":3,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":0,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":48508496,"line":8699,"name":"prefix:<so>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2},{"exclusive_time":1,"id":49802016,"line":14006,"name":"pull-one","inclusive_time":11,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":6,"id":49802320,"line":14013,"name":"reify-and-pull-one","allocations":[{"count":1,"id":44229072,"type":"IntLexRef","jit":1}],"inclusive_time":10,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":3,"id":49843664,"line":13724,"name":"reify-at-least","allocations":[{"count":1,"id":33960376,"type":"BOOTCode","jit":1},{"count":1,"id":44229096,"type":"Scalar","jit":1}],"inclusive_time":3,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":48483568,"line":8526,"name":"infix:«<»","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]},{"exclusive_time":0,"id":49072720,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":0,"id":49072720,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":1,"id":49286736,"line":3623,"name":"item","allocations":[{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]}]}]}]},{"exclusive_time":1425,"id":48657456,"line":14967,"name":"postcircumfix:<[ ]>","inclusive_time":3321,"spesh_entries":344,"file":"gen/moar/m-CORE.setting","inlined_entries":344,"jit_entries":249,"entries":600,"callees":[{"exclusive_time":1771,"id":49798976,"line":13946,"name":"AT-POS","inclusive_time":1895,"file":"gen/moar/m-CORE.setting","jit_entries":509,"entries":600,"callees":[{"exclusive_time":78,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":78,"file":"gen/moar/m-CORE.setting","jit_entries":600,"entries":600},{"exclusive_time":45,"id":49806576,"line":14088,"name":"sink","inclusive_time":45,"file":"gen/moar/m-CORE.setting","jit_entries":600,"entries":600}]}]},{"exclusive_time":2442,"id":48976960,"line":29924,"name":"HYPER","inclusive_time":304909,"file":"gen/moar/m-CORE.setting","jit_entries":394,"entries":600,"callees":[{"exclusive_time":1062,"id":49126832,"line":1423,"name":"dispatch:<.?>","allocations":[{"count":600,"id":44229096,"spesh":563,"type":"Scalar"},{"count":600,"id":44229192,"spesh":563,"type":"Capture"}],"inclusive_time":1062,"spesh_entries":563,"file":"gen/moar/m-CORE.setting","entries":600},{"exclusive_time":10950,"id":48977568,"line":29932,"name":"deepmap","allocations":[{"count":600,"id":33960376,"type":"BOOTCode","jit":344},{"count":600,"id":44229096,"type":"Scalar","jit":344}],"inclusive_time":301404,"file":"gen/moar/m-CORE.setting","jit_entries":344,"entries":600,"callees":[{"exclusive_time":1005,"id":48977872,"line":29941,"name":"","allocations":[{"count":600,"id":44229096,"type":"Scalar","jit":444}],"inclusive_time":1005,"file":"gen/moar/m-CORE.setting","jit_entries":444,"entries":600},{"exclusive_time":2376,"id":49933344,"line":16487,"name":"iterator","allocations":[{"count":600,"id":33960376,"type":"BOOTCode","jit":592}],"inclusive_time":5057,"file":"gen/moar/m-CORE.setting","jit_entries":592,"entries":600,"callees":[{"exclusive_time":956,"id":49933648,"line":16488,"name":"","allocations":[{"count":600,"id":44229096,"type":"Scalar","jit":600}],"inclusive_time":956,"file":"gen/moar/m-CORE.setting","jit_entries":600,"entries":600},{"exclusive_time":1477,"id":49934256,"line":16497,"name":"new","allocations":[{"count":600,"id":67905768,"type":"<anon|414432224>","jit":599}],"inclusive_time":1724,"file":"gen/moar/m-CORE.setting","jit_entries":599,"entries":600,"callees":[{"exclusive_time":246,"id":49933952,"line":16492,"name":"BUILD","inclusive_time":246,"file":"gen/moar/m-CORE.setting","jit_entries":599,"entries":600}]}]},{"exclusive_time":1097,"id":48978176,"line":29945,"name":"new","allocations":[{"count":600,"id":44229096,"type":"Scalar","jit":394},{"count":600,"id":67904136,"type":"<anon|668011024>","jit":394}],"inclusive_time":1097,"file":"gen/moar/m-CORE.setting","jit_entries":394,"entries":600},{"exclusive_time":1187,"id":49080016,"line":942,"name":"new","allocations":[{"count":600,"id":44228640,"spesh":600,"type":"Hash"}],"inclusive_time":10262,"spesh_entries":600,"file":"gen/moar/m-CORE.setting","entries":600,"callees":[{"exclusive_time":2643,"id":49081536,"line":956,"name":"bless","allocations":[{"count":600,"id":44228640,"spesh":600,"type":"Hash"},{"count":600,"id":68411984,"spesh":600,"type":"IterationBuffer"}],"inclusive_time":9074,"spesh_entries":600,"file":"gen/moar/m-CORE.setting","entries":600,"callees":[{"exclusive_time":2959,"id":49793200,"line":13860,"name":"from-slurpy-flat","allocations":[{"count":600,"id":33960376,"spesh":600,"type":"BOOTCode"},{"count":1200,"id":68411984,"spesh":1200,"type":"IterationBuffer"},{"count":600,"id":44228976,"spesh":600,"type":"Array"},{"count":600,"id":65481320,"spesh":600,"type":"List::Reifier"}],"inclusive_time":4264,"spesh_entries":600,"file":"gen/moar/m-CORE.setting","entries":600,"callees":[{"exclusive_time":83,"id":52321312,"line":3008,"name":"","allocations":[{"count":600,"id":44228664,"type":"List","jit":600}],"inclusive_time":83,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":600,"entries":600},{"exclusive_time":938,"id":49861296,"line":15806,"name":"reification-target","inclusive_time":1222,"file":"gen/moar/m-CORE.setting","jit_entries":600,"entries":600,"callees":[{"exclusive_time":283,"id":49882880,"line":15464,"name":"new","allocations":[{"count":600,"id":68412368,"type":"Array::ArrayReificationTarget","jit":600}],"inclusive_time":283,"file":"gen/moar/m-CORE.setting","jit_entries":600,"entries":600}]}]},{"exclusive_time":2023,"id":49081840,"line":960,"name":"BUILDALL","allocations":[{"count":600,"id":33960376,"type":"BOOTCode","jit":600}],"inclusive_time":2166,"file":"gen/moar/m-CORE.setting","jit_entries":600,"entries":600,"callees":[{"exclusive_time":142,"id":52582064,"line":1475,"name":"BUILDALLPLAN","inclusive_time":142,"file":"gen/moar/m-Metamodel.nqp","jit_entries":600,"entries":600}]}]}]},{"exclusive_time":2109,"id":49213168,"line":2463,"name":"push-all","allocations":[{"count":600,"id":44229096,"type":"Scalar","jit":567}],"inclusive_time":208162,"file":"gen/moar/m-CORE.setting","jit_entries":567,"entries":600,"callees":[{"exclusive_time":3084,"id":49212864,"line":2454,"name":"push-at-least","allocations":[{"count":600,"id":44229096,"spesh":575,"type":"Scalar"}],"inclusive_time":205931,"spesh_entries":575,"file":"gen/moar/m-CORE.setting","entries":600,"callees":[{"exclusive_time":42288,"id":49212256,"line":2436,"name":"push-exactly","allocations":[{"count":1200,"id":44229096,"type":"Scalar","jit":1176}],"inclusive_time":202847,"file":"gen/moar/m-CORE.setting","deopt_one":588,"jit_entries":588,"entries":600,"callees":[{"exclusive_time":29923,"id":48978784,"line":29955,"name":"pull-one","allocations":[{"count":8400,"id":33960376,"type":"BOOTCode","jit":8157},{"count":8400,"id":44229096,"type":"Scalar","jit":8157}],"inclusive_time":153375,"file":"gen/moar/m-CORE.setting","jit_entries":8157,"entries":8400,"callees":[{"exclusive_time":5718,"id":49934560,"line":16499,"name":"pull-one","allocations":[{"count":7800,"id":44228928,"spesh":7800,"type":"IntPosRef"}],"inclusive_time":5718,"spesh_entries":8400,"file":"gen/moar/m-CORE.setting","entries":8400},{"exclusive_time":20073,"id":39774400,"line":1558,"name":"infix:<=:=>","inclusive_time":93857,"file":"gen/moar/m-CORE.setting","jit_entries":7800,"entries":7800,"callees":[{"exclusive_time":69084,"id":52314624,"line":2048,"name":"","allocations":[{"count":15600,"id":33960376,"type":"BOOTCode"},{"count":15600,"id":33961312,"type":"NQPArray"},{"count":7800,"id":33960328,"type":"BOOTHash"}],"inclusive_time":71626,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":7800,"callees":[{"exclusive_time":2542,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":2542,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":7800,"entries":7800}]},{"exclusive_time":2157,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":2157,"file":"gen/moar/m-CORE.setting","entries":7800}]},{"exclusive_time":13135,"id":49130784,"line":1472,"name":"","inclusive_time":23769,"file":"gen/moar/m-CORE.setting","jit_entries":7656,"entries":7800,"callees":[{"exclusive_time":516,"id":49564592,"line":10027,"name":"Stringy","inclusive_time":516,"file":"gen/moar/m-CORE.setting","inlined_entries":7656,"jit_entries":7793,"entries":7800},{"exclusive_time":10117,"id":49479168,"line":8277,"name":"chr","allocations":[{"count":7800,"id":44229144,"spesh":7656,"type":"Str"}],"inclusive_time":10117,"spesh_entries":7656,"file":"gen/moar/m-CORE.setting","entries":7800}]},{"exclusive_time":107,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":107,"file":"gen/moar/m-CORE.setting","jit_entries":600,"entries":600}]},{"exclusive_time":1731,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":1731,"file":"gen/moar/m-CORE.setting","jit_entries":600,"entries":8400},{"exclusive_time":848,"id":48509712,"line":8704,"name":"prefix:<!>","inclusive_time":848,"file":"gen/moar/m-CORE.setting","jit_entries":8400,"entries":8400},{"exclusive_time":4603,"id":49692880,"line":12283,"name":"push","inclusive_time":4603,"file":"gen/moar/m-CORE.setting","entries":7800}]}]},{"exclusive_time":120,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":120,"file":"gen/moar/m-CORE.setting","inlined_entries":567,"jit_entries":600,"entries":600}]},{"exclusive_time":199,"id":49072720,"line":856,"name":"sink","inclusive_time":199,"file":"gen/moar/m-CORE.setting","entries":600},{"exclusive_time":3378,"id":49793808,"line":13890,"name":"new","allocations":[{"count":600,"id":44228664,"spesh":599,"type":"List"},{"count":600,"id":68411984,"spesh":599,"type":"IterationBuffer"}],"inclusive_time":64366,"spesh_entries":599,"file":"gen/moar/m-CORE.setting","entries":600,"callees":[{"exclusive_time":2276,"id":49791376,"line":13817,"name":"from-slurpy","allocations":[{"count":600,"id":44228976,"spesh":600,"type":"Array"},{"count":600,"id":68411984,"spesh":600,"type":"IterationBuffer"},{"count":600,"id":65481320,"spesh":600,"type":"List::Reifier"}],"inclusive_time":3300,"spesh_entries":600,"file":"gen/moar/m-CORE.setting","entries":600,"callees":[{"exclusive_time":109,"id":52321312,"line":3008,"name":"","allocations":[{"count":600,"id":44228664,"type":"List","jit":600}],"inclusive_time":109,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":600,"entries":600},{"exclusive_time":683,"id":49861296,"line":15806,"name":"reification-target","inclusive_time":913,"file":"gen/moar/m-CORE.setting","jit_entries":600,"entries":600,"callees":[{"exclusive_time":230,"id":49882880,"line":15464,"name":"new","allocations":[{"count":600,"id":68412368,"type":"Array::ArrayReificationTarget","jit":600}],"inclusive_time":230,"file":"gen/moar/m-CORE.setting","jit_entries":600,"entries":600}]}]},{"exclusive_time":552,"id":52311584,"line":1621,"name":"","allocations":[{"count":600,"id":44229240,"spesh":600,"type":"Block"},{"count":600,"id":33960376,"spesh":600,"type":"BOOTCode"}],"inclusive_time":552,"spesh_entries":600,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":600},{"exclusive_time":5235,"id":49298592,"line":3773,"name":"map","inclusive_time":30752,"spesh_entries":600,"file":"gen/moar/m-CORE.setting","entries":600,"callees":[{"exclusive_time":108,"id":52321312,"line":3008,"name":"","allocations":[{"count":600,"id":44228664,"type":"List","jit":600}],"inclusive_time":108,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":600,"entries":600},{"exclusive_time":9964,"id":52314624,"line":2048,"name":"","allocations":[{"count":1200,"id":33960376,"type":"BOOTCode"},{"count":1200,"id":33961312,"type":"NQPArray"},{"count":600,"id":33960328,"type":"BOOTHash"}],"inclusive_time":10052,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":600,"callees":[{"exclusive_time":88,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":88,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":600,"entries":600}]},{"exclusive_time":3452,"id":49299808,"line":3779,"name":"map","allocations":[{"count":1200,"id":44229096,"type":"Scalar"}],"inclusive_time":15355,"file":"gen/moar/m-CORE.setting","entries":600,"callees":[{"exclusive_time":3007,"id":49800800,"line":13990,"name":"iterator","allocations":[{"count":600,"id":33960376,"type":"BOOTCode","jit":600}],"inclusive_time":5968,"file":"gen/moar/m-CORE.setting","jit_entries":600,"entries":600,"callees":[{"exclusive_time":164,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":164,"file":"gen/moar/m-CORE.setting","jit_entries":600,"entries":600},{"exclusive_time":56,"id":49806576,"line":14088,"name":"sink","inclusive_time":56,"file":"gen/moar/m-CORE.setting","jit_entries":600,"entries":600},{"exclusive_time":554,"id":49801104,"line":13992,"name":"","allocations":[{"count":600,"id":44229096,"type":"Scalar","jit":600}],"inclusive_time":554,"file":"gen/moar/m-CORE.setting","jit_entries":600,"entries":600},{"exclusive_time":1607,"id":49801712,"line":14004,"name":"new","allocations":[{"count":600,"id":67906128,"type":"<anon|352550624>","jit":600}],"inclusive_time":2185,"file":"gen/moar/m-CORE.setting","jit_entries":600,"entries":600,"callees":[{"exclusive_time":305,"id":49877712,"line":16147,"name":"of","inclusive_time":305,"file":"gen/moar/m-CORE.setting","jit_entries":599,"entries":600},{"exclusive_time":271,"id":49801408,"line":13998,"name":"BUILD","inclusive_time":271,"file":"gen/moar/m-CORE.setting","jit_entries":600,"entries":600}]}]},{"exclusive_time":3694,"id":49303152,"line":3840,"name":"sequential-map","allocations":[{"count":1200,"id":33960376,"type":"BOOTCode","jit":1200},{"count":1800,"id":44229096,"type":"Scalar","jit":1800}],"inclusive_time":5935,"file":"gen/moar/m-CORE.setting","jit_entries":600,"entries":600,"callees":[{"exclusive_time":830,"id":49411680,"line":6408,"name":"count","inclusive_time":896,"file":"gen/moar/m-CORE.setting","jit_entries":600,"entries":600,"callees":[{"exclusive_time":66,"id":50093552,"line":18706,"name":"count","inclusive_time":66,"file":"gen/moar/m-CORE.setting","jit_entries":600,"entries":600}]},{"exclusive_time":130,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":130,"file":"gen/moar/m-CORE.setting","inlined_entries":600,"jit_entries":600,"entries":600},{"exclusive_time":212,"id":49304064,"line":3847,"name":"","inclusive_time":212,"file":"gen/moar/m-CORE.setting","jit_entries":600,"entries":600},{"exclusive_time":752,"id":49401344,"line":3827,"name":"new","allocations":[{"count":1800,"id":44229096,"type":"Scalar","jit":1800},{"count":600,"id":67908360,"type":"<anon|159066640>","jit":600}],"inclusive_time":752,"file":"gen/moar/m-CORE.setting","jit_entries":600,"entries":600},{"exclusive_time":247,"id":49700480,"line":12399,"name":"new","allocations":[{"count":600,"id":67909080,"type":"Seq","jit":600}],"inclusive_time":247,"file":"gen/moar/m-CORE.setting","jit_entries":600,"entries":600}]}]}]},{"exclusive_time":2748,"id":49705648,"line":12474,"name":"sink","inclusive_time":26381,"file":"gen/moar/m-CORE.setting","entries":600,"callees":[{"exclusive_time":1976,"id":49701088,"line":12407,"name":"iterator","inclusive_time":2396,"file":"gen/moar/m-CORE.setting","jit_entries":600,"entries":600,"callees":[{"exclusive_time":53,"id":49806576,"line":14088,"name":"sink","inclusive_time":53,"file":"gen/moar/m-CORE.setting","jit_entries":600,"entries":600},{"exclusive_time":365,"id":52616112,"line":2635,"name":"type_check","inclusive_time":365,"file":"gen/moar/m-Metamodel.nqp","jit_entries":600,"entries":600}]},{"exclusive_time":8319,"id":49306192,"line":3921,"name":"sink-all","allocations":[{"count":600,"id":33960376,"type":"BOOTCode","jit":600},{"count":3600,"id":44229096,"type":"Scalar","jit":3600}],"inclusive_time":21080,"file":"gen/moar/m-CORE.setting","deopt_one":600,"jit_entries":600,"entries":600,"callees":[{"exclusive_time":68,"id":48510016,"line":8705,"name":"prefix:<!>","inclusive_time":68,"file":"gen/moar/m-CORE.setting","jit_entries":600,"entries":600},{"exclusive_time":1331,"id":49417456,"line":6478,"name":"phasers","inclusive_time":1426,"file":"gen/moar/m-CORE.setting","jit_entries":1200,"entries":1200,"callees":[{"exclusive_time":94,"id":49806576,"line":14088,"name":"sink","inclusive_time":94,"file":"gen/moar/m-CORE.setting","jit_entries":1200,"entries":1200}]},{"exclusive_time":553,"id":48405440,"line":7763,"name":"prefix:<+>","inclusive_time":3454,"file":"gen/moar/m-CORE.setting","jit_entries":600,"entries":600,"callees":[{"exclusive_time":687,"id":49795632,"line":13911,"name":"Numeric","inclusive_time":2900,"spesh_entries":600,"file":"gen/moar/m-CORE.setting","entries":600,"callees":[{"exclusive_time":2035,"id":49797760,"line":13932,"name":"elems","inclusive_time":2213,"spesh_entries":600,"file":"gen/moar/m-CORE.setting","entries":600,"callees":[{"exclusive_time":82,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":82,"file":"gen/moar/m-CORE.setting","jit_entries":600,"entries":600},{"exclusive_time":95,"id":49806576,"line":14088,"name":"sink","inclusive_time":95,"file":"gen/moar/m-CORE.setting","jit_entries":1200,"entries":1200}]}]}]},{"exclusive_time":1408,"id":49078192,"line":929,"name":"Bool","inclusive_time":3202,"spesh_entries":600,"file":"gen/moar/m-CORE.setting","entries":600,"callees":[{"exclusive_time":87,"id":52321312,"line":3008,"name":"","allocations":[{"count":600,"id":44228664,"type":"List","jit":600}],"inclusive_time":87,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":600,"entries":600},{"exclusive_time":1561,"id":49794720,"line":13904,"name":"Bool","inclusive_time":1705,"file":"gen/moar/m-CORE.setting","jit_entries":600,"entries":600,"callees":[{"exclusive_time":56,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":56,"file":"gen/moar/m-CORE.setting","jit_entries":600,"entries":600},{"exclusive_time":43,"id":49806576,"line":14088,"name":"sink","inclusive_time":43,"file":"gen/moar/m-CORE.setting","jit_entries":600,"entries":600},{"exclusive_time":44,"id":48508496,"line":8699,"name":"prefix:<so>","inclusive_time":44,"file":"gen/moar/m-CORE.setting","jit_entries":600,"entries":600}]}]},{"exclusive_time":88,"id":49806576,"line":14088,"name":"sink","inclusive_time":88,"file":"gen/moar/m-CORE.setting","jit_entries":1200,"entries":1200},{"exclusive_time":676,"id":49802016,"line":14006,"name":"pull-one","inclusive_time":4314,"file":"gen/moar/m-CORE.setting","jit_entries":600,"entries":600,"callees":[{"exclusive_time":2076,"id":49802320,"line":14013,"name":"reify-and-pull-one","allocations":[{"count":600,"id":44229072,"type":"IntLexRef","jit":600}],"inclusive_time":3638,"file":"gen/moar/m-CORE.setting","jit_entries":600,"entries":600,"callees":[{"exclusive_time":1397,"id":49843664,"line":13724,"name":"reify-at-least","allocations":[{"count":600,"id":33960376,"type":"BOOTCode","jit":600},{"count":600,"id":44229096,"type":"Scalar","jit":600}],"inclusive_time":1447,"file":"gen/moar/m-CORE.setting","jit_entries":600,"entries":600,"callees":[{"exclusive_time":49,"id":49806576,"line":14088,"name":"sink","inclusive_time":49,"file":"gen/moar/m-CORE.setting","jit_entries":600,"entries":600}]},{"exclusive_time":114,"id":48483568,"line":8526,"name":"infix:«<»","inclusive_time":114,"file":"gen/moar/m-CORE.setting","jit_entries":600,"entries":600}]}]},{"exclusive_time":205,"id":49072720,"line":856,"name":"sink","inclusive_time":205,"file":"gen/moar/m-CORE.setting","entries":600}]},{"exclusive_time":157,"id":49072720,"line":856,"name":"sink","inclusive_time":157,"file":"gen/moar/m-CORE.setting","entries":600}]}]},{"exclusive_time":302,"id":49286736,"line":3623,"name":"item","allocations":[{"count":600,"id":44229096,"type":"Scalar","jit":593}],"inclusive_time":302,"file":"gen/moar/m-CORE.setting","jit_entries":593,"entries":600}]}]}]},{"exclusive_time":11309,"id":49840320,"line":14494,"name":"join","allocations":[{"count":2404,"id":44229096,"type":"Scalar","jit":1764},{"count":601,"id":33960880,"type":"BOOTStrArray","jit":441},{"count":601,"id":44229144,"type":"Str","jit":441}],"inclusive_time":13320,"file":"gen/moar/m-CORE.setting","jit_entries":441,"entries":601,"callees":[{"exclusive_time":75,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":75,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601},{"exclusive_time":137,"id":49806576,"line":14088,"name":"sink","inclusive_time":137,"file":"gen/moar/m-CORE.setting","jit_entries":1803,"entries":1803},{"exclusive_time":1572,"id":49797760,"line":13932,"name":"elems","inclusive_time":1722,"spesh_entries":441,"file":"gen/moar/m-CORE.setting","jit_entries":160,"entries":601,"callees":[{"exclusive_time":60,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":60,"file":"gen/moar/m-CORE.setting","jit_entries":601,"entries":601},{"exclusive_time":89,"id":49806576,"line":14088,"name":"sink","inclusive_time":89,"file":"gen/moar/m-CORE.setting","jit_entries":1202,"entries":1202}]},{"exclusive_time":74,"id":49564288,"line":10026,"name":"Str","inclusive_time":74,"file":"gen/moar/m-CORE.setting","jit_entries":534,"entries":601}]},{"exclusive_time":35,"id":49111024,"line":1245,"name":"perl","inclusive_time":4828,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":10,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":63,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":38,"id":52313712,"line":1708,"name":"","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":17,"id":33961312,"type":"NQPArray"},{"count":4,"id":33961360,"type":"NQPArrayIter"},{"count":6,"id":33960328,"type":"BOOTHash"},{"count":6,"id":33960832,"type":"BOOTIntArray"},{"count":3,"id":33960232,"type":"BOOTInt"}],"inclusive_time":51,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":13,"id":52314016,"line":1738,"name":"is_narrower","inclusive_time":13,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":6,"entries":6}]},{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":49,"id":49570368,"line":10175,"name":"perl","inclusive_time":4729,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":65,"id":49237184,"line":3182,"name":"PERLIFY-STR","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":1,"id":44229144,"type":"Str"}],"inclusive_time":4678,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":52311584,"line":1621,"name":"","allocations":[{"count":1,"id":44228712,"type":"Sub"},{"count":1,"id":33960376,"type":"BOOTCode"}],"inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1},{"exclusive_time":83,"id":49238096,"line":3196,"name":"","allocations":[{"count":1,"id":44229096,"type":"Scalar"},{"count":26,"id":44229144,"type":"Str"},{"count":8,"id":44229048,"type":"StrLexRef"}],"inclusive_time":4611,"file":"gen/moar/m-CORE.setting","entries":13,"callees":[{"exclusive_time":94,"id":49237488,"line":3183,"name":"char-to-escapes","inclusive_time":4478,"file":"gen/moar/m-CORE.setting","entries":4,"callees":[{"exclusive_time":8,"id":49636336,"line":11340,"name":"NFC","allocations":[{"count":4,"id":73526720,"type":"NFC"}],"inclusive_time":8,"file":"gen/moar/m-CORE.setting","entries":4},{"exclusive_time":22,"id":49550000,"line":9880,"name":"list","inclusive_time":81,"file":"gen/moar/m-CORE.setting","entries":4,"callees":[{"exclusive_time":6,"id":52311584,"line":1621,"name":"","allocations":[{"count":8,"id":44229240,"spesh":8,"type":"Block"},{"count":8,"id":33960376,"spesh":8,"type":"BOOTCode"}],"inclusive_time":6,"spesh_entries":8,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":8},{"exclusive_time":24,"id":48602736,"line":12668,"name":"GATHER","allocations":[{"count":4,"id":33960376,"type":"BOOTCode"}],"inclusive_time":52,"file":"gen/moar/m-CORE.setting","entries":4,"callees":[{"exclusive_time":5,"id":48603040,"line":12669,"name":"","allocations":[{"count":4,"id":33960376,"type":"BOOTCode"},{"count":4,"id":44229096,"type":"Scalar"}],"inclusive_time":5,"file":"gen/moar/m-CORE.setting","entries":4},{"exclusive_time":13,"id":48603648,"line":12676,"name":"new","allocations":[{"count":4,"id":67906656,"type":"<anon|340889968>"}],"inclusive_time":17,"file":"gen/moar/m-CORE.setting","entries":4,"callees":[{"exclusive_time":4,"id":52311584,"line":1621,"name":"","allocations":[{"count":8,"id":44229240,"spesh":8,"type":"Block"},{"count":8,"id":33960376,"spesh":8,"type":"BOOTCode"}],"inclusive_time":4,"spesh_entries":8,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":8}]},{"exclusive_time":4,"id":49700480,"line":12399,"name":"new","allocations":[{"count":4,"id":67909080,"type":"Seq"}],"inclusive_time":4,"file":"gen/moar/m-CORE.setting","entries":4}]}]},{"exclusive_time":2,"id":52311584,"line":1621,"name":"","allocations":[{"count":4,"id":44229240,"spesh":4,"type":"Block"},{"count":4,"id":33960376,"spesh":4,"type":"BOOTCode"}],"inclusive_time":2,"spesh_entries":4,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":4},{"exclusive_time":5,"id":49298592,"line":3773,"name":"map","inclusive_time":52,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":15,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":16,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":6,"id":49299808,"line":3779,"name":"map","allocations":[{"count":2,"id":44229096,"type":"Scalar"}],"inclusive_time":30,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":3,"id":49701088,"line":12407,"name":"iterator","inclusive_time":4,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":52616112,"line":2635,"name":"type_check","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":14,"id":49303152,"line":3840,"name":"sequential-map","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":3,"id":44229096,"type":"Scalar"}],"inclusive_time":19,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":49411680,"line":6408,"name":"count","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":0,"id":50093552,"line":18706,"name":"count","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":49304064,"line":3847,"name":"","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":2,"id":49401344,"line":3827,"name":"new","allocations":[{"count":3,"id":44229096,"type":"Scalar"},{"count":1,"id":67908360,"type":"<anon|159066640>"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":49700480,"line":12399,"name":"new","allocations":[{"count":1,"id":67909080,"type":"Seq","jit":1}],"inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]}]},{"exclusive_time":25,"id":49166960,"line":1878,"name":"join","allocations":[{"count":4,"id":44229096,"type":"Scalar"}],"inclusive_time":4138,"file":"gen/moar/m-CORE.setting","entries":4,"callees":[{"exclusive_time":12,"id":49699264,"line":12384,"name":"list","inclusive_time":49,"file":"gen/moar/m-CORE.setting","entries":4,"callees":[{"exclusive_time":10,"id":49701088,"line":12407,"name":"iterator","inclusive_time":11,"file":"gen/moar/m-CORE.setting","jit_entries":4,"entries":4,"callees":[{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":4,"entries":4},{"exclusive_time":1,"id":52616112,"line":2635,"name":"type_check","inclusive_time":1,"file":"gen/moar/m-Metamodel.nqp","jit_entries":4,"entries":4}]},{"exclusive_time":14,"id":49791072,"line":13804,"name":"from-iterator","allocations":[{"count":4,"id":44228664,"type":"List"},{"count":4,"id":68411984,"type":"IterationBuffer"},{"count":4,"id":65481320,"type":"List::Reifier"}],"inclusive_time":25,"file":"gen/moar/m-CORE.setting","entries":4,"callees":[{"exclusive_time":9,"id":49800496,"line":13985,"name":"reification-target","inclusive_time":10,"file":"gen/moar/m-CORE.setting","entries":4,"callees":[{"exclusive_time":0,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":4,"entries":4},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":4,"entries":4}]}]}]},{"exclusive_time":80,"id":49840320,"line":14494,"name":"join","allocations":[{"count":12,"id":44229096,"type":"Scalar"},{"count":4,"id":33960880,"type":"BOOTStrArray"},{"count":4,"id":44229144,"type":"Str"}],"inclusive_time":4062,"file":"gen/moar/m-CORE.setting","entries":4,"callees":[{"exclusive_time":0,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":4,"entries":4},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":8,"entries":8},{"exclusive_time":39,"id":49845792,"line":13753,"name":"reify-until-lazy","allocations":[{"count":4,"id":33960376,"type":"BOOTCode"},{"count":8,"id":44229096,"type":"Scalar"}],"inclusive_time":3918,"file":"gen/moar/m-CORE.setting","entries":4,"callees":[{"exclusive_time":15,"id":49213776,"line":2476,"name":"push-until-lazy","allocations":[{"count":4,"id":44229096,"type":"Scalar"}],"inclusive_time":3873,"file":"gen/moar/m-CORE.setting","entries":4,"callees":[{"exclusive_time":9,"id":49401648,"line":3836,"name":"is-lazy","inclusive_time":10,"file":"gen/moar/m-CORE.setting","entries":4,"callees":[{"exclusive_time":1,"id":49215296,"line":2511,"name":"is-lazy","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":4}]},{"exclusive_time":13,"id":49213168,"line":2463,"name":"push-all","allocations":[{"count":4,"id":44229096,"type":"Scalar"}],"inclusive_time":3847,"file":"gen/moar/m-CORE.setting","entries":4,"callees":[{"exclusive_time":11,"id":49212864,"line":2454,"name":"push-at-least","allocations":[{"count":4,"id":44229096,"type":"Scalar"}],"inclusive_time":3834,"file":"gen/moar/m-CORE.setting","entries":4,"callees":[{"exclusive_time":69,"id":49212256,"line":2436,"name":"push-exactly","allocations":[{"count":8,"id":44229096,"type":"Scalar"}],"inclusive_time":3822,"file":"gen/moar/m-CORE.setting","entries":4,"callees":[{"exclusive_time":159,"id":49304368,"line":3853,"name":"pull-one","allocations":[{"count":8,"id":33960376,"type":"BOOTCode"},{"count":24,"id":44229096,"type":"Scalar"}],"inclusive_time":3746,"file":"gen/moar/m-CORE.setting","entries":8,"callees":[{"exclusive_time":1,"id":48510016,"line":8705,"name":"prefix:<!>","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":8,"entries":8},{"exclusive_time":10,"id":49417456,"line":6478,"name":"phasers","inclusive_time":11,"file":"gen/moar/m-CORE.setting","jit_entries":8,"entries":8,"callees":[{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":8,"entries":8}]},{"exclusive_time":4,"id":48405440,"line":7763,"name":"prefix:<+>","inclusive_time":22,"file":"gen/moar/m-CORE.setting","jit_entries":4,"entries":4,"callees":[{"exclusive_time":5,"id":49795632,"line":13911,"name":"Numeric","inclusive_time":18,"spesh_entries":4,"file":"gen/moar/m-CORE.setting","entries":4,"callees":[{"exclusive_time":11,"id":49797760,"line":13932,"name":"elems","inclusive_time":12,"spesh_entries":4,"file":"gen/moar/m-CORE.setting","entries":4,"callees":[{"exclusive_time":0,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":4,"entries":4},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":8,"entries":8}]}]}]},{"exclusive_time":16,"id":49078192,"line":929,"name":"Bool","inclusive_time":32,"spesh_entries":4,"file":"gen/moar/m-CORE.setting","entries":4,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":4,"id":44228664,"type":"List","jit":4}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":4,"entries":4},{"exclusive_time":14,"id":49794720,"line":13904,"name":"Bool","inclusive_time":14,"file":"gen/moar/m-CORE.setting","jit_entries":4,"entries":4,"callees":[{"exclusive_time":0,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":4,"entries":4},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":4,"entries":4},{"exclusive_time":0,"id":48508496,"line":8699,"name":"prefix:<so>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":4,"entries":4}]}]},{"exclusive_time":1,"id":49806576,"line":14088,"name":"sink","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":16,"entries":16},{"exclusive_time":55,"id":48605472,"line":12707,"name":"pull-one","allocations":[{"count":12,"id":44229096,"type":"Scalar"},{"count":4,"id":68411984,"type":"IterationBuffer"},{"count":4,"id":33960664,"type":"BOOTContinuation"}],"inclusive_time":186,"file":"gen/moar/m-CORE.setting","entries":8,"callees":[{"exclusive_time":1,"id":49072720,"line":856,"name":"sink","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":4},{"exclusive_time":20,"id":48604560,"line":12698,"name":"","allocations":[{"count":4,"id":33960376,"type":"BOOTCode"},{"count":4,"id":44229096,"type":"Scalar"}],"inclusive_time":121,"file":"gen/moar/m-CORE.setting","entries":8,"callees":[{"exclusive_time":25,"id":49550304,"line":9881,"name":"","allocations":[{"count":4,"id":44229096,"type":"Scalar"}],"inclusive_time":94,"file":"gen/moar/m-CORE.setting","entries":8,"callees":[{"exclusive_time":15,"id":39753424,"line":641,"name":"take","allocations":[{"count":4,"id":44229096,"type":"Scalar"}],"inclusive_time":68,"file":"gen/moar/m-CORE.setting","entries":8,"callees":[{"exclusive_time":12,"id":39750080,"line":596,"name":"THROW","allocations":[{"count":4,"id":33960568,"type":"BOOTException"}],"inclusive_time":53,"file":"gen/moar/m-CORE.setting","entries":8,"callees":[{"exclusive_time":8,"id":48605168,"line":-1,"name":"","allocations":[{"count":8,"id":44229024,"type":"Int"}],"inclusive_time":41,"file":"/usr/local/src/rakudo/install/share/perl6/runtime/CORE.setting.moarvm","entries":8,"callees":[{"exclusive_time":26,"id":48603952,"line":12680,"name":"","inclusive_time":32,"file":"gen/moar/m-CORE.setting","entries":8,"callees":[{"exclusive_time":2,"id":49692880,"line":12283,"name":"push","inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":4},{"exclusive_time":3,"id":52311584,"line":1621,"name":"","allocations":[{"count":4,"id":44229240,"spesh":4,"type":"Block"},{"count":4,"id":33960376,"spesh":4,"type":"BOOTCode"}],"inclusive_time":3,"spesh_entries":4,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":4}]}]}]}]},{"exclusive_time":0,"id":49072720,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":4,"entries":4}]},{"exclusive_time":5,"id":52311584,"line":1621,"name":"","allocations":[{"count":4,"id":44229240,"spesh":4,"type":"Block"},{"count":4,"id":33960376,"spesh":4,"type":"BOOTCode"}],"inclusive_time":5,"spesh_entries":4,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":4}]},{"exclusive_time":2,"id":48604256,"line":12692,"name":"","inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":4},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":4,"entries":4},{"exclusive_time":5,"id":48604864,"line":12700,"name":"","inclusive_time":5,"file":"gen/moar/m-CORE.setting","entries":4}]},{"exclusive_time":1,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":4,"entries":8},{"exclusive_time":28,"id":49237792,"line":3184,"name":"","inclusive_time":3313,"file":"gen/moar/m-CORE.setting","entries":4,"callees":[{"exclusive_time":96,"id":48204912,"line":7351,"name":"fmt","allocations":[{"count":4,"id":44229096,"type":"Scalar"},{"count":4,"id":33960304,"type":"BOOTArray"},{"count":4,"id":44229144,"type":"Str"}],"inclusive_time":3284,"file":"gen/moar/m-CORE.setting","entries":4,"callees":[{"exclusive_time":91,"id":49232928,"line":3092,"name":"initialize-sprintf-handler","allocations":[{"count":4,"id":33960376,"type":"BOOTCode"}],"inclusive_time":159,"file":"gen/moar/m-CORE.setting","entries":4,"callees":[{"exclusive_time":5,"id":49233536,"line":3093,"name":"","allocations":[{"count":4,"id":44229096,"type":"Scalar"}],"inclusive_time":5,"file":"gen/moar/m-CORE.setting","entries":4},{"exclusive_time":4,"id":49079712,"line":941,"name":"new","inclusive_time":57,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":9,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":10,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":2,"id":49080016,"line":942,"name":"new","allocations":[{"count":1,"id":44228640,"type":"Hash"}],"inclusive_time":42,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":7,"id":49081536,"line":956,"name":"bless","allocations":[{"count":1,"id":44228640,"type":"Hash"},{"count":1,"id":68411936,"type":"Rakudo::Internals::SprintfHandler"}],"inclusive_time":40,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":5,"id":49793200,"line":13860,"name":"from-slurpy-flat","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":2,"id":68411984,"type":"IterationBuffer"},{"count":1,"id":44228976,"type":"Array"},{"count":1,"id":65481320,"type":"List::Reifier"}],"inclusive_time":9,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":2,"id":49861296,"line":15806,"name":"reification-target","inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49882880,"line":15464,"name":"new","allocations":[{"count":1,"id":68412368,"type":"Array::ArrayReificationTarget","jit":1}],"inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]},{"exclusive_time":21,"id":49081840,"line":960,"name":"BUILDALL","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"}],"inclusive_time":23,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":2,"id":52582064,"line":1475,"name":"BUILDALLPLAN","inclusive_time":2,"file":"gen/moar/m-Metamodel.nqp","entries":1}]}]}]}]},{"exclusive_time":4,"id":36488176,"line":2661,"name":"sprintfaddargumenthandler","inclusive_time":4,"file":"gen/moar/stage2/NQPHLL.nqp","entries":1,"callees":[{"exclusive_time":0,"id":34678320,"line":596,"name":"push","inclusive_time":0,"file":"gen/moar/stage2/NQPCORE.setting","entries":1}]},{"exclusive_time":0,"id":49072720,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":3,"entries":3}]},{"exclusive_time":1,"id":49564592,"line":10027,"name":"Stringy","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":4},{"exclusive_time":155,"id":36487568,"line":2633,"name":"sprintf","allocations":[{"count":1,"id":33960496,"type":"Lexotic"}],"inclusive_time":3027,"file":"gen/moar/stage2/NQPHLL.nqp","entries":4,"callees":[{"exclusive_time":104,"id":35876544,"line":2090,"name":"parse","allocations":[{"count":4,"id":33960280,"type":"BOOTStr"}],"inclusive_time":2870,"file":"gen/moar/stage2/QRegex.nqp","entries":4,"callees":[{"exclusive_time":103,"id":35850400,"line":1143,"name":"!cursor_init","allocations":[{"count":4,"id":44224152,"type":"ParseShared"},{"count":4,"id":33960880,"type":"BOOTStrArray"},{"count":4,"id":33960328,"type":"BOOTHash"}],"inclusive_time":114,"file":"gen/moar/stage2/QRegex.nqp","entries":4,"callees":[{"exclusive_time":1,"id":34675584,"line":505,"name":"CREATE","allocations":[{"count":4,"id":73529984,"type":"Syntax"}],"inclusive_time":1,"file":"gen/moar/stage2/NQPCORE.setting","entries":4},{"exclusive_time":10,"id":35851312,"line":1228,"name":"!cursor_start_cur","allocations":[{"count":4,"id":73529984,"type":"Syntax"},{"count":4,"id":33960832,"type":"BOOTIntArray"}],"inclusive_time":10,"file":"gen/moar/stage2/QRegex.nqp","entries":4}]},{"exclusive_time":145,"id":36488784,"line":-1,"name":"TOP","inclusive_time":2650,"file":"/usr/local/src/rakudo/install/share/nqp/lib/NQPHLL.moarvm","entries":4,"callees":[{"exclusive_time":5,"id":35851008,"line":1205,"name":"!cursor_start","allocations":[{"count":4,"id":73529984,"type":"Syntax","jit":3},{"count":4,"id":33960832,"type":"BOOTIntArray","jit":3}],"inclusive_time":5,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":3,"entries":4},{"exclusive_time":103,"id":36489392,"line":-1,"name":"statement","inclusive_time":2340,"file":"/usr/local/src/rakudo/install/share/nqp/lib/NQPHLL.moarvm","entries":8,"callees":[{"exclusive_time":6,"id":35851008,"line":1205,"name":"!cursor_start","allocations":[{"count":8,"id":73529984,"type":"Syntax","jit":6},{"count":8,"id":33960832,"type":"BOOTIntArray","jit":6}],"inclusive_time":6,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":6,"entries":8},{"exclusive_time":225,"id":35856480,"line":1416,"name":"!alt","inclusive_time":307,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":7,"entries":12,"callees":[{"exclusive_time":9,"id":34860000,"line":1332,"name":"cache_get","inclusive_time":9,"file":"gen/moar/stage2/nqpmo.nqp","jit_entries":7,"entries":12},{"exclusive_time":72,"id":35844624,"line":701,"name":"run_alt","allocations":[{"count":2,"id":33965464,"type":"NFAType"}],"inclusive_time":72,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":7,"entries":12}]},{"exclusive_time":29,"id":36489696,"line":-1,"name":"directive","inclusive_time":1637,"file":"/usr/local/src/rakudo/install/share/nqp/lib/NQPHLL.moarvm","entries":4,"callees":[{"exclusive_time":213,"id":35855264,"line":1356,"name":"!protoregex","inclusive_time":1608,"file":"gen/moar/stage2/QRegex.nqp","entries":4,"callees":[{"exclusive_time":3,"id":34860000,"line":1332,"name":"cache_get","inclusive_time":3,"file":"gen/moar/stage2/nqpmo.nqp","entries":4},{"exclusive_time":67,"id":35844320,"line":682,"name":"run","allocations":[{"count":1,"id":33965464,"type":"NFAType"}],"inclusive_time":67,"file":"gen/moar/stage2/QRegex.nqp","entries":4},{"exclusive_time":1,"id":35837024,"line":116,"name":"states","inclusive_time":1,"file":"gen/moar/stage2/QRegex.nqp","entries":4},{"exclusive_time":273,"id":36492736,"line":-1,"name":"directive:sym<x>","inclusive_time":1323,"file":"/usr/local/src/rakudo/install/share/nqp/lib/NQPHLL.moarvm","entries":4,"callees":[{"exclusive_time":3,"id":35851008,"line":1205,"name":"!cursor_start","allocations":[{"count":4,"id":73529984,"type":"Syntax","jit":3},{"count":4,"id":33960832,"type":"BOOTIntArray","jit":3}],"inclusive_time":3,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":3,"entries":4},{"exclusive_time":109,"id":36493952,"line":-1,"name":"idx","inclusive_time":134,"file":"/usr/local/src/rakudo/install/share/nqp/lib/NQPHLL.moarvm","entries":4,"callees":[{"exclusive_time":3,"id":35851008,"line":1205,"name":"!cursor_start","allocations":[{"count":4,"id":73529984,"type":"Syntax","jit":3},{"count":4,"id":33960832,"type":"BOOTIntArray","jit":3}],"inclusive_time":3,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":3,"entries":4},{"exclusive_time":4,"id":35851920,"line":1248,"name":"!cursor_start_subcapture","allocations":[{"count":4,"id":73529984,"type":"Syntax","jit":1}],"inclusive_time":4,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":1,"entries":4},{"exclusive_time":4,"id":35852832,"line":1296,"name":"!cursor_pass","inclusive_time":4,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":1,"entries":4},{"exclusive_time":8,"id":35852224,"line":1256,"name":"!cursor_capture","allocations":[{"count":4,"id":33961312,"type":"NQPArray","jit":2}],"inclusive_time":8,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":2,"entries":4},{"exclusive_time":3,"id":35853136,"line":1307,"name":"!cursor_fail","inclusive_time":3,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":1,"entries":4}]},{"exclusive_time":46,"id":36494256,"line":-1,"name":"flags","inclusive_time":141,"file":"/usr/local/src/rakudo/install/share/nqp/lib/NQPHLL.moarvm","entries":8,"callees":[{"exclusive_time":6,"id":35851008,"line":1205,"name":"!cursor_start","allocations":[{"count":8,"id":73529984,"type":"Syntax","jit":6},{"count":8,"id":33960832,"type":"BOOTIntArray","jit":6}],"inclusive_time":6,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":6,"entries":8},{"exclusive_time":18,"id":35856480,"line":1416,"name":"!alt","inclusive_time":32,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":6,"entries":8,"callees":[{"exclusive_time":5,"id":34860000,"line":1332,"name":"cache_get","inclusive_time":5,"file":"gen/moar/stage2/nqpmo.nqp","jit_entries":6,"entries":8},{"exclusive_time":7,"id":35844624,"line":701,"name":"run_alt","allocations":[{"count":1,"id":33965464,"type":"NFAType"}],"inclusive_time":7,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":6,"entries":8}]},{"exclusive_time":3,"id":35851920,"line":1248,"name":"!cursor_start_subcapture","allocations":[{"count":4,"id":73529984,"type":"Syntax","jit":1}],"inclusive_time":3,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":1,"entries":4},{"exclusive_time":29,"id":35852832,"line":1296,"name":"!cursor_pass","inclusive_time":39,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":3,"entries":8,"callees":[{"exclusive_time":10,"id":35854352,"line":1340,"name":"!reduce","inclusive_time":10,"spesh_entries":2,"file":"gen/moar/stage2/QRegex.nqp","entries":4}]},{"exclusive_time":9,"id":35852224,"line":1256,"name":"!cursor_capture","allocations":[{"count":4,"id":33961312,"type":"NQPArray","jit":3}],"inclusive_time":9,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":3,"entries":4},{"exclusive_time":3,"id":35853136,"line":1307,"name":"!cursor_fail","inclusive_time":3,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":1,"entries":4}]},{"exclusive_time":13,"id":35852224,"line":1256,"name":"!cursor_capture","allocations":[{"count":4,"id":33961312,"type":"NQPArray","jit":3}],"inclusive_time":13,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":9,"entries":12},{"exclusive_time":17,"id":36494560,"line":-1,"name":"size","inclusive_time":295,"file":"/usr/local/src/rakudo/install/share/nqp/lib/NQPHLL.moarvm","entries":4,"callees":[{"exclusive_time":3,"id":35851008,"line":1205,"name":"!cursor_start","allocations":[{"count":4,"id":73529984,"type":"Syntax","jit":3},{"count":4,"id":33960832,"type":"BOOTIntArray","jit":3}],"inclusive_time":3,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":3,"entries":4},{"exclusive_time":6,"id":35856480,"line":1416,"name":"!alt","inclusive_time":13,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":3,"entries":4,"callees":[{"exclusive_time":2,"id":34860000,"line":1332,"name":"cache_get","inclusive_time":2,"file":"gen/moar/stage2/nqpmo.nqp","jit_entries":3,"entries":4},{"exclusive_time":4,"id":35844624,"line":701,"name":"run_alt","allocations":[{"count":1,"id":33965464,"type":"NFAType"}],"inclusive_time":4,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":3,"entries":4}]},{"exclusive_time":4,"id":35852832,"line":1296,"name":"!cursor_pass","inclusive_time":260,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":2,"entries":4,"callees":[{"exclusive_time":127,"id":35854352,"line":1340,"name":"!reduce","inclusive_time":255,"spesh_entries":2,"file":"gen/moar/stage2/QRegex.nqp","entries":4,"callees":[{"exclusive_time":75,"id":35875936,"line":1940,"name":"MATCH","allocations":[{"count":4,"id":33960328,"spesh":2,"type":"BOOTHash","jit":1},{"count":4,"id":33962488,"spesh":2,"type":"NQPMatch","jit":1},{"count":4,"id":33960280,"spesh":2,"type":"BOOTStr","jit":1},{"count":4,"id":33961384,"spesh":2,"type":"NQPHashIter","jit":1}],"inclusive_time":78,"spesh_entries":2,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":1,"entries":4,"callees":[{"exclusive_time":2,"id":35848272,"line":1064,"name":"orig","inclusive_time":2,"spesh_entries":2,"file":"gen/moar/stage2/QRegex.nqp","entries":4},{"exclusive_time":1,"id":34672240,"line":446,"name":"CAPS","inclusive_time":1,"file":"gen/moar/stage2/NQPCORE.setting","jit_entries":2,"entries":4}]},{"exclusive_time":46,"id":36504592,"line":2626,"name":"size","allocations":[{"count":4,"id":33960280,"type":"BOOTStr"}],"inclusive_time":49,"file":"gen/moar/stage2/NQPHLL.nqp","entries":4,"callees":[{"exclusive_time":3,"id":35870768,"line":1837,"name":"Str","inclusive_time":3,"file":"gen/moar/stage2/QRegex.nqp","entries":4},{"exclusive_time":0,"id":35872896,"line":1849,"name":"make","inclusive_time":0,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":1,"entries":4}]}]}]}]},{"exclusive_time":4,"id":35851920,"line":1248,"name":"!cursor_start_subcapture","allocations":[{"count":4,"id":73529984,"type":"Syntax","jit":2}],"inclusive_time":4,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":2,"entries":4},{"exclusive_time":10,"id":35852832,"line":1296,"name":"!cursor_pass","inclusive_time":456,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":4,"entries":8,"callees":[{"exclusive_time":65,"id":35854352,"line":1340,"name":"!reduce","inclusive_time":446,"spesh_entries":2,"file":"gen/moar/stage2/QRegex.nqp","entries":4,"callees":[{"exclusive_time":50,"id":35875936,"line":1940,"name":"MATCH","allocations":[{"count":4,"id":33960328,"spesh":2,"type":"BOOTHash","jit":1},{"count":4,"id":33962488,"spesh":2,"type":"NQPMatch","jit":1},{"count":4,"id":33960280,"spesh":2,"type":"BOOTStr","jit":1},{"count":4,"id":33961384,"spesh":2,"type":"NQPHashIter","jit":1},{"count":4,"id":33961312,"spesh":2,"type":"NQPArray","jit":1}],"inclusive_time":100,"spesh_entries":2,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":1,"entries":4,"callees":[{"exclusive_time":1,"id":35848272,"line":1064,"name":"orig","inclusive_time":1,"spesh_entries":3,"file":"gen/moar/stage2/QRegex.nqp","entries":4},{"exclusive_time":0,"id":34672240,"line":446,"name":"CAPS","inclusive_time":0,"file":"gen/moar/stage2/NQPCORE.setting","jit_entries":2,"entries":4},{"exclusive_time":37,"id":35875936,"line":1940,"name":"MATCH","allocations":[{"count":8,"id":33960328,"type":"BOOTHash","jit":6},{"count":8,"id":33962488,"type":"NQPMatch","jit":6},{"count":8,"id":33960280,"type":"BOOTStr","jit":6},{"count":4,"id":33961384,"type":"NQPHashIter","jit":3}],"inclusive_time":47,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":9,"entries":12,"callees":[{"exclusive_time":1,"id":35848272,"line":1064,"name":"orig","inclusive_time":1,"spesh_entries":6,"file":"gen/moar/stage2/QRegex.nqp","entries":8},{"exclusive_time":0,"id":34672240,"line":446,"name":"CAPS","inclusive_time":0,"file":"gen/moar/stage2/NQPCORE.setting","jit_entries":2,"entries":4},{"exclusive_time":7,"id":35875936,"line":1940,"name":"MATCH","allocations":[{"count":4,"id":33960328,"type":"BOOTHash","jit":3},{"count":4,"id":33962488,"type":"NQPMatch","jit":3},{"count":4,"id":33960280,"type":"BOOTStr","jit":3}],"inclusive_time":8,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":3,"entries":4,"callees":[{"exclusive_time":0,"id":35848272,"line":1064,"name":"orig","inclusive_time":0,"spesh_entries":3,"file":"gen/moar/stage2/QRegex.nqp","entries":4}]}]}]},{"exclusive_time":120,"id":36503376,"line":2598,"name":"directive:sym<x>","allocations":[{"count":12,"id":33960280,"type":"BOOTStr"}],"inclusive_time":280,"file":"gen/moar/stage2/NQPHLL.nqp","entries":4,"callees":[{"exclusive_time":11,"id":36495472,"line":2307,"name":"next_argument","inclusive_time":11,"file":"gen/moar/stage2/NQPHLL.nqp","entries":4},{"exclusive_time":75,"id":36495776,"line":2317,"name":"intify","allocations":[{"count":4,"id":33961360,"type":"NQPArrayIter"}],"inclusive_time":126,"file":"gen/moar/stage2/NQPHLL.nqp","entries":4,"callees":[{"exclusive_time":16,"id":49233840,"line":3094,"name":"mine","allocations":[{"count":4,"id":44229096,"type":"Scalar"}],"inclusive_time":16,"file":"gen/moar/m-CORE.setting","entries":4},{"exclusive_time":32,"id":49234144,"line":3095,"name":"int","allocations":[{"count":4,"id":44229096,"type":"Scalar"}],"inclusive_time":35,"file":"gen/moar/m-CORE.setting","entries":4,"callees":[{"exclusive_time":2,"id":49477040,"line":8252,"name":"Int","inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":4}]}]},{"exclusive_time":15,"id":36496992,"line":2353,"name":"has_flag","allocations":[{"count":4,"id":33960376,"type":"BOOTCode"},{"count":4,"id":33961360,"type":"NQPArrayIter"}],"inclusive_time":17,"file":"gen/moar/stage2/NQPHLL.nqp","entries":4,"callees":[{"exclusive_time":2,"id":36497296,"line":2356,"name":"","inclusive_time":2,"file":"gen/moar/stage2/NQPHLL.nqp","entries":4}]},{"exclusive_time":2,"id":35870768,"line":1837,"name":"Str","inclusive_time":2,"file":"gen/moar/stage2/QRegex.nqp","entries":4},{"exclusive_time":0,"id":35872896,"line":1849,"name":"make","inclusive_time":0,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":1,"entries":4}]}]}]}]}]}]},{"exclusive_time":7,"id":35852224,"line":1256,"name":"!cursor_capture","allocations":[{"count":4,"id":33961312,"type":"NQPArray","jit":3}],"inclusive_time":7,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":3,"entries":4},{"exclusive_time":6,"id":35852832,"line":1296,"name":"!cursor_pass","inclusive_time":273,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":3,"entries":4,"callees":[{"exclusive_time":49,"id":35854352,"line":1340,"name":"!reduce","inclusive_time":267,"spesh_entries":3,"file":"gen/moar/stage2/QRegex.nqp","entries":4,"callees":[{"exclusive_time":34,"id":35875936,"line":1940,"name":"MATCH","allocations":[{"count":4,"id":33960328,"spesh":3,"type":"BOOTHash"},{"count":4,"id":33962488,"spesh":3,"type":"NQPMatch"},{"count":4,"id":33960280,"spesh":3,"type":"BOOTStr"},{"count":4,"id":33961384,"spesh":3,"type":"NQPHashIter"}],"inclusive_time":36,"spesh_entries":3,"file":"gen/moar/stage2/QRegex.nqp","entries":4,"callees":[{"exclusive_time":1,"id":35848272,"line":1064,"name":"orig","inclusive_time":1,"spesh_entries":3,"file":"gen/moar/stage2/QRegex.nqp","entries":4},{"exclusive_time":0,"id":34672240,"line":446,"name":"CAPS","inclusive_time":0,"file":"gen/moar/stage2/NQPCORE.setting","jit_entries":3,"entries":4},{"exclusive_time":0,"id":35875936,"line":1940,"name":"MATCH","inclusive_time":0,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":3,"entries":4}]},{"exclusive_time":115,"id":36500336,"line":2361,"name":"statement","allocations":[{"count":4,"id":33961312,"type":"NQPArray"}],"inclusive_time":180,"file":"gen/moar/stage2/NQPHLL.nqp","entries":4,"callees":[{"exclusive_time":1,"id":35871680,"line":1840,"name":"Bool","inclusive_time":1,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":2,"entries":8},{"exclusive_time":22,"id":36496080,"line":2344,"name":"padding_char","allocations":[{"count":8,"id":33960376,"type":"BOOTCode"},{"count":4,"id":33960280,"type":"BOOTStr"},{"count":4,"id":33961360,"type":"NQPArrayIter"}],"inclusive_time":37,"file":"gen/moar/stage2/NQPHLL.nqp","entries":4,"callees":[{"exclusive_time":7,"id":36496992,"line":2353,"name":"has_flag","allocations":[{"count":4,"id":33960376,"type":"BOOTCode"},{"count":4,"id":33961360,"type":"NQPArrayIter"}],"inclusive_time":9,"file":"gen/moar/stage2/NQPHLL.nqp","entries":4,"callees":[{"exclusive_time":1,"id":36497296,"line":2356,"name":"","inclusive_time":1,"file":"gen/moar/stage2/NQPHLL.nqp","entries":4}]},{"exclusive_time":5,"id":36496688,"line":2348,"name":"","allocations":[{"count":4,"id":33960280,"type":"BOOTStr"}],"inclusive_time":6,"file":"gen/moar/stage2/NQPHLL.nqp","entries":4,"callees":[{"exclusive_time":0,"id":35871680,"line":1840,"name":"Bool","inclusive_time":0,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":2,"entries":4}]}]},{"exclusive_time":1,"id":35873200,"line":1850,"name":"made","inclusive_time":1,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":6,"entries":12},{"exclusive_time":4,"id":36495168,"line":2300,"name":"infix_x","allocations":[{"count":4,"id":33961312,"type":"NQPArray"}],"inclusive_time":4,"file":"gen/moar/stage2/NQPHLL.nqp","entries":4},{"exclusive_time":1,"id":34678320,"line":596,"name":"push","inclusive_time":1,"file":"gen/moar/stage2/NQPCORE.setting","jit_entries":2,"entries":8},{"exclusive_time":5,"id":36496992,"line":2353,"name":"has_flag","allocations":[{"count":4,"id":33960376,"type":"BOOTCode"},{"count":4,"id":33961360,"type":"NQPArrayIter"}],"inclusive_time":7,"file":"gen/moar/stage2/NQPHLL.nqp","entries":4,"callees":[{"exclusive_time":1,"id":36497296,"line":2356,"name":"","inclusive_time":1,"file":"gen/moar/stage2/NQPHLL.nqp","entries":4}]},{"exclusive_time":8,"id":34657520,"line":710,"name":"join","allocations":[{"count":4,"id":33960880,"type":"BOOTStrArray"},{"count":4,"id":33961360,"type":"NQPArrayIter"}],"inclusive_time":8,"file":"gen/moar/stage2/NQPCORE.setting","entries":4},{"exclusive_time":0,"id":35872896,"line":1849,"name":"make","inclusive_time":0,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":2,"entries":4}]}]}]},{"exclusive_time":3,"id":35853136,"line":1307,"name":"!cursor_fail","inclusive_time":3,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":2,"entries":4}]},{"exclusive_time":6,"id":35852224,"line":1256,"name":"!cursor_capture","allocations":[{"count":4,"id":33961312,"type":"NQPArray","jit":3}],"inclusive_time":6,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":3,"entries":4},{"exclusive_time":4,"id":35852832,"line":1296,"name":"!cursor_pass","inclusive_time":153,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":3,"entries":4,"callees":[{"exclusive_time":69,"id":35854352,"line":1340,"name":"!reduce","inclusive_time":148,"spesh_entries":3,"file":"gen/moar/stage2/QRegex.nqp","entries":4,"callees":[{"exclusive_time":38,"id":35875936,"line":1940,"name":"MATCH","allocations":[{"count":4,"id":33960328,"spesh":3,"type":"BOOTHash","jit":1},{"count":4,"id":33962488,"spesh":3,"type":"NQPMatch","jit":1},{"count":8,"id":33960280,"spesh":6,"type":"BOOTStr","jit":2},{"count":4,"id":33961384,"spesh":3,"type":"NQPHashIter","jit":1},{"count":4,"id":33961312,"spesh":3,"type":"NQPArray","jit":1}],"inclusive_time":41,"spesh_entries":3,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":1,"entries":4,"callees":[{"exclusive_time":0,"id":35848272,"line":1064,"name":"orig","inclusive_time":0,"spesh_entries":3,"file":"gen/moar/stage2/QRegex.nqp","entries":4},{"exclusive_time":0,"id":34672240,"line":446,"name":"CAPS","inclusive_time":0,"file":"gen/moar/stage2/NQPCORE.setting","jit_entries":3,"entries":4},{"exclusive_time":0,"id":35875936,"line":1940,"name":"MATCH","inclusive_time":0,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":4,"entries":4}]},{"exclusive_time":27,"id":36499728,"line":2284,"name":"TOP","allocations":[{"count":4,"id":33960376,"type":"BOOTCode"},{"count":4,"id":33961312,"type":"NQPArray"},{"count":4,"id":33961360,"type":"NQPArrayIter"}],"inclusive_time":38,"file":"gen/moar/stage2/NQPHLL.nqp","entries":4,"callees":[{"exclusive_time":7,"id":36500032,"line":2286,"name":"","inclusive_time":9,"file":"gen/moar/stage2/NQPHLL.nqp","entries":4,"callees":[{"exclusive_time":0,"id":35873200,"line":1850,"name":"made","inclusive_time":0,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":3,"entries":4},{"exclusive_time":0,"id":34678320,"line":596,"name":"push","inclusive_time":0,"file":"gen/moar/stage2/NQPCORE.setting","jit_entries":2,"entries":4}]},{"exclusive_time":1,"id":35872896,"line":1849,"name":"make","inclusive_time":1,"file":"gen/moar/stage2/QRegex.nqp","entries":4}]}]}]}]},{"exclusive_time":0,"id":35875936,"line":1940,"name":"MATCH","inclusive_time":0,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":4,"entries":4}]},{"exclusive_time":0,"id":35873200,"line":1850,"name":"made","allocations":[{"count":4,"id":33960280,"type":"BOOTStr","jit":3}],"inclusive_time":0,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":3,"entries":4}]}]}]},{"exclusive_time":1,"id":49072720,"line":856,"name":"sink","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":4},{"exclusive_time":12,"id":49416544,"line":6469,"name":"fire_phasers","allocations":[{"count":4,"id":33960376,"type":"BOOTCode"}],"inclusive_time":13,"file":"gen/moar/m-CORE.setting","entries":4,"callees":[{"exclusive_time":1,"id":48510016,"line":8705,"name":"prefix:<!>","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":4,"entries":4}]}]},{"exclusive_time":1,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":4,"entries":8},{"exclusive_time":1,"id":48509712,"line":8704,"name":"prefix:<!>","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":8,"entries":8},{"exclusive_time":3,"id":49692880,"line":12283,"name":"push","inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":4}]}]},{"exclusive_time":0,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":4,"entries":4}]}]},{"exclusive_time":0,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":4,"entries":4},{"exclusive_time":3,"id":52616112,"line":2635,"name":"type_check","inclusive_time":3,"file":"gen/moar/m-Metamodel.nqp","jit_entries":4,"entries":4},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":4,"entries":4}]},{"exclusive_time":1,"id":49072720,"line":856,"name":"sink","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":4,"entries":8},{"exclusive_time":10,"id":49849440,"line":13795,"name":"fully-reified","inclusive_time":11,"file":"gen/moar/m-CORE.setting","entries":4,"callees":[{"exclusive_time":0,"id":48509712,"line":8704,"name":"prefix:<!>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":8,"entries":8}]},{"exclusive_time":0,"id":48509712,"line":8704,"name":"prefix:<!>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":4,"entries":4},{"exclusive_time":24,"id":49797760,"line":13932,"name":"elems","allocations":[{"count":4,"id":44229096,"type":"Scalar","jit":4}],"inclusive_time":48,"file":"gen/moar/m-CORE.setting","jit_entries":4,"entries":4,"callees":[{"exclusive_time":1,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":4,"entries":4},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":4,"entries":4},{"exclusive_time":12,"id":49845792,"line":13753,"name":"reify-until-lazy","allocations":[{"count":4,"id":33960376,"type":"BOOTCode"}],"inclusive_time":12,"file":"gen/moar/m-CORE.setting","entries":4,"callees":[{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":8,"entries":8}]},{"exclusive_time":0,"id":49072720,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":4,"entries":4},{"exclusive_time":8,"id":49849440,"line":13795,"name":"fully-reified","inclusive_time":8,"file":"gen/moar/m-CORE.setting","entries":4,"callees":[{"exclusive_time":0,"id":48509712,"line":8704,"name":"prefix:<!>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":8,"entries":8}]}]},{"exclusive_time":1,"id":49564288,"line":10026,"name":"Str","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":4}]}]},{"exclusive_time":7,"id":48569600,"line":11811,"name":"infix:<~>","allocations":[{"count":8,"id":44229144,"type":"Str","jit":6}],"inclusive_time":7,"file":"gen/moar/m-CORE.setting","jit_entries":6,"entries":8},{"exclusive_time":21,"id":49299808,"line":3779,"name":"map","allocations":[{"count":6,"id":44229096,"type":"Scalar"}],"inclusive_time":94,"file":"gen/moar/m-CORE.setting","entries":3,"callees":[{"exclusive_time":11,"id":49701088,"line":12407,"name":"iterator","inclusive_time":13,"file":"gen/moar/m-CORE.setting","jit_entries":3,"entries":3,"callees":[{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":3,"entries":3},{"exclusive_time":1,"id":52616112,"line":2635,"name":"type_check","inclusive_time":1,"file":"gen/moar/m-Metamodel.nqp","jit_entries":3,"entries":3}]},{"exclusive_time":39,"id":49303152,"line":3840,"name":"sequential-map","allocations":[{"count":6,"id":33960376,"type":"BOOTCode"},{"count":9,"id":44229096,"type":"Scalar"}],"inclusive_time":59,"file":"gen/moar/m-CORE.setting","entries":3,"callees":[{"exclusive_time":7,"id":49411680,"line":6408,"name":"count","inclusive_time":7,"file":"gen/moar/m-CORE.setting","jit_entries":3,"entries":3,"callees":[{"exclusive_time":0,"id":50093552,"line":18706,"name":"count","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":3,"entries":3}]},{"exclusive_time":1,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":3,"entries":3},{"exclusive_time":1,"id":49304064,"line":3847,"name":"","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":3,"entries":3},{"exclusive_time":8,"id":49401344,"line":3827,"name":"new","allocations":[{"count":9,"id":44229096,"type":"Scalar"},{"count":3,"id":67908360,"type":"<anon|159066640>"}],"inclusive_time":8,"file":"gen/moar/m-CORE.setting","entries":3},{"exclusive_time":1,"id":49700480,"line":12399,"name":"new","allocations":[{"count":3,"id":67909080,"type":"Seq","jit":3}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":3,"entries":3}]}]}]},{"exclusive_time":12,"id":48569600,"line":11811,"name":"infix:<~>","allocations":[{"count":12,"id":44229144,"type":"Str","jit":3}],"inclusive_time":12,"file":"gen/moar/m-CORE.setting","jit_entries":3,"entries":12},{"exclusive_time":7,"id":48234288,"line":1669,"name":"infix:<~>","inclusive_time":37,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":25,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":27,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":1,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]},{"exclusive_time":2,"id":48569600,"line":11811,"name":"infix:<~>","allocations":[{"count":1,"id":44229144,"type":"Str"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1}]}]}]},{"exclusive_time":1,"id":48569600,"line":11811,"name":"infix:<~>","allocations":[{"count":2,"id":44229144,"type":"Str","jit":2}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]}]},{"exclusive_time":3077,"id":49570368,"line":10175,"name":"perl","inclusive_time":236132,"file":"gen/moar/m-CORE.setting","jit_entries":394,"entries":600,"callees":[{"exclusive_time":7917,"id":49237184,"line":3182,"name":"PERLIFY-STR","allocations":[{"count":600,"id":33960376,"type":"BOOTCode","jit":394},{"count":600,"id":44229144,"type":"Str","jit":394}],"inclusive_time":232001,"file":"gen/moar/m-CORE.setting","jit_entries":394,"entries":600,"callees":[{"exclusive_time":943,"id":52311584,"line":1621,"name":"","allocations":[{"count":600,"id":44228712,"spesh":600,"type":"Sub"},{"count":600,"id":33960376,"spesh":600,"type":"BOOTCode"}],"inclusive_time":943,"spesh_entries":600,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":600},{"exclusive_time":19969,"id":49238096,"line":3196,"name":"","allocations":[{"count":600,"id":44229096,"type":"Scalar","jit":581},{"count":15600,"id":44229144,"type":"Str","jit":15112},{"count":7214,"id":44229048,"type":"StrLexRef","jit":7029}],"inclusive_time":223140,"file":"gen/moar/m-CORE.setting","jit_entries":7556,"entries":7800,"callees":[{"exclusive_time":4732,"id":49237488,"line":3183,"name":"char-to-escapes","inclusive_time":197382,"file":"gen/moar/m-CORE.setting","jit_entries":152,"entries":355,"callees":[{"exclusive_time":711,"id":49636336,"line":11340,"name":"NFC","allocations":[{"count":355,"id":73526720,"spesh":208,"type":"NFC"}],"inclusive_time":711,"spesh_entries":208,"file":"gen/moar/m-CORE.setting","entries":355},{"exclusive_time":1928,"id":49550000,"line":9880,"name":"list","inclusive_time":6878,"file":"gen/moar/m-CORE.setting","jit_entries":159,"entries":355,"callees":[{"exclusive_time":588,"id":52311584,"line":1621,"name":"","allocations":[{"count":710,"id":44229240,"spesh":710,"type":"Block"},{"count":710,"id":33960376,"spesh":710,"type":"BOOTCode"}],"inclusive_time":588,"spesh_entries":710,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":710},{"exclusive_time":2123,"id":48602736,"line":12668,"name":"GATHER","allocations":[{"count":355,"id":33960376,"type":"BOOTCode","jit":275}],"inclusive_time":4362,"file":"gen/moar/m-CORE.setting","jit_entries":275,"entries":355,"callees":[{"exclusive_time":502,"id":48603040,"line":12669,"name":"","allocations":[{"count":355,"id":33960376,"type":"BOOTCode","jit":284},{"count":355,"id":44229096,"type":"Scalar","jit":284}],"inclusive_time":502,"file":"gen/moar/m-CORE.setting","jit_entries":284,"entries":355},{"exclusive_time":1064,"id":48603648,"line":12676,"name":"new","allocations":[{"count":355,"id":67906656,"type":"<anon|340889968>","jit":275}],"inclusive_time":1543,"file":"gen/moar/m-CORE.setting","jit_entries":275,"entries":355,"callees":[{"exclusive_time":479,"id":52311584,"line":1621,"name":"","allocations":[{"count":710,"id":44229240,"spesh":710,"type":"Block"},{"count":710,"id":33960376,"spesh":710,"type":"BOOTCode"}],"inclusive_time":479,"spesh_entries":710,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":710}]},{"exclusive_time":192,"id":49700480,"line":12399,"name":"new","allocations":[{"count":355,"id":67909080,"type":"Seq","jit":354}],"inclusive_time":192,"file":"gen/moar/m-CORE.setting","jit_entries":354,"entries":355}]}]},{"exclusive_time":255,"id":52311584,"line":1621,"name":"","allocations":[{"count":355,"id":44229240,"spesh":355,"type":"Block"},{"count":355,"id":33960376,"spesh":355,"type":"BOOTCode"}],"inclusive_time":255,"spesh_entries":355,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":355},{"exclusive_time":2164,"id":49299808,"line":3779,"name":"map","allocations":[{"count":710,"id":44229096,"type":"Scalar"}],"inclusive_time":7853,"file":"gen/moar/m-CORE.setting","entries":355,"callees":[{"exclusive_time":1204,"id":49701088,"line":12407,"name":"iterator","inclusive_time":1414,"file":"gen/moar/m-CORE.setting","jit_entries":355,"entries":355,"callees":[{"exclusive_time":29,"id":49806576,"line":14088,"name":"sink","inclusive_time":29,"file":"gen/moar/m-CORE.setting","jit_entries":355,"entries":355},{"exclusive_time":180,"id":52616112,"line":2635,"name":"type_check","inclusive_time":180,"file":"gen/moar/m-Metamodel.nqp","jit_entries":355,"entries":355}]},{"exclusive_time":2762,"id":49303152,"line":3840,"name":"sequential-map","allocations":[{"count":710,"id":33960376,"type":"BOOTCode","jit":704},{"count":1065,"id":44229096,"type":"Scalar","jit":1056}],"inclusive_time":4274,"file":"gen/moar/m-CORE.setting","jit_entries":352,"entries":355,"callees":[{"exclusive_time":558,"id":49411680,"line":6408,"name":"count","inclusive_time":603,"file":"gen/moar/m-CORE.setting","jit_entries":355,"entries":355,"callees":[{"exclusive_time":45,"id":50093552,"line":18706,"name":"count","inclusive_time":45,"file":"gen/moar/m-CORE.setting","jit_entries":355,"entries":355}]},{"exclusive_time":90,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":90,"file":"gen/moar/m-CORE.setting","inlined_entries":352,"jit_entries":355,"entries":355},{"exclusive_time":116,"id":49304064,"line":3847,"name":"","inclusive_time":116,"file":"gen/moar/m-CORE.setting","jit_entries":355,"entries":355},{"exclusive_time":577,"id":49401344,"line":3827,"name":"new","allocations":[{"count":1065,"id":44229096,"type":"Scalar","jit":1056},{"count":355,"id":67908360,"type":"<anon|159066640>","jit":352}],"inclusive_time":577,"file":"gen/moar/m-CORE.setting","jit_entries":352,"entries":355},{"exclusive_time":123,"id":49700480,"line":12399,"name":"new","allocations":[{"count":355,"id":67909080,"type":"Seq","jit":355}],"inclusive_time":123,"file":"gen/moar/m-CORE.setting","jit_entries":355,"entries":355}]}]},{"exclusive_time":1748,"id":49166960,"line":1878,"name":"join","allocations":[{"count":355,"id":44229096,"type":"Scalar","jit":152}],"inclusive_time":176389,"file":"gen/moar/m-CORE.setting","jit_entries":152,"entries":355,"callees":[{"exclusive_time":1189,"id":49699264,"line":12384,"name":"list","inclusive_time":4052,"file":"gen/moar/m-CORE.setting","jit_entries":204,"entries":355,"callees":[{"exclusive_time":837,"id":49701088,"line":12407,"name":"iterator","inclusive_time":997,"file":"gen/moar/m-CORE.setting","jit_entries":355,"entries":355,"callees":[{"exclusive_time":29,"id":49806576,"line":14088,"name":"sink","inclusive_time":29,"file":"gen/moar/m-CORE.setting","jit_entries":355,"entries":355},{"exclusive_time":130,"id":52616112,"line":2635,"name":"type_check","inclusive_time":130,"file":"gen/moar/m-Metamodel.nqp","jit_entries":355,"entries":355}]},{"exclusive_time":933,"id":49791072,"line":13804,"name":"from-iterator","allocations":[{"count":355,"id":44228664,"type":"List","jit":334},{"count":355,"id":68411984,"type":"IterationBuffer","jit":334},{"count":355,"id":65481320,"type":"List::Reifier","jit":334}],"inclusive_time":1866,"file":"gen/moar/m-CORE.setting","jit_entries":334,"entries":355,"callees":[{"exclusive_time":858,"id":49800496,"line":13985,"name":"reification-target","inclusive_time":932,"file":"gen/moar/m-CORE.setting","jit_entries":350,"entries":355,"callees":[{"exclusive_time":46,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":46,"file":"gen/moar/m-CORE.setting","jit_entries":355,"entries":355},{"exclusive_time":27,"id":49806576,"line":14088,"name":"sink","inclusive_time":27,"file":"gen/moar/m-CORE.setting","jit_entries":355,"entries":355}]}]}]},{"exclusive_time":6448,"id":49840320,"line":14494,"name":"join","allocations":[{"count":1065,"id":44229096,"type":"Scalar","jit":777},{"count":355,"id":33960880,"type":"BOOTStrArray","jit":259},{"count":355,"id":44229144,"type":"Str","jit":259}],"inclusive_time":170587,"file":"gen/moar/m-CORE.setting","jit_entries":259,"entries":355,"callees":[{"exclusive_time":42,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":42,"file":"gen/moar/m-CORE.setting","jit_entries":355,"entries":355},{"exclusive_time":57,"id":49806576,"line":14088,"name":"sink","inclusive_time":57,"file":"gen/moar/m-CORE.setting","jit_entries":710,"entries":710},{"exclusive_time":3955,"id":49845792,"line":13753,"name":"reify-until-lazy","allocations":[{"count":355,"id":33960376,"type":"BOOTCode","jit":342},{"count":710,"id":44229096,"type":"Scalar","jit":684}],"inclusive_time":159480,"file":"gen/moar/m-CORE.setting","deopt_one":342,"jit_entries":342,"entries":355,"callees":[{"exclusive_time":1426,"id":49213776,"line":2476,"name":"push-until-lazy","allocations":[{"count":355,"id":44229096,"type":"Scalar","jit":330}],"inclusive_time":155216,"file":"gen/moar/m-CORE.setting","jit_entries":330,"entries":355,"callees":[{"exclusive_time":1123,"id":49401648,"line":3836,"name":"is-lazy","inclusive_time":1161,"file":"gen/moar/m-CORE.setting","jit_entries":205,"entries":355,"callees":[{"exclusive_time":38,"id":49215296,"line":2511,"name":"is-lazy","inclusive_time":38,"file":"gen/moar/m-CORE.setting","jit_entries":347,"entries":355}]},{"exclusive_time":1341,"id":49213168,"line":2463,"name":"push-all","allocations":[{"count":355,"id":44229096,"type":"Scalar"}],"inclusive_time":152628,"file":"gen/moar/m-CORE.setting","entries":355,"callees":[{"exclusive_time":1279,"id":49212864,"line":2454,"name":"push-at-least","allocations":[{"count":355,"id":44229096,"spesh":318,"type":"Scalar"}],"inclusive_time":151262,"spesh_entries":318,"file":"gen/moar/m-CORE.setting","entries":355,"callees":[{"exclusive_time":5238,"id":49212256,"line":2436,"name":"push-exactly","allocations":[{"count":710,"id":44229096,"type":"Scalar","jit":680}],"inclusive_time":149983,"file":"gen/moar/m-CORE.setting","deopt_one":340,"jit_entries":340,"entries":355,"callees":[{"exclusive_time":11737,"id":49304368,"line":3853,"name":"pull-one","allocations":[{"count":710,"id":33960376,"type":"BOOTCode","jit":684},{"count":2130,"id":44229096,"type":"Scalar","jit":2052}],"inclusive_time":144154,"file":"gen/moar/m-CORE.setting","deopt_one":684,"jit_entries":684,"entries":710,"callees":[{"exclusive_time":125,"id":48510016,"line":8705,"name":"prefix:<!>","inclusive_time":125,"file":"gen/moar/m-CORE.setting","inlined_entries":342,"jit_entries":710,"entries":710},{"exclusive_time":830,"id":49417456,"line":6478,"name":"phasers","inclusive_time":887,"file":"gen/moar/m-CORE.setting","jit_entries":710,"entries":710,"callees":[{"exclusive_time":57,"id":49806576,"line":14088,"name":"sink","inclusive_time":57,"file":"gen/moar/m-CORE.setting","jit_entries":710,"entries":710}]},{"exclusive_time":243,"id":48405440,"line":7763,"name":"prefix:<+>","inclusive_time":1762,"file":"gen/moar/m-CORE.setting","jit_entries":355,"entries":355,"callees":[{"exclusive_time":395,"id":49795632,"line":13911,"name":"Numeric","inclusive_time":1519,"spesh_entries":355,"file":"gen/moar/m-CORE.setting","entries":355,"callees":[{"exclusive_time":1028,"id":49797760,"line":13932,"name":"elems","inclusive_time":1124,"spesh_entries":355,"file":"gen/moar/m-CORE.setting","entries":355,"callees":[{"exclusive_time":39,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":39,"file":"gen/moar/m-CORE.setting","jit_entries":355,"entries":355},{"exclusive_time":55,"id":49806576,"line":14088,"name":"sink","inclusive_time":55,"file":"gen/moar/m-CORE.setting","jit_entries":710,"entries":710}]}]}]},{"exclusive_time":1192,"id":49078192,"line":929,"name":"Bool","inclusive_time":2302,"spesh_entries":355,"file":"gen/moar/m-CORE.setting","entries":355,"callees":[{"exclusive_time":79,"id":52321312,"line":3008,"name":"","allocations":[{"count":355,"id":44228664,"type":"List","jit":355}],"inclusive_time":79,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":355,"entries":355},{"exclusive_time":946,"id":49794720,"line":13904,"name":"Bool","inclusive_time":1030,"file":"gen/moar/m-CORE.setting","jit_entries":355,"entries":355,"callees":[{"exclusive_time":34,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":34,"file":"gen/moar/m-CORE.setting","jit_entries":355,"entries":355},{"exclusive_time":26,"id":49806576,"line":14088,"name":"sink","inclusive_time":26,"file":"gen/moar/m-CORE.setting","jit_entries":355,"entries":355},{"exclusive_time":23,"id":48508496,"line":8699,"name":"prefix:<so>","inclusive_time":23,"file":"gen/moar/m-CORE.setting","jit_entries":355,"entries":355}]}]},{"exclusive_time":127,"id":49806576,"line":14088,"name":"sink","inclusive_time":127,"file":"gen/moar/m-CORE.setting","jit_entries":1420,"entries":1420},{"exclusive_time":4574,"id":48605472,"line":12707,"name":"pull-one","allocations":[{"count":1065,"id":44229096,"type":"Scalar","jit":1002},{"count":355,"id":68411984,"type":"IterationBuffer","jit":334},{"count":355,"id":33960664,"type":"BOOTContinuation","jit":334}],"inclusive_time":16141,"file":"gen/moar/m-CORE.setting","deopt_one":668,"jit_entries":668,"entries":710,"callees":[{"exclusive_time":32,"id":49072720,"line":856,"name":"sink","inclusive_time":32,"file":"gen/moar/m-CORE.setting","jit_entries":355,"entries":355},{"exclusive_time":1930,"id":48604560,"line":12698,"name":"","allocations":[{"count":355,"id":33960376,"type":"BOOTCode"},{"count":355,"id":44229096,"type":"Scalar"}],"inclusive_time":10926,"file":"gen/moar/m-CORE.setting","entries":710,"callees":[{"exclusive_time":1990,"id":49550304,"line":9881,"name":"","allocations":[{"count":355,"id":44229096,"type":"Scalar","jit":159}],"inclusive_time":8599,"file":"gen/moar/m-CORE.setting","jit_entries":318,"entries":710,"callees":[{"exclusive_time":1408,"id":39753424,"line":641,"name":"take","allocations":[{"count":355,"id":44229096,"spesh":159,"type":"Scalar","jit":175}],"inclusive_time":6574,"spesh_entries":318,"file":"gen/moar/m-CORE.setting","jit_entries":350,"entries":710,"callees":[{"exclusive_time":979,"id":39750080,"line":596,"name":"THROW","allocations":[{"count":355,"id":33960568,"spesh":334,"type":"BOOTException"}],"inclusive_time":5165,"spesh_entries":668,"file":"gen/moar/m-CORE.setting","entries":710,"callees":[{"exclusive_time":976,"id":48605168,"line":-1,"name":"","allocations":[{"count":710,"id":44229024,"spesh":684,"type":"Int"}],"inclusive_time":4185,"spesh_entries":684,"file":"/usr/local/src/rakudo/install/share/perl6/runtime/CORE.setting.moarvm","entries":710,"callees":[{"exclusive_time":2586,"id":48603952,"line":12680,"name":"","inclusive_time":3209,"file":"gen/moar/m-CORE.setting","entries":710,"callees":[{"exclusive_time":284,"id":49692880,"line":12283,"name":"push","inclusive_time":284,"file":"gen/moar/m-CORE.setting","entries":355},{"exclusive_time":337,"id":52311584,"line":1621,"name":"","allocations":[{"count":355,"id":44229240,"spesh":355,"type":"Block"},{"count":355,"id":33960376,"spesh":355,"type":"BOOTCode"}],"inclusive_time":337,"spesh_entries":355,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":355}]}]}]}]},{"exclusive_time":33,"id":49072720,"line":856,"name":"sink","inclusive_time":33,"file":"gen/moar/m-CORE.setting","jit_entries":355,"entries":355}]},{"exclusive_time":397,"id":52311584,"line":1621,"name":"","allocations":[{"count":355,"id":44229240,"spesh":355,"type":"Block"},{"count":355,"id":33960376,"spesh":355,"type":"BOOTCode"}],"inclusive_time":397,"spesh_entries":355,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":355}]},{"exclusive_time":215,"id":48604256,"line":12692,"name":"","inclusive_time":215,"file":"gen/moar/m-CORE.setting","jit_entries":340,"entries":355},{"exclusive_time":31,"id":49806576,"line":14088,"name":"sink","inclusive_time":31,"file":"gen/moar/m-CORE.setting","jit_entries":355,"entries":355},{"exclusive_time":359,"id":48604864,"line":12700,"name":"","inclusive_time":359,"file":"gen/moar/m-CORE.setting","jit_entries":211,"entries":355}]},{"exclusive_time":160,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":160,"file":"gen/moar/m-CORE.setting","jit_entries":355,"entries":710},{"exclusive_time":909,"id":49237792,"line":3184,"name":"","inclusive_time":109948,"file":"gen/moar/m-CORE.setting","jit_entries":202,"entries":355,"callees":[{"exclusive_time":3556,"id":48204912,"line":7351,"name":"fmt","allocations":[{"count":355,"id":44229096,"type":"Scalar","jit":152},{"count":355,"id":33960304,"type":"BOOTArray","jit":152},{"count":355,"id":44229144,"type":"Str","jit":152}],"inclusive_time":109039,"file":"gen/moar/m-CORE.setting","jit_entries":152,"entries":355,"callees":[{"exclusive_time":1196,"id":49232928,"line":3092,"name":"initialize-sprintf-handler","allocations":[{"count":355,"id":33960376,"type":"BOOTCode","jit":152}],"inclusive_time":1686,"file":"gen/moar/m-CORE.setting","jit_entries":152,"entries":355,"callees":[{"exclusive_time":459,"id":49233536,"line":3093,"name":"","allocations":[{"count":355,"id":44229096,"type":"Scalar","jit":202}],"inclusive_time":459,"file":"gen/moar/m-CORE.setting","jit_entries":202,"entries":355},{"exclusive_time":31,"id":49806576,"line":14088,"name":"sink","inclusive_time":31,"file":"gen/moar/m-CORE.setting","jit_entries":355,"entries":355}]},{"exclusive_time":25,"id":49564592,"line":10027,"name":"Stringy","inclusive_time":25,"file":"gen/moar/m-CORE.setting","jit_entries":355,"entries":355},{"exclusive_time":1653,"id":36487568,"line":2633,"name":"sprintf","inclusive_time":103769,"file":"gen/moar/stage2/NQPHLL.nqp","jit_entries":202,"entries":355,"callees":[{"exclusive_time":2130,"id":35876544,"line":2090,"name":"parse","allocations":[{"count":355,"id":33960280,"spesh":262,"type":"BOOTStr"}],"inclusive_time":102074,"spesh_entries":262,"file":"gen/moar/stage2/QRegex.nqp","entries":355,"callees":[{"exclusive_time":3717,"id":35850400,"line":1143,"name":"!cursor_init","allocations":[{"count":355,"id":44224152,"type":"ParseShared"},{"count":355,"id":33960880,"type":"BOOTStrArray"},{"count":355,"id":33960328,"type":"BOOTHash"}],"inclusive_time":4064,"file":"gen/moar/stage2/QRegex.nqp","entries":355,"callees":[{"exclusive_time":72,"id":34675584,"line":505,"name":"CREATE","allocations":[{"count":355,"id":73529984,"type":"Syntax","jit":351}],"inclusive_time":72,"file":"gen/moar/stage2/NQPCORE.setting","jit_entries":351,"entries":355},{"exclusive_time":273,"id":35851312,"line":1228,"name":"!cursor_start_cur","allocations":[{"count":355,"id":73529984,"type":"Syntax","jit":351},{"count":355,"id":33960832,"type":"BOOTIntArray","jit":351}],"inclusive_time":273,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":351,"entries":355}]},{"exclusive_time":3488,"id":36488784,"line":-1,"name":"TOP","inclusive_time":95775,"file":"/usr/local/src/rakudo/install/share/nqp/lib/NQPHLL.moarvm","jit_entries":102,"entries":355,"callees":[{"exclusive_time":294,"id":35851008,"line":1205,"name":"!cursor_start","allocations":[{"count":355,"id":73529984,"spesh":102,"type":"Syntax","jit":253},{"count":355,"id":33960832,"spesh":102,"type":"BOOTIntArray","jit":253}],"inclusive_time":294,"spesh_entries":102,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":253,"entries":355},{"exclusive_time":4714,"id":36489392,"line":-1,"name":"statement","inclusive_time":85367,"spesh_entries":204,"file":"/usr/local/src/rakudo/install/share/nqp/lib/NQPHLL.moarvm","jit_entries":207,"entries":710,"callees":[{"exclusive_time":419,"id":35851008,"line":1205,"name":"!cursor_start","allocations":[{"count":710,"id":73529984,"spesh":411,"type":"Syntax","jit":299},{"count":710,"id":33960832,"spesh":411,"type":"BOOTIntArray","jit":299}],"inclusive_time":419,"spesh_entries":411,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":299,"entries":710},{"exclusive_time":2559,"id":35856480,"line":1416,"name":"!alt","inclusive_time":7878,"spesh_entries":616,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":449,"entries":1065,"callees":[{"exclusive_time":843,"id":34860000,"line":1332,"name":"cache_get","inclusive_time":843,"file":"gen/moar/stage2/nqpmo.nqp","jit_entries":1065,"entries":1065},{"exclusive_time":4475,"id":35844624,"line":701,"name":"run_alt","inclusive_time":4475,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":1065,"entries":1065}]},{"exclusive_time":572,"id":36489696,"line":-1,"name":"directive","inclusive_time":57582,"spesh_entries":202,"file":"/usr/local/src/rakudo/install/share/nqp/lib/NQPHLL.moarvm","entries":355,"callees":[{"exclusive_time":2677,"id":35855264,"line":1356,"name":"!protoregex","inclusive_time":57009,"spesh_entries":202,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":149,"entries":355,"callees":[{"exclusive_time":210,"id":34860000,"line":1332,"name":"cache_get","inclusive_time":210,"file":"gen/moar/stage2/nqpmo.nqp","jit_entries":351,"entries":355},{"exclusive_time":2715,"id":35844320,"line":682,"name":"run","inclusive_time":2715,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":351,"entries":355},{"exclusive_time":45,"id":35837024,"line":116,"name":"states","inclusive_time":45,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":351,"entries":355},{"exclusive_time":6760,"id":36492736,"line":-1,"name":"directive:sym<x>","inclusive_time":51358,"file":"/usr/local/src/rakudo/install/share/nqp/lib/NQPHLL.moarvm","jit_entries":52,"entries":355,"callees":[{"exclusive_time":174,"id":35851008,"line":1205,"name":"!cursor_start","allocations":[{"count":355,"id":73529984,"spesh":52,"type":"Syntax","jit":303},{"count":355,"id":33960832,"spesh":52,"type":"BOOTIntArray","jit":303}],"inclusive_time":174,"spesh_entries":52,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":303,"entries":355},{"exclusive_time":3312,"id":36493952,"line":-1,"name":"idx","inclusive_time":4470,"spesh_entries":52,"file":"/usr/local/src/rakudo/install/share/nqp/lib/NQPHLL.moarvm","jit_entries":50,"entries":355,"callees":[{"exclusive_time":131,"id":35851008,"line":1205,"name":"!cursor_start","allocations":[{"count":355,"id":73529984,"spesh":102,"type":"Syntax","jit":253},{"count":355,"id":33960832,"spesh":102,"type":"BOOTIntArray","jit":253}],"inclusive_time":131,"spesh_entries":102,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":253,"entries":355},{"exclusive_time":176,"id":35851920,"line":1248,"name":"!cursor_start_subcapture","allocations":[{"count":355,"id":73529984,"spesh":52,"type":"Syntax","jit":303}],"inclusive_time":176,"spesh_entries":52,"file":"gen/moar/stage2/QRegex.nqp","inlined_entries":102,"jit_entries":303,"entries":355},{"exclusive_time":259,"id":35852832,"line":1296,"name":"!cursor_pass","inclusive_time":259,"spesh_entries":102,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":253,"entries":355},{"exclusive_time":474,"id":35852224,"line":1256,"name":"!cursor_capture","allocations":[{"count":355,"id":33961312,"spesh":102,"type":"NQPArray","jit":253}],"inclusive_time":474,"spesh_entries":102,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":253,"entries":355},{"exclusive_time":115,"id":35853136,"line":1307,"name":"!cursor_fail","inclusive_time":115,"spesh_entries":52,"file":"gen/moar/stage2/QRegex.nqp","inlined_entries":102,"jit_entries":303,"entries":355}]},{"exclusive_time":2742,"id":36494256,"line":-1,"name":"flags","inclusive_time":7697,"spesh_entries":104,"file":"/usr/local/src/rakudo/install/share/nqp/lib/NQPHLL.moarvm","jit_entries":307,"entries":710,"callees":[{"exclusive_time":360,"id":35851008,"line":1205,"name":"!cursor_start","allocations":[{"count":710,"id":73529984,"spesh":411,"type":"Syntax","jit":299},{"count":710,"id":33960832,"spesh":411,"type":"BOOTIntArray","jit":299}],"inclusive_time":360,"spesh_entries":411,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":299,"entries":710},{"exclusive_time":1121,"id":35856480,"line":1416,"name":"!alt","inclusive_time":1951,"spesh_entries":411,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":299,"entries":710,"callees":[{"exclusive_time":394,"id":34860000,"line":1332,"name":"cache_get","inclusive_time":394,"file":"gen/moar/stage2/nqpmo.nqp","jit_entries":710,"entries":710},{"exclusive_time":435,"id":35844624,"line":701,"name":"run_alt","inclusive_time":435,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":710,"entries":710}]},{"exclusive_time":134,"id":35851920,"line":1248,"name":"!cursor_start_subcapture","allocations":[{"count":355,"id":73529984,"spesh":52,"type":"Syntax","jit":303}],"inclusive_time":134,"spesh_entries":52,"file":"gen/moar/stage2/QRegex.nqp","inlined_entries":205,"jit_entries":303,"entries":355},{"exclusive_time":696,"id":35852832,"line":1296,"name":"!cursor_pass","inclusive_time":1968,"spesh_entries":410,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":300,"entries":710,"callees":[{"exclusive_time":1272,"id":35854352,"line":1340,"name":"!reduce","inclusive_time":1272,"spesh_entries":355,"file":"gen/moar/stage2/QRegex.nqp","entries":355}]},{"exclusive_time":455,"id":35852224,"line":1256,"name":"!cursor_capture","allocations":[{"count":355,"id":33961312,"spesh":205,"type":"NQPArray","jit":150}],"inclusive_time":455,"spesh_entries":205,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":150,"entries":355},{"exclusive_time":84,"id":35853136,"line":1307,"name":"!cursor_fail","inclusive_time":84,"spesh_entries":52,"file":"gen/moar/stage2/QRegex.nqp","inlined_entries":206,"jit_entries":303,"entries":355}]},{"exclusive_time":622,"id":35852224,"line":1256,"name":"!cursor_capture","allocations":[{"count":355,"id":33961312,"type":"NQPArray","jit":355}],"inclusive_time":622,"spesh_entries":52,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":1013,"entries":1065},{"exclusive_time":1397,"id":36494560,"line":-1,"name":"size","inclusive_time":8972,"spesh_entries":52,"file":"/usr/local/src/rakudo/install/share/nqp/lib/NQPHLL.moarvm","jit_entries":50,"entries":355,"callees":[{"exclusive_time":146,"id":35851008,"line":1205,"name":"!cursor_start","allocations":[{"count":355,"id":73529984,"spesh":102,"type":"Syntax","jit":253},{"count":355,"id":33960832,"spesh":102,"type":"BOOTIntArray","jit":253}],"inclusive_time":146,"spesh_entries":102,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":253,"entries":355},{"exclusive_time":492,"id":35856480,"line":1416,"name":"!alt","inclusive_time":925,"spesh_entries":102,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":253,"entries":355,"callees":[{"exclusive_time":168,"id":34860000,"line":1332,"name":"cache_get","inclusive_time":168,"file":"gen/moar/stage2/nqpmo.nqp","jit_entries":355,"entries":355},{"exclusive_time":264,"id":35844624,"line":701,"name":"run_alt","inclusive_time":264,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":355,"entries":355}]},{"exclusive_time":307,"id":35852832,"line":1296,"name":"!cursor_pass","inclusive_time":6502,"spesh_entries":102,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":253,"entries":355,"callees":[{"exclusive_time":1244,"id":35854352,"line":1340,"name":"!reduce","inclusive_time":6195,"spesh_entries":355,"file":"gen/moar/stage2/QRegex.nqp","entries":355,"callees":[{"exclusive_time":3057,"id":35875936,"line":1940,"name":"MATCH","allocations":[{"count":355,"id":33960328,"spesh":355,"type":"BOOTHash"},{"count":355,"id":33962488,"spesh":355,"type":"NQPMatch"},{"count":355,"id":33960280,"spesh":355,"type":"BOOTStr"},{"count":355,"id":33961384,"spesh":355,"type":"NQPHashIter"}],"inclusive_time":3187,"spesh_entries":355,"file":"gen/moar/stage2/QRegex.nqp","entries":355,"callees":[{"exclusive_time":99,"id":35848272,"line":1064,"name":"orig","inclusive_time":99,"spesh_entries":355,"file":"gen/moar/stage2/QRegex.nqp","entries":355},{"exclusive_time":29,"id":34672240,"line":446,"name":"CAPS","inclusive_time":29,"file":"gen/moar/stage2/NQPCORE.setting","jit_entries":355,"entries":355}]},{"exclusive_time":1636,"id":36504592,"line":2626,"name":"size","allocations":[{"count":355,"id":33960280,"type":"BOOTStr","jit":202}],"inclusive_time":1763,"file":"gen/moar/stage2/NQPHLL.nqp","jit_entries":202,"entries":355,"callees":[{"exclusive_time":96,"id":35870768,"line":1837,"name":"Str","inclusive_time":96,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":355,"entries":355},{"exclusive_time":30,"id":35872896,"line":1849,"name":"make","inclusive_time":30,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":355,"entries":355}]}]}]}]},{"exclusive_time":127,"id":35851920,"line":1248,"name":"!cursor_start_subcapture","allocations":[{"count":355,"id":73529984,"type":"Syntax","jit":355}],"inclusive_time":127,"file":"gen/moar/stage2/QRegex.nqp","inlined_entries":52,"jit_entries":355,"entries":355},{"exclusive_time":417,"id":35852832,"line":1296,"name":"!cursor_pass","inclusive_time":22534,"spesh_entries":104,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":606,"entries":710,"callees":[{"exclusive_time":995,"id":35854352,"line":1340,"name":"!reduce","inclusive_time":22117,"spesh_entries":355,"file":"gen/moar/stage2/QRegex.nqp","entries":355,"callees":[{"exclusive_time":5067,"id":35875936,"line":1940,"name":"MATCH","allocations":[{"count":355,"id":33960328,"spesh":355,"type":"BOOTHash"},{"count":355,"id":33962488,"spesh":355,"type":"NQPMatch"},{"count":355,"id":33960280,"spesh":355,"type":"BOOTStr"},{"count":355,"id":33961384,"spesh":355,"type":"NQPHashIter"},{"count":355,"id":33961312,"spesh":355,"type":"NQPArray"}],"inclusive_time":9398,"spesh_entries":355,"file":"gen/moar/stage2/QRegex.nqp","entries":355,"callees":[{"exclusive_time":61,"id":35848272,"line":1064,"name":"orig","inclusive_time":61,"spesh_entries":355,"file":"gen/moar/stage2/QRegex.nqp","entries":355},{"exclusive_time":28,"id":34672240,"line":446,"name":"CAPS","inclusive_time":28,"file":"gen/moar/stage2/NQPCORE.setting","jit_entries":355,"entries":355},{"exclusive_time":3371,"id":35875936,"line":1940,"name":"MATCH","allocations":[{"count":710,"id":33960328,"type":"BOOTHash","jit":710},{"count":710,"id":33962488,"type":"NQPMatch","jit":710},{"count":710,"id":33960280,"type":"BOOTStr","jit":710},{"count":355,"id":33961384,"type":"NQPHashIter","jit":355}],"inclusive_time":4241,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":1065,"entries":1065,"callees":[{"exclusive_time":118,"id":35848272,"line":1064,"name":"orig","inclusive_time":118,"spesh_entries":710,"file":"gen/moar/stage2/QRegex.nqp","entries":710},{"exclusive_time":25,"id":34672240,"line":446,"name":"CAPS","inclusive_time":25,"file":"gen/moar/stage2/NQPCORE.setting","jit_entries":355,"entries":355},{"exclusive_time":674,"id":35875936,"line":1940,"name":"MATCH","allocations":[{"count":355,"id":33960328,"type":"BOOTHash","jit":355},{"count":355,"id":33962488,"type":"NQPMatch","jit":355},{"count":355,"id":33960280,"type":"BOOTStr","jit":355}],"inclusive_time":726,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":355,"entries":355,"callees":[{"exclusive_time":51,"id":35848272,"line":1064,"name":"orig","inclusive_time":51,"spesh_entries":355,"file":"gen/moar/stage2/QRegex.nqp","entries":355}]}]}]},{"exclusive_time":5175,"id":36503376,"line":2598,"name":"directive:sym<x>","allocations":[{"count":1065,"id":33960280,"type":"BOOTStr","jit":306}],"inclusive_time":11723,"file":"gen/moar/stage2/NQPHLL.nqp","jit_entries":102,"entries":355,"callees":[{"exclusive_time":1198,"id":36495472,"line":2307,"name":"next_argument","inclusive_time":1198,"file":"gen/moar/stage2/NQPHLL.nqp","jit_entries":102,"entries":355},{"exclusive_time":2121,"id":36495776,"line":2317,"name":"intify","allocations":[{"count":355,"id":33961360,"spesh":102,"type":"NQPArrayIter"}],"inclusive_time":4081,"spesh_entries":102,"file":"gen/moar/stage2/NQPHLL.nqp","entries":355,"callees":[{"exclusive_time":843,"id":49233840,"line":3094,"name":"mine","allocations":[{"count":355,"id":44229096,"spesh":152,"type":"Scalar"}],"inclusive_time":843,"spesh_entries":152,"file":"gen/moar/m-CORE.setting","entries":355},{"exclusive_time":1029,"id":49234144,"line":3095,"name":"int","allocations":[{"count":355,"id":44229096,"type":"Scalar","jit":152}],"inclusive_time":1116,"file":"gen/moar/m-CORE.setting","jit_entries":152,"entries":355,"callees":[{"exclusive_time":86,"id":49477040,"line":8252,"name":"Int","inclusive_time":86,"file":"gen/moar/m-CORE.setting","jit_entries":202,"entries":355}]}]},{"exclusive_time":901,"id":36496992,"line":2353,"name":"has_flag","allocations":[{"count":355,"id":33960376,"type":"BOOTCode","jit":306},{"count":355,"id":33961360,"type":"NQPArrayIter","jit":306}],"inclusive_time":1126,"file":"gen/moar/stage2/NQPHLL.nqp","jit_entries":306,"entries":355,"callees":[{"exclusive_time":224,"id":36497296,"line":2356,"name":"","inclusive_time":224,"file":"gen/moar/stage2/NQPHLL.nqp","jit_entries":306,"entries":355}]},{"exclusive_time":105,"id":35870768,"line":1837,"name":"Str","inclusive_time":105,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":355,"entries":355},{"exclusive_time":36,"id":35872896,"line":1849,"name":"make","inclusive_time":36,"file":"gen/moar/stage2/QRegex.nqp","inlined_entries":102,"jit_entries":355,"entries":355}]}]}]}]}]}]},{"exclusive_time":422,"id":35852224,"line":1256,"name":"!cursor_capture","allocations":[{"count":355,"id":33961312,"type":"NQPArray","jit":355}],"inclusive_time":422,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":355,"entries":355},{"exclusive_time":354,"id":35852832,"line":1296,"name":"!cursor_pass","inclusive_time":14260,"spesh_entries":205,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":150,"entries":355,"callees":[{"exclusive_time":993,"id":35854352,"line":1340,"name":"!reduce","inclusive_time":13905,"spesh_entries":355,"file":"gen/moar/stage2/QRegex.nqp","entries":355,"callees":[{"exclusive_time":2769,"id":35875936,"line":1940,"name":"MATCH","allocations":[{"count":355,"id":33960328,"spesh":355,"type":"BOOTHash"},{"count":355,"id":33962488,"spesh":355,"type":"NQPMatch"},{"count":355,"id":33960280,"spesh":355,"type":"BOOTStr"},{"count":355,"id":33961384,"spesh":355,"type":"NQPHashIter"}],"inclusive_time":2922,"spesh_entries":355,"file":"gen/moar/stage2/QRegex.nqp","entries":355,"callees":[{"exclusive_time":62,"id":35848272,"line":1064,"name":"orig","inclusive_time":62,"spesh_entries":355,"file":"gen/moar/stage2/QRegex.nqp","entries":355},{"exclusive_time":29,"id":34672240,"line":446,"name":"CAPS","inclusive_time":29,"file":"gen/moar/stage2/NQPCORE.setting","jit_entries":355,"entries":355},{"exclusive_time":61,"id":35875936,"line":1940,"name":"MATCH","inclusive_time":61,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":355,"entries":355}]},{"exclusive_time":5730,"id":36500336,"line":2361,"name":"statement","allocations":[{"count":355,"id":33961312,"type":"NQPArray","jit":102}],"inclusive_time":9989,"file":"gen/moar/stage2/NQPHLL.nqp","jit_entries":102,"entries":355,"callees":[{"exclusive_time":54,"id":35871680,"line":1840,"name":"Bool","inclusive_time":54,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":710,"entries":710},{"exclusive_time":1502,"id":36496080,"line":2344,"name":"padding_char","allocations":[{"count":710,"id":33960376,"type":"BOOTCode","jit":204},{"count":355,"id":33960280,"type":"BOOTStr","jit":102},{"count":355,"id":33961360,"type":"NQPArrayIter","jit":102}],"inclusive_time":2505,"file":"gen/moar/stage2/NQPHLL.nqp","jit_entries":102,"entries":355,"callees":[{"exclusive_time":517,"id":36496992,"line":2353,"name":"has_flag","allocations":[{"count":355,"id":33960376,"type":"BOOTCode","jit":307},{"count":355,"id":33961360,"type":"NQPArrayIter","jit":307}],"inclusive_time":619,"file":"gen/moar/stage2/NQPHLL.nqp","jit_entries":307,"entries":355,"callees":[{"exclusive_time":101,"id":36497296,"line":2356,"name":"","inclusive_time":101,"file":"gen/moar/stage2/NQPHLL.nqp","jit_entries":307,"entries":355}]},{"exclusive_time":354,"id":36496688,"line":2348,"name":"","allocations":[{"count":355,"id":33960280,"type":"BOOTStr","jit":202}],"inclusive_time":384,"file":"gen/moar/stage2/NQPHLL.nqp","jit_entries":202,"entries":355,"callees":[{"exclusive_time":29,"id":35871680,"line":1840,"name":"Bool","inclusive_time":29,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":355,"entries":355}]}]},{"exclusive_time":94,"id":35873200,"line":1850,"name":"made","inclusive_time":94,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":1065,"entries":1065},{"exclusive_time":270,"id":36495168,"line":2300,"name":"infix_x","allocations":[{"count":355,"id":33961312,"type":"NQPArray","jit":202}],"inclusive_time":270,"file":"gen/moar/stage2/NQPHLL.nqp","jit_entries":202,"entries":355},{"exclusive_time":129,"id":34678320,"line":596,"name":"push","inclusive_time":129,"file":"gen/moar/stage2/NQPCORE.setting","inlined_entries":204,"jit_entries":710,"entries":710},{"exclusive_time":445,"id":36496992,"line":2353,"name":"has_flag","allocations":[{"count":355,"id":33960376,"type":"BOOTCode","jit":307},{"count":355,"id":33961360,"type":"NQPArrayIter","jit":307}],"inclusive_time":534,"file":"gen/moar/stage2/NQPHLL.nqp","jit_entries":307,"entries":355,"callees":[{"exclusive_time":89,"id":36497296,"line":2356,"name":"","inclusive_time":89,"file":"gen/moar/stage2/NQPHLL.nqp","jit_entries":307,"entries":355}]},{"exclusive_time":644,"id":34657520,"line":710,"name":"join","allocations":[{"count":355,"id":33960880,"type":"BOOTStrArray","jit":339},{"count":355,"id":33961360,"type":"NQPArrayIter","jit":339}],"inclusive_time":644,"file":"gen/moar/stage2/NQPCORE.setting","jit_entries":339,"entries":355},{"exclusive_time":25,"id":35872896,"line":1849,"name":"make","inclusive_time":25,"file":"gen/moar/stage2/QRegex.nqp","inlined_entries":102,"jit_entries":355,"entries":355}]}]}]},{"exclusive_time":91,"id":35853136,"line":1307,"name":"!cursor_fail","inclusive_time":91,"spesh_entries":102,"file":"gen/moar/stage2/QRegex.nqp","inlined_entries":206,"jit_entries":253,"entries":355}]},{"exclusive_time":244,"id":35852224,"line":1256,"name":"!cursor_capture","allocations":[{"count":355,"id":33961312,"type":"NQPArray","jit":355}],"inclusive_time":244,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":355,"entries":355},{"exclusive_time":281,"id":35852832,"line":1296,"name":"!cursor_pass","inclusive_time":6378,"spesh_entries":102,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":253,"entries":355,"callees":[{"exclusive_time":826,"id":35854352,"line":1340,"name":"!reduce","inclusive_time":6096,"spesh_entries":355,"file":"gen/moar/stage2/QRegex.nqp","entries":355,"callees":[{"exclusive_time":2544,"id":35875936,"line":1940,"name":"MATCH","allocations":[{"count":355,"id":33960328,"spesh":355,"type":"BOOTHash"},{"count":355,"id":33962488,"spesh":355,"type":"NQPMatch"},{"count":710,"id":33960280,"spesh":710,"type":"BOOTStr"},{"count":355,"id":33961384,"spesh":355,"type":"NQPHashIter"},{"count":355,"id":33961312,"spesh":355,"type":"NQPArray"}],"inclusive_time":2698,"spesh_entries":355,"file":"gen/moar/stage2/QRegex.nqp","entries":355,"callees":[{"exclusive_time":63,"id":35848272,"line":1064,"name":"orig","inclusive_time":63,"spesh_entries":355,"file":"gen/moar/stage2/QRegex.nqp","entries":355},{"exclusive_time":32,"id":34672240,"line":446,"name":"CAPS","inclusive_time":32,"file":"gen/moar/stage2/NQPCORE.setting","jit_entries":355,"entries":355},{"exclusive_time":59,"id":35875936,"line":1940,"name":"MATCH","inclusive_time":59,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":355,"entries":355}]},{"exclusive_time":2004,"id":36499728,"line":2284,"name":"TOP","allocations":[{"count":355,"id":33960376,"type":"BOOTCode","jit":52},{"count":355,"id":33961312,"type":"NQPArray","jit":52},{"count":355,"id":33961360,"type":"NQPArrayIter","jit":52}],"inclusive_time":2570,"file":"gen/moar/stage2/NQPHLL.nqp","jit_entries":52,"entries":355,"callees":[{"exclusive_time":399,"id":36500032,"line":2286,"name":"","inclusive_time":511,"file":"gen/moar/stage2/NQPHLL.nqp","jit_entries":202,"entries":355,"callees":[{"exclusive_time":33,"id":35873200,"line":1850,"name":"made","inclusive_time":33,"file":"gen/moar/stage2/QRegex.nqp","inlined_entries":202,"jit_entries":355,"entries":355},{"exclusive_time":78,"id":34678320,"line":596,"name":"push","inclusive_time":78,"file":"gen/moar/stage2/NQPCORE.setting","inlined_entries":202,"jit_entries":355,"entries":355}]},{"exclusive_time":55,"id":35872896,"line":1849,"name":"make","inclusive_time":55,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":351,"entries":355}]}]}]}]},{"exclusive_time":103,"id":35875936,"line":1940,"name":"MATCH","inclusive_time":103,"spesh_entries":262,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":93,"entries":355}]},{"exclusive_time":41,"id":35873200,"line":1850,"name":"made","allocations":[{"count":355,"id":33960280,"type":"BOOTStr","jit":355}],"inclusive_time":41,"file":"gen/moar/stage2/QRegex.nqp","inlined_entries":202,"jit_entries":355,"entries":355}]}]}]},{"exclusive_time":136,"id":49072720,"line":856,"name":"sink","inclusive_time":136,"file":"gen/moar/m-CORE.setting","entries":355},{"exclusive_time":715,"id":49416544,"line":6469,"name":"fire_phasers","allocations":[{"count":355,"id":33960376,"spesh":345,"type":"BOOTCode"}],"inclusive_time":823,"spesh_entries":345,"file":"gen/moar/m-CORE.setting","entries":355,"callees":[{"exclusive_time":107,"id":48510016,"line":8705,"name":"prefix:<!>","inclusive_time":107,"spesh_entries":345,"file":"gen/moar/m-CORE.setting","inlined_entries":345,"jit_entries":10,"entries":355}]}]},{"exclusive_time":147,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":147,"file":"gen/moar/m-CORE.setting","jit_entries":355,"entries":710},{"exclusive_time":118,"id":48509712,"line":8704,"name":"prefix:<!>","inclusive_time":118,"file":"gen/moar/m-CORE.setting","jit_entries":710,"entries":710},{"exclusive_time":324,"id":49692880,"line":12283,"name":"push","inclusive_time":324,"file":"gen/moar/m-CORE.setting","entries":355}]}]},{"exclusive_time":24,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":24,"file":"gen/moar/m-CORE.setting","jit_entries":355,"entries":355}]}]},{"exclusive_time":24,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":24,"file":"gen/moar/m-CORE.setting","jit_entries":355,"entries":355},{"exclusive_time":247,"id":52616112,"line":2635,"name":"type_check","inclusive_time":247,"file":"gen/moar/m-Metamodel.nqp","jit_entries":355,"entries":355},{"exclusive_time":37,"id":49806576,"line":14088,"name":"sink","inclusive_time":37,"file":"gen/moar/m-CORE.setting","jit_entries":355,"entries":355}]},{"exclusive_time":167,"id":49072720,"line":856,"name":"sink","inclusive_time":167,"file":"gen/moar/m-CORE.setting","jit_entries":355,"entries":710},{"exclusive_time":452,"id":49849440,"line":13795,"name":"fully-reified","inclusive_time":585,"file":"gen/moar/m-CORE.setting","jit_entries":342,"entries":355,"callees":[{"exclusive_time":132,"id":48509712,"line":8704,"name":"prefix:<!>","inclusive_time":132,"file":"gen/moar/m-CORE.setting","inlined_entries":684,"jit_entries":710,"entries":710}]},{"exclusive_time":54,"id":48509712,"line":8704,"name":"prefix:<!>","inclusive_time":54,"file":"gen/moar/m-CORE.setting","inlined_entries":259,"jit_entries":355,"entries":355},{"exclusive_time":2225,"id":49797760,"line":13932,"name":"elems","allocations":[{"count":355,"id":44229096,"spesh":259,"type":"Scalar","jit":96}],"inclusive_time":3701,"spesh_entries":259,"file":"gen/moar/m-CORE.setting","jit_entries":96,"entries":355,"callees":[{"exclusive_time":59,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":59,"file":"gen/moar/m-CORE.setting","jit_entries":355,"entries":355},{"exclusive_time":27,"id":49806576,"line":14088,"name":"sink","inclusive_time":27,"file":"gen/moar/m-CORE.setting","jit_entries":355,"entries":355},{"exclusive_time":1060,"id":49845792,"line":13753,"name":"reify-until-lazy","allocations":[{"count":355,"id":33960376,"type":"BOOTCode","jit":342}],"inclusive_time":1118,"file":"gen/moar/m-CORE.setting","deopt_one":342,"jit_entries":342,"entries":355,"callees":[{"exclusive_time":57,"id":49806576,"line":14088,"name":"sink","inclusive_time":57,"file":"gen/moar/m-CORE.setting","jit_entries":710,"entries":710}]},{"exclusive_time":28,"id":49072720,"line":856,"name":"sink","inclusive_time":28,"file":"gen/moar/m-CORE.setting","jit_entries":355,"entries":355},{"exclusive_time":181,"id":49849440,"line":13795,"name":"fully-reified","inclusive_time":242,"file":"gen/moar/m-CORE.setting","jit_entries":342,"entries":355,"callees":[{"exclusive_time":60,"id":48509712,"line":8704,"name":"prefix:<!>","inclusive_time":60,"file":"gen/moar/m-CORE.setting","inlined_entries":684,"jit_entries":710,"entries":710}]}]},{"exclusive_time":49,"id":49564288,"line":10026,"name":"Str","inclusive_time":49,"file":"gen/moar/m-CORE.setting","jit_entries":301,"entries":355}]}]},{"exclusive_time":561,"id":48569600,"line":11811,"name":"infix:<~>","allocations":[{"count":710,"id":44229144,"type":"Str","jit":710}],"inclusive_time":561,"file":"gen/moar/m-CORE.setting","inlined_entries":304,"jit_entries":710,"entries":710}]},{"exclusive_time":5787,"id":48569600,"line":11811,"name":"infix:<~>","allocations":[{"count":7800,"id":44229144,"type":"Str","jit":7800}],"inclusive_time":5787,"file":"gen/moar/m-CORE.setting","jit_entries":7800,"entries":7800}]}]},{"exclusive_time":1053,"id":48569600,"line":11811,"name":"infix:<~>","allocations":[{"count":1200,"id":44229144,"type":"Str","jit":1200}],"inclusive_time":1053,"file":"gen/moar/m-CORE.setting","inlined_entries":788,"jit_entries":1200,"entries":1200}]}]},{"exclusive_time":24,"id":48759600,"line":25195,"name":"say","inclusive_time":273,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":17,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":18,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":1,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":32,"id":48760208,"line":25197,"name":"say","allocations":[{"count":1,"id":44229048,"type":"StrLexRef"}],"inclusive_time":230,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":12,"id":39748256,"line":556,"name":"DYNAMIC","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"}],"inclusive_time":24,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":6,"id":39748560,"line":558,"name":"","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":12,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":5,"id":39748864,"line":564,"name":"","inclusive_time":5,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]},{"exclusive_time":1,"id":49198880,"line":2316,"name":"<anon>","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":19,"id":50543472,"line":24411,"name":"print","inclusive_time":172,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":22,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":82,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":46,"id":52313712,"line":1708,"name":"","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":17,"id":33961312,"type":"NQPArray"},{"count":4,"id":33961360,"type":"NQPArrayIter"},{"count":6,"id":33960328,"type":"BOOTHash"},{"count":6,"id":33960832,"type":"BOOTIntArray"},{"count":4,"id":33960232,"type":"BOOTInt"}],"inclusive_time":58,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":11,"id":52314016,"line":1738,"name":"is_narrower","inclusive_time":11,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":6,"entries":6}]},{"exclusive_time":1,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":70,"id":50543776,"line":24412,"name":"print","inclusive_time":70,"file":"gen/moar/m-CORE.setting","entries":1}]}]}]},{"exclusive_time":471,"id":49072720,"line":856,"name":"sink","inclusive_time":471,"file":"gen/moar/m-CORE.setting","entries":1192},{"exclusive_time":248,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":248,"file":"gen/moar/m-CORE.setting","inlined_entries":344,"jit_entries":601,"entries":601},{"exclusive_time":74,"id":49806576,"line":14088,"name":"sink","inclusive_time":74,"file":"gen/moar/m-CORE.setting","jit_entries":591,"entries":591},{"exclusive_time":14298,"id":89868720,"line":61,"name":"next-generation","allocations":[{"count":591,"id":33960376,"spesh":326,"type":"BOOTCode"},{"count":1773,"id":44229096,"spesh":978,"type":"Scalar"},{"count":591,"id":44228976,"spesh":326,"type":"Array"}],"inclusive_time":112685291,"spesh_entries":326,"file":"hibbified-249.p6","entries":591,"callees":[{"exclusive_time":769,"id":52309760,"line":1563,"name":"","allocations":[{"count":591,"id":44229264,"spesh":585,"type":"Code"},{"count":591,"id":33960376,"spesh":585,"type":"BOOTCode"}],"inclusive_time":769,"spesh_entries":585,"file":"gen/moar/m-BOOTSTRAP.nqp","inlined_entries":326,"entries":591},{"exclusive_time":7575,"id":88652352,"line":62,"name":"","inclusive_time":112586592,"file":"hibbified-249.p6","jit_entries":434,"entries":591,"callees":[{"exclusive_time":61,"id":48631008,"line":14669,"name":"infix:<X>","inclusive_time":1234,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":13,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"spesh":2,"type":"BOOTCode"},{"count":3,"id":33961312,"spesh":3,"type":"NQPArray"},{"count":2,"id":33960328,"spesh":2,"type":"BOOTHash"}],"inclusive_time":14,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":1,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":74,"id":48631616,"line":14673,"name":"infix:<X>","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":1,"id":44229096,"type":"Scalar"},{"count":1,"id":44228976,"type":"Array"},{"count":1,"id":33960304,"type":"BOOTArray"},{"count":1,"id":33960832,"type":"BOOTIntArray"},{"count":1,"id":44229072,"type":"IntLexRef"}],"inclusive_time":1158,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":12,"id":49791680,"line":13831,"name":"from-slurpy-onearg","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":1,"id":44229192,"type":"Capture"},{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":27,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":49689840,"line":12248,"name":"FLATTENABLE_LIST","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":49690144,"line":12249,"name":"FLATTENABLE_HASH","allocations":[{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":8,"id":49791376,"line":13817,"name":"from-slurpy","allocations":[{"count":1,"id":44228664,"type":"List"},{"count":1,"id":68411984,"type":"IterationBuffer"},{"count":1,"id":65481320,"type":"List::Reifier"}],"inclusive_time":13,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":4,"id":49800496,"line":13985,"name":"reification-target","inclusive_time":4,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]}]},{"exclusive_time":7,"id":49797760,"line":13932,"name":"elems","allocations":[{"count":1,"id":44229096,"type":"Scalar","jit":1}],"inclusive_time":38,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":0,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":10,"id":49845792,"line":13753,"name":"reify-until-lazy","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":2,"id":44229096,"type":"Scalar"}],"inclusive_time":26,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":48509712,"line":8704,"name":"prefix:<!>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":6,"id":49847008,"line":13760,"name":"","allocations":[{"count":4,"id":33960376,"type":"BOOTCode"}],"inclusive_time":15,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":7,"id":49847920,"line":13769,"name":"","allocations":[{"count":2,"id":44229096,"type":"Scalar"}],"inclusive_time":8,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":1,"id":49692880,"line":12283,"name":"push","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":2}]},{"exclusive_time":0,"id":49072720,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":2}]}]},{"exclusive_time":0,"id":49072720,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":3,"id":49849440,"line":13795,"name":"fully-reified","inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":48509712,"line":8704,"name":"prefix:<!>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]}]},{"exclusive_time":1,"id":48477792,"line":8446,"name":"infix:<->","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":52309760,"line":1563,"name":"","allocations":[{"count":1,"id":44229264,"type":"Code"},{"count":1,"id":33960376,"type":"BOOTCode"}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1},{"exclusive_time":16,"id":48631920,"line":14676,"name":"","inclusive_time":703,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":5,"id":49079712,"line":941,"name":"new","inclusive_time":123,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":21,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"},{"count":1,"id":33960520,"type":"CallCapture"}],"inclusive_time":86,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":5,"id":52294864,"line":920,"name":"is_bindable","allocations":[{"count":1,"id":33960376,"spesh":1,"type":"BOOTCode"}],"inclusive_time":65,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":3,"id":52295168,"line":926,"name":"","inclusive_time":59,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":16,"id":52292736,"line":606,"name":"bind","allocations":[{"count":1,"id":44228640,"spesh":1,"type":"Hash"}],"inclusive_time":55,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","deopt_one":1,"entries":1,"callees":[{"exclusive_time":29,"id":52290912,"line":168,"name":"bind_one_param","allocations":[{"count":12,"id":33960376,"type":"BOOTCode"},{"count":1,"id":33961456,"type":"str"},{"count":3,"id":44229096,"type":"Scalar"}],"inclusive_time":38,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":6,"callees":[{"exclusive_time":7,"id":52616112,"line":2635,"name":"type_check","allocations":[{"count":2,"id":33961360,"type":"NQPArrayIter"}],"inclusive_time":7,"file":"gen/moar/m-Metamodel.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52544976,"line":161,"name":"pretending_to_be","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":52611248,"line":2516,"name":"archetypes","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","entries":1},{"exclusive_time":0,"id":52538592,"line":88,"name":"generic","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":1,"id":52292432,"line":573,"name":"handle_optional","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":2}]}]}]}]},{"exclusive_time":9,"id":49746080,"line":13100,"name":"new","allocations":[{"count":3,"id":44229096,"type":"Scalar"},{"count":1,"id":65480504,"type":"Range"}],"inclusive_time":30,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":9,"id":48468064,"line":8187,"name":"infix:<==>","inclusive_time":13,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":2,"id":49478864,"line":8273,"name":"Bridge","allocations":[{"count":2,"id":44229000,"type":"Num"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":2},{"exclusive_time":0,"id":49496496,"line":8826,"name":"Bridge","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":2},{"exclusive_time":1,"id":48537680,"line":9200,"name":"infix:<==>","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":2}]},{"exclusive_time":6,"id":49747904,"line":13124,"name":"BUILD","allocations":[{"count":2,"id":44229096,"type":"Scalar"}],"inclusive_time":7,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49079408,"line":937,"name":"defined","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":2}]}]}]},{"exclusive_time":1,"id":52311584,"line":1621,"name":"","allocations":[{"count":1,"id":44229240,"spesh":1,"type":"Block"},{"count":1,"id":33960376,"spesh":1,"type":"BOOTCode"}],"inclusive_time":1,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1},{"exclusive_time":7,"id":49298592,"line":3773,"name":"map","inclusive_time":91,"spesh_entries":1,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":19,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":19,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":9,"id":49299808,"line":3779,"name":"map","allocations":[{"count":2,"id":44229096,"type":"Scalar"}],"inclusive_time":64,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":18,"id":49750640,"line":13159,"name":"iterator","allocations":[{"count":5,"id":33960376,"type":"BOOTCode"},{"count":3,"id":44228616,"type":"IntAttrRef"},{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":30,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":48510016,"line":8705,"name":"prefix:<!>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2},{"exclusive_time":1,"id":49752160,"line":13164,"name":"","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":48477184,"line":8439,"name":"infix:<+>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":1,"id":48477792,"line":8446,"name":"infix:<->","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":2,"id":49752768,"line":13169,"name":"new","allocations":[{"count":1,"id":67906560,"type":"<anon|349030928>"}],"inclusive_time":7,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":3,"id":49752464,"line":13168,"name":"BUILD","inclusive_time":4,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":48477792,"line":8446,"name":"infix:<->","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]}]}]},{"exclusive_time":16,"id":49303152,"line":3840,"name":"sequential-map","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":3,"id":44229096,"type":"Scalar"}],"inclusive_time":25,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":3,"id":49411680,"line":6408,"name":"count","inclusive_time":3,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":0,"id":50093552,"line":18706,"name":"count","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":49304064,"line":3847,"name":"","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":3,"id":49401344,"line":3827,"name":"new","allocations":[{"count":3,"id":44229096,"type":"Scalar"},{"count":1,"id":67908360,"type":"<anon|159066640>"}],"inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":1,"id":49700480,"line":12399,"name":"new","allocations":[{"count":1,"id":67909080,"type":"Seq","jit":1}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]}]},{"exclusive_time":5,"id":49701696,"line":12420,"name":"eager","inclusive_time":470,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":4,"id":49701088,"line":12407,"name":"iterator","inclusive_time":5,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":1,"id":52616112,"line":2635,"name":"type_check","inclusive_time":1,"file":"gen/moar/m-Metamodel.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":2,"id":49791072,"line":13804,"name":"from-iterator","allocations":[{"count":1,"id":44228664,"type":"List"},{"count":1,"id":68411984,"type":"IterationBuffer"},{"count":1,"id":65481320,"type":"List::Reifier"}],"inclusive_time":5,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":2,"id":49800496,"line":13985,"name":"reification-target","inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]},{"exclusive_time":4,"id":49821472,"line":14247,"name":"eager","inclusive_time":454,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":8,"id":49848224,"line":13778,"name":"reify-all","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":2,"id":44229096,"type":"Scalar"}],"inclusive_time":450,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":4,"id":49213168,"line":2463,"name":"push-all","allocations":[{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":440,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":2,"id":49212864,"line":2454,"name":"push-at-least","allocations":[{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":436,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":18,"id":49212256,"line":2436,"name":"push-exactly","allocations":[{"count":2,"id":44229096,"type":"Scalar"}],"inclusive_time":433,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":75,"id":49304368,"line":3853,"name":"pull-one","allocations":[{"count":3,"id":33960376,"type":"BOOTCode"},{"count":7,"id":44229096,"type":"Scalar"}],"inclusive_time":387,"file":"gen/moar/m-CORE.setting","entries":3,"callees":[{"exclusive_time":0,"id":48510016,"line":8705,"name":"prefix:<!>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":3,"entries":3},{"exclusive_time":2,"id":49417456,"line":6478,"name":"phasers","inclusive_time":3,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2,"callees":[{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]},{"exclusive_time":1,"id":48405440,"line":7763,"name":"prefix:<+>","inclusive_time":6,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":1,"id":49795632,"line":13911,"name":"Numeric","inclusive_time":5,"spesh_entries":1,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":3,"id":49797760,"line":13932,"name":"elems","inclusive_time":3,"spesh_entries":1,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]}]}]},{"exclusive_time":3,"id":49078192,"line":929,"name":"Bool","inclusive_time":8,"spesh_entries":1,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":4,"id":49794720,"line":13904,"name":"Bool","inclusive_time":4,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":0,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":48508496,"line":8699,"name":"prefix:<so>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":6,"entries":6},{"exclusive_time":3,"id":49753072,"line":13171,"name":"pull-one","allocations":[{"count":2,"id":44228616,"type":"IntAttrRef"}],"inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":3},{"exclusive_time":0,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":3},{"exclusive_time":42,"id":48632224,"line":14676,"name":"","allocations":[{"count":3,"id":44229096,"type":"Scalar"}],"inclusive_time":284,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":6,"id":48652592,"line":14916,"name":"postcircumfix:<[ ]>","inclusive_time":231,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":185,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":3,"id":33961312,"type":"NQPArray"},{"count":2,"id":33960328,"type":"BOOTHash"}],"inclusive_time":186,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":3,"id":48657456,"line":14967,"name":"postcircumfix:<[ ]>","inclusive_time":39,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":6,"id":49176992,"line":1964,"name":"AT-POS","inclusive_time":35,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":23,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":23,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":4,"id":49798976,"line":13946,"name":"AT-POS","inclusive_time":4,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]}]}]},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2},{"exclusive_time":0,"id":49805664,"line":14083,"name":"list","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":2},{"exclusive_time":1,"id":48657456,"line":14967,"name":"postcircumfix:<[ ]>","inclusive_time":4,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":3,"id":49798976,"line":13946,"name":"AT-POS","inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]},{"exclusive_time":3,"id":49857648,"line":15753,"name":"is-lazy","allocations":[{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":0,"id":49072720,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":3,"id":49416544,"line":6469,"name":"fire_phasers","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"}],"inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":48510016,"line":8705,"name":"prefix:<!>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]},{"exclusive_time":5,"id":39774400,"line":1558,"name":"infix:<=:=>","inclusive_time":25,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2,"callees":[{"exclusive_time":18,"id":52314624,"line":2048,"name":"","allocations":[{"count":4,"id":33960376,"type":"BOOTCode"},{"count":4,"id":33961312,"type":"NQPArray"},{"count":2,"id":33960328,"type":"BOOTHash"}],"inclusive_time":19,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":2,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":2,"entries":2}]},{"exclusive_time":0,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":2}]},{"exclusive_time":0,"id":48509712,"line":8704,"name":"prefix:<!>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":3,"entries":3},{"exclusive_time":1,"id":49692880,"line":12283,"name":"push","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":2},{"exclusive_time":0,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]},{"exclusive_time":0,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":49072720,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":52616112,"line":2635,"name":"type_check","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","jit_entries":1,"entries":1},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":49072720,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]}]},{"exclusive_time":2,"id":49859472,"line":15771,"name":"STORE","inclusive_time":45,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":10,"id":49860080,"line":15779,"name":"STORE-ITERABLE","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":1,"id":68411984,"type":"IterationBuffer"},{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":43,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":5,"id":49800800,"line":13990,"name":"iterator","allocations":[{"count":1,"id":33960376,"type":"BOOTCode","jit":1}],"inclusive_time":12,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":0,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":1,"id":49801104,"line":13992,"name":"","allocations":[{"count":1,"id":44229096,"type":"Scalar","jit":1}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":3,"id":49801712,"line":14004,"name":"new","allocations":[{"count":1,"id":67906128,"type":"<anon|352550624>","jit":1}],"inclusive_time":4,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":0,"id":49052656,"line":495,"name":"of","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":49801408,"line":13998,"name":"BUILD","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]},{"exclusive_time":1,"id":49882880,"line":15464,"name":"new","allocations":[{"count":1,"id":68412368,"type":"Array::ArrayReificationTarget"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":10,"id":49802624,"line":14020,"name":"push-until-lazy","allocations":[{"count":2,"id":44229096,"type":"Scalar"}],"inclusive_time":19,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":3,"id":49845792,"line":13753,"name":"reify-until-lazy","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"}],"inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]},{"exclusive_time":2,"id":49883184,"line":15471,"name":"push","allocations":[{"count":2,"id":44229096,"type":"Scalar"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":2},{"exclusive_time":0,"id":48509712,"line":8704,"name":"prefix:<!>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":2,"id":49849440,"line":13795,"name":"fully-reified","inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":48509712,"line":8704,"name":"prefix:<!>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]}]},{"exclusive_time":0,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2},{"exclusive_time":2,"id":48609728,"line":13594,"name":"infix:<..>","allocations":[{"count":2,"id":44229096,"type":"Scalar"}],"inclusive_time":89,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":4,"id":49079712,"line":941,"name":"new","inclusive_time":87,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":16,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"},{"count":1,"id":33960520,"type":"CallCapture"}],"inclusive_time":60,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":2,"id":52294864,"line":920,"name":"is_bindable","allocations":[{"count":1,"id":33960376,"spesh":1,"type":"BOOTCode"}],"inclusive_time":44,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":1,"id":52295168,"line":926,"name":"","inclusive_time":41,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":12,"id":52292736,"line":606,"name":"bind","allocations":[{"count":1,"id":44228640,"spesh":1,"type":"Hash"}],"inclusive_time":39,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","deopt_one":1,"entries":1,"callees":[{"exclusive_time":20,"id":52290912,"line":168,"name":"bind_one_param","allocations":[{"count":12,"id":33960376,"type":"BOOTCode"},{"count":1,"id":33961456,"type":"str"},{"count":3,"id":44229096,"type":"Scalar"}],"inclusive_time":26,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":6,"callees":[{"exclusive_time":4,"id":52616112,"line":2635,"name":"type_check","allocations":[{"count":2,"id":33961360,"type":"NQPArrayIter"}],"inclusive_time":4,"file":"gen/moar/m-Metamodel.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52544976,"line":161,"name":"pretending_to_be","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":52611248,"line":2516,"name":"archetypes","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","entries":1},{"exclusive_time":0,"id":52538592,"line":88,"name":"generic","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":52292432,"line":573,"name":"handle_optional","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":2}]}]}]}]},{"exclusive_time":6,"id":49746080,"line":13100,"name":"new","allocations":[{"count":3,"id":44229096,"type":"Scalar"},{"count":1,"id":65480504,"type":"Range"}],"inclusive_time":21,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":6,"id":48468064,"line":8187,"name":"infix:<==>","inclusive_time":9,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":1,"id":49478864,"line":8273,"name":"Bridge","allocations":[{"count":2,"id":44229000,"type":"Num"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":2},{"exclusive_time":0,"id":49496496,"line":8826,"name":"Bridge","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":2},{"exclusive_time":1,"id":48537680,"line":9200,"name":"infix:<==>","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":2}]},{"exclusive_time":4,"id":49747904,"line":13124,"name":"BUILD","allocations":[{"count":2,"id":44229096,"type":"Scalar"}],"inclusive_time":5,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49079408,"line":937,"name":"defined","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":2}]}]}]}]},{"exclusive_time":2,"id":52311584,"line":1621,"name":"","allocations":[{"count":3,"id":44229240,"spesh":3,"type":"Block"},{"count":3,"id":33960376,"spesh":3,"type":"BOOTCode"}],"inclusive_time":2,"spesh_entries":3,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":3},{"exclusive_time":5,"id":49298592,"line":3773,"name":"map","inclusive_time":57,"spesh_entries":1,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":15,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":15,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":4,"id":49299808,"line":3779,"name":"map","allocations":[{"count":2,"id":44229096,"type":"Scalar"}],"inclusive_time":36,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":9,"id":49750640,"line":13159,"name":"iterator","allocations":[{"count":5,"id":33960376,"type":"BOOTCode"},{"count":3,"id":44228616,"type":"IntAttrRef"},{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":17,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":48510016,"line":8705,"name":"prefix:<!>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2},{"exclusive_time":1,"id":49752160,"line":13164,"name":"","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":48477184,"line":8439,"name":"infix:<+>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":1,"id":48477792,"line":8446,"name":"infix:<->","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":1,"id":49752768,"line":13169,"name":"new","allocations":[{"count":1,"id":67906560,"type":"<anon|349030928>"}],"inclusive_time":4,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":2,"id":49752464,"line":13168,"name":"BUILD","inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":48477792,"line":8446,"name":"infix:<->","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]}]}]},{"exclusive_time":9,"id":49303152,"line":3840,"name":"sequential-map","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":3,"id":44229096,"type":"Scalar"}],"inclusive_time":14,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":49411680,"line":6408,"name":"count","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":0,"id":50093552,"line":18706,"name":"count","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":49304064,"line":3847,"name":"","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":2,"id":49401344,"line":3827,"name":"new","allocations":[{"count":3,"id":44229096,"type":"Scalar"},{"count":1,"id":67908360,"type":"<anon|159066640>"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":49700480,"line":12399,"name":"new","allocations":[{"count":1,"id":67909080,"type":"Seq","jit":1}],"inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]}]},{"exclusive_time":4,"id":49705648,"line":12474,"name":"sink","inclusive_time":97,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":3,"id":49701088,"line":12407,"name":"iterator","inclusive_time":3,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":52616112,"line":2635,"name":"type_check","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":35,"id":49306192,"line":3921,"name":"sink-all","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":6,"id":44229096,"type":"Scalar"}],"inclusive_time":89,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":48510016,"line":8705,"name":"prefix:<!>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":2,"id":49417456,"line":6478,"name":"phasers","inclusive_time":2,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2,"callees":[{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]},{"exclusive_time":0,"id":48405440,"line":7763,"name":"prefix:<+>","inclusive_time":5,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":1,"id":49795632,"line":13911,"name":"Numeric","inclusive_time":4,"spesh_entries":1,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":2,"id":49797760,"line":13932,"name":"elems","inclusive_time":3,"spesh_entries":1,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]}]}]},{"exclusive_time":2,"id":49078192,"line":929,"name":"Bool","inclusive_time":5,"spesh_entries":1,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":2,"id":49794720,"line":13904,"name":"Bool","inclusive_time":2,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":0,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":48508496,"line":8699,"name":"prefix:<so>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":3,"entries":3},{"exclusive_time":2,"id":49753072,"line":13171,"name":"pull-one","allocations":[{"count":1,"id":44228616,"type":"IntAttrRef"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":2},{"exclusive_time":6,"id":48633136,"line":14711,"name":"","allocations":[{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":35,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":3,"id":48657456,"line":14967,"name":"postcircumfix:<[ ]>","inclusive_time":5,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":2,"id":49863120,"line":15835,"name":"AT-POS","inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":5,"id":49153584,"line":1805,"name":"elems","inclusive_time":23,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":9,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":11,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":1,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]},{"exclusive_time":5,"id":49797760,"line":13932,"name":"elems","inclusive_time":6,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]}]}]},{"exclusive_time":0,"id":49072720,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":2,"id":49416544,"line":6469,"name":"fire_phasers","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"}],"inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":48510016,"line":8705,"name":"prefix:<!>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]},{"exclusive_time":0,"id":49072720,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":1,"id":48657456,"line":14967,"name":"postcircumfix:<[ ]>","inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":49863120,"line":15835,"name":"AT-POS","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":1,"id":49857648,"line":15753,"name":"is-lazy","allocations":[{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":5,"id":48602736,"line":12668,"name":"GATHER","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"}],"inclusive_time":13,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":48603040,"line":12669,"name":"","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":3,"id":48603648,"line":12676,"name":"new","allocations":[{"count":1,"id":67906656,"type":"<anon|340889968>"}],"inclusive_time":5,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":52311584,"line":1621,"name":"","allocations":[{"count":2,"id":44229240,"spesh":2,"type":"Block"},{"count":2,"id":33960376,"spesh":2,"type":"BOOTCode"}],"inclusive_time":1,"spesh_entries":2,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":2}]},{"exclusive_time":0,"id":49700480,"line":12399,"name":"new","allocations":[{"count":1,"id":67909080,"type":"Seq"}],"inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":1,"id":49291904,"line":3690,"name":"lazy-if","allocations":[{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":549,"id":52311584,"line":1621,"name":"","allocations":[{"count":591,"id":44229240,"spesh":591,"type":"Block"},{"count":591,"id":33960376,"spesh":591,"type":"BOOTCode"}],"inclusive_time":549,"spesh_entries":591,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":591},{"exclusive_time":5848,"id":49298592,"line":3773,"name":"map","inclusive_time":28466,"spesh_entries":591,"file":"gen/moar/m-CORE.setting","entries":591,"callees":[{"exclusive_time":76,"id":52321312,"line":3008,"name":"","allocations":[{"count":591,"id":44228664,"type":"List","jit":591}],"inclusive_time":76,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":591,"entries":591},{"exclusive_time":10258,"id":52314624,"line":2048,"name":"","allocations":[{"count":1182,"id":33960376,"type":"BOOTCode"},{"count":1182,"id":33961312,"type":"NQPArray"},{"count":591,"id":33960328,"type":"BOOTHash"}],"inclusive_time":10319,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":591,"callees":[{"exclusive_time":60,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":60,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":591,"entries":591}]},{"exclusive_time":3088,"id":49299808,"line":3779,"name":"map","allocations":[{"count":1182,"id":44229096,"spesh":1168,"type":"Scalar"}],"inclusive_time":12221,"spesh_entries":584,"file":"gen/moar/m-CORE.setting","entries":591,"callees":[{"exclusive_time":1897,"id":49701088,"line":12407,"name":"iterator","inclusive_time":2205,"file":"gen/moar/m-CORE.setting","jit_entries":591,"entries":591,"callees":[{"exclusive_time":50,"id":49806576,"line":14088,"name":"sink","inclusive_time":50,"file":"gen/moar/m-CORE.setting","jit_entries":591,"entries":591},{"exclusive_time":257,"id":52616112,"line":2635,"name":"type_check","inclusive_time":257,"file":"gen/moar/m-Metamodel.nqp","jit_entries":591,"entries":591}]},{"exclusive_time":4592,"id":49303152,"line":3840,"name":"sequential-map","allocations":[{"count":1182,"id":33960376,"type":"BOOTCode","jit":1180},{"count":1773,"id":44229096,"type":"Scalar","jit":1770}],"inclusive_time":6928,"file":"gen/moar/m-CORE.setting","jit_entries":590,"entries":591,"callees":[{"exclusive_time":850,"id":49411680,"line":6408,"name":"count","inclusive_time":939,"file":"gen/moar/m-CORE.setting","jit_entries":591,"entries":591,"callees":[{"exclusive_time":88,"id":50093552,"line":18706,"name":"count","inclusive_time":88,"file":"gen/moar/m-CORE.setting","jit_entries":591,"entries":591}]},{"exclusive_time":143,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":143,"file":"gen/moar/m-CORE.setting","inlined_entries":590,"jit_entries":591,"entries":591},{"exclusive_time":184,"id":49304064,"line":3847,"name":"","inclusive_time":184,"file":"gen/moar/m-CORE.setting","jit_entries":591,"entries":591},{"exclusive_time":855,"id":49401344,"line":3827,"name":"new","allocations":[{"count":1773,"id":44229096,"type":"Scalar","jit":1770},{"count":591,"id":67908360,"type":"<anon|159066640>","jit":590}],"inclusive_time":855,"file":"gen/moar/m-CORE.setting","jit_entries":590,"entries":591},{"exclusive_time":212,"id":49700480,"line":12399,"name":"new","allocations":[{"count":591,"id":67909080,"type":"Seq","jit":591}],"inclusive_time":212,"file":"gen/moar/m-CORE.setting","jit_entries":591,"entries":591}]}]}]},{"exclusive_time":2222,"id":49701696,"line":12420,"name":"eager","inclusive_time":112114071,"file":"gen/moar/m-CORE.setting","jit_entries":488,"entries":591,"callees":[{"exclusive_time":1356,"id":49701088,"line":12407,"name":"iterator","inclusive_time":1609,"file":"gen/moar/m-CORE.setting","jit_entries":591,"entries":591,"callees":[{"exclusive_time":52,"id":49806576,"line":14088,"name":"sink","inclusive_time":52,"file":"gen/moar/m-CORE.setting","jit_entries":591,"entries":591},{"exclusive_time":200,"id":52616112,"line":2635,"name":"type_check","inclusive_time":200,"file":"gen/moar/m-Metamodel.nqp","jit_entries":591,"entries":591}]},{"exclusive_time":1081,"id":49791072,"line":13804,"name":"from-iterator","allocations":[{"count":591,"id":44228664,"type":"List","jit":582},{"count":591,"id":68411984,"type":"IterationBuffer","jit":582},{"count":591,"id":65481320,"type":"List::Reifier","jit":582}],"inclusive_time":2482,"file":"gen/moar/m-CORE.setting","jit_entries":582,"entries":591,"callees":[{"exclusive_time":1273,"id":49800496,"line":13985,"name":"reification-target","inclusive_time":1400,"file":"gen/moar/m-CORE.setting","jit_entries":590,"entries":591,"callees":[{"exclusive_time":79,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":79,"file":"gen/moar/m-CORE.setting","jit_entries":591,"entries":591},{"exclusive_time":48,"id":49806576,"line":14088,"name":"sink","inclusive_time":48,"file":"gen/moar/m-CORE.setting","jit_entries":591,"entries":591}]}]},{"exclusive_time":2274,"id":49821472,"line":14247,"name":"eager","inclusive_time":112107757,"file":"gen/moar/m-CORE.setting","jit_entries":489,"entries":591,"callees":[{"exclusive_time":5243,"id":49848224,"line":13778,"name":"reify-all","allocations":[{"count":591,"id":33960376,"type":"BOOTCode","jit":464},{"count":1182,"id":44229096,"type":"Scalar","jit":928},{"count":591,"id":44229024,"type":"Int","jit":464}],"inclusive_time":112105432,"file":"gen/moar/m-CORE.setting","jit_entries":464,"entries":591,"callees":[{"exclusive_time":2175,"id":49213168,"line":2463,"name":"push-all","allocations":[{"count":591,"id":44229096,"type":"Scalar","jit":563}],"inclusive_time":112099644,"file":"gen/moar/m-CORE.setting","jit_entries":563,"entries":591,"callees":[{"exclusive_time":2672,"id":49212864,"line":2454,"name":"push-at-least","allocations":[{"count":591,"id":44229096,"spesh":565,"type":"Scalar"}],"inclusive_time":112097328,"spesh_entries":565,"file":"gen/moar/m-CORE.setting","entries":591,"callees":[{"exclusive_time":140523,"id":49212256,"line":2436,"name":"push-exactly","allocations":[{"count":1182,"id":44229096,"type":"Scalar","jit":1170}],"inclusive_time":112094656,"file":"gen/moar/m-CORE.setting","deopt_one":585,"jit_entries":585,"entries":591,"callees":[{"exclusive_time":203861,"id":49304368,"line":3853,"name":"pull-one","allocations":[{"count":12411,"id":33960376,"type":"BOOTCode","jit":12306},{"count":14775,"id":44229096,"type":"Scalar","jit":14650}],"inclusive_time":111766125,"file":"gen/moar/m-CORE.setting","deopt_one":12306,"jit_entries":12306,"entries":12411,"callees":[{"exclusive_time":3567,"id":48510016,"line":8705,"name":"prefix:<!>","inclusive_time":3567,"file":"gen/moar/m-CORE.setting","inlined_entries":11720,"jit_entries":12411,"entries":12411},{"exclusive_time":1326,"id":49417456,"line":6478,"name":"phasers","inclusive_time":1421,"file":"gen/moar/m-CORE.setting","jit_entries":1182,"entries":1182,"callees":[{"exclusive_time":95,"id":49806576,"line":14088,"name":"sink","inclusive_time":95,"file":"gen/moar/m-CORE.setting","jit_entries":1182,"entries":1182}]},{"exclusive_time":411,"id":48405440,"line":7763,"name":"prefix:<+>","inclusive_time":3001,"file":"gen/moar/m-CORE.setting","jit_entries":591,"entries":591,"callees":[{"exclusive_time":709,"id":49795632,"line":13911,"name":"Numeric","inclusive_time":2590,"spesh_entries":591,"file":"gen/moar/m-CORE.setting","entries":591,"callees":[{"exclusive_time":1705,"id":49797760,"line":13932,"name":"elems","inclusive_time":1881,"spesh_entries":591,"file":"gen/moar/m-CORE.setting","entries":591,"callees":[{"exclusive_time":77,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":77,"file":"gen/moar/m-CORE.setting","jit_entries":591,"entries":591},{"exclusive_time":97,"id":49806576,"line":14088,"name":"sink","inclusive_time":97,"file":"gen/moar/m-CORE.setting","jit_entries":1182,"entries":1182}]}]}]},{"exclusive_time":1411,"id":49078192,"line":929,"name":"Bool","inclusive_time":3180,"spesh_entries":591,"file":"gen/moar/m-CORE.setting","entries":591,"callees":[{"exclusive_time":93,"id":52321312,"line":3008,"name":"","allocations":[{"count":591,"id":44228664,"type":"List","jit":591}],"inclusive_time":93,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":591,"entries":591},{"exclusive_time":1534,"id":49794720,"line":13904,"name":"Bool","inclusive_time":1675,"file":"gen/moar/m-CORE.setting","jit_entries":591,"entries":591,"callees":[{"exclusive_time":58,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":58,"file":"gen/moar/m-CORE.setting","jit_entries":591,"entries":591},{"exclusive_time":44,"id":49806576,"line":14088,"name":"sink","inclusive_time":44,"file":"gen/moar/m-CORE.setting","jit_entries":591,"entries":591},{"exclusive_time":37,"id":48508496,"line":8699,"name":"prefix:<so>","inclusive_time":37,"file":"gen/moar/m-CORE.setting","jit_entries":591,"entries":591}]}]},{"exclusive_time":2264,"id":49806576,"line":14088,"name":"sink","inclusive_time":2264,"file":"gen/moar/m-CORE.setting","jit_entries":24822,"entries":24822},{"exclusive_time":113985,"id":48605472,"line":12707,"name":"pull-one","allocations":[{"count":13002,"id":44229096,"type":"Scalar","jit":12786},{"count":591,"id":68411984,"type":"IterationBuffer","jit":581},{"count":12411,"id":33960664,"type":"BOOTContinuation","jit":12205}],"inclusive_time":709517,"file":"gen/moar/m-CORE.setting","deopt_one":581,"jit_entries":12205,"entries":12411,"callees":[{"exclusive_time":59,"id":49072720,"line":856,"name":"sink","inclusive_time":59,"file":"gen/moar/m-CORE.setting","jit_entries":590,"entries":591},{"exclusive_time":6526,"id":48604560,"line":12698,"name":"","allocations":[{"count":591,"id":33960376,"type":"BOOTCode"},{"count":591,"id":44229096,"type":"Scalar"}],"inclusive_time":585562,"file":"gen/moar/m-CORE.setting","entries":12411,"callees":[{"exclusive_time":21145,"id":48636176,"line":14718,"name":"","allocations":[{"count":591,"id":33960376,"type":"BOOTCode"},{"count":1182,"id":44229096,"type":"Scalar"}],"inclusive_time":579036,"file":"gen/moar/m-CORE.setting","entries":12411,"callees":[{"exclusive_time":1114,"id":48657456,"line":14967,"name":"postcircumfix:<[ ]>","inclusive_time":2094,"file":"gen/moar/m-CORE.setting","deopt_one":1180,"jit_entries":1180,"entries":1182,"callees":[{"exclusive_time":980,"id":49863120,"line":15835,"name":"AT-POS","inclusive_time":980,"spesh_entries":1180,"file":"gen/moar/m-CORE.setting","entries":1182}]},{"exclusive_time":2417,"id":49800800,"line":13990,"name":"iterator","allocations":[{"count":591,"id":33960376,"type":"BOOTCode","jit":583}],"inclusive_time":7717,"file":"gen/moar/m-CORE.setting","jit_entries":583,"entries":591,"callees":[{"exclusive_time":79,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":79,"file":"gen/moar/m-CORE.setting","jit_entries":591,"entries":591},{"exclusive_time":48,"id":49806576,"line":14088,"name":"sink","inclusive_time":48,"file":"gen/moar/m-CORE.setting","jit_entries":591,"entries":591},{"exclusive_time":532,"id":49801104,"line":13992,"name":"","allocations":[{"count":591,"id":44229096,"type":"Scalar","jit":591}],"inclusive_time":532,"file":"gen/moar/m-CORE.setting","jit_entries":591,"entries":591},{"exclusive_time":1930,"id":49801712,"line":14004,"name":"new","allocations":[{"count":591,"id":67906128,"type":"<anon|352550624>","jit":591}],"inclusive_time":4639,"file":"gen/moar/m-CORE.setting","jit_entries":591,"entries":591,"callees":[{"exclusive_time":2243,"id":49877712,"line":16147,"name":"of","inclusive_time":2335,"file":"gen/moar/m-CORE.setting","deopt_one":589,"jit_entries":589,"entries":591,"callees":[{"exclusive_time":92,"id":52651072,"line":3777,"name":"of","inclusive_time":92,"file":"gen/moar/m-Metamodel.nqp","jit_entries":546,"entries":591}]},{"exclusive_time":372,"id":49801408,"line":13998,"name":"BUILD","inclusive_time":372,"file":"gen/moar/m-CORE.setting","jit_entries":591,"entries":591}]}]},{"exclusive_time":1674,"id":49802016,"line":14006,"name":"pull-one","inclusive_time":1674,"file":"gen/moar/m-CORE.setting","jit_entries":1772,"entries":1773},{"exclusive_time":8792,"id":39774400,"line":1558,"name":"infix:<=:=>","inclusive_time":27552,"file":"gen/moar/m-CORE.setting","jit_entries":1773,"entries":1773,"callees":[{"exclusive_time":17565,"id":52314624,"line":2048,"name":"","allocations":[{"count":3546,"id":33960376,"type":"BOOTCode"},{"count":3546,"id":33961312,"type":"NQPArray"},{"count":1773,"id":33960328,"type":"BOOTHash"}],"inclusive_time":18215,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1773,"callees":[{"exclusive_time":649,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":649,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1773,"entries":1773}]},{"exclusive_time":543,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":543,"file":"gen/moar/m-CORE.setting","entries":1773}]},{"exclusive_time":150319,"id":48636480,"line":14723,"name":"","allocations":[{"count":12411,"id":44229072,"type":"IntLexRef"},{"count":12411,"id":33960304,"type":"BOOTArray"}],"inclusive_time":518852,"file":"gen/moar/m-CORE.setting","entries":13593,"callees":[{"exclusive_time":14,"id":48652592,"line":14916,"name":"postcircumfix:<[ ]>","inclusive_time":101,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":46,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":3,"id":33961312,"type":"NQPArray"},{"count":2,"id":33960328,"type":"BOOTHash"}],"inclusive_time":47,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":2,"id":48654416,"line":14923,"name":"postcircumfix:<[ ]>","inclusive_time":40,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":24,"id":49176992,"line":1964,"name":"AT-POS","inclusive_time":37,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":9,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":10,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":1,"id":49862816,"line":15828,"name":"AT-POS","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]}]}]},{"exclusive_time":4,"id":39752816,"line":639,"name":"take","inclusive_time":52,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":9,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":10,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":5,"id":39753424,"line":641,"name":"take","allocations":[{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":37,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":4,"id":39750080,"line":596,"name":"THROW","allocations":[{"count":1,"id":33960568,"type":"BOOTException"}],"inclusive_time":31,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":2,"id":48605168,"line":-1,"name":"","allocations":[{"count":2,"id":44229024,"type":"Int"}],"inclusive_time":27,"file":"/usr/local/src/rakudo/install/share/perl6/runtime/CORE.setting.moarvm","entries":2,"callees":[{"exclusive_time":8,"id":48603952,"line":12680,"name":"","inclusive_time":25,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":5,"id":49170912,"line":1907,"name":"push","inclusive_time":15,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":8,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":9,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":49692880,"line":12283,"name":"push","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":1,"id":52311584,"line":1621,"name":"","allocations":[{"count":1,"id":44229240,"spesh":1,"type":"Block"},{"count":1,"id":33960376,"spesh":1,"type":"BOOTCode"}],"inclusive_time":1,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]}]}]}]}]},{"exclusive_time":1399,"id":49806576,"line":14088,"name":"sink","inclusive_time":1399,"file":"gen/moar/m-CORE.setting","jit_entries":11814,"entries":11820},{"exclusive_time":47681,"id":48654416,"line":14923,"name":"postcircumfix:<[ ]>","inclusive_time":65227,"spesh_entries":12254,"file":"gen/moar/m-CORE.setting","entries":12410,"callees":[{"exclusive_time":17545,"id":49862816,"line":15828,"name":"AT-POS","inclusive_time":17545,"file":"gen/moar/m-CORE.setting","jit_entries":12204,"entries":12410}]},{"exclusive_time":64841,"id":39753424,"line":641,"name":"take","allocations":[{"count":12410,"id":44229096,"type":"Scalar","jit":12287}],"inclusive_time":301751,"file":"gen/moar/m-CORE.setting","jit_entries":23988,"entries":24229,"callees":[{"exclusive_time":2375,"id":52321312,"line":3008,"name":"","allocations":[{"count":12410,"id":44228664,"type":"List","jit":12410}],"inclusive_time":2375,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":12410,"entries":12410},{"exclusive_time":43220,"id":39750080,"line":596,"name":"THROW","allocations":[{"count":12410,"id":33960568,"spesh":12291,"type":"BOOTException"}],"inclusive_time":234534,"spesh_entries":23996,"file":"gen/moar/m-CORE.setting","entries":24229,"callees":[{"exclusive_time":39027,"id":48605168,"line":-1,"name":"","allocations":[{"count":24820,"id":44229024,"spesh":24574,"type":"Int"}],"inclusive_time":191314,"spesh_entries":23988,"file":"/usr/local/src/rakudo/install/share/perl6/runtime/CORE.setting.moarvm","entries":24229,"callees":[{"exclusive_time":129702,"id":48603952,"line":12680,"name":"","inclusive_time":152287,"file":"gen/moar/m-CORE.setting","entries":24229,"callees":[{"exclusive_time":8690,"id":49692880,"line":12283,"name":"push","inclusive_time":8690,"file":"gen/moar/m-CORE.setting","entries":12410},{"exclusive_time":13893,"id":52311584,"line":1621,"name":"","allocations":[{"count":12410,"id":44229240,"spesh":12410,"type":"Block"},{"count":12410,"id":33960376,"spesh":12410,"type":"BOOTCode"}],"inclusive_time":13893,"spesh_entries":12410,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":12410}]}]}]}]}]}]}]},{"exclusive_time":8941,"id":48604256,"line":12692,"name":"","inclusive_time":8941,"file":"gen/moar/m-CORE.setting","jit_entries":12276,"entries":12411},{"exclusive_time":968,"id":49806576,"line":14088,"name":"sink","inclusive_time":968,"file":"gen/moar/m-CORE.setting","jit_entries":11820,"entries":11820}]},{"exclusive_time":43005,"id":39774400,"line":1558,"name":"infix:<=:=>","inclusive_time":177837,"file":"gen/moar/m-CORE.setting","jit_entries":12411,"entries":12411,"callees":[{"exclusive_time":126645,"id":52314624,"line":2048,"name":"","allocations":[{"count":24822,"id":33960376,"type":"BOOTCode"},{"count":24822,"id":33961312,"type":"NQPArray"},{"count":12411,"id":33960328,"type":"BOOTHash"}],"inclusive_time":130953,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":12411,"callees":[{"exclusive_time":4308,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":4308,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":12411,"entries":12411}]},{"exclusive_time":3878,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":3878,"file":"gen/moar/m-CORE.setting","entries":12411}]},{"exclusive_time":176086,"id":88722400,"line":62,"name":"","allocations":[{"count":591,"id":44229096,"type":"Scalar","jit":581}],"inclusive_time":110659521,"file":"hibbified-249.p6","deopt_one":1620,"jit_entries":12204,"entries":12411,"callees":[{"exclusive_time":49065,"id":52294560,"line":868,"name":"bind_sig","allocations":[{"count":12411,"id":33961312,"spesh":12154,"type":"NQPArray"},{"count":12411,"id":33960448,"spesh":12154,"type":"BOOTContext"}],"inclusive_time":719551,"spesh_entries":12154,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":12411,"callees":[{"exclusive_time":53404,"id":52292736,"line":606,"name":"bind","inclusive_time":670486,"spesh_entries":12407,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":12411,"callees":[{"exclusive_time":165618,"id":52290912,"line":168,"name":"bind_one_param","allocations":[{"count":24822,"id":33960376,"type":"BOOTCode"}],"inclusive_time":617081,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":12411,"callees":[{"exclusive_time":6884,"id":52616112,"line":2635,"name":"type_check","inclusive_time":6884,"file":"gen/moar/m-Metamodel.nqp","jit_entries":12411,"entries":12411},{"exclusive_time":101047,"id":49821776,"line":14252,"name":"Capture","allocations":[{"count":12411,"id":33960376,"type":"BOOTCode","jit":12155},{"count":12411,"id":44229192,"type":"Capture","jit":12155},{"count":12411,"id":68411984,"type":"IterationBuffer","jit":12155},{"count":12411,"id":33960328,"type":"BOOTHash","jit":12155}],"inclusive_time":241778,"file":"gen/moar/m-CORE.setting","jit_entries":12155,"entries":12411,"callees":[{"exclusive_time":18524,"id":49823600,"line":14286,"name":"is-lazy","allocations":[{"count":24822,"id":44229096,"type":"Scalar","jit":24310}],"inclusive_time":18524,"file":"gen/moar/m-CORE.setting","jit_entries":12155,"entries":12411},{"exclusive_time":1341,"id":49806576,"line":14088,"name":"sink","inclusive_time":1341,"file":"gen/moar/m-CORE.setting","jit_entries":12411,"entries":12411},{"exclusive_time":92086,"id":49822080,"line":14262,"name":"","allocations":[{"count":12411,"id":44229096,"type":"Scalar","jit":12308}],"inclusive_time":120864,"file":"gen/moar/m-CORE.setting","jit_entries":24617,"entries":24822,"callees":[{"exclusive_time":22069,"id":49692880,"line":12283,"name":"push","inclusive_time":22069,"file":"gen/moar/m-CORE.setting","entries":24822},{"exclusive_time":6708,"id":49072720,"line":856,"name":"sink","inclusive_time":6708,"file":"gen/moar/m-CORE.setting","entries":24822}]}]},{"exclusive_time":24057,"id":52293040,"line":911,"name":"make_vm_capture","allocations":[{"count":12411,"id":33960376,"type":"BOOTCode","jit":12255}],"inclusive_time":48980,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":12255,"entries":12411,"callees":[{"exclusive_time":24923,"id":52293344,"line":912,"name":"vm_capture","inclusive_time":24923,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":12411}]},{"exclusive_time":72958,"id":52292736,"line":606,"name":"bind","inclusive_time":153818,"spesh_entries":12407,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":12411,"callees":[{"exclusive_time":80860,"id":52290912,"line":168,"name":"bind_one_param","allocations":[{"count":49644,"id":33960376,"type":"BOOTCode"},{"count":24822,"id":44229096,"type":"Scalar"}],"inclusive_time":80860,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":24822}]}]}]}]},{"exclusive_time":7137,"id":48475360,"line":8414,"name":"postfix:<-->","allocations":[{"count":2955,"id":44229024,"type":"Int","jit":2915}],"inclusive_time":7137,"file":"gen/moar/m-CORE.setting","inlined_entries":12204,"jit_entries":12258,"entries":12411},{"exclusive_time":1173,"id":49806576,"line":14088,"name":"sink","inclusive_time":1173,"file":"gen/moar/m-CORE.setting","jit_entries":11820,"entries":11820},{"exclusive_time":323878,"id":100250976,"line":41,"name":"crossover","inclusive_time":78905557,"file":"hibbified-249.p6","jit_entries":11563,"entries":11820,"callees":[{"exclusive_time":587589,"id":52604256,"line":2222,"name":"accepts_type","allocations":[{"count":23640,"id":33961312,"type":"NQPArray","jit":23554},{"count":47280,"id":33961360,"type":"NQPArrayIter","jit":47108},{"count":47280,"id":33960256,"type":"BOOTNum","jit":47108}],"inclusive_time":985595,"file":"gen/moar/m-Metamodel.nqp","deopt_one":23554,"jit_entries":23554,"entries":23640,"callees":[{"exclusive_time":3479,"id":52624624,"line":3092,"name":"role_typecheck_list","inclusive_time":3479,"file":"gen/moar/m-Metamodel.nqp","jit_entries":23592,"entries":23640},{"exclusive_time":168315,"id":52600912,"line":2140,"name":"archetypes","allocations":[{"count":70920,"id":33961360,"type":"NQPArrayIter","jit":70800},{"count":47280,"id":33961384,"type":"NQPHashIter","jit":47200}],"inclusive_time":190499,"file":"gen/moar/m-Metamodel.nqp","jit_entries":70800,"entries":70920,"callees":[{"exclusive_time":5860,"id":52627664,"line":3168,"name":"archetypes","inclusive_time":5860,"file":"gen/moar/m-Metamodel.nqp","jit_entries":47236,"entries":47280},{"exclusive_time":12645,"id":52538592,"line":88,"name":"generic","inclusive_time":12645,"file":"gen/moar/m-Metamodel.nqp","inlined_entries":70800,"jit_entries":70920,"entries":70920},{"exclusive_time":3678,"id":52551968,"line":304,"name":"archetypes","inclusive_time":3678,"file":"gen/moar/m-Metamodel.nqp","jit_entries":23592,"entries":23640}]},{"exclusive_time":13454,"id":52538592,"line":88,"name":"generic","inclusive_time":13454,"file":"gen/moar/m-Metamodel.nqp","inlined_entries":23554,"jit_entries":70920,"entries":70920},{"exclusive_time":4359,"id":52602736,"line":2202,"name":"curried_role","inclusive_time":4359,"file":"gen/moar/m-Metamodel.nqp","jit_entries":47200,"entries":47280},{"exclusive_time":8563,"id":34678320,"line":596,"name":"push","inclusive_time":8563,"file":"gen/moar/stage2/NQPCORE.setting","jit_entries":23640,"entries":23640},{"exclusive_time":2193,"id":52603040,"line":2206,"name":"role_arguments","inclusive_time":2193,"file":"gen/moar/m-Metamodel.nqp","jit_entries":23585,"entries":23640},{"exclusive_time":153988,"id":52573248,"line":1073,"name":"find_method","allocations":[{"count":23640,"id":33960328,"type":"BOOTHash","jit":23560},{"count":23640,"id":33961360,"type":"NQPArrayIter","jit":23560}],"inclusive_time":171073,"file":"gen/moar/m-Metamodel.nqp","jit_entries":23560,"entries":23640,"callees":[{"exclusive_time":2951,"id":52631008,"line":3264,"name":"submethod_table","allocations":[{"count":23640,"id":33960328,"type":"BOOTHash","jit":23585}],"inclusive_time":2951,"file":"gen/moar/m-Metamodel.nqp","jit_entries":23585,"entries":23640},{"exclusive_time":6338,"id":52572336,"line":1041,"name":"mro","inclusive_time":6338,"file":"gen/moar/m-Metamodel.nqp","inlined_entries":23560,"jit_entries":23600,"entries":23640},{"exclusive_time":3821,"id":52630704,"line":3263,"name":"method_table","allocations":[{"count":23640,"id":33960328,"type":"BOOTHash","jit":23585}],"inclusive_time":3821,"file":"gen/moar/m-Metamodel.nqp","jit_entries":23585,"entries":23640},{"exclusive_time":3973,"id":52558352,"line":515,"name":"method_table","inclusive_time":3973,"file":"gen/moar/m-Metamodel.nqp","jit_entries":23640,"entries":23640}]},{"exclusive_time":4382,"id":49143552,"line":1749,"name":"ACCEPTS","inclusive_time":4382,"file":"gen/moar/m-CORE.setting","jit_entries":23586,"entries":23640}]},{"exclusive_time":50679,"id":48965712,"line":29779,"name":"METAOP_HYPER","allocations":[{"count":35460,"id":44228640,"type":"Hash","jit":35340}],"inclusive_time":79699,"file":"gen/moar/m-CORE.setting","jit_entries":35340,"entries":35460,"callees":[{"exclusive_time":29019,"id":52311584,"line":1621,"name":"","allocations":[{"count":35460,"id":44229240,"spesh":35460,"type":"Block"},{"count":35460,"id":33960376,"spesh":35460,"type":"BOOTCode"}],"inclusive_time":29019,"spesh_entries":35460,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":35460}]},{"exclusive_time":246851,"id":48966016,"line":29780,"name":"","allocations":[{"count":35460,"id":44229096,"type":"Scalar","jit":35356}],"inclusive_time":72432657,"file":"gen/moar/m-CORE.setting","jit_entries":35356,"entries":35460,"callees":[{"exclusive_time":7990,"id":49991712,"line":17376,"name":"FLATTENABLE_LIST","allocations":[{"count":35460,"id":33960304,"type":"BOOTArray","jit":35380}],"inclusive_time":7990,"file":"gen/moar/m-CORE.setting","jit_entries":35380,"entries":35460},{"exclusive_time":56151,"id":49992016,"line":17377,"name":"FLATTENABLE_HASH","inclusive_time":60243,"file":"gen/moar/m-CORE.setting","jit_entries":35343,"entries":35460,"callees":[{"exclusive_time":4091,"id":49072720,"line":856,"name":"sink","inclusive_time":4091,"file":"gen/moar/m-CORE.setting","jit_entries":35460,"entries":35460}]},{"exclusive_time":290301,"id":48971488,"line":29815,"name":"HYPER","inclusive_time":72117571,"file":"gen/moar/m-CORE.setting","entries":35460,"callees":[{"exclusive_time":659740,"id":52314624,"line":2048,"name":"","allocations":[{"count":70920,"id":33960376,"type":"BOOTCode"},{"count":70920,"id":33961312,"type":"NQPArray"},{"count":35460,"id":33960328,"type":"BOOTHash"},{"count":35460,"id":33960520,"type":"CallCapture"}],"inclusive_time":2228542,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":35460,"callees":[{"exclusive_time":99502,"id":52294864,"line":920,"name":"is_bindable","allocations":[{"count":35460,"id":33960376,"spesh":35460,"type":"BOOTCode"}],"inclusive_time":1568801,"spesh_entries":35460,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":35460,"callees":[{"exclusive_time":77684,"id":52295168,"line":926,"name":"","inclusive_time":1469298,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":35460,"callees":[{"exclusive_time":436373,"id":52292736,"line":606,"name":"bind","inclusive_time":1391614,"spesh_entries":35460,"file":"gen/moar/m-BOOTSTRAP.nqp","deopt_one":35460,"entries":35460,"callees":[{"exclusive_time":642683,"id":52290912,"line":168,"name":"bind_one_param","allocations":[{"count":354600,"id":33960376,"type":"BOOTCode"},{"count":106380,"id":44229096,"type":"Scalar"}],"inclusive_time":923771,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":177300,"callees":[{"exclusive_time":269855,"id":52616112,"line":2635,"name":"type_check","allocations":[{"count":212760,"id":33961360,"type":"NQPArrayIter"}],"inclusive_time":281087,"file":"gen/moar/m-Metamodel.nqp","entries":106380,"callees":[{"exclusive_time":11232,"id":52544976,"line":161,"name":"pretending_to_be","inclusive_time":11232,"file":"gen/moar/m-Metamodel.nqp","jit_entries":106380,"entries":106380}]}]},{"exclusive_time":31469,"id":52292432,"line":573,"name":"handle_optional","inclusive_time":31469,"spesh_entries":70875,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":70920}]}]}]}]},{"exclusive_time":1353658,"id":48976048,"line":29887,"name":"HYPER","allocations":[{"count":35460,"id":33960376,"type":"BOOTCode"},{"count":106380,"id":44229096,"type":"Scalar"}],"inclusive_time":69598727,"file":"gen/moar/m-CORE.setting","entries":35460,"callees":[{"exclusive_time":145987,"id":49933344,"line":16487,"name":"iterator","allocations":[{"count":47280,"id":33960376,"type":"BOOTCode","jit":47200}],"inclusive_time":313701,"file":"gen/moar/m-CORE.setting","jit_entries":47200,"entries":47280,"callees":[{"exclusive_time":58752,"id":49933648,"line":16488,"name":"","allocations":[{"count":47280,"id":44229096,"type":"Scalar","jit":47200}],"inclusive_time":58752,"file":"gen/moar/m-CORE.setting","jit_entries":47200,"entries":47280},{"exclusive_time":93748,"id":49934256,"line":16497,"name":"new","allocations":[{"count":47280,"id":67905768,"type":"<anon|414432224>","jit":47192}],"inclusive_time":108961,"file":"gen/moar/m-CORE.setting","jit_entries":47192,"entries":47280,"callees":[{"exclusive_time":15213,"id":49933952,"line":16492,"name":"BUILD","inclusive_time":15213,"file":"gen/moar/m-CORE.setting","jit_entries":47192,"entries":47280}]}]},{"exclusive_time":5149,"id":49215296,"line":2511,"name":"is-lazy","inclusive_time":5149,"file":"gen/moar/m-CORE.setting","jit_entries":47212,"entries":47280},{"exclusive_time":5826,"id":49806576,"line":14088,"name":"sink","inclusive_time":5826,"file":"gen/moar/m-CORE.setting","jit_entries":70920,"entries":70920},{"exclusive_time":170153,"id":49257248,"line":2585,"name":"new","allocations":[{"count":70920,"id":67908552,"type":"Rakudo::Internals::DwimIterator","jit":70792}],"inclusive_time":1118095,"file":"gen/moar/m-CORE.setting","jit_entries":70792,"entries":70920,"callees":[{"exclusive_time":110894,"id":49080016,"line":942,"name":"new","allocations":[{"count":70920,"id":44228640,"spesh":70894,"type":"Hash"}],"inclusive_time":947942,"spesh_entries":70894,"file":"gen/moar/m-CORE.setting","entries":70920,"callees":[{"exclusive_time":235315,"id":49081536,"line":956,"name":"bless","allocations":[{"count":70920,"id":44228640,"spesh":70872,"type":"Hash"},{"count":70920,"id":68411984,"spesh":70872,"type":"IterationBuffer"}],"inclusive_time":837048,"spesh_entries":70872,"file":"gen/moar/m-CORE.setting","entries":70920,"callees":[{"exclusive_time":295069,"id":49793200,"line":13860,"name":"from-slurpy-flat","allocations":[{"count":70920,"id":33960376,"spesh":70848,"type":"BOOTCode"},{"count":141840,"id":68411984,"spesh":141696,"type":"IterationBuffer"},{"count":70920,"id":44228976,"spesh":70848,"type":"Array"},{"count":70920,"id":65481320,"spesh":70848,"type":"List::Reifier"}],"inclusive_time":436170,"spesh_entries":70848,"file":"gen/moar/m-CORE.setting","entries":70920,"callees":[{"exclusive_time":10255,"id":52321312,"line":3008,"name":"","allocations":[{"count":70920,"id":44228664,"type":"List","jit":70920}],"inclusive_time":10255,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":70920,"entries":70920},{"exclusive_time":99752,"id":49861296,"line":15806,"name":"reification-target","inclusive_time":130844,"file":"gen/moar/m-CORE.setting","jit_entries":70914,"entries":70920,"callees":[{"exclusive_time":31092,"id":49882880,"line":15464,"name":"new","allocations":[{"count":70920,"id":68412368,"type":"Array::ArrayReificationTarget","jit":70920}],"inclusive_time":31092,"file":"gen/moar/m-CORE.setting","jit_entries":70920,"entries":70920}]}]},{"exclusive_time":153928,"id":49081840,"line":960,"name":"BUILDALL","allocations":[{"count":70920,"id":33960376,"type":"BOOTCode","jit":70847}],"inclusive_time":165562,"file":"gen/moar/m-CORE.setting","jit_entries":70847,"entries":70920,"callees":[{"exclusive_time":11633,"id":52582064,"line":1475,"name":"BUILDALLPLAN","inclusive_time":11633,"file":"gen/moar/m-Metamodel.nqp","jit_entries":70896,"entries":70920}]}]}]}]},{"exclusive_time":35513,"id":49080016,"line":942,"name":"new","allocations":[{"count":35460,"id":44228640,"spesh":35448,"type":"Hash"}],"inclusive_time":313073,"spesh_entries":35448,"file":"gen/moar/m-CORE.setting","entries":35460,"callees":[{"exclusive_time":81622,"id":49081536,"line":956,"name":"bless","allocations":[{"count":35460,"id":44228640,"spesh":35436,"type":"Hash"},{"count":35460,"id":68411984,"spesh":35436,"type":"IterationBuffer"}],"inclusive_time":277559,"spesh_entries":35436,"file":"gen/moar/m-CORE.setting","entries":35460,"callees":[{"exclusive_time":106707,"id":49793200,"line":13860,"name":"from-slurpy-flat","allocations":[{"count":35460,"id":33960376,"spesh":35425,"type":"BOOTCode"},{"count":70920,"id":68411984,"spesh":70850,"type":"IterationBuffer"},{"count":35460,"id":44228976,"spesh":35425,"type":"Array"},{"count":35460,"id":65481320,"spesh":35425,"type":"List::Reifier"}],"inclusive_time":156630,"spesh_entries":35425,"file":"gen/moar/m-CORE.setting","entries":35460,"callees":[{"exclusive_time":4091,"id":52321312,"line":3008,"name":"","allocations":[{"count":35460,"id":44228664,"type":"List","jit":35460}],"inclusive_time":4091,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":35460,"entries":35460},{"exclusive_time":37372,"id":49861296,"line":15806,"name":"reification-target","inclusive_time":45830,"file":"gen/moar/m-CORE.setting","jit_entries":35457,"entries":35460,"callees":[{"exclusive_time":8458,"id":49882880,"line":15464,"name":"new","allocations":[{"count":35460,"id":68412368,"type":"Array::ArrayReificationTarget","jit":35460}],"inclusive_time":8458,"file":"gen/moar/m-CORE.setting","jit_entries":35460,"entries":35460}]}]},{"exclusive_time":36299,"id":49081840,"line":960,"name":"BUILDALL","allocations":[{"count":35460,"id":33960376,"type":"BOOTCode","jit":35424}],"inclusive_time":39306,"file":"gen/moar/m-CORE.setting","jit_entries":35424,"entries":35460,"callees":[{"exclusive_time":3007,"id":52582064,"line":1475,"name":"BUILDALLPLAN","inclusive_time":3007,"file":"gen/moar/m-Metamodel.nqp","jit_entries":35448,"entries":35460}]}]}]},{"exclusive_time":7691484,"id":48976656,"line":29903,"name":"","allocations":[{"count":35460,"id":44229096,"type":"Scalar","jit":35451}],"inclusive_time":60962675,"file":"gen/moar/m-CORE.setting","deopt_one":342693,"jit_entries":496315,"entries":496440,"callees":[{"exclusive_time":1344845,"id":49257552,"line":2595,"name":"pull-one","allocations":[{"count":992880,"id":33960376,"type":"BOOTCode","jit":992880}],"inclusive_time":17643275,"file":"gen/moar/m-CORE.setting","jit_entries":992880,"entries":992880,"callees":[{"exclusive_time":5521406,"id":49258160,"line":2602,"name":"","allocations":[{"count":992880,"id":44229096,"type":"Scalar","jit":992880}],"inclusive_time":16298429,"file":"gen/moar/m-CORE.setting","deopt_one":330960,"jit_entries":992880,"entries":992880,"callees":[{"exclusive_time":480071,"id":49934560,"line":16499,"name":"pull-one","allocations":[{"count":614640,"id":44228928,"spesh":614640,"type":"IntPosRef"}],"inclusive_time":480071,"spesh_entries":661920,"file":"gen/moar/m-CORE.setting","entries":661920},{"exclusive_time":2238918,"id":39774400,"line":1558,"name":"infix:<=:=>","inclusive_time":8296201,"file":"gen/moar/m-CORE.setting","jit_entries":614640,"entries":614640,"callees":[{"exclusive_time":5661277,"id":52314624,"line":2048,"name":"","allocations":[{"count":1229280,"id":33960376,"type":"BOOTCode"},{"count":1229280,"id":33961312,"type":"NQPArray"},{"count":614640,"id":33960328,"type":"BOOTHash"}],"inclusive_time":5875350,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":614640,"callees":[{"exclusive_time":214073,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":214073,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":614640,"entries":614640}]},{"exclusive_time":181932,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":181932,"file":"gen/moar/m-CORE.setting","entries":614640}]},{"exclusive_time":166855,"id":48477184,"line":8439,"name":"infix:<+>","inclusive_time":166855,"file":"gen/moar/m-CORE.setting","inlined_entries":614640,"jit_entries":921960,"entries":921960},{"exclusive_time":589494,"id":49692880,"line":12283,"name":"push","inclusive_time":589494,"file":"gen/moar/m-CORE.setting","entries":921960},{"exclusive_time":76995,"id":49072720,"line":856,"name":"sink","inclusive_time":76995,"file":"gen/moar/m-CORE.setting","jit_entries":921960,"entries":921960},{"exclusive_time":93922,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":93922,"file":"gen/moar/m-CORE.setting","jit_entries":70920,"entries":378240},{"exclusive_time":10936,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":10936,"file":"gen/moar/m-CORE.setting","jit_entries":70920,"entries":70920},{"exclusive_time":526803,"id":49257552,"line":2595,"name":"pull-one","allocations":[{"count":70920,"id":33960376,"type":"BOOTCode","jit":70920},{"count":70920,"id":44229096,"type":"Scalar","jit":70920}],"inclusive_time":889982,"file":"gen/moar/m-CORE.setting","jit_entries":70920,"entries":70920,"callees":[{"exclusive_time":15848,"id":48477184,"line":8439,"name":"infix:<+>","inclusive_time":15848,"file":"gen/moar/m-CORE.setting","jit_entries":70920,"entries":70920},{"exclusive_time":21371,"id":48477792,"line":8446,"name":"infix:<->","inclusive_time":21371,"file":"gen/moar/m-CORE.setting","jit_entries":70837,"entries":70920},{"exclusive_time":303644,"id":48479616,"line":8471,"name":"infix:<%>","allocations":[{"count":70920,"id":44229024,"type":"Int","jit":70782}],"inclusive_time":309985,"file":"gen/moar/m-CORE.setting","jit_entries":70782,"entries":70920,"callees":[{"exclusive_time":6341,"id":49806576,"line":14088,"name":"sink","inclusive_time":6341,"file":"gen/moar/m-CORE.setting","jit_entries":70920,"entries":70920}]},{"exclusive_time":15973,"id":49693488,"line":12290,"name":"AT-POS","inclusive_time":15973,"file":"gen/moar/m-CORE.setting","jit_entries":70818,"entries":70920}]},{"exclusive_time":159954,"id":49802016,"line":14006,"name":"pull-one","inclusive_time":172564,"file":"gen/moar/m-CORE.setting","jit_entries":330953,"entries":330960,"callees":[{"exclusive_time":12609,"id":49802320,"line":14013,"name":"reify-and-pull-one","inclusive_time":12609,"file":"gen/moar/m-CORE.setting","jit_entries":23640,"entries":23640}]}]}]},{"exclusive_time":82079,"id":48510016,"line":8705,"name":"prefix:<!>","inclusive_time":82079,"file":"gen/moar/m-CORE.setting","inlined_entries":330878,"jit_entries":992880,"entries":992880},{"exclusive_time":110959,"id":49259376,"line":2620,"name":"ended","inclusive_time":110959,"file":"gen/moar/m-CORE.setting","jit_entries":1524780,"entries":1524780},{"exclusive_time":230066,"id":48454384,"line":7993,"name":"infix:<!=>","inclusive_time":387834,"spesh_entries":165439,"file":"gen/moar/m-CORE.setting","jit_entries":330998,"entries":496440,"callees":[{"exclusive_time":91961,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":91961,"spesh_entries":165439,"file":"gen/moar/m-CORE.setting","inlined_entries":496437,"jit_entries":331001,"entries":496440},{"exclusive_time":65806,"id":48510624,"line":8708,"name":"prefix:<not>","inclusive_time":65806,"spesh_entries":165439,"file":"gen/moar/m-CORE.setting","inlined_entries":496437,"jit_entries":330998,"entries":496440}]},{"exclusive_time":116979,"id":49806576,"line":14088,"name":"sink","inclusive_time":116979,"file":"gen/moar/m-CORE.setting","jit_entries":1418400,"entries":1418400},{"exclusive_time":10270,"id":48252224,"line":2178,"name":"postfix:<++>","inclusive_time":10270,"file":"gen/moar/m-CORE.setting","jit_entries":35370,"entries":35460},{"exclusive_time":65244,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":65244,"file":"gen/moar/m-CORE.setting","inlined_entries":141804,"jit_entries":460980,"entries":460980},{"exclusive_time":1810457,"id":48971488,"line":29815,"name":"HYPER","inclusive_time":34271790,"file":"gen/moar/m-CORE.setting","jit_entries":460977,"entries":460980,"callees":[{"exclusive_time":15854769,"id":52314624,"line":2048,"name":"","allocations":[{"count":921960,"id":33960376,"type":"BOOTCode"},{"count":921960,"id":33961312,"type":"NQPArray"},{"count":460980,"id":33960328,"type":"BOOTHash"},{"count":460980,"id":33960520,"type":"CallCapture"}],"inclusive_time":31264556,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":460980,"callees":[{"exclusive_time":895648,"id":52294864,"line":920,"name":"is_bindable","allocations":[{"count":460980,"id":33960376,"spesh":460980,"type":"BOOTCode"}],"inclusive_time":15409787,"spesh_entries":460980,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":460980,"callees":[{"exclusive_time":820700,"id":52295168,"line":926,"name":"","inclusive_time":14514139,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":460980,"callees":[{"exclusive_time":5560762,"id":52292736,"line":606,"name":"bind","inclusive_time":13693438,"spesh_entries":460980,"file":"gen/moar/m-BOOTSTRAP.nqp","deopt_one":460980,"entries":460980,"callees":[{"exclusive_time":6917322,"id":52290912,"line":168,"name":"bind_one_param","allocations":[{"count":4609800,"id":33960376,"type":"BOOTCode"},{"count":1382940,"id":44229096,"type":"Scalar"}],"inclusive_time":8132676,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":2304900,"callees":[{"exclusive_time":1167412,"id":52616112,"line":2635,"name":"type_check","allocations":[{"count":921960,"id":33961360,"type":"NQPArrayIter"}],"inclusive_time":1215354,"file":"gen/moar/m-Metamodel.nqp","entries":460980,"callees":[{"exclusive_time":47941,"id":52544976,"line":161,"name":"pretending_to_be","inclusive_time":47941,"file":"gen/moar/m-Metamodel.nqp","jit_entries":460980,"entries":460980}]}]}]}]}]}]},{"exclusive_time":1013404,"id":48971792,"line":29817,"name":"HYPER","allocations":[{"count":921960,"id":44229096,"type":"Scalar","jit":921928}],"inclusive_time":1196776,"file":"gen/moar/m-CORE.setting","jit_entries":460964,"entries":460980,"callees":[{"exclusive_time":72209,"id":48487520,"line":8571,"name":"infix:<+^>","inclusive_time":72209,"spesh_entries":153647,"file":"gen/moar/m-CORE.setting","entries":153660},{"exclusive_time":6,"id":48458336,"line":8013,"name":"infix:<+&>","inclusive_time":25,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":16,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"spesh":2,"type":"BOOTCode"},{"count":2,"id":33961312,"spesh":2,"type":"NQPArray"},{"count":1,"id":33960328,"spesh":1,"type":"BOOTHash"}],"inclusive_time":16,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":1,"id":48486608,"line":8561,"name":"infix:<+&>","allocations":[{"count":1,"id":44229024,"type":"Int"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":58013,"id":48486608,"line":8561,"name":"infix:<+&>","allocations":[{"count":153659,"id":44229024,"type":"Int","jit":153652}],"inclusive_time":58013,"file":"gen/moar/m-CORE.setting","jit_entries":153652,"entries":153659},{"exclusive_time":33,"id":48460768,"line":8023,"name":"infix:<+^>","inclusive_time":55,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":16,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"spesh":2,"type":"BOOTCode"},{"count":2,"id":33961312,"spesh":2,"type":"NQPArray"},{"count":1,"id":33960328,"spesh":1,"type":"BOOTHash"}],"inclusive_time":17,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":4,"id":48487216,"line":8568,"name":"infix:<+^>","allocations":[{"count":1,"id":44229024,"type":"Int"}],"inclusive_time":4,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":53068,"id":48487216,"line":8568,"name":"infix:<+^>","allocations":[{"count":153659,"id":44229024,"type":"Int","jit":153503}],"inclusive_time":53068,"file":"gen/moar/m-CORE.setting","jit_entries":153503,"entries":153659}]}]},{"exclusive_time":311235,"id":49692880,"line":12283,"name":"push","inclusive_time":311235,"file":"gen/moar/m-CORE.setting","entries":460980},{"exclusive_time":40623,"id":49072720,"line":856,"name":"sink","inclusive_time":40623,"file":"gen/moar/m-CORE.setting","jit_entries":460980,"entries":460980},{"exclusive_time":117665,"id":48474752,"line":8404,"name":"postfix:<++>","inclusive_time":117665,"file":"gen/moar/m-CORE.setting","inlined_entries":141804,"jit_entries":425496,"entries":425520},{"exclusive_time":62594,"id":39754944,"line":655,"name":"last","inclusive_time":113231,"file":"gen/moar/m-CORE.setting","jit_entries":35373,"entries":35460,"callees":[{"exclusive_time":50636,"id":39750384,"line":603,"name":"THROW-NIL","allocations":[{"count":35460,"id":33960568,"spesh":35373,"type":"BOOTException"}],"inclusive_time":50636,"spesh_entries":35373,"file":"gen/moar/m-CORE.setting","entries":35460}]}]},{"exclusive_time":320274,"id":49793808,"line":13890,"name":"new","allocations":[{"count":35460,"id":44228664,"spesh":35340,"type":"List"},{"count":35460,"id":68411984,"spesh":35340,"type":"IterationBuffer"}],"inclusive_time":5256797,"spesh_entries":35340,"file":"gen/moar/m-CORE.setting","entries":35460,"callees":[{"exclusive_time":185263,"id":49791376,"line":13817,"name":"from-slurpy","allocations":[{"count":35460,"id":44228976,"spesh":35430,"type":"Array"},{"count":35460,"id":68411984,"spesh":35430,"type":"IterationBuffer"},{"count":35460,"id":65481320,"spesh":35430,"type":"List::Reifier"}],"inclusive_time":282955,"spesh_entries":35430,"file":"gen/moar/m-CORE.setting","entries":35460,"callees":[{"exclusive_time":9258,"id":52321312,"line":3008,"name":"","allocations":[{"count":35460,"id":44228664,"type":"List","jit":35460}],"inclusive_time":9258,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":35460,"entries":35460},{"exclusive_time":64016,"id":49861296,"line":15806,"name":"reification-target","inclusive_time":88433,"file":"gen/moar/m-CORE.setting","jit_entries":35457,"entries":35460,"callees":[{"exclusive_time":24417,"id":49882880,"line":15464,"name":"new","allocations":[{"count":35460,"id":68412368,"type":"Array::ArrayReificationTarget","jit":35460}],"inclusive_time":24417,"file":"gen/moar/m-CORE.setting","jit_entries":35460,"entries":35460}]}]},{"exclusive_time":46734,"id":52311584,"line":1621,"name":"","allocations":[{"count":35460,"id":44229240,"spesh":35460,"type":"Block"},{"count":35460,"id":33960376,"spesh":35460,"type":"BOOTCode"}],"inclusive_time":46734,"spesh_entries":35460,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":35460},{"exclusive_time":307146,"id":49298592,"line":3773,"name":"map","inclusive_time":2367335,"spesh_entries":35460,"file":"gen/moar/m-CORE.setting","entries":35460,"callees":[{"exclusive_time":3997,"id":52321312,"line":3008,"name":"","allocations":[{"count":35460,"id":44228664,"type":"List","jit":35460}],"inclusive_time":3997,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":35460,"entries":35460},{"exclusive_time":647400,"id":52314624,"line":2048,"name":"","allocations":[{"count":70920,"id":33960376,"type":"BOOTCode"},{"count":70920,"id":33961312,"type":"NQPArray"},{"count":35460,"id":33960328,"type":"BOOTHash"}],"inclusive_time":654710,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":35460,"callees":[{"exclusive_time":7309,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":7309,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":35460,"entries":35460}]},{"exclusive_time":305413,"id":49299808,"line":3779,"name":"map","allocations":[{"count":70920,"id":44229096,"type":"Scalar"}],"inclusive_time":1401480,"file":"gen/moar/m-CORE.setting","entries":35460,"callees":[{"exclusive_time":229938,"id":49800800,"line":13990,"name":"iterator","allocations":[{"count":35460,"id":33960376,"type":"BOOTCode","jit":35460}],"inclusive_time":467093,"file":"gen/moar/m-CORE.setting","jit_entries":35460,"entries":35460,"callees":[{"exclusive_time":9797,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":9797,"file":"gen/moar/m-CORE.setting","jit_entries":35460,"entries":35460},{"exclusive_time":3267,"id":49806576,"line":14088,"name":"sink","inclusive_time":3267,"file":"gen/moar/m-CORE.setting","jit_entries":35460,"entries":35460},{"exclusive_time":39311,"id":49801104,"line":13992,"name":"","allocations":[{"count":35460,"id":44229096,"type":"Scalar","jit":35460}],"inclusive_time":39311,"file":"gen/moar/m-CORE.setting","jit_entries":35460,"entries":35460},{"exclusive_time":133591,"id":49801712,"line":14004,"name":"new","allocations":[{"count":35460,"id":67906128,"type":"<anon|352550624>","jit":35460}],"inclusive_time":184778,"file":"gen/moar/m-CORE.setting","jit_entries":35460,"entries":35460,"callees":[{"exclusive_time":28669,"id":49877712,"line":16147,"name":"of","inclusive_time":28669,"file":"gen/moar/m-CORE.setting","jit_entries":35393,"entries":35460},{"exclusive_time":22517,"id":49801408,"line":13998,"name":"BUILD","inclusive_time":22517,"file":"gen/moar/m-CORE.setting","jit_entries":35460,"entries":35460}]}]},{"exclusive_time":392435,"id":49303152,"line":3840,"name":"sequential-map","allocations":[{"count":70920,"id":33960376,"type":"BOOTCode","jit":70920},{"count":106380,"id":44229096,"type":"Scalar","jit":106380}],"inclusive_time":628973,"file":"gen/moar/m-CORE.setting","jit_entries":35460,"entries":35460,"callees":[{"exclusive_time":89928,"id":49411680,"line":6408,"name":"count","inclusive_time":95325,"file":"gen/moar/m-CORE.setting","jit_entries":35460,"entries":35460,"callees":[{"exclusive_time":5397,"id":50093552,"line":18706,"name":"count","inclusive_time":5397,"file":"gen/moar/m-CORE.setting","jit_entries":35460,"entries":35460}]},{"exclusive_time":12067,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":12067,"file":"gen/moar/m-CORE.setting","inlined_entries":35460,"jit_entries":35460,"entries":35460},{"exclusive_time":24322,"id":49304064,"line":3847,"name":"","inclusive_time":24322,"file":"gen/moar/m-CORE.setting","jit_entries":35460,"entries":35460},{"exclusive_time":77318,"id":49401344,"line":3827,"name":"new","allocations":[{"count":106380,"id":44229096,"type":"Scalar","jit":106380},{"count":35460,"id":67908360,"type":"<anon|159066640>","jit":35460}],"inclusive_time":77318,"file":"gen/moar/m-CORE.setting","jit_entries":35460,"entries":35460},{"exclusive_time":27504,"id":49700480,"line":12399,"name":"new","allocations":[{"count":35460,"id":67909080,"type":"Seq","jit":35460}],"inclusive_time":27504,"file":"gen/moar/m-CORE.setting","jit_entries":35460,"entries":35460}]}]}]},{"exclusive_time":241662,"id":49705648,"line":12474,"name":"sink","inclusive_time":2239498,"file":"gen/moar/m-CORE.setting","entries":35460,"callees":[{"exclusive_time":141396,"id":49701088,"line":12407,"name":"iterator","inclusive_time":176737,"file":"gen/moar/m-CORE.setting","jit_entries":35460,"entries":35460,"callees":[{"exclusive_time":3332,"id":49806576,"line":14088,"name":"sink","inclusive_time":3332,"file":"gen/moar/m-CORE.setting","jit_entries":35460,"entries":35460},{"exclusive_time":32008,"id":52616112,"line":2635,"name":"type_check","inclusive_time":32008,"file":"gen/moar/m-Metamodel.nqp","jit_entries":35460,"entries":35460}]},{"exclusive_time":732480,"id":49306192,"line":3921,"name":"sink-all","allocations":[{"count":35460,"id":33960376,"type":"BOOTCode","jit":35442},{"count":212760,"id":44229096,"type":"Scalar","jit":212652}],"inclusive_time":1811494,"file":"gen/moar/m-CORE.setting","deopt_one":35442,"jit_entries":35442,"entries":35460,"callees":[{"exclusive_time":6963,"id":48510016,"line":8705,"name":"prefix:<!>","inclusive_time":6963,"file":"gen/moar/m-CORE.setting","jit_entries":35460,"entries":35460},{"exclusive_time":98853,"id":49417456,"line":6478,"name":"phasers","inclusive_time":105020,"file":"gen/moar/m-CORE.setting","jit_entries":70920,"entries":70920,"callees":[{"exclusive_time":6167,"id":49806576,"line":14088,"name":"sink","inclusive_time":6167,"file":"gen/moar/m-CORE.setting","jit_entries":70920,"entries":70920}]},{"exclusive_time":51705,"id":48405440,"line":7763,"name":"prefix:<+>","inclusive_time":269329,"file":"gen/moar/m-CORE.setting","jit_entries":35460,"entries":35460,"callees":[{"exclusive_time":58875,"id":49795632,"line":13911,"name":"Numeric","inclusive_time":217624,"spesh_entries":35460,"file":"gen/moar/m-CORE.setting","entries":35460,"callees":[{"exclusive_time":143604,"id":49797760,"line":13932,"name":"elems","inclusive_time":158748,"spesh_entries":35460,"file":"gen/moar/m-CORE.setting","entries":35460,"callees":[{"exclusive_time":9288,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":9288,"file":"gen/moar/m-CORE.setting","jit_entries":35460,"entries":35460},{"exclusive_time":5856,"id":49806576,"line":14088,"name":"sink","inclusive_time":5856,"file":"gen/moar/m-CORE.setting","jit_entries":70920,"entries":70920}]}]}]},{"exclusive_time":110711,"id":49078192,"line":929,"name":"Bool","inclusive_time":268059,"spesh_entries":35460,"file":"gen/moar/m-CORE.setting","entries":35460,"callees":[{"exclusive_time":5227,"id":52321312,"line":3008,"name":"","allocations":[{"count":35460,"id":44228664,"type":"List","jit":35460}],"inclusive_time":5227,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":35460,"entries":35460},{"exclusive_time":142474,"id":49794720,"line":13904,"name":"Bool","inclusive_time":152120,"file":"gen/moar/m-CORE.setting","jit_entries":35460,"entries":35460,"callees":[{"exclusive_time":4351,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":4351,"file":"gen/moar/m-CORE.setting","jit_entries":35460,"entries":35460},{"exclusive_time":2622,"id":49806576,"line":14088,"name":"sink","inclusive_time":2622,"file":"gen/moar/m-CORE.setting","jit_entries":35460,"entries":35460},{"exclusive_time":2671,"id":48508496,"line":8699,"name":"prefix:<so>","inclusive_time":2671,"file":"gen/moar/m-CORE.setting","jit_entries":35460,"entries":35460}]}]},{"exclusive_time":5432,"id":49806576,"line":14088,"name":"sink","inclusive_time":5432,"file":"gen/moar/m-CORE.setting","jit_entries":70920,"entries":70920},{"exclusive_time":58657,"id":49802016,"line":14006,"name":"pull-one","inclusive_time":409044,"file":"gen/moar/m-CORE.setting","jit_entries":35460,"entries":35460,"callees":[{"exclusive_time":213906,"id":49802320,"line":14013,"name":"reify-and-pull-one","allocations":[{"count":35460,"id":44229072,"type":"IntLexRef","jit":35460}],"inclusive_time":350387,"file":"gen/moar/m-CORE.setting","jit_entries":35460,"entries":35460,"callees":[{"exclusive_time":126478,"id":49843664,"line":13724,"name":"reify-at-least","allocations":[{"count":35460,"id":33960376,"type":"BOOTCode","jit":35460},{"count":35460,"id":44229096,"type":"Scalar","jit":35460}],"inclusive_time":129487,"file":"gen/moar/m-CORE.setting","jit_entries":35460,"entries":35460,"callees":[{"exclusive_time":3008,"id":49806576,"line":14088,"name":"sink","inclusive_time":3008,"file":"gen/moar/m-CORE.setting","jit_entries":35460,"entries":35460}]},{"exclusive_time":6993,"id":48483568,"line":8526,"name":"infix:«<»","inclusive_time":6993,"file":"gen/moar/m-CORE.setting","jit_entries":35460,"entries":35460}]}]},{"exclusive_time":15163,"id":49072720,"line":856,"name":"sink","inclusive_time":15163,"file":"gen/moar/m-CORE.setting","entries":35460}]},{"exclusive_time":9603,"id":49072720,"line":856,"name":"sink","inclusive_time":9603,"file":"gen/moar/m-CORE.setting","entries":35460}]}]},{"exclusive_time":111904,"id":49800800,"line":13990,"name":"iterator","allocations":[{"count":23640,"id":33960376,"type":"BOOTCode","jit":23640}],"inclusive_time":247720,"file":"gen/moar/m-CORE.setting","jit_entries":23640,"entries":23640,"callees":[{"exclusive_time":3686,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":3686,"file":"gen/moar/m-CORE.setting","jit_entries":23640,"entries":23640},{"exclusive_time":2182,"id":49806576,"line":14088,"name":"sink","inclusive_time":2182,"file":"gen/moar/m-CORE.setting","jit_entries":23640,"entries":23640},{"exclusive_time":15935,"id":49801104,"line":13992,"name":"","allocations":[{"count":23640,"id":44229096,"type":"Scalar","jit":23640}],"inclusive_time":15935,"file":"gen/moar/m-CORE.setting","jit_entries":23640,"entries":23640},{"exclusive_time":86094,"id":49801712,"line":14004,"name":"new","allocations":[{"count":23640,"id":67906128,"type":"<anon|352550624>","jit":23640}],"inclusive_time":114010,"file":"gen/moar/m-CORE.setting","jit_entries":23640,"entries":23640,"callees":[{"exclusive_time":3973,"id":49052656,"line":495,"name":"of","inclusive_time":3973,"file":"gen/moar/m-CORE.setting","jit_entries":23640,"entries":23640},{"exclusive_time":23943,"id":49801408,"line":13998,"name":"BUILD","allocations":[{"count":23640,"id":44229096,"type":"Scalar","jit":23640}],"inclusive_time":23943,"file":"gen/moar/m-CORE.setting","jit_entries":23640,"entries":23640}]}]},{"exclusive_time":22029,"id":49803232,"line":14034,"name":"is-lazy","inclusive_time":22029,"file":"gen/moar/m-CORE.setting","jit_entries":23436,"entries":23640}]}]}]},{"exclusive_time":3350,"id":49916320,"line":16988,"name":"elems","inclusive_time":3350,"file":"gen/moar/m-CORE.setting","inlined_entries":11563,"jit_entries":11747,"entries":11820},{"exclusive_time":83604,"id":90023072,"line":5,"name":"random-bytes","inclusive_time":3791381,"spesh_entries":11563,"file":"hibbified-249.p6","jit_entries":60,"entries":11820,"callees":[{"exclusive_time":76453,"id":49775872,"line":13419,"name":"roll","allocations":[{"count":11820,"id":33960376,"type":"BOOTCode","jit":11573},{"count":11820,"id":44229096,"type":"Scalar","jit":11573}],"inclusive_time":515360,"file":"gen/moar/m-CORE.setting","jit_entries":11573,"entries":11820,"callees":[{"exclusive_time":128599,"id":49750336,"line":13153,"name":"elems","allocations":[{"count":11820,"id":44228640,"type":"Hash","jit":11573},{"count":35460,"id":44228616,"type":"IntAttrRef","jit":34719}],"inclusive_time":206448,"file":"gen/moar/m-CORE.setting","jit_entries":11573,"entries":11820,"callees":[{"exclusive_time":16106,"id":48477792,"line":8446,"name":"infix:<->","allocations":[{"count":35460,"id":44229024,"type":"Int","jit":35398}],"inclusive_time":16106,"file":"gen/moar/m-CORE.setting","inlined_entries":11573,"jit_entries":35398,"entries":35460},{"exclusive_time":4435,"id":48477184,"line":8439,"name":"infix:<+>","allocations":[{"count":11820,"id":44229024,"type":"Int","jit":11820}],"inclusive_time":4435,"file":"gen/moar/m-CORE.setting","inlined_entries":11573,"jit_entries":11820,"entries":11820},{"exclusive_time":33580,"id":48272288,"line":5211,"name":"infix:<max>","inclusive_time":57307,"spesh_entries":11573,"file":"gen/moar/m-CORE.setting","jit_entries":149,"entries":11820,"callees":[{"exclusive_time":17180,"id":48525520,"line":8789,"name":"infix:<cmp>","inclusive_time":17180,"spesh_entries":11722,"file":"gen/moar/m-CORE.setting","jit_entries":60,"entries":11820},{"exclusive_time":6546,"id":48484784,"line":8540,"name":"infix:«>»","inclusive_time":6546,"spesh_entries":11573,"file":"gen/moar/m-CORE.setting","inlined_entries":11722,"jit_entries":218,"entries":11820}]}]},{"exclusive_time":123791,"id":49776480,"line":13420,"name":"","allocations":[{"count":11820,"id":33960376,"type":"BOOTCode","jit":11573},{"count":23640,"id":44229096,"type":"Scalar","jit":23146},{"count":23640,"id":44228616,"type":"IntAttrRef","jit":23146}],"inclusive_time":232458,"file":"gen/moar/m-CORE.setting","jit_entries":11573,"entries":11820,"callees":[{"exclusive_time":17596,"id":49776784,"line":13422,"name":"","inclusive_time":17596,"file":"gen/moar/m-CORE.setting","jit_entries":11673,"entries":11820},{"exclusive_time":3621,"id":48477184,"line":8439,"name":"infix:<+>","inclusive_time":3621,"file":"gen/moar/m-CORE.setting","jit_entries":11820,"entries":11820},{"exclusive_time":23303,"id":48272288,"line":5211,"name":"infix:<max>","inclusive_time":33207,"spesh_entries":11573,"file":"gen/moar/m-CORE.setting","jit_entries":150,"entries":11820,"callees":[{"exclusive_time":7880,"id":48525520,"line":8789,"name":"infix:<cmp>","inclusive_time":7880,"spesh_entries":11723,"file":"gen/moar/m-CORE.setting","jit_entries":60,"entries":11820},{"exclusive_time":2023,"id":48484784,"line":8540,"name":"infix:«>»","inclusive_time":2023,"spesh_entries":11573,"file":"gen/moar/m-CORE.setting","inlined_entries":11723,"jit_entries":218,"entries":11820}]},{"exclusive_time":32665,"id":49777392,"line":13432,"name":"new","allocations":[{"count":11820,"id":67906272,"type":"<anon|348661744>","jit":11623}],"inclusive_time":37926,"file":"gen/moar/m-CORE.setting","jit_entries":11623,"entries":11820,"callees":[{"exclusive_time":5261,"id":49777088,"line":13426,"name":"BUILD","inclusive_time":5261,"file":"gen/moar/m-CORE.setting","jit_entries":11623,"entries":11820}]},{"exclusive_time":16314,"id":49700480,"line":12399,"name":"new","allocations":[{"count":11820,"id":67909080,"type":"Seq"}],"inclusive_time":16314,"file":"gen/moar/m-CORE.setting","entries":11820}]}]},{"exclusive_time":92975,"id":49079712,"line":941,"name":"new","inclusive_time":3192417,"spesh_entries":11791,"file":"gen/moar/m-CORE.setting","entries":11820,"callees":[{"exclusive_time":1873,"id":52321312,"line":3008,"name":"","allocations":[{"count":11820,"id":44228664,"type":"List","jit":11820}],"inclusive_time":1873,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":11820,"entries":11820},{"exclusive_time":183656,"id":52314624,"line":2048,"name":"","allocations":[{"count":23640,"id":33960376,"type":"BOOTCode"},{"count":23640,"id":33961312,"type":"NQPArray"},{"count":11820,"id":33960328,"type":"BOOTHash"},{"count":11820,"id":33960520,"type":"CallCapture"}],"inclusive_time":769312,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":11820,"callees":[{"exclusive_time":36618,"id":52294864,"line":920,"name":"is_bindable","allocations":[{"count":11820,"id":33960376,"spesh":11820,"type":"BOOTCode"}],"inclusive_time":585656,"spesh_entries":11820,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":11820,"callees":[{"exclusive_time":28138,"id":52295168,"line":926,"name":"","inclusive_time":549037,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":11820,"callees":[{"exclusive_time":136677,"id":52292736,"line":606,"name":"bind","allocations":[{"count":11820,"id":44228640,"spesh":11820,"type":"Hash"}],"inclusive_time":520898,"spesh_entries":11820,"file":"gen/moar/m-BOOTSTRAP.nqp","deopt_one":11820,"entries":11820,"callees":[{"exclusive_time":209547,"id":52290912,"line":168,"name":"bind_one_param","allocations":[{"count":94560,"id":33960376,"type":"BOOTCode"},{"count":11820,"id":44229096,"type":"Scalar"}],"inclusive_time":377514,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":47280,"callees":[{"exclusive_time":10642,"id":52616112,"line":2635,"name":"type_check","inclusive_time":10642,"file":"gen/moar/m-Metamodel.nqp","jit_entries":11820,"entries":11820},{"exclusive_time":54960,"id":49698960,"line":12379,"name":"cache","allocations":[{"count":11820,"id":44229096,"type":"Scalar","jit":11728}],"inclusive_time":157324,"file":"gen/moar/m-CORE.setting","jit_entries":11728,"entries":11820,"callees":[{"exclusive_time":33352,"id":49701088,"line":12407,"name":"iterator","inclusive_time":38757,"file":"gen/moar/m-CORE.setting","jit_entries":11820,"entries":11820,"callees":[{"exclusive_time":1030,"id":49806576,"line":14088,"name":"sink","inclusive_time":1030,"file":"gen/moar/m-CORE.setting","jit_entries":11820,"entries":11820},{"exclusive_time":4373,"id":52616112,"line":2635,"name":"type_check","inclusive_time":4373,"file":"gen/moar/m-Metamodel.nqp","jit_entries":11820,"entries":11820}]},{"exclusive_time":33872,"id":49791072,"line":13804,"name":"from-iterator","allocations":[{"count":11820,"id":44228664,"type":"List","jit":11672},{"count":11820,"id":68411984,"type":"IterationBuffer","jit":11672},{"count":11820,"id":65481320,"type":"List::Reifier","jit":11672}],"inclusive_time":63606,"file":"gen/moar/m-CORE.setting","jit_entries":11672,"entries":11820,"callees":[{"exclusive_time":26908,"id":49800496,"line":13985,"name":"reification-target","inclusive_time":29734,"file":"gen/moar/m-CORE.setting","jit_entries":11800,"entries":11820,"callees":[{"exclusive_time":1860,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":1860,"file":"gen/moar/m-CORE.setting","jit_entries":11820,"entries":11820},{"exclusive_time":965,"id":49806576,"line":14088,"name":"sink","inclusive_time":965,"file":"gen/moar/m-CORE.setting","jit_entries":11820,"entries":11820}]}]}]}]},{"exclusive_time":6706,"id":52292432,"line":573,"name":"handle_optional","inclusive_time":6706,"spesh_entries":11812,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":11820}]}]}]}]},{"exclusive_time":82567,"id":49911760,"line":16936,"name":"new","allocations":[{"count":11820,"id":44229096,"type":"Scalar","jit":11790}],"inclusive_time":2328255,"file":"gen/moar/m-CORE.setting","jit_entries":11790,"entries":11820,"callees":[{"exclusive_time":4716,"id":49698960,"line":12379,"name":"cache","inclusive_time":4716,"file":"gen/moar/m-CORE.setting","jit_entries":11728,"entries":11820},{"exclusive_time":34359,"id":49912368,"line":16943,"name":"create","allocations":[{"count":11820,"id":44229096,"type":"Scalar","jit":11771},{"count":11820,"id":73528976,"type":"array[uint8]","jit":11771}],"inclusive_time":35402,"file":"gen/moar/m-CORE.setting","jit_entries":11771,"entries":11820,"callees":[{"exclusive_time":1042,"id":49072720,"line":856,"name":"sink","inclusive_time":1042,"file":"gen/moar/m-CORE.setting","jit_entries":11820,"entries":11820}]},{"exclusive_time":182319,"id":49927264,"line":16355,"name":"STORE","allocations":[{"count":11820,"id":44229096,"type":"Scalar","jit":11758},{"count":153660,"id":44229072,"type":"IntLexRef","jit":152854}],"inclusive_time":2205568,"file":"gen/moar/m-CORE.setting","jit_entries":11758,"entries":11820,"callees":[{"exclusive_time":106612,"id":49797760,"line":13932,"name":"elems","allocations":[{"count":11820,"id":44229096,"spesh":11758,"type":"Scalar","jit":62}],"inclusive_time":1698190,"spesh_entries":11758,"file":"gen/moar/m-CORE.setting","jit_entries":62,"entries":11820,"callees":[{"exclusive_time":1443,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":1443,"file":"gen/moar/m-CORE.setting","jit_entries":11820,"entries":11820},{"exclusive_time":1238,"id":49806576,"line":14088,"name":"sink","inclusive_time":1238,"file":"gen/moar/m-CORE.setting","jit_entries":11820,"entries":11820},{"exclusive_time":114863,"id":49845792,"line":13753,"name":"reify-until-lazy","allocations":[{"count":11820,"id":33960376,"type":"BOOTCode","jit":11711},{"count":23640,"id":44229096,"type":"Scalar","jit":23422}],"inclusive_time":1566950,"file":"gen/moar/m-CORE.setting","jit_entries":11711,"entries":11820,"callees":[{"exclusive_time":55582,"id":49213776,"line":2476,"name":"push-until-lazy","allocations":[{"count":11820,"id":44229096,"type":"Scalar","jit":11664}],"inclusive_time":1442911,"file":"gen/moar/m-CORE.setting","jit_entries":11664,"entries":11820,"callees":[{"exclusive_time":1202,"id":49215296,"line":2511,"name":"is-lazy","inclusive_time":1202,"file":"gen/moar/m-CORE.setting","jit_entries":11797,"entries":11820},{"exclusive_time":1071957,"id":49778000,"line":13438,"name":"push-all","allocations":[{"count":11820,"id":44229096,"spesh":11623,"type":"Scalar"},{"count":319140,"id":44228616,"spesh":313821,"type":"IntAttrRef"},{"count":153660,"id":44229024,"spesh":151099,"type":"Int"}],"inclusive_time":1386125,"spesh_entries":11623,"file":"gen/moar/m-CORE.setting","entries":11820,"callees":[{"exclusive_time":46855,"id":48475664,"line":8419,"name":"postfix:<-->","inclusive_time":46855,"file":"gen/moar/m-CORE.setting","jit_entries":165474,"entries":165480},{"exclusive_time":182559,"id":48477184,"line":8439,"name":"infix:<+>","allocations":[{"count":153660,"id":44229024,"type":"Int","jit":153660}],"inclusive_time":182559,"file":"gen/moar/m-CORE.setting","jit_entries":153660,"entries":153660},{"exclusive_time":84753,"id":49692880,"line":12283,"name":"push","inclusive_time":84753,"file":"gen/moar/m-CORE.setting","entries":153660}]}]},{"exclusive_time":2177,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":2177,"file":"gen/moar/m-CORE.setting","inlined_entries":11711,"jit_entries":11820,"entries":11820},{"exclusive_time":5670,"id":52616112,"line":2635,"name":"type_check","inclusive_time":5670,"file":"gen/moar/m-Metamodel.nqp","jit_entries":11820,"entries":11820},{"exclusive_time":1328,"id":49806576,"line":14088,"name":"sink","inclusive_time":1328,"file":"gen/moar/m-CORE.setting","jit_entries":11820,"entries":11820}]},{"exclusive_time":1279,"id":49072720,"line":856,"name":"sink","inclusive_time":1279,"file":"gen/moar/m-CORE.setting","jit_entries":11820,"entries":11820},{"exclusive_time":16172,"id":49849440,"line":13795,"name":"fully-reified","inclusive_time":20666,"file":"gen/moar/m-CORE.setting","jit_entries":11700,"entries":11820,"callees":[{"exclusive_time":4494,"id":48509712,"line":8704,"name":"prefix:<!>","inclusive_time":4494,"file":"gen/moar/m-CORE.setting","inlined_entries":23400,"jit_entries":23640,"entries":23640}]}]},{"exclusive_time":298545,"id":49799280,"line":13954,"name":"AT-POS","inclusive_time":325058,"spesh_entries":153635,"file":"gen/moar/m-CORE.setting","entries":153660,"callees":[{"exclusive_time":14355,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":14355,"file":"gen/moar/m-CORE.setting","jit_entries":153660,"entries":153660},{"exclusive_time":12157,"id":49806576,"line":14088,"name":"sink","inclusive_time":12157,"file":"gen/moar/m-CORE.setting","jit_entries":153660,"entries":153660}]}]}]}]}]},{"exclusive_time":77778,"id":49079712,"line":941,"name":"new","inclusive_time":1288994,"spesh_entries":11791,"file":"gen/moar/m-CORE.setting","entries":11820,"callees":[{"exclusive_time":1999,"id":52321312,"line":3008,"name":"","allocations":[{"count":11820,"id":44228664,"type":"List","jit":11820}],"inclusive_time":1999,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":11820,"entries":11820},{"exclusive_time":170929,"id":52314624,"line":2048,"name":"","allocations":[{"count":23640,"id":33960376,"type":"BOOTCode"},{"count":23640,"id":33961312,"type":"NQPArray"},{"count":11820,"id":33960328,"type":"BOOTHash"},{"count":11820,"id":33960520,"type":"CallCapture"}],"inclusive_time":555085,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":11820,"callees":[{"exclusive_time":31926,"id":52294864,"line":920,"name":"is_bindable","allocations":[{"count":11820,"id":33960376,"spesh":11820,"type":"BOOTCode"}],"inclusive_time":384155,"spesh_entries":11820,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":11820,"callees":[{"exclusive_time":28729,"id":52295168,"line":926,"name":"","inclusive_time":352228,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":11820,"callees":[{"exclusive_time":133011,"id":52292736,"line":606,"name":"bind","allocations":[{"count":11820,"id":44228640,"spesh":11820,"type":"Hash"}],"inclusive_time":323499,"spesh_entries":11820,"file":"gen/moar/m-BOOTSTRAP.nqp","deopt_one":11820,"entries":11820,"callees":[{"exclusive_time":173851,"id":52290912,"line":168,"name":"bind_one_param","allocations":[{"count":94560,"id":33960376,"type":"BOOTCode"},{"count":11820,"id":44229096,"type":"Scalar"}],"inclusive_time":184479,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":47280,"callees":[{"exclusive_time":10628,"id":52616112,"line":2635,"name":"type_check","inclusive_time":10628,"file":"gen/moar/m-Metamodel.nqp","jit_entries":11820,"entries":11820}]},{"exclusive_time":6008,"id":52292432,"line":573,"name":"handle_optional","inclusive_time":6008,"spesh_entries":11813,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":11820}]}]}]}]},{"exclusive_time":76352,"id":49911760,"line":16936,"name":"new","allocations":[{"count":11820,"id":44229096,"type":"Scalar","jit":11795}],"inclusive_time":654131,"file":"gen/moar/m-CORE.setting","jit_entries":11795,"entries":11820,"callees":[{"exclusive_time":38657,"id":49912368,"line":16943,"name":"create","allocations":[{"count":11820,"id":44229096,"type":"Scalar","jit":11771},{"count":11820,"id":73528976,"type":"array[uint8]","jit":11771}],"inclusive_time":39909,"file":"gen/moar/m-CORE.setting","jit_entries":11771,"entries":11820,"callees":[{"exclusive_time":1252,"id":49072720,"line":856,"name":"sink","inclusive_time":1252,"file":"gen/moar/m-CORE.setting","jit_entries":11820,"entries":11820}]},{"exclusive_time":174287,"id":49927264,"line":16355,"name":"STORE","allocations":[{"count":11820,"id":44229096,"type":"Scalar","jit":11759},{"count":153660,"id":44229072,"type":"IntLexRef","jit":152867}],"inclusive_time":537869,"file":"gen/moar/m-CORE.setting","jit_entries":11759,"entries":11820,"callees":[{"exclusive_time":44358,"id":49797760,"line":13932,"name":"elems","allocations":[{"count":11820,"id":44229096,"spesh":11759,"type":"Scalar","jit":61}],"inclusive_time":48596,"spesh_entries":11759,"file":"gen/moar/m-CORE.setting","jit_entries":61,"entries":11820,"callees":[{"exclusive_time":2145,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":2145,"file":"gen/moar/m-CORE.setting","jit_entries":11820,"entries":11820},{"exclusive_time":2092,"id":49806576,"line":14088,"name":"sink","inclusive_time":2092,"file":"gen/moar/m-CORE.setting","jit_entries":23640,"entries":23640}]},{"exclusive_time":288759,"id":49799280,"line":13954,"name":"AT-POS","inclusive_time":314985,"spesh_entries":153647,"file":"gen/moar/m-CORE.setting","entries":153660,"callees":[{"exclusive_time":14195,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":14195,"file":"gen/moar/m-CORE.setting","jit_entries":153660,"entries":153660},{"exclusive_time":12031,"id":49806576,"line":14088,"name":"sink","inclusive_time":12031,"file":"gen/moar/m-CORE.setting","jit_entries":153660,"entries":153660}]}]}]}]}]},{"exclusive_time":217385,"id":95405088,"line":47,"name":"mutate","allocations":[{"count":11820,"id":44229096,"type":"Scalar","jit":11555}],"inclusive_time":30847238,"file":"hibbified-249.p6","jit_entries":11555,"entries":11820,"callees":[{"exclusive_time":443834,"id":52604256,"line":2222,"name":"accepts_type","allocations":[{"count":11820,"id":33961312,"type":"NQPArray","jit":11777},{"count":23640,"id":33961360,"type":"NQPArrayIter","jit":23554},{"count":23640,"id":33960256,"type":"BOOTNum","jit":23554}],"inclusive_time":750500,"file":"gen/moar/m-Metamodel.nqp","deopt_one":11777,"jit_entries":11777,"entries":11820,"callees":[{"exclusive_time":2148,"id":52624624,"line":3092,"name":"role_typecheck_list","inclusive_time":2148,"file":"gen/moar/m-Metamodel.nqp","jit_entries":11797,"entries":11820},{"exclusive_time":132816,"id":52600912,"line":2140,"name":"archetypes","allocations":[{"count":35460,"id":33961360,"type":"NQPArrayIter","jit":35400},{"count":23640,"id":33961384,"type":"NQPHashIter","jit":23600}],"inclusive_time":147550,"file":"gen/moar/m-Metamodel.nqp","jit_entries":35400,"entries":35460,"callees":[{"exclusive_time":4081,"id":52627664,"line":3168,"name":"archetypes","inclusive_time":4081,"file":"gen/moar/m-Metamodel.nqp","jit_entries":23618,"entries":23640},{"exclusive_time":8123,"id":52538592,"line":88,"name":"generic","inclusive_time":8123,"file":"gen/moar/m-Metamodel.nqp","inlined_entries":35400,"jit_entries":35460,"entries":35460},{"exclusive_time":2528,"id":52551968,"line":304,"name":"archetypes","inclusive_time":2528,"file":"gen/moar/m-Metamodel.nqp","jit_entries":11796,"entries":11820}]},{"exclusive_time":9705,"id":52538592,"line":88,"name":"generic","inclusive_time":9705,"file":"gen/moar/m-Metamodel.nqp","inlined_entries":11777,"jit_entries":35460,"entries":35460},{"exclusive_time":2706,"id":52602736,"line":2202,"name":"curried_role","inclusive_time":2706,"file":"gen/moar/m-Metamodel.nqp","jit_entries":23600,"entries":23640},{"exclusive_time":4449,"id":34678320,"line":596,"name":"push","inclusive_time":4449,"file":"gen/moar/stage2/NQPCORE.setting","jit_entries":11820,"entries":11820},{"exclusive_time":1865,"id":52603040,"line":2206,"name":"role_arguments","inclusive_time":1865,"file":"gen/moar/m-Metamodel.nqp","jit_entries":11793,"entries":11820},{"exclusive_time":123328,"id":52573248,"line":1073,"name":"find_method","allocations":[{"count":11820,"id":33960328,"type":"BOOTHash","jit":11780},{"count":11820,"id":33961360,"type":"NQPArrayIter","jit":11780}],"inclusive_time":135895,"file":"gen/moar/m-Metamodel.nqp","jit_entries":11780,"entries":11820,"callees":[{"exclusive_time":2152,"id":52631008,"line":3264,"name":"submethod_table","allocations":[{"count":11820,"id":33960328,"type":"BOOTHash","jit":11793}],"inclusive_time":2152,"file":"gen/moar/m-Metamodel.nqp","jit_entries":11793,"entries":11820},{"exclusive_time":5302,"id":52572336,"line":1041,"name":"mro","inclusive_time":5302,"file":"gen/moar/m-Metamodel.nqp","inlined_entries":11780,"jit_entries":11800,"entries":11820},{"exclusive_time":2444,"id":52630704,"line":3263,"name":"method_table","allocations":[{"count":11820,"id":33960328,"type":"BOOTHash","jit":11793}],"inclusive_time":2444,"file":"gen/moar/m-Metamodel.nqp","jit_entries":11793,"entries":11820},{"exclusive_time":2668,"id":52558352,"line":515,"name":"method_table","inclusive_time":2668,"file":"gen/moar/m-Metamodel.nqp","jit_entries":11820,"entries":11820}]},{"exclusive_time":2344,"id":49143552,"line":1749,"name":"ACCEPTS","inclusive_time":2344,"file":"gen/moar/m-CORE.setting","jit_entries":11794,"entries":11820}]},{"exclusive_time":7273,"id":50099936,"line":18807,"name":"Num","allocations":[{"count":1800,"id":44229000,"type":"Num","jit":1617}],"inclusive_time":10147,"file":"gen/moar/m-CORE.setting","jit_entries":1617,"entries":1800,"callees":[{"exclusive_time":2874,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":2874,"file":"gen/moar/m-CORE.setting","inlined_entries":1617,"jit_entries":1800,"entries":1800}]},{"exclusive_time":33890,"id":48965712,"line":29779,"name":"METAOP_HYPER","allocations":[{"count":11820,"id":44228640,"type":"Hash","jit":11780}],"inclusive_time":49593,"file":"gen/moar/m-CORE.setting","jit_entries":11780,"entries":11820,"callees":[{"exclusive_time":15703,"id":52311584,"line":1621,"name":"","allocations":[{"count":11820,"id":44229240,"spesh":11820,"type":"Block"},{"count":11820,"id":33960376,"spesh":11820,"type":"BOOTCode"}],"inclusive_time":15703,"spesh_entries":11820,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":11820}]},{"exclusive_time":2722,"id":49916320,"line":16988,"name":"elems","inclusive_time":2722,"file":"gen/moar/m-CORE.setting","inlined_entries":11555,"jit_entries":11747,"entries":11820},{"exclusive_time":45,"id":85412224,"line":5,"name":"random-bytes","inclusive_time":539,"file":"hibbified-249.p6","entries":1,"callees":[{"exclusive_time":12,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":13,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":1,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]},{"exclusive_time":12,"id":83901776,"line":11,"name":"random-bytes","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":479,"file":"hibbified-249.p6","entries":1,"callees":[{"exclusive_time":1,"id":52311584,"line":1621,"name":"","allocations":[{"count":1,"id":44228712,"type":"Sub"},{"count":1,"id":33960376,"type":"BOOTCode"}],"inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1},{"exclusive_time":1,"id":52309760,"line":1563,"name":"","allocations":[{"count":1,"id":44229264,"type":"Code"},{"count":1,"id":33960376,"type":"BOOTCode"}],"inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1},{"exclusive_time":33,"id":48625232,"line":14616,"name":"infix:<xx>","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":2,"id":44229096,"type":"Scalar"},{"count":1,"id":33960304,"type":"BOOTArray"},{"count":1,"id":44228664,"type":"List"}],"inclusive_time":369,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":92,"id":94458736,"line":25,"name":"","inclusive_time":335,"file":"hibbified-249.p6","entries":13,"callees":[{"exclusive_time":187,"id":88583088,"line":12,"name":"random-byte","allocations":[{"count":104,"id":44229000,"type":"Num"},{"count":15,"id":44229024,"type":"Int"}],"inclusive_time":242,"file":"hibbified-249.p6","entries":13,"callees":[{"exclusive_time":48,"id":48538592,"line":9211,"name":"infix:«<»","inclusive_time":48,"file":"gen/moar/m-CORE.setting","entries":104},{"exclusive_time":7,"id":49806576,"line":14088,"name":"sink","inclusive_time":7,"file":"gen/moar/m-CORE.setting","jit_entries":102,"entries":102},{"exclusive_time":0,"id":49072720,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]}]},{"exclusive_time":1,"id":49072720,"line":856,"name":"sink","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":13,"entries":13}]},{"exclusive_time":4,"id":49079712,"line":941,"name":"new","inclusive_time":95,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":11,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"},{"count":1,"id":33960520,"type":"CallCapture"}],"inclusive_time":37,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":2,"id":52294864,"line":920,"name":"is_bindable","allocations":[{"count":1,"id":33960376,"spesh":1,"type":"BOOTCode"}],"inclusive_time":25,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":1,"id":52295168,"line":926,"name":"","inclusive_time":23,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":7,"id":52292736,"line":606,"name":"bind","allocations":[{"count":1,"id":44228640,"spesh":1,"type":"Hash"}],"inclusive_time":21,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","deopt_one":1,"entries":1,"callees":[{"exclusive_time":12,"id":52290912,"line":168,"name":"bind_one_param","allocations":[{"count":8,"id":33960376,"type":"BOOTCode"},{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":13,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":4,"callees":[{"exclusive_time":0,"id":52616112,"line":2635,"name":"type_check","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":52292432,"line":573,"name":"handle_optional","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]}]}]}]},{"exclusive_time":3,"id":49911760,"line":16936,"name":"new","allocations":[{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":53,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":2,"id":49912368,"line":16943,"name":"create","allocations":[{"count":1,"id":44229096,"type":"Scalar"},{"count":1,"id":73528976,"type":"array[uint8]"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49072720,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]},{"exclusive_time":16,"id":49927264,"line":16355,"name":"STORE","allocations":[{"count":1,"id":44229096,"type":"Scalar"},{"count":13,"id":44229072,"type":"IntLexRef"}],"inclusive_time":47,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":3,"id":49797760,"line":13932,"name":"elems","allocations":[{"count":1,"id":44229096,"type":"Scalar","jit":1}],"inclusive_time":3,"file":"gen/moar/m-CORE.setting","deopt_one":1,"jit_entries":1,"entries":1,"callees":[{"exclusive_time":0,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]},{"exclusive_time":25,"id":49799280,"line":13954,"name":"AT-POS","inclusive_time":27,"file":"gen/moar/m-CORE.setting","entries":13,"callees":[{"exclusive_time":1,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":13,"entries":13},{"exclusive_time":1,"id":49806576,"line":14088,"name":"sink","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":13,"entries":13}]}]}]}]}]}]},{"exclusive_time":81317,"id":48966016,"line":29780,"name":"","allocations":[{"count":11820,"id":44229096,"type":"Scalar","jit":11788}],"inclusive_time":25301745,"file":"gen/moar/m-CORE.setting","jit_entries":11788,"entries":11820,"callees":[{"exclusive_time":3178,"id":49991712,"line":17376,"name":"FLATTENABLE_LIST","allocations":[{"count":11820,"id":33960304,"type":"BOOTArray","jit":11794}],"inclusive_time":3178,"file":"gen/moar/m-CORE.setting","jit_entries":11794,"entries":11820},{"exclusive_time":17522,"id":49992016,"line":17377,"name":"FLATTENABLE_HASH","inclusive_time":18832,"file":"gen/moar/m-CORE.setting","jit_entries":11782,"entries":11820,"callees":[{"exclusive_time":1310,"id":49072720,"line":856,"name":"sink","inclusive_time":1310,"file":"gen/moar/m-CORE.setting","jit_entries":11820,"entries":11820}]},{"exclusive_time":89542,"id":48971488,"line":29815,"name":"HYPER","inclusive_time":25198416,"file":"gen/moar/m-CORE.setting","entries":11820,"callees":[{"exclusive_time":210655,"id":52314624,"line":2048,"name":"","allocations":[{"count":23640,"id":33960376,"type":"BOOTCode"},{"count":23640,"id":33961312,"type":"NQPArray"},{"count":11820,"id":33960328,"type":"BOOTHash"},{"count":11820,"id":33960520,"type":"CallCapture"}],"inclusive_time":730197,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":11820,"callees":[{"exclusive_time":34301,"id":52294864,"line":920,"name":"is_bindable","allocations":[{"count":11820,"id":33960376,"spesh":11820,"type":"BOOTCode"}],"inclusive_time":519541,"spesh_entries":11820,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":11820,"callees":[{"exclusive_time":26204,"id":52295168,"line":926,"name":"","inclusive_time":485240,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":11820,"callees":[{"exclusive_time":139511,"id":52292736,"line":606,"name":"bind","inclusive_time":459035,"spesh_entries":11820,"file":"gen/moar/m-BOOTSTRAP.nqp","deopt_one":11820,"entries":11820,"callees":[{"exclusive_time":216076,"id":52290912,"line":168,"name":"bind_one_param","allocations":[{"count":118200,"id":33960376,"type":"BOOTCode"},{"count":35460,"id":44229096,"type":"Scalar"}],"inclusive_time":309864,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":59100,"callees":[{"exclusive_time":89750,"id":52616112,"line":2635,"name":"type_check","allocations":[{"count":70920,"id":33961360,"type":"NQPArrayIter"}],"inclusive_time":93788,"file":"gen/moar/m-Metamodel.nqp","entries":35460,"callees":[{"exclusive_time":4037,"id":52544976,"line":161,"name":"pretending_to_be","inclusive_time":4037,"file":"gen/moar/m-Metamodel.nqp","jit_entries":35460,"entries":35460}]}]},{"exclusive_time":9659,"id":52292432,"line":573,"name":"handle_optional","inclusive_time":9659,"spesh_entries":23626,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":23640}]}]}]}]},{"exclusive_time":438990,"id":48976048,"line":29887,"name":"HYPER","allocations":[{"count":11820,"id":33960376,"type":"BOOTCode"},{"count":35460,"id":44229096,"type":"Scalar"}],"inclusive_time":24378676,"file":"gen/moar/m-CORE.setting","entries":11820,"callees":[{"exclusive_time":62057,"id":49933344,"line":16487,"name":"iterator","allocations":[{"count":23640,"id":33960376,"type":"BOOTCode","jit":23600}],"inclusive_time":134800,"file":"gen/moar/m-CORE.setting","jit_entries":23600,"entries":23640,"callees":[{"exclusive_time":25304,"id":49933648,"line":16488,"name":"","allocations":[{"count":23640,"id":44229096,"type":"Scalar","jit":23600}],"inclusive_time":25304,"file":"gen/moar/m-CORE.setting","jit_entries":23600,"entries":23640},{"exclusive_time":40982,"id":49934256,"line":16497,"name":"new","allocations":[{"count":23640,"id":67905768,"type":"<anon|414432224>","jit":23597}],"inclusive_time":47438,"file":"gen/moar/m-CORE.setting","jit_entries":23597,"entries":23640,"callees":[{"exclusive_time":6455,"id":49933952,"line":16492,"name":"BUILD","inclusive_time":6455,"file":"gen/moar/m-CORE.setting","jit_entries":23597,"entries":23640}]}]},{"exclusive_time":2587,"id":49215296,"line":2511,"name":"is-lazy","inclusive_time":2587,"file":"gen/moar/m-CORE.setting","jit_entries":23608,"entries":23640},{"exclusive_time":2288,"id":49806576,"line":14088,"name":"sink","inclusive_time":2288,"file":"gen/moar/m-CORE.setting","jit_entries":23640,"entries":23640},{"exclusive_time":51292,"id":49257248,"line":2585,"name":"new","allocations":[{"count":23640,"id":67908552,"type":"Rakudo::Internals::DwimIterator","jit":23600}],"inclusive_time":368985,"file":"gen/moar/m-CORE.setting","jit_entries":23600,"entries":23640,"callees":[{"exclusive_time":37672,"id":49080016,"line":942,"name":"new","allocations":[{"count":23640,"id":44228640,"spesh":23632,"type":"Hash"}],"inclusive_time":317693,"spesh_entries":23632,"file":"gen/moar/m-CORE.setting","entries":23640,"callees":[{"exclusive_time":78847,"id":49081536,"line":956,"name":"bless","allocations":[{"count":23640,"id":44228640,"spesh":23624,"type":"Hash"},{"count":23640,"id":68411984,"spesh":23624,"type":"IterationBuffer"}],"inclusive_time":280021,"spesh_entries":23624,"file":"gen/moar/m-CORE.setting","entries":23640,"callees":[{"exclusive_time":99883,"id":49793200,"line":13860,"name":"from-slurpy-flat","allocations":[{"count":23640,"id":33960376,"spesh":23618,"type":"BOOTCode"},{"count":47280,"id":68411984,"spesh":47236,"type":"IterationBuffer"},{"count":23640,"id":44228976,"spesh":23618,"type":"Array"},{"count":23640,"id":65481320,"spesh":23618,"type":"List::Reifier"}],"inclusive_time":146661,"spesh_entries":23618,"file":"gen/moar/m-CORE.setting","entries":23640,"callees":[{"exclusive_time":3457,"id":52321312,"line":3008,"name":"","allocations":[{"count":23640,"id":44228664,"type":"List","jit":23640}],"inclusive_time":3457,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":23640,"entries":23640},{"exclusive_time":33104,"id":49861296,"line":15806,"name":"reification-target","inclusive_time":43320,"file":"gen/moar/m-CORE.setting","jit_entries":23638,"entries":23640,"callees":[{"exclusive_time":10215,"id":49882880,"line":15464,"name":"new","allocations":[{"count":23640,"id":68412368,"type":"Array::ArrayReificationTarget","jit":23640}],"inclusive_time":10215,"file":"gen/moar/m-CORE.setting","jit_entries":23640,"entries":23640}]}]},{"exclusive_time":50862,"id":49081840,"line":960,"name":"BUILDALL","allocations":[{"count":23640,"id":33960376,"type":"BOOTCode","jit":23616}],"inclusive_time":54512,"file":"gen/moar/m-CORE.setting","jit_entries":23616,"entries":23640,"callees":[{"exclusive_time":3649,"id":52582064,"line":1475,"name":"BUILDALLPLAN","inclusive_time":3649,"file":"gen/moar/m-Metamodel.nqp","jit_entries":23634,"entries":23640}]}]}]}]},{"exclusive_time":11183,"id":49080016,"line":942,"name":"new","allocations":[{"count":11820,"id":44228640,"spesh":11816,"type":"Hash"}],"inclusive_time":105285,"spesh_entries":11816,"file":"gen/moar/m-CORE.setting","entries":11820,"callees":[{"exclusive_time":28503,"id":49081536,"line":956,"name":"bless","allocations":[{"count":11820,"id":44228640,"spesh":11813,"type":"Hash"},{"count":11820,"id":68411984,"spesh":11813,"type":"IterationBuffer"}],"inclusive_time":94102,"spesh_entries":11813,"file":"gen/moar/m-CORE.setting","entries":11820,"callees":[{"exclusive_time":36102,"id":49793200,"line":13860,"name":"from-slurpy-flat","allocations":[{"count":11820,"id":33960376,"spesh":11809,"type":"BOOTCode"},{"count":23640,"id":68411984,"spesh":23618,"type":"IterationBuffer"},{"count":11820,"id":44228976,"spesh":11809,"type":"Array"},{"count":11820,"id":65481320,"spesh":11809,"type":"List::Reifier"}],"inclusive_time":51889,"spesh_entries":11809,"file":"gen/moar/m-CORE.setting","entries":11820,"callees":[{"exclusive_time":1340,"id":52321312,"line":3008,"name":"","allocations":[{"count":11820,"id":44228664,"type":"List","jit":11820}],"inclusive_time":1340,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":11820,"entries":11820},{"exclusive_time":11630,"id":49861296,"line":15806,"name":"reification-target","inclusive_time":14446,"file":"gen/moar/m-CORE.setting","jit_entries":11819,"entries":11820,"callees":[{"exclusive_time":2816,"id":49882880,"line":15464,"name":"new","allocations":[{"count":11820,"id":68412368,"type":"Array::ArrayReificationTarget","jit":11820}],"inclusive_time":2816,"file":"gen/moar/m-CORE.setting","jit_entries":11820,"entries":11820}]}]},{"exclusive_time":12732,"id":49081840,"line":960,"name":"BUILDALL","allocations":[{"count":11820,"id":33960376,"type":"BOOTCode","jit":11808}],"inclusive_time":13709,"file":"gen/moar/m-CORE.setting","jit_entries":11808,"entries":11820,"callees":[{"exclusive_time":976,"id":52582064,"line":1475,"name":"BUILDALLPLAN","inclusive_time":976,"file":"gen/moar/m-Metamodel.nqp","jit_entries":11817,"entries":11820}]}]}]},{"exclusive_time":2965080,"id":48976656,"line":29903,"name":"","allocations":[{"count":11820,"id":44229096,"type":"Scalar","jit":11818}],"inclusive_time":21518074,"file":"gen/moar/m-CORE.setting","deopt_one":165452,"jit_entries":165452,"entries":165480,"callees":[{"exclusive_time":447007,"id":49257552,"line":2595,"name":"pull-one","allocations":[{"count":330960,"id":33960376,"type":"BOOTCode","jit":330960}],"inclusive_time":6770615,"file":"gen/moar/m-CORE.setting","jit_entries":330960,"entries":330960,"callees":[{"exclusive_time":1514589,"id":49258160,"line":2602,"name":"","allocations":[{"count":330960,"id":44229096,"type":"Scalar","jit":330960}],"inclusive_time":6323608,"file":"gen/moar/m-CORE.setting","jit_entries":330960,"entries":330960,"callees":[{"exclusive_time":232507,"id":49934560,"line":16499,"name":"pull-one","allocations":[{"count":307320,"id":44228928,"spesh":307320,"type":"IntPosRef"}],"inclusive_time":232507,"spesh_entries":330960,"file":"gen/moar/m-CORE.setting","entries":330960},{"exclusive_time":1004647,"id":39774400,"line":1558,"name":"infix:<=:=>","inclusive_time":3973328,"file":"gen/moar/m-CORE.setting","jit_entries":307320,"entries":307320,"callees":[{"exclusive_time":2774425,"id":52314624,"line":2048,"name":"","allocations":[{"count":614640,"id":33960376,"type":"BOOTCode"},{"count":614640,"id":33961312,"type":"NQPArray"},{"count":307320,"id":33960328,"type":"BOOTHash"}],"inclusive_time":2878359,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":307320,"callees":[{"exclusive_time":103934,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":103934,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":307320,"entries":307320}]},{"exclusive_time":90321,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":90321,"file":"gen/moar/m-CORE.setting","entries":307320}]},{"exclusive_time":51266,"id":48477184,"line":8439,"name":"infix:<+>","inclusive_time":51266,"file":"gen/moar/m-CORE.setting","inlined_entries":307320,"jit_entries":307320,"entries":307320},{"exclusive_time":201256,"id":49692880,"line":12283,"name":"push","inclusive_time":201256,"file":"gen/moar/m-CORE.setting","entries":307320},{"exclusive_time":25561,"id":49072720,"line":856,"name":"sink","inclusive_time":25561,"file":"gen/moar/m-CORE.setting","jit_entries":307320,"entries":307320},{"exclusive_time":3888,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":3888,"file":"gen/moar/m-CORE.setting","jit_entries":23640,"entries":23640},{"exclusive_time":3301,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":3301,"file":"gen/moar/m-CORE.setting","jit_entries":23640,"entries":23640},{"exclusive_time":191119,"id":49257552,"line":2595,"name":"pull-one","allocations":[{"count":23640,"id":33960376,"type":"BOOTCode","jit":23640},{"count":23640,"id":44229096,"type":"Scalar","jit":23640}],"inclusive_time":317908,"file":"gen/moar/m-CORE.setting","jit_entries":23640,"entries":23640,"callees":[{"exclusive_time":6093,"id":48477184,"line":8439,"name":"infix:<+>","inclusive_time":6093,"file":"gen/moar/m-CORE.setting","jit_entries":23640,"entries":23640},{"exclusive_time":7464,"id":48477792,"line":8446,"name":"infix:<->","inclusive_time":7464,"file":"gen/moar/m-CORE.setting","jit_entries":23614,"entries":23640},{"exclusive_time":105518,"id":48479616,"line":8471,"name":"infix:<%>","allocations":[{"count":23640,"id":44229024,"type":"Int","jit":23595}],"inclusive_time":107644,"file":"gen/moar/m-CORE.setting","jit_entries":23595,"entries":23640,"callees":[{"exclusive_time":2126,"id":49806576,"line":14088,"name":"sink","inclusive_time":2126,"file":"gen/moar/m-CORE.setting","jit_entries":23640,"entries":23640}]},{"exclusive_time":5586,"id":49693488,"line":12290,"name":"AT-POS","inclusive_time":5586,"file":"gen/moar/m-CORE.setting","jit_entries":23607,"entries":23640}]}]}]},{"exclusive_time":27270,"id":48510016,"line":8705,"name":"prefix:<!>","inclusive_time":27270,"file":"gen/moar/m-CORE.setting","jit_entries":330960,"entries":330960},{"exclusive_time":37914,"id":49259376,"line":2620,"name":"ended","inclusive_time":37914,"file":"gen/moar/m-CORE.setting","jit_entries":508260,"entries":508260},{"exclusive_time":60828,"id":48454384,"line":7993,"name":"infix:<!=>","inclusive_time":109161,"file":"gen/moar/m-CORE.setting","jit_entries":165480,"entries":165480,"callees":[{"exclusive_time":27993,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":27993,"file":"gen/moar/m-CORE.setting","inlined_entries":165480,"jit_entries":165480,"entries":165480},{"exclusive_time":20340,"id":48510624,"line":8708,"name":"prefix:<not>","inclusive_time":20340,"file":"gen/moar/m-CORE.setting","inlined_entries":165480,"jit_entries":165480,"entries":165480}]},{"exclusive_time":38520,"id":49806576,"line":14088,"name":"sink","inclusive_time":38520,"file":"gen/moar/m-CORE.setting","jit_entries":472800,"entries":472800},{"exclusive_time":4053,"id":48252224,"line":2178,"name":"postfix:<++>","inclusive_time":4053,"file":"gen/moar/m-CORE.setting","jit_entries":11790,"entries":11820},{"exclusive_time":23523,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":23523,"file":"gen/moar/m-CORE.setting","jit_entries":153660,"entries":153660},{"exclusive_time":583921,"id":48971488,"line":29815,"name":"HYPER","inclusive_time":11347969,"file":"gen/moar/m-CORE.setting","jit_entries":153660,"entries":153660,"callees":[{"exclusive_time":5237333,"id":52314624,"line":2048,"name":"","allocations":[{"count":307320,"id":33960376,"type":"BOOTCode"},{"count":307320,"id":33961312,"type":"NQPArray"},{"count":153660,"id":33960328,"type":"BOOTHash"},{"count":153660,"id":33960520,"type":"CallCapture"}],"inclusive_time":10388188,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":153660,"callees":[{"exclusive_time":299065,"id":52294864,"line":920,"name":"is_bindable","allocations":[{"count":153660,"id":33960376,"spesh":153660,"type":"BOOTCode"}],"inclusive_time":5150854,"spesh_entries":153660,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":153660,"callees":[{"exclusive_time":270441,"id":52295168,"line":926,"name":"","inclusive_time":4851789,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":153660,"callees":[{"exclusive_time":1854928,"id":52292736,"line":606,"name":"bind","inclusive_time":4581348,"spesh_entries":153660,"file":"gen/moar/m-BOOTSTRAP.nqp","deopt_one":153660,"entries":153660,"callees":[{"exclusive_time":2321007,"id":52290912,"line":168,"name":"bind_one_param","allocations":[{"count":1536600,"id":33960376,"type":"BOOTCode"},{"count":460980,"id":44229096,"type":"Scalar"}],"inclusive_time":2726419,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":768300,"callees":[{"exclusive_time":388417,"id":52616112,"line":2635,"name":"type_check","allocations":[{"count":307320,"id":33961360,"type":"NQPArrayIter"}],"inclusive_time":405412,"file":"gen/moar/m-Metamodel.nqp","entries":153660,"callees":[{"exclusive_time":16995,"id":52544976,"line":161,"name":"pretending_to_be","inclusive_time":16995,"file":"gen/moar/m-Metamodel.nqp","jit_entries":153660,"entries":153660}]}]}]}]}]}]},{"exclusive_time":305335,"id":48971792,"line":29817,"name":"HYPER","allocations":[{"count":307320,"id":44229096,"type":"Scalar","jit":307320}],"inclusive_time":375859,"file":"gen/moar/m-CORE.setting","jit_entries":153660,"entries":153660,"callees":[{"exclusive_time":70524,"id":48487520,"line":8571,"name":"infix:<+^>","inclusive_time":70524,"spesh_entries":153659,"file":"gen/moar/m-CORE.setting","entries":153660}]}]},{"exclusive_time":102576,"id":49692880,"line":12283,"name":"push","inclusive_time":102576,"file":"gen/moar/m-CORE.setting","entries":153660},{"exclusive_time":13721,"id":49072720,"line":856,"name":"sink","inclusive_time":13721,"file":"gen/moar/m-CORE.setting","jit_entries":153660,"entries":153660},{"exclusive_time":39955,"id":48474752,"line":8404,"name":"postfix:<++>","inclusive_time":39955,"file":"gen/moar/m-CORE.setting","jit_entries":141840,"entries":141840},{"exclusive_time":18878,"id":39754944,"line":655,"name":"last","inclusive_time":37711,"file":"gen/moar/m-CORE.setting","jit_entries":11791,"entries":11820,"callees":[{"exclusive_time":18832,"id":39750384,"line":603,"name":"THROW-NIL","allocations":[{"count":11820,"id":33960568,"spesh":11791,"type":"BOOTException"}],"inclusive_time":18832,"spesh_entries":11791,"file":"gen/moar/m-CORE.setting","entries":11820}]}]},{"exclusive_time":112547,"id":49793808,"line":13890,"name":"new","allocations":[{"count":11820,"id":44228664,"spesh":11780,"type":"List"},{"count":11820,"id":68411984,"spesh":11780,"type":"IterationBuffer"}],"inclusive_time":1807662,"spesh_entries":11780,"file":"gen/moar/m-CORE.setting","entries":11820,"callees":[{"exclusive_time":62996,"id":49791376,"line":13817,"name":"from-slurpy","allocations":[{"count":11820,"id":44228976,"spesh":11811,"type":"Array"},{"count":11820,"id":68411984,"spesh":11811,"type":"IterationBuffer"},{"count":11820,"id":65481320,"spesh":11811,"type":"List::Reifier"}],"inclusive_time":96529,"spesh_entries":11811,"file":"gen/moar/m-CORE.setting","entries":11820,"callees":[{"exclusive_time":2649,"id":52321312,"line":3008,"name":"","allocations":[{"count":11820,"id":44228664,"type":"List","jit":11820}],"inclusive_time":2649,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":11820,"entries":11820},{"exclusive_time":22386,"id":49861296,"line":15806,"name":"reification-target","inclusive_time":30884,"file":"gen/moar/m-CORE.setting","jit_entries":11819,"entries":11820,"callees":[{"exclusive_time":8497,"id":49882880,"line":15464,"name":"new","allocations":[{"count":11820,"id":68412368,"type":"Array::ArrayReificationTarget","jit":11820}],"inclusive_time":8497,"file":"gen/moar/m-CORE.setting","jit_entries":11820,"entries":11820}]}]},{"exclusive_time":16677,"id":52311584,"line":1621,"name":"","allocations":[{"count":11820,"id":44229240,"spesh":11820,"type":"Block"},{"count":11820,"id":33960376,"spesh":11820,"type":"BOOTCode"}],"inclusive_time":16677,"spesh_entries":11820,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":11820},{"exclusive_time":96708,"id":49298592,"line":3773,"name":"map","inclusive_time":809978,"spesh_entries":11820,"file":"gen/moar/m-CORE.setting","entries":11820,"callees":[{"exclusive_time":1354,"id":52321312,"line":3008,"name":"","allocations":[{"count":11820,"id":44228664,"type":"List","jit":11820}],"inclusive_time":1354,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":11820,"entries":11820},{"exclusive_time":217857,"id":52314624,"line":2048,"name":"","allocations":[{"count":23640,"id":33960376,"type":"BOOTCode"},{"count":23640,"id":33961312,"type":"NQPArray"},{"count":11820,"id":33960328,"type":"BOOTHash"}],"inclusive_time":220146,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":11820,"callees":[{"exclusive_time":2288,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":2288,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":11820,"entries":11820}]},{"exclusive_time":107596,"id":49299808,"line":3779,"name":"map","allocations":[{"count":23640,"id":44229096,"type":"Scalar"}],"inclusive_time":491769,"file":"gen/moar/m-CORE.setting","entries":11820,"callees":[{"exclusive_time":82977,"id":49800800,"line":13990,"name":"iterator","allocations":[{"count":11820,"id":33960376,"type":"BOOTCode","jit":11820}],"inclusive_time":165483,"file":"gen/moar/m-CORE.setting","jit_entries":11820,"entries":11820,"callees":[{"exclusive_time":3304,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":3304,"file":"gen/moar/m-CORE.setting","jit_entries":11820,"entries":11820},{"exclusive_time":1112,"id":49806576,"line":14088,"name":"sink","inclusive_time":1112,"file":"gen/moar/m-CORE.setting","jit_entries":11820,"entries":11820},{"exclusive_time":13841,"id":49801104,"line":13992,"name":"","allocations":[{"count":11820,"id":44229096,"type":"Scalar","jit":11820}],"inclusive_time":13841,"file":"gen/moar/m-CORE.setting","jit_entries":11820,"entries":11820},{"exclusive_time":47215,"id":49801712,"line":14004,"name":"new","allocations":[{"count":11820,"id":67906128,"type":"<anon|352550624>","jit":11820}],"inclusive_time":64246,"file":"gen/moar/m-CORE.setting","jit_entries":11820,"entries":11820,"callees":[{"exclusive_time":9405,"id":49877712,"line":16147,"name":"of","inclusive_time":9405,"file":"gen/moar/m-CORE.setting","jit_entries":11798,"entries":11820},{"exclusive_time":7626,"id":49801408,"line":13998,"name":"BUILD","inclusive_time":7626,"file":"gen/moar/m-CORE.setting","jit_entries":11820,"entries":11820}]}]},{"exclusive_time":135907,"id":49303152,"line":3840,"name":"sequential-map","allocations":[{"count":23640,"id":33960376,"type":"BOOTCode","jit":23640},{"count":35460,"id":44229096,"type":"Scalar","jit":35460}],"inclusive_time":218689,"file":"gen/moar/m-CORE.setting","jit_entries":11820,"entries":11820,"callees":[{"exclusive_time":32203,"id":49411680,"line":6408,"name":"count","inclusive_time":34106,"file":"gen/moar/m-CORE.setting","jit_entries":11820,"entries":11820,"callees":[{"exclusive_time":1902,"id":50093552,"line":18706,"name":"count","inclusive_time":1902,"file":"gen/moar/m-CORE.setting","jit_entries":11820,"entries":11820}]},{"exclusive_time":4110,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":4110,"file":"gen/moar/m-CORE.setting","inlined_entries":11820,"jit_entries":11820,"entries":11820},{"exclusive_time":9181,"id":49304064,"line":3847,"name":"","inclusive_time":9181,"file":"gen/moar/m-CORE.setting","jit_entries":11820,"entries":11820},{"exclusive_time":26418,"id":49401344,"line":3827,"name":"new","allocations":[{"count":35460,"id":44229096,"type":"Scalar","jit":35460},{"count":11820,"id":67908360,"type":"<anon|159066640>","jit":11820}],"inclusive_time":26418,"file":"gen/moar/m-CORE.setting","jit_entries":11820,"entries":11820},{"exclusive_time":8965,"id":49700480,"line":12399,"name":"new","allocations":[{"count":11820,"id":67909080,"type":"Seq","jit":11820}],"inclusive_time":8965,"file":"gen/moar/m-CORE.setting","jit_entries":11820,"entries":11820}]}]}]},{"exclusive_time":86228,"id":49705648,"line":12474,"name":"sink","inclusive_time":771929,"file":"gen/moar/m-CORE.setting","entries":11820,"callees":[{"exclusive_time":51052,"id":49701088,"line":12407,"name":"iterator","inclusive_time":63630,"file":"gen/moar/m-CORE.setting","jit_entries":11820,"entries":11820,"callees":[{"exclusive_time":1171,"id":49806576,"line":14088,"name":"sink","inclusive_time":1171,"file":"gen/moar/m-CORE.setting","jit_entries":11820,"entries":11820},{"exclusive_time":11407,"id":52616112,"line":2635,"name":"type_check","inclusive_time":11407,"file":"gen/moar/m-Metamodel.nqp","jit_entries":11820,"entries":11820}]},{"exclusive_time":249915,"id":49306192,"line":3921,"name":"sink-all","allocations":[{"count":11820,"id":33960376,"type":"BOOTCode","jit":11815},{"count":70920,"id":44229096,"type":"Scalar","jit":70890}],"inclusive_time":618994,"file":"gen/moar/m-CORE.setting","deopt_one":11815,"jit_entries":11815,"entries":11820,"callees":[{"exclusive_time":2313,"id":48510016,"line":8705,"name":"prefix:<!>","inclusive_time":2313,"file":"gen/moar/m-CORE.setting","jit_entries":11820,"entries":11820},{"exclusive_time":34189,"id":49417456,"line":6478,"name":"phasers","inclusive_time":36250,"file":"gen/moar/m-CORE.setting","jit_entries":23640,"entries":23640,"callees":[{"exclusive_time":2060,"id":49806576,"line":14088,"name":"sink","inclusive_time":2060,"file":"gen/moar/m-CORE.setting","jit_entries":23640,"entries":23640}]},{"exclusive_time":16845,"id":48405440,"line":7763,"name":"prefix:<+>","inclusive_time":88732,"file":"gen/moar/m-CORE.setting","jit_entries":11820,"entries":11820,"callees":[{"exclusive_time":19580,"id":49795632,"line":13911,"name":"Numeric","inclusive_time":71887,"spesh_entries":11820,"file":"gen/moar/m-CORE.setting","entries":11820,"callees":[{"exclusive_time":47391,"id":49797760,"line":13932,"name":"elems","inclusive_time":52307,"spesh_entries":11820,"file":"gen/moar/m-CORE.setting","entries":11820,"callees":[{"exclusive_time":2957,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":2957,"file":"gen/moar/m-CORE.setting","jit_entries":11820,"entries":11820},{"exclusive_time":1958,"id":49806576,"line":14088,"name":"sink","inclusive_time":1958,"file":"gen/moar/m-CORE.setting","jit_entries":23640,"entries":23640}]}]}]},{"exclusive_time":37321,"id":49078192,"line":929,"name":"Bool","inclusive_time":89018,"spesh_entries":11820,"file":"gen/moar/m-CORE.setting","entries":11820,"callees":[{"exclusive_time":1791,"id":52321312,"line":3008,"name":"","allocations":[{"count":11820,"id":44228664,"type":"List","jit":11820}],"inclusive_time":1791,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":11820,"entries":11820},{"exclusive_time":46867,"id":49794720,"line":13904,"name":"Bool","inclusive_time":49904,"file":"gen/moar/m-CORE.setting","jit_entries":11820,"entries":11820,"callees":[{"exclusive_time":1191,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":1191,"file":"gen/moar/m-CORE.setting","jit_entries":11820,"entries":11820},{"exclusive_time":917,"id":49806576,"line":14088,"name":"sink","inclusive_time":917,"file":"gen/moar/m-CORE.setting","jit_entries":11820,"entries":11820},{"exclusive_time":927,"id":48508496,"line":8699,"name":"prefix:<so>","inclusive_time":927,"file":"gen/moar/m-CORE.setting","jit_entries":11820,"entries":11820}]}]},{"exclusive_time":2123,"id":49806576,"line":14088,"name":"sink","inclusive_time":2123,"file":"gen/moar/m-CORE.setting","jit_entries":23640,"entries":23640},{"exclusive_time":24370,"id":49802016,"line":14006,"name":"pull-one","inclusive_time":145693,"file":"gen/moar/m-CORE.setting","jit_entries":11820,"entries":11820,"callees":[{"exclusive_time":75116,"id":49802320,"line":14013,"name":"reify-and-pull-one","allocations":[{"count":11820,"id":44229072,"type":"IntLexRef","jit":11820}],"inclusive_time":121322,"file":"gen/moar/m-CORE.setting","jit_entries":11820,"entries":11820,"callees":[{"exclusive_time":42658,"id":49843664,"line":13724,"name":"reify-at-least","allocations":[{"count":11820,"id":33960376,"type":"BOOTCode","jit":11820},{"count":11820,"id":44229096,"type":"Scalar","jit":11820}],"inclusive_time":43866,"file":"gen/moar/m-CORE.setting","jit_entries":11820,"entries":11820,"callees":[{"exclusive_time":1208,"id":49806576,"line":14088,"name":"sink","inclusive_time":1208,"file":"gen/moar/m-CORE.setting","jit_entries":11820,"entries":11820}]},{"exclusive_time":2340,"id":48483568,"line":8526,"name":"infix:«<»","inclusive_time":2340,"file":"gen/moar/m-CORE.setting","jit_entries":11820,"entries":11820}]}]},{"exclusive_time":4947,"id":49072720,"line":856,"name":"sink","inclusive_time":4947,"file":"gen/moar/m-CORE.setting","entries":11820}]},{"exclusive_time":3075,"id":49072720,"line":856,"name":"sink","inclusive_time":3075,"file":"gen/moar/m-CORE.setting","entries":11820}]}]}]}]}]},{"exclusive_time":73065,"id":49079712,"line":941,"name":"new","inclusive_time":1233845,"spesh_entries":11791,"file":"gen/moar/m-CORE.setting","entries":11820,"callees":[{"exclusive_time":1818,"id":52321312,"line":3008,"name":"","allocations":[{"count":11820,"id":44228664,"type":"List","jit":11820}],"inclusive_time":1818,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":11820,"entries":11820},{"exclusive_time":163921,"id":52314624,"line":2048,"name":"","allocations":[{"count":23640,"id":33960376,"type":"BOOTCode"},{"count":23640,"id":33961312,"type":"NQPArray"},{"count":11820,"id":33960328,"type":"BOOTHash"},{"count":11820,"id":33960520,"type":"CallCapture"}],"inclusive_time":528867,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":11820,"callees":[{"exclusive_time":30979,"id":52294864,"line":920,"name":"is_bindable","allocations":[{"count":11820,"id":33960376,"spesh":11820,"type":"BOOTCode"}],"inclusive_time":364946,"spesh_entries":11820,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":11820,"callees":[{"exclusive_time":26853,"id":52295168,"line":926,"name":"","inclusive_time":333966,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":11820,"callees":[{"exclusive_time":128171,"id":52292736,"line":606,"name":"bind","allocations":[{"count":11820,"id":44228640,"spesh":11820,"type":"Hash"}],"inclusive_time":307112,"spesh_entries":11820,"file":"gen/moar/m-BOOTSTRAP.nqp","deopt_one":11820,"entries":11820,"callees":[{"exclusive_time":163722,"id":52290912,"line":168,"name":"bind_one_param","allocations":[{"count":94560,"id":33960376,"type":"BOOTCode"},{"count":11820,"id":44229096,"type":"Scalar"}],"inclusive_time":173023,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":47280,"callees":[{"exclusive_time":9301,"id":52616112,"line":2635,"name":"type_check","inclusive_time":9301,"file":"gen/moar/m-Metamodel.nqp","jit_entries":11820,"entries":11820}]},{"exclusive_time":5917,"id":52292432,"line":573,"name":"handle_optional","inclusive_time":5917,"spesh_entries":11813,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":11820}]}]}]}]},{"exclusive_time":63308,"id":49911760,"line":16936,"name":"new","allocations":[{"count":11820,"id":44229096,"type":"Scalar","jit":11796}],"inclusive_time":630093,"file":"gen/moar/m-CORE.setting","jit_entries":11796,"entries":11820,"callees":[{"exclusive_time":35777,"id":49912368,"line":16943,"name":"create","allocations":[{"count":11820,"id":44229096,"type":"Scalar","jit":11772},{"count":11820,"id":73528976,"type":"array[uint8]","jit":11772}],"inclusive_time":36956,"file":"gen/moar/m-CORE.setting","jit_entries":11772,"entries":11820,"callees":[{"exclusive_time":1178,"id":49072720,"line":856,"name":"sink","inclusive_time":1178,"file":"gen/moar/m-CORE.setting","jit_entries":11820,"entries":11820}]},{"exclusive_time":165073,"id":49927264,"line":16355,"name":"STORE","allocations":[{"count":11820,"id":44229096,"type":"Scalar","jit":11759},{"count":153660,"id":44229072,"type":"IntLexRef","jit":152867}],"inclusive_time":529828,"file":"gen/moar/m-CORE.setting","jit_entries":11759,"entries":11820,"callees":[{"exclusive_time":43734,"id":49797760,"line":13932,"name":"elems","allocations":[{"count":11820,"id":44229096,"spesh":11759,"type":"Scalar","jit":61}],"inclusive_time":47880,"spesh_entries":11759,"file":"gen/moar/m-CORE.setting","jit_entries":61,"entries":11820,"callees":[{"exclusive_time":2106,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":2106,"file":"gen/moar/m-CORE.setting","jit_entries":11820,"entries":11820},{"exclusive_time":2038,"id":49806576,"line":14088,"name":"sink","inclusive_time":2038,"file":"gen/moar/m-CORE.setting","jit_entries":23640,"entries":23640}]},{"exclusive_time":290385,"id":49799280,"line":13954,"name":"AT-POS","inclusive_time":316874,"spesh_entries":153647,"file":"gen/moar/m-CORE.setting","entries":153660,"callees":[{"exclusive_time":14799,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":14799,"file":"gen/moar/m-CORE.setting","jit_entries":153660,"entries":153660},{"exclusive_time":11689,"id":49806576,"line":14088,"name":"sink","inclusive_time":11689,"file":"gen/moar/m-CORE.setting","jit_entries":153660,"entries":153660}]}]}]}]},{"exclusive_time":108207,"id":83901776,"line":11,"name":"random-bytes","allocations":[{"count":11819,"id":33960376,"spesh":11563,"type":"BOOTCode"},{"count":11819,"id":44229096,"spesh":11563,"type":"Scalar"}],"inclusive_time":3280759,"spesh_entries":11563,"file":"hibbified-249.p6","entries":11819,"callees":[{"exclusive_time":14641,"id":52311584,"line":1621,"name":"","allocations":[{"count":11819,"id":44228712,"spesh":11817,"type":"Sub"},{"count":11819,"id":33960376,"spesh":11817,"type":"BOOTCode"}],"inclusive_time":14641,"spesh_entries":11817,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":11819},{"exclusive_time":12041,"id":52309760,"line":1563,"name":"","allocations":[{"count":11819,"id":44229264,"spesh":11704,"type":"Code"},{"count":11819,"id":33960376,"spesh":11704,"type":"BOOTCode"}],"inclusive_time":12041,"spesh_entries":11704,"file":"gen/moar/m-BOOTSTRAP.nqp","inlined_entries":11563,"entries":11819},{"exclusive_time":257458,"id":48625232,"line":14616,"name":"infix:<xx>","allocations":[{"count":11819,"id":33960376,"type":"BOOTCode","jit":11564},{"count":23638,"id":44229096,"type":"Scalar","jit":23128},{"count":11819,"id":33960304,"type":"BOOTArray","jit":11564},{"count":11819,"id":44228664,"type":"List","jit":11564}],"inclusive_time":2025461,"file":"gen/moar/m-CORE.setting","jit_entries":11564,"entries":11819,"callees":[{"exclusive_time":193498,"id":94458736,"line":25,"name":"","inclusive_time":1754806,"file":"hibbified-249.p6","jit_entries":153503,"entries":153647,"callees":[{"exclusive_time":1304204,"id":88583088,"line":12,"name":"random-byte","allocations":[{"count":1229176,"id":44229000,"spesh":1226824,"type":"Num"},{"count":181677,"id":44229024,"spesh":181317,"type":"Int"}],"inclusive_time":1561308,"spesh_entries":153353,"file":"hibbified-249.p6","entries":153647,"callees":[{"exclusive_time":170252,"id":48538592,"line":9211,"name":"infix:«<»","inclusive_time":170252,"spesh_entries":1226824,"file":"gen/moar/m-CORE.setting","inlined_entries":1226824,"jit_entries":2252,"entries":1229176},{"exclusive_time":2246,"id":49072720,"line":856,"name":"sink","inclusive_time":2246,"file":"gen/moar/m-CORE.setting","jit_entries":28030,"entries":28030},{"exclusive_time":84604,"id":49806576,"line":14088,"name":"sink","inclusive_time":84604,"file":"gen/moar/m-CORE.setting","jit_entries":1201146,"entries":1201146}]}]},{"exclusive_time":13196,"id":49072720,"line":856,"name":"sink","inclusive_time":13196,"file":"gen/moar/m-CORE.setting","jit_entries":153647,"entries":153647}]},{"exclusive_time":68282,"id":49079712,"line":941,"name":"new","inclusive_time":1120406,"spesh_entries":11791,"file":"gen/moar/m-CORE.setting","entries":11819,"callees":[{"exclusive_time":2259,"id":52321312,"line":3008,"name":"","allocations":[{"count":11819,"id":44228664,"type":"List","jit":11819}],"inclusive_time":2259,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":11819,"entries":11819},{"exclusive_time":147476,"id":52314624,"line":2048,"name":"","allocations":[{"count":23638,"id":33960376,"type":"BOOTCode"},{"count":23638,"id":33961312,"type":"NQPArray"},{"count":11819,"id":33960328,"type":"BOOTHash"},{"count":11819,"id":33960520,"type":"CallCapture"}],"inclusive_time":479157,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":11819,"callees":[{"exclusive_time":28128,"id":52294864,"line":920,"name":"is_bindable","allocations":[{"count":11819,"id":33960376,"spesh":11819,"type":"BOOTCode"}],"inclusive_time":331681,"spesh_entries":11819,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":11819,"callees":[{"exclusive_time":26578,"id":52295168,"line":926,"name":"","inclusive_time":303552,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":11819,"callees":[{"exclusive_time":117375,"id":52292736,"line":606,"name":"bind","allocations":[{"count":11819,"id":44228640,"spesh":11819,"type":"Hash"}],"inclusive_time":276973,"spesh_entries":11819,"file":"gen/moar/m-BOOTSTRAP.nqp","deopt_one":11819,"entries":11819,"callees":[{"exclusive_time":148767,"id":52290912,"line":168,"name":"bind_one_param","allocations":[{"count":94552,"id":33960376,"type":"BOOTCode"},{"count":11819,"id":44229096,"type":"Scalar"}],"inclusive_time":154623,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":47276,"callees":[{"exclusive_time":5856,"id":52616112,"line":2635,"name":"type_check","inclusive_time":5856,"file":"gen/moar/m-Metamodel.nqp","jit_entries":11819,"entries":11819}]},{"exclusive_time":4975,"id":52292432,"line":573,"name":"handle_optional","inclusive_time":4975,"spesh_entries":11813,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":11819}]}]}]}]},{"exclusive_time":40484,"id":49911760,"line":16936,"name":"new","allocations":[{"count":11819,"id":44229096,"type":"Scalar","jit":11795}],"inclusive_time":570706,"file":"gen/moar/m-CORE.setting","jit_entries":11795,"entries":11819,"callees":[{"exclusive_time":24789,"id":49912368,"line":16943,"name":"create","allocations":[{"count":11819,"id":44229096,"type":"Scalar","jit":11771},{"count":11819,"id":73528976,"type":"array[uint8]","jit":11771}],"inclusive_time":26006,"file":"gen/moar/m-CORE.setting","jit_entries":11771,"entries":11819,"callees":[{"exclusive_time":1217,"id":49072720,"line":856,"name":"sink","inclusive_time":1217,"file":"gen/moar/m-CORE.setting","jit_entries":11819,"entries":11819}]},{"exclusive_time":137143,"id":49927264,"line":16355,"name":"STORE","allocations":[{"count":11819,"id":44229096,"type":"Scalar","jit":11759},{"count":153647,"id":44229072,"type":"IntLexRef","jit":152867}],"inclusive_time":504215,"file":"gen/moar/m-CORE.setting","jit_entries":11759,"entries":11819,"callees":[{"exclusive_time":48964,"id":49797760,"line":13932,"name":"elems","allocations":[{"count":11819,"id":44229096,"spesh":11759,"type":"Scalar","jit":60}],"inclusive_time":52683,"spesh_entries":11759,"file":"gen/moar/m-CORE.setting","deopt_one":11819,"jit_entries":60,"entries":11819,"callees":[{"exclusive_time":1704,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":1704,"file":"gen/moar/m-CORE.setting","jit_entries":11819,"entries":11819},{"exclusive_time":2014,"id":49806576,"line":14088,"name":"sink","inclusive_time":2014,"file":"gen/moar/m-CORE.setting","jit_entries":23638,"entries":23638}]},{"exclusive_time":288178,"id":49799280,"line":13954,"name":"AT-POS","inclusive_time":314389,"spesh_entries":153647,"file":"gen/moar/m-CORE.setting","deopt_one":153647,"entries":153647,"callees":[{"exclusive_time":14552,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":14552,"file":"gen/moar/m-CORE.setting","jit_entries":153647,"entries":153647},{"exclusive_time":11658,"id":49806576,"line":14088,"name":"sink","inclusive_time":11658,"file":"gen/moar/m-CORE.setting","jit_entries":153647,"entries":153647}]}]}]}]}]}]},{"exclusive_time":636,"id":39754944,"line":655,"name":"last","inclusive_time":2776,"file":"gen/moar/m-CORE.setting","jit_entries":590,"entries":591,"callees":[{"exclusive_time":1233,"id":39750384,"line":603,"name":"THROW-NIL","allocations":[{"count":591,"id":33960568,"spesh":590,"type":"BOOTException"}],"inclusive_time":2139,"spesh_entries":590,"file":"gen/moar/m-CORE.setting","entries":591,"callees":[{"exclusive_time":906,"id":49305888,"line":3899,"name":"","allocations":[{"count":1182,"id":44229024,"spesh":670,"type":"Int"}],"inclusive_time":906,"spesh_entries":335,"file":"gen/moar/m-CORE.setting","entries":591}]}]}]},{"exclusive_time":1726,"id":49416544,"line":6469,"name":"fire_phasers","allocations":[{"count":591,"id":33960376,"spesh":587,"type":"BOOTCode"}],"inclusive_time":1952,"spesh_entries":587,"file":"gen/moar/m-CORE.setting","entries":591,"callees":[{"exclusive_time":225,"id":48510016,"line":8705,"name":"prefix:<!>","inclusive_time":225,"spesh_entries":587,"file":"gen/moar/m-CORE.setting","inlined_entries":587,"jit_entries":4,"entries":591}]}]},{"exclusive_time":48831,"id":39774400,"line":1558,"name":"infix:<=:=>","inclusive_time":175494,"file":"gen/moar/m-CORE.setting","jit_entries":11820,"entries":11820,"callees":[{"exclusive_time":117439,"id":52314624,"line":2048,"name":"","allocations":[{"count":23640,"id":33960376,"type":"BOOTCode"},{"count":23640,"id":33961312,"type":"NQPArray"},{"count":11820,"id":33960328,"type":"BOOTHash"}],"inclusive_time":122966,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":11820,"callees":[{"exclusive_time":5527,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":5527,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":11820,"entries":11820}]},{"exclusive_time":3696,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":3696,"file":"gen/moar/m-CORE.setting","entries":11820}]},{"exclusive_time":2839,"id":48509712,"line":8704,"name":"prefix:<!>","inclusive_time":2839,"file":"gen/moar/m-CORE.setting","jit_entries":12411,"entries":12411},{"exclusive_time":5,"id":49170912,"line":1907,"name":"push","inclusive_time":16,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":8,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":9,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":49692880,"line":12283,"name":"push","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":9584,"id":49692880,"line":12283,"name":"push","inclusive_time":9584,"file":"gen/moar/m-CORE.setting","entries":11819},{"exclusive_time":72,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":72,"file":"gen/moar/m-CORE.setting","jit_entries":591,"entries":591}]}]},{"exclusive_time":140,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":140,"file":"gen/moar/m-CORE.setting","inlined_entries":563,"jit_entries":591,"entries":591}]},{"exclusive_time":202,"id":49072720,"line":856,"name":"sink","inclusive_time":202,"file":"gen/moar/m-CORE.setting","entries":591},{"exclusive_time":291,"id":52616112,"line":2635,"name":"type_check","inclusive_time":291,"file":"gen/moar/m-Metamodel.nqp","jit_entries":591,"entries":591},{"exclusive_time":49,"id":49806576,"line":14088,"name":"sink","inclusive_time":49,"file":"gen/moar/m-CORE.setting","jit_entries":591,"entries":591}]},{"exclusive_time":50,"id":49072720,"line":856,"name":"sink","inclusive_time":50,"file":"gen/moar/m-CORE.setting","jit_entries":591,"entries":591}]}]},{"exclusive_time":20833,"id":48631616,"line":14673,"name":"infix:<X>","allocations":[{"count":1180,"id":33960376,"spesh":668,"type":"BOOTCode"},{"count":590,"id":44229096,"spesh":334,"type":"Scalar"},{"count":590,"id":44228976,"spesh":334,"type":"Array"},{"count":590,"id":33960304,"spesh":334,"type":"BOOTArray"},{"count":590,"id":33960832,"spesh":334,"type":"BOOTIntArray"},{"count":590,"id":44229072,"spesh":334,"type":"IntLexRef"}],"inclusive_time":434695,"spesh_entries":334,"file":"gen/moar/m-CORE.setting","entries":590,"callees":[{"exclusive_time":5057,"id":49791680,"line":13831,"name":"from-slurpy-onearg","allocations":[{"count":590,"id":33960376,"spesh":487,"type":"BOOTCode"},{"count":590,"id":44229192,"spesh":487,"type":"Capture"},{"count":590,"id":44229096,"spesh":487,"type":"Scalar"}],"inclusive_time":12111,"spesh_entries":487,"file":"gen/moar/m-CORE.setting","entries":590,"callees":[{"exclusive_time":318,"id":49689840,"line":12248,"name":"FLATTENABLE_LIST","inclusive_time":318,"file":"gen/moar/m-CORE.setting","jit_entries":590,"entries":590},{"exclusive_time":269,"id":49690144,"line":12249,"name":"FLATTENABLE_HASH","allocations":[{"count":590,"id":33960328,"type":"BOOTHash","jit":590}],"inclusive_time":269,"file":"gen/moar/m-CORE.setting","jit_entries":590,"entries":590},{"exclusive_time":4609,"id":49791376,"line":13817,"name":"from-slurpy","allocations":[{"count":590,"id":44228664,"type":"List"},{"count":590,"id":68411984,"type":"IterationBuffer"},{"count":590,"id":65481320,"type":"List::Reifier"}],"inclusive_time":6465,"file":"gen/moar/m-CORE.setting","entries":590,"callees":[{"exclusive_time":125,"id":52321312,"line":3008,"name":"","allocations":[{"count":590,"id":44228664,"type":"List","jit":590}],"inclusive_time":125,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":590,"entries":590},{"exclusive_time":1595,"id":49800496,"line":13985,"name":"reification-target","inclusive_time":1729,"file":"gen/moar/m-CORE.setting","jit_entries":589,"entries":590,"callees":[{"exclusive_time":82,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":82,"file":"gen/moar/m-CORE.setting","jit_entries":590,"entries":590},{"exclusive_time":51,"id":49806576,"line":14088,"name":"sink","inclusive_time":51,"file":"gen/moar/m-CORE.setting","jit_entries":590,"entries":590}]}]}]},{"exclusive_time":4506,"id":49797760,"line":13932,"name":"elems","allocations":[{"count":590,"id":44229096,"spesh":334,"type":"Scalar","jit":256}],"inclusive_time":18333,"spesh_entries":334,"file":"gen/moar/m-CORE.setting","jit_entries":256,"entries":590,"callees":[{"exclusive_time":57,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":57,"file":"gen/moar/m-CORE.setting","jit_entries":590,"entries":590},{"exclusive_time":46,"id":49806576,"line":14088,"name":"sink","inclusive_time":46,"file":"gen/moar/m-CORE.setting","jit_entries":590,"entries":590},{"exclusive_time":5305,"id":49845792,"line":13753,"name":"reify-until-lazy","allocations":[{"count":590,"id":33960376,"type":"BOOTCode","jit":585},{"count":1180,"id":44229096,"type":"Scalar","jit":1170}],"inclusive_time":11591,"file":"gen/moar/m-CORE.setting","deopt_one":585,"jit_entries":585,"entries":590,"callees":[{"exclusive_time":45,"id":49806576,"line":14088,"name":"sink","inclusive_time":45,"file":"gen/moar/m-CORE.setting","jit_entries":590,"entries":590},{"exclusive_time":82,"id":48509712,"line":8704,"name":"prefix:<!>","inclusive_time":82,"file":"gen/moar/m-CORE.setting","jit_entries":590,"entries":590},{"exclusive_time":4041,"id":49847008,"line":13760,"name":"","allocations":[{"count":2360,"id":33960376,"type":"BOOTCode","jit":2164}],"inclusive_time":6158,"file":"gen/moar/m-CORE.setting","jit_entries":1082,"entries":1180,"callees":[{"exclusive_time":1445,"id":49847920,"line":13769,"name":"","allocations":[{"count":1180,"id":44229096,"type":"Scalar","jit":1032}],"inclusive_time":1687,"file":"gen/moar/m-CORE.setting","jit_entries":1032,"entries":1180,"callees":[{"exclusive_time":242,"id":49692880,"line":12283,"name":"push","inclusive_time":242,"file":"gen/moar/m-CORE.setting","inlined_entries":1032,"jit_entries":1175,"entries":1180}]},{"exclusive_time":428,"id":49072720,"line":856,"name":"sink","inclusive_time":428,"file":"gen/moar/m-CORE.setting","entries":1180}]}]},{"exclusive_time":58,"id":49072720,"line":856,"name":"sink","inclusive_time":58,"file":"gen/moar/m-CORE.setting","jit_entries":590,"entries":590},{"exclusive_time":1961,"id":49849440,"line":13795,"name":"fully-reified","inclusive_time":2071,"file":"gen/moar/m-CORE.setting","deopt_one":585,"jit_entries":585,"entries":590,"callees":[{"exclusive_time":110,"id":48509712,"line":8704,"name":"prefix:<!>","inclusive_time":110,"file":"gen/moar/m-CORE.setting","jit_entries":1180,"entries":1180}]}]},{"exclusive_time":388,"id":48477792,"line":8446,"name":"infix:<->","inclusive_time":388,"spesh_entries":334,"file":"gen/moar/m-CORE.setting","inlined_entries":334,"jit_entries":256,"entries":590},{"exclusive_time":495,"id":52309760,"line":1563,"name":"","allocations":[{"count":590,"id":44229264,"spesh":585,"type":"Code"},{"count":590,"id":33960376,"spesh":585,"type":"BOOTCode"}],"inclusive_time":495,"spesh_entries":585,"file":"gen/moar/m-BOOTSTRAP.nqp","inlined_entries":334,"entries":590},{"exclusive_time":5884,"id":48631920,"line":14676,"name":"","inclusive_time":224236,"file":"gen/moar/m-CORE.setting","jit_entries":384,"entries":590,"callees":[{"exclusive_time":4837,"id":49079712,"line":941,"name":"new","inclusive_time":73102,"spesh_entries":581,"file":"gen/moar/m-CORE.setting","entries":590,"callees":[{"exclusive_time":86,"id":52321312,"line":3008,"name":"","allocations":[{"count":590,"id":44228664,"type":"List","jit":590}],"inclusive_time":86,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":590,"entries":590},{"exclusive_time":14015,"id":52314624,"line":2048,"name":"","allocations":[{"count":1180,"id":33960376,"type":"BOOTCode"},{"count":1180,"id":33961312,"type":"NQPArray"},{"count":590,"id":33960328,"type":"BOOTHash"},{"count":590,"id":33960520,"type":"CallCapture"}],"inclusive_time":51610,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":590,"callees":[{"exclusive_time":2708,"id":52294864,"line":920,"name":"is_bindable","allocations":[{"count":590,"id":33960376,"spesh":590,"type":"BOOTCode"}],"inclusive_time":37595,"spesh_entries":590,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":590,"callees":[{"exclusive_time":2196,"id":52295168,"line":926,"name":"","inclusive_time":34886,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":590,"callees":[{"exclusive_time":11097,"id":52292736,"line":606,"name":"bind","allocations":[{"count":590,"id":44228640,"spesh":590,"type":"Hash"}],"inclusive_time":32690,"spesh_entries":590,"file":"gen/moar/m-BOOTSTRAP.nqp","deopt_one":590,"entries":590,"callees":[{"exclusive_time":17450,"id":52290912,"line":168,"name":"bind_one_param","allocations":[{"count":7080,"id":33960376,"type":"BOOTCode"},{"count":590,"id":33961456,"type":"str"},{"count":1770,"id":44229096,"type":"Scalar"}],"inclusive_time":21012,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":3540,"callees":[{"exclusive_time":3094,"id":52616112,"line":2635,"name":"type_check","allocations":[{"count":1180,"id":33961360,"type":"NQPArrayIter","jit":1174}],"inclusive_time":3239,"file":"gen/moar/m-Metamodel.nqp","jit_entries":587,"entries":590,"callees":[{"exclusive_time":145,"id":52544976,"line":161,"name":"pretending_to_be","inclusive_time":145,"spesh_entries":587,"file":"gen/moar/m-Metamodel.nqp","jit_entries":3,"entries":590}]},{"exclusive_time":151,"id":52611248,"line":2516,"name":"archetypes","inclusive_time":151,"file":"gen/moar/m-Metamodel.nqp","jit_entries":522,"entries":590},{"exclusive_time":170,"id":52538592,"line":88,"name":"generic","inclusive_time":170,"file":"gen/moar/m-Metamodel.nqp","jit_entries":590,"entries":590}]},{"exclusive_time":580,"id":52292432,"line":573,"name":"handle_optional","inclusive_time":580,"spesh_entries":1180,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1180}]}]}]}]},{"exclusive_time":5697,"id":49746080,"line":13100,"name":"new","allocations":[{"count":1770,"id":44229096,"type":"Scalar","jit":1566},{"count":590,"id":65480504,"type":"Range","jit":522}],"inclusive_time":16567,"file":"gen/moar/m-CORE.setting","jit_entries":522,"entries":590,"callees":[{"exclusive_time":4483,"id":48468064,"line":8187,"name":"infix:<==>","inclusive_time":5953,"file":"gen/moar/m-CORE.setting","inlined_entries":522,"jit_entries":1075,"entries":1180,"callees":[{"exclusive_time":936,"id":49478864,"line":8273,"name":"Bridge","allocations":[{"count":1180,"id":44229000,"type":"Num","jit":1107}],"inclusive_time":936,"file":"gen/moar/m-CORE.setting","jit_entries":1107,"entries":1180},{"exclusive_time":147,"id":49496496,"line":8826,"name":"Bridge","inclusive_time":147,"file":"gen/moar/m-CORE.setting","jit_entries":1132,"entries":1180},{"exclusive_time":385,"id":48537680,"line":9200,"name":"infix:<==>","inclusive_time":385,"file":"gen/moar/m-CORE.setting","inlined_entries":1075,"jit_entries":1085,"entries":1180}]},{"exclusive_time":4774,"id":49747904,"line":13124,"name":"BUILD","allocations":[{"count":1180,"id":44229096,"type":"Scalar","jit":920}],"inclusive_time":4917,"file":"gen/moar/m-CORE.setting","deopt_one":460,"jit_entries":460,"entries":590,"callees":[{"exclusive_time":142,"id":49079408,"line":937,"name":"defined","inclusive_time":142,"file":"gen/moar/m-CORE.setting","jit_entries":1178,"entries":1180}]}]}]},{"exclusive_time":695,"id":52311584,"line":1621,"name":"","allocations":[{"count":590,"id":44229240,"spesh":590,"type":"Block"},{"count":590,"id":33960376,"spesh":590,"type":"BOOTCode"}],"inclusive_time":695,"spesh_entries":590,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":590},{"exclusive_time":4537,"id":49298592,"line":3773,"name":"map","inclusive_time":44037,"spesh_entries":590,"file":"gen/moar/m-CORE.setting","entries":590,"callees":[{"exclusive_time":128,"id":52321312,"line":3008,"name":"","allocations":[{"count":590,"id":44228664,"type":"List","jit":590}],"inclusive_time":128,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":590,"entries":590},{"exclusive_time":10180,"id":52314624,"line":2048,"name":"","allocations":[{"count":1180,"id":33960376,"type":"BOOTCode"},{"count":1180,"id":33961312,"type":"NQPArray"},{"count":590,"id":33960328,"type":"BOOTHash"}],"inclusive_time":10300,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":590,"callees":[{"exclusive_time":120,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":120,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":590,"entries":590}]},{"exclusive_time":4538,"id":49299808,"line":3779,"name":"map","allocations":[{"count":1180,"id":44229096,"spesh":1174,"type":"Scalar"}],"inclusive_time":29071,"spesh_entries":587,"file":"gen/moar/m-CORE.setting","entries":590,"callees":[{"exclusive_time":9862,"id":49750640,"line":13159,"name":"iterator","allocations":[{"count":2950,"id":33960376,"type":"BOOTCode","jit":2315},{"count":1770,"id":44228616,"type":"IntAttrRef","jit":1389},{"count":590,"id":44229096,"type":"Scalar","jit":463}],"inclusive_time":14925,"file":"gen/moar/m-CORE.setting","jit_entries":463,"entries":590,"callees":[{"exclusive_time":331,"id":48510016,"line":8705,"name":"prefix:<!>","inclusive_time":331,"file":"gen/moar/m-CORE.setting","inlined_entries":926,"jit_entries":1180,"entries":1180},{"exclusive_time":1191,"id":49752160,"line":13164,"name":"","inclusive_time":1191,"file":"gen/moar/m-CORE.setting","jit_entries":513,"entries":590},{"exclusive_time":305,"id":48477184,"line":8439,"name":"infix:<+>","inclusive_time":305,"file":"gen/moar/m-CORE.setting","jit_entries":590,"entries":590},{"exclusive_time":255,"id":48477792,"line":8446,"name":"infix:<->","inclusive_time":255,"file":"gen/moar/m-CORE.setting","jit_entries":589,"entries":590},{"exclusive_time":1915,"id":49752768,"line":13169,"name":"new","allocations":[{"count":590,"id":67906560,"type":"<anon|349030928>","jit":488}],"inclusive_time":2979,"file":"gen/moar/m-CORE.setting","jit_entries":488,"entries":590,"callees":[{"exclusive_time":940,"id":49752464,"line":13168,"name":"BUILD","inclusive_time":1064,"file":"gen/moar/m-CORE.setting","jit_entries":488,"entries":590,"callees":[{"exclusive_time":123,"id":48477792,"line":8446,"name":"infix:<->","inclusive_time":123,"file":"gen/moar/m-CORE.setting","inlined_entries":488,"jit_entries":590,"entries":590}]}]}]},{"exclusive_time":6304,"id":49303152,"line":3840,"name":"sequential-map","allocations":[{"count":1180,"id":33960376,"type":"BOOTCode","jit":1174},{"count":1770,"id":44229096,"type":"Scalar","jit":1761}],"inclusive_time":9606,"file":"gen/moar/m-CORE.setting","jit_entries":587,"entries":590,"callees":[{"exclusive_time":1111,"id":49411680,"line":6408,"name":"count","inclusive_time":1195,"file":"gen/moar/m-CORE.setting","jit_entries":590,"entries":590,"callees":[{"exclusive_time":84,"id":50093552,"line":18706,"name":"count","inclusive_time":84,"file":"gen/moar/m-CORE.setting","jit_entries":590,"entries":590}]},{"exclusive_time":148,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":148,"file":"gen/moar/m-CORE.setting","inlined_entries":587,"jit_entries":590,"entries":590},{"exclusive_time":291,"id":49304064,"line":3847,"name":"","inclusive_time":291,"file":"gen/moar/m-CORE.setting","jit_entries":590,"entries":590},{"exclusive_time":1216,"id":49401344,"line":3827,"name":"new","allocations":[{"count":1770,"id":44229096,"type":"Scalar","jit":1761},{"count":590,"id":67908360,"type":"<anon|159066640>","jit":587}],"inclusive_time":1216,"file":"gen/moar/m-CORE.setting","jit_entries":587,"entries":590},{"exclusive_time":450,"id":49700480,"line":12399,"name":"new","allocations":[{"count":590,"id":67909080,"type":"Seq","jit":590}],"inclusive_time":450,"file":"gen/moar/m-CORE.setting","jit_entries":590,"entries":590}]}]}]},{"exclusive_time":3068,"id":49701696,"line":12420,"name":"eager","inclusive_time":100516,"file":"gen/moar/m-CORE.setting","jit_entries":488,"entries":590,"callees":[{"exclusive_time":2349,"id":49701088,"line":12407,"name":"iterator","inclusive_time":2850,"file":"gen/moar/m-CORE.setting","jit_entries":590,"entries":590,"callees":[{"exclusive_time":54,"id":49806576,"line":14088,"name":"sink","inclusive_time":54,"file":"gen/moar/m-CORE.setting","jit_entries":590,"entries":590},{"exclusive_time":447,"id":52616112,"line":2635,"name":"type_check","inclusive_time":447,"file":"gen/moar/m-Metamodel.nqp","jit_entries":590,"entries":590}]},{"exclusive_time":1215,"id":49791072,"line":13804,"name":"from-iterator","allocations":[{"count":590,"id":44228664,"type":"List","jit":581},{"count":590,"id":68411984,"type":"IterationBuffer","jit":581},{"count":590,"id":65481320,"type":"List::Reifier","jit":581}],"inclusive_time":2719,"file":"gen/moar/m-CORE.setting","jit_entries":581,"entries":590,"callees":[{"exclusive_time":1365,"id":49800496,"line":13985,"name":"reification-target","inclusive_time":1503,"file":"gen/moar/m-CORE.setting","jit_entries":589,"entries":590,"callees":[{"exclusive_time":85,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":85,"file":"gen/moar/m-CORE.setting","jit_entries":590,"entries":590},{"exclusive_time":52,"id":49806576,"line":14088,"name":"sink","inclusive_time":52,"file":"gen/moar/m-CORE.setting","jit_entries":590,"entries":590}]}]},{"exclusive_time":2430,"id":49821472,"line":14247,"name":"eager","inclusive_time":91877,"file":"gen/moar/m-CORE.setting","jit_entries":489,"entries":590,"callees":[{"exclusive_time":5081,"id":49848224,"line":13778,"name":"reify-all","allocations":[{"count":590,"id":33960376,"type":"BOOTCode","jit":464},{"count":1180,"id":44229096,"type":"Scalar","jit":928}],"inclusive_time":89395,"file":"gen/moar/m-CORE.setting","jit_entries":464,"entries":590,"callees":[{"exclusive_time":2038,"id":49213168,"line":2463,"name":"push-all","allocations":[{"count":590,"id":44229096,"type":"Scalar","jit":563}],"inclusive_time":83784,"file":"gen/moar/m-CORE.setting","jit_entries":563,"entries":590,"callees":[{"exclusive_time":2679,"id":49212864,"line":2454,"name":"push-at-least","allocations":[{"count":590,"id":44229096,"spesh":565,"type":"Scalar"}],"inclusive_time":81650,"spesh_entries":565,"file":"gen/moar/m-CORE.setting","entries":590,"callees":[{"exclusive_time":11412,"id":49212256,"line":2436,"name":"push-exactly","allocations":[{"count":1180,"id":44229096,"type":"Scalar","jit":1170}],"inclusive_time":78970,"file":"gen/moar/m-CORE.setting","deopt_one":585,"jit_entries":585,"entries":590,"callees":[{"exclusive_time":24366,"id":49304368,"line":3853,"name":"pull-one","allocations":[{"count":1770,"id":33960376,"type":"BOOTCode","jit":1756},{"count":4130,"id":44229096,"type":"Scalar","jit":4096}],"inclusive_time":49372,"file":"gen/moar/m-CORE.setting","deopt_one":1756,"jit_entries":1756,"entries":1770,"callees":[{"exclusive_time":358,"id":48510016,"line":8705,"name":"prefix:<!>","inclusive_time":358,"file":"gen/moar/m-CORE.setting","inlined_entries":1171,"jit_entries":1770,"entries":1770},{"exclusive_time":1674,"id":49417456,"line":6478,"name":"phasers","inclusive_time":1784,"file":"gen/moar/m-CORE.setting","jit_entries":1180,"entries":1180,"callees":[{"exclusive_time":110,"id":49806576,"line":14088,"name":"sink","inclusive_time":110,"file":"gen/moar/m-CORE.setting","jit_entries":1180,"entries":1180}]},{"exclusive_time":715,"id":48405440,"line":7763,"name":"prefix:<+>","inclusive_time":3686,"file":"gen/moar/m-CORE.setting","jit_entries":590,"entries":590,"callees":[{"exclusive_time":809,"id":49795632,"line":13911,"name":"Numeric","inclusive_time":2971,"spesh_entries":590,"file":"gen/moar/m-CORE.setting","entries":590,"callees":[{"exclusive_time":1993,"id":49797760,"line":13932,"name":"elems","inclusive_time":2162,"spesh_entries":590,"file":"gen/moar/m-CORE.setting","entries":590,"callees":[{"exclusive_time":74,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":74,"file":"gen/moar/m-CORE.setting","jit_entries":590,"entries":590},{"exclusive_time":94,"id":49806576,"line":14088,"name":"sink","inclusive_time":94,"file":"gen/moar/m-CORE.setting","jit_entries":1180,"entries":1180}]}]}]},{"exclusive_time":1899,"id":49078192,"line":929,"name":"Bool","inclusive_time":4193,"spesh_entries":590,"file":"gen/moar/m-CORE.setting","entries":590,"callees":[{"exclusive_time":100,"id":52321312,"line":3008,"name":"","allocations":[{"count":590,"id":44228664,"type":"List","jit":590}],"inclusive_time":100,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":590,"entries":590},{"exclusive_time":2039,"id":49794720,"line":13904,"name":"Bool","inclusive_time":2192,"file":"gen/moar/m-CORE.setting","jit_entries":590,"entries":590,"callees":[{"exclusive_time":62,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":62,"file":"gen/moar/m-CORE.setting","jit_entries":590,"entries":590},{"exclusive_time":43,"id":49806576,"line":14088,"name":"sink","inclusive_time":43,"file":"gen/moar/m-CORE.setting","jit_entries":590,"entries":590},{"exclusive_time":46,"id":48508496,"line":8699,"name":"prefix:<so>","inclusive_time":46,"file":"gen/moar/m-CORE.setting","jit_entries":590,"entries":590}]}]},{"exclusive_time":286,"id":49806576,"line":14088,"name":"sink","inclusive_time":286,"file":"gen/moar/m-CORE.setting","jit_entries":3540,"entries":3540},{"exclusive_time":1344,"id":49753072,"line":13171,"name":"pull-one","allocations":[{"count":1180,"id":44228616,"type":"IntAttrRef","jit":1099}],"inclusive_time":1344,"file":"gen/moar/m-CORE.setting","jit_entries":1649,"entries":1770},{"exclusive_time":441,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":441,"file":"gen/moar/m-CORE.setting","jit_entries":590,"entries":1770},{"exclusive_time":5514,"id":48632224,"line":14676,"name":"","allocations":[{"count":1770,"id":44229096,"type":"Scalar","jit":1387}],"inclusive_time":11387,"file":"gen/moar/m-CORE.setting","jit_entries":925,"entries":1180,"callees":[{"exclusive_time":1789,"id":48657456,"line":14967,"name":"postcircumfix:<[ ]>","inclusive_time":4982,"file":"gen/moar/m-CORE.setting","inlined_entries":925,"jit_entries":1174,"entries":1180,"callees":[{"exclusive_time":2960,"id":49798976,"line":13946,"name":"AT-POS","inclusive_time":3192,"file":"gen/moar/m-CORE.setting","jit_entries":1009,"entries":1180,"callees":[{"exclusive_time":126,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":126,"file":"gen/moar/m-CORE.setting","jit_entries":1180,"entries":1180},{"exclusive_time":105,"id":49806576,"line":14088,"name":"sink","inclusive_time":105,"file":"gen/moar/m-CORE.setting","jit_entries":1180,"entries":1180}]}]},{"exclusive_time":92,"id":49806576,"line":14088,"name":"sink","inclusive_time":92,"file":"gen/moar/m-CORE.setting","jit_entries":1180,"entries":1180},{"exclusive_time":89,"id":49805664,"line":14083,"name":"list","inclusive_time":89,"file":"gen/moar/m-CORE.setting","inlined_entries":925,"jit_entries":1176,"entries":1180},{"exclusive_time":708,"id":49857648,"line":15753,"name":"is-lazy","allocations":[{"count":590,"id":44229096,"type":"Scalar","jit":458}],"inclusive_time":708,"file":"gen/moar/m-CORE.setting","jit_entries":458,"entries":590}]},{"exclusive_time":185,"id":49072720,"line":856,"name":"sink","inclusive_time":185,"file":"gen/moar/m-CORE.setting","entries":590},{"exclusive_time":1122,"id":49416544,"line":6469,"name":"fire_phasers","allocations":[{"count":590,"id":33960376,"spesh":587,"type":"BOOTCode"}],"inclusive_time":1336,"spesh_entries":587,"file":"gen/moar/m-CORE.setting","entries":590,"callees":[{"exclusive_time":214,"id":48510016,"line":8705,"name":"prefix:<!>","inclusive_time":214,"spesh_entries":587,"file":"gen/moar/m-CORE.setting","inlined_entries":587,"jit_entries":3,"entries":590}]}]},{"exclusive_time":3812,"id":39774400,"line":1558,"name":"infix:<=:=>","inclusive_time":17093,"file":"gen/moar/m-CORE.setting","jit_entries":1180,"entries":1180,"callees":[{"exclusive_time":12238,"id":52314624,"line":2048,"name":"","allocations":[{"count":2360,"id":33960376,"type":"BOOTCode"},{"count":2360,"id":33961312,"type":"NQPArray"},{"count":1180,"id":33960328,"type":"BOOTHash"}],"inclusive_time":12941,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1180,"callees":[{"exclusive_time":703,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":703,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1180,"entries":1180}]},{"exclusive_time":339,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":339,"file":"gen/moar/m-CORE.setting","entries":1180}]},{"exclusive_time":239,"id":48509712,"line":8704,"name":"prefix:<!>","inclusive_time":239,"file":"gen/moar/m-CORE.setting","jit_entries":1770,"entries":1770},{"exclusive_time":805,"id":49692880,"line":12283,"name":"push","inclusive_time":805,"file":"gen/moar/m-CORE.setting","entries":1180},{"exclusive_time":47,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":47,"file":"gen/moar/m-CORE.setting","jit_entries":590,"entries":590}]}]},{"exclusive_time":96,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":96,"file":"gen/moar/m-CORE.setting","inlined_entries":563,"jit_entries":590,"entries":590}]},{"exclusive_time":188,"id":49072720,"line":856,"name":"sink","inclusive_time":188,"file":"gen/moar/m-CORE.setting","entries":590},{"exclusive_time":288,"id":52616112,"line":2635,"name":"type_check","inclusive_time":288,"file":"gen/moar/m-Metamodel.nqp","jit_entries":590,"entries":590},{"exclusive_time":51,"id":49806576,"line":14088,"name":"sink","inclusive_time":51,"file":"gen/moar/m-CORE.setting","jit_entries":590,"entries":590}]},{"exclusive_time":52,"id":49072720,"line":856,"name":"sink","inclusive_time":52,"file":"gen/moar/m-CORE.setting","jit_entries":590,"entries":590}]}]}]},{"exclusive_time":1773,"id":49859472,"line":15771,"name":"STORE","inclusive_time":23752,"spesh_entries":334,"file":"gen/moar/m-CORE.setting","jit_entries":208,"entries":590,"callees":[{"exclusive_time":4909,"id":49860080,"line":15779,"name":"STORE-ITERABLE","allocations":[{"count":590,"id":33960376,"type":"BOOTCode","jit":530},{"count":590,"id":68411984,"type":"IterationBuffer","jit":530},{"count":590,"id":44229096,"type":"Scalar","jit":530}],"inclusive_time":21979,"file":"gen/moar/m-CORE.setting","jit_entries":530,"entries":590,"callees":[{"exclusive_time":2977,"id":49800800,"line":13990,"name":"iterator","allocations":[{"count":590,"id":33960376,"type":"BOOTCode","jit":590}],"inclusive_time":6459,"file":"gen/moar/m-CORE.setting","jit_entries":590,"entries":590,"callees":[{"exclusive_time":74,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":74,"file":"gen/moar/m-CORE.setting","jit_entries":590,"entries":590},{"exclusive_time":46,"id":49806576,"line":14088,"name":"sink","inclusive_time":46,"file":"gen/moar/m-CORE.setting","jit_entries":590,"entries":590},{"exclusive_time":649,"id":49801104,"line":13992,"name":"","allocations":[{"count":590,"id":44229096,"type":"Scalar","jit":590}],"inclusive_time":649,"file":"gen/moar/m-CORE.setting","jit_entries":590,"entries":590},{"exclusive_time":2175,"id":49801712,"line":14004,"name":"new","allocations":[{"count":590,"id":67906128,"type":"<anon|352550624>","jit":590}],"inclusive_time":2710,"file":"gen/moar/m-CORE.setting","jit_entries":590,"entries":590,"callees":[{"exclusive_time":103,"id":49052656,"line":495,"name":"of","inclusive_time":103,"file":"gen/moar/m-CORE.setting","jit_entries":590,"entries":590},{"exclusive_time":431,"id":49801408,"line":13998,"name":"BUILD","inclusive_time":431,"file":"gen/moar/m-CORE.setting","jit_entries":590,"entries":590}]}]},{"exclusive_time":643,"id":49882880,"line":15464,"name":"new","allocations":[{"count":590,"id":68412368,"type":"Array::ArrayReificationTarget","jit":590}],"inclusive_time":643,"file":"gen/moar/m-CORE.setting","jit_entries":590,"entries":590},{"exclusive_time":5336,"id":49802624,"line":14020,"name":"push-until-lazy","allocations":[{"count":1180,"id":44229096,"type":"Scalar","jit":1118}],"inclusive_time":9857,"file":"gen/moar/m-CORE.setting","jit_entries":559,"entries":590,"callees":[{"exclusive_time":1996,"id":49845792,"line":13753,"name":"reify-until-lazy","allocations":[{"count":590,"id":33960376,"type":"BOOTCode","jit":585}],"inclusive_time":2094,"file":"gen/moar/m-CORE.setting","deopt_one":585,"jit_entries":585,"entries":590,"callees":[{"exclusive_time":98,"id":49806576,"line":14088,"name":"sink","inclusive_time":98,"file":"gen/moar/m-CORE.setting","jit_entries":1180,"entries":1180}]},{"exclusive_time":1463,"id":49883184,"line":15471,"name":"push","allocations":[{"count":1180,"id":44229096,"type":"Scalar"}],"inclusive_time":1463,"file":"gen/moar/m-CORE.setting","entries":1180},{"exclusive_time":109,"id":48509712,"line":8704,"name":"prefix:<!>","inclusive_time":109,"file":"gen/moar/m-CORE.setting","inlined_entries":559,"jit_entries":590,"entries":590},{"exclusive_time":654,"id":49849440,"line":13795,"name":"fully-reified","inclusive_time":853,"file":"gen/moar/m-CORE.setting","jit_entries":585,"entries":590,"callees":[{"exclusive_time":198,"id":48509712,"line":8704,"name":"prefix:<!>","inclusive_time":198,"file":"gen/moar/m-CORE.setting","inlined_entries":1170,"jit_entries":1180,"entries":1180}]}]},{"exclusive_time":108,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":108,"file":"gen/moar/m-CORE.setting","inlined_entries":530,"jit_entries":590,"entries":590}]}]},{"exclusive_time":96,"id":49806576,"line":14088,"name":"sink","inclusive_time":96,"file":"gen/moar/m-CORE.setting","jit_entries":1180,"entries":1180},{"exclusive_time":1500,"id":48609728,"line":13594,"name":"infix:<..>","allocations":[{"count":1180,"id":44229096,"type":"Scalar","jit":770}],"inclusive_time":52931,"file":"gen/moar/m-CORE.setting","jit_entries":385,"entries":590,"callees":[{"exclusive_time":5398,"id":49079712,"line":941,"name":"new","inclusive_time":51430,"spesh_entries":581,"file":"gen/moar/m-CORE.setting","entries":590,"callees":[{"exclusive_time":87,"id":52321312,"line":3008,"name":"","allocations":[{"count":590,"id":44228664,"type":"List","jit":590}],"inclusive_time":87,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":590,"entries":590},{"exclusive_time":10220,"id":52314624,"line":2048,"name":"","allocations":[{"count":1180,"id":33960376,"type":"BOOTCode"},{"count":1180,"id":33961312,"type":"NQPArray"},{"count":590,"id":33960328,"type":"BOOTHash"},{"count":590,"id":33960520,"type":"CallCapture"}],"inclusive_time":35876,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":590,"callees":[{"exclusive_time":1561,"id":52294864,"line":920,"name":"is_bindable","allocations":[{"count":590,"id":33960376,"spesh":590,"type":"BOOTCode"}],"inclusive_time":25656,"spesh_entries":590,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":590,"callees":[{"exclusive_time":1275,"id":52295168,"line":926,"name":"","inclusive_time":24094,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":590,"callees":[{"exclusive_time":8267,"id":52292736,"line":606,"name":"bind","allocations":[{"count":590,"id":44228640,"spesh":590,"type":"Hash"}],"inclusive_time":22819,"spesh_entries":590,"file":"gen/moar/m-BOOTSTRAP.nqp","deopt_one":590,"entries":590,"callees":[{"exclusive_time":12266,"id":52290912,"line":168,"name":"bind_one_param","allocations":[{"count":7080,"id":33960376,"type":"BOOTCode"},{"count":590,"id":33961456,"type":"str"},{"count":1770,"id":44229096,"type":"Scalar"}],"inclusive_time":14085,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":3540,"callees":[{"exclusive_time":1508,"id":52616112,"line":2635,"name":"type_check","allocations":[{"count":1180,"id":33961360,"type":"NQPArrayIter","jit":1176}],"inclusive_time":1628,"file":"gen/moar/m-Metamodel.nqp","jit_entries":588,"entries":590,"callees":[{"exclusive_time":120,"id":52544976,"line":161,"name":"pretending_to_be","inclusive_time":120,"spesh_entries":588,"file":"gen/moar/m-Metamodel.nqp","jit_entries":2,"entries":590}]},{"exclusive_time":77,"id":52611248,"line":2516,"name":"archetypes","inclusive_time":77,"file":"gen/moar/m-Metamodel.nqp","jit_entries":523,"entries":590},{"exclusive_time":111,"id":52538592,"line":88,"name":"generic","inclusive_time":111,"file":"gen/moar/m-Metamodel.nqp","jit_entries":590,"entries":590}]},{"exclusive_time":466,"id":52292432,"line":573,"name":"handle_optional","inclusive_time":466,"spesh_entries":1180,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1180}]}]}]}]},{"exclusive_time":3618,"id":49746080,"line":13100,"name":"new","allocations":[{"count":1770,"id":44229096,"type":"Scalar","jit":1569},{"count":590,"id":65480504,"type":"Range","jit":523}],"inclusive_time":10068,"file":"gen/moar/m-CORE.setting","jit_entries":523,"entries":590,"callees":[{"exclusive_time":2563,"id":48468064,"line":8187,"name":"infix:<==>","inclusive_time":3432,"file":"gen/moar/m-CORE.setting","inlined_entries":523,"jit_entries":1080,"entries":1180,"callees":[{"exclusive_time":449,"id":49478864,"line":8273,"name":"Bridge","allocations":[{"count":1180,"id":44229000,"type":"Num","jit":1113}],"inclusive_time":449,"file":"gen/moar/m-CORE.setting","jit_entries":1113,"entries":1180},{"exclusive_time":87,"id":49496496,"line":8826,"name":"Bridge","inclusive_time":87,"file":"gen/moar/m-CORE.setting","jit_entries":1132,"entries":1180},{"exclusive_time":332,"id":48537680,"line":9200,"name":"infix:<==>","inclusive_time":332,"file":"gen/moar/m-CORE.setting","inlined_entries":1080,"jit_entries":1086,"entries":1180}]},{"exclusive_time":2918,"id":49747904,"line":13124,"name":"BUILD","allocations":[{"count":1180,"id":44229096,"type":"Scalar","jit":920}],"inclusive_time":3017,"file":"gen/moar/m-CORE.setting","deopt_one":460,"jit_entries":460,"entries":590,"callees":[{"exclusive_time":98,"id":49079408,"line":937,"name":"defined","inclusive_time":98,"file":"gen/moar/m-CORE.setting","jit_entries":1179,"entries":1180}]}]}]}]},{"exclusive_time":1571,"id":52311584,"line":1621,"name":"","allocations":[{"count":1770,"id":44229240,"spesh":1770,"type":"Block"},{"count":1770,"id":33960376,"spesh":1770,"type":"BOOTCode"}],"inclusive_time":1571,"spesh_entries":1770,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1770},{"exclusive_time":6951,"id":49298592,"line":3773,"name":"map","inclusive_time":33675,"spesh_entries":590,"file":"gen/moar/m-CORE.setting","entries":590,"callees":[{"exclusive_time":82,"id":52321312,"line":3008,"name":"","allocations":[{"count":590,"id":44228664,"type":"List","jit":590}],"inclusive_time":82,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":590,"entries":590},{"exclusive_time":9460,"id":52314624,"line":2048,"name":"","allocations":[{"count":1180,"id":33960376,"type":"BOOTCode"},{"count":1180,"id":33961312,"type":"NQPArray"},{"count":590,"id":33960328,"type":"BOOTHash"}],"inclusive_time":9537,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":590,"callees":[{"exclusive_time":77,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":77,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":590,"entries":590}]},{"exclusive_time":2987,"id":49299808,"line":3779,"name":"map","allocations":[{"count":1180,"id":44229096,"spesh":1176,"type":"Scalar"}],"inclusive_time":17103,"spesh_entries":588,"file":"gen/moar/m-CORE.setting","entries":590,"callees":[{"exclusive_time":5180,"id":49750640,"line":13159,"name":"iterator","allocations":[{"count":2950,"id":33960376,"type":"BOOTCode","jit":2315},{"count":1770,"id":44228616,"type":"IntAttrRef","jit":1389},{"count":590,"id":44229096,"type":"Scalar","jit":463}],"inclusive_time":8282,"file":"gen/moar/m-CORE.setting","jit_entries":463,"entries":590,"callees":[{"exclusive_time":168,"id":48510016,"line":8705,"name":"prefix:<!>","inclusive_time":168,"file":"gen/moar/m-CORE.setting","inlined_entries":926,"jit_entries":1180,"entries":1180},{"exclusive_time":533,"id":49752160,"line":13164,"name":"","inclusive_time":533,"file":"gen/moar/m-CORE.setting","jit_entries":513,"entries":590},{"exclusive_time":180,"id":48477184,"line":8439,"name":"infix:<+>","inclusive_time":180,"file":"gen/moar/m-CORE.setting","jit_entries":590,"entries":590},{"exclusive_time":256,"id":48477792,"line":8446,"name":"infix:<->","inclusive_time":256,"file":"gen/moar/m-CORE.setting","jit_entries":590,"entries":590},{"exclusive_time":1295,"id":49752768,"line":13169,"name":"new","allocations":[{"count":590,"id":67906560,"type":"<anon|349030928>","jit":488}],"inclusive_time":1962,"file":"gen/moar/m-CORE.setting","jit_entries":488,"entries":590,"callees":[{"exclusive_time":543,"id":49752464,"line":13168,"name":"BUILD","inclusive_time":667,"file":"gen/moar/m-CORE.setting","jit_entries":488,"entries":590,"callees":[{"exclusive_time":123,"id":48477792,"line":8446,"name":"infix:<->","inclusive_time":123,"file":"gen/moar/m-CORE.setting","inlined_entries":488,"jit_entries":590,"entries":590}]}]}]},{"exclusive_time":3655,"id":49303152,"line":3840,"name":"sequential-map","allocations":[{"count":1180,"id":33960376,"type":"BOOTCode","jit":1176},{"count":1770,"id":44229096,"type":"Scalar","jit":1764}],"inclusive_time":5833,"file":"gen/moar/m-CORE.setting","jit_entries":588,"entries":590,"callees":[{"exclusive_time":818,"id":49411680,"line":6408,"name":"count","inclusive_time":899,"file":"gen/moar/m-CORE.setting","jit_entries":590,"entries":590,"callees":[{"exclusive_time":81,"id":50093552,"line":18706,"name":"count","inclusive_time":81,"file":"gen/moar/m-CORE.setting","jit_entries":590,"entries":590}]},{"exclusive_time":89,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":89,"file":"gen/moar/m-CORE.setting","inlined_entries":588,"jit_entries":590,"entries":590},{"exclusive_time":240,"id":49304064,"line":3847,"name":"","inclusive_time":240,"file":"gen/moar/m-CORE.setting","jit_entries":590,"entries":590},{"exclusive_time":715,"id":49401344,"line":3827,"name":"new","allocations":[{"count":1770,"id":44229096,"type":"Scalar","jit":1764},{"count":590,"id":67908360,"type":"<anon|159066640>","jit":588}],"inclusive_time":715,"file":"gen/moar/m-CORE.setting","jit_entries":588,"entries":590},{"exclusive_time":232,"id":49700480,"line":12399,"name":"new","allocations":[{"count":590,"id":67909080,"type":"Seq","jit":590}],"inclusive_time":232,"file":"gen/moar/m-CORE.setting","jit_entries":590,"entries":590}]}]}]},{"exclusive_time":3240,"id":49705648,"line":12474,"name":"sink","inclusive_time":35632,"file":"gen/moar/m-CORE.setting","entries":590,"callees":[{"exclusive_time":1759,"id":49701088,"line":12407,"name":"iterator","inclusive_time":2098,"file":"gen/moar/m-CORE.setting","jit_entries":590,"entries":590,"callees":[{"exclusive_time":54,"id":49806576,"line":14088,"name":"sink","inclusive_time":54,"file":"gen/moar/m-CORE.setting","jit_entries":590,"entries":590},{"exclusive_time":284,"id":52616112,"line":2635,"name":"type_check","inclusive_time":284,"file":"gen/moar/m-Metamodel.nqp","jit_entries":590,"entries":590}]},{"exclusive_time":12460,"id":49306192,"line":3921,"name":"sink-all","allocations":[{"count":590,"id":33960376,"type":"BOOTCode","jit":590},{"count":3540,"id":44229096,"type":"Scalar","jit":3540}],"inclusive_time":30133,"file":"gen/moar/m-CORE.setting","deopt_one":590,"jit_entries":590,"entries":590,"callees":[{"exclusive_time":69,"id":48510016,"line":8705,"name":"prefix:<!>","inclusive_time":69,"file":"gen/moar/m-CORE.setting","jit_entries":590,"entries":590},{"exclusive_time":1292,"id":49417456,"line":6478,"name":"phasers","inclusive_time":1386,"file":"gen/moar/m-CORE.setting","jit_entries":1180,"entries":1180,"callees":[{"exclusive_time":94,"id":49806576,"line":14088,"name":"sink","inclusive_time":94,"file":"gen/moar/m-CORE.setting","jit_entries":1180,"entries":1180}]},{"exclusive_time":508,"id":48405440,"line":7763,"name":"prefix:<+>","inclusive_time":3263,"file":"gen/moar/m-CORE.setting","jit_entries":590,"entries":590,"callees":[{"exclusive_time":638,"id":49795632,"line":13911,"name":"Numeric","inclusive_time":2754,"spesh_entries":590,"file":"gen/moar/m-CORE.setting","entries":590,"callees":[{"exclusive_time":1939,"id":49797760,"line":13932,"name":"elems","inclusive_time":2116,"spesh_entries":590,"file":"gen/moar/m-CORE.setting","entries":590,"callees":[{"exclusive_time":84,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":84,"file":"gen/moar/m-CORE.setting","jit_entries":590,"entries":590},{"exclusive_time":92,"id":49806576,"line":14088,"name":"sink","inclusive_time":92,"file":"gen/moar/m-CORE.setting","jit_entries":1180,"entries":1180}]}]}]},{"exclusive_time":1426,"id":49078192,"line":929,"name":"Bool","inclusive_time":3150,"spesh_entries":590,"file":"gen/moar/m-CORE.setting","entries":590,"callees":[{"exclusive_time":88,"id":52321312,"line":3008,"name":"","allocations":[{"count":590,"id":44228664,"type":"List","jit":590}],"inclusive_time":88,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":590,"entries":590},{"exclusive_time":1495,"id":49794720,"line":13904,"name":"Bool","inclusive_time":1635,"file":"gen/moar/m-CORE.setting","jit_entries":590,"entries":590,"callees":[{"exclusive_time":60,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":60,"file":"gen/moar/m-CORE.setting","jit_entries":590,"entries":590},{"exclusive_time":43,"id":49806576,"line":14088,"name":"sink","inclusive_time":43,"file":"gen/moar/m-CORE.setting","jit_entries":590,"entries":590},{"exclusive_time":36,"id":48508496,"line":8699,"name":"prefix:<so>","inclusive_time":36,"file":"gen/moar/m-CORE.setting","jit_entries":590,"entries":590}]}]},{"exclusive_time":130,"id":49806576,"line":14088,"name":"sink","inclusive_time":130,"file":"gen/moar/m-CORE.setting","jit_entries":1770,"entries":1770},{"exclusive_time":568,"id":49753072,"line":13171,"name":"pull-one","allocations":[{"count":590,"id":44228616,"type":"IntAttrRef","jit":550}],"inclusive_time":568,"file":"gen/moar/m-CORE.setting","jit_entries":1100,"entries":1180},{"exclusive_time":3772,"id":48633136,"line":14711,"name":"","allocations":[{"count":590,"id":44229096,"type":"Scalar","jit":434}],"inclusive_time":7879,"file":"gen/moar/m-CORE.setting","jit_entries":434,"entries":590,"callees":[{"exclusive_time":943,"id":48657456,"line":14967,"name":"postcircumfix:<[ ]>","inclusive_time":1740,"file":"gen/moar/m-CORE.setting","jit_entries":583,"entries":590,"callees":[{"exclusive_time":797,"id":49863120,"line":15835,"name":"AT-POS","inclusive_time":797,"spesh_entries":583,"file":"gen/moar/m-CORE.setting","jit_entries":7,"entries":590}]},{"exclusive_time":2082,"id":49797760,"line":13932,"name":"elems","inclusive_time":2366,"spesh_entries":434,"file":"gen/moar/m-CORE.setting","jit_entries":149,"entries":590,"callees":[{"exclusive_time":193,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":193,"file":"gen/moar/m-CORE.setting","jit_entries":590,"entries":590},{"exclusive_time":90,"id":49806576,"line":14088,"name":"sink","inclusive_time":90,"file":"gen/moar/m-CORE.setting","jit_entries":1180,"entries":1180}]}]},{"exclusive_time":203,"id":49072720,"line":856,"name":"sink","inclusive_time":203,"file":"gen/moar/m-CORE.setting","entries":590},{"exclusive_time":845,"id":49416544,"line":6469,"name":"fire_phasers","allocations":[{"count":590,"id":33960376,"spesh":587,"type":"BOOTCode"}],"inclusive_time":1020,"spesh_entries":587,"file":"gen/moar/m-CORE.setting","entries":590,"callees":[{"exclusive_time":175,"id":48510016,"line":8705,"name":"prefix:<!>","inclusive_time":175,"spesh_entries":587,"file":"gen/moar/m-CORE.setting","inlined_entries":587,"jit_entries":3,"entries":590}]}]},{"exclusive_time":159,"id":49072720,"line":856,"name":"sink","inclusive_time":159,"file":"gen/moar/m-CORE.setting","entries":590}]},{"exclusive_time":1238,"id":48657456,"line":14967,"name":"postcircumfix:<[ ]>","inclusive_time":1780,"spesh_entries":334,"file":"gen/moar/m-CORE.setting","inlined_entries":334,"deopt_one":589,"jit_entries":255,"entries":590,"callees":[{"exclusive_time":542,"id":49863120,"line":15835,"name":"AT-POS","inclusive_time":542,"spesh_entries":589,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":590}]},{"exclusive_time":757,"id":49857648,"line":15753,"name":"is-lazy","allocations":[{"count":590,"id":44229096,"type":"Scalar","jit":459}],"inclusive_time":757,"file":"gen/moar/m-CORE.setting","jit_entries":459,"entries":590},{"exclusive_time":3417,"id":48602736,"line":12668,"name":"GATHER","allocations":[{"count":590,"id":33960376,"type":"BOOTCode","jit":473}],"inclusive_time":7372,"file":"gen/moar/m-CORE.setting","jit_entries":473,"entries":590,"callees":[{"exclusive_time":899,"id":48603040,"line":12669,"name":"","allocations":[{"count":590,"id":33960376,"type":"BOOTCode","jit":514},{"count":590,"id":44229096,"type":"Scalar","jit":514}],"inclusive_time":899,"file":"gen/moar/m-CORE.setting","jit_entries":514,"entries":590},{"exclusive_time":1823,"id":48603648,"line":12676,"name":"new","allocations":[{"count":590,"id":67906656,"type":"<anon|340889968>","jit":473}],"inclusive_time":2681,"file":"gen/moar/m-CORE.setting","jit_entries":473,"entries":590,"callees":[{"exclusive_time":857,"id":52311584,"line":1621,"name":"","allocations":[{"count":1180,"id":44229240,"spesh":1180,"type":"Block"},{"count":1180,"id":33960376,"spesh":1180,"type":"BOOTCode"}],"inclusive_time":857,"spesh_entries":1180,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1180}]},{"exclusive_time":374,"id":49700480,"line":12399,"name":"new","allocations":[{"count":590,"id":67909080,"type":"Seq","jit":590}],"inclusive_time":374,"file":"gen/moar/m-CORE.setting","jit_entries":590,"entries":590}]},{"exclusive_time":724,"id":49291904,"line":3690,"name":"lazy-if","allocations":[{"count":590,"id":44229096,"type":"Scalar","jit":385}],"inclusive_time":724,"file":"gen/moar/m-CORE.setting","jit_entries":385,"entries":590}]}]},{"exclusive_time":1971,"id":49859472,"line":15771,"name":"STORE","inclusive_time":43115,"spesh_entries":326,"file":"gen/moar/m-CORE.setting","jit_entries":217,"entries":591,"callees":[{"exclusive_time":5005,"id":49860080,"line":15779,"name":"STORE-ITERABLE","allocations":[{"count":591,"id":33960376,"type":"BOOTCode","jit":531},{"count":591,"id":68411984,"type":"IterationBuffer","jit":531},{"count":591,"id":44229096,"type":"Scalar","jit":531}],"inclusive_time":41144,"file":"gen/moar/m-CORE.setting","jit_entries":531,"entries":591,"callees":[{"exclusive_time":2840,"id":49800800,"line":13990,"name":"iterator","allocations":[{"count":591,"id":33960376,"type":"BOOTCode","jit":591}],"inclusive_time":6260,"file":"gen/moar/m-CORE.setting","jit_entries":591,"entries":591,"callees":[{"exclusive_time":80,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":80,"file":"gen/moar/m-CORE.setting","jit_entries":591,"entries":591},{"exclusive_time":55,"id":49806576,"line":14088,"name":"sink","inclusive_time":55,"file":"gen/moar/m-CORE.setting","jit_entries":591,"entries":591},{"exclusive_time":413,"id":49801104,"line":13992,"name":"","allocations":[{"count":591,"id":44229096,"type":"Scalar","jit":591}],"inclusive_time":413,"file":"gen/moar/m-CORE.setting","jit_entries":591,"entries":591},{"exclusive_time":2282,"id":49801712,"line":14004,"name":"new","allocations":[{"count":591,"id":67906128,"type":"<anon|352550624>","jit":591}],"inclusive_time":2869,"file":"gen/moar/m-CORE.setting","jit_entries":591,"entries":591,"callees":[{"exclusive_time":129,"id":49052656,"line":495,"name":"of","inclusive_time":129,"file":"gen/moar/m-CORE.setting","jit_entries":591,"entries":591},{"exclusive_time":456,"id":49801408,"line":13998,"name":"BUILD","inclusive_time":456,"file":"gen/moar/m-CORE.setting","jit_entries":591,"entries":591}]}]},{"exclusive_time":516,"id":49882880,"line":15464,"name":"new","allocations":[{"count":591,"id":68412368,"type":"Array::ArrayReificationTarget","jit":590}],"inclusive_time":516,"file":"gen/moar/m-CORE.setting","jit_entries":590,"entries":591},{"exclusive_time":20607,"id":49802624,"line":14020,"name":"push-until-lazy","allocations":[{"count":1182,"id":44229096,"type":"Scalar","jit":1118}],"inclusive_time":29231,"file":"gen/moar/m-CORE.setting","deopt_one":559,"jit_entries":559,"entries":591,"callees":[{"exclusive_time":2878,"id":49845792,"line":13753,"name":"reify-until-lazy","allocations":[{"count":591,"id":33960376,"type":"BOOTCode","jit":586},{"count":591,"id":44229024,"type":"Int","jit":586}],"inclusive_time":2985,"file":"gen/moar/m-CORE.setting","deopt_one":586,"jit_entries":586,"entries":591,"callees":[{"exclusive_time":107,"id":49806576,"line":14088,"name":"sink","inclusive_time":107,"file":"gen/moar/m-CORE.setting","jit_entries":1182,"entries":1182}]},{"exclusive_time":4483,"id":49883184,"line":15471,"name":"push","allocations":[{"count":11820,"id":44229096,"type":"Scalar","jit":11820}],"inclusive_time":4483,"file":"gen/moar/m-CORE.setting","jit_entries":11820,"entries":11820},{"exclusive_time":73,"id":48509712,"line":8704,"name":"prefix:<!>","inclusive_time":73,"file":"gen/moar/m-CORE.setting","jit_entries":591,"entries":591},{"exclusive_time":875,"id":49849440,"line":13795,"name":"fully-reified","inclusive_time":1082,"file":"gen/moar/m-CORE.setting","jit_entries":585,"entries":591,"callees":[{"exclusive_time":206,"id":48509712,"line":8704,"name":"prefix:<!>","inclusive_time":206,"file":"gen/moar/m-CORE.setting","inlined_entries":1170,"jit_entries":1182,"entries":1182}]}]},{"exclusive_time":129,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":129,"file":"gen/moar/m-CORE.setting","inlined_entries":531,"jit_entries":591,"entries":591}]}]},{"exclusive_time":5,"id":49395264,"line":5123,"name":"head","inclusive_time":51,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":11,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":12,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":1,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":10,"id":49395568,"line":5124,"name":"head","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":32,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":48484176,"line":8533,"name":"infix:«<=»","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":1,"id":49395872,"line":5127,"name":"","allocations":[{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":2,"id":49396480,"line":5135,"name":"new","allocations":[{"count":1,"id":67907496,"type":"<anon|182679216>"}],"inclusive_time":18,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":3,"id":49396176,"line":5130,"name":"BUILD","allocations":[{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":15,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":3,"id":49800800,"line":13990,"name":"iterator","allocations":[{"count":1,"id":33960376,"type":"BOOTCode","jit":1}],"inclusive_time":11,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":0,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":49801104,"line":13992,"name":"","allocations":[{"count":1,"id":44229096,"type":"Scalar","jit":1}],"inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":2,"id":49801712,"line":14004,"name":"new","allocations":[{"count":1,"id":67906128,"type":"<anon|352550624>","jit":1}],"inclusive_time":6,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":3,"id":49877712,"line":16147,"name":"of","inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52651072,"line":3777,"name":"of","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","entries":1}]},{"exclusive_time":0,"id":49801408,"line":13998,"name":"BUILD","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]}]}]},{"exclusive_time":1,"id":49700480,"line":12399,"name":"new","allocations":[{"count":1,"id":67909080,"type":"Seq"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":1186,"id":48630400,"line":14663,"name":"prefix:<|>","inclusive_time":9711,"file":"gen/moar/m-CORE.setting","jit_entries":434,"entries":591,"callees":[{"exclusive_time":2451,"id":49702304,"line":12428,"name":"Slip","inclusive_time":8524,"file":"gen/moar/m-CORE.setting","jit_entries":434,"entries":591,"callees":[{"exclusive_time":1939,"id":49701088,"line":12407,"name":"iterator","inclusive_time":2267,"file":"gen/moar/m-CORE.setting","jit_entries":591,"entries":591,"callees":[{"exclusive_time":47,"id":49806576,"line":14088,"name":"sink","inclusive_time":47,"file":"gen/moar/m-CORE.setting","jit_entries":591,"entries":591},{"exclusive_time":280,"id":52616112,"line":2635,"name":"type_check","inclusive_time":280,"file":"gen/moar/m-Metamodel.nqp","jit_entries":591,"entries":591}]},{"exclusive_time":2016,"id":49791072,"line":13804,"name":"from-iterator","allocations":[{"count":591,"id":44228784,"type":"Slip","jit":576},{"count":591,"id":68411984,"type":"IterationBuffer","jit":576},{"count":591,"id":65481320,"type":"List::Reifier","jit":576}],"inclusive_time":3805,"file":"gen/moar/m-CORE.setting","jit_entries":576,"entries":591,"callees":[{"exclusive_time":1607,"id":49800496,"line":13985,"name":"reification-target","inclusive_time":1789,"file":"gen/moar/m-CORE.setting","jit_entries":582,"entries":591,"callees":[{"exclusive_time":124,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":124,"file":"gen/moar/m-CORE.setting","jit_entries":588,"entries":591},{"exclusive_time":57,"id":49806576,"line":14088,"name":"sink","inclusive_time":57,"file":"gen/moar/m-CORE.setting","jit_entries":591,"entries":591}]}]}]}]},{"exclusive_time":81,"id":49150848,"line":1792,"name":"Slip","inclusive_time":111,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":10,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":11,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":16,"id":49820256,"line":14225,"name":"Slip","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"}],"inclusive_time":18,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":2,"id":49820864,"line":14232,"name":"","allocations":[{"count":1,"id":44229096,"type":"Scalar"},{"count":1,"id":44228784,"type":"Slip"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":4,"id":48618240,"line":14541,"name":"infix:<,>","inclusive_time":43,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":9,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"spesh":2,"type":"BOOTCode"},{"count":2,"id":33961312,"spesh":2,"type":"NQPArray"},{"count":1,"id":33960328,"spesh":1,"type":"BOOTHash"}],"inclusive_time":10,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":16,"id":48619152,"line":14547,"name":"infix:<,>","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":1,"id":44228664,"type":"List"},{"count":1,"id":68411984,"type":"IterationBuffer"},{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":28,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":5,"id":48620064,"line":14553,"name":"","allocations":[{"count":1,"id":65481320,"type":"List::Reifier"}],"inclusive_time":11,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":3,"id":49800496,"line":13985,"name":"reification-target","inclusive_time":4,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]},{"exclusive_time":1,"id":39754944,"line":655,"name":"last","inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":39750384,"line":603,"name":"THROW-NIL","allocations":[{"count":1,"id":33960568,"type":"BOOTException"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]}]}]}]},{"exclusive_time":6985,"id":49395568,"line":5124,"name":"head","allocations":[{"count":590,"id":33960376,"type":"BOOTCode","jit":459},{"count":590,"id":44229096,"type":"Scalar","jit":459}],"inclusive_time":20646,"file":"gen/moar/m-CORE.setting","jit_entries":459,"entries":590,"callees":[{"exclusive_time":280,"id":48484176,"line":8533,"name":"infix:«<=»","inclusive_time":280,"file":"gen/moar/m-CORE.setting","jit_entries":513,"entries":590},{"exclusive_time":82,"id":49806576,"line":14088,"name":"sink","inclusive_time":82,"file":"gen/moar/m-CORE.setting","jit_entries":590,"entries":590},{"exclusive_time":1059,"id":49395872,"line":5127,"name":"","allocations":[{"count":590,"id":44229096,"type":"Scalar","jit":513}],"inclusive_time":1059,"file":"gen/moar/m-CORE.setting","jit_entries":513,"entries":590},{"exclusive_time":1636,"id":49396480,"line":5135,"name":"new","allocations":[{"count":590,"id":67907496,"type":"<anon|182679216>","jit":484}],"inclusive_time":11257,"file":"gen/moar/m-CORE.setting","jit_entries":484,"entries":590,"callees":[{"exclusive_time":1563,"id":49396176,"line":5130,"name":"BUILD","allocations":[{"count":590,"id":44229096,"type":"Scalar","jit":484}],"inclusive_time":9621,"file":"gen/moar/m-CORE.setting","jit_entries":484,"entries":590,"callees":[{"exclusive_time":2654,"id":49800800,"line":13990,"name":"iterator","allocations":[{"count":590,"id":33960376,"type":"BOOTCode","jit":590}],"inclusive_time":8058,"file":"gen/moar/m-CORE.setting","jit_entries":590,"entries":590,"callees":[{"exclusive_time":186,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":186,"file":"gen/moar/m-CORE.setting","jit_entries":590,"entries":590},{"exclusive_time":53,"id":49806576,"line":14088,"name":"sink","inclusive_time":53,"file":"gen/moar/m-CORE.setting","jit_entries":590,"entries":590},{"exclusive_time":453,"id":49801104,"line":13992,"name":"","allocations":[{"count":590,"id":44229096,"type":"Scalar","jit":590}],"inclusive_time":453,"file":"gen/moar/m-CORE.setting","jit_entries":590,"entries":590},{"exclusive_time":1693,"id":49801712,"line":14004,"name":"new","allocations":[{"count":590,"id":67906128,"type":"<anon|352550624>","jit":590}],"inclusive_time":4710,"file":"gen/moar/m-CORE.setting","jit_entries":590,"entries":590,"callees":[{"exclusive_time":2592,"id":49877712,"line":16147,"name":"of","inclusive_time":2713,"file":"gen/moar/m-CORE.setting","deopt_one":590,"jit_entries":590,"entries":590,"callees":[{"exclusive_time":121,"id":52651072,"line":3777,"name":"of","inclusive_time":121,"file":"gen/moar/m-Metamodel.nqp","jit_entries":546,"entries":590}]},{"exclusive_time":303,"id":49801408,"line":13998,"name":"BUILD","inclusive_time":303,"file":"gen/moar/m-CORE.setting","jit_entries":590,"entries":590}]}]}]}]},{"exclusive_time":979,"id":49700480,"line":12399,"name":"new","allocations":[{"count":590,"id":67909080,"type":"Seq"}],"inclusive_time":979,"file":"gen/moar/m-CORE.setting","entries":590}]},{"exclusive_time":1677,"id":49820256,"line":14225,"name":"Slip","allocations":[{"count":590,"id":33960376,"spesh":326,"type":"BOOTCode","jit":58}],"inclusive_time":2438,"spesh_entries":326,"file":"gen/moar/m-CORE.setting","jit_entries":58,"entries":590,"callees":[{"exclusive_time":761,"id":49820864,"line":14232,"name":"","allocations":[{"count":590,"id":44229096,"type":"Scalar","jit":434},{"count":590,"id":44228784,"type":"Slip","jit":434}],"inclusive_time":761,"file":"gen/moar/m-CORE.setting","jit_entries":434,"entries":590}]},{"exclusive_time":2753,"id":48619152,"line":14547,"name":"infix:<,>","allocations":[{"count":590,"id":33960376,"spesh":346,"type":"BOOTCode"},{"count":590,"id":44228664,"spesh":346,"type":"List"},{"count":590,"id":68411984,"spesh":346,"type":"IterationBuffer"},{"count":590,"id":44229096,"spesh":346,"type":"Scalar"}],"inclusive_time":7514,"spesh_entries":346,"file":"gen/moar/m-CORE.setting","entries":590,"callees":[{"exclusive_time":2199,"id":48620064,"line":14553,"name":"","allocations":[{"count":590,"id":65481320,"type":"List::Reifier","jit":384}],"inclusive_time":4761,"file":"gen/moar/m-CORE.setting","jit_entries":384,"entries":590,"callees":[{"exclusive_time":1326,"id":49800496,"line":13985,"name":"reification-target","inclusive_time":1456,"file":"gen/moar/m-CORE.setting","jit_entries":590,"entries":590,"callees":[{"exclusive_time":79,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":79,"file":"gen/moar/m-CORE.setting","jit_entries":590,"entries":590},{"exclusive_time":49,"id":49806576,"line":14088,"name":"sink","inclusive_time":49,"file":"gen/moar/m-CORE.setting","jit_entries":590,"entries":590}]},{"exclusive_time":684,"id":39754944,"line":655,"name":"last","inclusive_time":1106,"spesh_entries":384,"file":"gen/moar/m-CORE.setting","jit_entries":206,"entries":590,"callees":[{"exclusive_time":421,"id":39750384,"line":603,"name":"THROW-NIL","allocations":[{"count":590,"id":33960568,"spesh":590,"type":"BOOTException"}],"inclusive_time":421,"spesh_entries":590,"file":"gen/moar/m-CORE.setting","entries":590}]}]}]}]},{"exclusive_time":62,"id":48441008,"line":7920,"name":"infix:<*>","inclusive_time":306,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":78,"id":52314624,"line":2048,"name":"","allocations":[{"count":4,"id":33960376,"spesh":4,"type":"BOOTCode"},{"count":4,"id":33961312,"spesh":4,"type":"NQPArray"},{"count":2,"id":33960328,"spesh":2,"type":"BOOTHash"}],"inclusive_time":80,"spesh_entries":2,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":2,"callees":[{"exclusive_time":1,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":2,"entries":2}]},{"exclusive_time":11,"id":48714608,"line":19105,"name":"infix:<*>","inclusive_time":86,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":3,"id":49200400,"line":2339,"name":"<anon>","inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":4},{"exclusive_time":3,"id":48441008,"line":7920,"name":"infix:<*>","inclusive_time":34,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":26,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"spesh":2,"type":"BOOTCode"},{"count":2,"id":33961312,"spesh":2,"type":"NQPArray"},{"count":1,"id":33960328,"spesh":1,"type":"BOOTHash"}],"inclusive_time":27,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":1,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]},{"exclusive_time":3,"id":48478400,"line":8453,"name":"infix:<*>","allocations":[{"count":1,"id":44229024,"type":"Int"}],"inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":1,"id":48478400,"line":8453,"name":"infix:<*>","allocations":[{"count":1,"id":44229024,"type":"Int"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":20,"id":48708528,"line":18996,"name":"DIVIDE_NUMBERS","allocations":[{"count":3,"id":44229096,"type":"Scalar"},{"count":1,"id":66684936,"type":"Rat"}],"inclusive_time":36,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":4,"id":48481440,"line":8500,"name":"infix:<gcd>","allocations":[{"count":1,"id":44229024,"type":"Int"}],"inclusive_time":4,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":8,"id":48479008,"line":8460,"name":"infix:<div>","allocations":[{"count":2,"id":44229024,"type":"Int"}],"inclusive_time":8,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]},{"exclusive_time":1,"id":48483568,"line":8526,"name":"infix:«<»","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":49072720,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]},{"exclusive_time":14,"id":48466544,"line":8177,"name":"infix:<*>","inclusive_time":77,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49496496,"line":8826,"name":"Bridge","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":4,"id":50101152,"line":18832,"name":"Bridge","inclusive_time":13,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":7,"id":50099936,"line":18807,"name":"Num","allocations":[{"count":1,"id":44229000,"type":"Num"}],"inclusive_time":9,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]},{"exclusive_time":18,"id":48441008,"line":7920,"name":"infix:<*>","inclusive_time":48,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":27,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"spesh":2,"type":"BOOTCode"},{"count":2,"id":33961312,"spesh":2,"type":"NQPArray"},{"count":1,"id":33960328,"spesh":1,"type":"BOOTHash"}],"inclusive_time":28,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":1,"id":48533120,"line":9129,"name":"infix:<*>","allocations":[{"count":1,"id":44229000,"type":"Num"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]}]}]},{"exclusive_time":1123,"id":49102512,"line":1183,"name":"Stringy","inclusive_time":2532,"spesh_entries":688,"file":"gen/moar/m-CORE.setting","jit_entries":363,"entries":1200,"callees":[{"exclusive_time":1409,"id":49477344,"line":8254,"name":"Str","allocations":[{"count":1200,"id":44229144,"spesh":688,"type":"Str","jit":368}],"inclusive_time":1409,"spesh_entries":688,"file":"gen/moar/m-CORE.setting","inlined_entries":1051,"jit_entries":368,"entries":1200}]},{"exclusive_time":6240,"id":48760208,"line":25197,"name":"say","allocations":[{"count":600,"id":44229048,"spesh":344,"type":"StrLexRef","jit":50}],"inclusive_time":51097,"spesh_entries":344,"file":"gen/moar/m-CORE.setting","jit_entries":50,"entries":600,"callees":[{"exclusive_time":7279,"id":39748256,"line":556,"name":"DYNAMIC","allocations":[{"count":600,"id":33960376,"type":"BOOTCode","jit":399}],"inclusive_time":15351,"file":"gen/moar/m-CORE.setting","jit_entries":399,"entries":600,"callees":[{"exclusive_time":3762,"id":39748560,"line":558,"name":"","allocations":[{"count":600,"id":33960376,"spesh":399,"type":"BOOTCode"},{"count":600,"id":44229096,"spesh":399,"type":"Scalar"}],"inclusive_time":8024,"spesh_entries":399,"file":"gen/moar/m-CORE.setting","entries":600,"callees":[{"exclusive_time":61,"id":49806576,"line":14088,"name":"sink","inclusive_time":61,"file":"gen/moar/m-CORE.setting","jit_entries":600,"entries":600},{"exclusive_time":4200,"id":39748864,"line":564,"name":"","inclusive_time":4200,"spesh_entries":399,"file":"gen/moar/m-CORE.setting","entries":600}]},{"exclusive_time":48,"id":49806576,"line":14088,"name":"sink","inclusive_time":48,"file":"gen/moar/m-CORE.setting","jit_entries":600,"entries":600}]},{"exclusive_time":877,"id":49198880,"line":2316,"name":"<anon>","inclusive_time":877,"file":"gen/moar/m-CORE.setting","jit_entries":528,"entries":600},{"exclusive_time":28628,"id":50543776,"line":24412,"name":"print","inclusive_time":28628,"spesh_entries":446,"file":"gen/moar/m-CORE.setting","entries":600}]},{"exclusive_time":1429,"id":48714608,"line":19105,"name":"infix:<*>","inclusive_time":5755,"file":"gen/moar/m-CORE.setting","entries":89,"callees":[{"exclusive_time":175,"id":49200400,"line":2339,"name":"<anon>","inclusive_time":175,"file":"gen/moar/m-CORE.setting","jit_entries":324,"entries":356},{"exclusive_time":291,"id":48478400,"line":8453,"name":"infix:<*>","allocations":[{"count":178,"id":44229024,"type":"Int","jit":144}],"inclusive_time":291,"file":"gen/moar/m-CORE.setting","jit_entries":144,"entries":178},{"exclusive_time":1928,"id":48708528,"line":18996,"name":"DIVIDE_NUMBERS","allocations":[{"count":267,"id":44229096,"type":"Scalar"},{"count":79,"id":66684936,"type":"Rat"},{"count":10,"id":44229000,"type":"Num"}],"inclusive_time":3858,"file":"gen/moar/m-CORE.setting","entries":89,"callees":[{"exclusive_time":139,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":139,"file":"gen/moar/m-CORE.setting","jit_entries":89,"entries":89},{"exclusive_time":765,"id":48481440,"line":8500,"name":"infix:<gcd>","allocations":[{"count":89,"id":44229024,"type":"Int","jit":63}],"inclusive_time":765,"file":"gen/moar/m-CORE.setting","jit_entries":63,"entries":89},{"exclusive_time":850,"id":48479008,"line":8460,"name":"infix:<div>","allocations":[{"count":178,"id":44229024,"type":"Int","jit":156}],"inclusive_time":869,"file":"gen/moar/m-CORE.setting","jit_entries":156,"entries":178,"callees":[{"exclusive_time":19,"id":49806576,"line":14088,"name":"sink","inclusive_time":19,"file":"gen/moar/m-CORE.setting","jit_entries":178,"entries":178}]},{"exclusive_time":137,"id":48483568,"line":8526,"name":"infix:«<»","inclusive_time":137,"file":"gen/moar/m-CORE.setting","jit_entries":178,"entries":178},{"exclusive_time":7,"id":49806576,"line":14088,"name":"sink","inclusive_time":7,"file":"gen/moar/m-CORE.setting","jit_entries":89,"entries":89},{"exclusive_time":11,"id":49072720,"line":856,"name":"sink","inclusive_time":11,"file":"gen/moar/m-CORE.setting","jit_entries":79,"entries":89}]}]},{"exclusive_time":3795,"id":48466544,"line":8177,"name":"infix:<*>","inclusive_time":8681,"file":"gen/moar/m-CORE.setting","jit_entries":294,"entries":500,"callees":[{"exclusive_time":45,"id":49496496,"line":8826,"name":"Bridge","inclusive_time":45,"file":"gen/moar/m-CORE.setting","jit_entries":479,"entries":500},{"exclusive_time":1641,"id":50101152,"line":18832,"name":"Bridge","inclusive_time":4430,"file":"gen/moar/m-CORE.setting","jit_entries":419,"entries":500,"callees":[{"exclusive_time":1747,"id":50099936,"line":18807,"name":"Num","allocations":[{"count":500,"id":44229000,"type":"Num","jit":493}],"inclusive_time":2789,"file":"gen/moar/m-CORE.setting","jit_entries":493,"entries":500,"callees":[{"exclusive_time":1042,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":1042,"file":"gen/moar/m-CORE.setting","inlined_entries":493,"jit_entries":500,"entries":500}]}]},{"exclusive_time":409,"id":48533120,"line":9129,"name":"infix:<*>","allocations":[{"count":500,"id":44229000,"type":"Num","jit":344}],"inclusive_time":409,"file":"gen/moar/m-CORE.setting","inlined_entries":294,"jit_entries":344,"entries":500}]},{"exclusive_time":23,"id":39754944,"line":655,"name":"last","inclusive_time":42,"file":"gen/moar/m-CORE.setting","jit_entries":10,"entries":10,"callees":[{"exclusive_time":19,"id":39750384,"line":603,"name":"THROW-NIL","allocations":[{"count":10,"id":33960568,"spesh":10,"type":"BOOTException"}],"inclusive_time":19,"spesh_entries":10,"file":"gen/moar/m-CORE.setting","entries":10}]}]},{"exclusive_time":295,"id":50648656,"line":26296,"name":"from-posix","allocations":[{"count":30,"id":44229096,"type":"Scalar"},{"count":30,"id":67909248,"type":"Instant"}],"inclusive_time":13793,"file":"gen/moar/m-CORE.setting","entries":30,"callees":[{"exclusive_time":1108,"id":49239920,"line":3328,"name":"tai-from-posix","allocations":[{"count":60,"id":44229096,"type":"Scalar"},{"count":60,"id":44229072,"type":"IntLexRef"}],"inclusive_time":2276,"file":"gen/moar/m-CORE.setting","entries":30,"callees":[{"exclusive_time":108,"id":49504400,"line":8939,"name":"floor","allocations":[{"count":30,"id":44229024,"type":"Int"}],"inclusive_time":108,"file":"gen/moar/m-CORE.setting","entries":30},{"exclusive_time":532,"id":48484784,"line":8540,"name":"infix:«>»","inclusive_time":532,"file":"gen/moar/m-CORE.setting","jit_entries":772,"entries":780},{"exclusive_time":422,"id":48465936,"line":8173,"name":"infix:<+>","inclusive_time":526,"file":"gen/moar/m-CORE.setting","entries":90,"callees":[{"exclusive_time":9,"id":49496496,"line":8826,"name":"Bridge","inclusive_time":9,"file":"gen/moar/m-CORE.setting","jit_entries":85,"entries":90},{"exclusive_time":44,"id":49478864,"line":8273,"name":"Bridge","allocations":[{"count":90,"id":44229000,"type":"Num","jit":84}],"inclusive_time":44,"file":"gen/moar/m-CORE.setting","jit_entries":84,"entries":90},{"exclusive_time":50,"id":48531904,"line":9115,"name":"infix:<+>","allocations":[{"count":90,"id":44229000,"type":"Num","jit":18}],"inclusive_time":50,"file":"gen/moar/m-CORE.setting","jit_entries":18,"entries":90}]}]},{"exclusive_time":1971,"id":49498928,"line":8849,"name":"Rat","allocations":[{"count":30,"id":33960376,"type":"BOOTCode"},{"count":240,"id":44229096,"type":"Scalar"},{"count":30,"id":44229024,"type":"Int"}],"inclusive_time":11173,"file":"gen/moar/m-CORE.setting","entries":30,"callees":[{"exclusive_time":6,"id":49806576,"line":14088,"name":"sink","inclusive_time":6,"file":"gen/moar/m-CORE.setting","jit_entries":60,"entries":60},{"exclusive_time":12,"id":48537680,"line":9200,"name":"infix:<==>","inclusive_time":12,"file":"gen/moar/m-CORE.setting","jit_entries":60,"entries":60},{"exclusive_time":10,"id":49072720,"line":856,"name":"sink","inclusive_time":10,"file":"gen/moar/m-CORE.setting","entries":30},{"exclusive_time":144,"id":48468368,"line":8189,"name":"infix:«<»","inclusive_time":168,"file":"gen/moar/m-CORE.setting","entries":30,"callees":[{"exclusive_time":2,"id":49496496,"line":8826,"name":"Bridge","inclusive_time":2,"file":"gen/moar/m-CORE.setting","jit_entries":30,"entries":30},{"exclusive_time":10,"id":49478864,"line":8273,"name":"Bridge","allocations":[{"count":30,"id":44229000,"type":"Num","jit":30}],"inclusive_time":10,"file":"gen/moar/m-CORE.setting","jit_entries":30,"entries":30},{"exclusive_time":10,"id":48538592,"line":9211,"name":"infix:«<»","inclusive_time":10,"file":"gen/moar/m-CORE.setting","jit_entries":25,"entries":30}]},{"exclusive_time":6,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":6,"file":"gen/moar/m-CORE.setting","jit_entries":30,"entries":30},{"exclusive_time":38,"id":49504400,"line":8939,"name":"floor","allocations":[{"count":30,"id":44229024,"type":"Int"}],"inclusive_time":38,"file":"gen/moar/m-CORE.setting","entries":30},{"exclusive_time":633,"id":48466240,"line":8175,"name":"infix:<->","inclusive_time":1340,"file":"gen/moar/m-CORE.setting","jit_entries":149,"entries":248,"callees":[{"exclusive_time":15,"id":49496496,"line":8826,"name":"Bridge","inclusive_time":15,"file":"gen/moar/m-CORE.setting","jit_entries":248,"entries":248},{"exclusive_time":10,"id":49478864,"line":8273,"name":"Bridge","allocations":[{"count":30,"id":44229000,"type":"Num","jit":30}],"inclusive_time":10,"file":"gen/moar/m-CORE.setting","jit_entries":30,"entries":30},{"exclusive_time":84,"id":48532512,"line":9122,"name":"infix:<->","allocations":[{"count":248,"id":44229000,"type":"Num","jit":176}],"inclusive_time":84,"file":"gen/moar/m-CORE.setting","inlined_entries":149,"jit_entries":176,"entries":248},{"exclusive_time":242,"id":50101152,"line":18832,"name":"Bridge","inclusive_time":595,"file":"gen/moar/m-CORE.setting","jit_entries":193,"entries":218,"callees":[{"exclusive_time":187,"id":50099936,"line":18807,"name":"Num","allocations":[{"count":218,"id":44229000,"type":"Num","jit":218}],"inclusive_time":353,"file":"gen/moar/m-CORE.setting","jit_entries":218,"entries":218,"callees":[{"exclusive_time":166,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":166,"file":"gen/moar/m-CORE.setting","inlined_entries":218,"jit_entries":218,"entries":218}]}]}]},{"exclusive_time":418,"id":48716432,"line":19154,"name":"infix:</>","inclusive_time":5379,"file":"gen/moar/m-CORE.setting","jit_entries":173,"entries":248,"callees":[{"exclusive_time":1825,"id":48708528,"line":18996,"name":"DIVIDE_NUMBERS","allocations":[{"count":744,"id":44229096,"type":"Scalar","jit":480},{"count":248,"id":66684936,"type":"Rat","jit":160}],"inclusive_time":4961,"file":"gen/moar/m-CORE.setting","jit_entries":160,"entries":248,"callees":[{"exclusive_time":166,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":166,"file":"gen/moar/m-CORE.setting","inlined_entries":160,"jit_entries":248,"entries":248},{"exclusive_time":1165,"id":48481440,"line":8500,"name":"infix:<gcd>","allocations":[{"count":248,"id":44229024,"type":"Int","jit":185}],"inclusive_time":1165,"file":"gen/moar/m-CORE.setting","inlined_entries":160,"jit_entries":185,"entries":248},{"exclusive_time":1505,"id":48479008,"line":8460,"name":"infix:<div>","allocations":[{"count":496,"id":44229024,"spesh":320,"type":"Int","jit":120}],"inclusive_time":1546,"spesh_entries":320,"file":"gen/moar/m-CORE.setting","jit_entries":120,"entries":496,"callees":[{"exclusive_time":40,"id":49806576,"line":14088,"name":"sink","inclusive_time":40,"file":"gen/moar/m-CORE.setting","jit_entries":496,"entries":496}]},{"exclusive_time":215,"id":48483568,"line":8526,"name":"infix:«<»","inclusive_time":215,"file":"gen/moar/m-CORE.setting","inlined_entries":320,"jit_entries":496,"entries":496},{"exclusive_time":19,"id":49806576,"line":14088,"name":"sink","inclusive_time":19,"file":"gen/moar/m-CORE.setting","jit_entries":248,"entries":248},{"exclusive_time":21,"id":49072720,"line":856,"name":"sink","inclusive_time":21,"file":"gen/moar/m-CORE.setting","jit_entries":248,"entries":248}]}]},{"exclusive_time":80,"id":48531296,"line":9108,"name":"abs","allocations":[{"count":218,"id":44229000,"spesh":153,"type":"Num"}],"inclusive_time":80,"spesh_entries":153,"file":"gen/moar/m-CORE.setting","entries":218},{"exclusive_time":70,"id":48539808,"line":9225,"name":"infix:«>»","inclusive_time":70,"file":"gen/moar/m-CORE.setting","jit_entries":125,"entries":218},{"exclusive_time":1177,"id":49499536,"line":8869,"name":"","allocations":[{"count":406,"id":44229096,"spesh":162,"type":"Scalar"},{"count":188,"id":44229024,"spesh":75,"type":"Int"}],"inclusive_time":2050,"spesh_entries":75,"file":"gen/moar/m-CORE.setting","entries":188,"callees":[{"exclusive_time":314,"id":48533728,"line":9136,"name":"infix:</>","allocations":[{"count":188,"id":44229000,"spesh":75,"type":"Num","jit":19}],"inclusive_time":330,"spesh_entries":75,"file":"gen/moar/m-CORE.setting","jit_entries":19,"entries":188,"callees":[{"exclusive_time":16,"id":49806576,"line":14088,"name":"sink","inclusive_time":16,"file":"gen/moar/m-CORE.setting","jit_entries":188,"entries":188}]},{"exclusive_time":270,"id":48478400,"line":8453,"name":"infix:<*>","allocations":[{"count":376,"id":44229024,"spesh":150,"type":"Int","jit":174}],"inclusive_time":270,"spesh_entries":150,"file":"gen/moar/m-CORE.setting","inlined_entries":150,"jit_entries":174,"entries":376},{"exclusive_time":271,"id":48477184,"line":8439,"name":"infix:<+>","allocations":[{"count":376,"id":44229024,"spesh":150,"type":"Int","jit":218}],"inclusive_time":271,"spesh_entries":150,"file":"gen/moar/m-CORE.setting","inlined_entries":150,"jit_entries":218,"entries":376}]},{"exclusive_time":38,"id":48478400,"line":8453,"name":"infix:<*>","allocations":[{"count":30,"id":44229024,"type":"Int","jit":27}],"inclusive_time":38,"file":"gen/moar/m-CORE.setting","jit_entries":27,"entries":30}]},{"exclusive_time":49,"id":50648048,"line":26292,"name":"BUILD","allocations":[{"count":30,"id":44229096,"type":"Scalar"}],"inclusive_time":49,"file":"gen/moar/m-CORE.setting","entries":30}]},{"exclusive_time":34,"id":48439184,"line":7912,"name":"infix:<->","inclusive_time":800,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":48,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"spesh":2,"type":"BOOTCode"},{"count":2,"id":33961312,"spesh":2,"type":"NQPArray"},{"count":1,"id":33960328,"spesh":1,"type":"BOOTHash"}],"inclusive_time":49,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":1,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":338,"id":48822832,"line":26377,"name":"infix:<->","inclusive_time":716,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":2,"id":49200400,"line":2339,"name":"<anon>","inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":2},{"exclusive_time":31,"id":48439184,"line":7912,"name":"infix:<->","inclusive_time":189,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":34,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"spesh":2,"type":"BOOTCode"},{"count":2,"id":33961312,"spesh":2,"type":"NQPArray"},{"count":1,"id":33960328,"spesh":1,"type":"BOOTHash"}],"inclusive_time":34,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":35,"id":48713088,"line":19075,"name":"infix:<->","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"}],"inclusive_time":124,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":49200400,"line":2339,"name":"<anon>","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":2},{"exclusive_time":0,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":25,"id":48713696,"line":19079,"name":"","allocations":[{"count":2,"id":44229096,"type":"Scalar"}],"inclusive_time":86,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":3,"id":49200400,"line":2339,"name":"<anon>","inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":8},{"exclusive_time":3,"id":48481440,"line":8500,"name":"infix:<gcd>","allocations":[{"count":1,"id":44229024,"type":"Int"}],"inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":3,"id":48443744,"line":7933,"name":"infix:<div>","inclusive_time":21,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":12,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"spesh":2,"type":"BOOTCode"},{"count":2,"id":33961312,"spesh":2,"type":"NQPArray"},{"count":1,"id":33960328,"spesh":1,"type":"BOOTHash"}],"inclusive_time":12,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":4,"id":48479008,"line":8460,"name":"infix:<div>","allocations":[{"count":1,"id":44229024,"type":"Int"}],"inclusive_time":4,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]},{"exclusive_time":2,"id":48478400,"line":8453,"name":"infix:<*>","allocations":[{"count":3,"id":44229024,"type":"Int"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":3},{"exclusive_time":5,"id":48479008,"line":8460,"name":"infix:<div>","allocations":[{"count":2,"id":44229024,"type":"Int"}],"inclusive_time":5,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]},{"exclusive_time":0,"id":48477792,"line":8446,"name":"infix:<->","allocations":[{"count":1,"id":44229024,"type":"Int","jit":1}],"inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":12,"id":48708528,"line":18996,"name":"DIVIDE_NUMBERS","allocations":[{"count":3,"id":44229096,"type":"Scalar"},{"count":1,"id":66684936,"type":"Rat"}],"inclusive_time":23,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":3,"id":48481440,"line":8500,"name":"infix:<gcd>","allocations":[{"count":1,"id":44229024,"type":"Int"}],"inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":5,"id":48479008,"line":8460,"name":"infix:<div>","allocations":[{"count":2,"id":44229024,"type":"Int"}],"inclusive_time":5,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]},{"exclusive_time":0,"id":48483568,"line":8526,"name":"infix:«<»","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":49072720,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]}]}]},{"exclusive_time":18,"id":50652608,"line":26401,"name":"new","allocations":[{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":185,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":5,"id":50109968,"line":18969,"name":"Rat","inclusive_time":7,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":52616112,"line":2635,"name":"type_check","inclusive_time":1,"file":"gen/moar/m-Metamodel.nqp","entries":1}]},{"exclusive_time":9,"id":49081536,"line":956,"name":"bless","allocations":[{"count":1,"id":44228640,"type":"Hash"},{"count":1,"id":66684792,"type":"Duration"}],"inclusive_time":159,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":9,"id":49793200,"line":13860,"name":"from-slurpy-flat","allocations":[{"count":1,"id":33960376,"spesh":1,"type":"BOOTCode"},{"count":2,"id":68411984,"spesh":2,"type":"IterationBuffer"},{"count":1,"id":44228976,"spesh":1,"type":"Array"},{"count":1,"id":65481320,"spesh":1,"type":"List::Reifier"}],"inclusive_time":14,"spesh_entries":1,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":3,"id":49861296,"line":15806,"name":"reification-target","inclusive_time":4,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":1,"id":49882880,"line":15464,"name":"new","allocations":[{"count":1,"id":68412368,"type":"Array::ArrayReificationTarget","jit":1}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]},{"exclusive_time":49,"id":49081840,"line":960,"name":"BUILDALL","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"}],"inclusive_time":135,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":3,"id":52582064,"line":1475,"name":"BUILDALLPLAN","inclusive_time":3,"file":"gen/moar/m-Metamodel.nqp","entries":1},{"exclusive_time":31,"id":49082144,"line":967,"name":"","allocations":[{"count":22,"id":33960376,"type":"BOOTCode"},{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":82,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":20,"id":49083968,"line":975,"name":"","allocations":[{"count":1,"id":44229144,"type":"Str"},{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":50,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":2,"id":49976512,"line":17198,"name":"EXISTS-KEY","inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":22,"id":48358624,"line":6142,"name":"postcircumfix:<{ }>","inclusive_time":27,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":5,"id":49994144,"line":17415,"name":"AT-KEY","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":5,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]}]},{"exclusive_time":0,"id":49072720,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]}]}]}]}]},{"exclusive_time":231,"id":48822832,"line":26377,"name":"infix:<->","inclusive_time":3924,"file":"gen/moar/m-CORE.setting","entries":29,"callees":[{"exclusive_time":41,"id":49200400,"line":2339,"name":"<anon>","inclusive_time":41,"file":"gen/moar/m-CORE.setting","jit_entries":48,"entries":58},{"exclusive_time":185,"id":48713088,"line":19075,"name":"infix:<->","allocations":[{"count":29,"id":33960376,"type":"BOOTCode"}],"inclusive_time":1908,"file":"gen/moar/m-CORE.setting","entries":29,"callees":[{"exclusive_time":20,"id":49200400,"line":2339,"name":"<anon>","inclusive_time":20,"file":"gen/moar/m-CORE.setting","jit_entries":56,"entries":58},{"exclusive_time":15,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":15,"file":"gen/moar/m-CORE.setting","jit_entries":29,"entries":29},{"exclusive_time":593,"id":48713696,"line":19079,"name":"","allocations":[{"count":58,"id":44229096,"type":"Scalar"}],"inclusive_time":1687,"file":"gen/moar/m-CORE.setting","entries":29,"callees":[{"exclusive_time":37,"id":49200400,"line":2339,"name":"<anon>","inclusive_time":37,"file":"gen/moar/m-CORE.setting","jit_entries":224,"entries":232},{"exclusive_time":70,"id":48481440,"line":8500,"name":"infix:<gcd>","allocations":[{"count":29,"id":44229024,"type":"Int","jit":22}],"inclusive_time":70,"file":"gen/moar/m-CORE.setting","jit_entries":22,"entries":29},{"exclusive_time":279,"id":48479008,"line":8460,"name":"infix:<div>","allocations":[{"count":87,"id":44229024,"type":"Int","jit":73}],"inclusive_time":286,"file":"gen/moar/m-CORE.setting","jit_entries":73,"entries":87,"callees":[{"exclusive_time":7,"id":49806576,"line":14088,"name":"sink","inclusive_time":7,"file":"gen/moar/m-CORE.setting","jit_entries":87,"entries":87}]},{"exclusive_time":61,"id":48478400,"line":8453,"name":"infix:<*>","allocations":[{"count":87,"id":44229024,"type":"Int","jit":80}],"inclusive_time":61,"file":"gen/moar/m-CORE.setting","jit_entries":80,"entries":87},{"exclusive_time":24,"id":48477792,"line":8446,"name":"infix:<->","allocations":[{"count":29,"id":44229024,"type":"Int","jit":29}],"inclusive_time":24,"file":"gen/moar/m-CORE.setting","jit_entries":29,"entries":29},{"exclusive_time":290,"id":48708528,"line":18996,"name":"DIVIDE_NUMBERS","allocations":[{"count":87,"id":44229096,"type":"Scalar","jit":39},{"count":29,"id":66684936,"type":"Rat","jit":13}],"inclusive_time":613,"file":"gen/moar/m-CORE.setting","jit_entries":13,"entries":29,"callees":[{"exclusive_time":22,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":22,"file":"gen/moar/m-CORE.setting","inlined_entries":13,"jit_entries":29,"entries":29},{"exclusive_time":104,"id":48481440,"line":8500,"name":"infix:<gcd>","allocations":[{"count":29,"id":44229024,"type":"Int","jit":23}],"inclusive_time":104,"file":"gen/moar/m-CORE.setting","inlined_entries":13,"jit_entries":23,"entries":29},{"exclusive_time":158,"id":48479008,"line":8460,"name":"infix:<div>","allocations":[{"count":58,"id":44229024,"spesh":26,"type":"Int","jit":28}],"inclusive_time":163,"spesh_entries":26,"file":"gen/moar/m-CORE.setting","jit_entries":28,"entries":58,"callees":[{"exclusive_time":4,"id":49806576,"line":14088,"name":"sink","inclusive_time":4,"file":"gen/moar/m-CORE.setting","jit_entries":58,"entries":58}]},{"exclusive_time":27,"id":48483568,"line":8526,"name":"infix:«<»","inclusive_time":27,"file":"gen/moar/m-CORE.setting","inlined_entries":26,"jit_entries":58,"entries":58},{"exclusive_time":2,"id":49806576,"line":14088,"name":"sink","inclusive_time":2,"file":"gen/moar/m-CORE.setting","jit_entries":29,"entries":29},{"exclusive_time":2,"id":49072720,"line":856,"name":"sink","inclusive_time":2,"file":"gen/moar/m-CORE.setting","jit_entries":29,"entries":29}]}]}]},{"exclusive_time":144,"id":50652608,"line":26401,"name":"new","allocations":[{"count":29,"id":44229096,"type":"Scalar"}],"inclusive_time":1743,"file":"gen/moar/m-CORE.setting","entries":29,"callees":[{"exclusive_time":119,"id":50109968,"line":18969,"name":"Rat","inclusive_time":165,"file":"gen/moar/m-CORE.setting","entries":29,"callees":[{"exclusive_time":45,"id":52616112,"line":2635,"name":"type_check","inclusive_time":45,"file":"gen/moar/m-Metamodel.nqp","entries":29}]},{"exclusive_time":170,"id":49081536,"line":956,"name":"bless","allocations":[{"count":29,"id":44228640,"spesh":22,"type":"Hash"},{"count":29,"id":66684792,"spesh":22,"type":"Duration"}],"inclusive_time":1433,"spesh_entries":22,"file":"gen/moar/m-CORE.setting","entries":29,"callees":[{"exclusive_time":204,"id":49793200,"line":13860,"name":"from-slurpy-flat","allocations":[{"count":29,"id":33960376,"spesh":29,"type":"BOOTCode"},{"count":58,"id":68411984,"spesh":58,"type":"IterationBuffer"},{"count":29,"id":44228976,"spesh":29,"type":"Array"},{"count":29,"id":65481320,"spesh":29,"type":"List::Reifier"}],"inclusive_time":312,"spesh_entries":29,"file":"gen/moar/m-CORE.setting","entries":29,"callees":[{"exclusive_time":6,"id":52321312,"line":3008,"name":"","allocations":[{"count":29,"id":44228664,"type":"List","jit":29}],"inclusive_time":6,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":29,"entries":29},{"exclusive_time":75,"id":49861296,"line":15806,"name":"reification-target","inclusive_time":100,"file":"gen/moar/m-CORE.setting","jit_entries":29,"entries":29,"callees":[{"exclusive_time":25,"id":49882880,"line":15464,"name":"new","allocations":[{"count":29,"id":68412368,"type":"Array::ArrayReificationTarget","jit":29}],"inclusive_time":25,"file":"gen/moar/m-CORE.setting","jit_entries":29,"entries":29}]}]},{"exclusive_time":172,"id":49081840,"line":960,"name":"BUILDALL","allocations":[{"count":29,"id":33960376,"type":"BOOTCode","jit":22}],"inclusive_time":951,"file":"gen/moar/m-CORE.setting","jit_entries":22,"entries":29,"callees":[{"exclusive_time":21,"id":52582064,"line":1475,"name":"BUILDALLPLAN","inclusive_time":21,"file":"gen/moar/m-Metamodel.nqp","jit_entries":22,"entries":29},{"exclusive_time":268,"id":49082144,"line":967,"name":"","allocations":[{"count":638,"id":33960376,"type":"BOOTCode"},{"count":29,"id":44229096,"type":"Scalar"}],"inclusive_time":756,"file":"gen/moar/m-CORE.setting","entries":58,"callees":[{"exclusive_time":243,"id":49083968,"line":975,"name":"","allocations":[{"count":29,"id":44229144,"type":"Str"},{"count":29,"id":44229096,"type":"Scalar"}],"inclusive_time":476,"file":"gen/moar/m-CORE.setting","entries":29,"callees":[{"exclusive_time":40,"id":49976512,"line":17198,"name":"EXISTS-KEY","inclusive_time":40,"file":"gen/moar/m-CORE.setting","entries":29},{"exclusive_time":73,"id":48358624,"line":6142,"name":"postcircumfix:<{ }>","inclusive_time":193,"file":"gen/moar/m-CORE.setting","entries":29,"callees":[{"exclusive_time":117,"id":49994144,"line":17415,"name":"AT-KEY","allocations":[{"count":29,"id":33960376,"type":"BOOTCode"},{"count":29,"id":44229096,"type":"Scalar"}],"inclusive_time":119,"file":"gen/moar/m-CORE.setting","entries":29,"callees":[{"exclusive_time":2,"id":49806576,"line":14088,"name":"sink","inclusive_time":2,"file":"gen/moar/m-CORE.setting","jit_entries":29,"entries":29}]}]}]},{"exclusive_time":8,"id":49072720,"line":856,"name":"sink","inclusive_time":8,"file":"gen/moar/m-CORE.setting","entries":29},{"exclusive_time":3,"id":49806576,"line":14088,"name":"sink","inclusive_time":3,"file":"gen/moar/m-CORE.setting","jit_entries":29,"entries":29}]}]}]}]}]},{"exclusive_time":26,"id":48442224,"line":7926,"name":"infix:</>","inclusive_time":126,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":42,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"spesh":2,"type":"BOOTCode"},{"count":2,"id":33961312,"spesh":2,"type":"NQPArray"},{"count":1,"id":33960328,"spesh":1,"type":"BOOTHash"}],"inclusive_time":43,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":1,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":18,"id":48466848,"line":8179,"name":"infix:</>","inclusive_time":56,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":2,"id":50652912,"line":26403,"name":"Bridge","inclusive_time":8,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":5,"id":50099936,"line":18807,"name":"Num","allocations":[{"count":1,"id":44229000,"type":"Num"}],"inclusive_time":6,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]},{"exclusive_time":0,"id":49478864,"line":8273,"name":"Bridge","allocations":[{"count":1,"id":44229000,"type":"Num","jit":1}],"inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":3,"id":48442224,"line":7926,"name":"infix:</>","inclusive_time":28,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":21,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"spesh":2,"type":"BOOTCode"},{"count":2,"id":33961312,"spesh":2,"type":"NQPArray"},{"count":1,"id":33960328,"spesh":1,"type":"BOOTHash"}],"inclusive_time":21,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":2,"id":48533728,"line":9136,"name":"infix:</>","allocations":[{"count":1,"id":44229000,"type":"Num"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]}]}]},{"exclusive_time":27,"id":48761424,"line":25215,"name":"put","inclusive_time":3354,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":11,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":12,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":1,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":30,"id":48762640,"line":25227,"name":"put","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":1,"id":44229048,"type":"StrLexRef"}],"inclusive_time":3314,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":8,"id":49791376,"line":13817,"name":"from-slurpy","allocations":[{"count":1,"id":44228664,"spesh":1,"type":"List"},{"count":1,"id":68411984,"spesh":1,"type":"IterationBuffer"},{"count":1,"id":65481320,"spesh":1,"type":"List::Reifier"}],"inclusive_time":12,"spesh_entries":1,"file":"gen/moar/m-CORE.setting","deopt_one":1,"entries":1,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":4,"id":49800496,"line":13985,"name":"reification-target","inclusive_time":4,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":0,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]},{"exclusive_time":11,"id":39748256,"line":556,"name":"DYNAMIC","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"}],"inclusive_time":24,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":5,"id":39748560,"line":558,"name":"","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":13,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":7,"id":39748864,"line":564,"name":"","inclusive_time":7,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]},{"exclusive_time":1,"id":52311584,"line":1621,"name":"","allocations":[{"count":1,"id":44229240,"spesh":1,"type":"Block"},{"count":1,"id":33960376,"spesh":1,"type":"BOOTCode"}],"inclusive_time":1,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1},{"exclusive_time":7,"id":49298592,"line":3773,"name":"map","inclusive_time":73,"spesh_entries":1,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":19,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":19,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":9,"id":49299808,"line":3779,"name":"map","allocations":[{"count":2,"id":44229096,"spesh":2,"type":"Scalar"}],"inclusive_time":46,"spesh_entries":1,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":7,"id":49800800,"line":13990,"name":"iterator","allocations":[{"count":1,"id":33960376,"type":"BOOTCode","jit":1}],"inclusive_time":15,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":0,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":1,"id":49801104,"line":13992,"name":"","allocations":[{"count":1,"id":44229096,"type":"Scalar","jit":1}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":4,"id":49801712,"line":14004,"name":"new","allocations":[{"count":1,"id":67906128,"type":"<anon|352550624>","jit":1}],"inclusive_time":6,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":0,"id":49052656,"line":495,"name":"of","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":49801408,"line":13998,"name":"BUILD","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]},{"exclusive_time":14,"id":49303152,"line":3840,"name":"sequential-map","allocations":[{"count":2,"id":33960376,"type":"BOOTCode","jit":2},{"count":3,"id":44229096,"type":"Scalar","jit":3}],"inclusive_time":21,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":2,"id":49411680,"line":6408,"name":"count","inclusive_time":2,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":0,"id":50093552,"line":18706,"name":"count","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","inlined_entries":1,"jit_entries":1,"entries":1},{"exclusive_time":0,"id":49304064,"line":3847,"name":"","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":2,"id":49401344,"line":3827,"name":"new","allocations":[{"count":3,"id":44229096,"type":"Scalar","jit":3},{"count":1,"id":67908360,"type":"<anon|159066640>","jit":1}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":49700480,"line":12399,"name":"new","allocations":[{"count":1,"id":67909080,"type":"Seq","jit":1}],"inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]}]},{"exclusive_time":9,"id":49705648,"line":12474,"name":"sink","inclusive_time":3122,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":5,"id":49701088,"line":12407,"name":"iterator","inclusive_time":6,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":1,"id":52616112,"line":2635,"name":"type_check","inclusive_time":1,"file":"gen/moar/m-Metamodel.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":67,"id":49306192,"line":3921,"name":"sink-all","allocations":[{"count":1,"id":33960376,"type":"BOOTCode","jit":1},{"count":6,"id":44229096,"type":"Scalar","jit":6},{"count":3,"id":44229144,"type":"Str","jit":3}],"inclusive_time":3106,"file":"gen/moar/m-CORE.setting","deopt_one":1,"jit_entries":1,"entries":1,"callees":[{"exclusive_time":0,"id":48510016,"line":8705,"name":"prefix:<!>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":3,"id":49417456,"line":6478,"name":"phasers","inclusive_time":3,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2,"callees":[{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]},{"exclusive_time":1,"id":48405440,"line":7763,"name":"prefix:<+>","inclusive_time":9,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":2,"id":49795632,"line":13911,"name":"Numeric","inclusive_time":7,"spesh_entries":1,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":4,"id":49797760,"line":13932,"name":"elems","inclusive_time":5,"spesh_entries":1,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]}]}]},{"exclusive_time":4,"id":49078192,"line":929,"name":"Bool","inclusive_time":9,"spesh_entries":1,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":4,"id":49794720,"line":13904,"name":"Bool","inclusive_time":5,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":0,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":48508496,"line":8699,"name":"prefix:<so>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":6,"entries":6},{"exclusive_time":9,"id":49802016,"line":14006,"name":"pull-one","inclusive_time":171,"file":"gen/moar/m-CORE.setting","deopt_one":4,"jit_entries":5,"entries":5,"callees":[{"exclusive_time":24,"id":49802320,"line":14013,"name":"reify-and-pull-one","allocations":[{"count":5,"id":44229072,"type":"IntLexRef","jit":5}],"inclusive_time":161,"file":"gen/moar/m-CORE.setting","jit_entries":5,"entries":5,"callees":[{"exclusive_time":40,"id":49843664,"line":13724,"name":"reify-at-least","allocations":[{"count":5,"id":33960376,"type":"BOOTCode","jit":5},{"count":1,"id":44229096,"type":"Scalar","jit":1}],"inclusive_time":136,"file":"gen/moar/m-CORE.setting","deopt_one":1,"jit_entries":5,"entries":5,"callees":[{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":5,"entries":5},{"exclusive_time":35,"id":49844576,"line":13732,"name":"","allocations":[{"count":8,"id":33960376,"type":"BOOTCode"},{"count":4,"id":44229096,"type":"Scalar"}],"inclusive_time":95,"file":"gen/moar/m-CORE.setting","entries":4,"callees":[{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":3,"entries":3},{"exclusive_time":17,"id":49845488,"line":13746,"name":"","allocations":[{"count":4,"id":44229096,"type":"Scalar"}],"inclusive_time":58,"file":"gen/moar/m-CORE.setting","entries":4,"callees":[{"exclusive_time":14,"id":49170912,"line":1907,"name":"push","inclusive_time":39,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":2,"id":44228664,"type":"List","jit":2}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":2,"entries":2},{"exclusive_time":22,"id":52314624,"line":2048,"name":"","allocations":[{"count":4,"id":33960376,"type":"BOOTCode"},{"count":4,"id":33961312,"type":"NQPArray"},{"count":2,"id":33960328,"type":"BOOTHash"}],"inclusive_time":23,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":2,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":2,"entries":2}]},{"exclusive_time":1,"id":49692880,"line":12283,"name":"push","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":2}]},{"exclusive_time":1,"id":49692880,"line":12283,"name":"push","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":2}]},{"exclusive_time":1,"id":49072720,"line":856,"name":"sink","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":5}]}]},{"exclusive_time":0,"id":48483568,"line":8526,"name":"infix:«<»","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":5,"entries":5}]}]},{"exclusive_time":19,"id":48762944,"line":25230,"name":"","inclusive_time":2840,"file":"gen/moar/m-CORE.setting","entries":4,"callees":[{"exclusive_time":42,"id":49099168,"line":1166,"name":"Str","inclusive_time":2819,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":2,"id":44228664,"type":"List","jit":2}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":2,"entries":2},{"exclusive_time":21,"id":52314624,"line":2048,"name":"","allocations":[{"count":4,"id":33960376,"type":"BOOTCode"},{"count":4,"id":33961312,"type":"NQPArray"},{"count":2,"id":33960328,"type":"BOOTHash"}],"inclusive_time":116,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":2,"callees":[{"exclusive_time":51,"id":52313712,"line":1708,"name":"","allocations":[{"count":1,"id":33960376,"type":"BOOTCode","jit":1},{"count":22,"id":33961312,"type":"NQPArray","jit":22},{"count":5,"id":33961360,"type":"NQPArrayIter","jit":5},{"count":8,"id":33960328,"type":"BOOTHash","jit":8},{"count":8,"id":33960832,"type":"BOOTIntArray","jit":8},{"count":4,"id":33960232,"type":"BOOTInt","jit":4}],"inclusive_time":92,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1,"callees":[{"exclusive_time":27,"id":52314016,"line":1738,"name":"is_narrower","inclusive_time":41,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":12,"entries":12,"callees":[{"exclusive_time":13,"id":52616112,"line":2635,"name":"type_check","allocations":[{"count":6,"id":33961360,"type":"NQPArrayIter"}],"inclusive_time":13,"file":"gen/moar/m-Metamodel.nqp","entries":5,"callees":[{"exclusive_time":0,"id":52544976,"line":161,"name":"pretending_to_be","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","jit_entries":5,"entries":5}]}]}]},{"exclusive_time":2,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":2,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":2,"entries":2}]},{"exclusive_time":43,"id":50654128,"line":26408,"name":"Str","inclusive_time":2649,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":49200400,"line":2339,"name":"<anon>","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":49102816,"line":1185,"name":"item","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":15,"id":48233072,"line":1664,"name":"prefix:<~>","inclusive_time":2604,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":19,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":20,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":3,"id":48233376,"line":1665,"name":"prefix:<~>","inclusive_time":2568,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":6,"id":49101296,"line":1178,"name":"Stringy","inclusive_time":2564,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":11,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":12,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":3,"id":49102512,"line":1183,"name":"Stringy","inclusive_time":2544,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":45,"id":49099168,"line":1166,"name":"Str","inclusive_time":2541,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":10,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":84,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":41,"id":52313712,"line":1708,"name":"","allocations":[{"count":1,"id":33960376,"type":"BOOTCode","jit":1},{"count":22,"id":33961312,"type":"NQPArray","jit":22},{"count":5,"id":33961360,"type":"NQPArrayIter","jit":5},{"count":8,"id":33960328,"type":"BOOTHash","jit":8},{"count":8,"id":33960832,"type":"BOOTIntArray","jit":8},{"count":4,"id":33960232,"type":"BOOTInt","jit":4}],"inclusive_time":72,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1,"callees":[{"exclusive_time":21,"id":52314016,"line":1738,"name":"is_narrower","inclusive_time":31,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":12,"entries":12,"callees":[{"exclusive_time":9,"id":52616112,"line":2635,"name":"type_check","allocations":[{"count":6,"id":33961360,"type":"NQPArrayIter"}],"inclusive_time":9,"file":"gen/moar/m-Metamodel.nqp","entries":5,"callees":[{"exclusive_time":0,"id":52544976,"line":161,"name":"pretending_to_be","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","jit_entries":5,"entries":5}]}]}]},{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":133,"id":50101456,"line":18834,"name":"Str","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":3,"id":44229096,"type":"Scalar"}],"inclusive_time":2411,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":48483568,"line":8526,"name":"infix:«<»","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":3,"id":49455456,"line":8047,"name":"abs","inclusive_time":73,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":21,"id":48454688,"line":7995,"name":"infix:«<»","inclusive_time":70,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":34,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":34,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":9,"id":48719472,"line":19202,"name":"infix:«<»","inclusive_time":14,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":49200400,"line":2339,"name":"<anon>","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":2},{"exclusive_time":2,"id":48478400,"line":8453,"name":"infix:<*>","allocations":[{"count":1,"id":44229024,"type":"Int"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":48483568,"line":8526,"name":"infix:«<»","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]}]},{"exclusive_time":6,"id":50100240,"line":18816,"name":"floor","inclusive_time":15,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":7,"id":48479008,"line":8460,"name":"infix:<div>","allocations":[{"count":1,"id":44229024,"type":"Int"}],"inclusive_time":7,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]},{"exclusive_time":24,"id":48439184,"line":7912,"name":"infix:<->","inclusive_time":159,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":42,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"spesh":2,"type":"BOOTCode"},{"count":2,"id":33961312,"spesh":2,"type":"NQPArray"},{"count":1,"id":33960328,"spesh":1,"type":"BOOTHash"}],"inclusive_time":43,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":43,"id":48714000,"line":19089,"name":"infix:<->","inclusive_time":91,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":49200400,"line":2339,"name":"<anon>","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":3},{"exclusive_time":4,"id":48441008,"line":7920,"name":"infix:<*>","inclusive_time":38,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":31,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"spesh":2,"type":"BOOTCode"},{"count":2,"id":33961312,"spesh":2,"type":"NQPArray"},{"count":1,"id":33960328,"spesh":1,"type":"BOOTHash"}],"inclusive_time":32,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":1,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]},{"exclusive_time":1,"id":48478400,"line":8453,"name":"infix:<*>","allocations":[{"count":1,"id":44229024,"type":"Int"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":1,"id":48477792,"line":8446,"name":"infix:<->","allocations":[{"count":1,"id":44229024,"type":"Int","jit":1}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":6,"id":48710048,"line":19023,"name":"DON\'T_DIVIDE_NUMBERS","allocations":[{"count":2,"id":44229096,"type":"Scalar"},{"count":1,"id":66684936,"type":"Rat"}],"inclusive_time":6,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49072720,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]}]},{"exclusive_time":0,"id":49072720,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":3},{"exclusive_time":20,"id":48234288,"line":1669,"name":"infix:<~>","inclusive_time":74,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":20,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":20,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":8,"id":48234896,"line":1671,"name":"infix:<~>","inclusive_time":33,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":6,"id":49101296,"line":1178,"name":"Stringy","inclusive_time":16,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":9,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":9,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":49564592,"line":10027,"name":"Stringy","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]},{"exclusive_time":2,"id":49102512,"line":1183,"name":"Stringy","inclusive_time":7,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":4,"id":49477344,"line":8254,"name":"Str","allocations":[{"count":1,"id":44229144,"type":"Str"}],"inclusive_time":4,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":0,"id":48569600,"line":11811,"name":"infix:<~>","allocations":[{"count":1,"id":44229144,"type":"Str","jit":1}],"inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]},{"exclusive_time":19,"id":49078192,"line":929,"name":"Bool","inclusive_time":293,"spesh_entries":1,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":11,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":43,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":20,"id":52313712,"line":1708,"name":"","allocations":[{"count":1,"id":33960376,"type":"BOOTCode","jit":1},{"count":12,"id":33961312,"type":"NQPArray","jit":12},{"count":3,"id":33961360,"type":"NQPArrayIter","jit":3},{"count":4,"id":33960328,"type":"BOOTHash","jit":4},{"count":4,"id":33960832,"type":"BOOTIntArray","jit":4},{"count":2,"id":33960232,"type":"BOOTInt","jit":2}],"inclusive_time":31,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1,"callees":[{"exclusive_time":6,"id":52314016,"line":1738,"name":"is_narrower","inclusive_time":11,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":2,"entries":2,"callees":[{"exclusive_time":4,"id":52616112,"line":2635,"name":"type_check","allocations":[{"count":2,"id":33961360,"type":"NQPArrayIter"}],"inclusive_time":4,"file":"gen/moar/m-Metamodel.nqp","entries":2,"callees":[{"exclusive_time":0,"id":52544976,"line":161,"name":"pretending_to_be","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","jit_entries":2,"entries":2}]}]}]},{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":4,"id":49452720,"line":7747,"name":"Bool","inclusive_time":229,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":5,"id":48453776,"line":7991,"name":"infix:<!=>","inclusive_time":225,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":20,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"spesh":2,"type":"BOOTCode"},{"count":2,"id":33961312,"spesh":2,"type":"NQPArray"},{"count":1,"id":33960328,"spesh":1,"type":"BOOTHash"}],"inclusive_time":20,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":6,"id":48454384,"line":7993,"name":"infix:<!=>","inclusive_time":199,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":30,"id":48450736,"line":7971,"name":"infix:<==>","inclusive_time":193,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":39,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"spesh":2,"type":"BOOTCode"},{"count":2,"id":33961312,"spesh":2,"type":"NQPArray"},{"count":1,"id":33960328,"spesh":1,"type":"BOOTHash"}],"inclusive_time":39,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":23,"id":48718256,"line":19187,"name":"infix:<==>","inclusive_time":123,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":38,"id":50108448,"line":18955,"name":"REDUCE-ME","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"}],"inclusive_time":98,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":5,"id":48456512,"line":8003,"name":"infix:«>»","inclusive_time":40,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":32,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":33,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":1,"id":48484784,"line":8540,"name":"infix:«>»","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":10,"id":50108752,"line":18956,"name":"","allocations":[{"count":2,"id":44229096,"type":"Scalar"}],"inclusive_time":19,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":8,"id":48481440,"line":8500,"name":"infix:<gcd>","allocations":[{"count":1,"id":44229024,"type":"Int"}],"inclusive_time":8,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":48484784,"line":8540,"name":"infix:«>»","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":49200400,"line":2339,"name":"<anon>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]},{"exclusive_time":0,"id":48510624,"line":8708,"name":"prefix:<not>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]}]}]},{"exclusive_time":184,"id":50101760,"line":18840,"name":"","allocations":[{"count":3,"id":44229096,"type":"Scalar"}],"inclusive_time":1658,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":4,"id":48569600,"line":11811,"name":"infix:<~>","allocations":[{"count":2,"id":44229144,"type":"Str"}],"inclusive_time":4,"file":"gen/moar/m-CORE.setting","entries":2},{"exclusive_time":7,"id":49072720,"line":856,"name":"sink","inclusive_time":7,"file":"gen/moar/m-CORE.setting","entries":26},{"exclusive_time":2,"id":48483568,"line":8526,"name":"infix:«<»","inclusive_time":2,"file":"gen/moar/m-CORE.setting","jit_entries":10,"entries":10},{"exclusive_time":3,"id":49477344,"line":8254,"name":"Str","allocations":[{"count":1,"id":44229144,"type":"Str"}],"inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":6,"id":49664000,"line":11742,"name":"chars","inclusive_time":6,"file":"gen/moar/m-CORE.setting","entries":9},{"exclusive_time":0,"id":48477184,"line":8439,"name":"infix:<+>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":19,"id":49078192,"line":929,"name":"Bool","inclusive_time":222,"spesh_entries":9,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":1,"id":52321312,"line":3008,"name":"","allocations":[{"count":9,"id":44228664,"type":"List","jit":9}],"inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":9,"entries":9},{"exclusive_time":18,"id":49452720,"line":7747,"name":"Bool","inclusive_time":201,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":20,"id":48454384,"line":7993,"name":"infix:<!=>","inclusive_time":182,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":9,"callees":[{"exclusive_time":42,"id":48718256,"line":19187,"name":"infix:<==>","inclusive_time":161,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":23,"id":50108448,"line":18955,"name":"REDUCE-ME","allocations":[{"count":9,"id":33960376,"type":"BOOTCode"}],"inclusive_time":107,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":10,"id":48484784,"line":8540,"name":"infix:«>»","inclusive_time":10,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":9},{"exclusive_time":30,"id":50108752,"line":18956,"name":"","allocations":[{"count":18,"id":44229096,"type":"Scalar"}],"inclusive_time":74,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":36,"id":48481440,"line":8500,"name":"infix:<gcd>","allocations":[{"count":9,"id":44229024,"type":"Int"}],"inclusive_time":36,"file":"gen/moar/m-CORE.setting","entries":9},{"exclusive_time":6,"id":48484784,"line":8540,"name":"infix:«>»","inclusive_time":6,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9}]}]},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9},{"exclusive_time":3,"id":49200400,"line":2339,"name":"<anon>","inclusive_time":3,"file":"gen/moar/m-CORE.setting","jit_entries":4,"entries":9},{"exclusive_time":6,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":6,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9}]},{"exclusive_time":1,"id":48510624,"line":8708,"name":"prefix:<not>","inclusive_time":1,"file":"gen/moar/m-CORE.setting","inlined_entries":2,"jit_entries":9,"entries":9}]}]}]},{"exclusive_time":5,"id":49663696,"line":11741,"name":"chars","inclusive_time":21,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":13,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":14,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]},{"exclusive_time":0,"id":49664000,"line":11742,"name":"chars","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":46,"id":48441008,"line":7920,"name":"infix:<*>","inclusive_time":178,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":60,"id":52314624,"line":2048,"name":"","allocations":[{"count":4,"id":33960376,"spesh":4,"type":"BOOTCode"},{"count":4,"id":33961312,"spesh":4,"type":"NQPArray"},{"count":2,"id":33960328,"spesh":2,"type":"BOOTHash"}],"inclusive_time":61,"spesh_entries":2,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":2,"callees":[{"exclusive_time":1,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":2,"entries":2}]},{"exclusive_time":8,"id":48714912,"line":19113,"name":"infix:<*>","inclusive_time":40,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":49200400,"line":2339,"name":"<anon>","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":2},{"exclusive_time":2,"id":48478400,"line":8453,"name":"infix:<*>","allocations":[{"count":1,"id":44229024,"type":"Int"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":15,"id":48708528,"line":18996,"name":"DIVIDE_NUMBERS","allocations":[{"count":3,"id":44229096,"type":"Scalar"},{"count":1,"id":66684936,"type":"Rat"}],"inclusive_time":28,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":3,"id":48481440,"line":8500,"name":"infix:<gcd>","allocations":[{"count":1,"id":44229024,"type":"Int"}],"inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":7,"id":48479008,"line":8460,"name":"infix:<div>","allocations":[{"count":2,"id":44229024,"type":"Int"}],"inclusive_time":7,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]},{"exclusive_time":0,"id":48483568,"line":8526,"name":"infix:«<»","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":49072720,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]},{"exclusive_time":5,"id":48715216,"line":19121,"name":"infix:<*>","inclusive_time":30,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49200400,"line":2339,"name":"<anon>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2},{"exclusive_time":1,"id":48478400,"line":8453,"name":"infix:<*>","allocations":[{"count":1,"id":44229024,"type":"Int"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":10,"id":48708528,"line":18996,"name":"DIVIDE_NUMBERS","allocations":[{"count":3,"id":44229096,"type":"Scalar"},{"count":1,"id":66684936,"type":"Rat"}],"inclusive_time":22,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":3,"id":48481440,"line":8500,"name":"infix:<gcd>","allocations":[{"count":1,"id":44229024,"type":"Int"}],"inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":6,"id":48479008,"line":8460,"name":"infix:<div>","allocations":[{"count":2,"id":44229024,"type":"Int"}],"inclusive_time":6,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]},{"exclusive_time":0,"id":48483568,"line":8526,"name":"infix:«<»","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":49072720,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]}]},{"exclusive_time":22,"id":50100240,"line":18816,"name":"floor","inclusive_time":52,"file":"gen/moar/m-CORE.setting","entries":8,"callees":[{"exclusive_time":5,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":5,"file":"gen/moar/m-CORE.setting","jit_entries":8,"entries":8},{"exclusive_time":23,"id":48479008,"line":8460,"name":"infix:<div>","allocations":[{"count":8,"id":44229024,"type":"Int"}],"inclusive_time":23,"file":"gen/moar/m-CORE.setting","entries":8,"callees":[{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":8,"entries":8}]}]},{"exclusive_time":30,"id":48234896,"line":1671,"name":"infix:<~>","inclusive_time":61,"file":"gen/moar/m-CORE.setting","entries":8,"callees":[{"exclusive_time":0,"id":49564592,"line":10027,"name":"Stringy","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":8,"entries":8},{"exclusive_time":10,"id":49102512,"line":1183,"name":"Stringy","inclusive_time":25,"file":"gen/moar/m-CORE.setting","entries":8,"callees":[{"exclusive_time":14,"id":49477344,"line":8254,"name":"Str","allocations":[{"count":8,"id":44229144,"type":"Str"}],"inclusive_time":14,"file":"gen/moar/m-CORE.setting","entries":8}]},{"exclusive_time":5,"id":48569600,"line":11811,"name":"infix:<~>","allocations":[{"count":8,"id":44229144,"type":"Str","jit":8}],"inclusive_time":5,"file":"gen/moar/m-CORE.setting","jit_entries":8,"entries":8}]},{"exclusive_time":47,"id":48714000,"line":19089,"name":"infix:<->","inclusive_time":88,"file":"gen/moar/m-CORE.setting","entries":8,"callees":[{"exclusive_time":4,"id":49200400,"line":2339,"name":"<anon>","inclusive_time":4,"file":"gen/moar/m-CORE.setting","jit_entries":21,"entries":24},{"exclusive_time":8,"id":48478400,"line":8453,"name":"infix:<*>","allocations":[{"count":8,"id":44229024,"type":"Int"}],"inclusive_time":8,"file":"gen/moar/m-CORE.setting","entries":8},{"exclusive_time":4,"id":48477792,"line":8446,"name":"infix:<->","allocations":[{"count":8,"id":44229024,"type":"Int","jit":8}],"inclusive_time":4,"file":"gen/moar/m-CORE.setting","jit_entries":8,"entries":8},{"exclusive_time":23,"id":48710048,"line":19023,"name":"DON\'T_DIVIDE_NUMBERS","allocations":[{"count":16,"id":44229096,"type":"Scalar"},{"count":8,"id":66684936,"type":"Rat"}],"inclusive_time":24,"file":"gen/moar/m-CORE.setting","entries":8,"callees":[{"exclusive_time":0,"id":49072720,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":8,"entries":8}]}]},{"exclusive_time":31,"id":48714912,"line":19113,"name":"infix:<*>","inclusive_time":194,"file":"gen/moar/m-CORE.setting","entries":7,"callees":[{"exclusive_time":2,"id":49200400,"line":2339,"name":"<anon>","inclusive_time":2,"file":"gen/moar/m-CORE.setting","jit_entries":14,"entries":14},{"exclusive_time":12,"id":48478400,"line":8453,"name":"infix:<*>","allocations":[{"count":7,"id":44229024,"type":"Int"}],"inclusive_time":12,"file":"gen/moar/m-CORE.setting","entries":7},{"exclusive_time":69,"id":48708528,"line":18996,"name":"DIVIDE_NUMBERS","allocations":[{"count":21,"id":44229096,"type":"Scalar"},{"count":7,"id":66684936,"type":"Rat"}],"inclusive_time":148,"file":"gen/moar/m-CORE.setting","entries":7,"callees":[{"exclusive_time":4,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":4,"file":"gen/moar/m-CORE.setting","jit_entries":7,"entries":7},{"exclusive_time":22,"id":48481440,"line":8500,"name":"infix:<gcd>","allocations":[{"count":7,"id":44229024,"type":"Int"}],"inclusive_time":22,"file":"gen/moar/m-CORE.setting","entries":7},{"exclusive_time":43,"id":48479008,"line":8460,"name":"infix:<div>","allocations":[{"count":14,"id":44229024,"type":"Int"}],"inclusive_time":44,"file":"gen/moar/m-CORE.setting","entries":14,"callees":[{"exclusive_time":1,"id":49806576,"line":14088,"name":"sink","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":14,"entries":14}]},{"exclusive_time":6,"id":48483568,"line":8526,"name":"infix:«<»","inclusive_time":6,"file":"gen/moar/m-CORE.setting","jit_entries":14,"entries":14},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":7,"entries":7},{"exclusive_time":0,"id":49072720,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":7,"entries":7}]}]},{"exclusive_time":21,"id":48457424,"line":8007,"name":"infix:«>=»","inclusive_time":72,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":34,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":35,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":12,"id":48722208,"line":19232,"name":"infix:«>=»","inclusive_time":15,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49200400,"line":2339,"name":"<anon>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2},{"exclusive_time":1,"id":48478400,"line":8453,"name":"infix:<*>","allocations":[{"count":1,"id":44229024,"type":"Int"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":48485392,"line":8547,"name":"infix:«>=»","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":29,"id":48251616,"line":2176,"name":"postfix:<++>","inclusive_time":556,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":32,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":32,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":40,"id":48251920,"line":2177,"name":"postfix:<++>","allocations":[{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":493,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":72,"id":49569152,"line":10144,"name":"succ","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":2,"id":44229096,"type":"Scalar"}],"inclusive_time":453,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":6,"id":48618240,"line":14541,"name":"infix:<,>","inclusive_time":26,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":12,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"spesh":2,"type":"BOOTCode"},{"count":2,"id":33961312,"spesh":2,"type":"NQPArray"},{"count":1,"id":33960328,"spesh":1,"type":"BOOTHash"}],"inclusive_time":13,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":6,"id":48619152,"line":14547,"name":"infix:<,>","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":1,"id":44228664,"type":"List"},{"count":1,"id":68411984,"type":"IterationBuffer"},{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":6,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":15,"id":49567328,"line":10104,"name":"RANGEPOS","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"}],"inclusive_time":96,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":31,"id":49567632,"line":10106,"name":"","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":80,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":22,"id":49567936,"line":10109,"name":"","allocations":[{"count":2,"id":44229072,"type":"IntLexRef"}],"inclusive_time":48,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":49806576,"line":14088,"name":"sink","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":14,"entries":14},{"exclusive_time":3,"id":48618240,"line":14541,"name":"infix:<,>","inclusive_time":16,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":7,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"spesh":2,"type":"BOOTCode"},{"count":2,"id":33961312,"spesh":2,"type":"NQPArray"},{"count":1,"id":33960328,"spesh":1,"type":"BOOTHash"}],"inclusive_time":8,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":4,"id":48619152,"line":14547,"name":"infix:<,>","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":1,"id":44228664,"type":"List"},{"count":1,"id":68411984,"type":"IterationBuffer"},{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":4,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":6,"id":39751296,"line":625,"name":"","inclusive_time":9,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":2,"id":39750688,"line":611,"name":"RETURN-LIST","inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]}]}]}]}]},{"exclusive_time":63,"id":49812960,"line":14149,"name":"STORE","inclusive_time":245,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":17,"id":52314624,"line":2048,"name":"","allocations":[{"count":2,"id":33960376,"type":"BOOTCode"},{"count":2,"id":33961312,"type":"NQPArray"},{"count":1,"id":33960328,"type":"BOOTHash"}],"inclusive_time":70,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":30,"id":52313712,"line":1708,"name":"","allocations":[{"count":1,"id":33960376,"type":"BOOTCode","jit":1},{"count":12,"id":33961312,"type":"NQPArray","jit":12},{"count":3,"id":33961360,"type":"NQPArrayIter","jit":3},{"count":4,"id":33960328,"type":"BOOTHash","jit":4},{"count":4,"id":33960832,"type":"BOOTIntArray","jit":4},{"count":2,"id":33960232,"type":"BOOTInt","jit":2}],"inclusive_time":52,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1,"callees":[{"exclusive_time":14,"id":52314016,"line":1738,"name":"is_narrower","inclusive_time":22,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":2,"entries":2,"callees":[{"exclusive_time":7,"id":52616112,"line":2635,"name":"type_check","allocations":[{"count":2,"id":33961360,"type":"NQPArrayIter"}],"inclusive_time":7,"file":"gen/moar/m-Metamodel.nqp","entries":2,"callees":[{"exclusive_time":0,"id":52544976,"line":161,"name":"pretending_to_be","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","jit_entries":2,"entries":2}]}]}]},{"exclusive_time":1,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":31,"id":49813264,"line":14150,"name":"STORE","allocations":[{"count":1,"id":33960376,"type":"BOOTCode"},{"count":1,"id":33960304,"type":"BOOTArray"},{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":111,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":11,"id":49800800,"line":13990,"name":"iterator","allocations":[{"count":2,"id":33960376,"type":"BOOTCode","jit":2}],"inclusive_time":23,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2,"callees":[{"exclusive_time":0,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2},{"exclusive_time":2,"id":49801104,"line":13992,"name":"","allocations":[{"count":2,"id":44229096,"type":"Scalar","jit":2}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2},{"exclusive_time":6,"id":49801712,"line":14004,"name":"new","allocations":[{"count":2,"id":67906128,"type":"<anon|352550624>","jit":2}],"inclusive_time":8,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2,"callees":[{"exclusive_time":0,"id":49052656,"line":495,"name":"of","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2},{"exclusive_time":1,"id":49801408,"line":13998,"name":"BUILD","allocations":[{"count":2,"id":44229096,"type":"Scalar","jit":2}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]}]},{"exclusive_time":3,"id":49802016,"line":14006,"name":"pull-one","inclusive_time":4,"file":"gen/moar/m-CORE.setting","jit_entries":5,"entries":5,"callees":[{"exclusive_time":0,"id":49802320,"line":14013,"name":"reify-and-pull-one","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]},{"exclusive_time":11,"id":39774400,"line":1558,"name":"infix:<=:=>","inclusive_time":51,"file":"gen/moar/m-CORE.setting","jit_entries":4,"entries":4,"callees":[{"exclusive_time":36,"id":52314624,"line":2048,"name":"","allocations":[{"count":8,"id":33960376,"type":"BOOTCode"},{"count":8,"id":33961312,"type":"NQPArray"},{"count":4,"id":33960328,"type":"BOOTHash"}],"inclusive_time":38,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":4,"callees":[{"exclusive_time":1,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":4,"entries":4}]},{"exclusive_time":1,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":4}]},{"exclusive_time":0,"id":49072720,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2},{"exclusive_time":0,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]},{"exclusive_time":7,"id":49569456,"line":10149,"name":"","allocations":[{"count":1,"id":44229096,"type":"Scalar"},{"count":1,"id":44229048,"type":"StrLexRef"}],"inclusive_time":12,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":3,"id":39751296,"line":625,"name":"","inclusive_time":5,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":39750688,"line":611,"name":"RETURN-LIST","inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":52321312,"line":3008,"name":"","allocations":[{"count":1,"id":44228664,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"exclusive_time":11,"id":49500448,"line":8897,"name":"Str","allocations":[{"count":1,"id":44229144,"type":"Str"}],"inclusive_time":11,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":0,"id":49564288,"line":10026,"name":"Str","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":2}]},{"exclusive_time":0,"id":49072720,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":2,"id":49416544,"line":6469,"name":"fire_phasers","allocations":[{"count":1,"id":33960376,"spesh":1,"type":"BOOTCode"}],"inclusive_time":3,"spesh_entries":1,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":48510016,"line":8705,"name":"prefix:<!>","inclusive_time":0,"spesh_entries":1,"file":"gen/moar/m-CORE.setting","inlined_entries":1,"entries":1}]}]},{"exclusive_time":0,"id":49072720,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":1,"id":49198880,"line":2316,"name":"<anon>","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":46,"id":50543776,"line":24412,"name":"print","inclusive_time":46,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":3,"id":49072720,"line":856,"name":"sink","inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":10},{"exclusive_time":29,"id":48438272,"line":7908,"name":"infix:<+>","inclusive_time":172,"file":"gen/moar/m-CORE.setting","entries":3,"callees":[{"exclusive_time":128,"id":52314624,"line":2048,"name":"","allocations":[{"count":6,"id":33960376,"spesh":6,"type":"BOOTCode"},{"count":6,"id":33961312,"spesh":6,"type":"NQPArray"},{"count":3,"id":33960328,"spesh":3,"type":"BOOTHash"}],"inclusive_time":130,"spesh_entries":3,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":3,"callees":[{"exclusive_time":1,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":3,"entries":3}]},{"exclusive_time":4,"id":48438576,"line":7909,"name":"infix:<+>","allocations":[{"count":1,"id":44229096,"type":"Scalar"}],"inclusive_time":5,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49449984,"line":7729,"name":"Numeric","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":4,"id":48465936,"line":8173,"name":"infix:<+>","inclusive_time":5,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":49478864,"line":8273,"name":"Bridge","allocations":[{"count":1,"id":44229000,"type":"Num","jit":1}],"inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":49496496,"line":8826,"name":"Bridge","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":48531904,"line":9115,"name":"infix:<+>","allocations":[{"count":1,"id":44229000,"type":"Num"}],"inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":0,"id":48531904,"line":9115,"name":"infix:<+>","allocations":[{"count":1,"id":44229000,"type":"Num"}],"inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":118,"id":48466848,"line":8179,"name":"infix:</>","inclusive_time":282,"file":"gen/moar/m-CORE.setting","entries":19,"callees":[{"exclusive_time":56,"id":50652912,"line":26403,"name":"Bridge","inclusive_time":115,"file":"gen/moar/m-CORE.setting","entries":19,"callees":[{"exclusive_time":40,"id":50099936,"line":18807,"name":"Num","allocations":[{"count":19,"id":44229000,"type":"Num","jit":18}],"inclusive_time":58,"file":"gen/moar/m-CORE.setting","jit_entries":18,"entries":19,"callees":[{"exclusive_time":18,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":18,"file":"gen/moar/m-CORE.setting","inlined_entries":18,"jit_entries":19,"entries":19}]}]},{"exclusive_time":7,"id":49478864,"line":8273,"name":"Bridge","allocations":[{"count":19,"id":44229000,"type":"Num","jit":19}],"inclusive_time":7,"file":"gen/moar/m-CORE.setting","jit_entries":19,"entries":19},{"exclusive_time":40,"id":48533728,"line":9136,"name":"infix:</>","allocations":[{"count":19,"id":44229000,"type":"Num","jit":3}],"inclusive_time":42,"file":"gen/moar/m-CORE.setting","jit_entries":3,"entries":19,"callees":[{"exclusive_time":1,"id":49806576,"line":14088,"name":"sink","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":19,"entries":19}]}]},{"exclusive_time":271,"id":48625232,"line":14616,"name":"infix:<xx>","allocations":[{"count":9,"id":33960376,"type":"BOOTCode","jit":9},{"count":18,"id":44229096,"type":"Scalar","jit":18},{"count":9,"id":33960304,"type":"BOOTArray","jit":9},{"count":9,"id":44228664,"type":"List","jit":9}],"inclusive_time":21792,"file":"gen/moar/m-CORE.setting","deopt_one":9,"jit_entries":9,"entries":9,"callees":[{"exclusive_time":259,"id":93460480,"line":78,"name":"","inclusive_time":21481,"file":"hibbified-249.p6","entries":90,"callees":[{"exclusive_time":10,"id":49916320,"line":16988,"name":"elems","inclusive_time":10,"file":"gen/moar/m-CORE.setting","jit_entries":90,"entries":90},{"exclusive_time":267,"id":90023072,"line":5,"name":"random-bytes","inclusive_time":21211,"file":"hibbified-249.p6","jit_entries":90,"entries":90,"callees":[{"exclusive_time":238,"id":49775872,"line":13419,"name":"roll","allocations":[{"count":90,"id":33960376,"type":"BOOTCode","jit":90},{"count":90,"id":44229096,"type":"Scalar","jit":90}],"inclusive_time":2042,"file":"gen/moar/m-CORE.setting","jit_entries":90,"entries":90,"callees":[{"exclusive_time":473,"id":49750336,"line":13153,"name":"elems","allocations":[{"count":90,"id":44228640,"type":"Hash","jit":90},{"count":270,"id":44228616,"type":"IntAttrRef","jit":270}],"inclusive_time":805,"file":"gen/moar/m-CORE.setting","jit_entries":90,"entries":90,"callees":[{"exclusive_time":92,"id":48477792,"line":8446,"name":"infix:<->","allocations":[{"count":270,"id":44229024,"type":"Int","jit":270}],"inclusive_time":92,"file":"gen/moar/m-CORE.setting","inlined_entries":90,"jit_entries":270,"entries":270},{"exclusive_time":21,"id":48477184,"line":8439,"name":"infix:<+>","allocations":[{"count":90,"id":44229024,"type":"Int","jit":90}],"inclusive_time":21,"file":"gen/moar/m-CORE.setting","inlined_entries":90,"jit_entries":90,"entries":90},{"exclusive_time":136,"id":48272288,"line":5211,"name":"infix:<max>","inclusive_time":218,"spesh_entries":90,"file":"gen/moar/m-CORE.setting","entries":90,"callees":[{"exclusive_time":61,"id":48525520,"line":8789,"name":"infix:<cmp>","inclusive_time":61,"spesh_entries":90,"file":"gen/moar/m-CORE.setting","entries":90},{"exclusive_time":21,"id":48484784,"line":8540,"name":"infix:«>»","inclusive_time":21,"spesh_entries":90,"file":"gen/moar/m-CORE.setting","inlined_entries":90,"entries":90}]}]},{"exclusive_time":541,"id":49776480,"line":13420,"name":"","allocations":[{"count":90,"id":33960376,"type":"BOOTCode","jit":90},{"count":180,"id":44229096,"type":"Scalar","jit":180},{"count":180,"id":44228616,"type":"IntAttrRef","jit":180}],"inclusive_time":998,"file":"gen/moar/m-CORE.setting","jit_entries":90,"entries":90,"callees":[{"exclusive_time":52,"id":49776784,"line":13422,"name":"","inclusive_time":52,"file":"gen/moar/m-CORE.setting","jit_entries":90,"entries":90},{"exclusive_time":23,"id":48477184,"line":8439,"name":"infix:<+>","inclusive_time":23,"file":"gen/moar/m-CORE.setting","jit_entries":90,"entries":90},{"exclusive_time":108,"id":48272288,"line":5211,"name":"infix:<max>","inclusive_time":163,"spesh_entries":90,"file":"gen/moar/m-CORE.setting","entries":90,"callees":[{"exclusive_time":41,"id":48525520,"line":8789,"name":"infix:<cmp>","inclusive_time":41,"spesh_entries":90,"file":"gen/moar/m-CORE.setting","entries":90},{"exclusive_time":13,"id":48484784,"line":8540,"name":"infix:«>»","inclusive_time":13,"spesh_entries":90,"file":"gen/moar/m-CORE.setting","inlined_entries":90,"entries":90}]},{"exclusive_time":101,"id":49777392,"line":13432,"name":"new","allocations":[{"count":90,"id":67906272,"type":"<anon|348661744>","jit":90}],"inclusive_time":124,"file":"gen/moar/m-CORE.setting","jit_entries":90,"entries":90,"callees":[{"exclusive_time":22,"id":49777088,"line":13426,"name":"BUILD","inclusive_time":22,"file":"gen/moar/m-CORE.setting","jit_entries":90,"entries":90}]},{"exclusive_time":94,"id":49700480,"line":12399,"name":"new","allocations":[{"count":90,"id":67909080,"type":"Seq"}],"inclusive_time":94,"file":"gen/moar/m-CORE.setting","entries":90}]}]},{"exclusive_time":453,"id":49079712,"line":941,"name":"new","inclusive_time":18900,"spesh_entries":90,"file":"gen/moar/m-CORE.setting","entries":90,"callees":[{"exclusive_time":15,"id":52321312,"line":3008,"name":"","allocations":[{"count":90,"id":44228664,"type":"List","jit":90}],"inclusive_time":15,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":90,"entries":90},{"exclusive_time":1126,"id":52314624,"line":2048,"name":"","allocations":[{"count":180,"id":33960376,"type":"BOOTCode"},{"count":180,"id":33961312,"type":"NQPArray"},{"count":90,"id":33960328,"type":"BOOTHash"},{"count":90,"id":33960520,"type":"CallCapture"}],"inclusive_time":4442,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":90,"callees":[{"exclusive_time":185,"id":52294864,"line":920,"name":"is_bindable","allocations":[{"count":90,"id":33960376,"spesh":90,"type":"BOOTCode"}],"inclusive_time":3316,"spesh_entries":90,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":90,"callees":[{"exclusive_time":177,"id":52295168,"line":926,"name":"","inclusive_time":3131,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":90,"callees":[{"exclusive_time":856,"id":52292736,"line":606,"name":"bind","allocations":[{"count":90,"id":44228640,"spesh":90,"type":"Hash"}],"inclusive_time":2953,"spesh_entries":90,"file":"gen/moar/m-BOOTSTRAP.nqp","deopt_one":90,"entries":90,"callees":[{"exclusive_time":1228,"id":52290912,"line":168,"name":"bind_one_param","allocations":[{"count":720,"id":33960376,"type":"BOOTCode"},{"count":90,"id":44229096,"type":"Scalar"}],"inclusive_time":2058,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":360,"callees":[{"exclusive_time":55,"id":52616112,"line":2635,"name":"type_check","inclusive_time":55,"file":"gen/moar/m-Metamodel.nqp","jit_entries":90,"entries":90},{"exclusive_time":209,"id":49698960,"line":12379,"name":"cache","allocations":[{"count":90,"id":44229096,"type":"Scalar","jit":90}],"inclusive_time":775,"file":"gen/moar/m-CORE.setting","jit_entries":90,"entries":90,"callees":[{"exclusive_time":226,"id":49701088,"line":12407,"name":"iterator","inclusive_time":264,"file":"gen/moar/m-CORE.setting","jit_entries":90,"entries":90,"callees":[{"exclusive_time":7,"id":49806576,"line":14088,"name":"sink","inclusive_time":7,"file":"gen/moar/m-CORE.setting","jit_entries":90,"entries":90},{"exclusive_time":30,"id":52616112,"line":2635,"name":"type_check","inclusive_time":30,"file":"gen/moar/m-Metamodel.nqp","jit_entries":90,"entries":90}]},{"exclusive_time":130,"id":49791072,"line":13804,"name":"from-iterator","allocations":[{"count":90,"id":44228664,"type":"List","jit":90},{"count":90,"id":68411984,"type":"IterationBuffer","jit":90},{"count":90,"id":65481320,"type":"List::Reifier","jit":90}],"inclusive_time":301,"file":"gen/moar/m-CORE.setting","jit_entries":90,"entries":90,"callees":[{"exclusive_time":151,"id":49800496,"line":13985,"name":"reification-target","inclusive_time":170,"file":"gen/moar/m-CORE.setting","jit_entries":90,"entries":90,"callees":[{"exclusive_time":11,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":11,"file":"gen/moar/m-CORE.setting","jit_entries":90,"entries":90},{"exclusive_time":7,"id":49806576,"line":14088,"name":"sink","inclusive_time":7,"file":"gen/moar/m-CORE.setting","jit_entries":90,"entries":90}]}]}]}]},{"exclusive_time":38,"id":52292432,"line":573,"name":"handle_optional","inclusive_time":38,"spesh_entries":90,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":90}]}]}]}]},{"exclusive_time":313,"id":49911760,"line":16936,"name":"new","allocations":[{"count":90,"id":44229096,"type":"Scalar","jit":90}],"inclusive_time":13989,"file":"gen/moar/m-CORE.setting","jit_entries":90,"entries":90,"callees":[{"exclusive_time":22,"id":49698960,"line":12379,"name":"cache","inclusive_time":22,"file":"gen/moar/m-CORE.setting","jit_entries":90,"entries":90},{"exclusive_time":156,"id":49912368,"line":16943,"name":"create","allocations":[{"count":90,"id":44229096,"type":"Scalar","jit":90},{"count":90,"id":73528976,"type":"array[uint8]","jit":90}],"inclusive_time":164,"file":"gen/moar/m-CORE.setting","jit_entries":90,"entries":90,"callees":[{"exclusive_time":8,"id":49072720,"line":856,"name":"sink","inclusive_time":8,"file":"gen/moar/m-CORE.setting","jit_entries":90,"entries":90}]},{"exclusive_time":1071,"id":49927264,"line":16355,"name":"STORE","allocations":[{"count":90,"id":44229096,"type":"Scalar","jit":90},{"count":1170,"id":44229072,"type":"IntLexRef","jit":1170}],"inclusive_time":13489,"file":"gen/moar/m-CORE.setting","jit_entries":90,"entries":90,"callees":[{"exclusive_time":558,"id":49797760,"line":13932,"name":"elems","allocations":[{"count":90,"id":44229096,"spesh":90,"type":"Scalar"}],"inclusive_time":10090,"spesh_entries":90,"file":"gen/moar/m-CORE.setting","entries":90,"callees":[{"exclusive_time":10,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":10,"file":"gen/moar/m-CORE.setting","jit_entries":90,"entries":90},{"exclusive_time":8,"id":49806576,"line":14088,"name":"sink","inclusive_time":8,"file":"gen/moar/m-CORE.setting","jit_entries":90,"entries":90},{"exclusive_time":466,"id":49845792,"line":13753,"name":"reify-until-lazy","allocations":[{"count":90,"id":33960376,"type":"BOOTCode","jit":90},{"count":180,"id":44229096,"type":"Scalar","jit":180}],"inclusive_time":9424,"file":"gen/moar/m-CORE.setting","jit_entries":90,"entries":90,"callees":[{"exclusive_time":206,"id":49213776,"line":2476,"name":"push-until-lazy","allocations":[{"count":90,"id":44229096,"type":"Scalar","jit":90}],"inclusive_time":8901,"file":"gen/moar/m-CORE.setting","jit_entries":90,"entries":90,"callees":[{"exclusive_time":8,"id":49215296,"line":2511,"name":"is-lazy","inclusive_time":8,"file":"gen/moar/m-CORE.setting","jit_entries":90,"entries":90},{"exclusive_time":6664,"id":49778000,"line":13438,"name":"push-all","allocations":[{"count":90,"id":44229096,"spesh":90,"type":"Scalar"},{"count":2430,"id":44228616,"spesh":2430,"type":"IntAttrRef"},{"count":1170,"id":44229024,"spesh":1170,"type":"Int"}],"inclusive_time":8687,"spesh_entries":90,"file":"gen/moar/m-CORE.setting","entries":90,"callees":[{"exclusive_time":303,"id":48475664,"line":8419,"name":"postfix:<-->","inclusive_time":303,"file":"gen/moar/m-CORE.setting","jit_entries":1260,"entries":1260},{"exclusive_time":1127,"id":48477184,"line":8439,"name":"infix:<+>","allocations":[{"count":1170,"id":44229024,"type":"Int","jit":1170}],"inclusive_time":1127,"file":"gen/moar/m-CORE.setting","jit_entries":1170,"entries":1170},{"exclusive_time":590,"id":49692880,"line":12283,"name":"push","inclusive_time":590,"file":"gen/moar/m-CORE.setting","entries":1170}]}]},{"exclusive_time":9,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":9,"file":"gen/moar/m-CORE.setting","inlined_entries":90,"jit_entries":90,"entries":90},{"exclusive_time":37,"id":52616112,"line":2635,"name":"type_check","inclusive_time":37,"file":"gen/moar/m-Metamodel.nqp","jit_entries":90,"entries":90},{"exclusive_time":8,"id":49806576,"line":14088,"name":"sink","inclusive_time":8,"file":"gen/moar/m-CORE.setting","jit_entries":90,"entries":90}]},{"exclusive_time":8,"id":49072720,"line":856,"name":"sink","inclusive_time":8,"file":"gen/moar/m-CORE.setting","jit_entries":90,"entries":90},{"exclusive_time":57,"id":49849440,"line":13795,"name":"fully-reified","inclusive_time":80,"file":"gen/moar/m-CORE.setting","jit_entries":90,"entries":90,"callees":[{"exclusive_time":22,"id":48509712,"line":8704,"name":"prefix:<!>","inclusive_time":22,"file":"gen/moar/m-CORE.setting","inlined_entries":180,"jit_entries":180,"entries":180}]}]},{"exclusive_time":2126,"id":49799280,"line":13954,"name":"AT-POS","inclusive_time":2327,"spesh_entries":1170,"file":"gen/moar/m-CORE.setting","entries":1170,"callees":[{"exclusive_time":107,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":107,"file":"gen/moar/m-CORE.setting","jit_entries":1170,"entries":1170},{"exclusive_time":93,"id":49806576,"line":14088,"name":"sink","inclusive_time":93,"file":"gen/moar/m-CORE.setting","jit_entries":1170,"entries":1170}]}]}]}]}]}]},{"exclusive_time":39,"id":49919056,"line":16998,"name":"sink","inclusive_time":39,"file":"gen/moar/m-CORE.setting","entries":90}]},{"exclusive_time":211,"id":48762640,"line":25227,"name":"put","allocations":[{"count":9,"id":33960376,"type":"BOOTCode"},{"count":9,"id":44229048,"type":"StrLexRef"}],"inclusive_time":11994,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":67,"id":49791376,"line":13817,"name":"from-slurpy","allocations":[{"count":9,"id":44228664,"spesh":9,"type":"List"},{"count":9,"id":68411984,"spesh":9,"type":"IterationBuffer"},{"count":9,"id":65481320,"spesh":9,"type":"List::Reifier"}],"inclusive_time":103,"spesh_entries":9,"file":"gen/moar/m-CORE.setting","deopt_one":9,"entries":9,"callees":[{"exclusive_time":2,"id":52321312,"line":3008,"name":"","allocations":[{"count":9,"id":44228664,"type":"List","jit":9}],"inclusive_time":2,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":9,"entries":9},{"exclusive_time":30,"id":49800496,"line":13985,"name":"reification-target","inclusive_time":33,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9,"callees":[{"exclusive_time":2,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":2,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9}]}]},{"exclusive_time":85,"id":39748256,"line":556,"name":"DYNAMIC","allocations":[{"count":9,"id":33960376,"type":"BOOTCode","jit":7}],"inclusive_time":201,"file":"gen/moar/m-CORE.setting","jit_entries":7,"entries":9,"callees":[{"exclusive_time":48,"id":39748560,"line":558,"name":"","allocations":[{"count":9,"id":33960376,"spesh":7,"type":"BOOTCode"},{"count":9,"id":44229096,"spesh":7,"type":"Scalar"}],"inclusive_time":114,"spesh_entries":7,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":1,"id":49806576,"line":14088,"name":"sink","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9},{"exclusive_time":64,"id":39748864,"line":564,"name":"","inclusive_time":64,"spesh_entries":7,"file":"gen/moar/m-CORE.setting","entries":9}]},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9}]},{"exclusive_time":16,"id":52311584,"line":1621,"name":"","allocations":[{"count":9,"id":44229240,"spesh":9,"type":"Block"},{"count":9,"id":33960376,"spesh":9,"type":"BOOTCode"}],"inclusive_time":16,"spesh_entries":9,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":9},{"exclusive_time":88,"id":49298592,"line":3773,"name":"map","inclusive_time":705,"spesh_entries":9,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":1,"id":52321312,"line":3008,"name":"","allocations":[{"count":9,"id":44228664,"type":"List","jit":9}],"inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":9,"entries":9},{"exclusive_time":234,"id":52314624,"line":2048,"name":"","allocations":[{"count":18,"id":33960376,"type":"BOOTCode"},{"count":18,"id":33961312,"type":"NQPArray"},{"count":9,"id":33960328,"type":"BOOTHash"}],"inclusive_time":236,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":9,"callees":[{"exclusive_time":2,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":2,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":9,"entries":9}]},{"exclusive_time":72,"id":49299808,"line":3779,"name":"map","allocations":[{"count":18,"id":44229096,"spesh":18,"type":"Scalar"}],"inclusive_time":379,"spesh_entries":9,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":66,"id":49800800,"line":13990,"name":"iterator","allocations":[{"count":9,"id":33960376,"type":"BOOTCode","jit":9}],"inclusive_time":130,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9,"callees":[{"exclusive_time":1,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9},{"exclusive_time":12,"id":49801104,"line":13992,"name":"","allocations":[{"count":9,"id":44229096,"type":"Scalar","jit":9}],"inclusive_time":12,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9},{"exclusive_time":41,"id":49801712,"line":14004,"name":"new","allocations":[{"count":9,"id":67906128,"type":"<anon|352550624>","jit":9}],"inclusive_time":49,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9,"callees":[{"exclusive_time":1,"id":49052656,"line":495,"name":"of","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9},{"exclusive_time":7,"id":49801408,"line":13998,"name":"BUILD","inclusive_time":7,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9}]}]},{"exclusive_time":110,"id":49303152,"line":3840,"name":"sequential-map","allocations":[{"count":18,"id":33960376,"type":"BOOTCode","jit":18},{"count":27,"id":44229096,"type":"Scalar","jit":27}],"inclusive_time":176,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9,"callees":[{"exclusive_time":25,"id":49411680,"line":6408,"name":"count","inclusive_time":26,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9,"callees":[{"exclusive_time":1,"id":50093552,"line":18706,"name":"count","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9}]},{"exclusive_time":2,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":2,"file":"gen/moar/m-CORE.setting","inlined_entries":9,"jit_entries":9,"entries":9},{"exclusive_time":5,"id":49304064,"line":3847,"name":"","inclusive_time":5,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9},{"exclusive_time":21,"id":49401344,"line":3827,"name":"new","allocations":[{"count":27,"id":44229096,"type":"Scalar","jit":27},{"count":9,"id":67908360,"type":"<anon|159066640>","jit":9}],"inclusive_time":21,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9},{"exclusive_time":8,"id":49700480,"line":12399,"name":"new","allocations":[{"count":9,"id":67909080,"type":"Seq","jit":9}],"inclusive_time":8,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9}]}]}]},{"exclusive_time":68,"id":49705648,"line":12474,"name":"sink","inclusive_time":10356,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":41,"id":49701088,"line":12407,"name":"iterator","inclusive_time":52,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9,"callees":[{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9},{"exclusive_time":10,"id":52616112,"line":2635,"name":"type_check","inclusive_time":10,"file":"gen/moar/m-Metamodel.nqp","jit_entries":9,"entries":9}]},{"exclusive_time":415,"id":49306192,"line":3921,"name":"sink-all","allocations":[{"count":9,"id":33960376,"type":"BOOTCode","jit":9},{"count":54,"id":44229096,"type":"Scalar","jit":54},{"count":27,"id":44229144,"type":"Str","jit":27}],"inclusive_time":10232,"file":"gen/moar/m-CORE.setting","deopt_one":9,"jit_entries":9,"entries":9,"callees":[{"exclusive_time":1,"id":48510016,"line":8705,"name":"prefix:<!>","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9},{"exclusive_time":27,"id":49417456,"line":6478,"name":"phasers","inclusive_time":29,"file":"gen/moar/m-CORE.setting","jit_entries":18,"entries":18,"callees":[{"exclusive_time":1,"id":49806576,"line":14088,"name":"sink","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":18,"entries":18}]},{"exclusive_time":13,"id":48405440,"line":7763,"name":"prefix:<+>","inclusive_time":74,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9,"callees":[{"exclusive_time":19,"id":49795632,"line":13911,"name":"Numeric","inclusive_time":60,"spesh_entries":9,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":37,"id":49797760,"line":13932,"name":"elems","inclusive_time":40,"spesh_entries":9,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":1,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9},{"exclusive_time":1,"id":49806576,"line":14088,"name":"sink","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":18,"entries":18}]}]}]},{"exclusive_time":32,"id":49078192,"line":929,"name":"Bool","inclusive_time":76,"spesh_entries":9,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":2,"id":52321312,"line":3008,"name":"","allocations":[{"count":9,"id":44228664,"type":"List","jit":9}],"inclusive_time":2,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":9,"entries":9},{"exclusive_time":39,"id":49794720,"line":13904,"name":"Bool","inclusive_time":42,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9,"callees":[{"exclusive_time":0,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9},{"exclusive_time":0,"id":48508496,"line":8699,"name":"prefix:<so>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9}]}]},{"exclusive_time":4,"id":49806576,"line":14088,"name":"sink","inclusive_time":4,"file":"gen/moar/m-CORE.setting","jit_entries":54,"entries":54},{"exclusive_time":73,"id":49802016,"line":14006,"name":"pull-one","inclusive_time":1048,"file":"gen/moar/m-CORE.setting","deopt_one":36,"jit_entries":45,"entries":45,"callees":[{"exclusive_time":166,"id":49802320,"line":14013,"name":"reify-and-pull-one","allocations":[{"count":45,"id":44229072,"type":"IntLexRef","jit":45}],"inclusive_time":975,"file":"gen/moar/m-CORE.setting","jit_entries":45,"entries":45,"callees":[{"exclusive_time":153,"id":49843664,"line":13724,"name":"reify-at-least","allocations":[{"count":45,"id":33960376,"type":"BOOTCode","jit":45},{"count":9,"id":44229096,"type":"Scalar","jit":9}],"inclusive_time":800,"file":"gen/moar/m-CORE.setting","deopt_one":9,"jit_entries":45,"entries":45,"callees":[{"exclusive_time":3,"id":49806576,"line":14088,"name":"sink","inclusive_time":3,"file":"gen/moar/m-CORE.setting","jit_entries":45,"entries":45},{"exclusive_time":168,"id":49844576,"line":13732,"name":"","allocations":[{"count":72,"id":33960376,"type":"BOOTCode","jit":64},{"count":36,"id":44229096,"type":"Scalar","jit":32}],"inclusive_time":642,"file":"gen/moar/m-CORE.setting","jit_entries":32,"entries":36,"callees":[{"exclusive_time":2,"id":49806576,"line":14088,"name":"sink","inclusive_time":2,"file":"gen/moar/m-CORE.setting","jit_entries":27,"entries":27},{"exclusive_time":99,"id":49845488,"line":13746,"name":"","allocations":[{"count":36,"id":44229096,"type":"Scalar","jit":32}],"inclusive_time":459,"file":"gen/moar/m-CORE.setting","jit_entries":32,"entries":36,"callees":[{"exclusive_time":120,"id":49170912,"line":1907,"name":"push","inclusive_time":348,"file":"gen/moar/m-CORE.setting","entries":18,"callees":[{"exclusive_time":3,"id":52321312,"line":3008,"name":"","allocations":[{"count":18,"id":44228664,"type":"List","jit":18}],"inclusive_time":3,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":18,"entries":18},{"exclusive_time":197,"id":52314624,"line":2048,"name":"","allocations":[{"count":36,"id":33960376,"type":"BOOTCode"},{"count":36,"id":33961312,"type":"NQPArray"},{"count":18,"id":33960328,"type":"BOOTHash"}],"inclusive_time":211,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":18,"callees":[{"exclusive_time":13,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":13,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":18,"entries":18}]},{"exclusive_time":13,"id":49692880,"line":12283,"name":"push","inclusive_time":13,"file":"gen/moar/m-CORE.setting","entries":18}]},{"exclusive_time":11,"id":49692880,"line":12283,"name":"push","inclusive_time":11,"file":"gen/moar/m-CORE.setting","entries":18}]},{"exclusive_time":12,"id":49072720,"line":856,"name":"sink","inclusive_time":12,"file":"gen/moar/m-CORE.setting","entries":45}]}]},{"exclusive_time":8,"id":48483568,"line":8526,"name":"infix:«<»","inclusive_time":8,"file":"gen/moar/m-CORE.setting","jit_entries":45,"entries":45}]}]},{"exclusive_time":117,"id":48762944,"line":25230,"name":"","inclusive_time":8551,"file":"gen/moar/m-CORE.setting","entries":36,"callees":[{"exclusive_time":89,"id":50654128,"line":26408,"name":"Str","inclusive_time":8338,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":16,"id":49200400,"line":2339,"name":"<anon>","inclusive_time":16,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":9},{"exclusive_time":2,"id":49102816,"line":1185,"name":"item","inclusive_time":2,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":9},{"exclusive_time":37,"id":48233376,"line":1665,"name":"prefix:<~>","inclusive_time":8229,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":29,"id":49102512,"line":1183,"name":"Stringy","inclusive_time":8192,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":9,"callees":[{"exclusive_time":185,"id":50101456,"line":18834,"name":"Str","allocations":[{"count":9,"id":33960376,"type":"BOOTCode"},{"count":27,"id":44229096,"type":"Scalar"}],"inclusive_time":8162,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":11,"id":48483568,"line":8526,"name":"infix:«<»","inclusive_time":11,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9},{"exclusive_time":27,"id":49455456,"line":8047,"name":"abs","inclusive_time":111,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":59,"id":48719472,"line":19202,"name":"infix:«<»","inclusive_time":83,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":4,"id":49200400,"line":2339,"name":"<anon>","inclusive_time":4,"file":"gen/moar/m-CORE.setting","jit_entries":18,"entries":18},{"exclusive_time":18,"id":48478400,"line":8453,"name":"infix:<*>","allocations":[{"count":9,"id":44229024,"type":"Int","jit":9}],"inclusive_time":18,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9},{"exclusive_time":1,"id":48483568,"line":8526,"name":"infix:«<»","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9}]}]},{"exclusive_time":43,"id":50100240,"line":18816,"name":"floor","inclusive_time":94,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":7,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":7,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9},{"exclusive_time":42,"id":48479008,"line":8460,"name":"infix:<div>","allocations":[{"count":9,"id":44229024,"type":"Int","jit":9}],"inclusive_time":43,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9,"callees":[{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9}]}]},{"exclusive_time":91,"id":48714000,"line":19089,"name":"infix:<->","inclusive_time":153,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":5,"id":49200400,"line":2339,"name":"<anon>","inclusive_time":5,"file":"gen/moar/m-CORE.setting","jit_entries":27,"entries":27},{"exclusive_time":9,"id":48478400,"line":8453,"name":"infix:<*>","allocations":[{"count":9,"id":44229024,"type":"Int","jit":7}],"inclusive_time":9,"file":"gen/moar/m-CORE.setting","jit_entries":7,"entries":9},{"exclusive_time":8,"id":48477792,"line":8446,"name":"infix:<->","allocations":[{"count":9,"id":44229024,"type":"Int","jit":9}],"inclusive_time":8,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9},{"exclusive_time":38,"id":48710048,"line":19023,"name":"DON\'T_DIVIDE_NUMBERS","allocations":[{"count":18,"id":44229096,"type":"Scalar"},{"count":9,"id":66684936,"type":"Rat"}],"inclusive_time":38,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":0,"id":49072720,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9}]}]},{"exclusive_time":8,"id":49072720,"line":856,"name":"sink","inclusive_time":8,"file":"gen/moar/m-CORE.setting","entries":27},{"exclusive_time":78,"id":48234896,"line":1671,"name":"infix:<~>","inclusive_time":129,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":0,"id":49564592,"line":10027,"name":"Stringy","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9},{"exclusive_time":5,"id":49102512,"line":1183,"name":"Stringy","inclusive_time":44,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9,"callees":[{"exclusive_time":39,"id":49477344,"line":8254,"name":"Str","allocations":[{"count":9,"id":44229144,"type":"Str","jit":9}],"inclusive_time":39,"file":"gen/moar/m-CORE.setting","inlined_entries":9,"jit_entries":9,"entries":9}]},{"exclusive_time":5,"id":48569600,"line":11811,"name":"infix:<~>","allocations":[{"count":9,"id":44229144,"type":"Str","jit":9}],"inclusive_time":5,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9}]},{"exclusive_time":32,"id":49078192,"line":929,"name":"Bool","inclusive_time":331,"spesh_entries":9,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":2,"id":52321312,"line":3008,"name":"","allocations":[{"count":9,"id":44228664,"type":"List","jit":9}],"inclusive_time":2,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":9,"entries":9},{"exclusive_time":46,"id":49452720,"line":7747,"name":"Bool","inclusive_time":296,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":20,"id":48454384,"line":7993,"name":"infix:<!=>","inclusive_time":249,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9,"callees":[{"exclusive_time":58,"id":48718256,"line":19187,"name":"infix:<==>","inclusive_time":226,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":47,"id":50108448,"line":18955,"name":"REDUCE-ME","allocations":[{"count":9,"id":33960376,"type":"BOOTCode"}],"inclusive_time":159,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":8,"id":48484784,"line":8540,"name":"infix:«>»","inclusive_time":8,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9},{"exclusive_time":54,"id":50108752,"line":18956,"name":"","allocations":[{"count":18,"id":44229096,"type":"Scalar"}],"inclusive_time":103,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":40,"id":48481440,"line":8500,"name":"infix:<gcd>","allocations":[{"count":9,"id":44229024,"type":"Int","jit":8}],"inclusive_time":40,"file":"gen/moar/m-CORE.setting","jit_entries":8,"entries":9},{"exclusive_time":8,"id":48484784,"line":8540,"name":"infix:«>»","inclusive_time":8,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9}]}]},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9},{"exclusive_time":1,"id":49200400,"line":2339,"name":"<anon>","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9},{"exclusive_time":6,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":6,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9}]},{"exclusive_time":2,"id":48510624,"line":8708,"name":"prefix:<not>","inclusive_time":2,"file":"gen/moar/m-CORE.setting","inlined_entries":9,"jit_entries":9,"entries":9}]}]}]},{"exclusive_time":956,"id":50101760,"line":18840,"name":"","allocations":[{"count":27,"id":44229096,"type":"Scalar"}],"inclusive_time":7136,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":28,"id":48569600,"line":11811,"name":"infix:<~>","allocations":[{"count":18,"id":44229144,"type":"Str","jit":4}],"inclusive_time":28,"file":"gen/moar/m-CORE.setting","jit_entries":4,"entries":18},{"exclusive_time":62,"id":49072720,"line":856,"name":"sink","inclusive_time":62,"file":"gen/moar/m-CORE.setting","entries":207},{"exclusive_time":21,"id":48483568,"line":8526,"name":"infix:«<»","inclusive_time":21,"file":"gen/moar/m-CORE.setting","jit_entries":82,"entries":82},{"exclusive_time":150,"id":49078192,"line":929,"name":"Bool","inclusive_time":1523,"spesh_entries":73,"file":"gen/moar/m-CORE.setting","entries":73,"callees":[{"exclusive_time":10,"id":52321312,"line":3008,"name":"","allocations":[{"count":73,"id":44228664,"type":"List","jit":73}],"inclusive_time":10,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":73,"entries":73},{"exclusive_time":126,"id":49452720,"line":7747,"name":"Bool","inclusive_time":1362,"file":"gen/moar/m-CORE.setting","entries":73,"callees":[{"exclusive_time":62,"id":48454384,"line":7993,"name":"infix:<!=>","inclusive_time":1235,"file":"gen/moar/m-CORE.setting","jit_entries":73,"entries":73,"callees":[{"exclusive_time":316,"id":48718256,"line":19187,"name":"infix:<==>","inclusive_time":1165,"file":"gen/moar/m-CORE.setting","entries":73,"callees":[{"exclusive_time":176,"id":50108448,"line":18955,"name":"REDUCE-ME","allocations":[{"count":73,"id":33960376,"type":"BOOTCode"}],"inclusive_time":779,"file":"gen/moar/m-CORE.setting","entries":73,"callees":[{"exclusive_time":61,"id":48484784,"line":8540,"name":"infix:«>»","inclusive_time":61,"file":"gen/moar/m-CORE.setting","jit_entries":73,"entries":73},{"exclusive_time":243,"id":50108752,"line":18956,"name":"","allocations":[{"count":146,"id":44229096,"type":"Scalar"}],"inclusive_time":540,"file":"gen/moar/m-CORE.setting","entries":73,"callees":[{"exclusive_time":241,"id":48481440,"line":8500,"name":"infix:<gcd>","allocations":[{"count":73,"id":44229024,"type":"Int","jit":66}],"inclusive_time":241,"file":"gen/moar/m-CORE.setting","jit_entries":66,"entries":73},{"exclusive_time":56,"id":48484784,"line":8540,"name":"infix:«>»","inclusive_time":56,"file":"gen/moar/m-CORE.setting","jit_entries":73,"entries":73}]}]},{"exclusive_time":6,"id":49806576,"line":14088,"name":"sink","inclusive_time":6,"file":"gen/moar/m-CORE.setting","jit_entries":73,"entries":73},{"exclusive_time":14,"id":49200400,"line":2339,"name":"<anon>","inclusive_time":14,"file":"gen/moar/m-CORE.setting","jit_entries":73,"entries":73},{"exclusive_time":48,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":48,"file":"gen/moar/m-CORE.setting","jit_entries":73,"entries":73}]},{"exclusive_time":7,"id":48510624,"line":8708,"name":"prefix:<not>","inclusive_time":7,"file":"gen/moar/m-CORE.setting","inlined_entries":73,"jit_entries":73,"entries":73}]}]}]},{"exclusive_time":57,"id":49664000,"line":11742,"name":"chars","inclusive_time":57,"file":"gen/moar/m-CORE.setting","entries":80},{"exclusive_time":322,"id":48714912,"line":19113,"name":"infix:<*>","inclusive_time":1587,"file":"gen/moar/m-CORE.setting","entries":64,"callees":[{"exclusive_time":17,"id":49200400,"line":2339,"name":"<anon>","inclusive_time":17,"file":"gen/moar/m-CORE.setting","jit_entries":128,"entries":128},{"exclusive_time":76,"id":48478400,"line":8453,"name":"infix:<*>","allocations":[{"count":64,"id":44229024,"type":"Int","jit":64}],"inclusive_time":76,"file":"gen/moar/m-CORE.setting","jit_entries":64,"entries":64},{"exclusive_time":454,"id":48708528,"line":18996,"name":"DIVIDE_NUMBERS","allocations":[{"count":192,"id":44229096,"type":"Scalar","jit":126},{"count":64,"id":66684936,"type":"Rat","jit":42}],"inclusive_time":1171,"file":"gen/moar/m-CORE.setting","jit_entries":42,"entries":64,"callees":[{"exclusive_time":57,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":57,"file":"gen/moar/m-CORE.setting","inlined_entries":42,"jit_entries":64,"entries":64},{"exclusive_time":214,"id":48481440,"line":8500,"name":"infix:<gcd>","allocations":[{"count":64,"id":44229024,"type":"Int","jit":58}],"inclusive_time":214,"file":"gen/moar/m-CORE.setting","inlined_entries":42,"jit_entries":58,"entries":64},{"exclusive_time":368,"id":48479008,"line":8460,"name":"infix:<div>","allocations":[{"count":128,"id":44229024,"spesh":84,"type":"Int","jit":44}],"inclusive_time":378,"spesh_entries":84,"file":"gen/moar/m-CORE.setting","jit_entries":44,"entries":128,"callees":[{"exclusive_time":10,"id":49806576,"line":14088,"name":"sink","inclusive_time":10,"file":"gen/moar/m-CORE.setting","jit_entries":128,"entries":128}]},{"exclusive_time":55,"id":48483568,"line":8526,"name":"infix:«<»","inclusive_time":55,"file":"gen/moar/m-CORE.setting","inlined_entries":84,"jit_entries":128,"entries":128},{"exclusive_time":4,"id":49806576,"line":14088,"name":"sink","inclusive_time":4,"file":"gen/moar/m-CORE.setting","jit_entries":64,"entries":64},{"exclusive_time":5,"id":49072720,"line":856,"name":"sink","inclusive_time":5,"file":"gen/moar/m-CORE.setting","jit_entries":64,"entries":64}]}]},{"exclusive_time":200,"id":50100240,"line":18816,"name":"floor","inclusive_time":421,"file":"gen/moar/m-CORE.setting","entries":64,"callees":[{"exclusive_time":48,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":48,"file":"gen/moar/m-CORE.setting","jit_entries":64,"entries":64},{"exclusive_time":167,"id":48479008,"line":8460,"name":"infix:<div>","allocations":[{"count":64,"id":44229024,"type":"Int","jit":64}],"inclusive_time":172,"file":"gen/moar/m-CORE.setting","jit_entries":64,"entries":64,"callees":[{"exclusive_time":5,"id":49806576,"line":14088,"name":"sink","inclusive_time":5,"file":"gen/moar/m-CORE.setting","jit_entries":64,"entries":64}]}]},{"exclusive_time":238,"id":48234896,"line":1671,"name":"infix:<~>","inclusive_time":407,"file":"gen/moar/m-CORE.setting","entries":64,"callees":[{"exclusive_time":4,"id":49564592,"line":10027,"name":"Stringy","inclusive_time":4,"file":"gen/moar/m-CORE.setting","jit_entries":64,"entries":64},{"exclusive_time":18,"id":49102512,"line":1183,"name":"Stringy","inclusive_time":120,"file":"gen/moar/m-CORE.setting","jit_entries":64,"entries":64,"callees":[{"exclusive_time":101,"id":49477344,"line":8254,"name":"Str","allocations":[{"count":64,"id":44229144,"type":"Str","jit":64}],"inclusive_time":101,"file":"gen/moar/m-CORE.setting","inlined_entries":64,"jit_entries":64,"entries":64}]},{"exclusive_time":44,"id":48569600,"line":11811,"name":"infix:<~>","allocations":[{"count":64,"id":44229144,"type":"Str","jit":64}],"inclusive_time":44,"file":"gen/moar/m-CORE.setting","jit_entries":64,"entries":64}]},{"exclusive_time":366,"id":48714000,"line":19089,"name":"infix:<->","inclusive_time":663,"file":"gen/moar/m-CORE.setting","entries":64,"callees":[{"exclusive_time":30,"id":49200400,"line":2339,"name":"<anon>","inclusive_time":30,"file":"gen/moar/m-CORE.setting","jit_entries":192,"entries":192},{"exclusive_time":41,"id":48478400,"line":8453,"name":"infix:<*>","allocations":[{"count":64,"id":44229024,"type":"Int","jit":58}],"inclusive_time":41,"file":"gen/moar/m-CORE.setting","jit_entries":58,"entries":64},{"exclusive_time":34,"id":48477792,"line":8446,"name":"infix:<->","allocations":[{"count":64,"id":44229024,"type":"Int","jit":64}],"inclusive_time":34,"file":"gen/moar/m-CORE.setting","jit_entries":64,"entries":64},{"exclusive_time":185,"id":48710048,"line":19023,"name":"DON\'T_DIVIDE_NUMBERS","allocations":[{"count":128,"id":44229096,"type":"Scalar"},{"count":64,"id":66684936,"type":"Rat"}],"inclusive_time":191,"file":"gen/moar/m-CORE.setting","entries":64,"callees":[{"exclusive_time":5,"id":49072720,"line":856,"name":"sink","inclusive_time":5,"file":"gen/moar/m-CORE.setting","jit_entries":64,"entries":64}]}]},{"exclusive_time":51,"id":48715216,"line":19121,"name":"infix:<*>","inclusive_time":262,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":2,"id":49200400,"line":2339,"name":"<anon>","inclusive_time":2,"file":"gen/moar/m-CORE.setting","jit_entries":18,"entries":18},{"exclusive_time":11,"id":48478400,"line":8453,"name":"infix:<*>","allocations":[{"count":9,"id":44229024,"type":"Int","jit":9}],"inclusive_time":11,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9},{"exclusive_time":105,"id":48708528,"line":18996,"name":"DIVIDE_NUMBERS","allocations":[{"count":27,"id":44229096,"type":"Scalar"},{"count":9,"id":66684936,"type":"Rat"}],"inclusive_time":196,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":5,"id":48482656,"line":8515,"name":"infix:<==>","inclusive_time":5,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9},{"exclusive_time":27,"id":48481440,"line":8500,"name":"infix:<gcd>","allocations":[{"count":9,"id":44229024,"type":"Int","jit":8}],"inclusive_time":27,"file":"gen/moar/m-CORE.setting","jit_entries":8,"entries":9},{"exclusive_time":47,"id":48479008,"line":8460,"name":"infix:<div>","allocations":[{"count":18,"id":44229024,"type":"Int","jit":18}],"inclusive_time":49,"file":"gen/moar/m-CORE.setting","jit_entries":18,"entries":18,"callees":[{"exclusive_time":1,"id":49806576,"line":14088,"name":"sink","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":18,"entries":18}]},{"exclusive_time":7,"id":48483568,"line":8526,"name":"infix:«<»","inclusive_time":7,"file":"gen/moar/m-CORE.setting","jit_entries":18,"entries":18},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9},{"exclusive_time":0,"id":49072720,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9}]}]},{"exclusive_time":43,"id":48722208,"line":19232,"name":"infix:«>=»","inclusive_time":64,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":2,"id":49200400,"line":2339,"name":"<anon>","inclusive_time":2,"file":"gen/moar/m-CORE.setting","jit_entries":18,"entries":18},{"exclusive_time":10,"id":48478400,"line":8453,"name":"infix:<*>","allocations":[{"count":9,"id":44229024,"type":"Int","jit":9}],"inclusive_time":10,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9},{"exclusive_time":7,"id":48485392,"line":8547,"name":"infix:«>=»","inclusive_time":7,"file":"gen/moar/m-CORE.setting","entries":9}]},{"exclusive_time":24,"id":48251920,"line":2177,"name":"postfix:<++>","allocations":[{"count":6,"id":44229096,"type":"Scalar"}],"inclusive_time":1046,"file":"gen/moar/m-CORE.setting","entries":6,"callees":[{"exclusive_time":74,"id":49569152,"line":10144,"name":"succ","allocations":[{"count":6,"id":33960376,"type":"BOOTCode"},{"count":12,"id":44229096,"type":"Scalar"}],"inclusive_time":1021,"file":"gen/moar/m-CORE.setting","entries":6,"callees":[{"exclusive_time":28,"id":48619152,"line":14547,"name":"infix:<,>","allocations":[{"count":6,"id":33960376,"spesh":3,"type":"BOOTCode"},{"count":6,"id":44228664,"spesh":3,"type":"List"},{"count":6,"id":68411984,"spesh":3,"type":"IterationBuffer"},{"count":6,"id":44229096,"spesh":3,"type":"Scalar"}],"inclusive_time":28,"spesh_entries":3,"file":"gen/moar/m-CORE.setting","entries":6},{"exclusive_time":12,"id":49567328,"line":10104,"name":"RANGEPOS","allocations":[{"count":6,"id":33960376,"type":"BOOTCode"}],"inclusive_time":238,"file":"gen/moar/m-CORE.setting","entries":6,"callees":[{"exclusive_time":23,"id":49567632,"line":10106,"name":"","allocations":[{"count":6,"id":33960376,"type":"BOOTCode"},{"count":6,"id":44229096,"type":"Scalar"}],"inclusive_time":226,"file":"gen/moar/m-CORE.setting","entries":6,"callees":[{"exclusive_time":135,"id":49567936,"line":10109,"name":"","allocations":[{"count":12,"id":44229072,"type":"IntLexRef"}],"inclusive_time":202,"file":"gen/moar/m-CORE.setting","entries":6,"callees":[{"exclusive_time":5,"id":49806576,"line":14088,"name":"sink","inclusive_time":5,"file":"gen/moar/m-CORE.setting","jit_entries":74,"entries":74},{"exclusive_time":17,"id":48619152,"line":14547,"name":"infix:<,>","allocations":[{"count":6,"id":33960376,"spesh":3,"type":"BOOTCode"},{"count":6,"id":44228664,"spesh":3,"type":"List"},{"count":6,"id":68411984,"spesh":3,"type":"IterationBuffer"},{"count":6,"id":44229096,"spesh":3,"type":"Scalar"}],"inclusive_time":17,"spesh_entries":3,"file":"gen/moar/m-CORE.setting","entries":6},{"exclusive_time":32,"id":39751296,"line":625,"name":"","inclusive_time":44,"spesh_entries":3,"file":"gen/moar/m-CORE.setting","entries":6,"callees":[{"exclusive_time":10,"id":39750688,"line":611,"name":"RETURN-LIST","inclusive_time":11,"file":"gen/moar/m-CORE.setting","jit_entries":3,"entries":6,"callees":[{"exclusive_time":1,"id":52321312,"line":3008,"name":"","allocations":[{"count":6,"id":44228664,"type":"List","jit":6}],"inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":6,"entries":6}]}]}]}]}]},{"exclusive_time":148,"id":49813264,"line":14150,"name":"STORE","allocations":[{"count":6,"id":33960376,"type":"BOOTCode"},{"count":6,"id":33960304,"type":"BOOTArray"},{"count":6,"id":44229096,"type":"Scalar"}],"inclusive_time":616,"file":"gen/moar/m-CORE.setting","entries":6,"callees":[{"exclusive_time":52,"id":49800800,"line":13990,"name":"iterator","allocations":[{"count":12,"id":33960376,"type":"BOOTCode","jit":12}],"inclusive_time":105,"file":"gen/moar/m-CORE.setting","jit_entries":12,"entries":12,"callees":[{"exclusive_time":2,"id":49794416,"line":13900,"name":"ensure-allocated","inclusive_time":2,"file":"gen/moar/m-CORE.setting","jit_entries":12,"entries":12},{"exclusive_time":1,"id":49806576,"line":14088,"name":"sink","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":12,"entries":12},{"exclusive_time":9,"id":49801104,"line":13992,"name":"","allocations":[{"count":12,"id":44229096,"type":"Scalar","jit":12}],"inclusive_time":9,"file":"gen/moar/m-CORE.setting","jit_entries":12,"entries":12},{"exclusive_time":29,"id":49801712,"line":14004,"name":"new","allocations":[{"count":12,"id":67906128,"type":"<anon|352550624>","jit":12}],"inclusive_time":39,"file":"gen/moar/m-CORE.setting","jit_entries":12,"entries":12,"callees":[{"exclusive_time":1,"id":49052656,"line":495,"name":"of","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":12,"entries":12},{"exclusive_time":8,"id":49801408,"line":13998,"name":"BUILD","allocations":[{"count":12,"id":44229096,"type":"Scalar","jit":12}],"inclusive_time":8,"file":"gen/moar/m-CORE.setting","jit_entries":12,"entries":12}]}]},{"exclusive_time":20,"id":49802016,"line":14006,"name":"pull-one","inclusive_time":23,"file":"gen/moar/m-CORE.setting","jit_entries":30,"entries":30,"callees":[{"exclusive_time":3,"id":49802320,"line":14013,"name":"reify-and-pull-one","inclusive_time":3,"file":"gen/moar/m-CORE.setting","jit_entries":6,"entries":6}]},{"exclusive_time":75,"id":39774400,"line":1558,"name":"infix:<=:=>","inclusive_time":336,"file":"gen/moar/m-CORE.setting","jit_entries":24,"entries":24,"callees":[{"exclusive_time":244,"id":52314624,"line":2048,"name":"","allocations":[{"count":48,"id":33960376,"type":"BOOTCode"},{"count":48,"id":33961312,"type":"NQPArray"},{"count":24,"id":33960328,"type":"BOOTHash"}],"inclusive_time":253,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":24,"callees":[{"exclusive_time":8,"id":52314928,"line":2332,"name":"add_to_cache","inclusive_time":8,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":24,"entries":24}]},{"exclusive_time":7,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":7,"file":"gen/moar/m-CORE.setting","entries":24}]},{"exclusive_time":1,"id":49072720,"line":856,"name":"sink","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":12,"entries":12},{"exclusive_time":1,"id":39775008,"line":1560,"name":"infix:<=:=>","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":6,"entries":6}]},{"exclusive_time":34,"id":49569456,"line":10149,"name":"","allocations":[{"count":6,"id":44229096,"type":"Scalar"},{"count":6,"id":44229048,"type":"StrLexRef"}],"inclusive_time":63,"file":"gen/moar/m-CORE.setting","entries":7,"callees":[{"exclusive_time":18,"id":39751296,"line":625,"name":"","inclusive_time":29,"spesh_entries":4,"file":"gen/moar/m-CORE.setting","entries":6,"callees":[{"exclusive_time":9,"id":39750688,"line":611,"name":"RETURN-LIST","inclusive_time":10,"file":"gen/moar/m-CORE.setting","jit_entries":4,"entries":6,"callees":[{"exclusive_time":1,"id":52321312,"line":3008,"name":"","allocations":[{"count":6,"id":44228664,"type":"List","jit":6}],"inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":6,"entries":6}]}]},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]}]}]},{"exclusive_time":28,"id":49477344,"line":8254,"name":"Str","allocations":[{"count":7,"id":44229144,"type":"Str","jit":7}],"inclusive_time":28,"file":"gen/moar/m-CORE.setting","jit_entries":7,"entries":7},{"exclusive_time":2,"id":48477184,"line":8439,"name":"infix:<+>","inclusive_time":2,"file":"gen/moar/m-CORE.setting","jit_entries":7,"entries":7},{"exclusive_time":0,"id":49806576,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":3,"entries":3}]}]}]}]}]},{"exclusive_time":4,"id":49564288,"line":10026,"name":"Str","inclusive_time":4,"file":"gen/moar/m-CORE.setting","jit_entries":10,"entries":18},{"exclusive_time":90,"id":49500448,"line":8897,"name":"Str","allocations":[{"count":9,"id":44229144,"type":"Str"}],"inclusive_time":90,"file":"gen/moar/m-CORE.setting","entries":9}]},{"exclusive_time":2,"id":49072720,"line":856,"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment