A map record is an Entity::MakeMessage (MUNGA/ENTITY3.h): classToCreate, owningPlayerID, resourceID, instanceFlags, localOrigin. The origin ends the 76-byte case, which puts classToCreate at +28, resourceID at +40 and instanceFlags at +44. I had been reading +44. That is instanceFlags, and it is 524 on every scenery record - and 524 happens to be cn3's GaugeImage. So every track resolved to cn3 repeated a few hundred times, consistently and wrongly, and every conclusion drawn from that followed: the "one wall bar with a gate", the ticks, the claim that the LOD machinery is never exercised. The id at +40 varies per placement. The tracks use cn1, cn3, cn4, cn5, cn7, br1, br3, ft1, cq1, cq2, md3, md4, the pits, and the score zones sc50/sc50a/sc500a that gave the amber boxes at each end. A record names the model's Model List; the GaugeImage is filed under the same model name, so the name is the join - and models with no gauge image (oao, snAwork, pz1) are skipped here exactly as DrawStatic skips them. Found by following the map loader: InterestManager::LoadMapStream reads the stream as MakeMessages and names the map entity classes, one of which is 95 in these records - CulturalIconClassID.
398 lines
182 KiB
HTML
398 lines
182 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Red Planet map viewer</title>
|
|
<style>*, *::before, *::after { box-sizing: border-box; }
|
|
|
|
:root {
|
|
/* Chrome only. Everything inside the screen is painted from the game's
|
|
own palette (secpal.pcc) and must not be tinted by any of this. */
|
|
--chrome: #17181a;
|
|
--panel: #1e2023;
|
|
--rule: #2f3237;
|
|
--ink: #e6e4e0;
|
|
--ink-mid: #9aa0a6;
|
|
--ink-low: #6d737a;
|
|
--accent: #bf9300; /* palette 56, the map's own amber */
|
|
--mono: ui-monospace, "Cascadia Mono", Consolas, "SF Mono", Menlo, monospace;
|
|
}
|
|
|
|
html, body { height: 100%; }
|
|
body {
|
|
margin: 0; background: var(--chrome); color: var(--ink);
|
|
font: 400 13px/1.5 var(--mono); overflow: hidden;
|
|
display: grid; grid-template-columns: 1fr 17rem;
|
|
}
|
|
|
|
/* The screen. Background is palette index 0 - black - so the chrome must
|
|
not bleed into it: this is what the gauge actually draws onto. */
|
|
#screen { position: relative; background: #000; overflow: hidden; }
|
|
#view { display: block; width: 100%; height: 100%; touch-action: none; cursor: grab; }
|
|
#view:active { cursor: grabbing; }
|
|
|
|
#scale {
|
|
position: absolute; left: 1rem; bottom: 1rem;
|
|
display: flex; align-items: center; gap: .5rem;
|
|
color: var(--ink-mid); font-size: 11px; letter-spacing: .08em;
|
|
text-shadow: 0 0 4px #000, 0 0 4px #000;
|
|
}
|
|
#barline { height: 0; border-top: 2px solid var(--ink-mid); }
|
|
|
|
aside {
|
|
background: var(--panel); border-left: 1px solid var(--rule);
|
|
padding: 1rem; overflow-y: auto;
|
|
display: flex; flex-direction: column; gap: 1rem;
|
|
}
|
|
|
|
h1 { font: 700 15px/1.2 var(--mono); margin: 0; letter-spacing: .02em; }
|
|
#key { color: var(--ink-low); font-size: 11px; letter-spacing: .14em; margin: .2rem 0 0; }
|
|
|
|
select {
|
|
width: 100%; font: 400 12px var(--mono); padding: .45rem .5rem;
|
|
background: var(--chrome); color: var(--ink); border: 1px solid var(--rule);
|
|
}
|
|
select:focus-visible, #view:focus-visible { outline: 2px solid var(--accent); outline-offset: 1px; }
|
|
|
|
dl#stats {
|
|
margin: 0; display: grid; grid-template-columns: 1fr auto;
|
|
gap: .3rem .75rem; font-size: 12px;
|
|
}
|
|
dl#stats dt { color: var(--ink-low); }
|
|
dl#stats dd {
|
|
margin: 0; text-align: right; color: var(--ink);
|
|
font-variant-numeric: tabular-nums;
|
|
}
|
|
|
|
.note {
|
|
border-top: 1px solid var(--rule); padding-top: .8rem;
|
|
color: var(--ink-low); font-size: 11px; line-height: 1.6;
|
|
}
|
|
.note b { color: var(--ink-mid); font-weight: 500; }
|
|
|
|
kbd {
|
|
display: inline-block; min-width: 1.5em; text-align: center;
|
|
border: 1px solid var(--rule); border-bottom-width: 2px;
|
|
padding: .1em .35em; margin-right: .15em; border-radius: 3px;
|
|
background: var(--chrome); color: var(--ink-mid); font: 400 11px var(--mono);
|
|
}
|
|
.keys { display: grid; grid-template-columns: auto 1fr; gap: .35rem .6rem; font-size: 11px; }
|
|
.keys span:nth-child(even) { color: var(--ink-low); align-self: center; }
|
|
|
|
@media (max-width: 700px) {
|
|
body { grid-template-columns: 1fr; grid-template-rows: 1fr auto; }
|
|
aside { border-left: 0; border-top: 1px solid var(--rule); max-height: 45vh; }
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<div id="screen">
|
|
<canvas id="view" tabindex="0" aria-label="Track map"></canvas>
|
|
<div id="scale"><span id="barline"></span><span id="bartext"></span></div>
|
|
</div>
|
|
|
|
<aside>
|
|
<div>
|
|
<h1 id="name">—</h1>
|
|
<p id="key"></p>
|
|
</div>
|
|
|
|
<select id="track" aria-label="Track"></select>
|
|
|
|
<dl id="stats"></dl>
|
|
|
|
<div class="note">
|
|
<div class="keys">
|
|
<span><kbd>↑</kbd><kbd>↓</kbd><kbd>←</kbd><kbd>→</kbd></span><span>pan N/S/E/W</span>
|
|
<span><kbd>+</kbd><kbd>-</kbd></span><span>zoom</span>
|
|
<span><kbd>[</kbd><kbd>]</kbd></span><span>previous / next track</span>
|
|
<span><kbd>Q</kbd><kbd>E</kbd></span><span>turn the map ±15°</span>
|
|
<span><kbd>R</kbd></span><span>heading back to zero</span>
|
|
<span><kbd>F</kbd></span><span>fit the course</span>
|
|
<span><kbd>A</kbd></span><span>fit everything, strays included</span>
|
|
<span><kbd>G</kbd></span><span>GPS / NavDisplay LOD</span>
|
|
</div>
|
|
</div>
|
|
|
|
<p class="note"><b>Dropped by LOD</b> counts what the map screen does not draw
|
|
at all. <code>L4GaugeImage::Draw</code> takes the first LOD whose scale is at
|
|
least the LOD value and draws <em>nothing</em> once the value runs past the
|
|
largest, so objects vanish rather than simplify. Worth knowing what the data
|
|
does with that: every placement in every track is the same model,
|
|
<code>cn3</code>, and it carries one LOD at scale 1000. So the count stays at
|
|
zero until you pass 1000 m/px, when the whole track disappears at once. The
|
|
rule is the engine's; this content just never leans on it.</p>
|
|
|
|
<p class="note"><b>NavDisplay</b> sets its LOD from the zoom
|
|
(<code>LODIndex = metersPerPixel</code>), which is the pannable radar screen,
|
|
448×416 in <code>L4GAUGE.CFG</code>. <b>GPS</b> is the little 125×203
|
|
panel whose LOD the config pins at 1.0 however far out it is scaled.</p>
|
|
|
|
<p class="note">Colours are the game's own: palette indices resolved through
|
|
<code>secpal.pcc</code>, the palette the pod's secondary port is configured
|
|
with. The walls are grey because index 51 is grey.</p>
|
|
|
|
<p class="note"><b>+X runs right and +Z runs up</b>, which is the engine's
|
|
projection and not a choice: <code>L4GaugeImagePrimitive::Draw</code> plots
|
|
<code>(dest->x, dest->z)</code>, and the graphics view has its origin at
|
|
the bottom left with Y increasing upward. Note the setup console's own
|
|
pictures of the tracks are <em>mirrored</em> against this — they are
|
|
illustrations, not screenshots. The plans in <code>TRACKS.html</code> follow
|
|
the console pictures so the drawn and reconstructed cards agree with each
|
|
other; this viewer follows the game.</p>
|
|
|
|
<p class="note"><b>Heading.</b> The real nav display centres on your vehicle
|
|
and turns with it — it inverts the viewer's transform, taking yaw only
|
|
unless <code>rockAndRoll</code> is set. Free panning at heading 0 is the
|
|
north-up case; <kbd>Q</kbd> and <kbd>E</kbd> turn the map to see what it looks
|
|
like underway.</p>
|
|
</aside>
|
|
|
|
<script id="data" type="application/json">{"images":{"89":{"v":[[0.0,0.0,5.0],[0.0,0.0,-5.0]],"l":[{"s":100000.0,"p":[{"c":56,"a":0,"i":[0,1]}]}],"n":"lrivet"},"93":{"v":[[0.0,0.0,5.0],[0.0,0.0,-5.0]],"l":[{"s":100000.0,"p":[{"c":56,"a":0,"i":[0,1]}]}],"n":"mrivet"},"97":{"v":[[0.0,0.0,5.0],[0.0,0.0,-5.0]],"l":[{"s":100000.0,"p":[{"c":56,"a":0,"i":[0,1]}]}],"n":"hrivet"},"107":{"v":[[-5.0,0.0,5.0],[5.0,0.0,5.0],[5.0,0.0,-5.0],[-5.0,0.0,-5.0],[-5.0,0.0,0.0],[5.0,0.0,0.0],[0.0,0.0,-5.0],[0.0,0.0,5.0]],"l":[{"s":100000.0,"p":[{"c":56,"a":0,"i":[0,2]},{"c":56,"a":0,"i":[1,3]},{"c":30,"a":0,"i":[4,5]},{"c":30,"a":0,"i":[6,7]}]}],"n":"demopack"},"112":{"v":[[-5.0,0.0,5.0],[5.0,0.0,5.0],[5.0,0.0,-5.0],[-5.0,0.0,-5.0],[-5.0,0.0,0.0],[5.0,0.0,0.0],[0.0,0.0,-5.0],[0.0,0.0,5.0]],"l":[{"s":100000.0,"p":[{"c":56,"a":0,"i":[0,2]},{"c":56,"a":0,"i":[1,3]},{"c":41,"a":0,"i":[4,5]},{"c":41,"a":0,"i":[6,7]}]}],"n":"demo2"},"115":{"v":[[-5.0,0.0,5.0],[5.0,0.0,5.0],[5.0,0.0,-5.0],[-5.0,0.0,-5.0],[-5.0,0.0,0.0],[5.0,0.0,0.0],[0.0,0.0,-5.0],[0.0,0.0,5.0]],"l":[{"s":100000.0,"p":[{"c":56,"a":0,"i":[0,2]},{"c":56,"a":0,"i":[1,3]},{"c":30,"a":0,"i":[4,5]},{"c":30,"a":0,"i":[6,7]}]}],"n":"demo3"},"132":{"v":[[-1.2,0.0,-3.2],[1.2,0.0,-3.2],[1.2,0.0,-1.5],[-1.2,0.0,-1.5],[0.7,0.0,-2.7],[1.2,0.0,-2.1],[1.2,0.0,0.5],[0.7,0.0,3.0],[-0.7,0.0,3.0],[-1.2,0.0,0.5],[-1.2,0.0,-2.1],[-0.7,0.0,-2.7],[-2.4,0.0,-1.0],[-2.4,0.0,0.0],[2.4,0.0,-1.0],[2.4,0.0,0.0],[-1.2,0.0,2.6],[-0.8,0.0,2.4],[-1.2,0.0,3.0],[1.2,0.0,2.6],[1.2,0.0,3.0],[0.8,0.0,2.4],[1.2,0.0,-3.1],[-1.2,0.0,-3.1],[-2.4,0.0,-0.1],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,8,9,10,11,4]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]},{"c":0,"a":0,"i":[16,17,8,18,16]},{"c":0,"a":0,"i":[19,20,7,21,19]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[22,6,7,8,9,23,22]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[22,15,7,8,24,23,22]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[25,26,27,25]}]}],"n":"lepton"},"143":{"v":[[-1.2,0.0,-3.2],[1.2,0.0,-3.2],[1.2,0.0,-1.5],[-1.2,0.0,-1.5],[0.7,0.0,-2.7],[1.2,0.0,-2.1],[1.2,0.0,0.5],[0.7,0.0,3.0],[-0.7,0.0,3.0],[-1.2,0.0,0.5],[-1.2,0.0,-2.1],[-0.7,0.0,-2.7],[-2.4,0.0,-1.0],[-2.4,0.0,0.0],[2.4,0.0,-1.0],[2.4,0.0,0.0],[-1.2,0.0,2.6],[-0.8,0.0,2.4],[-1.2,0.0,3.0],[1.2,0.0,2.6],[1.2,0.0,3.0],[0.8,0.0,2.4],[1.2,0.0,-3.1],[-1.2,0.0,-3.1],[-2.4,0.0,-0.1],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,8,9,10,11,4]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]},{"c":0,"a":0,"i":[16,17,8,18,16]},{"c":0,"a":0,"i":[19,20,7,21,19]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[22,6,7,8,9,23,22]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[22,15,7,8,24,23,22]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[25,26,27,25]}]}],"n":"proton"},"154":{"v":[[-1.2,0.0,-3.2],[1.2,0.0,-3.2],[1.2,0.0,-1.5],[-1.2,0.0,-1.5],[0.7,0.0,-2.7],[1.2,0.0,-2.1],[1.2,0.0,0.5],[0.7,0.0,3.0],[-0.7,0.0,3.0],[-1.2,0.0,0.5],[-1.2,0.0,-2.1],[-0.7,0.0,-2.7],[-2.4,0.0,-1.0],[-2.4,0.0,0.0],[2.4,0.0,-1.0],[2.4,0.0,0.0],[-1.2,0.0,2.6],[-0.8,0.0,2.4],[-1.2,0.0,3.0],[1.2,0.0,2.6],[1.2,0.0,3.0],[0.8,0.0,2.4],[1.2,0.0,-3.1],[-1.2,0.0,-3.1],[-2.4,0.0,-0.1],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,8,9,10,11,4]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]},{"c":0,"a":0,"i":[16,17,8,18,16]},{"c":0,"a":0,"i":[19,20,7,21,19]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[22,6,7,8,9,23,22]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[22,15,7,8,24,23,22]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[25,26,27,25]}]}],"n":"quark"},"166":{"v":[[-1.2,0.0,-3.2],[1.2,0.0,-3.2],[1.2,0.0,-1.5],[-1.2,0.0,-1.5],[0.7,0.0,-2.7],[1.2,0.0,-2.1],[1.2,0.0,0.5],[0.7,0.0,3.0],[-0.7,0.0,3.0],[-1.2,0.0,0.5],[-1.2,0.0,-2.1],[-0.7,0.0,-2.7],[-2.4,0.0,-1.0],[-2.4,0.0,0.0],[2.4,0.0,-1.0],[2.4,0.0,0.0],[-1.2,0.0,2.6],[-0.8,0.0,2.4],[-1.2,0.0,3.0],[1.2,0.0,2.6],[1.2,0.0,3.0],[0.8,0.0,2.4],[1.2,0.0,-3.1],[-1.2,0.0,-3.1],[-2.4,0.0,-0.1],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,8,9,10,11,4]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]},{"c":0,"a":0,"i":[16,17,8,18,16]},{"c":0,"a":0,"i":[19,20,7,21,19]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[22,6,7,8,9,23,22]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[22,15,7,8,24,23,22]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[25,26,27,25]}]}],"n":"bug"},"177":{"v":[[-1.2,0.0,-3.2],[1.2,0.0,-3.2],[1.2,0.0,-1.5],[-1.2,0.0,-1.5],[0.7,0.0,-2.7],[1.2,0.0,-2.1],[1.2,0.0,0.5],[0.7,0.0,3.0],[-0.7,0.0,3.0],[-1.2,0.0,0.5],[-1.2,0.0,-2.1],[-0.7,0.0,-2.7],[-2.4,0.0,-1.0],[-2.4,0.0,0.0],[2.4,0.0,-1.0],[2.4,0.0,0.0],[-1.2,0.0,2.6],[-0.8,0.0,2.4],[-1.2,0.0,3.0],[1.2,0.0,2.6],[1.2,0.0,3.0],[0.8,0.0,2.4],[1.2,0.0,-3.1],[-1.2,0.0,-3.1],[-2.4,0.0,-0.1],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,8,9,10,11,4]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]},{"c":0,"a":0,"i":[16,17,8,18,16]},{"c":0,"a":0,"i":[19,20,7,21,19]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[22,6,7,8,9,23,22]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[22,15,7,8,24,23,22]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[25,26,27,25]}]}],"n":"speck"},"189":{"v":[[-1.2,0.0,-3.2],[1.2,0.0,-3.2],[1.2,0.0,-1.5],[-1.2,0.0,-1.5],[0.7,0.0,-2.7],[1.2,0.0,-2.1],[1.2,0.0,0.5],[0.7,0.0,3.0],[-0.7,0.0,3.0],[-1.2,0.0,0.5],[-1.2,0.0,-2.1],[-0.7,0.0,-2.7],[-2.4,0.0,-1.0],[-2.4,0.0,0.0],[2.4,0.0,-1.0],[2.4,0.0,0.0],[-1.2,0.0,2.6],[-0.8,0.0,2.4],[-1.2,0.0,3.0],[1.2,0.0,2.6],[1.2,0.0,3.0],[0.8,0.0,2.4],[1.2,0.0,-3.1],[-1.2,0.0,-3.1],[-2.4,0.0,-0.1],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,8,9,10,11,4]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]},{"c":0,"a":0,"i":[16,17,8,18,16]},{"c":0,"a":0,"i":[19,20,7,21,19]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[22,6,7,8,9,23,22]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[22,15,7,8,24,23,22]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[25,26,27,25]}]}],"n":"chigger"},"200":{"v":[[-1.2,0.0,-3.2],[1.2,0.0,-3.2],[1.2,0.0,-1.5],[-1.2,0.0,-1.5],[0.7,0.0,-2.7],[1.2,0.0,-2.1],[1.2,0.0,0.5],[0.7,0.0,3.0],[-0.7,0.0,3.0],[-1.2,0.0,0.5],[-1.2,0.0,-2.1],[-0.7,0.0,-2.7],[-2.4,0.0,-1.0],[-2.4,0.0,0.0],[2.4,0.0,-1.0],[2.4,0.0,0.0],[-1.2,0.0,2.6],[-0.8,0.0,2.4],[-1.2,0.0,3.0],[1.2,0.0,2.6],[1.2,0.0,3.0],[0.8,0.0,2.4],[1.2,0.0,-3.1],[-1.2,0.0,-3.1],[-2.4,0.0,-0.1],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,8,9,10,11,4]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]},{"c":0,"a":0,"i":[16,17,8,18,16]},{"c":0,"a":0,"i":[19,20,7,21,19]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[22,6,7,8,9,23,22]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[22,15,7,8,24,23,22]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[25,26,27,25]}]}],"n":"flea"},"212":{"v":[[-1.2,0.0,-3.2],[1.2,0.0,-3.2],[1.2,0.0,-1.5],[-1.2,0.0,-1.5],[0.7,0.0,-2.7],[1.2,0.0,-2.1],[1.2,0.0,0.5],[0.7,0.0,3.0],[-0.7,0.0,3.0],[-1.2,0.0,0.5],[-1.2,0.0,-2.1],[-0.7,0.0,-2.7],[-2.4,0.0,-1.0],[-2.4,0.0,0.0],[2.4,0.0,-1.0],[2.4,0.0,0.0],[-1.2,0.0,2.6],[-0.8,0.0,2.4],[-1.2,0.0,3.0],[1.2,0.0,2.6],[1.2,0.0,3.0],[0.8,0.0,2.4],[1.2,0.0,-3.1],[-1.2,0.0,-3.1],[-2.4,0.0,-0.1],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,8,9,10,11,4]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]},{"c":0,"a":0,"i":[16,17,8,18,16]},{"c":0,"a":0,"i":[19,20,7,21,19]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[22,6,7,8,9,23,22]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[22,15,7,8,24,23,22]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[25,26,27,25]}]}],"n":"skeeter"},"223":{"v":[[-1.2,0.0,-3.2],[1.2,0.0,-3.2],[1.2,0.0,-1.5],[-1.2,0.0,-1.5],[0.7,0.0,-2.7],[1.2,0.0,-2.1],[1.2,0.0,0.5],[0.7,0.0,3.0],[-0.7,0.0,3.0],[-1.2,0.0,0.5],[-1.2,0.0,-2.1],[-0.7,0.0,-2.7],[-2.4,0.0,-1.0],[-2.4,0.0,0.0],[2.4,0.0,-1.0],[2.4,0.0,0.0],[-1.2,0.0,2.6],[-0.8,0.0,2.4],[-1.2,0.0,3.0],[1.2,0.0,2.6],[1.2,0.0,3.0],[0.8,0.0,2.4],[1.2,0.0,-3.1],[-1.2,0.0,-3.1],[-2.4,0.0,-0.1],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,8,9,10,11,4]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]},{"c":0,"a":0,"i":[16,17,8,18,16]},{"c":0,"a":0,"i":[19,20,7,21,19]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[22,6,7,8,9,23,22]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[22,15,7,8,24,23,22]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[25,26,27,25]}]}],"n":"roach"},"234":{"v":[[-1.2,0.0,-3.2],[1.2,0.0,-3.2],[1.2,0.0,-1.5],[-1.2,0.0,-1.5],[0.7,0.0,-2.7],[1.2,0.0,-2.1],[1.2,0.0,0.5],[0.7,0.0,3.0],[-0.7,0.0,3.0],[-1.2,0.0,0.5],[-1.2,0.0,-2.1],[-0.7,0.0,-2.7],[-2.4,0.0,-1.0],[-2.4,0.0,0.0],[2.4,0.0,-1.0],[2.4,0.0,0.0],[-1.2,0.0,2.6],[-0.8,0.0,2.4],[-1.2,0.0,3.0],[1.2,0.0,2.6],[1.2,0.0,3.0],[0.8,0.0,2.4],[1.2,0.0,-3.1],[-1.2,0.0,-3.1],[-2.4,0.0,-0.1],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,8,9,10,11,4]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]},{"c":0,"a":0,"i":[16,17,8,18,16]},{"c":0,"a":0,"i":[19,20,7,21,19]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[22,6,7,8,9,23,22]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[22,15,7,8,24,23,22]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[25,26,27,25]}]}],"n":"wasp"},"246":{"v":[[-1.5,0.0,2.5],[-4.5,0.0,1.0],[-4.5,0.0,-0.5],[-1.5,0.0,-2.0],[1.5,0.0,2.5],[1.5,0.0,-2.0],[4.5,0.0,-0.5],[4.5,0.0,1.0],[1.5,0.0,-4.5],[1.5,0.0,4.5],[-1.5,0.0,4.5],[-1.5,0.0,-4.5],[0.75,0.0,3.5],[-0.75,0.0,3.5],[-0.75,0.0,1.25],[0.75,0.0,1.25],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[8,9,10,11,8]},{"c":0,"a":0,"i":[12,13,14,15,12]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[8,9,10,11,8]},{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[12,13,14,15,12]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[8,9,10,11,8]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[0,1,2,3,0]}]},{"s":100.0,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[8,9,10,11,8]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[16,17,18,16]}]}],"n":"mule"},"257":{"v":[[-1.5,0.0,2.5],[-4.5,0.0,1.0],[-4.5,0.0,-0.5],[-1.5,0.0,-2.0],[1.5,0.0,2.5],[1.5,0.0,-2.0],[4.5,0.0,-0.5],[4.5,0.0,1.0],[1.5,0.0,-4.5],[1.5,0.0,4.5],[-1.5,0.0,4.5],[-1.5,0.0,-4.5],[0.75,0.0,3.5],[-0.75,0.0,3.5],[-0.75,0.0,1.25],[0.75,0.0,1.25],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[8,9,10,11,8]},{"c":0,"a":0,"i":[12,13,14,15,12]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[8,9,10,11,8]},{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[12,13,14,15,12]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[8,9,10,11,8]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[0,1,2,3,0]}]},{"s":100.0,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[8,9,10,11,8]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[16,17,18,16]}]}],"n":"broccoli"},"270":{"v":[[-1.5,0.0,2.5],[-4.5,0.0,1.0],[-4.5,0.0,-0.5],[-1.5,0.0,-2.0],[1.5,0.0,2.5],[1.5,0.0,-2.0],[4.5,0.0,-0.5],[4.5,0.0,1.0],[1.5,0.0,-4.5],[1.5,0.0,4.5],[-1.5,0.0,4.5],[-1.5,0.0,-4.5],[0.75,0.0,3.5],[-0.75,0.0,3.5],[-0.75,0.0,1.25],[0.75,0.0,1.25],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[8,9,10,11,8]},{"c":0,"a":0,"i":[12,13,14,15,12]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[8,9,10,11,8]},{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[12,13,14,15,12]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[8,9,10,11,8]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[0,1,2,3,0]}]},{"s":100.0,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[8,9,10,11,8]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[16,17,18,16]}]}],"n":"vole"},"281":{"v":[[-1.5,0.0,2.5],[-4.5,0.0,1.0],[-4.5,0.0,-0.5],[-1.5,0.0,-2.0],[1.5,0.0,2.5],[1.5,0.0,-2.0],[4.5,0.0,-0.5],[4.5,0.0,1.0],[1.5,0.0,-4.5],[1.5,0.0,4.5],[-1.5,0.0,4.5],[-1.5,0.0,-4.5],[0.75,0.0,3.5],[-0.75,0.0,3.5],[-0.75,0.0,1.25],[0.75,0.0,1.25],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[8,9,10,11,8]},{"c":0,"a":0,"i":[12,13,14,15,12]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[8,9,10,11,8]},{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[12,13,14,15,12]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[8,9,10,11,8]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[0,1,2,3,0]}]},{"s":100.0,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[8,9,10,11,8]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[16,17,18,16]}]}],"n":"burro"},"292":{"v":[[-1.5,0.0,2.5],[-4.5,0.0,1.0],[-4.5,0.0,-0.5],[-1.5,0.0,-2.0],[1.5,0.0,2.5],[1.5,0.0,-2.0],[4.5,0.0,-0.5],[4.5,0.0,1.0],[1.5,0.0,-4.5],[1.5,0.0,4.5],[-1.5,0.0,4.5],[-1.5,0.0,-4.5],[0.75,0.0,3.5],[-0.75,0.0,3.5],[-0.75,0.0,1.25],[0.75,0.0,1.25],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[8,9,10,11,8]},{"c":0,"a":0,"i":[12,13,14,15,12]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[8,9,10,11,8]},{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[12,13,14,15,12]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[8,9,10,11,8]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[0,1,2,3,0]}]},{"s":100.0,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[8,9,10,11,8]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[16,17,18,16]}]}],"n":"grunt"},"303":{"v":[[-1.5,0.0,2.5],[-4.5,0.0,1.0],[-4.5,0.0,-0.5],[-1.5,0.0,-2.0],[1.5,0.0,2.5],[1.5,0.0,-2.0],[4.5,0.0,-0.5],[4.5,0.0,1.0],[1.5,0.0,-4.5],[1.5,0.0,4.5],[-1.5,0.0,4.5],[-1.5,0.0,-4.5],[0.75,0.0,3.5],[-0.75,0.0,3.5],[-0.75,0.0,1.25],[0.75,0.0,1.25],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[8,9,10,11,8]},{"c":0,"a":0,"i":[12,13,14,15,12]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[8,9,10,11,8]},{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[12,13,14,15,12]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[8,9,10,11,8]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[0,1,2,3,0]}]},{"s":100.0,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[8,9,10,11,8]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[16,17,18,16]}]}],"n":"barge"},"316":{"v":[[-1.5,0.0,2.5],[-4.5,0.0,1.0],[-4.5,0.0,-0.5],[-1.5,0.0,-2.0],[1.5,0.0,2.5],[1.5,0.0,-2.0],[4.5,0.0,-0.5],[4.5,0.0,1.0],[1.5,0.0,-4.5],[1.5,0.0,4.5],[-1.5,0.0,4.5],[-1.5,0.0,-4.5],[0.75,0.0,3.5],[-0.75,0.0,3.5],[-0.75,0.0,1.25],[0.75,0.0,1.25],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[8,9,10,11,8]},{"c":0,"a":0,"i":[12,13,14,15,12]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[8,9,10,11,8]},{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[12,13,14,15,12]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[8,9,10,11,8]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[0,1,2,3,0]}]},{"s":100.0,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[8,9,10,11,8]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[16,17,18,16]}]}],"n":"bttlbrg"},"326":{"v":[[-1.5,0.0,2.5],[-4.5,0.0,1.0],[-4.5,0.0,-0.5],[-1.5,0.0,-2.0],[1.5,0.0,2.5],[1.5,0.0,-2.0],[4.5,0.0,-0.5],[4.5,0.0,1.0],[1.5,0.0,-4.5],[1.5,0.0,4.5],[-1.5,0.0,4.5],[-1.5,0.0,-4.5],[0.75,0.0,3.5],[-0.75,0.0,3.5],[-0.75,0.0,1.25],[0.75,0.0,1.25],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[8,9,10,11,8]},{"c":0,"a":0,"i":[12,13,14,15,12]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[8,9,10,11,8]},{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[12,13,14,15,12]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[8,9,10,11,8]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[0,1,2,3,0]}]},{"s":100.0,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[8,9,10,11,8]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[16,17,18,16]}]}],"n":"gator"},"338":{"v":[[1.0,0.0,-4.5],[1.0,0.0,4.8],[-1.0,0.0,4.8],[-1.0,0.0,-4.5],[-1.0,0.0,4.0],[-2.8,0.0,3.2],[-2.8,0.0,-3.2],[-1.0,0.0,-4.0],[2.8,0.0,-3.2],[2.8,0.0,3.2],[1.0,0.0,4.0],[1.0,0.0,-4.0],[-3.8,0.0,-2.7],[-2.8,0.0,-1.3],[-3.8,0.0,-1.8],[-3.8,0.0,-0.5],[-2.8,0.0,-1.0],[-2.8,0.0,0.9],[-3.8,0.0,0.4],[-3.8,0.0,1.7],[-2.8,0.0,1.2],[-2.8,0.0,3.1],[-3.8,0.0,2.6],[3.8,0.0,1.7],[3.8,0.0,2.6],[2.8,0.0,3.1],[2.8,0.0,1.2],[3.8,0.0,-0.5],[3.8,0.0,0.4],[2.8,0.0,0.9],[2.8,0.0,-1.0],[3.8,0.0,-2.7],[3.8,0.0,-1.8],[2.8,0.0,-1.3],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[8,9,10,11,8]},{"c":0,"a":0,"i":[12,6,13,14,12]},{"c":0,"a":0,"i":[15,16,17,18,15]},{"c":0,"a":0,"i":[19,20,21,22,19]},{"c":0,"a":0,"i":[23,24,25,26,23]},{"c":0,"a":0,"i":[27,28,29,30,27]},{"c":0,"a":0,"i":[31,32,33,8,31]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[4,22,12,7,4]},{"c":0,"a":0,"i":[31,24,10,11,31]},{"c":0,"a":0,"i":[0,1,2,3,0]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[0,31,24,1,2,22,12,3,0]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[34,35,36,34]}]}],"n":"bull"},"349":{"v":[[1.0,0.0,-4.5],[1.0,0.0,4.8],[-1.0,0.0,4.8],[-1.0,0.0,-4.5],[-1.0,0.0,4.0],[-2.8,0.0,3.2],[-2.8,0.0,-3.2],[-1.0,0.0,-4.0],[2.8,0.0,-3.2],[2.8,0.0,3.2],[1.0,0.0,4.0],[1.0,0.0,-4.0],[-3.8,0.0,-2.7],[-2.8,0.0,-1.3],[-3.8,0.0,-1.8],[-3.8,0.0,-0.5],[-2.8,0.0,-1.0],[-2.8,0.0,0.9],[-3.8,0.0,0.4],[-3.8,0.0,1.7],[-2.8,0.0,1.2],[-2.8,0.0,3.1],[-3.8,0.0,2.6],[3.8,0.0,1.7],[3.8,0.0,2.6],[2.8,0.0,3.1],[2.8,0.0,1.2],[3.8,0.0,-0.5],[3.8,0.0,0.4],[2.8,0.0,0.9],[2.8,0.0,-1.0],[3.8,0.0,-2.7],[3.8,0.0,-1.8],[2.8,0.0,-1.3],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[8,9,10,11,8]},{"c":0,"a":0,"i":[12,6,13,14,12]},{"c":0,"a":0,"i":[15,16,17,18,15]},{"c":0,"a":0,"i":[19,20,21,22,19]},{"c":0,"a":0,"i":[23,24,25,26,23]},{"c":0,"a":0,"i":[27,28,29,30,27]},{"c":0,"a":0,"i":[31,32,33,8,31]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[4,22,12,7,4]},{"c":0,"a":0,"i":[31,24,10,11,31]},{"c":0,"a":0,"i":[0,1,2,3,0]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[0,31,24,1,2,22,12,3,0]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[34,35,36,34]}]}],"n":"tarntula"},"361":{"v":[[1.0,0.0,-4.5],[1.0,0.0,4.8],[-1.0,0.0,4.8],[-1.0,0.0,-4.5],[-1.0,0.0,4.0],[-2.8,0.0,3.2],[-2.8,0.0,-3.2],[-1.0,0.0,-4.0],[2.8,0.0,-3.2],[2.8,0.0,3.2],[1.0,0.0,4.0],[1.0,0.0,-4.0],[-3.8,0.0,-2.7],[-2.8,0.0,-1.3],[-3.8,0.0,-1.8],[-3.8,0.0,-0.5],[-2.8,0.0,-1.0],[-2.8,0.0,0.9],[-3.8,0.0,0.4],[-3.8,0.0,1.7],[-2.8,0.0,1.2],[-2.8,0.0,3.1],[-3.8,0.0,2.6],[3.8,0.0,1.7],[3.8,0.0,2.6],[2.8,0.0,3.1],[2.8,0.0,1.2],[3.8,0.0,-0.5],[3.8,0.0,0.4],[2.8,0.0,0.9],[2.8,0.0,-1.0],[3.8,0.0,-2.7],[3.8,0.0,-1.8],[2.8,0.0,-1.3],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[8,9,10,11,8]},{"c":0,"a":0,"i":[12,6,13,14,12]},{"c":0,"a":0,"i":[15,16,17,18,15]},{"c":0,"a":0,"i":[19,20,21,22,19]},{"c":0,"a":0,"i":[23,24,25,26,23]},{"c":0,"a":0,"i":[27,28,29,30,27]},{"c":0,"a":0,"i":[31,32,33,8,31]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[4,22,12,7,4]},{"c":0,"a":0,"i":[31,24,10,11,31]},{"c":0,"a":0,"i":[0,1,2,3,0]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[0,31,24,1,2,22,12,3,0]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[34,35,36,34]}]}],"n":"spitter"},"372":{"v":[[1.0,0.0,-4.5],[1.0,0.0,4.8],[-1.0,0.0,4.8],[-1.0,0.0,-4.5],[-1.0,0.0,4.0],[-2.8,0.0,3.2],[-2.8,0.0,-3.2],[-1.0,0.0,-4.0],[2.8,0.0,-3.2],[2.8,0.0,3.2],[1.0,0.0,4.0],[1.0,0.0,-4.0],[-3.8,0.0,-2.7],[-2.8,0.0,-1.3],[-3.8,0.0,-1.8],[-3.8,0.0,-0.5],[-2.8,0.0,-1.0],[-2.8,0.0,0.9],[-3.8,0.0,0.4],[-3.8,0.0,1.7],[-2.8,0.0,1.2],[-2.8,0.0,3.1],[-3.8,0.0,2.6],[3.8,0.0,1.7],[3.8,0.0,2.6],[2.8,0.0,3.1],[2.8,0.0,1.2],[3.8,0.0,-0.5],[3.8,0.0,0.4],[2.8,0.0,0.9],[2.8,0.0,-1.0],[3.8,0.0,-2.7],[3.8,0.0,-1.8],[2.8,0.0,-1.3],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[8,9,10,11,8]},{"c":0,"a":0,"i":[12,6,13,14,12]},{"c":0,"a":0,"i":[15,16,17,18,15]},{"c":0,"a":0,"i":[19,20,21,22,19]},{"c":0,"a":0,"i":[23,24,25,26,23]},{"c":0,"a":0,"i":[27,28,29,30,27]},{"c":0,"a":0,"i":[31,32,33,8,31]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[4,22,12,7,4]},{"c":0,"a":0,"i":[31,24,10,11,31]},{"c":0,"a":0,"i":[0,1,2,3,0]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[0,31,24,1,2,22,12,3,0]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[34,35,36,34]}]}],"n":"roadblk"},"383":{"v":[[1.0,0.0,-4.5],[1.0,0.0,4.8],[-1.0,0.0,4.8],[-1.0,0.0,-4.5],[-1.0,0.0,4.0],[-2.8,0.0,3.2],[-2.8,0.0,-3.2],[-1.0,0.0,-4.0],[2.8,0.0,-3.2],[2.8,0.0,3.2],[1.0,0.0,4.0],[1.0,0.0,-4.0],[-3.8,0.0,-2.7],[-2.8,0.0,-1.3],[-3.8,0.0,-1.8],[-3.8,0.0,-0.5],[-2.8,0.0,-1.0],[-2.8,0.0,0.9],[-3.8,0.0,0.4],[-3.8,0.0,1.7],[-2.8,0.0,1.2],[-2.8,0.0,3.1],[-3.8,0.0,2.6],[3.8,0.0,1.7],[3.8,0.0,2.6],[2.8,0.0,3.1],[2.8,0.0,1.2],[3.8,0.0,-0.5],[3.8,0.0,0.4],[2.8,0.0,0.9],[2.8,0.0,-1.0],[3.8,0.0,-2.7],[3.8,0.0,-1.8],[2.8,0.0,-1.3],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[8,9,10,11,8]},{"c":0,"a":0,"i":[12,6,13,14,12]},{"c":0,"a":0,"i":[15,16,17,18,15]},{"c":0,"a":0,"i":[19,20,21,22,19]},{"c":0,"a":0,"i":[23,24,25,26,23]},{"c":0,"a":0,"i":[27,28,29,30,27]},{"c":0,"a":0,"i":[31,32,33,8,31]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[4,22,12,7,4]},{"c":0,"a":0,"i":[31,24,10,11,31]},{"c":0,"a":0,"i":[0,1,2,3,0]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[0,31,24,1,2,22,12,3,0]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[34,35,36,34]}]}],"n":"ripper"},"394":{"v":[[1.0,0.0,-4.5],[1.0,0.0,4.8],[-1.0,0.0,4.8],[-1.0,0.0,-4.5],[-1.0,0.0,4.0],[-2.8,0.0,3.2],[-2.8,0.0,-3.2],[-1.0,0.0,-4.0],[2.8,0.0,-3.2],[2.8,0.0,3.2],[1.0,0.0,4.0],[1.0,0.0,-4.0],[-3.8,0.0,-2.7],[-2.8,0.0,-1.3],[-3.8,0.0,-1.8],[-3.8,0.0,-0.5],[-2.8,0.0,-1.0],[-2.8,0.0,0.9],[-3.8,0.0,0.4],[-3.8,0.0,1.7],[-2.8,0.0,1.2],[-2.8,0.0,3.1],[-3.8,0.0,2.6],[3.8,0.0,1.7],[3.8,0.0,2.6],[2.8,0.0,3.1],[2.8,0.0,1.2],[3.8,0.0,-0.5],[3.8,0.0,0.4],[2.8,0.0,0.9],[2.8,0.0,-1.0],[3.8,0.0,-2.7],[3.8,0.0,-1.8],[2.8,0.0,-1.3],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[8,9,10,11,8]},{"c":0,"a":0,"i":[12,6,13,14,12]},{"c":0,"a":0,"i":[15,16,17,18,15]},{"c":0,"a":0,"i":[19,20,21,22,19]},{"c":0,"a":0,"i":[23,24,25,26,23]},{"c":0,"a":0,"i":[27,28,29,30,27]},{"c":0,"a":0,"i":[31,32,33,8,31]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[4,22,12,7,4]},{"c":0,"a":0,"i":[31,24,10,11,31]},{"c":0,"a":0,"i":[0,1,2,3,0]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[0,31,24,1,2,22,12,3,0]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[34,35,36,34]}]}],"n":"mantis"},"407":{"v":[[-1.2,0.0,-3.2],[1.2,0.0,-3.2],[1.2,0.0,-1.5],[-1.2,0.0,-1.5],[0.7,0.0,-2.7],[1.2,0.0,-2.1],[1.2,0.0,0.5],[0.7,0.0,3.0],[-0.7,0.0,3.0],[-1.2,0.0,0.5],[-1.2,0.0,-2.1],[-0.7,0.0,-2.7],[-2.4,0.0,-1.0],[-2.4,0.0,0.0],[2.4,0.0,-1.0],[2.4,0.0,0.0],[-1.2,0.0,2.6],[-0.8,0.0,2.4],[-1.2,0.0,3.0],[1.2,0.0,2.6],[1.2,0.0,3.0],[0.8,0.0,2.4],[1.2,0.0,-3.1],[-1.2,0.0,-3.1],[-2.4,0.0,-0.1],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,8,9,10,11,4]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]},{"c":0,"a":0,"i":[16,17,8,18,16]},{"c":0,"a":0,"i":[19,20,7,21,19]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[22,6,7,8,9,23,22]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[22,15,7,8,24,23,22]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[25,26,27,25]}]}],"n":"puck"},"419":{"v":[[-1.2,0.0,-3.2],[1.2,0.0,-3.2],[1.2,0.0,-1.5],[-1.2,0.0,-1.5],[0.7,0.0,-2.7],[1.2,0.0,-2.1],[1.2,0.0,0.5],[0.7,0.0,3.0],[-0.7,0.0,3.0],[-1.2,0.0,0.5],[-1.2,0.0,-2.1],[-0.7,0.0,-2.7],[-2.4,0.0,-1.0],[-2.4,0.0,0.0],[2.4,0.0,-1.0],[2.4,0.0,0.0],[-1.2,0.0,2.6],[-0.8,0.0,2.4],[-1.2,0.0,3.0],[1.2,0.0,2.6],[1.2,0.0,3.0],[0.8,0.0,2.4],[1.2,0.0,-3.1],[-1.2,0.0,-3.1],[-2.4,0.0,-0.1],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,8,9,10,11,4]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]},{"c":0,"a":0,"i":[16,17,8,18,16]},{"c":0,"a":0,"i":[19,20,7,21,19]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[22,6,7,8,9,23,22]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[22,15,7,8,24,23,22]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[25,26,27,25]}]}],"n":"dragon"},"430":{"v":[[1.0,0.0,-4.5],[1.0,0.0,4.8],[-1.0,0.0,4.8],[-1.0,0.0,-4.5],[-1.0,0.0,4.0],[-2.8,0.0,3.2],[-2.8,0.0,-3.2],[-1.0,0.0,-4.0],[2.8,0.0,-3.2],[2.8,0.0,3.2],[1.0,0.0,4.0],[1.0,0.0,-4.0],[-3.8,0.0,-2.7],[-2.8,0.0,-1.3],[-3.8,0.0,-1.8],[-3.8,0.0,-0.5],[-2.8,0.0,-1.0],[-2.8,0.0,0.9],[-3.8,0.0,0.4],[-3.8,0.0,1.7],[-2.8,0.0,1.2],[-2.8,0.0,3.1],[-3.8,0.0,2.6],[3.8,0.0,1.7],[3.8,0.0,2.6],[2.8,0.0,3.1],[2.8,0.0,1.2],[3.8,0.0,-0.5],[3.8,0.0,0.4],[2.8,0.0,0.9],[2.8,0.0,-1.0],[3.8,0.0,-2.7],[3.8,0.0,-1.8],[2.8,0.0,-1.3],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[8,9,10,11,8]},{"c":0,"a":0,"i":[12,6,13,14,12]},{"c":0,"a":0,"i":[15,16,17,18,15]},{"c":0,"a":0,"i":[19,20,21,22,19]},{"c":0,"a":0,"i":[23,24,25,26,23]},{"c":0,"a":0,"i":[27,28,29,30,27]},{"c":0,"a":0,"i":[31,32,33,8,31]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[4,22,12,7,4]},{"c":0,"a":0,"i":[31,24,10,11,31]},{"c":0,"a":0,"i":[0,1,2,3,0]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[0,31,24,1,2,22,12,3,0]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[34,35,36,34]}]}],"n":"blktrn"},"441":{"v":[[-1.2,0.0,-3.2],[1.2,0.0,-3.2],[1.2,0.0,-1.5],[-1.2,0.0,-1.5],[0.7,0.0,-2.7],[1.2,0.0,-2.1],[1.2,0.0,0.5],[0.7,0.0,3.0],[-0.7,0.0,3.0],[-1.2,0.0,0.5],[-1.2,0.0,-2.1],[-0.7,0.0,-2.7],[-2.4,0.0,-1.0],[-2.4,0.0,0.0],[2.4,0.0,-1.0],[2.4,0.0,0.0],[-1.2,0.0,2.6],[-0.8,0.0,2.4],[-1.2,0.0,3.0],[1.2,0.0,2.6],[1.2,0.0,3.0],[0.8,0.0,2.4],[1.2,0.0,-3.1],[-1.2,0.0,-3.1],[-2.4,0.0,-0.1],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,8,9,10,11,4]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]},{"c":0,"a":0,"i":[16,17,8,18,16]},{"c":0,"a":0,"i":[19,20,7,21,19]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[22,6,7,8,9,23,22]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[22,15,7,8,24,23,22]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[25,26,27,25]}]}],"n":"blkspk"},"447":{"v":[[40.0,0.0,40.0],[40.0,0.0,-40.0],[-40.0,0.0,-40.0],[-40.0,0.0,40.0]],"l":[{"s":100000.0,"p":[{"c":56,"a":0,"i":[0,1,2,3,0]}]}],"n":"sc50"},"455":{"v":[[75.0,0.0,24.0],[25.0,0.0,24.0],[25.0,0.0,-25.0],[75.0,0.0,-25.0],[-25.0,0.0,24.0],[-75.0,0.0,24.0],[-75.0,0.0,-25.0],[-25.0,0.0,-25.0],[0.0,0.0,0.0],[-25.0,0.0,-12.0],[-25.0,0.0,10.0],[25.0,0.0,10.0],[25.0,0.0,-12.0],[75.0,0.0,20.0],[75.0,0.0,-22.0],[-75.0,0.0,-22.0],[-75.0,0.0,20.0]],"l":[{"s":5.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]},{"c":51,"a":0,"i":[4,5,6,7,4]},{"c":26,"a":0,"i":[8,9,10,8]},{"c":26,"a":0,"i":[8,11,12,8]}]},{"s":50000.0,"p":[{"c":26,"a":0,"i":[8,13,14,8]},{"c":26,"a":0,"i":[8,15,16,8]}]}],"n":"drw"},"459":{"v":[[75.0,0.0,24.0],[25.0,0.0,24.0],[25.0,0.0,-25.0],[75.0,0.0,-25.0],[-25.0,0.0,24.0],[-75.0,0.0,24.0],[-75.0,0.0,-25.0],[-25.0,0.0,-25.0],[0.0,0.0,0.0],[-25.0,0.0,-12.0],[-25.0,0.0,10.0],[25.0,0.0,10.0],[25.0,0.0,-12.0],[75.0,0.0,20.0],[75.0,0.0,-22.0],[-75.0,0.0,-22.0],[-75.0,0.0,20.0]],"l":[{"s":5.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]},{"c":51,"a":0,"i":[4,5,6,7,4]},{"c":26,"a":0,"i":[8,9,10,8]},{"c":26,"a":0,"i":[8,11,12,8]}]},{"s":50000.0,"p":[{"c":26,"a":0,"i":[8,13,14,8]},{"c":26,"a":0,"i":[8,15,16,8]}]}],"n":"drw2"},"478":{"v":[[400.0,0.0,400.0],[-400.0,0.0,400.0],[-400.0,0.0,-400.0],[400.0,0.0,-400.0],[240.0,0.0,150.0],[-240.0,0.0,150.0],[-240.0,0.0,-240.0],[240.0,0.0,-240.0],[25.0,0.0,250.0],[10.0,0.0,100.0],[25.0,0.0,100.0],[55.0,0.0,250.0],[55.0,0.0,100.0],[70.0,0.0,100.0],[25.0,0.0,0.0],[17.68,0.0,17.68],[-0.0,0.0,25.0],[-17.68,0.0,17.68],[-25.0,0.0,0.0],[-17.68,0.0,-17.68],[0.0,0.0,-25.0],[17.68,0.0,-17.68],[190.0,0.0,-85.0],[240.0,0.0,-85.0],[240.0,0.0,-55.0],[190.0,0.0,-55.0],[135.0,0.0,-240.0],[165.0,0.0,-240.0],[165.0,0.0,-190.0],[135.0,0.0,-190.0],[55.0,0.0,-240.0],[85.0,0.0,-240.0],[85.0,0.0,-190.0],[55.0,0.0,-190.0],[-55.0,0.0,-240.0],[-85.0,0.0,-240.0],[-85.0,0.0,-190.0],[-55.0,0.0,-190.0],[-165.0,0.0,-240.0],[-135.0,0.0,-240.0],[-135.0,0.0,-190.0],[-165.0,0.0,-190.0],[-240.0,0.0,-165.0],[-190.0,0.0,-165.0],[-190.0,0.0,-135.0],[-240.0,0.0,-135.0],[-240.0,0.0,-85.0],[-190.0,0.0,-85.0],[-190.0,0.0,-55.0],[-240.0,0.0,-55.0],[-240.0,0.0,85.0],[-190.0,0.0,85.0],[-190.0,0.0,55.0],[-240.0,0.0,55.0],[240.0,0.0,85.0],[190.0,0.0,85.0],[190.0,0.0,55.0],[240.0,0.0,55.0],[240.0,0.0,-165.0],[190.0,0.0,-165.0],[190.0,0.0,-135.0],[240.0,0.0,-135.0]],"l":[{"s":100000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]},{"c":51,"a":0,"i":[4,5,6,7,4]},{"c":24,"a":0,"i":[8,9,10,8]},{"c":24,"a":0,"i":[11,12,13,11]},{"c":28,"a":0,"i":[14,15,16,17,18,19,20,21,14]},{"c":51,"a":0,"i":[22,23,24,25,22]},{"c":51,"a":0,"i":[26,27,28,29,26]},{"c":51,"a":0,"i":[30,31,32,33,30]},{"c":51,"a":0,"i":[34,35,36,37,34]},{"c":51,"a":0,"i":[38,39,40,41,38]},{"c":51,"a":0,"i":[42,43,44,45,42]},{"c":51,"a":0,"i":[46,47,48,49,46]},{"c":51,"a":0,"i":[50,51,52,53,50]},{"c":51,"a":0,"i":[54,55,56,57,54]},{"c":51,"a":0,"i":[58,59,60,61,58]}]}],"n":"wh6"},"490":{"v":[[30.0,0.0,50.0],[-30.0,0.0,50.0],[-30.0,0.0,-50.0],[30.0,0.0,-50.0]],"l":[{"s":100000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]}]}],"n":"cn2"},"497":{"v":[[30.0,0.0,50.0],[-30.0,0.0,50.0],[-30.0,0.0,-50.0],[30.0,0.0,-50.0],[27.9,0.0,-50.0],[27.41,0.0,50.0],[24.0,0.0,50.0],[24.0,0.0,-50.0],[-22.5,0.0,-50.0],[-22.5,0.0,50.0],[-25.71,0.0,50.0],[-25.71,0.0,-50.0]],"l":[{"s":10.0,"p":[{"c":30,"a":0,"i":[4,5,6,7,4]},{"c":30,"a":0,"i":[8,9,10,11,8]}]},{"s":100000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]}]}],"n":"cn5"},"509":{"v":[[0.0,0.0,8.14],[-5.76,0.0,5.76],[-8.14,0.0,0.0],[-5.76,0.0,-5.76],[-0.0,0.0,-8.14],[5.76,0.0,-5.76],[8.14,0.0,-0.0],[5.76,0.0,5.76]],"l":[{"s":1000.0,"p":[{"c":28,"a":0,"i":[0,1,2,3,4,5,6,7,0]}]}],"n":"ft1"},"513":{"v":[[30.0,0.0,50.0],[-30.0,0.0,50.0],[-30.0,0.0,0.0],[30.0,0.0,0.0]],"l":[{"s":5000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]}]}],"n":"oa1"},"516":{"v":[[30.0,0.0,50.0],[-30.0,0.0,50.0],[-30.0,0.0,-50.0],[30.0,0.0,-50.0],[27.9,0.0,-50.0],[27.41,0.0,50.0],[24.0,0.0,50.0],[24.0,0.0,-50.0],[-22.5,0.0,-50.0],[-22.5,0.0,50.0],[-25.71,0.0,50.0],[-25.71,0.0,-50.0]],"l":[{"s":10.0,"p":[{"c":30,"a":0,"i":[4,5,6,7,4]},{"c":30,"a":0,"i":[8,9,10,11,8]}]},{"s":100000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]}]}],"n":"cn1"},"519":{"v":[[30.0,0.0,50.0],[-30.0,0.0,50.0],[-30.0,0.0,-50.0],[30.0,0.0,-50.0]],"l":[{"s":100000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]}]}],"n":"cn4"},"524":{"v":[[44.5,0.0,47.5],[19.5,0.0,47.5],[19.5,0.0,52.5],[44.5,0.0,52.5],[-44.5,0.0,52.5],[-19.5,0.0,52.5],[-19.5,0.0,47.5],[-44.5,0.0,47.5]],"l":[{"s":1000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]},{"c":51,"a":0,"i":[4,5,6,7,4]}]}],"n":"cn3"},"528":{"v":[[25.0,0.0,25.0],[-25.0,0.0,25.0],[-15.0,0.0,-25.0],[15.0,0.0,-25.0],[51.0,0.0,25.0],[51.0,0.0,27.0],[-50.0,0.0,27.0],[-50.0,0.0,25.0]],"l":[{"s":10.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]},{"c":51,"a":0,"i":[4,5,6,7,4]}]},{"s":100000.0,"p":[{"c":51,"a":0,"i":[4,7,2,3,4]}]}],"n":"cre"},"532":{"v":[[15.0,0.0,50.0],[-15.0,0.0,50.0],[-15.0,0.0,-50.0],[15.0,0.0,-50.0]],"l":[{"s":100000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]}]}],"n":"cr4"},"541":{"v":[[15.0,0.0,-35.0],[-15.0,0.0,-35.0],[-15.0,0.0,-41.0],[15.0,0.0,-41.0],[6.0,0.0,44.0],[5.0,0.0,47.0],[1.0,0.0,47.0],[-1.0,0.0,44.0],[-1.0,0.0,-35.0],[6.0,0.0,-35.0],[15.0,0.0,-18.0],[22.0,0.0,-18.0],[22.0,0.0,44.0],[15.0,0.0,44.0],[15.0,0.0,50.0],[-15.0,0.0,50.0],[-15.0,0.0,35.0],[-10.0,0.0,25.0],[-10.0,0.0,0.0],[-15.0,0.0,-10.0],[-15.0,0.0,-50.0],[15.0,0.0,-50.0]],"l":[{"s":5.0,"p":[{"c":30,"a":0,"i":[0,1,2,3,0]},{"c":30,"a":0,"i":[4,5,6,7,8,9,4]},{"c":51,"a":0,"i":[10,11,12,13,14,15,16,17,18,19,20,21,10]}]},{"s":100.0,"p":[{"c":51,"a":0,"i":[10,11,12,13,14,15,16,17,18,19,20,21,10]}]},{"s":100000.0,"p":[{"c":51,"a":0,"i":[14,15,20,21,14]}]}],"n":"cr1"},"547":{"v":[[15.0,0.0,40.0],[-15.0,0.0,40.0],[-15.0,0.0,36.0],[15.0,0.0,36.0],[15.0,0.0,4.0],[-15.0,0.0,4.0],[-15.0,0.0,1.0],[15.0,0.0,1.0],[15.0,0.0,-29.0],[-15.0,0.0,-29.0],[-15.0,0.0,-39.0],[15.0,0.0,-39.0],[15.0,0.0,50.0],[-15.0,0.0,50.0],[-15.0,0.0,-50.0],[15.0,0.0,-50.0]],"l":[{"s":10.0,"p":[{"c":30,"a":0,"i":[0,1,2,3,0]},{"c":30,"a":0,"i":[4,5,6,7,4]},{"c":30,"a":0,"i":[8,9,10,11,8]},{"c":51,"a":0,"i":[12,13,14,15,12]}]},{"s":100000.0,"p":[{"c":51,"a":0,"i":[12,13,14,15,12]}]}],"n":"cr2"},"551":{"v":[[50.0,0.0,50.0],[-50.0,0.0,50.0],[-50.0,0.0,-50.0],[50.0,0.0,-50.0]],"l":[{"s":10000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]}]}],"n":"oa3"},"557":{"v":[[0.0,0.0,4.07],[-2.88,0.0,2.88],[-4.07,0.0,0.0],[-2.88,0.0,-2.88],[-0.0,0.0,-4.07],[2.88,0.0,-2.88],[4.07,0.0,-0.0],[2.88,0.0,2.88]],"l":[{"s":100.0,"p":[{"c":28,"a":0,"i":[0,1,2,3,4,5,6,7,0]}]}],"n":"ct1"},"564":{"v":[[52.0,0.0,5.25],[52.0,0.0,-5.25],[-52.0,0.0,-5.25],[-52.0,0.0,5.25]],"l":[{"s":10.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]}]}],"n":"trs"},"570":{"v":[[225.0,0.0,104.0],[225.0,0.0,-105.0],[-225.0,0.0,-105.0],[-225.0,0.0,104.0]],"l":[{"s":100000.0,"p":[{"c":56,"a":0,"i":[0,1,2,3,0]}]}],"n":"sc500a"},"585":{"v":[[20.0,0.0,-120.0],[0.0,0.0,-120.0],[0.0,0.0,-140.0],[20.0,0.0,-140.0],[-20.0,0.0,80.0],[-20.0,0.0,-160.0],[-10.0,0.0,-160.0],[-10.0,0.0,80.0],[20.0,0.0,95.0],[10.0,0.0,95.0],[10.0,0.0,-125.0],[20.0,0.0,-125.0],[65.0,0.0,-100.0],[-60.0,0.0,-100.0],[-60.0,0.0,-200.0],[65.0,0.0,-200.0]],"l":[{"s":5.0,"p":[{"c":24,"a":0,"i":[0,1,2,3,0]},{"c":28,"a":0,"i":[4,5,6,7,4]},{"c":28,"a":0,"i":[8,9,10,11,8]},{"c":51,"a":0,"i":[12,13,14,15,12]}]},{"s":100000.0,"p":[{"c":51,"a":0,"i":[12,13,14,15,12]}]}],"n":"od3"},"594":{"v":[[50.0,0.0,100.0],[-50.0,0.0,100.0],[-50.0,0.0,-100.0],[50.0,0.0,-100.0]],"l":[{"s":100000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]}]}],"n":"br2"},"598":{"v":[[5.0,0.0,82.5],[-5.0,0.0,82.5],[-5.0,0.0,-82.5],[5.0,0.0,-82.5]],"l":[{"s":10000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]}]}],"n":"rl2"},"602":{"v":[[5.0,0.0,40.0],[5.0,0.0,-40.0],[-5.0,0.0,-40.0],[-5.0,0.0,40.0]],"l":[{"s":10.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]}]}],"n":"br1"},"606":{"v":[[0.0,0.0,2.25],[1.59,0.0,1.59],[2.25,0.0,0.0],[1.59,0.0,-1.59],[0.0,0.0,-2.25],[-1.59,0.0,-1.59],[-2.25,0.0,0.0],[-1.59,0.0,1.59]],"l":[{"s":100000.0,"p":[{"c":30,"a":0,"i":[0,1,2,3,4,5,6,7,0]}]}],"n":"cl1"},"616":{"v":[[5.0,0.0,25.0],[5.0,0.0,-25.0],[-5.0,0.0,-25.0],[-5.0,0.0,25.0]],"l":[{"s":10.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]}]}],"n":"br3"},"620":{"v":[[-50.0,0.0,20.0],[-50.0,0.0,-20.0],[50.0,0.0,-20.0],[50.0,0.0,20.0],[25.0,0.0,-50.0],[55.0,0.0,-20.0],[55.0,0.0,20.0],[25.0,0.0,50.0],[25.0,0.0,100.0],[-25.0,0.0,100.0],[-25.0,0.0,50.0],[-55.0,0.0,20.0],[-55.0,0.0,-20.0],[-25.0,0.0,-50.0],[-25.0,0.0,-100.0],[25.0,0.0,-100.0],[-35.0,0.0,-15.0],[-25.0,0.0,15.0],[-45.0,0.0,15.0],[35.0,0.0,15.0],[45.0,0.0,-15.0],[25.0,0.0,-15.0]],"l":[{"s":10000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]},{"c":51,"a":0,"i":[4,5,6,7,8,9,10,11,12,13,14,15,4]},{"c":25,"a":0,"i":[16,17,18,16]},{"c":25,"a":0,"i":[19,20,21,19]}]}],"n":"gr2"},"625":{"v":[[400.0,0.0,400.0],[-400.0,0.0,400.0],[-400.0,0.0,-400.0],[400.0,0.0,-400.0],[240.0,0.0,150.0],[-240.0,0.0,150.0],[-240.0,0.0,-240.0],[240.0,0.0,-240.0],[20.0,0.0,375.0],[5.0,0.0,335.0],[20.0,0.0,335.0],[60.0,0.0,375.0],[60.0,0.0,335.0],[75.0,0.0,335.0],[25.0,0.0,0.0],[17.68,0.0,17.68],[-0.0,0.0,25.0],[-17.68,0.0,17.68],[-25.0,0.0,0.0],[-17.68,0.0,-17.68],[0.0,0.0,-25.0],[17.68,0.0,-17.68]],"l":[{"s":100000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]},{"c":51,"a":0,"i":[4,5,6,7,4]},{"c":24,"a":0,"i":[8,9,10,8]},{"c":24,"a":0,"i":[11,12,13,11]},{"c":28,"a":0,"i":[14,15,16,17,18,19,20,21,14]}]}],"n":"wh5"},"629":{"v":[[0.0,0.0,8.96],[-6.33,0.0,6.33],[-8.96,0.0,0.0],[-6.33,0.0,-6.33],[-0.0,0.0,-8.96],[6.33,0.0,-6.33],[8.96,0.0,-0.0],[6.34,0.0,6.33]],"l":[{"s":2000.0,"p":[{"c":28,"a":0,"i":[0,1,2,3,4,5,6,7,0]}]}],"n":"pm1"},"637":{"v":[[400.0,0.0,400.0],[-400.0,0.0,400.0],[-400.0,0.0,-400.0],[400.0,0.0,-400.0],[150.0,0.0,150.0],[-150.0,0.0,150.0],[-150.0,0.0,-150.0],[150.0,0.0,-150.0],[15.0,0.0,370.0],[0.0,0.0,330.0],[15.0,0.0,330.0],[65.0,0.0,370.0],[65.0,0.0,330.0],[80.0,0.0,330.0],[25.0,0.0,0.0],[17.68,0.0,17.68],[-0.0,0.0,25.0],[-17.68,0.0,17.68],[-25.0,0.0,0.0],[-17.68,0.0,-17.68],[0.0,0.0,-25.0],[17.68,0.0,-17.68]],"l":[{"s":100000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]},{"c":51,"a":0,"i":[4,5,6,7,4]},{"c":24,"a":0,"i":[8,9,10,8]},{"c":24,"a":0,"i":[11,12,13,11]},{"c":28,"a":0,"i":[14,15,16,17,18,19,20,21,14]}]}],"n":"wt1"},"641":{"v":[[-5.5,0.0,-28.5],[5.5,0.0,-28.5],[5.5,0.0,19.0],[-2.5,0.0,28.5],[-5.5,0.0,28.5]],"l":[{"s":100000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,4,0]}]}],"n":"cq1"},"645":{"v":[[55.0,0.0,50.0],[-55.0,0.0,50.0],[-55.0,0.0,-75.0],[55.0,0.0,-75.0]],"l":[{"s":100000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]}]}],"n":"vm1"},"649":{"v":[[5.0,0.0,40.0],[-5.0,0.0,40.0],[-5.0,0.0,-40.0],[5.0,0.0,-40.0]],"l":[{"s":10000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]}]}],"n":"rl1"},"653":{"v":[[50.0,0.0,50.0],[-50.0,0.0,50.0],[-50.0,0.0,-50.0],[50.0,0.0,-50.0],[40.0,0.0,50.0],[-40.0,0.0,50.0],[-15.0,0.0,-50.0],[15.0,0.0,-50.0]],"l":[{"s":100000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]},{"c":23,"a":0,"i":[4,5,6,7,4]}]}],"n":"me1"},"662":{"v":[[10.0,0.0,50.0],[-10.0,0.0,50.0],[-10.0,0.0,-50.0],[10.0,0.0,-50.0]],"l":[{"s":50000.0,"p":[{"c":23,"a":0,"i":[0,1,2,3,0]}]}],"n":"md4"},"666":{"v":[[10.0,0.0,50.0],[-10.0,0.0,50.0],[-10.0,0.0,-50.0],[10.0,0.0,-50.0]],"l":[{"s":50000.0,"p":[{"c":23,"a":0,"i":[0,1,2,3,0]}]}],"n":"md3"},"683":{"v":[[60.0,0.0,50.0],[-55.0,0.0,50.0],[-55.0,0.0,30.0],[60.0,0.0,30.0]],"l":[{"s":10000.0,"p":[{"c":24,"a":0,"i":[0,1,2,3,0]}]}],"n":"hv5"},"687":{"v":[[60.0,0.0,50.0],[-55.0,0.0,50.0],[-55.0,0.0,-75.0],[60.0,0.0,-75.0],[40.0,0.0,20.0],[10.0,0.0,20.0],[-30.0,0.0,0.0],[-30.0,0.0,-20.0],[10.0,0.0,-35.0],[10.0,0.0,-55.0],[40.0,0.0,-55.0]],"l":[{"s":10.0,"p":[{"c":22,"a":0,"i":[0,1,2,3,0]},{"c":22,"a":0,"i":[4,5,6,7,8,9,10,4]}]},{"s":50000.0,"p":[{"c":22,"a":0,"i":[0,1,2,3,0]}]}],"n":"pl1"},"691":{"v":[[20.0,0.0,100.0],[-20.0,0.0,100.0],[-20.0,0.0,-100.0],[20.0,0.0,-100.0]],"l":[{"s":10000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]}]}],"n":"cr6"},"695":{"v":[[15.0,0.0,50.0],[-15.0,0.0,50.0],[-20.0,0.0,-50.0],[20.0,0.0,-50.0]],"l":[{"s":100000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]}]}],"n":"cr5"},"708":{"v":[[325.0,0.0,325.0],[-300.0,0.0,325.0],[-300.0,0.0,-325.0],[325.0,0.0,-325.0],[75.0,0.0,75.0],[-50.0,0.0,75.0],[-50.0,0.0,-75.0],[75.0,0.0,-75.0],[-30.0,0.0,75.0],[-30.0,0.0,35.0],[-15.0,0.0,35.0],[-65.0,0.0,35.0],[-50.0,0.0,35.0],[25.0,0.0,0.0],[17.68,0.0,17.68],[-0.0,0.0,25.0],[-17.68,0.0,17.68],[-25.0,0.0,0.0],[-17.68,0.0,-17.68],[0.0,0.0,-25.0],[17.68,0.0,-17.68]],"l":[{"s":100000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]},{"c":51,"a":0,"i":[4,5,6,7,4]},{"c":24,"a":0,"i":[8,9,10,8]},{"c":24,"a":0,"i":[5,11,12,5]},{"c":28,"a":0,"i":[13,14,15,16,17,18,19,20,13]}]}],"n":"wh2"},"717":{"v":[[-30.0,0.0,55.0],[-155.0,0.0,5.0],[-145.0,0.0,-20.0],[-20.0,0.0,30.0],[50.0,0.0,-40.0],[-135.0,0.0,-115.0],[-120.0,0.0,-150.0],[65.0,0.0,-75.0],[100.0,0.0,15.0],[-10.0,0.0,-30.0],[25.0,0.0,-115.0],[135.0,0.0,-70.0],[40.0,0.0,90.0],[-70.0,0.0,45.0],[-25.0,0.0,-65.0],[85.0,0.0,-20.0],[-170.0,0.0,5.0],[-125.0,0.0,-105.0],[-80.0,0.0,-55.0],[-45.0,0.0,-140.0]],"l":[{"s":2.0,"p":[{"c":28,"a":0,"i":[0,1,2,3,0]},{"c":28,"a":0,"i":[4,5,6,7,4]},{"c":28,"a":0,"i":[8,9,10,11,8]},{"c":28,"a":0,"i":[12,13,14,15,12]}]},{"s":50000.0,"p":[{"c":28,"a":0,"i":[12,16,17,15,12]},{"c":28,"a":0,"i":[8,18,19,11,8]}]}],"n":"rf1"},"721":{"v":[[50.0,0.0,50.0],[-50.0,0.0,50.0],[-50.0,0.0,-50.0],[50.0,0.0,-50.0]],"l":[{"s":100000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]}]}],"n":"cr7"},"725":{"v":[[-50.0,0.0,15.0],[-45.0,0.0,-15.0],[-35.0,0.0,-45.0],[-10.0,0.0,-50.0],[10.0,0.0,-50.0],[30.0,0.0,-35.0],[45.0,0.0,-15.0],[50.0,0.0,50.0],[-50.0,0.0,50.0]],"l":[{"s":10000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,4,5,6,7,8,0]}]}],"n":"cc1"},"734":{"v":[[-15.0,0.0,9.0],[-27.0,0.0,-3.0],[-27.0,0.0,-36.0],[-15.0,0.0,-48.0],[15.0,0.0,50.0],[-15.0,0.0,50.0],[-15.0,0.0,-50.0],[15.0,0.0,-50.0],[-6.0,0.0,4.0],[-4.0,0.0,1.0],[4.0,0.0,1.0],[8.0,0.0,6.0],[8.0,0.0,40.0],[4.0,0.0,44.0],[-4.0,0.0,44.0],[-6.0,0.0,40.0],[-15.0,0.0,40.0],[-15.0,0.0,4.0]],"l":[{"s":10.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]},{"c":51,"a":0,"i":[4,5,6,7,4]},{"c":30,"a":0,"i":[8,9,10,11,12,13,14,15,16,17,8]}]},{"s":100000.0,"p":[{"c":51,"a":0,"i":[4,5,6,7,4]}]}],"n":"cr3"},"743":{"v":[[-87.0,0.0,-34.0],[11.0,0.0,-34.0],[11.0,0.0,34.0],[-87.0,0.0,34.0]],"l":[{"s":100000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]}]}],"n":"cq2"},"748":{"v":[[400.0,0.0,400.0],[-400.0,0.0,400.0],[-400.0,0.0,-400.0],[400.0,0.0,-400.0],[150.0,0.0,150.0],[-150.0,0.0,150.0],[-150.0,0.0,-150.0],[150.0,0.0,-150.0],[20.0,0.0,150.0],[5.0,0.0,110.0],[20.0,0.0,110.0],[60.0,0.0,150.0],[60.0,0.0,110.0],[75.0,0.0,110.0],[25.0,0.0,0.0],[17.68,0.0,17.68],[-0.0,0.0,25.0],[-17.68,0.0,17.68],[-25.0,0.0,0.0],[-17.68,0.0,-17.68],[0.0,0.0,-25.0],[17.68,0.0,-17.68]],"l":[{"s":100000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]},{"c":51,"a":0,"i":[4,5,6,7,4]},{"c":24,"a":0,"i":[8,9,10,8]},{"c":24,"a":0,"i":[11,12,13,11]},{"c":28,"a":0,"i":[14,15,16,17,18,19,20,21,14]}]}],"n":"wh1"},"752":{"v":[[5.0,0.0,105.0],[-5.0,0.0,105.0],[-5.0,0.0,-105.0],[5.0,0.0,-105.0]],"l":[{"s":10000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]}]}],"n":"rl3"},"760":{"v":[[0.0,0.0,8.14],[-5.76,0.0,5.76],[-8.14,0.0,0.0],[-5.76,0.0,-5.76],[-0.0,0.0,-8.14],[5.76,0.0,-5.76],[8.14,0.0,-0.0],[5.76,0.0,5.76]],"l":[{"s":1000.0,"p":[{"c":28,"a":0,"i":[0,1,2,3,4,5,6,7,0]}]}],"n":"ft2"},"767":{"v":[[5.0,0.0,69.3],[-5.0,0.0,69.3],[-5.0,0.0,-69.3],[5.0,0.0,-69.3]],"l":[{"s":10000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]}]}],"n":"rp3"},"773":{"v":[[30.0,0.0,50.0],[-30.0,0.0,50.0],[-30.0,0.0,-50.0],[30.0,0.0,-50.0],[27.9,0.0,-50.0],[27.41,0.0,50.0],[24.0,0.0,50.0],[24.0,0.0,-50.0],[-22.5,0.0,-50.0],[-22.5,0.0,50.0],[-25.71,0.0,50.0],[-25.71,0.0,-50.0]],"l":[{"s":10.0,"p":[{"c":30,"a":0,"i":[4,5,6,7,4]},{"c":30,"a":0,"i":[8,9,10,11,8]}]},{"s":100000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]}]}],"n":"cn7"},"777":{"v":[[-25.0,0.0,-15.0],[25.0,0.0,-15.0],[25.0,0.0,-10.0],[10.0,0.0,15.0],[-10.0,0.0,15.0],[-25.0,0.0,-10.0]],"l":[{"s":100000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,4,5,0]}]}],"n":"bp1"},"784":{"v":[[44.5,0.0,60.0],[-44.5,0.0,60.0],[-44.5,0.0,-50.0],[44.5,0.0,-50.0]],"l":[{"s":100000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]}]}],"n":"cn6"},"791":{"v":[[30.0,0.0,50.0],[-30.0,0.0,50.0],[-30.0,0.0,-50.0],[30.0,0.0,-50.0]],"l":[{"s":100000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]}]}],"n":"cr8"},"797":{"v":[[22.5,0.0,75.0],[22.5,0.0,-75.0],[19.56,0.0,-93.54],[11.04,0.0,-110.27],[-2.23,0.0,-123.54],[-18.96,0.0,-132.06],[-37.5,0.0,-135.0],[-56.04,0.0,-132.06],[-72.77,0.0,-123.54],[-86.04,0.0,-110.27],[-94.56,0.0,-93.54],[-97.5,0.0,-75.0],[-94.56,0.0,-56.46],[-22.5,0.0,75.0]],"l":[{"s":100000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,0]}]}],"n":"wh9"},"803":{"v":[[5.0,0.0,40.0],[5.0,0.0,-40.0],[-5.0,0.0,-40.0],[-5.0,0.0,40.0]],"l":[{"s":10.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]}]}],"n":"br1a"},"821":{"v":[[15.0,0.0,-35.0],[-15.0,0.0,-35.0],[-15.0,0.0,-41.0],[15.0,0.0,-41.0],[6.0,0.0,44.0],[5.0,0.0,47.0],[1.0,0.0,47.0],[-1.0,0.0,44.0],[-1.0,0.0,-35.0],[6.0,0.0,-35.0],[15.0,0.0,-18.0],[22.0,0.0,-18.0],[22.0,0.0,44.0],[15.0,0.0,44.0],[15.0,0.0,50.0],[-15.0,0.0,50.0],[-15.0,0.0,35.0],[-10.0,0.0,25.0],[-10.0,0.0,0.0],[-15.0,0.0,-10.0],[-15.0,0.0,-50.0],[15.0,0.0,-50.0]],"l":[{"s":5.0,"p":[{"c":51,"a":0,"i":[10,11,12,13,14,15,16,17,18,19,20,21,10]}]},{"s":100.0,"p":[{"c":51,"a":0,"i":[10,11,12,13,14,15,16,17,18,19,20,21,10]}]},{"s":100000.0,"p":[{"c":51,"a":0,"i":[14,15,20,21,14]}]}],"n":"cr1a"},"826":{"v":[[30.0,0.0,50.0],[-30.0,0.0,50.0],[-30.0,0.0,-50.0],[30.0,0.0,-50.0],[27.9,0.0,-50.0],[27.41,0.0,50.0],[24.0,0.0,50.0],[24.0,0.0,-50.0],[-22.5,0.0,-50.0],[-22.5,0.0,50.0],[-25.71,0.0,50.0],[-25.71,0.0,-50.0]],"l":[{"s":10.0,"p":[{"c":30,"a":0,"i":[4,5,6,7,4]},{"c":30,"a":0,"i":[8,9,10,11,8]}]},{"s":100000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]}]}],"n":"cn5u"},"829":{"v":[[30.0,0.0,50.0],[-30.0,0.0,50.0],[-30.0,0.0,-50.0],[30.0,0.0,-50.0],[27.9,0.0,-50.0],[27.41,0.0,50.0],[24.0,0.0,50.0],[24.0,0.0,-50.0],[-22.5,0.0,-50.0],[-22.5,0.0,50.0],[-25.71,0.0,50.0],[-25.71,0.0,-50.0]],"l":[{"s":10.0,"p":[{"c":30,"a":0,"i":[4,5,6,7,4]},{"c":30,"a":0,"i":[8,9,10,11,8]}]},{"s":100000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]}]}],"n":"cn7u"},"833":{"v":[[44.5,0.0,47.5],[19.5,0.0,47.5],[19.5,0.0,52.5],[44.5,0.0,52.5],[-44.5,0.0,52.5],[-19.5,0.0,52.5],[-19.5,0.0,47.5],[-44.5,0.0,47.5]],"l":[{"s":1000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]},{"c":51,"a":0,"i":[4,5,6,7,4]}]}],"n":"cn3u"},"839":{"v":[[50.0,0.0,100.0],[-50.0,0.0,100.0],[-50.0,0.0,-100.0],[50.0,0.0,-100.0]],"l":[{"s":100000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]}]}],"n":"br4"},"842":{"v":[[50.0,0.0,-150.0],[150.0,0.0,-50.0],[250.0,0.0,-50.0],[250.0,0.0,50.0],[150.0,0.0,50.0],[50.0,0.0,150.0],[50.0,0.0,250.0],[-50.0,0.0,250.0],[-50.0,0.0,150.0],[-150.0,0.0,50.0],[-250.0,0.0,50.0],[-250.0,0.0,-50.0],[-150.0,0.0,-50.0],[-50.0,0.0,-150.0]],"l":[{"s":10000.0,"p":[{"c":51,"a":0,"i":[0,1,4,5,8,9,12,13,0]}]}],"n":"bre1"},"852":{"v":[[5.0,0.0,20.0],[-5.0,0.0,20.0],[-5.0,0.0,-20.0],[5.0,0.0,-20.0]],"l":[{"s":10000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]}]}],"n":"rp1"},"856":{"v":[[5.0,0.0,54.45],[-5.0,0.0,54.45],[-5.0,0.0,-54.45],[5.0,0.0,-54.45]],"l":[{"s":10000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]}]}],"n":"rp2"},"858":{"v":[[40.0,0.0,40.0],[40.0,0.0,-40.0],[-40.0,0.0,-40.0],[-40.0,0.0,40.0]],"l":[{"s":100000.0,"p":[{"c":56,"a":0,"i":[0,1,2,3,0]}]}],"n":"sc50a"},"873":{"v":[[30.0,0.0,50.0],[-30.0,0.0,50.0],[-30.0,0.0,-50.0],[30.0,0.0,-50.0],[27.9,0.0,-50.0],[27.41,0.0,50.0],[24.0,0.0,50.0],[24.0,0.0,-50.0],[-22.5,0.0,-50.0],[-22.5,0.0,50.0],[-25.71,0.0,50.0],[-25.71,0.0,-50.0]],"l":[{"s":10.0,"p":[{"c":30,"a":0,"i":[4,5,6,7,4]},{"c":30,"a":0,"i":[8,9,10,11,8]}]},{"s":100000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]}]}],"n":"cn5n"},"878":{"v":[[0.0,0.0,8.14],[-5.76,0.0,5.76],[-8.14,0.0,0.0],[-5.76,0.0,-5.76],[-0.0,0.0,-8.14],[5.76,0.0,-5.76],[8.14,0.0,-0.0],[5.76,0.0,5.76]],"l":[{"s":1000.0,"p":[{"c":28,"a":0,"i":[0,1,2,3,4,5,6,7,0]}]}],"n":"ft2u"},"881":{"v":[[-50.0,0.0,-50.0],[-150.0,0.0,-150.0],[-150.0,0.0,-250.0],[150.0,0.0,-250.0],[150.0,0.0,-150.0],[50.0,0.0,-50.0],[50.0,0.0,-150.0],[50.0,0.0,-250.0],[-50.0,0.0,-250.0],[-50.0,0.0,-150.0]],"l":[{"s":100000.0,"p":[{"c":51,"a":0,"i":[3,4,5,0,1,2]},{"c":51,"a":0,"i":[6,7,8,9,6]}]}],"n":"gar"},"884":{"v":[[-200.0,0.0,100.0],[0.0,0.0,-100.0],[100.0,0.0,100.0],[300.0,0.0,-100.0]],"l":[{"s":100000.0,"p":[{"c":51,"a":0,"i":[0,1]},{"c":51,"a":0,"i":[2,3]}]}],"n":"gar1"},"887":{"v":[[-200.0,0.0,100.0],[0.0,0.0,-100.0],[300.0,0.0,-100.0],[300.0,0.0,0.0],[100.0,0.0,0.0],[100.0,0.0,100.0]],"l":[{"s":100000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,4,5]}]}],"n":"gar2"},"901":{"v":[[-50.0,0.0,150.0],[-150.0,0.0,50.0],[-250.0,0.0,50.0],[-250.0,0.0,-50.0],[-150.0,0.0,-50.0],[-50.0,0.0,-150.0],[50.0,0.0,-150.0],[150.0,0.0,-50.0],[250.0,0.0,-50.0],[250.0,0.0,50.0],[150.0,0.0,50.0],[50.0,0.0,150.0],[-50.0,0.0,50.0],[-50.0,0.0,-50.0],[50.0,0.0,-50.0],[50.0,0.0,50.0]],"l":[{"s":100000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,4,5,6,7,8,9,10,11,0]}]}],"n":"pit1"},"904":{"v":[[-50.0,0.0,150.0],[-150.0,0.0,50.0],[-250.0,0.0,50.0],[-250.0,0.0,-50.0],[-150.0,0.0,-50.0],[-50.0,0.0,-150.0],[-50.0,0.0,-250.0],[50.0,0.0,-250.0],[50.0,0.0,-150.0],[150.0,0.0,-50.0],[150.0,0.0,50.0],[50.0,0.0,150.0],[-50.0,0.0,50.0],[-50.0,0.0,-50.0],[50.0,0.0,-50.0],[50.0,0.0,50.0]],"l":[{"s":100000.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,4,5,6,7,8,9,10,11,0]}]}],"n":"pit2"},"918":{"v":[[75.0,0.0,24.0],[25.0,0.0,24.0],[25.0,0.0,-25.0],[75.0,0.0,-25.0],[-25.0,0.0,24.0],[-75.0,0.0,24.0],[-75.0,0.0,-25.0],[-25.0,0.0,-25.0],[0.0,0.0,0.0],[-25.0,0.0,-12.0],[-25.0,0.0,10.0],[25.0,0.0,10.0],[25.0,0.0,-12.0],[75.0,0.0,20.0],[75.0,0.0,-22.0],[-75.0,0.0,-22.0],[-75.0,0.0,20.0]],"l":[{"s":5.0,"p":[{"c":51,"a":0,"i":[0,1,2,3,0]},{"c":51,"a":0,"i":[4,5,6,7,4]},{"c":26,"a":0,"i":[8,9,10,8]},{"c":26,"a":0,"i":[8,11,12,8]}]},{"s":50000.0,"p":[{"c":26,"a":0,"i":[8,13,14,8]},{"c":26,"a":0,"i":[8,15,16,8]}]}],"n":"drw_1"},"928":{"v":[[-1.2,0.0,-3.2],[1.2,0.0,-3.2],[1.2,0.0,-1.5],[-1.2,0.0,-1.5],[0.7,0.0,-2.7],[1.2,0.0,-2.1],[1.2,0.0,0.5],[0.7,0.0,3.0],[-0.7,0.0,3.0],[-1.2,0.0,0.5],[-1.2,0.0,-2.1],[-0.7,0.0,-2.7],[-2.4,0.0,-1.0],[-2.4,0.0,0.0],[2.4,0.0,-1.0],[2.4,0.0,0.0],[-1.2,0.0,2.6],[-0.8,0.0,2.4],[-1.2,0.0,3.0],[1.2,0.0,2.6],[1.2,0.0,3.0],[0.8,0.0,2.4],[1.2,0.0,-3.1],[-1.2,0.0,-3.1],[-2.4,0.0,-0.1],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,8,9,10,11,4]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]},{"c":0,"a":0,"i":[16,17,8,18,16]},{"c":0,"a":0,"i":[19,20,7,21,19]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[22,6,7,8,9,23,22]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[22,15,7,8,24,23,22]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[25,26,27,25]}]}],"n":"blkrspk"},"939":{"v":[[-1.2,0.0,-3.2],[1.2,0.0,-3.2],[1.2,0.0,-1.5],[-1.2,0.0,-1.5],[0.7,0.0,-2.7],[1.2,0.0,-2.1],[1.2,0.0,0.5],[0.7,0.0,3.0],[-0.7,0.0,3.0],[-1.2,0.0,0.5],[-1.2,0.0,-2.1],[-0.7,0.0,-2.7],[-2.4,0.0,-1.0],[-2.4,0.0,0.0],[2.4,0.0,-1.0],[2.4,0.0,0.0],[-1.2,0.0,2.6],[-0.8,0.0,2.4],[-1.2,0.0,3.0],[1.2,0.0,2.6],[1.2,0.0,3.0],[0.8,0.0,2.4],[1.2,0.0,-3.1],[-1.2,0.0,-3.1],[-2.4,0.0,-0.1],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,8,9,10,11,4]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]},{"c":0,"a":0,"i":[16,17,8,18,16]},{"c":0,"a":0,"i":[19,20,7,21,19]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[22,6,7,8,9,23,22]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[22,15,7,8,24,23,22]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[25,26,27,25]}]}],"n":"blkrquark"},"948":{"v":[[-1.5,0.0,2.5],[-4.5,0.0,1.0],[-4.5,0.0,-0.5],[-1.5,0.0,-2.0],[1.5,0.0,2.5],[1.5,0.0,-2.0],[4.5,0.0,-0.5],[4.5,0.0,1.0],[1.5,0.0,-4.5],[1.5,0.0,4.5],[-1.5,0.0,4.5],[-1.5,0.0,-4.5],[0.75,0.0,3.5],[-0.75,0.0,3.5],[-0.75,0.0,1.25],[0.75,0.0,1.25],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[8,9,10,11,8]},{"c":0,"a":0,"i":[12,13,14,15,12]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[8,9,10,11,8]},{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[12,13,14,15,12]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[8,9,10,11,8]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[0,1,2,3,0]}]},{"s":100.0,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[8,9,10,11,8]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[16,17,18,16]}]}],"n":"blkrbroc"},"955":{"v":[[1.0,0.0,-4.5],[1.0,0.0,4.8],[-1.0,0.0,4.8],[-1.0,0.0,-4.5],[-1.0,0.0,4.0],[-2.8,0.0,3.2],[-2.8,0.0,-3.2],[-1.0,0.0,-4.0],[2.8,0.0,-3.2],[2.8,0.0,3.2],[1.0,0.0,4.0],[1.0,0.0,-4.0],[-3.8,0.0,-2.7],[-2.8,0.0,-1.3],[-3.8,0.0,-1.8],[-3.8,0.0,-0.5],[-2.8,0.0,-1.0],[-2.8,0.0,0.9],[-3.8,0.0,0.4],[-3.8,0.0,1.7],[-2.8,0.0,1.2],[-2.8,0.0,3.1],[-3.8,0.0,2.6],[3.8,0.0,1.7],[3.8,0.0,2.6],[2.8,0.0,3.1],[2.8,0.0,1.2],[3.8,0.0,-0.5],[3.8,0.0,0.4],[2.8,0.0,0.9],[2.8,0.0,-1.0],[3.8,0.0,-2.7],[3.8,0.0,-1.8],[2.8,0.0,-1.3],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,4]},{"c":0,"a":0,"i":[8,9,10,11,8]},{"c":0,"a":0,"i":[12,6,13,14,12]},{"c":0,"a":0,"i":[15,16,17,18,15]},{"c":0,"a":0,"i":[19,20,21,22,19]},{"c":0,"a":0,"i":[23,24,25,26,23]},{"c":0,"a":0,"i":[27,28,29,30,27]},{"c":0,"a":0,"i":[31,32,33,8,31]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[4,22,12,7,4]},{"c":0,"a":0,"i":[31,24,10,11,31]},{"c":0,"a":0,"i":[0,1,2,3,0]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[0,31,24,1,2,22,12,3,0]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[34,35,36,34]}]}],"n":"blkrtran"},"982":{"v":[[-1.2,0.0,-3.2],[1.2,0.0,-3.2],[1.2,0.0,-1.5],[-1.2,0.0,-1.5],[0.7,0.0,-2.7],[1.2,0.0,-2.1],[1.2,0.0,0.5],[0.7,0.0,3.0],[-0.7,0.0,3.0],[-1.2,0.0,0.5],[-1.2,0.0,-2.1],[-0.7,0.0,-2.7],[-2.4,0.0,-1.0],[-2.4,0.0,0.0],[2.4,0.0,-1.0],[2.4,0.0,0.0],[-1.2,0.0,2.6],[-0.8,0.0,2.4],[-1.2,0.0,3.0],[1.2,0.0,2.6],[1.2,0.0,3.0],[0.8,0.0,2.4],[1.2,0.0,-3.1],[-1.2,0.0,-3.1],[-2.4,0.0,-0.1],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,8,9,10,11,4]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]},{"c":0,"a":0,"i":[16,17,8,18,16]},{"c":0,"a":0,"i":[19,20,7,21,19]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[22,6,7,8,9,23,22]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[22,15,7,8,24,23,22]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[25,26,27,25]}]}],"n":"blkrlepton"},"1006":{"v":[[-1.2,0.0,-3.2],[1.2,0.0,-3.2],[1.2,0.0,-1.5],[-1.2,0.0,-1.5],[0.7,0.0,-2.7],[1.2,0.0,-2.1],[1.2,0.0,0.5],[0.7,0.0,3.0],[-0.7,0.0,3.0],[-1.2,0.0,0.5],[-1.2,0.0,-2.1],[-0.7,0.0,-2.7],[-2.4,0.0,-1.0],[-2.4,0.0,0.0],[2.4,0.0,-1.0],[2.4,0.0,0.0],[-1.2,0.0,2.6],[-0.8,0.0,2.4],[-1.2,0.0,3.0],[1.2,0.0,2.6],[1.2,0.0,3.0],[0.8,0.0,2.4],[1.2,0.0,-3.1],[-1.2,0.0,-3.1],[-2.4,0.0,-0.1],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,8,9,10,11,4]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]},{"c":0,"a":0,"i":[16,17,8,18,16]},{"c":0,"a":0,"i":[19,20,7,21,19]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[22,6,7,8,9,23,22]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[22,15,7,8,24,23,22]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[25,26,27,25]}]}],"n":"blkrpuck"},"1021":{"v":[[-1.2,0.0,-3.2],[1.2,0.0,-3.2],[1.2,0.0,-1.5],[-1.2,0.0,-1.5],[0.7,0.0,-2.7],[1.2,0.0,-2.1],[1.2,0.0,0.5],[0.7,0.0,3.0],[-0.7,0.0,3.0],[-1.2,0.0,0.5],[-1.2,0.0,-2.1],[-0.7,0.0,-2.7],[-2.4,0.0,-1.0],[-2.4,0.0,0.0],[2.4,0.0,-1.0],[2.4,0.0,0.0],[-1.2,0.0,2.6],[-0.8,0.0,2.4],[-1.2,0.0,3.0],[1.2,0.0,2.6],[1.2,0.0,3.0],[0.8,0.0,2.4],[1.2,0.0,-3.1],[-1.2,0.0,-3.1],[-2.4,0.0,-0.1],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,8,9,10,11,4]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]},{"c":0,"a":0,"i":[16,17,8,18,16]},{"c":0,"a":0,"i":[19,20,7,21,19]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[22,6,7,8,9,23,22]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[22,15,7,8,24,23,22]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[25,26,27,25]}]}],"n":"blkrdragon"},"1036":{"v":[[-1.2,0.0,-3.2],[1.2,0.0,-3.2],[1.2,0.0,-1.5],[-1.2,0.0,-1.5],[0.7,0.0,-2.7],[1.2,0.0,-2.1],[1.2,0.0,0.5],[0.7,0.0,3.0],[-0.7,0.0,3.0],[-1.2,0.0,0.5],[-1.2,0.0,-2.1],[-0.7,0.0,-2.7],[-2.4,0.0,-1.0],[-2.4,0.0,0.0],[2.4,0.0,-1.0],[2.4,0.0,0.0],[-1.2,0.0,2.6],[-0.8,0.0,2.4],[-1.2,0.0,3.0],[1.2,0.0,2.6],[1.2,0.0,3.0],[0.8,0.0,2.4],[1.2,0.0,-3.1],[-1.2,0.0,-3.1],[-2.4,0.0,-0.1],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,8,9,10,11,4]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]},{"c":0,"a":0,"i":[16,17,8,18,16]},{"c":0,"a":0,"i":[19,20,7,21,19]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[22,6,7,8,9,23,22]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[22,15,7,8,24,23,22]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[25,26,27,25]}]}],"n":"blkrwasp"},"1051":{"v":[[-1.2,0.0,-3.2],[1.2,0.0,-3.2],[1.2,0.0,-1.5],[-1.2,0.0,-1.5],[0.7,0.0,-2.7],[1.2,0.0,-2.1],[1.2,0.0,0.5],[0.7,0.0,3.0],[-0.7,0.0,3.0],[-1.2,0.0,0.5],[-1.2,0.0,-2.1],[-0.7,0.0,-2.7],[-2.4,0.0,-1.0],[-2.4,0.0,0.0],[2.4,0.0,-1.0],[2.4,0.0,0.0],[-1.2,0.0,2.6],[-0.8,0.0,2.4],[-1.2,0.0,3.0],[1.2,0.0,2.6],[1.2,0.0,3.0],[0.8,0.0,2.4],[1.2,0.0,-3.1],[-1.2,0.0,-3.1],[-2.4,0.0,-0.1],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,8,9,10,11,4]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]},{"c":0,"a":0,"i":[16,17,8,18,16]},{"c":0,"a":0,"i":[19,20,7,21,19]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[22,6,7,8,9,23,22]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[22,15,7,8,24,23,22]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[25,26,27,25]}]}],"n":"dark"},"1062":{"v":[[-1.2,0.0,-3.2],[1.2,0.0,-3.2],[1.2,0.0,-1.5],[-1.2,0.0,-1.5],[0.7,0.0,-2.7],[1.2,0.0,-2.1],[1.2,0.0,0.5],[0.7,0.0,3.0],[-0.7,0.0,3.0],[-1.2,0.0,0.5],[-1.2,0.0,-2.1],[-0.7,0.0,-2.7],[-2.4,0.0,-1.0],[-2.4,0.0,0.0],[2.4,0.0,-1.0],[2.4,0.0,0.0],[-1.2,0.0,2.6],[-0.8,0.0,2.4],[-1.2,0.0,3.0],[1.2,0.0,2.6],[1.2,0.0,3.0],[0.8,0.0,2.4],[1.2,0.0,-3.1],[-1.2,0.0,-3.1],[-2.4,0.0,-0.1],[-2.8,0.0,3.5],[0.0,0.0,-4.6],[2.6,0.0,3.5]],"l":[{"s":0.10000000149011612,"p":[{"c":0,"a":0,"i":[0,1,2,3,0]},{"c":0,"a":0,"i":[4,5,6,7,8,9,10,11,4]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]},{"c":0,"a":0,"i":[16,17,8,18,16]},{"c":0,"a":0,"i":[19,20,7,21,19]}]},{"s":1.0,"p":[{"c":0,"a":0,"i":[22,6,7,8,9,23,22]},{"c":0,"a":0,"i":[12,3,9,13,12]},{"c":0,"a":0,"i":[14,15,6,2,14]}]},{"s":10.0,"p":[{"c":0,"a":0,"i":[22,15,7,8,24,23,22]}]},{"s":100000.0,"p":[{"c":0,"a":0,"i":[25,26,27,25]}]}],"n":"neut"},"1075":{"v":[[-5.0,0.0,5.0],[5.0,0.0,5.0],[5.0,0.0,-5.0],[-5.0,0.0,-5.0],[-5.0,0.0,0.0],[5.0,0.0,0.0],[0.0,0.0,-5.0],[0.0,0.0,5.0]],"l":[{"s":100000.0,"p":[{"c":56,"a":0,"i":[0,2]},{"c":56,"a":0,"i":[1,3]},{"c":30,"a":0,"i":[4,5]},{"c":30,"a":0,"i":[6,7]}]}],"n":"eject"}},"tracks":[{"key":"wise","name":"Wiseguy's Wake","noart":52,"i":[[478,40.01,45.0,3880.0,0.0,-1.0,0.0,0.0],[490,0.0,5.0,1300.0,0.0,-1.0,0.0,0.0],[497,0.0,0.0,1200.0,0.0,0.0,0.0,1.0],[509,10.0,10.0,825.0,0.0,0.0,0.0,1.0],[509,10.0,10.0,880.0,0.0,0.0,0.0,1.0],[513,30.0,0.0,850.0,0.0,0.0,0.0,1.0],[513,30.0,0.0,850.0,0.0,-1.0,0.0,0.0],[478,-40.0,45.0,-1350.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,400.0,0.0,0.0,0.0,1.0],[519,0.0,5.0,1700.0,0.0,0.0,0.0,1.0],[519,0.0,5.0,1600.0,0.0,0.0,0.0,1.0],[519,0.0,5.0,2200.0,0.0,0.0,0.0,1.0],[519,0.0,5.0,2100.0,0.0,0.0,0.0,1.0],[519,0.0,5.0,2000.0,0.0,0.0,0.0,1.0],[519,0.0,5.0,1800.0,0.0,0.0,0.0,1.0],[519,0.0,5.0,1900.0,0.0,0.0,0.0,1.0],[497,0.0,0.0,2500.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,2500.0,0.0,-1.0,0.0,0.0],[497,0.0,0.0,2400.0,0.0,-1.0,0.0,0.0],[490,0.0,5.0,2300.0,0.0,0.0,0.0,1.0],[497,0.0,1.0,2999.0,0.0,-1.0,0.0,0.0],[528,0.0,0.0,3055.0,0.0,-1.0,0.0,0.0],[532,0.0,0.0,3130.0,0.0,-1.0,0.0,0.0],[532,0.0,0.0,3230.0,0.0,-1.0,0.0,0.0],[532,0.0,0.0,3530.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,2600.0,0.0,0.0,0.0,1.0],[497,0.0,0.0,2600.0,0.0,0.0,0.0,1.0],[497,0.0,0.0,2700.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,2900.0,0.0,-1.0,0.0,0.0],[541,0.0,0.0,-900.0,0.0,0.0,0.0,1.0],[532,0.0,0.0,-700.0,0.0,0.0,0.0,1.0],[547,0.0,0.0,-600.0,0.0,0.0,0.0,1.0],[532,0.0,0.0,-800.0,0.0,0.0,0.0,1.0],[532,0.0,0.0,-1000.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,300.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,200.0,0.0,0.0,0.0,1.0],[551,0.0,3.0,-100.0,0.0,0.0,0.0,1.0],[557,-10.0,0.0,50.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,100.0,0.0,0.0,0.0,1.0],[497,0.0,0.0,0.0,0.0,0.0,0.0,1.0],[564,0.0,-1.5,150.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,100.0,0.0,0.0,0.0,1.0],[528,0.0,0.0,-425.0,0.0,0.0,0.0,1.0],[532,0.0,0.0,-500.0,0.0,0.0,0.0,1.0],[557,10.78,0.0,750.19,0.0,-1.0,0.0,0.0],[557,10.78,0.0,550.19,0.0,-1.0,0.0,0.0],[564,0.0,11.5,649.5,0.0,0.0,0.0,1.0],[524,0.0,0.0,500.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,500.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,400.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,600.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,700.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,600.0,0.0,0.0,0.0,1.0],[497,0.0,0.0,-200.0,0.0,0.0,0.0,1.0],[564,0.0,21.5,1149.5,0.0,0.0,0.0,1.0],[455,0.0,0.0,-300.0,0.0,0.0,0.0,1.0],[497,0.0,0.0,-400.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,1000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,800.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,1000.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,900.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,1000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-300.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-400.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,900.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,800.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,700.0,0.0,0.0,0.0,1.0],[519,0.0,5.0,1500.0,0.0,0.0,0.0,1.0],[519,0.0,5.0,1400.0,0.0,0.0,0.0,1.0],[497,0.0,0.0,1100.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,1100.0,0.0,0.0,0.0,1.0],[497,0.0,0.0,-300.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,300.0,0.0,0.0,0.0,1.0],[570,-40.0,45.25,-1460.0,0.0,0.0,0.0,1.0],[570,40.0,45.25,3989.98,0.0,0.0,0.0,1.0],[532,0.0,0.0,3430.0,0.0,-1.0,0.0,0.0],[541,0.0,0.0,3330.0,0.0,-1.0,0.0,0.0],[455,0.0,1.0,2954.0,0.0,0.0,0.0,1.0],[497,0.0,1.0,2899.0,0.0,-1.0,0.0,0.0],[585,0.0,0.0,2650.0,0.0,-1.0,0.0,0.0]]},{"key":"yip","name":"Yip's Yahoorama","noart":45,"i":[[547,0.0,0.0,-1775.0,0.0,0.0,0.0,1.0],[541,0.0,0.0,-1375.0,0.0,0.0,0.0,1.0],[541,0.0,0.0,-1475.0,0.0,0.0,0.0,1.0],[528,0.0,0.0,-3199.4,0.0,0.0,0.0,1.0],[528,0.0,0.0,-1100.0,0.0,0.0,0.0,1.0],[528,0.0,0.0,-1950.0,0.0,-1.0,0.0,0.0],[528,0.0,0.0,1195.0,0.0,-1.0,0.0,0.0],[497,0.0,0.0,-650.0,0.0,0.0,0.0,1.0],[557,0.0,0.0,-2530.0,0.0,0.0,0.0,1.0],[557,0.0,0.0,-2470.0,0.0,0.0,0.0,1.0],[594,0.0,0.0,-2350.0,0.0,0.0,0.0,1.0],[497,0.0,0.0,-2500.0,0.0,0.0,0.0,1.0],[532,0.0,0.0,-3274.4,0.0,0.0,0.0,1.0],[524,0.0,0.0,-3000.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,-3000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-3100.0,0.0,0.0,0.0,1.0],[497,0.0,0.0,-3100.0,0.0,0.0,0.0,1.0],[455,0.0,0.0,-3150.0,0.0,0.0,0.0,1.0],[497,0.0,0.0,-3200.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-2900.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,-2900.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,-2800.0,0.0,0.0,0.0,1.0],[598,-10.0,0.1,-2887.2,0.0,0.0,0.0,1.0],[602,-10.0,20.1,-2764.7,0.0,-1.0,0.0,0.0],[524,0.0,0.0,-2800.0,0.0,0.0,0.0,1.0],[594,0.0,0.0,-2650.0,0.0,0.0,0.0,1.0],[532,0.0,0.0,-1175.0,0.0,0.0,0.0,1.0],[532,0.0,0.0,-1275.0,0.0,0.0,0.0,1.0],[606,-8.99,1.0,511.98,0.0,0.0,0.0,1.0],[606,5.0,1.0,-490.0,0.0,0.0,0.0,1.0],[519,0.0,1.0,-455.0,0.0,-1.0,0.0,0.0],[490,0.0,1.0,-555.0,0.0,-1.0,0.0,0.0],[606,-10.0,1.0,-325.0,0.0,0.0,0.0,1.0],[519,0.0,1.0,-155.0,0.0,-1.0,0.0,0.0],[519,0.0,1.0,-255.0,0.0,-1.0,0.0,0.0],[519,0.0,1.0,-355.0,0.0,-1.0,0.0,0.0],[519,0.0,1.0,645.0,0.0,0.0,0.0,1.0],[519,0.0,1.0,545.0,0.0,0.0,0.0,1.0],[519,0.0,1.0,445.0,0.0,0.0,0.0,1.0],[519,0.0,1.0,145.0,0.0,0.0,0.0,1.0],[519,0.0,1.0,245.0,0.0,0.0,0.0,1.0],[519,0.0,1.0,345.0,0.0,0.0,0.0,1.0],[606,0.0,1.0,285.0,0.0,0.0,0.0,1.0],[519,0.0,1.0,745.0,0.0,0.0,0.0,1.0],[490,0.0,1.0,845.0,0.0,0.0,0.0,1.0],[497,0.0,0.0,945.0,0.0,-1.0,0.0,0.0],[497,0.0,0.0,-850.0,0.0,0.0,0.0,1.0],[497,0.0,0.0,-750.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-750.0,0.0,0.0,0.0,1.0],[497,0.0,0.0,-1050.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-850.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-2300.0,0.0,0.0,0.0,1.0],[455,0.0,0.0,1095.0,0.0,-1.0,0.0,0.0],[497,0.0,0.0,1145.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,1045.0,0.0,-1.0,0.0,0.0],[497,0.0,0.0,1045.0,0.0,-1.0,0.0,0.0],[532,0.0,0.0,-1575.0,0.0,0.0,0.0,1.0],[532,0.0,0.0,-1675.0,0.0,0.0,0.0,1.0],[532,0.0,0.0,-1875.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,-2200.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,-2000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-2100.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-2200.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,-2100.0,0.0,0.0,0.0,1.0],[598,-10.0,0.1,-2192.5,0.0,-1.0,0.0,0.0],[602,-13.0,20.1,-2525.0,0.0,-1.0,0.0,0.0],[616,-13.0,0.0,-2450.0,0.0,0.0,0.0,1.0],[616,-13.0,0.0,-2350.0,0.0,0.0,0.0,1.0],[616,-13.0,0.0,-2650.0,0.0,0.0,0.0,1.0],[585,0.0,0.0,-800.0,0.0,0.0,0.0,1.0],[509,-3.99,0.0,-2786.82,0.0,0.0,0.0,1.0],[509,13.01,0.0,-2786.82,0.0,0.0,0.0,1.0],[532,0.0,0.0,1370.0,0.0,-1.0,0.0,0.0],[532,0.0,0.0,1270.0,0.0,-1.0,0.0,0.0],[620,0.0,1.0,-5.0,0.0,0.0,0.0,1.0],[532,0.0,0.0,1470.0,0.0,-1.0,0.0,0.0],[478,40.0,45.0,1820.0,0.0,-1.0,0.0,0.0],[625,-40.0,-50.0,-3724.4,0.0,0.0,0.0,1.0],[570,40.0,45.0,1935.0,0.0,0.0,0.0,1.0],[570,-40.0,-50.0,-3837.65,0.0,-1.0,0.0,0.0],[629,-74.63,-50.0,-3912.17,0.0,0.0,0.0,1.0],[629,-4.63,-50.0,-3919.17,0.0,0.0,0.0,1.0]]},{"key":"pain","name":"Paingod's Passage","noart":117,"i":[[637,-33.0,-45.0,-2225.0,0.0,0.0,0.0,1.0],[641,2.87,25.0,-102.27,0.0,-1.0,0.0,0.0],[641,2.87,25.0,-472.27,0.0,-1.0,0.0,0.0],[516,0.0,0.0,2525.0,0.0,0.0,0.0,1.0],[645,0.0,10.0,2650.0,0.0,0.0,0.0,1.0],[649,-8.0,0.0,2740.0,0.0,-1.0,0.0,0.0],[653,0.0,0.0,2425.0,0.0,0.0,0.0,1.0],[509,7.61,0.0,413.31,0.0,0.0,0.0,1.0],[509,7.61,0.0,518.31,0.0,0.0,0.0,1.0],[557,12.54,0.0,574.98,0.0,-1.0,0.0,0.0],[557,-9.0,0.0,475.0,0.0,0.0,0.0,1.0],[557,12.54,0.0,374.98,0.0,-1.0,0.0,0.0],[524,2.0,0.0,625.0,0.0,0.0,0.0,1.0],[516,2.0,0.0,625.0,0.0,0.0,0.0,1.0],[653,2.0,0.0,725.0,0.0,-1.0,0.0,0.0],[516,7.0,0.0,-975.0,0.0,0.0,0.0,1.0],[516,7.0,0.0,-875.0,0.0,0.0,0.0,1.0],[524,7.0,0.0,-975.0,0.0,0.0,0.0,1.0],[524,2.0,0.0,925.0,0.0,0.0,0.0,1.0],[524,2.0,0.0,1025.0,0.0,0.0,0.0,1.0],[516,2.0,0.0,1125.0,0.0,0.0,0.0,1.0],[516,2.0,0.0,925.0,0.0,0.0,0.0,1.0],[516,2.0,0.0,1025.0,0.0,0.0,0.0,1.0],[513,2.0,0.0,975.0,0.0,-1.0,0.0,0.0],[513,2.0,0.0,975.0,0.0,0.0,0.0,1.0],[649,-8.0,0.0,885.0,0.0,0.0,0.0,1.0],[524,2.0,0.0,825.0,0.0,0.0,0.0,1.0],[516,2.0,0.0,825.0,0.0,0.0,0.0,1.0],[524,2.0,0.0,725.0,0.0,0.0,0.0,1.0],[662,2.0,-25.0,2225.0,0.0,0.0,0.0,1.0],[662,2.0,-35.0,2125.0,0.0,0.0,0.0,1.0],[662,2.0,-45.0,2025.0,0.0,0.0,0.0,1.0],[666,2.0,-55.0,1925.0,0.0,0.0,0.0,1.0],[662,2.0,-15.0,2325.0,0.0,0.0,0.0,1.0],[662,2.0,-65.0,1625.0,0.0,0.0,0.0,1.0],[662,2.0,-55.0,1725.0,0.0,0.0,0.0,1.0],[666,2.0,-75.0,1525.0,0.0,0.0,0.0,1.0],[666,2.0,-55.0,1825.0,0.0,0.0,0.0,1.0],[662,2.0,-55.0,1325.0,0.0,-1.0,0.0,0.0],[662,2.0,-65.0,1425.0,0.0,-1.0,0.0,0.0],[666,2.0,-55.0,1225.0,0.0,-1.0,0.0,0.0],[662,2.0,-45.0,1125.0,0.0,-1.0,0.0,0.0],[662,2.0,-35.0,1025.0,0.0,-1.0,0.0,0.0],[662,2.0,-25.0,925.0,0.0,-1.0,0.0,0.0],[662,2.0,-15.0,825.0,0.0,-1.0,0.0,0.0],[516,2.0,0.0,525.0,0.0,0.0,0.0,1.0],[497,0.0,0.0,2750.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,2325.0,0.0,0.0,0.0,1.0],[683,2.0,0.0,1225.0,0.0,-1.0,0.0,0.0],[683,2.0,0.0,2225.0,0.0,0.0,0.0,1.0],[606,2.0,25.0,-425.0,0.0,0.0,0.0,1.0],[606,2.0,25.0,-15.0,0.0,0.0,0.0,1.0],[524,2.0,0.0,525.0,0.0,0.0,0.0,1.0],[524,2.0,0.0,425.0,0.0,0.0,0.0,1.0],[524,2.0,0.0,325.0,0.0,0.0,0.0,1.0],[516,2.0,0.0,425.0,0.0,0.0,0.0,1.0],[490,2.0,25.0,25.0,0.0,0.0,0.0,1.0],[490,2.0,25.0,-675.0,0.0,-1.0,0.0,0.0],[519,2.0,25.0,-75.0,0.0,0.0,0.0,1.0],[519,2.0,25.0,-175.0,0.0,0.0,0.0,1.0],[519,2.0,25.0,-275.0,0.0,0.0,0.0,1.0],[519,2.0,25.0,-375.0,0.0,0.0,0.0,1.0],[519,2.0,25.0,-475.0,0.0,0.0,0.0,1.0],[519,2.0,25.0,-575.0,0.0,0.0,0.0,1.0],[524,7.0,0.0,-875.0,0.0,0.0,0.0,1.0],[516,7.0,0.0,-775.0,0.0,0.0,0.0,1.0],[687,2.0,10.0,250.0,0.0,0.0,0.0,1.0],[516,2.0,0.0,125.0,0.0,0.0,0.0,1.0],[524,7.0,0.0,-1175.0,0.0,0.0,0.0,1.0],[524,7.0,0.0,-1075.0,0.0,0.0,0.0,1.0],[509,10.91,5.0,-1260.08,0.0,-1.0,0.0,0.0],[691,7.0,35.0,-1725.0,0.0,0.0,0.0,1.0],[509,10.91,5.0,-1295.08,0.0,-1.0,0.0,0.0],[497,7.0,0.0,-1175.0,0.0,0.0,0.0,1.0],[528,7.0,0.0,-1200.0,0.0,0.0,0.0,1.0],[532,7.0,0.0,-1275.0,0.0,0.0,0.0,1.0],[695,7.0,0.0,-1375.0,0.0,0.0,0.0,1.0],[691,7.0,35.0,-1525.0,0.0,0.0,0.0,1.0],[516,2.0,0.0,325.0,0.0,0.0,0.0,1.0],[516,7.0,0.0,-1075.0,0.0,0.0,0.0,1.0],[649,-8.0,0.0,339.98,0.0,-1.0,0.0,0.0],[606,2.0,25.0,-355.0,0.0,0.0,0.0,1.0],[606,2.0,25.0,-550.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,2325.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,2650.0,0.0,0.0,0.0,1.0],[666,-400.0,2.0,3975.0,0.0,0.0,0.0,1.0],[666,-400.0,2.0,4575.0,0.0,0.0,0.0,1.0],[666,-400.0,2.0,4675.0,0.0,0.0,0.0,1.0],[666,-400.0,2.0,4375.0,0.0,0.0,0.0,1.0],[666,-400.0,2.0,4475.0,0.0,0.0,0.0,1.0],[666,-400.0,2.0,4075.0,0.0,0.0,0.0,1.0],[666,-400.0,2.0,4175.0,0.0,0.0,0.0,1.0],[666,-400.0,2.0,4275.0,0.0,0.0,0.0,1.0],[708,-440.0,2.0,4825.0,0.0,-1.0,0.0,0.0],[509,-390.0,10.0,3630.0,0.0,0.0,0.0,1.0],[509,-390.0,10.0,3570.0,0.0,0.0,0.0,1.0],[557,-400.0,0.0,3540.0,0.0,0.70711,0.0,0.70711],[524,-400.0,0.0,3850.0,0.0,-1.0,0.0,0.0],[516,-400.0,0.0,3850.0,0.0,-1.0,0.0,0.0],[516,-400.0,0.0,3650.0,0.0,-1.0,0.0,0.0],[524,-400.0,0.0,3650.0,0.0,-1.0,0.0,0.0],[524,-400.0,0.0,3750.0,0.0,-1.0,0.0,0.0],[516,-400.0,0.0,3750.0,0.0,-1.0,0.0,0.0],[516,-400.0,0.0,3550.0,0.0,-1.0,0.0,0.0],[524,-400.0,0.0,3350.0,0.0,-1.0,0.0,0.0],[516,-400.0,0.0,3250.0,0.0,-1.0,0.0,0.0],[516,-400.0,0.0,3350.0,0.0,-1.0,0.0,0.0],[717,-395.0,0.0,3325.0,0.0,0.0,0.0,1.0],[513,-400.0,0.0,3600.0,0.0,0.0,0.0,1.0],[513,-400.0,0.0,3600.0,0.0,-1.0,0.0,0.0],[721,-400.0,0.0,2850.0,0.0,0.0,0.0,1.0],[725,-400.0,0.0,2550.0,0.0,0.0,0.0,1.0],[524,-400.0,0.0,2650.0,0.0,-1.0,0.0,0.0],[516,-400.0,0.0,2650.0,0.0,-1.0,0.0,0.0],[516,-400.0,0.0,2750.0,0.0,-1.0,0.0,0.0],[524,-400.0,0.0,2750.0,0.0,-1.0,0.0,0.0],[516,-400.0,0.0,2950.0,0.0,-1.0,0.0,0.0],[524,-400.0,0.0,3250.0,0.0,-1.0,0.0,0.0],[516,-400.0,0.0,3150.0,0.0,-1.0,0.0,0.0],[524,-400.0,0.0,3150.0,0.0,-1.0,0.0,0.0],[524,-400.0,0.0,3050.0,0.0,-1.0,0.0,0.0],[516,-400.0,0.0,3050.0,0.0,-1.0,0.0,0.0],[524,-400.0,0.0,3450.0,0.0,-1.0,0.0,0.0],[524,-400.0,0.0,3550.0,0.0,-1.0,0.0,0.0],[516,-400.0,0.0,3450.0,0.0,-1.0,0.0,0.0],[547,-300.0,0.0,2850.0,0.0,0.70711,0.0,0.70711],[532,-100.0,0.0,2850.0,0.0,0.70711,0.0,0.70711],[734,-200.0,0.0,2850.0,0.0,0.70711,0.0,0.70711],[721,0.0,0.0,2850.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,2950.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,2950.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,3050.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,3050.0,0.0,0.0,0.0,1.0],[725,0.0,0.0,3150.0,0.0,-1.0,0.0,0.0],[570,-490.0,-40.0,4885.0,0.0,0.0,0.0,1.0],[570,-33.0,-45.0,-2338.0,0.0,0.0,0.0,1.0],[509,-415.0,10.0,3630.0,0.0,0.0,0.0,1.0],[509,-415.0,10.0,3570.0,0.0,0.0,0.0,1.0]]},{"key":"blade","name":"Blade's Edge","noart":57,"i":[[524,2.5,6.0,-2850.0,0.0,0.0,0.0,1.0],[524,2.5,6.0,-2750.0,0.0,0.0,0.0,1.0],[509,21.0,16.0,-3121.0,0.0,0.0,0.0,1.0],[509,21.0,16.0,-3081.0,0.0,0.0,0.0,1.0],[513,31.0,6.0,-3100.0,0.0,-1.0,0.0,0.0],[513,31.0,6.0,-3100.0,0.0,0.0,0.0,1.0],[497,3.0,6.0,-3150.0,0.0,0.0,0.0,1.0],[641,17.17,35.0,-3099.61,0.0,0.0,0.0,1.0],[641,6.17,35.0,-3099.61,0.0,-1.0,0.0,0.0],[743,18.18,35.0,-3100.15,0.0,0.0,0.0,1.0],[532,3.0,6.0,-3675.0,0.0,-1.0,0.0,0.0],[734,3.0,6.0,-3775.0,0.0,-1.0,0.0,0.0],[748,-37.0,-39.0,-4525.0,0.0,0.0,0.0,1.0],[695,3.0,6.0,-3875.0,0.0,0.0,0.0,1.0],[528,3.0,6.0,-3600.0,0.0,0.0,0.0,1.0],[570,-38.0,-38.5,-4638.0,0.0,0.0,0.0,1.0],[691,3.0,41.0,-4025.0,0.0,0.0,0.0,1.0],[752,-10.0,5.0,-3255.0,0.0,0.0,0.0,1.0],[455,3.0,6.0,-3450.0,0.0,0.0,0.0,1.0],[497,3.0,6.0,-3550.0,0.0,0.0,0.0,1.0],[497,3.0,6.0,-3450.0,0.0,0.0,0.0,1.0],[497,3.0,6.0,-3350.0,0.0,0.0,0.0,1.0],[497,3.0,6.0,-3250.0,0.0,0.0,0.0,1.0],[490,0.0,10.0,1120.0,0.0,0.0,0.0,1.0],[620,0.0,10.0,970.0,0.0,0.0,0.0,1.0],[598,12.0,0.0,-1802.5,0.0,0.0,0.0,1.0],[743,9.18,20.0,-701.15,0.0,0.0,0.0,1.0],[641,-2.83,20.0,-700.61,0.0,-1.0,0.0,0.0],[641,8.17,20.0,-700.61,0.0,0.0,0.0,1.0],[516,0.0,0.0,-700.0,0.0,0.0,0.0,1.0],[564,0.0,19.0,-550.0,0.0,0.0,0.0,1.0],[743,-2.25,20.0,-806.15,0.0,-1.0,0.0,0.0],[641,-1.23,20.0,-806.69,0.0,-1.0,0.0,0.0],[641,9.77,20.0,-806.69,0.0,0.0,0.0,1.0],[564,0.0,25.0,0.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,-400.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,-300.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-400.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-1400.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-1440.0,0.0,0.0,0.0,1.0],[509,9.11,20.0,-1387.44,0.0,-1.0,0.0,0.0],[629,-8.78,20.0,-1520.84,0.0,0.70711,0.0,0.70711],[629,-8.78,20.0,-1465.84,0.0,0.70711,0.0,0.70711],[524,0.0,0.0,-300.0,0.0,0.0,0.0,1.0],[760,0.0,0.0,-860.0,0.0,0.0,0.0,1.0],[760,0.0,0.0,-760.0,0.0,0.0,0.0,1.0],[760,0.0,0.0,-395.0,0.0,0.0,0.0,1.0],[760,0.0,0.0,-295.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,-900.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,0.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,-100.0,0.0,0.0,0.0,1.0],[598,12.0,0.0,-527.5,0.0,-1.0,0.0,0.0],[516,0.0,0.0,-1700.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,-1800.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,-1600.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,-1000.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,-800.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,-1200.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,-1100.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,-1300.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,-1400.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,-1500.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,-600.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,-500.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-1900.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-1800.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-1700.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-1600.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-1500.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-1300.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-1200.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-1100.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-1000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-900.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-800.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-700.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-600.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-500.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-200.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-100.0,0.0,0.0,0.0,1.0],[602,12.0,20.0,-1310.0,0.0,0.0,0.0,1.0],[602,12.0,20.0,-1220.0,0.0,0.0,0.0,1.0],[602,12.0,20.0,-1130.0,0.0,0.0,0.0,1.0],[602,12.0,20.0,-1040.0,0.0,0.0,0.0,1.0],[602,12.0,20.0,-950.0,0.0,0.0,0.0,1.0],[602,12.0,20.0,-1680.0,0.0,0.0,0.0,1.0],[602,12.0,20.0,-1590.0,0.0,0.0,0.0,1.0],[557,-13.0,0.0,-1050.0,0.0,0.0,0.0,1.0],[557,-13.0,0.0,-1150.0,0.0,0.0,0.0,1.0],[557,-13.0,0.0,-1250.0,0.0,0.0,0.0,1.0],[557,-13.0,0.0,-50.0,0.0,0.0,0.0,1.0],[509,9.11,20.0,-1447.44,0.0,-1.0,0.0,0.0],[524,0.0,0.0,-1500.0,0.0,0.0,0.0,1.0],[509,9.11,20.0,-1417.44,0.0,-1.0,0.0,0.0],[524,0.0,0.0,-1470.0,0.0,0.0,0.0,1.0],[564,-1.0,23.0,441.5,0.0,0.0,0.0,1.0],[564,0.0,23.0,150.5,0.0,0.0,0.0,1.0],[602,-14.0,10.0,430.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,400.0,0.0,0.0,0.0,1.0],[519,0.0,10.0,620.0,0.0,0.0,0.0,1.0],[519,0.0,10.0,720.0,0.0,0.0,0.0,1.0],[519,0.0,10.0,820.0,0.0,0.0,0.0,1.0],[760,16.0,0.0,413.0,0.0,0.0,0.0,1.0],[760,14.0,0.0,456.0,0.0,0.0,0.0,1.0],[490,0.0,10.0,520.0,0.0,-1.0,0.0,0.0],[516,0.0,0.0,500.0,0.0,0.0,0.0,1.0],[760,1.0,0.0,224.0,0.0,0.0,0.0,1.0],[513,0.0,0.0,250.0,0.0,0.0,0.0,1.0],[513,0.0,0.0,250.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,200.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,100.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,100.0,0.0,0.0,0.0,1.0],[557,-13.0,0.0,50.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,200.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,300.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,300.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,383.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,400.0,0.0,0.0,0.0,1.0],[602,-14.0,10.0,340.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,-1900.0,0.0,0.0,0.0,1.0],[666,-2.0,9.8,-2525.0,0.0,0.0,0.0,1.0],[752,-14.0,5.0,-2945.0,0.0,-1.0,0.0,0.0],[513,38.0,6.0,-2600.0,0.0,-1.0,0.0,0.0],[666,-2.0,9.8,-2325.0,0.0,0.0,0.0,1.0],[666,-2.0,9.8,-2225.0,0.0,0.0,0.0,1.0],[666,-2.0,9.8,-2125.0,0.0,0.0,0.0,1.0],[666,-2.0,9.8,-2425.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,-2000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-2000.0,0.0,0.0,0.0,1.0],[513,0.0,0.0,-2050.0,0.0,0.0,0.0,1.0],[649,-2.0,0.0,-1960.0,0.0,-1.0,0.0,0.0],[516,3.0,6.0,-2750.0,0.0,0.0,0.0,1.0],[516,3.0,6.0,-2650.0,0.0,0.0,0.0,1.0],[497,0.0,0.0,1400.0,0.0,0.0,0.0,1.0],[455,0.0,0.0,1350.0,0.0,0.0,0.0,1.0],[528,0.0,0.0,1450.0,0.0,-1.0,0.0,0.0],[695,0.0,0.0,1525.0,0.0,-1.0,0.0,0.0],[708,40.0,-45.0,2100.0,0.0,-1.0,0.0,0.0],[570,-9.0,-45.0,2148.0,0.0,0.0,0.0,1.0],[691,0.0,35.0,1675.0,0.0,-1.0,0.0,0.0],[497,0.0,0.0,1200.0,0.0,0.0,0.0,1.0],[497,0.0,0.0,1300.0,0.0,0.0,0.0,1.0],[752,-13.0,0.25,-550.0,0.0,0.0,0.0,1.0],[509,18.0,30.25,-363.0,0.0,0.0,0.0,1.0],[509,17.0,30.25,-326.0,0.0,0.0,0.0,1.0],[602,12.0,30.25,-105.0,0.0,0.0,0.0,1.0],[602,12.0,30.25,-15.0,0.0,0.0,0.0,1.0],[602,12.0,30.25,165.0,0.0,0.0,0.0,1.0],[602,12.0,30.25,75.0,0.0,0.0,0.0,1.0],[767,0.0,0.25,375.0,0.0,-1.0,0.0,0.0],[602,12.0,30.25,345.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,-200.0,0.0,0.0,0.0,1.0],[641,-6.41,30.25,-241.08,0.0,-1.0,0.0,0.0],[743,-7.42,30.25,-240.54,0.0,-1.0,0.0,0.0],[641,4.59,30.25,-241.08,0.0,0.0,0.0,1.0],[497,3.0,6.0,-3050.0,0.0,0.0,0.0,1.0],[497,3.0,6.0,-2950.0,0.0,0.0,0.0,1.0],[497,3.0,6.0,-2850.0,0.0,0.0,0.0,1.0]]},{"key":"lyzlane","name":"Lyz's Lane","noart":21,"i":[[564,0.0,7.0,350.0,0.0,0.0,0.0,1.0],[564,-5.0,7.0,550.0,0.0,0.0,0.0,1.0],[773,0.0,0.0,-1300.0,0.0,0.0,0.0,1.0],[509,-98.05,0.06,-1132.38,0.0,0.0,0.0,1.0],[509,-98.05,0.06,-1112.38,0.0,0.0,0.0,1.0],[777,-25.0,0.0,-1285.0,0.0,-1.0,0.0,0.0],[777,-25.0,0.0,-1215.0,0.0,0.0,0.0,1.0],[509,-15.0,5.0,-1280.0,0.0,0.0,0.0,1.0],[509,-15.0,5.0,-1220.0,0.0,-1.0,0.0,0.0],[773,0.0,0.0,-300.0,0.0,0.0,0.0,1.0],[773,0.0,0.0,-200.0,0.0,0.0,0.0,1.0],[773,0.0,0.0,-1200.0,0.0,0.0,0.0,1.0],[773,0.0,0.0,700.0,0.0,0.0,0.0,1.0],[773,0.0,0.0,200.0,0.0,0.0,0.0,1.0],[773,0.0,0.0,100.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,1190.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,1190.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,1090.0,0.0,0.0,0.0,1.0],[773,0.0,0.0,800.0,0.0,0.0,0.0,1.0],[773,0.0,0.0,900.0,0.0,0.0,0.0,1.0],[784,0.0,0.0,1000.0,0.0,0.0,0.0,1.0],[509,64.05,0.06,1037.38,0.0,-1.0,0.0,0.0],[509,64.05,0.06,1087.38,0.0,-1.0,0.0,0.0],[509,-54.05,0.06,1002.62,0.0,0.0,0.0,1.0],[509,-54.05,0.06,1052.62,0.0,0.0,0.0,1.0],[497,0.0,0.0,1090.0,0.0,0.0,0.0,1.0],[490,0.0,1.0,-1100.0,0.0,-1.0,0.0,0.0],[490,0.0,1.0,-400.0,0.0,0.0,0.0,1.0],[519,0.0,1.0,-1000.0,0.0,0.0,0.0,1.0],[519,0.0,1.0,-900.0,0.0,0.0,0.0,1.0],[519,0.0,1.0,-800.0,0.0,0.0,0.0,1.0],[519,0.0,1.0,-700.0,0.0,0.0,0.0,1.0],[519,0.0,1.0,-600.0,0.0,0.0,0.0,1.0],[519,0.0,1.0,-500.0,0.0,0.0,0.0,1.0],[606,0.0,1.0,-775.0,0.0,0.0,0.0,1.0],[606,0.0,1.0,-825.0,0.0,0.0,0.0,1.0],[606,10.0,1.0,-525.0,0.0,0.0,0.0,1.0],[606,-10.0,1.0,-635.0,0.0,0.0,0.0,1.0],[606,0.0,1.0,-1025.0,0.0,0.0,0.0,1.0],[773,0.0,0.0,0.0,0.0,0.0,0.0,1.0],[773,0.0,0.0,-100.0,0.0,0.0,0.0,1.0],[777,30.0,0.0,-50.0,0.0,0.0,0.0,1.0],[777,30.0,0.0,-140.0,0.0,-1.0,0.0,0.0],[629,15.0,1.0,-110.0,0.0,0.0,0.0,1.0],[629,15.0,1.0,-75.0,0.0,0.0,0.0,1.0],[791,0.0,1.0,-1500.0,0.0,0.0,0.0,1.0],[784,0.0,0.0,2000.0,0.0,-1.0,0.0,0.0],[791,0.0,1.0,2200.0,0.0,-1.0,0.0,0.0],[516,0.0,0.0,1690.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,1590.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,1590.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,1490.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,1490.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,1390.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,1390.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,1290.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,1290.0,0.0,0.0,0.0,1.0],[497,0.0,0.0,1890.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,1790.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,1790.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,1690.0,0.0,0.0,0.0,1.0],[773,0.0,0.0,600.0,0.0,0.0,0.0,1.0],[773,0.0,0.0,500.0,0.0,0.0,0.0,1.0],[777,25.0,0.0,1365.0,0.0,-1.0,0.0,0.0],[777,25.0,0.0,1415.0,0.0,0.0,0.0,1.0],[557,10.0,1.0,1390.0,0.0,-1.0,0.0,0.0],[557,10.0,1.0,1490.0,0.0,-1.0,0.0,0.0],[777,25.0,0.0,1515.0,0.0,0.0,0.0,1.0],[777,25.0,0.0,1465.0,0.0,-1.0,0.0,0.0],[557,-10.0,1.0,1790.0,0.0,0.0,0.0,1.0],[777,-25.0,0.0,1765.0,0.0,-1.0,0.0,0.0],[777,-25.0,0.0,1815.0,0.0,0.0,0.0,1.0],[773,0.0,0.0,400.0,0.0,0.0,0.0,1.0],[773,0.0,0.0,300.0,0.0,0.0,0.0,1.0],[509,-10.0,1.0,630.0,0.0,0.0,0.0,1.0],[509,-10.0,1.0,575.0,0.0,0.0,0.0,1.0],[509,-10.0,1.0,530.0,0.0,0.0,0.0,1.0],[509,-10.0,1.0,285.0,0.0,0.0,0.0,1.0],[509,-10.0,1.0,325.0,0.0,0.0,0.0,1.0],[509,-10.0,1.0,375.0,0.0,0.0,0.0,1.0],[797,0.0,1.0,2325.0,0.0,-1.0,0.0,0.0],[797,0.0,1.0,-1625.0,0.0,0.0,0.0,1.0],[570,0.0,-8.0,2435.0,0.0,0.0,0.0,1.0],[570,5.0,-8.0,-1735.0,0.0,0.0,0.0,1.0]]},{"key":"otto","name":"Berserker's Bahnzai","noart":40,"i":[[570,40.0,45.0,1935.0,0.0,0.0,0.0,1.0],[478,40.0,45.0,1820.0,0.0,-1.0,0.0,0.0],[532,0.0,0.0,1470.0,0.0,-1.0,0.0,0.0],[532,0.0,0.0,1370.0,0.0,-1.0,0.0,0.0],[532,0.0,0.0,1270.0,0.0,-1.0,0.0,0.0],[528,0.0,0.0,1195.0,0.0,-1.0,0.0,0.0],[773,0.0,0.0,1200.0,0.0,-1.0,0.0,0.0],[455,0.0,0.0,1095.0,0.0,-1.0,0.0,0.0],[773,0.0,0.0,1100.0,0.0,-1.0,0.0,0.0],[773,0.0,0.0,1000.0,0.0,-1.0,0.0,0.0],[649,-5.2,0.0,990.0,0.0,-1.0,0.0,0.0],[649,5.2,0.0,990.0,0.0,-1.0,0.0,0.0],[490,0.0,10.0,900.0,0.0,0.0,0.0,1.0],[519,0.0,10.0,800.0,0.0,-1.0,0.0,0.0],[641,0.0,10.0,800.0,0.0,-1.0,0.0,0.0],[519,0.0,10.0,700.0,0.0,-1.0,0.0,0.0],[641,0.0,10.0,700.0,0.0,0.0,0.0,1.0],[519,0.0,10.0,600.0,0.0,-1.0,0.0,0.0],[641,0.0,10.0,600.0,0.0,-1.0,0.0,0.0],[519,0.0,10.0,500.0,0.0,-1.0,0.0,0.0],[641,0.0,10.0,500.0,0.0,0.0,0.0,1.0],[490,0.0,10.0,400.0,0.0,-1.0,0.0,0.0],[649,5.2,0.0,310.0,0.0,0.0,0.0,1.0],[649,-5.2,0.0,310.0,0.0,0.0,0.0,1.0],[773,0.0,0.0,300.0,0.0,0.0,0.0,1.0],[513,-59.6,-9.15,230.0,0.0,0.70711,0.0,0.70711],[513,-59.6,-19.15,175.0,0.0,0.70711,0.0,0.70711],[513,-59.6,-9.15,170.0,0.0,0.70711,0.0,0.70711],[524,0.0,0.9,100.0,0.0,0.0,0.0,1.0],[653,0.0,0.9,200.0,0.0,0.0,0.0,1.0],[524,0.0,0.9,200.0,0.0,0.0,0.0,1.0],[513,59.6,-9.15,230.0,0.0,-0.70711,0.0,0.70711],[513,59.6,-19.15,175.0,0.0,-0.70711,0.0,0.70711],[513,59.6,-9.15,170.0,0.0,-0.70711,0.0,0.70711],[773,0.0,0.0,100.0,0.0,0.0,0.0,1.0],[598,-15.5,-5.0,132.5,0.0,-1.0,0.0,0.0],[598,15.5,-5.0,132.5,0.0,-1.0,0.0,0.0],[490,0.0,15.0,0.0,0.0,0.0,0.0,1.0],[519,0.0,15.0,-100.0,0.0,0.0,0.0,1.0],[519,0.0,15.0,-200.0,0.0,0.0,0.0,1.0],[519,0.0,15.0,-300.0,0.0,0.0,0.0,1.0],[519,0.0,15.0,-400.0,0.0,0.0,0.0,1.0],[519,0.0,15.0,-500.0,0.0,0.0,0.0,1.0],[519,0.0,15.0,-600.0,0.0,0.0,0.0,1.0],[519,0.0,15.0,-700.0,0.0,0.0,0.0,1.0],[519,0.0,15.0,-800.0,0.0,0.0,0.0,1.0],[519,0.0,15.0,-900.0,0.0,0.0,0.0,1.0],[519,0.0,15.0,-1000.0,0.0,0.0,0.0,1.0],[490,0.0,15.0,-1100.0,0.0,-1.0,0.0,0.0],[743,6.0,0.0,-85.0,0.0,-1.0,0.0,0.0],[641,0.5,15.0,-257.5,0.0,0.0,0.0,1.0],[641,0.5,15.0,-314.5,0.0,0.0,0.0,1.0],[641,0.5,15.0,-371.5,0.0,-1.0,0.0,0.0],[641,0.5,15.0,-428.5,0.0,0.0,0.0,1.0],[641,0.5,15.0,-485.5,0.0,0.0,0.0,1.0],[641,0.5,15.0,-542.5,0.0,-1.0,0.0,0.0],[641,0.5,15.0,-599.5,0.0,0.0,0.0,1.0],[641,0.5,15.0,-713.5,0.0,0.0,0.0,1.0],[641,0.5,15.0,-770.5,0.0,-1.0,0.0,0.0],[641,0.5,15.0,-827.5,0.0,0.0,0.0,1.0],[641,0.5,15.0,-884.5,0.0,0.0,0.0,1.0],[641,0.5,15.0,-941.5,0.0,-1.0,0.0,0.0],[641,0.5,15.0,-998.5,0.0,0.0,0.0,1.0],[641,0.5,15.0,-1055.5,0.0,0.0,0.0,1.0],[513,0.0,-10.0,-1150.0,0.0,-1.0,0.0,0.0],[509,10.0,0.0,-1175.0,0.0,0.0,0.0,1.0],[509,-10.0,0.0,-1175.0,0.0,0.0,0.0,1.0],[513,0.0,-10.0,-1200.0,0.0,-1.0,0.0,0.0],[509,10.0,0.0,-1225.0,0.0,0.0,0.0,1.0],[509,-10.0,0.0,-1225.0,0.0,0.0,0.0,1.0],[649,15.0,-10.0,-1290.0,0.0,0.0,0.0,1.0],[649,-15.0,-10.0,-1290.0,0.0,0.0,0.0,1.0],[662,0.0,-14.0,100.0,0.0,0.0,0.0,1.0],[662,0.0,-24.0,0.0,0.0,0.0,0.0,1.0],[666,0.0,-34.0,-100.0,0.0,0.0,0.0,1.0],[666,0.0,-34.0,-200.0,0.0,0.0,0.0,1.0],[666,0.0,-34.0,-300.0,0.0,0.0,0.0,1.0],[666,0.0,-34.0,-400.0,0.0,0.0,0.0,1.0],[666,0.0,-34.0,-500.0,0.0,0.0,0.0,1.0],[666,0.0,-34.0,-600.0,0.0,0.0,0.0,1.0],[666,0.0,-34.0,-700.0,0.0,0.0,0.0,1.0],[666,0.0,-34.0,-800.0,0.0,0.0,0.0,1.0],[666,0.0,-34.0,-900.0,0.0,0.0,0.0,1.0],[666,0.0,-34.0,-1000.0,0.0,0.0,0.0,1.0],[666,0.0,-34.0,-1100.0,0.0,0.0,0.0,1.0],[666,0.0,-34.0,-1200.0,0.0,0.0,0.0,1.0],[662,0.0,-24.0,-1300.0,0.0,-1.0,0.0,0.0],[524,0.0,-9.0,-1400.0,0.0,0.0,0.0,1.0],[653,0.0,-9.0,-1400.0,0.0,-1.0,0.0,0.0],[524,0.0,-9.0,-1500.0,0.0,0.0,0.0,1.0],[777,15.0,-10.0,-1650.0,0.0,-0.70711,0.0,0.70711],[509,13.0,-5.0,-1650.0,0.0,0.0,0.0,1.0],[777,-15.0,-10.0,-1800.0,0.0,0.70711,0.0,0.70711],[509,-13.0,-5.0,-1800.0,0.0,0.0,0.0,1.0],[777,15.0,-10.0,-2100.0,0.0,-0.70711,0.0,0.70711],[509,13.0,-5.0,-2100.0,0.0,-1.0,0.0,0.0],[777,-15.0,-10.0,-1950.0,0.0,0.70711,0.0,0.70711],[509,-13.0,-5.0,-1950.0,0.0,0.0,0.0,1.0],[777,15.0,-10.0,-2250.0,0.0,-0.70711,0.0,0.70711],[509,13.0,-5.0,-2250.0,0.0,-1.0,0.0,0.0],[777,-15.0,-10.0,-2400.0,0.0,0.70711,0.0,0.70711],[509,-13.0,-5.0,-2400.0,0.0,0.0,0.0,1.0],[777,15.0,-10.0,-2550.0,0.0,-0.70711,0.0,0.70711],[509,13.0,-5.0,-2550.0,0.0,-1.0,0.0,0.0],[777,-15.0,-10.0,-2700.0,0.0,0.70711,0.0,0.70711],[509,-13.0,-5.0,-2700.0,0.0,0.0,0.0,1.0],[773,0.0,-10.0,-1200.0,0.0,0.0,0.0,1.0],[773,0.0,-10.0,-1300.0,0.0,0.0,0.0,1.0],[773,0.0,-10.0,-1500.0,0.0,0.0,0.0,1.0],[773,0.0,-10.0,-1600.0,0.0,0.0,0.0,1.0],[773,0.0,-10.0,-1700.0,0.0,0.0,0.0,1.0],[773,0.0,-10.0,-1800.0,0.0,0.0,0.0,1.0],[773,0.0,-10.0,-1900.0,0.0,0.0,0.0,1.0],[773,0.0,-10.0,-2000.0,0.0,0.0,0.0,1.0],[773,0.0,-10.0,-2100.0,0.0,0.0,0.0,1.0],[773,0.0,-10.0,-2200.0,0.0,0.0,0.0,1.0],[773,0.0,-10.0,-2300.0,0.0,0.0,0.0,1.0],[773,0.0,-10.0,-2400.0,0.0,0.0,0.0,1.0],[773,0.0,-10.0,-2500.0,0.0,0.0,0.0,1.0],[773,0.0,-10.0,-2600.0,0.0,0.0,0.0,1.0],[773,0.0,-10.0,-2700.0,0.0,0.0,0.0,1.0],[773,0.0,-10.0,-2800.0,0.0,0.0,0.0,1.0],[773,0.0,-10.0,-2900.0,0.0,0.0,0.0,1.0],[773,0.0,-10.0,-3000.0,0.0,0.0,0.0,1.0],[803,0.0,15.0,-1190.0,0.0,0.0,0.0,1.0],[803,0.0,15.0,-1270.0,0.0,0.0,0.0,1.0],[803,0.0,15.0,-1350.0,0.0,0.0,0.0,1.0],[803,0.0,15.0,-1430.0,0.0,0.0,0.0,1.0],[803,0.0,15.0,-1510.0,0.0,0.0,0.0,1.0],[803,0.0,15.0,-1590.0,0.0,0.0,0.0,1.0],[803,0.0,15.0,-1670.0,0.0,0.0,0.0,1.0],[803,0.0,15.0,-1750.0,0.0,0.0,0.0,1.0],[803,0.0,15.0,-1830.0,0.0,0.0,0.0,1.0],[803,0.0,15.0,-1910.0,0.0,0.0,0.0,1.0],[803,0.0,15.0,-1990.0,0.0,0.0,0.0,1.0],[803,0.0,15.0,-2070.0,0.0,0.0,0.0,1.0],[803,0.0,15.0,-2150.0,0.0,0.0,0.0,1.0],[803,0.0,15.0,-2230.0,0.0,0.0,0.0,1.0],[803,0.0,15.0,-2310.0,0.0,0.0,0.0,1.0],[803,0.0,15.0,-2390.0,0.0,0.0,0.0,1.0],[803,0.0,15.0,-2470.0,0.0,0.0,0.0,1.0],[803,0.0,15.0,-2550.0,0.0,0.0,0.0,1.0],[803,0.0,15.0,-2630.0,0.0,0.0,0.0,1.0],[803,0.0,15.0,-2710.0,0.0,0.0,0.0,1.0],[803,0.0,15.0,-2790.0,0.0,0.0,0.0,1.0],[803,0.0,15.0,-2870.0,0.0,0.0,0.0,1.0],[564,0.0,-11.0,-1425.0,0.0,0.0,0.0,1.0],[564,0.0,-11.0,-1725.0,0.0,0.0,0.0,1.0],[564,0.0,-11.0,-1875.0,0.0,0.0,0.0,1.0],[564,0.0,-11.0,-2025.0,0.0,0.0,0.0,1.0],[564,0.0,-11.0,-2175.0,0.0,0.0,0.0,1.0],[564,0.0,-11.0,-2325.0,0.0,0.0,0.0,1.0],[564,0.0,-11.0,-2475.0,0.0,0.0,0.0,1.0],[564,0.0,-11.0,-2625.0,0.0,0.0,0.0,1.0],[564,0.0,-11.0,-2775.0,0.0,0.0,0.0,1.0],[752,0.0,-15.0,-3015.0,0.0,0.0,0.0,1.0],[773,0.0,-10.0,-3100.0,0.0,0.0,0.0,1.0],[455,0.0,-10.0,-3150.0,0.0,0.0,0.0,1.0],[528,0.0,-10.0,-3199.4,0.0,0.0,0.0,1.0],[773,0.0,-10.0,-3200.0,0.0,0.0,0.0,1.0],[532,0.0,-10.0,-3274.4,0.0,0.0,0.0,1.0],[625,-40.0,-60.0,-3724.4,0.0,0.0,0.0,1.0],[570,-40.0,-60.0,-3837.65,0.0,-1.0,0.0,0.0]]},{"key":"frstrm","name":"Firestorm's Fury","noart":206,"i":[[570,40.0,45.0,1935.0,0.0,0.0,0.0,1.0],[478,40.0,45.0,1820.0,0.0,-1.0,0.0,0.0],[532,0.0,0.0,1470.0,0.0,-1.0,0.0,0.0],[532,0.0,0.0,1370.0,0.0,-1.0,0.0,0.0],[532,0.0,0.0,1270.0,0.0,-1.0,0.0,0.0],[528,0.0,0.0,1195.0,0.0,-1.0,0.0,0.0],[497,0.0,0.0,1145.0,0.0,-1.0,0.0,0.0],[826,0.0,50.0,1145.0,-1.0,0.0,0.0,0.0],[455,0.0,0.0,1095.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,1045.0,0.0,-1.0,0.0,0.0],[833,0.0,50.0,945.0,0.0,0.0,-1.0,0.0],[497,0.0,0.0,1045.0,0.0,-1.0,0.0,0.0],[826,0.0,50.0,1045.0,-1.0,0.0,0.0,0.0],[497,0.0,0.0,945.0,0.0,-1.0,0.0,0.0],[826,0.0,50.0,945.0,-1.0,0.0,0.0,0.0],[649,15.0,0.0,935.0,0.0,-1.0,0.0,0.0],[649,-15.0,0.0,935.0,0.0,-1.0,0.0,0.0],[490,0.0,10.0,845.0,0.0,0.0,0.0,1.0],[519,0.0,10.0,745.0,0.0,0.0,0.0,1.0],[519,0.0,10.0,645.0,0.0,0.0,0.0,1.0],[519,0.0,10.0,545.0,0.0,0.0,0.0,1.0],[606,-6.99,10.0,511.98,0.0,0.0,0.0,1.0],[519,0.0,10.0,445.0,0.0,0.0,0.0,1.0],[519,0.0,10.0,345.0,0.0,0.0,0.0,1.0],[606,6.99,10.0,285.0,0.0,0.0,0.0,1.0],[519,0.0,10.0,245.0,0.0,0.0,0.0,1.0],[519,0.0,10.0,145.0,0.0,0.0,0.0,1.0],[519,0.0,10.0,45.0,0.0,0.0,0.0,1.0],[519,0.0,10.0,-55.0,0.0,0.0,0.0,1.0],[519,0.0,10.0,-155.0,0.0,-1.0,0.0,0.0],[519,0.0,10.0,-255.0,0.0,-1.0,0.0,0.0],[606,-6.99,10.0,-325.0,0.0,0.0,0.0,1.0],[519,0.0,10.0,-355.0,0.0,-1.0,0.0,0.0],[519,0.0,10.0,-455.0,0.0,-1.0,0.0,0.0],[606,6.99,10.0,-490.0,0.0,0.0,0.0,1.0],[490,0.0,10.0,-555.0,0.0,-1.0,0.0,0.0],[649,15.0,0.0,-645.0,0.0,0.0,0.0,1.0],[649,-15.0,0.0,-645.0,0.0,0.0,0.0,1.0],[497,0.0,0.0,-650.0,0.0,0.0,0.0,1.0],[826,0.0,50.0,-650.0,-1.0,0.0,0.0,0.0],[497,0.0,0.0,-750.0,0.0,0.0,0.0,1.0],[826,0.0,50.0,-750.0,-1.0,0.0,0.0,0.0],[524,0.0,0.0,-750.0,0.0,0.0,0.0,1.0],[833,0.0,50.0,-750.0,0.0,0.0,-1.0,0.0],[497,0.0,0.0,-850.0,0.0,0.0,0.0,1.0],[826,0.0,50.0,-850.0,-1.0,0.0,0.0,0.0],[524,0.0,0.0,-850.0,0.0,0.0,0.0,1.0],[833,0.0,50.0,-850.0,0.0,0.0,-1.0,0.0],[497,0.0,0.0,-950.0,0.0,0.0,0.0,1.0],[826,0.0,50.0,-950.0,-1.0,0.0,0.0,0.0],[524,0.0,0.0,-950.0,0.0,0.0,0.0,1.0],[833,0.0,50.0,-950.0,0.0,0.0,-1.0,0.0],[497,0.0,0.0,-1050.0,0.0,0.0,0.0,1.0],[826,0.0,50.0,-1050.0,-1.0,0.0,0.0,0.0],[524,0.0,0.0,-1050.0,0.0,0.0,0.0,1.0],[833,0.0,50.0,-1050.0,0.0,0.0,-1.0,0.0],[528,0.0,0.0,-1100.0,0.0,0.0,0.0,1.0],[649,9.8,4.0,-1159.0,0.0,-1.0,0.0,0.0],[532,0.0,0.0,-1175.0,0.0,0.0,0.0,1.0],[532,0.0,0.0,-1275.0,0.0,0.0,0.0,1.0],[821,0.0,0.0,-1375.0,0.0,-1.0,0.0,0.0],[532,0.0,0.0,-1475.0,0.0,0.0,0.0,1.0],[564,0.0,5.0,-1475.0,0.0,0.0,0.0,1.0],[564,0.0,15.0,-1575.0,0.0,0.0,0.0,1.0],[532,0.0,0.0,-1575.0,0.0,0.0,0.0,1.0],[821,0.0,0.0,-1675.0,0.0,0.0,0.0,1.0],[532,0.0,0.0,-1775.0,0.0,0.0,0.0,1.0],[532,0.0,0.0,-1875.0,0.0,0.0,0.0,1.0],[649,-9.8,4.0,-1893.0,0.0,0.0,0.0,1.0],[528,0.0,0.0,-1950.0,0.0,-1.0,0.0,0.0],[516,0.0,0.0,-2000.0,0.0,0.0,0.0,1.0],[826,0.0,50.0,-2000.0,-1.0,0.0,0.0,0.0],[516,0.0,0.0,-2100.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-2100.0,0.0,0.0,0.0,1.0],[833,0.0,50.0,-2100.0,0.0,0.0,-1.0,0.0],[826,0.0,50.0,-2100.0,-1.0,0.0,0.0,0.0],[833,0.0,50.0,-2200.0,0.0,0.0,-1.0,0.0],[826,0.0,50.0,-2200.0,-1.0,0.0,0.0,0.0],[784,0.0,0.0,-2200.0,0.0,0.0,0.0,1.0],[833,0.0,50.0,-2300.0,0.0,0.0,-1.0,0.0],[826,0.0,50.0,-2300.0,-1.0,0.0,0.0,0.0],[784,0.0,0.0,-2300.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,-2500.0,0.0,0.0,0.0,1.0],[833,0.0,50.0,-2400.0,0.0,0.0,-1.0,0.0],[826,0.0,50.0,-2400.0,-1.0,0.0,0.0,0.0],[516,0.0,0.0,-2400.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,-2500.0,0.0,0.0,0.0,1.0],[833,0.0,50.0,-2500.0,0.0,0.0,-1.0,0.0],[826,0.0,50.0,-2500.0,-1.0,0.0,0.0,0.0],[833,0.0,50.0,-2600.0,0.0,0.0,-1.0,0.0],[784,0.0,0.0,-2600.0,0.0,0.0,0.0,1.0],[826,0.0,50.0,-2600.0,-1.0,0.0,0.0,0.0],[833,0.0,50.0,-2700.0,0.0,0.0,-1.0,0.0],[826,0.0,50.0,-2700.0,-1.0,0.0,0.0,0.0],[784,0.0,0.0,-2700.0,0.0,-1.0,0.0,0.0],[833,0.0,50.0,-2800.0,0.0,0.0,-1.0,0.0],[826,0.0,50.0,-2800.0,-1.0,0.0,0.0,0.0],[516,0.0,0.0,-2800.0,0.0,0.0,0.0,1.0],[826,0.0,50.0,-2900.0,-1.0,0.0,0.0,0.0],[524,0.0,0.0,-2900.0,0.0,0.0,0.0,1.0],[833,0.0,50.0,-2900.0,0.0,0.0,-1.0,0.0],[516,0.0,0.0,-2900.0,0.0,0.0,0.0,1.0],[826,0.0,50.0,-3000.0,-1.0,0.0,0.0,0.0],[524,0.0,0.0,-3000.0,0.0,0.0,0.0,1.0],[833,0.0,50.0,-3000.0,0.0,0.0,-1.0,0.0],[516,0.0,0.0,-3000.0,0.0,0.0,0.0,1.0],[826,0.0,50.0,-3100.0,-1.0,0.0,0.0,0.0],[524,0.0,0.0,-3100.0,0.0,0.0,0.0,1.0],[833,0.0,50.0,-3100.0,0.0,0.0,-1.0,0.0],[497,0.0,0.0,-3100.0,0.0,0.0,0.0,1.0],[826,0.0,50.0,-3100.0,-1.0,0.0,0.0,0.0],[455,0.0,0.0,-3150.0,0.0,0.0,0.0,1.0],[528,0.0,0.0,-3199.4,0.0,0.0,0.0,1.0],[497,0.0,0.0,-3200.0,0.0,0.0,0.0,1.0],[826,0.0,50.0,-3200.0,-1.0,0.0,0.0,0.0],[532,0.0,0.0,-3274.4,0.0,0.0,0.0,1.0],[532,0.0,0.0,-3374.4,0.0,0.0,0.0,1.0],[478,-40.0,45.0,-3724.4,0.0,0.0,0.0,1.0],[570,-40.0,45.0,-3837.65,0.0,-1.0,0.0,0.0]]},{"key":"burnt","name":"Burnt Cookies","noart":133,"i":[[509,45.0,9.0,2365.0,0.0,0.0,0.0,1.0],[777,45.0,4.0,2365.0,0.0,0.0,0.0,1.0],[509,-45.0,9.0,2365.0,0.0,0.70711,0.0,0.70711],[777,-45.0,4.0,2365.0,0.0,0.0,0.0,1.0],[557,0.0,5.0,2485.0,0.0,0.70711,0.0,0.70711],[557,0.0,5.0,2515.0,0.0,-0.70711,0.0,0.70711],[557,15.0,5.0,2500.0,0.0,0.0,0.0,1.0],[557,-15.0,5.0,2500.0,0.0,-1.0,0.0,0.0],[760,0.0,5.0,2500.0,0.0,0.0,0.0,1.0],[760,0.0,40.0,2500.0,0.0,0.0,0.0,1.0],[842,0.0,5.0,2500.0,0.0,0.0,0.0,1.0],[447,0.0,5.1,2600.0,0.0,0.0,0.0,1.0],[858,0.0,5.1,2600.0,0.0,0.0,0.0,1.0],[691,0.0,5.0,2250.0,0.0,0.0,0.0,1.0],[497,0.0,0.0,2100.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,2000.0,0.0,0.0,0.0,1.0],[564,0.0,3.0,2050.0,0.0,0.0,0.0,1.0],[852,10.0,0.0,1970.0,0.0,-1.0,0.0,0.0],[852,-10.0,0.0,1970.0,0.0,-1.0,0.0,0.0],[497,0.0,0.0,2000.0,0.0,0.0,0.0,1.0],[490,0.0,10.0,1900.0,0.0,0.0,0.0,1.0],[606,-7.0,10.0,1800.0,0.0,0.0,0.0,1.0],[519,0.0,10.0,1800.0,0.0,0.0,0.0,1.0],[519,0.0,10.0,1700.0,0.0,0.0,0.0,1.0],[519,0.0,10.0,1600.0,0.0,0.0,0.0,1.0],[606,7.0,10.0,1500.0,0.0,0.0,0.0,1.0],[519,0.0,10.0,1500.0,0.0,0.0,0.0,1.0],[519,0.0,10.0,1400.0,0.0,0.0,0.0,1.0],[606,-7.0,10.0,1300.0,0.0,0.0,0.0,1.0],[519,0.0,10.0,1300.0,0.0,0.0,0.0,1.0],[519,0.0,10.0,1200.0,0.0,0.0,0.0,1.0],[519,0.0,10.0,1100.0,0.0,0.0,0.0,1.0],[606,7.0,10.0,1000.0,0.0,0.0,0.0,1.0],[519,0.0,10.0,1000.0,0.0,0.0,0.0,1.0],[490,0.0,10.0,900.0,0.0,-1.0,0.0,0.0],[856,0.0,-10.0,795.0,0.0,0.0,0.0,1.0],[516,0.0,-5.0,893.0,0.0,0.0,0.0,1.0],[524,0.0,-5.0,793.0,0.0,0.0,0.0,1.0],[516,0.0,-5.0,793.0,0.0,0.0,0.0,1.0],[524,0.0,-5.0,693.0,0.0,0.0,0.0,1.0],[516,0.0,-5.0,693.0,0.0,0.0,0.0,1.0],[524,0.0,-5.0,593.0,0.0,0.0,0.0,1.0],[516,0.0,-5.0,593.0,0.0,0.0,0.0,1.0],[524,0.0,-5.0,493.0,0.0,0.0,0.0,1.0],[516,0.0,-5.0,493.0,0.0,0.0,0.0,1.0],[524,0.0,-5.0,393.0,0.0,0.0,0.0,1.0],[594,0.0,-5.0,343.0,0.0,0.0,0.0,1.0],[839,0.0,-5.0,143.0,0.0,0.0,0.0,1.0],[524,0.0,-5.0,-7.0,0.0,0.0,0.0,1.0],[497,0.0,-5.0,0.0,0.0,0.0,0.0,1.0],[524,0.0,-5.0,-93.0,0.0,0.0,0.0,1.0],[839,0.0,-5.0,-143.0,0.0,0.0,0.0,1.0],[594,0.0,-5.0,-343.0,0.0,0.0,0.0,1.0],[524,0.0,-5.0,-493.0,0.0,0.0,0.0,1.0],[516,0.0,-5.0,-493.0,0.0,0.0,0.0,1.0],[524,0.0,-5.0,-593.0,0.0,0.0,0.0,1.0],[516,0.0,-5.0,-593.0,0.0,0.0,0.0,1.0],[524,0.0,-5.0,-693.0,0.0,0.0,0.0,1.0],[516,0.0,-5.0,-693.0,0.0,0.0,0.0,1.0],[524,0.0,-5.0,-793.0,0.0,0.0,0.0,1.0],[516,0.0,-5.0,-793.0,0.0,0.0,0.0,1.0],[524,0.0,-5.0,-893.0,0.0,0.0,0.0,1.0],[516,0.0,-5.0,-893.0,0.0,0.0,0.0,1.0],[856,-10.0,-10.0,-795.0,0.0,-1.0,0.0,0.0],[856,10.0,-10.0,-795.0,0.0,-1.0,0.0,0.0],[616,15.0,-5.0,343.0,0.0,0.0,0.0,1.0],[616,-15.0,-5.0,343.0,0.0,0.0,0.0,1.0],[616,15.0,-5.0,243.0,0.0,0.0,0.0,1.0],[616,-15.0,-5.0,243.0,0.0,0.0,0.0,1.0],[616,15.0,-5.0,143.0,0.0,0.0,0.0,1.0],[616,-15.0,-5.0,143.0,0.0,0.0,0.0,1.0],[616,15.0,-5.0,-143.0,0.0,0.0,0.0,1.0],[616,-15.0,-5.0,-143.0,0.0,0.0,0.0,1.0],[616,15.0,-5.0,-243.0,0.0,0.0,0.0,1.0],[616,-15.0,-5.0,-243.0,0.0,0.0,0.0,1.0],[616,15.0,-5.0,-343.0,0.0,0.0,0.0,1.0],[616,-15.0,-5.0,-343.0,0.0,0.0,0.0,1.0],[602,0.0,30.0,240.0,0.0,0.0,0.0,1.0],[602,0.0,30.0,160.0,0.0,0.0,0.0,1.0],[602,0.0,30.0,80.0,0.0,0.0,0.0,1.0],[602,0.0,30.0,0.0,0.0,0.0,0.0,1.0],[602,0.0,30.0,-80.0,0.0,0.0,0.0,1.0],[602,0.0,30.0,-160.0,0.0,0.0,0.0,1.0],[602,0.0,30.0,-240.0,0.0,0.0,0.0,1.0],[490,0.0,10.0,-900.0,0.0,0.0,0.0,1.0],[519,0.0,10.0,-1000.0,0.0,0.0,0.0,1.0],[606,-7.0,10.0,-1000.0,0.0,0.0,0.0,1.0],[519,0.0,10.0,-1100.0,0.0,0.0,0.0,1.0],[519,0.0,10.0,-1200.0,0.0,0.0,0.0,1.0],[519,0.0,10.0,-1300.0,0.0,0.0,0.0,1.0],[606,7.0,10.0,-1300.0,0.0,0.0,0.0,1.0],[519,0.0,10.0,-1400.0,0.0,0.0,0.0,1.0],[519,0.0,10.0,-1500.0,0.0,0.0,0.0,1.0],[606,-7.0,10.0,-1500.0,0.0,0.0,0.0,1.0],[519,0.0,10.0,-1600.0,0.0,0.0,0.0,1.0],[519,0.0,10.0,-1700.0,0.0,0.0,0.0,1.0],[519,0.0,10.0,-1800.0,0.0,0.0,0.0,1.0],[606,7.0,10.0,-1800.0,0.0,0.0,0.0,1.0],[490,0.0,10.0,-1900.0,0.0,-1.0,0.0,0.0],[497,0.0,0.0,-2000.0,0.0,0.0,0.0,1.0],[852,0.0,0.0,-1970.0,0.0,0.0,0.0,1.0],[509,45.0,9.0,-2365.0,0.0,0.0,0.0,1.0],[777,45.0,4.0,-2365.0,0.0,-1.0,0.0,0.0],[509,-45.0,9.0,-2365.0,0.0,0.0,0.0,1.0],[777,-45.0,4.0,-2365.0,0.0,-1.0,0.0,0.0],[557,0.0,5.0,-2485.0,0.0,-0.70711,0.0,0.70711],[557,0.0,5.0,-2515.0,0.0,0.70711,0.0,0.70711],[497,0.0,0.0,-2100.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-2100.0,0.0,0.0,0.0,1.0],[564,0.0,3.0,-2050.0,0.0,0.0,0.0,1.0],[557,-15.0,5.0,-2500.0,0.0,-1.0,0.0,0.0],[557,15.0,5.0,-2500.0,0.0,0.0,0.0,1.0],[760,0.0,5.0,-2500.0,0.0,0.0,0.0,1.0],[760,0.0,40.0,-2500.0,0.0,0.0,0.0,1.0],[842,0.0,5.0,-2500.0,0.0,-1.0,0.0,0.0],[447,0.0,5.0,-2600.0,0.0,0.0,0.0,1.0],[858,0.0,5.0,-2600.0,0.0,0.0,0.0,1.0],[691,0.0,5.0,-2250.0,0.0,0.0,0.0,1.0]]},{"key":"brewers","name":"Brewer's Bane","noart":387,"i":[[455,0.0,-41.0,1950.0,0.0,0.0,0.0,1.0],[478,40.0,4.0,2475.0,0.0,-1.0,0.0,0.0],[528,0.0,-41.0,2150.0,0.0,-1.0,0.0,0.0],[570,40.0,4.0,2585.0,0.0,0.0,0.0,1.0],[524,0.0,-41.0,2000.0,0.0,0.0,0.0,1.0],[524,0.0,-41.0,1900.0,0.0,0.0,0.0,1.0],[833,0.0,16.0,2000.0,0.0,0.0,-1.0,0.0],[833,0.0,16.0,1900.0,0.0,0.0,-1.0,0.0],[497,0.0,-41.0,2100.0,0.0,0.0,0.0,1.0],[497,0.0,-41.0,2000.0,0.0,0.0,0.0,1.0],[497,0.0,-41.0,1900.0,0.0,0.0,0.0,1.0],[826,0.0,16.0,2100.0,0.0,0.0,-1.0,0.0],[826,0.0,16.0,2000.0,0.0,0.0,-1.0,0.0],[826,0.0,16.0,1900.0,0.0,0.0,-1.0,0.0],[743,40.0,-64.0,1880.0,0.0,0.0,0.0,1.0],[767,-9.0,-30.0,1750.0,0.0,-1.0,0.0,0.0],[602,-9.0,0.0,1640.0,0.0,0.0,0.0,1.0],[602,-9.0,0.0,1560.0,0.0,0.0,0.0,1.0],[602,-9.0,0.0,1480.0,0.0,0.0,0.0,1.0],[602,-9.0,0.0,1400.0,0.0,0.0,0.0,1.0],[602,-9.0,0.0,1320.0,0.0,0.0,0.0,1.0],[602,-9.0,0.0,1240.0,0.0,0.0,0.0,1.0],[602,-9.0,0.0,1160.0,0.0,0.0,0.0,1.0],[602,-9.0,0.0,1080.0,0.0,0.0,0.0,1.0],[602,-9.0,0.0,1000.0,0.0,0.0,0.0,1.0],[602,-9.0,0.0,920.0,0.0,0.0,0.0,1.0],[602,-9.0,0.0,840.0,0.0,0.0,0.0,1.0],[602,-9.0,0.0,760.0,0.0,0.0,0.0,1.0],[602,-9.0,0.0,680.0,0.0,0.0,0.0,1.0],[541,0.0,-35.0,1800.0,0.0,-1.0,0.0,0.0],[532,0.0,-35.0,1700.0,0.0,0.0,0.0,1.0],[532,0.0,-35.0,1600.0,0.0,0.0,0.0,1.0],[564,0.0,-25.0,1600.0,0.0,0.0,0.0,1.0],[532,0.0,-35.0,1500.0,0.0,0.0,0.0,1.0],[541,0.0,-35.0,1400.0,0.0,-1.0,0.0,0.0],[532,0.0,-35.0,1300.0,0.0,0.0,0.0,1.0],[532,0.0,-35.0,1200.0,0.0,0.0,0.0,1.0],[564,0.0,-25.0,1200.0,0.0,0.0,0.0,1.0],[541,0.0,-35.0,1100.0,0.0,-1.0,0.0,0.0],[532,0.0,-35.0,1000.0,0.0,0.0,0.0,1.0],[532,0.0,-35.0,900.0,0.0,0.0,0.0,1.0],[564,0.0,-25.0,900.0,0.0,0.0,0.0,1.0],[541,0.0,-35.0,800.0,0.0,-1.0,0.0,0.0],[532,0.0,-35.0,700.0,0.0,0.0,0.0,1.0],[532,0.0,-35.0,600.0,0.0,0.0,0.0,1.0],[509,8.0,-30.0,550.0,0.0,0.0,0.0,1.0],[564,0.0,-22.0,575.0,0.0,0.0,0.0,1.0],[743,-14.9,-40.0,650.0,0.0,0.0,0.0,1.0],[743,-14.9,-20.0,650.0,0.0,0.0,0.0,1.0],[743,40.0,-64.0,520.0,0.0,0.0,0.0,1.0],[852,0.0,-40.0,470.0,0.0,0.0,0.0,1.0],[773,0.0,-41.0,500.0,0.0,0.0,0.0,1.0],[773,0.0,-41.0,400.0,0.0,0.0,0.0,1.0],[773,0.0,-41.0,300.0,0.0,0.0,0.0,1.0],[773,0.0,-41.0,200.0,0.0,0.0,0.0,1.0],[773,0.0,-41.0,100.0,0.0,0.0,0.0,1.0],[826,0.0,16.0,500.0,0.0,0.0,-1.0,0.0],[826,0.0,16.0,400.0,0.0,0.0,-1.0,0.0],[826,0.0,16.0,300.0,0.0,0.0,-1.0,0.0],[826,0.0,16.0,200.0,0.0,0.0,-1.0,0.0],[826,0.0,16.0,100.0,0.0,0.0,-1.0,0.0],[833,0.0,16.0,400.0,0.0,0.0,-1.0,0.0],[833,0.0,16.0,300.0,0.0,0.0,-1.0,0.0],[833,0.0,16.0,200.0,0.0,0.0,-1.0,0.0],[833,0.0,16.0,100.0,0.0,0.0,-1.0,0.0],[509,-10.0,-36.0,200.0,0.0,0.0,0.0,1.0],[743,40.0,-70.0,200.0,0.0,0.0,0.0,1.0],[564,0.0,-30.0,210.0,0.0,0.0,0.0,1.0],[852,10.0,-46.0,250.0,0.0,-1.0,0.0,0.0],[852,10.0,-46.0,150.0,0.0,0.0,0.0,1.0],[606,75.0,0.0,-125.0,0.0,0.70711,0.0,0.70711],[606,-75.0,0.0,-125.0,0.0,0.0,0.0,1.0],[606,75.0,0.0,-275.0,0.0,-0.70711,0.0,0.70711],[606,-75.0,0.0,-275.0,0.0,-1.0,0.0,0.0],[606,75.0,0.0,-325.0,0.0,0.70711,0.0,0.70711],[606,125.0,0.0,-375.0,0.0,0.0,0.0,1.0],[606,175.0,0.0,-425.0,0.0,-0.70711,0.0,0.70711],[606,225.0,0.0,-475.0,0.0,-1.0,0.0,0.0],[606,275.0,0.0,-525.0,0.0,0.0,0.0,1.0],[606,400.0,0.0,-600.0,0.0,0.0,0.0,1.0],[606,500.0,0.0,-600.0,0.0,0.0,0.0,1.0],[509,300.0,0.0,-500.0,0.0,0.0,0.0,1.0],[509,275.0,0.0,-425.0,0.0,0.0,0.0,1.0],[509,200.0,0.0,-400.0,0.0,0.0,0.0,1.0],[509,175.0,0.0,-325.0,0.0,0.0,0.0,1.0],[509,100.0,0.0,-300.0,0.0,0.0,0.0,1.0],[509,425.0,0.0,-575.0,0.0,0.0,0.0,1.0],[509,475.0,0.0,-575.0,0.0,0.0,0.0,1.0],[519,0.0,0.0,0.0,0.0,0.0,0.0,1.0],[881,0.0,0.0,0.0,0.0,0.0,0.0,1.0],[884,50.0,0.0,-350.0,0.0,0.0,0.0,1.0],[887,250.0,0.0,-550.0,0.0,0.0,0.0,1.0],[509,0.0,0.0,-200.0,0.0,0.0,0.0,1.0],[878,0.0,45.0,-200.0,0.0,0.0,-1.0,0.0],[606,25.0,0.0,-225.0,0.0,0.0,0.0,1.0],[606,25.0,0.0,-175.0,0.0,0.0,0.0,1.0],[606,-25.0,0.0,-225.0,0.0,0.0,0.0,1.0],[606,-25.0,0.0,-175.0,0.0,0.0,0.0,1.0],[743,520.0,-55.1,-640.0,0.0,0.70711,0.0,0.70711],[743,520.0,-34.1,-640.0,0.0,0.70711,0.0,0.70711],[743,520.0,0.1,-640.0,0.0,0.70711,0.0,0.70711],[743,700.0,-63.0,-640.0,0.0,0.70711,0.0,0.70711],[852,750.0,-39.0,-590.0,0.0,-0.70711,0.0,0.70711],[784,600.0,-40.0,-600.0,0.0,0.70711,0.0,0.70711],[497,700.0,-40.0,-600.0,0.0,0.70711,0.0,0.70711],[784,800.0,-40.0,-600.0,0.0,-0.70711,0.0,0.70711],[743,880.0,-34.1,-640.0,0.0,0.70711,0.0,0.70711],[743,880.0,-68.25,-640.0,0.0,0.70711,0.0,0.70711],[519,900.0,0.0,-625.0,0.0,0.70711,0.0,0.70711],[519,900.0,-34.2,-585.0,0.0,0.70711,0.0,0.70711],[743,920.0,-34.1,-640.0,0.0,0.70711,0.0,0.70711],[743,920.0,-68.3,-640.0,0.0,0.70711,0.0,0.70711],[641,855.3,0.0,-584.0,0.0,0.0,0.0,1.0],[641,855.3,0.0,-661.0,0.0,0.0,0.0,1.0],[641,944.7,0.0,-584.0,0.0,-1.0,0.0,0.0],[641,944.7,0.0,-661.0,0.0,-1.0,0.0,0.0],[641,855.3,-34.2,-554.0,0.0,0.0,0.0,1.0],[641,855.3,-34.2,-631.0,0.0,0.0,0.0,1.0],[641,944.7,-34.2,-554.0,0.0,-1.0,0.0,0.0],[641,944.7,-34.2,-631.0,0.0,-1.0,0.0,0.0],[852,1050.0,-39.0,-590.0,0.0,0.70711,0.0,0.70711],[743,1100.0,-63.0,-640.0,0.0,0.70711,0.0,0.70711],[784,1000.0,-40.0,-600.0,0.0,0.70711,0.0,0.70711],[497,1100.0,-40.0,-600.0,0.0,0.70711,0.0,0.70711],[784,1200.0,-40.0,-600.0,0.0,-0.70711,0.0,0.70711],[873,600.0,42.0,-600.0,0.70711,0.0,-0.70711,0.0],[873,700.0,42.0,-600.0,0.70711,0.0,-0.70711,0.0],[873,800.0,42.0,-600.0,0.70711,0.0,-0.70711,0.0],[873,1000.0,42.0,-600.0,0.70711,0.0,-0.70711,0.0],[873,1100.0,42.0,-600.0,0.70711,0.0,-0.70711,0.0],[873,1200.0,42.0,-600.0,0.70711,0.0,-0.70711,0.0],[901,1500.0,0.0,-600.0,0.0,0.0,0.0,1.0],[509,1500.0,0.0,-600.0,0.0,0.0,0.0,1.0],[878,1500.0,45.0,-600.0,0.0,0.0,-1.0,0.0],[606,1400.0,0.0,-575.0,0.0,0.0,0.0,1.0],[606,1400.0,0.0,-625.0,0.0,0.0,0.0,1.0],[606,1600.0,0.0,-575.0,0.0,0.0,0.0,1.0],[606,1600.0,0.0,-625.0,0.0,0.0,0.0,1.0],[606,1475.0,0.0,-675.0,0.0,0.0,0.0,1.0],[606,1525.0,0.0,-675.0,0.0,0.0,0.0,1.0],[606,1475.0,0.0,-525.0,0.0,0.0,0.0,1.0],[606,1525.0,0.0,-525.0,0.0,0.0,0.0,1.0],[509,1400.0,0.0,-600.0,0.0,0.0,0.0,1.0],[509,1600.0,0.0,-600.0,0.0,0.0,0.0,1.0],[873,1800.0,42.0,-600.0,0.70711,0.0,-0.70711,0.0],[873,1900.0,42.0,-600.0,0.70711,0.0,-0.70711,0.0],[873,2000.0,42.0,-600.0,0.70711,0.0,-0.70711,0.0],[873,2200.0,42.0,-600.0,0.70711,0.0,-0.70711,0.0],[873,2300.0,42.0,-600.0,0.70711,0.0,-0.70711,0.0],[873,2400.0,42.0,-600.0,0.70711,0.0,-0.70711,0.0],[784,1800.0,-40.0,-600.0,0.0,0.70711,0.0,0.70711],[497,1900.0,-40.0,-600.0,0.0,0.70711,0.0,0.70711],[784,2000.0,-40.0,-600.0,0.0,-0.70711,0.0,0.70711],[743,1900.0,-63.0,-640.0,0.0,0.70711,0.0,0.70711],[852,1950.0,-39.0,-610.0,0.0,-0.70711,0.0,0.70711],[743,2080.0,-34.1,-640.0,0.0,0.70711,0.0,0.70711],[743,2080.0,-68.25,-640.0,0.0,0.70711,0.0,0.70711],[519,2100.0,0.0,-580.0,0.0,0.70711,0.0,0.70711],[519,2100.0,-34.2,-615.0,0.0,0.70711,0.0,0.70711],[743,2120.0,-34.1,-640.0,0.0,0.70711,0.0,0.70711],[743,2120.0,-68.3,-640.0,0.0,0.70711,0.0,0.70711],[641,2055.3,0.0,-539.0,0.0,0.0,0.0,1.0],[641,2055.3,0.0,-616.0,0.0,0.0,0.0,1.0],[641,2144.7,0.0,-539.0,0.0,-1.0,0.0,0.0],[641,2144.7,0.0,-616.0,0.0,-1.0,0.0,0.0],[641,2055.3,-34.2,-569.0,0.0,0.0,0.0,1.0],[641,2055.3,-34.2,-646.0,0.0,0.0,0.0,1.0],[641,2144.7,-34.2,-569.0,0.0,-1.0,0.0,0.0],[641,2144.7,-34.2,-646.0,0.0,-1.0,0.0,0.0],[852,2250.0,-39.0,-610.0,0.0,0.70711,0.0,0.70711],[743,2300.0,-63.0,-640.0,0.0,0.70711,0.0,0.70711],[784,2200.0,-40.0,-600.0,0.0,0.70711,0.0,0.70711],[497,2300.0,-40.0,-600.0,0.0,0.70711,0.0,0.70711],[784,2400.0,-40.0,-600.0,0.0,-0.70711,0.0,0.70711],[904,2700.0,0.0,-600.0,0.0,0.0,0.0,1.0],[509,2700.0,0.0,-600.0,0.0,0.0,0.0,1.0],[878,2700.0,45.0,-600.0,0.0,0.0,-1.0,0.0],[606,2600.0,0.0,-575.0,0.0,0.0,0.0,1.0],[606,2600.0,0.0,-625.0,0.0,0.0,0.0,1.0],[606,2800.0,0.0,-575.0,0.0,0.0,0.0,1.0],[606,2800.0,0.0,-625.0,0.0,0.0,0.0,1.0],[606,2675.0,0.0,-675.0,0.0,0.0,0.0,1.0],[606,2725.0,0.0,-675.0,0.0,0.0,0.0,1.0],[606,2675.0,0.0,-525.0,0.0,0.0,0.0,1.0],[606,2725.0,0.0,-525.0,0.0,0.0,0.0,1.0],[509,2525.0,0.0,-625.0,0.0,0.0,0.0,1.0],[509,2475.0,0.0,-575.0,0.0,0.0,0.0,1.0],[773,2700.0,-40.0,-900.0,0.0,0.0,0.0,1.0],[564,2700.0,-40.0,-1100.0,0.0,0.0,0.0,1.0],[760,2700.0,-42.0,-1100.0,0.0,0.0,0.0,1.0],[513,2675.0,-39.0,-860.0,0.0,0.70711,0.0,0.70711],[513,2675.0,-39.0,-920.0,0.0,0.70711,0.0,0.70711],[852,2690.0,-39.0,-970.0,0.0,0.0,0.0,1.0],[852,2710.0,-39.0,-970.0,0.0,0.0,0.0,1.0],[773,2700.0,-40.0,-1000.0,0.0,0.0,0.0,1.0],[773,2700.0,-40.0,-1100.0,0.0,0.0,0.0,1.0],[773,2700.0,-40.0,-1200.0,0.0,0.0,0.0,1.0],[773,2700.0,-40.0,-1300.0,0.0,0.0,0.0,1.0],[826,2700.0,38.0,-900.0,0.0,0.0,-1.0,0.0],[826,2700.0,38.0,-1000.0,0.0,0.0,-1.0,0.0],[826,2700.0,38.0,-1100.0,0.0,0.0,-1.0,0.0],[826,2700.0,38.0,-1200.0,0.0,0.0,-1.0,0.0],[826,2700.0,38.0,-1300.0,0.0,0.0,-1.0,0.0],[826,2700.0,38.0,-1400.0,0.0,0.0,-1.0,0.0],[509,2690.0,-29.0,-890.0,0.0,0.0,0.0,1.0],[509,2710.0,-29.0,-910.0,0.0,0.70711,0.0,0.70711],[509,2745.0,-35.0,-1565.0,0.0,0.0,0.0,1.0],[777,2745.0,-40.0,-1565.0,0.0,-1.0,0.0,0.0],[509,2655.0,-35.0,-1565.0,0.0,0.0,0.0,1.0],[777,2655.0,-40.0,-1565.0,0.0,-1.0,0.0,0.0],[557,2700.0,-39.0,-1685.0,0.0,-0.70711,0.0,0.70711],[557,2700.0,-39.0,-1715.0,0.0,0.70711,0.0,0.70711],[557,2685.0,-39.0,-1700.0,0.0,-1.0,0.0,0.0],[557,2715.0,-39.0,-1700.0,0.0,0.0,0.0,1.0],[760,2700.0,-39.0,-1700.0,0.0,0.0,0.0,1.0],[760,2700.0,-4.0,-1700.0,0.0,0.0,0.0,1.0],[842,2700.0,-39.0,-1700.0,0.0,-1.0,0.0,0.0],[447,2700.0,-39.0,-1800.0,0.0,0.0,0.0,1.0],[858,2700.0,-39.0,-1800.0,0.0,0.0,0.0,1.0],[691,2700.0,-39.0,-1450.0,0.0,0.0,0.0,1.0]]},{"key":"headoff","name":"Freezemoon's Freeway","noart":151,"i":[[509,45.0,-1.0,1665.0,0.0,0.0,0.0,1.0],[777,45.0,-6.0,1665.0,0.0,0.0,0.0,1.0],[509,-45.0,-1.0,1665.0,0.0,0.70711,0.0,0.70711],[777,-45.0,-6.0,1665.0,0.0,0.0,0.0,1.0],[557,0.0,-5.0,1785.0,0.0,0.70711,0.0,0.70711],[557,0.0,-5.0,1815.0,0.0,-0.70711,0.0,0.70711],[557,15.0,-5.0,1800.0,0.0,0.0,0.0,1.0],[557,-15.0,-5.0,1800.0,0.0,-1.0,0.0,0.0],[760,0.0,-5.0,1800.0,0.0,0.0,0.0,1.0],[760,0.0,30.0,1800.0,0.0,0.0,0.0,1.0],[842,0.0,-5.0,1800.0,0.0,0.0,0.0,1.0],[447,0.0,-4.9,1900.0,0.0,0.0,0.0,1.0],[858,0.0,-4.9,1900.0,0.0,0.0,0.0,1.0],[691,0.0,-5.0,1550.0,0.0,0.0,0.0,1.0],[773,0.0,-10.0,1400.0,0.0,0.0,0.0,1.0],[455,0.0,-10.0,1250.0,0.0,0.0,0.0,1.0],[564,0.0,-5.0,1150.0,0.0,0.0,0.0,1.0],[856,-11.0,-10.0,1005.0,0.0,-1.0,0.0,0.0],[852,-11.0,10.0,920.0,0.0,-1.0,0.0,0.0],[602,-11.0,20.0,860.0,0.0,0.0,0.0,1.0],[602,-11.0,20.0,780.0,0.0,0.0,0.0,1.0],[602,-11.0,20.0,700.0,0.0,0.0,0.0,1.0],[602,-11.0,20.0,620.0,0.0,0.0,0.0,1.0],[602,-11.0,20.0,540.0,0.0,0.0,0.0,1.0],[509,11.0,-9.0,500.0,0.0,0.0,0.0,1.0],[509,11.0,-9.0,450.0,0.0,0.0,0.0,1.0],[509,11.0,-9.0,400.0,0.0,0.0,0.0,1.0],[509,11.0,-9.0,350.0,0.0,0.0,0.0,1.0],[602,-11.0,20.0,460.0,0.0,0.0,0.0,1.0],[602,-11.0,20.0,380.0,0.0,0.0,0.0,1.0],[602,-11.0,20.0,300.0,0.0,0.0,0.0,1.0],[602,-11.0,20.0,220.0,0.0,0.0,0.0,1.0],[602,-11.0,20.0,140.0,0.0,0.0,0.0,1.0],[852,-11.0,10.0,80.0,0.0,0.0,0.0,1.0],[773,0.0,-10.0,1300.0,0.0,0.0,0.0,1.0],[773,0.0,-10.0,1200.0,0.0,0.0,0.0,1.0],[773,0.0,-10.0,1100.0,0.0,0.0,0.0,1.0],[773,0.0,-10.0,1000.0,0.0,0.0,0.0,1.0],[773,0.0,-10.0,900.0,0.0,0.0,0.0,1.0],[773,0.0,-10.0,800.0,0.0,0.0,0.0,1.0],[773,0.0,-10.0,700.0,0.0,0.0,0.0,1.0],[773,0.0,-10.0,600.0,0.0,0.0,0.0,1.0],[773,0.0,-10.0,500.0,0.0,0.0,0.0,1.0],[773,0.0,-10.0,400.0,0.0,0.0,0.0,1.0],[773,0.0,-10.0,300.0,0.0,0.0,0.0,1.0],[773,0.0,-10.0,200.0,0.0,0.0,0.0,1.0],[602,0.0,10.0,-100.0,0.0,0.0,0.0,1.0],[564,0.0,6.0,-150.0,0.0,0.0,0.0,1.0],[602,0.0,10.0,-200.0,0.0,0.0,0.0,1.0],[564,0.0,6.0,-250.0,0.0,0.0,0.0,1.0],[602,0.0,10.0,-300.0,0.0,0.0,0.0,1.0],[773,0.0,-10.0,100.0,0.0,0.0,0.0,1.0],[773,0.0,-10.0,0.0,0.0,0.0,0.0,1.0],[773,0.0,-10.0,-100.0,0.0,0.0,0.0,1.0],[773,0.0,-10.0,-200.0,0.0,0.0,0.0,1.0],[773,0.0,-10.0,-300.0,0.0,0.0,0.0,1.0],[743,40.0,-24.1,-380.0,0.0,0.0,0.0,1.0],[532,0.0,5.0,-400.0,0.0,0.0,0.0,1.0],[743,11.0,1.5,-450.0,0.0,-1.0,0.0,0.0],[564,0.0,10.0,-450.0,0.0,0.0,0.0,1.0],[541,0.0,5.0,-500.0,0.0,-1.0,0.0,0.0],[532,0.0,5.0,-600.0,0.0,0.0,0.0,1.0],[743,-11.0,1.5,-650.0,0.0,0.0,0.0,1.0],[564,0.0,10.0,-650.0,0.0,0.0,0.0,1.0],[541,0.0,5.0,-700.0,0.0,0.0,0.0,1.0],[532,0.0,5.0,-800.0,0.0,0.0,0.0,1.0],[743,-11.0,1.5,-850.0,0.0,0.0,0.0,1.0],[564,0.0,10.0,-850.0,0.0,0.0,0.0,1.0],[532,0.0,5.0,-900.0,0.0,0.0,0.0,1.0],[541,0.0,5.0,-1000.0,0.0,-1.0,0.0,0.0],[743,11.0,1.5,-1050.0,0.0,-1.0,0.0,0.0],[564,0.0,10.0,-1050.0,0.0,0.0,0.0,1.0],[532,0.0,5.0,-1100.0,0.0,0.0,0.0,1.0],[541,0.0,5.0,-1200.0,0.0,0.0,0.0,1.0],[564,0.0,10.0,-1250.0,0.0,0.0,0.0,1.0],[532,0.0,5.0,-1300.0,0.0,0.0,0.0,1.0],[564,0.0,10.0,-1350.0,0.0,0.0,0.0,1.0],[541,0.0,5.0,-1400.0,0.0,-1.0,0.0,0.0],[564,0.0,10.0,-1450.0,0.0,0.0,0.0,1.0],[532,0.0,5.0,-1500.0,0.0,0.0,0.0,1.0],[564,0.0,10.0,-1550.0,0.0,0.0,0.0,1.0],[541,0.0,5.0,-1600.0,0.0,0.0,0.0,1.0],[532,0.0,5.0,-1700.0,0.0,0.0,0.0,1.0],[564,0.0,10.0,-1750.0,0.0,0.0,0.0,1.0],[532,0.0,5.0,-1800.0,0.0,0.0,0.0,1.0],[509,5.0,10.0,-1750.0,0.0,0.0,0.0,1.0],[509,5.0,10.0,-1775.0,0.0,0.0,0.0,1.0],[509,5.0,10.0,-1800.0,0.0,0.0,0.0,1.0],[509,5.0,10.0,-1825.0,0.0,0.0,0.0,1.0],[743,40.0,-24.1,-1820.0,0.0,0.0,0.0,1.0],[852,0.0,0.0,-1870.0,0.0,0.0,0.0,1.0],[773,0.0,0.0,-1900.0,0.0,0.0,0.0,1.0],[773,0.0,0.0,-2000.0,0.0,0.0,0.0,1.0],[564,0.0,-2.0,-2000.0,0.0,0.0,0.0,1.0],[773,0.0,0.0,-2100.0,0.0,0.0,0.0,1.0],[773,0.0,0.0,-2200.0,0.0,0.0,0.0,1.0],[773,0.0,0.0,-2300.0,0.0,0.0,0.0,1.0],[455,0.0,0.0,-2300.0,0.0,0.0,0.0,1.0],[509,45.0,9.0,-2665.0,0.0,0.0,0.0,1.0],[777,45.0,4.0,-2665.0,0.0,-1.0,0.0,0.0],[509,-45.0,9.0,-2665.0,0.0,0.0,0.0,1.0],[777,-45.0,4.0,-2665.0,0.0,-1.0,0.0,0.0],[557,0.0,5.0,-2785.0,0.0,-0.70711,0.0,0.70711],[557,0.0,5.0,-2815.0,0.0,0.70711,0.0,0.70711],[773,0.0,0.0,-2400.0,0.0,0.0,0.0,1.0],[557,-15.0,5.0,-2800.0,0.0,-1.0,0.0,0.0],[557,15.0,5.0,-2800.0,0.0,0.0,0.0,1.0],[760,0.0,5.0,-2800.0,0.0,0.0,0.0,1.0],[760,0.0,40.0,-2800.0,0.0,0.0,0.0,1.0],[842,0.0,5.0,-2800.0,0.0,-1.0,0.0,0.0],[447,0.0,5.0,-2900.0,0.0,0.0,0.0,1.0],[858,0.0,5.0,-2900.0,0.0,0.0,0.0,1.0],[691,0.0,5.0,-2550.0,0.0,0.0,0.0,1.0]]},{"key":"headmf","name":"Freezemoon's Freeway (Football)","noart":167,"i":[[509,45.0,-1.0,1665.0,0.0,0.0,0.0,1.0],[777,45.0,-6.0,1665.0,0.0,0.0,0.0,1.0],[509,-45.0,-1.0,1665.0,0.0,0.70711,0.0,0.70711],[777,-45.0,-6.0,1665.0,0.0,0.0,0.0,1.0],[557,0.0,-5.0,1785.0,0.0,0.70711,0.0,0.70711],[557,0.0,-5.0,1815.0,0.0,-0.70711,0.0,0.70711],[557,15.0,-5.0,1800.0,0.0,0.0,0.0,1.0],[557,-15.0,-5.0,1800.0,0.0,-1.0,0.0,0.0],[760,0.0,-5.0,1800.0,0.0,0.0,0.0,1.0],[760,0.0,30.0,1800.0,0.0,0.0,0.0,1.0],[842,0.0,-5.0,1800.0,0.0,0.0,0.0,1.0],[447,0.0,-4.9,1900.0,0.0,0.0,0.0,1.0],[858,0.0,-4.9,1900.0,0.0,0.0,0.0,1.0],[691,0.0,-5.0,1550.0,0.0,0.0,0.0,1.0],[773,0.0,-10.0,1400.0,0.0,0.0,0.0,1.0],[918,0.0,-10.0,1250.0,0.0,0.0,0.0,1.0],[564,0.0,-5.0,1150.0,0.0,0.0,0.0,1.0],[856,-11.0,-10.0,1005.0,0.0,-1.0,0.0,0.0],[852,-11.0,10.0,920.0,0.0,-1.0,0.0,0.0],[602,-11.0,20.0,860.0,0.0,0.0,0.0,1.0],[602,-11.0,20.0,780.0,0.0,0.0,0.0,1.0],[602,-11.0,20.0,700.0,0.0,0.0,0.0,1.0],[602,-11.0,20.0,620.0,0.0,0.0,0.0,1.0],[602,-11.0,20.0,540.0,0.0,0.0,0.0,1.0],[509,11.0,-9.0,500.0,0.0,0.0,0.0,1.0],[509,11.0,-9.0,450.0,0.0,0.0,0.0,1.0],[509,11.0,-9.0,400.0,0.0,0.0,0.0,1.0],[509,11.0,-9.0,350.0,0.0,0.0,0.0,1.0],[602,-11.0,20.0,460.0,0.0,0.0,0.0,1.0],[602,-11.0,20.0,380.0,0.0,0.0,0.0,1.0],[602,-11.0,20.0,300.0,0.0,0.0,0.0,1.0],[602,-11.0,20.0,220.0,0.0,0.0,0.0,1.0],[602,-11.0,20.0,140.0,0.0,0.0,0.0,1.0],[852,-11.0,10.0,80.0,0.0,0.0,0.0,1.0],[773,0.0,-10.0,1300.0,0.0,0.0,0.0,1.0],[773,0.0,-10.0,1200.0,0.0,0.0,0.0,1.0],[773,0.0,-10.0,1100.0,0.0,0.0,0.0,1.0],[773,0.0,-10.0,1000.0,0.0,0.0,0.0,1.0],[773,0.0,-10.0,900.0,0.0,0.0,0.0,1.0],[773,0.0,-10.0,800.0,0.0,0.0,0.0,1.0],[773,0.0,-10.0,700.0,0.0,0.0,0.0,1.0],[773,0.0,-10.0,600.0,0.0,0.0,0.0,1.0],[773,0.0,-10.0,500.0,0.0,0.0,0.0,1.0],[773,0.0,-10.0,400.0,0.0,0.0,0.0,1.0],[773,0.0,-10.0,300.0,0.0,0.0,0.0,1.0],[773,0.0,-10.0,200.0,0.0,0.0,0.0,1.0],[602,0.0,10.0,-100.0,0.0,0.0,0.0,1.0],[602,0.0,10.0,-200.0,0.0,0.0,0.0,1.0],[602,0.0,10.0,-300.0,0.0,0.0,0.0,1.0],[773,0.0,-10.0,100.0,0.0,0.0,0.0,1.0],[773,0.0,-10.0,0.0,0.0,0.0,0.0,1.0],[773,0.0,-10.0,-100.0,0.0,0.0,0.0,1.0],[773,0.0,-10.0,-200.0,0.0,0.0,0.0,1.0],[773,0.0,-10.0,-300.0,0.0,0.0,0.0,1.0],[743,40.0,-24.1,-380.0,0.0,0.0,0.0,1.0],[532,0.0,5.0,-400.0,0.0,0.0,0.0,1.0],[564,0.0,10.0,-450.0,0.0,0.0,0.0,1.0],[541,0.0,5.0,-500.0,0.0,-1.0,0.0,0.0],[532,0.0,5.0,-600.0,0.0,0.0,0.0,1.0],[564,0.0,10.0,-650.0,0.0,0.0,0.0,1.0],[532,0.0,5.0,-700.0,0.0,0.0,0.0,1.0],[541,0.0,5.0,-800.0,0.0,-1.0,0.0,0.0],[564,0.0,10.0,-850.0,0.0,0.0,0.0,1.0],[541,0.0,5.0,-900.0,0.0,0.0,0.0,1.0],[532,0.0,5.0,-1000.0,0.0,0.0,0.0,1.0],[564,0.0,10.0,-1050.0,0.0,0.0,0.0,1.0],[532,0.0,5.0,-1100.0,0.0,0.0,0.0,1.0],[541,0.0,5.0,-1200.0,0.0,0.0,0.0,1.0],[564,0.0,10.0,-1250.0,0.0,0.0,0.0,1.0],[532,0.0,5.0,-1300.0,0.0,0.0,0.0,1.0],[564,0.0,10.0,-1350.0,0.0,0.0,0.0,1.0],[541,0.0,5.0,-1400.0,0.0,-1.0,0.0,0.0],[564,0.0,10.0,-1450.0,0.0,0.0,0.0,1.0],[532,0.0,5.0,-1500.0,0.0,0.0,0.0,1.0],[564,0.0,10.0,-1550.0,0.0,0.0,0.0,1.0],[541,0.0,5.0,-1600.0,0.0,0.0,0.0,1.0],[532,0.0,5.0,-1700.0,0.0,0.0,0.0,1.0],[564,0.0,10.0,-1750.0,0.0,0.0,0.0,1.0],[532,0.0,5.0,-1800.0,0.0,0.0,0.0,1.0],[509,5.0,10.0,-1750.0,0.0,0.0,0.0,1.0],[509,5.0,10.0,-1775.0,0.0,0.0,0.0,1.0],[509,5.0,10.0,-1800.0,0.0,0.0,0.0,1.0],[509,5.0,10.0,-1825.0,0.0,0.0,0.0,1.0],[743,40.0,-24.1,-1820.0,0.0,0.0,0.0,1.0],[852,0.0,0.0,-1870.0,0.0,0.0,0.0,1.0],[773,0.0,0.0,-1900.0,0.0,0.0,0.0,1.0],[773,0.0,0.0,-2000.0,0.0,0.0,0.0,1.0],[564,0.0,-2.0,-2000.0,0.0,0.0,0.0,1.0],[773,0.0,0.0,-2100.0,0.0,0.0,0.0,1.0],[773,0.0,0.0,-2200.0,0.0,0.0,0.0,1.0],[773,0.0,0.0,-2300.0,0.0,0.0,0.0,1.0],[918,0.0,0.0,-2300.0,0.0,0.0,0.0,1.0],[509,45.0,9.0,-2665.0,0.0,0.0,0.0,1.0],[777,45.0,4.0,-2665.0,0.0,-1.0,0.0,0.0],[509,-45.0,9.0,-2665.0,0.0,0.0,0.0,1.0],[777,-45.0,4.0,-2665.0,0.0,-1.0,0.0,0.0],[557,0.0,5.0,-2785.0,0.0,-0.70711,0.0,0.70711],[557,0.0,5.0,-2815.0,0.0,0.70711,0.0,0.70711],[773,0.0,0.0,-2400.0,0.0,0.0,0.0,1.0],[557,-15.0,5.0,-2800.0,0.0,-1.0,0.0,0.0],[557,15.0,5.0,-2800.0,0.0,0.0,0.0,1.0],[760,0.0,5.0,-2800.0,0.0,0.0,0.0,1.0],[760,0.0,40.0,-2800.0,0.0,0.0,0.0,1.0],[842,0.0,5.0,-2800.0,0.0,-1.0,0.0,0.0],[447,0.0,5.0,-2900.0,0.0,0.0,0.0,1.0],[858,0.0,5.0,-2900.0,0.0,0.0,0.0,1.0],[691,0.0,5.0,-2550.0,0.0,0.0,0.0,1.0]]},{"key":"donut","name":"-- Donut --","noart":227,"i":[[570,-1400.0,0.0,-1400.0,0.0,0.0,0.0,1.0],[570,1400.0,0.0,1400.0,0.0,0.0,0.0,1.0],[904,-1400.0,10.0,-1400.0,0.0,-1.0,0.0,0.0],[904,1400.0,10.0,1400.0,0.0,0.0,0.0,1.0],[904,1400.0,10.0,-1400.0,0.0,0.70711,0.0,0.70711],[490,-1100.0,10.0,-1400.0,0.0,0.70711,0.0,-0.70711],[490,-1000.0,10.0,-1400.0,0.0,0.70711,0.0,0.70711],[773,-900.0,0.0,-1400.0,0.0,0.70711,0.0,0.70711],[773,-800.0,0.0,-1400.0,0.0,0.70711,0.0,0.70711],[773,-700.0,0.0,-1400.0,0.0,0.70711,0.0,0.70711],[773,-600.0,0.0,-1400.0,0.0,0.70711,0.0,0.70711],[773,-500.0,0.0,-1400.0,0.0,0.70711,0.0,0.70711],[773,-400.0,0.0,-1400.0,0.0,0.70711,0.0,0.70711],[773,-300.0,0.0,-1400.0,0.0,0.70711,0.0,0.70711],[773,-200.0,0.0,-1400.0,0.0,0.70711,0.0,0.70711],[773,-100.0,0.0,-1400.0,0.0,0.70711,0.0,0.70711],[773,0.0,0.0,-1400.0,0.0,0.70711,0.0,0.70711],[773,100.0,0.0,-1400.0,0.0,0.70711,0.0,0.70711],[773,200.0,0.0,-1400.0,0.0,0.70711,0.0,0.70711],[773,300.0,0.0,-1400.0,0.0,0.70711,0.0,0.70711],[773,400.0,0.0,-1400.0,0.0,0.70711,0.0,0.70711],[773,500.0,0.0,-1400.0,0.0,0.70711,0.0,0.70711],[773,600.0,0.0,-1400.0,0.0,0.70711,0.0,0.70711],[773,700.0,0.0,-1400.0,0.0,0.70711,0.0,0.70711],[773,800.0,0.0,-1400.0,0.0,0.70711,0.0,0.70711],[773,900.0,0.0,-1400.0,0.0,0.70711,0.0,0.70711],[490,1000.0,10.0,-1400.0,0.0,0.70711,0.0,-0.70711],[490,1100.0,10.0,-1400.0,0.0,0.70711,0.0,0.70711],[490,-1400.0,10.0,-1100.0,0.0,-1.0,0.0,0.0],[490,1400.0,10.0,-1100.0,0.0,-1.0,0.0,0.0],[490,-1400.0,10.0,-1000.0,0.0,0.0,0.0,1.0],[490,1400.0,10.0,-1000.0,0.0,0.0,0.0,1.0],[773,-1400.0,0.0,-900.0,0.0,0.0,0.0,1.0],[773,1400.0,0.0,-900.0,0.0,0.0,0.0,1.0],[773,-1400.0,0.0,-800.0,0.0,0.0,0.0,1.0],[773,1400.0,0.0,-800.0,0.0,0.0,0.0,1.0],[773,-1400.0,0.0,-700.0,0.0,0.0,0.0,1.0],[773,1400.0,0.0,-700.0,0.0,0.0,0.0,1.0],[773,-1400.0,0.0,-600.0,0.0,0.0,0.0,1.0],[773,1400.0,0.0,-600.0,0.0,0.0,0.0,1.0],[773,-1400.0,0.0,-500.0,0.0,0.0,0.0,1.0],[773,1400.0,0.0,-500.0,0.0,0.0,0.0,1.0],[773,-1400.0,0.0,-400.0,0.0,0.0,0.0,1.0],[773,1400.0,0.0,-400.0,0.0,0.0,0.0,1.0],[773,-1400.0,0.0,-300.0,0.0,0.0,0.0,1.0],[773,1400.0,0.0,-300.0,0.0,0.0,0.0,1.0],[773,-1400.0,0.0,-200.0,0.0,0.0,0.0,1.0],[773,1400.0,0.0,-200.0,0.0,0.0,0.0,1.0],[773,-1400.0,0.0,-100.0,0.0,0.0,0.0,1.0],[773,1400.0,0.0,-100.0,0.0,0.0,0.0,1.0],[773,-1400.0,0.0,0.0,0.0,0.0,0.0,1.0],[773,1400.0,0.0,0.0,0.0,0.0,0.0,1.0],[773,-1400.0,0.0,100.0,0.0,0.0,0.0,1.0],[773,1400.0,0.0,100.0,0.0,0.0,0.0,1.0],[773,-1400.0,0.0,200.0,0.0,0.0,0.0,1.0],[773,1400.0,0.0,200.0,0.0,0.0,0.0,1.0],[773,-1400.0,0.0,300.0,0.0,0.0,0.0,1.0],[773,1400.0,0.0,300.0,0.0,0.0,0.0,1.0],[773,-1400.0,0.0,400.0,0.0,0.0,0.0,1.0],[773,1400.0,0.0,400.0,0.0,0.0,0.0,1.0],[773,-1400.0,0.0,500.0,0.0,0.0,0.0,1.0],[773,1400.0,0.0,500.0,0.0,0.0,0.0,1.0],[773,-1400.0,0.0,600.0,0.0,0.0,0.0,1.0],[773,1400.0,0.0,600.0,0.0,0.0,0.0,1.0],[773,-1400.0,0.0,700.0,0.0,0.0,0.0,1.0],[773,1400.0,0.0,700.0,0.0,0.0,0.0,1.0],[773,-1400.0,0.0,800.0,0.0,0.0,0.0,1.0],[773,1400.0,0.0,800.0,0.0,0.0,0.0,1.0],[773,-1400.0,0.0,900.0,0.0,0.0,0.0,1.0],[773,1400.0,0.0,900.0,0.0,0.0,0.0,1.0],[490,-1400.0,10.0,1000.0,0.0,-1.0,0.0,0.0],[490,1400.0,10.0,1000.0,0.0,-1.0,0.0,0.0],[490,-1400.0,10.0,1100.0,0.0,0.0,0.0,1.0],[490,1400.0,10.0,1100.0,0.0,0.0,0.0,1.0],[490,-1100.0,10.0,1400.0,0.0,0.70711,0.0,-0.70711],[490,-1000.0,10.0,1400.0,0.0,0.70711,0.0,0.70711],[773,-900.0,0.0,1400.0,0.0,0.70711,0.0,0.70711],[773,-800.0,0.0,1400.0,0.0,0.70711,0.0,0.70711],[773,-700.0,0.0,1400.0,0.0,0.70711,0.0,0.70711],[773,-600.0,0.0,1400.0,0.0,0.70711,0.0,0.70711],[773,-500.0,0.0,1400.0,0.0,0.70711,0.0,0.70711],[773,-400.0,0.0,1400.0,0.0,0.70711,0.0,0.70711],[773,-300.0,0.0,1400.0,0.0,0.70711,0.0,0.70711],[773,-200.0,0.0,1400.0,0.0,0.70711,0.0,0.70711],[773,-100.0,0.0,1400.0,0.0,0.70711,0.0,0.70711],[773,0.0,0.0,1400.0,0.0,0.70711,0.0,0.70711],[773,100.0,0.0,1400.0,0.0,0.70711,0.0,0.70711],[773,200.0,0.0,1400.0,0.0,0.70711,0.0,0.70711],[773,300.0,0.0,1400.0,0.0,0.70711,0.0,0.70711],[773,400.0,0.0,1400.0,0.0,0.70711,0.0,0.70711],[773,500.0,0.0,1400.0,0.0,0.70711,0.0,0.70711],[773,600.0,0.0,1400.0,0.0,0.70711,0.0,0.70711],[773,700.0,0.0,1400.0,0.0,0.70711,0.0,0.70711],[773,800.0,0.0,1400.0,0.0,0.70711,0.0,0.70711],[773,900.0,0.0,1400.0,0.0,0.70711,0.0,0.70711],[490,1000.0,10.0,1400.0,0.0,0.70711,0.0,-0.70711],[490,1100.0,10.0,1400.0,0.0,0.70711,0.0,0.70711],[904,-1400.0,10.0,1400.0,0.0,-0.70711,0.0,0.70711]]},{"key":"wiserguys","name":"-- Wiserguy's --","noart":47,"i":[[717,0.0,0.0,1700.0,0.0,0.0,0.0,1.0],[625,40.01,-50.0,3880.0,0.0,-1.0,0.0,0.0],[551,0.0,0.0,154.67,0.0,-1.0,0.0,0.0],[490,0.0,5.0,1300.0,0.0,-1.0,0.0,0.0],[717,0.0,0.0,1250.0,0.0,0.0,0.0,1.0],[497,0.0,0.0,1200.0,0.0,0.0,0.0,1.0],[551,0.0,0.0,-525.0,0.0,1.0,0.0,0.0],[509,10.0,10.0,825.0,0.0,0.0,0.0,1.0],[509,10.0,10.0,880.0,0.0,0.0,0.0,1.0],[513,0.0,0.0,850.0,0.0,0.0,0.0,1.0],[513,0.0,0.0,850.0,0.0,-1.0,0.0,0.0],[625,-40.0,-50.0,-1350.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,400.0,0.0,0.0,0.0,1.0],[519,0.0,5.0,1700.0,0.0,0.0,0.0,1.0],[519,0.0,5.0,1600.0,0.0,0.0,0.0,1.0],[519,0.0,5.0,2200.0,0.0,0.0,0.0,1.0],[519,0.0,5.0,2100.0,0.0,0.0,0.0,1.0],[519,0.0,5.0,2000.0,0.0,0.0,0.0,1.0],[519,0.0,5.0,1800.0,0.0,0.0,0.0,1.0],[519,0.0,5.0,1900.0,0.0,0.0,0.0,1.0],[497,0.0,0.0,2500.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,2500.0,0.0,-1.0,0.0,0.0],[497,0.0,0.0,2400.0,0.0,-1.0,0.0,0.0],[490,0.0,5.0,2300.0,0.0,0.0,0.0,1.0],[717,0.0,2.5,2350.0,0.0,0.0,0.0,1.0],[497,0.0,1.0,2999.0,0.0,-1.0,0.0,0.0],[528,0.0,0.0,3055.0,0.0,-1.0,0.0,0.0],[532,0.0,0.0,3130.0,0.0,-1.0,0.0,0.0],[532,0.0,0.0,3230.0,0.0,-1.0,0.0,0.0],[717,0.0,0.0,3530.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,2600.0,0.0,0.0,0.0,1.0],[497,0.0,0.0,2600.0,0.0,0.0,0.0,1.0],[497,0.0,0.0,2700.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,2900.0,0.0,-1.0,0.0,0.0],[541,0.0,0.0,-900.0,0.0,0.0,0.0,1.0],[532,0.0,0.0,-700.0,0.0,0.0,0.0,1.0],[547,0.0,0.0,-600.0,0.0,0.0,0.0,1.0],[547,0.0,0.0,-800.0,0.0,1.0,0.0,0.0],[516,0.0,0.0,300.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,200.0,0.0,0.0,0.0,1.0],[551,0.0,3.0,-100.0,0.0,0.0,0.0,1.0],[557,-10.0,0.0,50.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,100.0,0.0,0.0,0.0,1.0],[497,0.0,0.0,0.0,0.0,0.0,0.0,1.0],[564,0.0,-2.0,2000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,0.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,100.0,0.0,0.0,0.0,1.0],[528,0.0,0.0,-425.0,0.0,0.0,0.0,1.0],[532,0.0,0.0,-500.0,0.0,0.0,0.0,1.0],[557,10.78,0.0,750.19,0.0,-1.0,0.0,0.0],[557,10.78,0.0,550.19,0.0,-1.0,0.0,0.0],[564,0.0,11.5,649.5,0.0,0.0,0.0,1.0],[524,0.0,0.0,500.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,500.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,400.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,600.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,700.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,600.0,0.0,0.0,0.0,1.0],[497,0.0,0.0,-200.0,0.0,0.0,0.0,1.0],[564,0.0,21.5,1149.5,0.0,0.0,0.0,1.0],[455,0.0,0.0,-300.0,0.0,0.0,0.0,1.0],[497,0.0,0.0,-400.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,1000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,800.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,1000.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,900.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,1000.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-300.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-400.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,900.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,800.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,700.0,0.0,0.0,0.0,1.0],[519,0.0,5.0,1500.0,0.0,0.0,0.0,1.0],[519,0.0,5.0,1400.0,0.0,0.0,0.0,1.0],[497,0.0,0.0,1100.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,1100.0,0.0,0.0,0.0,1.0],[497,0.0,0.0,-300.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,300.0,0.0,0.0,0.0,1.0],[564,0.0,-12.0,2200.0,0.0,0.0,0.0,1.0],[570,-40.0,0.0,-1460.0,0.0,0.0,0.0,1.0],[570,40.0,0.0,3989.98,0.0,0.0,0.0,1.0],[532,0.0,0.0,3430.0,0.0,-1.0,0.0,0.0],[541,0.0,0.0,3330.0,0.0,-1.0,0.0,0.0],[455,0.0,1.0,2954.0,0.0,0.0,0.0,1.0],[497,0.0,1.0,2899.0,0.0,-1.0,0.0,0.0],[585,0.0,0.0,2650.0,0.0,-1.0,0.0,0.0]]},{"key":"tourdemars","name":"-- Tour De Mars --","noart":215,"i":[[570,40.0,55.0,5040.0,0.0,0.0,0.0,1.0],[478,40.0,55.0,4925.0,0.0,-1.0,0.0,0.0],[532,0.0,10.0,4575.0,0.0,-1.0,0.0,0.0],[532,0.0,10.0,4475.0,0.0,-1.0,0.0,0.0],[532,0.0,10.0,4375.0,0.0,-1.0,0.0,0.0],[773,0.0,10.0,4305.0,0.0,-1.0,0.0,0.0],[528,0.0,10.0,4300.0,0.0,-1.0,0.0,0.0],[773,0.0,10.0,4205.0,0.0,-1.0,0.0,0.0],[773,0.0,10.0,4105.0,0.0,-1.0,0.0,0.0],[773,0.0,10.0,4005.0,0.0,-1.0,0.0,0.0],[649,-5.2,10.0,3995.0,0.0,-1.0,0.0,0.0],[649,5.2,10.0,3995.0,0.0,-1.0,0.0,0.0],[490,0.0,20.0,3905.0,0.0,0.0,0.0,1.0],[519,0.0,20.0,3805.0,0.0,-1.0,0.0,0.0],[641,0.0,20.0,3805.0,0.0,-1.0,0.0,0.0],[519,0.0,20.0,3705.0,0.0,-1.0,0.0,0.0],[641,0.0,20.0,3705.0,0.0,0.0,0.0,1.0],[519,0.0,20.0,3605.0,0.0,-1.0,0.0,0.0],[641,0.0,20.0,3605.0,0.0,-1.0,0.0,0.0],[519,0.0,20.0,3505.0,0.0,-1.0,0.0,0.0],[641,0.0,20.0,3505.0,0.0,0.0,0.0,1.0],[490,0.0,20.0,3405.0,0.0,-1.0,0.0,0.0],[649,5.2,10.0,3315.0,0.0,0.0,0.0,1.0],[649,-5.2,10.0,3315.0,0.0,0.0,0.0,1.0],[773,0.0,10.0,3305.0,0.0,0.0,0.0,1.0],[513,-59.6,0.85,3235.0,0.0,0.70711,0.0,0.70711],[513,59.6,0.85,3235.0,0.0,-0.70711,0.0,0.70711],[653,0.0,10.9,3205.0,0.0,0.0,0.0,1.0],[524,0.0,10.9,3205.0,0.0,0.0,0.0,1.0],[513,-59.6,-9.15,3180.0,0.0,0.70711,0.0,0.70711],[513,59.6,-9.15,3180.0,0.0,-0.70711,0.0,0.70711],[513,-59.6,0.85,3175.0,0.0,0.70711,0.0,0.70711],[513,59.6,0.85,3175.0,0.0,-0.70711,0.0,0.70711],[598,-15.5,5.0,3137.5,0.0,-1.0,0.0,0.0],[598,15.5,5.0,3137.5,0.0,-1.0,0.0,0.0],[524,0.0,10.9,3105.0,0.0,0.0,0.0,1.0],[773,0.0,10.0,3105.0,0.0,0.0,0.0,1.0],[662,0.0,-4.0,3105.0,0.0,0.0,0.0,1.0],[490,0.0,25.0,3005.0,0.0,0.0,0.0,1.0],[683,0.0,-2.0,-10123.0,0.0,-1.0,0.0,0.0],[662,0.0,-14.0,3005.0,0.0,0.0,0.0,1.0],[743,-6.0,10.0,2920.0,0.0,0.0,0.0,1.0],[519,0.0,25.0,2905.0,0.0,0.0,0.0,1.0],[666,0.0,-24.0,2905.0,0.0,0.0,0.0,1.0],[519,0.0,25.0,2805.0,0.0,0.0,0.0,1.0],[666,0.0,-24.0,2805.0,0.0,0.0,0.0,1.0],[641,0.5,25.0,2747.5,0.0,0.0,0.0,1.0],[519,0.0,25.0,2705.0,0.0,0.0,0.0,1.0],[666,0.0,-24.0,2705.0,0.0,0.0,0.0,1.0],[641,0.5,25.0,2690.5,0.0,0.0,0.0,1.0],[641,0.5,25.0,2633.5,0.0,-1.0,0.0,0.0],[519,0.0,25.0,2605.0,0.0,0.0,0.0,1.0],[666,0.0,-24.0,2605.0,0.0,0.0,0.0,1.0],[641,0.5,25.0,2576.5,0.0,0.0,0.0,1.0],[641,0.5,25.0,2519.5,0.0,0.0,0.0,1.0],[519,0.0,25.0,2505.0,0.0,0.0,0.0,1.0],[666,0.0,-24.0,2505.0,0.0,0.0,0.0,1.0],[641,0.5,25.0,2462.5,0.0,-1.0,0.0,0.0],[641,0.5,25.0,2405.5,0.0,0.0,0.0,1.0],[519,0.0,25.0,2405.0,0.0,0.0,0.0,1.0],[666,0.0,-24.0,2405.0,0.0,0.0,0.0,1.0],[519,0.0,25.0,2305.0,0.0,0.0,0.0,1.0],[666,0.0,-24.0,2305.0,0.0,0.0,0.0,1.0],[641,0.5,25.0,2291.5,0.0,0.0,0.0,1.0],[641,0.5,25.0,2234.5,0.0,-1.0,0.0,0.0],[519,0.0,25.0,2205.0,0.0,0.0,0.0,1.0],[666,0.0,-24.0,2205.0,0.0,0.0,0.0,1.0],[641,0.5,25.0,2177.5,0.0,0.0,0.0,1.0],[641,0.5,25.0,2120.5,0.0,0.0,0.0,1.0],[519,0.0,25.0,2105.0,0.0,0.0,0.0,1.0],[666,0.0,-24.0,2105.0,0.0,0.0,0.0,1.0],[641,0.5,25.0,2063.5,0.0,-1.0,0.0,0.0],[641,0.5,25.0,2006.5,0.0,0.0,0.0,1.0],[519,0.0,25.0,2005.0,0.0,0.0,0.0,1.0],[666,0.0,-24.0,2005.0,0.0,0.0,0.0,1.0],[641,0.5,25.0,1949.5,0.0,0.0,0.0,1.0],[490,0.0,25.0,1905.0,0.0,-1.0,0.0,0.0],[666,0.0,-24.0,1905.0,0.0,0.0,0.0,1.0],[513,0.0,0.0,1855.0,0.0,-1.0,0.0,0.0],[509,10.0,10.0,1830.0,0.0,0.0,0.0,1.0],[509,-10.0,10.0,1830.0,0.0,0.0,0.0,1.0],[803,14.0,25.0,1815.0,0.0,0.0,0.0,1.0],[513,0.0,0.0,1805.0,0.0,-1.0,0.0,0.0],[666,0.0,-24.0,1805.0,0.0,0.0,0.0,1.0],[773,0.0,0.0,1805.0,0.0,0.0,0.0,1.0],[509,10.0,10.0,1780.0,0.0,0.0,0.0,1.0],[509,-10.0,10.0,1780.0,0.0,0.0,0.0,1.0],[803,14.0,25.0,1735.0,0.0,0.0,0.0,1.0],[649,15.0,0.0,1715.0,0.0,0.0,0.0,1.0],[649,-15.0,0.0,1715.0,0.0,0.0,0.0,1.0],[662,0.0,-14.0,1705.0,0.0,-1.0,0.0,0.0],[773,0.0,0.0,1705.0,0.0,0.0,0.0,1.0],[803,14.0,25.0,1655.0,0.0,0.0,0.0,1.0],[524,0.0,1.0,1605.0,0.0,0.0,0.0,1.0],[653,0.0,1.0,1605.0,0.0,-1.0,0.0,0.0],[564,0.0,-1.0,1580.0,0.0,0.0,0.0,1.0],[803,14.0,25.0,1575.0,0.0,0.0,0.0,1.0],[524,0.0,1.0,1505.0,0.0,0.0,0.0,1.0],[773,0.0,0.0,1505.0,0.0,0.0,0.0,1.0],[803,14.0,25.0,1495.0,0.0,0.0,0.0,1.0],[803,14.0,25.0,1415.0,0.0,0.0,0.0,1.0],[773,0.0,0.0,1405.0,0.0,0.0,0.0,1.0],[777,15.0,0.0,1355.0,0.0,-0.70711,0.0,0.70711],[509,13.0,5.0,1355.0,0.0,0.0,0.0,1.0],[803,14.0,25.0,1335.0,0.0,0.0,0.0,1.0],[773,0.0,0.0,1305.0,0.0,0.0,0.0,1.0],[564,0.0,-1.0,1280.0,0.0,0.0,0.0,1.0],[803,14.0,25.0,1255.0,0.0,0.0,0.0,1.0],[777,-15.0,0.0,1205.0,0.0,0.70711,0.0,0.70711],[509,-13.0,5.0,1205.0,0.0,0.0,0.0,1.0],[773,0.0,0.0,1205.0,0.0,0.0,0.0,1.0],[803,14.0,25.0,1175.0,0.0,0.0,0.0,1.0],[564,0.0,-1.0,1130.0,0.0,0.0,0.0,1.0],[773,0.0,0.0,1105.0,0.0,0.0,0.0,1.0],[803,14.0,25.0,1095.0,0.0,0.0,0.0,1.0],[777,-15.0,0.0,1055.0,0.0,0.70711,0.0,0.70711],[509,-13.0,5.0,1055.0,0.0,0.0,0.0,1.0],[803,14.0,25.0,1015.0,0.0,0.0,0.0,1.0],[773,0.0,0.0,1005.0,0.0,0.0,0.0,1.0],[564,0.0,-1.0,980.0,0.0,0.0,0.0,1.0],[803,14.0,25.0,935.0,0.0,0.0,0.0,1.0],[777,15.0,0.0,905.0,0.0,-0.70711,0.0,0.70711],[509,13.0,5.0,905.0,0.0,-1.0,0.0,0.0],[773,0.0,0.0,905.0,0.0,0.0,0.0,1.0],[803,14.0,25.0,855.0,0.0,0.0,0.0,1.0],[564,0.0,-1.0,830.0,0.0,0.0,0.0,1.0],[773,0.0,0.0,805.0,0.0,0.0,0.0,1.0],[803,14.0,25.0,775.0,0.0,0.0,0.0,1.0],[777,15.0,0.0,755.0,0.0,-0.70711,0.0,0.70711],[509,13.0,5.0,755.0,0.0,-1.0,0.0,0.0],[803,14.0,25.0,695.0,0.0,0.0,0.0,1.0],[773,0.0,0.0,705.0,0.0,0.0,0.0,1.0],[564,0.0,-1.0,680.0,0.0,0.0,0.0,1.0],[803,14.0,25.0,615.0,0.0,0.0,0.0,1.0],[509,-13.0,5.0,605.0,0.0,0.0,0.0,1.0],[777,-15.0,0.0,605.0,0.0,0.70711,0.0,0.70711],[773,0.0,0.0,405.0,0.0,0.0,0.0,1.0],[803,14.0,25.0,455.0,0.0,0.0,0.0,1.0],[509,13.0,5.0,455.0,0.0,-1.0,0.0,0.0],[777,15.0,0.0,455.0,0.0,-0.70711,0.0,0.70711],[773,0.0,0.0,505.0,0.0,0.0,0.0,1.0],[564,0.0,-1.0,530.0,0.0,0.0,0.0,1.0],[803,14.0,25.0,535.0,0.0,0.0,0.0,1.0],[773,0.0,0.0,605.0,0.0,0.0,0.0,1.0],[773,0.0,0.0,305.0,0.0,0.0,0.0,1.0],[509,-13.0,5.0,305.0,0.0,0.0,0.0,1.0],[777,-15.0,0.0,305.0,0.0,0.70711,0.0,0.70711],[803,14.0,25.0,375.0,0.0,0.0,0.0,1.0],[564,0.0,-1.0,380.0,0.0,0.0,0.0,1.0],[803,14.0,25.0,295.0,0.0,0.0,0.0,1.0],[803,14.0,25.0,215.0,0.0,0.0,0.0,1.0],[564,0.0,-1.0,230.0,0.0,0.0,0.0,1.0],[773,0.0,0.0,105.0,0.0,0.0,0.0,1.0],[803,14.0,25.0,135.0,0.0,0.0,0.0,1.0],[773,0.0,0.0,205.0,0.0,0.0,0.0,1.0],[773,0.0,0.0,5.0,0.0,0.0,0.0,1.0],[752,14.0,-5.0,-10.0,0.0,0.0,0.0,1.0],[773,0.0,0.0,-95.0,0.0,0.0,0.0,1.0],[528,0.0,0.0,-148.0,0.0,0.0,0.0,1.0],[683,0.0,-2.0,-8423.0,0.0,0.0,0.0,1.0],[541,0.0,0.0,-223.0,0.0,-1.0,0.0,0.0],[532,0.0,0.0,-323.0,0.0,-1.0,0.0,0.0],[532,0.0,0.0,-423.0,0.0,-1.0,0.0,0.0],[528,0.0,0.0,-498.0,0.0,-1.0,0.0,0.0],[497,0.0,1.0,-554.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,-653.0,0.0,-1.0,0.0,0.0],[497,0.0,1.0,-654.0,0.0,-1.0,0.0,0.0],[497,0.0,0.0,-853.0,0.0,0.0,0.0,1.0],[585,0.0,0.0,-903.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,-953.0,0.0,0.0,0.0,1.0],[497,0.0,0.0,-953.0,0.0,0.0,0.0,1.0],[497,0.0,0.0,-1053.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,-1053.0,0.0,-1.0,0.0,0.0],[497,0.0,0.0,-1153.0,0.0,-1.0,0.0,0.0],[490,0.0,5.0,-1253.0,0.0,0.0,0.0,1.0],[519,0.0,5.0,-1353.0,0.0,0.0,0.0,1.0],[519,0.0,5.0,-1453.0,0.0,0.0,0.0,1.0],[519,0.0,5.0,-1553.0,0.0,0.0,0.0,1.0],[519,0.0,5.0,-1653.0,0.0,0.0,0.0,1.0],[519,0.0,5.0,-1753.0,0.0,0.0,0.0,1.0],[519,0.0,5.0,-1853.0,0.0,0.0,0.0,1.0],[519,0.0,5.0,-1953.0,0.0,0.0,0.0,1.0],[519,0.0,5.0,-2053.0,0.0,0.0,0.0,1.0],[519,0.0,5.0,-2153.0,0.0,0.0,0.0,1.0],[490,0.0,5.0,-2253.0,0.0,-1.0,0.0,0.0],[497,0.0,0.0,-2353.0,0.0,0.0,0.0,1.0],[564,0.0,21.5,-2403.5,0.0,0.0,0.0,1.0],[497,0.0,0.0,-2453.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-2453.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-2553.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,-2553.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,-2653.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-2653.0,0.0,0.0,0.0,1.0],[509,2.0,8.0,-2673.0,0.0,0.0,0.0,1.0],[513,0.0,-2.0,-2703.0,0.0,0.0,0.0,1.0],[513,0.0,-2.0,-2703.0,0.0,-1.0,0.0,0.0],[509,-2.0,8.0,-2728.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-2753.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,-2753.0,0.0,0.0,0.0,1.0],[557,10.78,0.0,-2802.81,0.0,-1.0,0.0,0.0],[516,0.0,0.0,-2853.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-2853.0,0.0,0.0,0.0,1.0],[564,0.0,12.5,-2903.5,0.0,0.0,0.0,1.0],[524,0.0,0.0,-2953.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,-2953.0,0.0,0.0,0.0,1.0],[557,10.78,0.0,-3002.81,0.0,-1.0,0.0,0.0],[524,0.0,0.0,-3053.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,-3053.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,-3153.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-3153.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,-3253.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-3253.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,-3353.0,0.0,0.0,0.0,1.0],[564,0.0,-1.5,-3403.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,-3453.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-3453.0,0.0,0.0,0.0,1.0],[557,-10.0,0.0,-3503.0,0.0,0.0,0.0,1.0],[497,0.0,0.0,-3553.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-3553.0,0.0,0.0,0.0,1.0],[551,0.0,3.0,-3653.0,0.0,0.0,0.0,1.0],[497,0.0,0.0,-3753.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-3853.0,0.0,0.0,0.0,1.0],[497,0.0,0.0,-3853.0,0.0,0.0,0.0,1.0],[497,0.0,0.0,-3953.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-3953.0,0.0,0.0,0.0,1.0],[528,0.0,0.0,-3978.0,0.0,0.0,0.0,1.0],[532,0.0,0.0,-4053.0,0.0,0.0,0.0,1.0],[547,0.0,0.0,-4153.0,0.0,0.0,0.0,1.0],[532,0.0,0.0,-4253.0,0.0,0.0,0.0,1.0],[532,0.0,0.0,-4353.0,0.0,0.0,0.0,1.0],[541,0.0,0.0,-4453.0,0.0,0.0,0.0,1.0],[532,0.0,0.0,-4553.0,0.0,0.0,0.0,1.0],[532,0.0,0.0,-4653.0,0.0,-1.0,0.0,0.0],[532,0.0,0.0,-4753.0,0.0,-1.0,0.0,0.0],[532,0.0,0.0,-4853.0,0.0,-1.0,0.0,0.0],[528,0.0,0.0,-4928.0,0.0,-1.0,0.0,0.0],[497,0.0,0.0,-4978.0,0.0,-1.0,0.0,0.0],[524,0.0,0.0,-5078.0,0.0,-1.0,0.0,0.0],[497,0.0,0.0,-5078.0,0.0,-1.0,0.0,0.0],[497,0.0,0.0,-5178.0,0.0,-1.0,0.0,0.0],[490,0.0,1.0,-5278.0,0.0,0.0,0.0,1.0],[519,0.0,1.0,-5378.0,0.0,0.0,0.0,1.0],[519,0.0,1.0,-5478.0,0.0,0.0,0.0,1.0],[519,0.0,1.0,-5578.0,0.0,0.0,0.0,1.0],[606,-8.99,1.0,-5611.02,0.0,0.0,0.0,1.0],[519,0.0,1.0,-5678.0,0.0,0.0,0.0,1.0],[519,0.0,1.0,-5778.0,0.0,0.0,0.0,1.0],[606,0.0,1.0,-5838.0,0.0,0.0,0.0,1.0],[519,0.0,1.0,-5878.0,0.0,0.0,0.0,1.0],[519,0.0,1.0,-5978.0,0.0,0.0,0.0,1.0],[620,0.0,1.0,-6128.0,0.0,0.0,0.0,1.0],[519,0.0,1.0,-6278.0,0.0,-1.0,0.0,0.0],[519,0.0,1.0,-6378.0,0.0,-1.0,0.0,0.0],[606,-10.0,1.0,-6448.0,0.0,0.0,0.0,1.0],[519,0.0,1.0,-6478.0,0.0,-1.0,0.0,0.0],[519,0.0,1.0,-6578.0,0.0,-1.0,0.0,0.0],[606,5.0,1.0,-6613.0,0.0,0.0,0.0,1.0],[490,0.0,1.0,-6678.0,0.0,-1.0,0.0,0.0],[497,0.0,0.0,-6773.0,0.0,0.0,0.0,1.0],[497,0.0,0.0,-6873.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-6873.0,0.0,0.0,0.0,1.0],[585,0.0,0.0,-6923.0,0.0,0.0,0.0,1.0],[497,0.0,0.0,-6973.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-6973.0,0.0,0.0,0.0,1.0],[497,0.0,0.0,-7173.0,0.0,0.0,0.0,1.0],[528,0.0,0.0,-7223.0,0.0,0.0,0.0,1.0],[532,0.0,0.0,-7298.0,0.0,0.0,0.0,1.0],[532,0.0,0.0,-7398.0,0.0,0.0,0.0,1.0],[541,0.0,0.0,-7498.0,0.0,0.0,0.0,1.0],[541,0.0,0.0,-7598.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,-8323.0,0.0,0.0,0.0,1.0],[532,0.0,0.0,-7698.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,-8223.0,0.0,0.0,0.0,1.0],[532,0.0,0.0,-7798.0,0.0,0.0,0.0,1.0],[532,0.0,0.0,-7898.0,0.0,0.0,0.0,1.0],[532,0.0,0.0,-7998.0,0.0,0.0,0.0,1.0],[528,0.0,0.0,-8073.0,0.0,-1.0,0.0,0.0],[516,0.0,0.0,-8123.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-10223.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,-10223.0,0.0,0.0,0.0,1.0],[598,10.0,0.1,-10315.5,0.0,-1.0,0.0,0.0],[516,0.0,0.0,-10323.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-10323.0,0.0,0.0,0.0,1.0],[616,7.0,0.0,-10473.0,0.0,0.0,0.0,1.0],[594,0.0,0.0,-10473.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-10423.0,0.0,0.0,0.0,1.0],[557,0.0,0.0,-10653.0,0.0,0.0,0.0,1.0],[602,7.0,20.1,-10648.0,0.0,-1.0,0.0,0.0],[497,0.0,0.0,-10623.0,0.0,0.0,0.0,1.0],[557,0.0,0.0,-10593.0,0.0,0.0,0.0,1.0],[616,7.0,0.0,-10573.0,0.0,0.0,0.0,1.0],[602,10.0,20.1,-10887.7,0.0,-1.0,0.0,0.0],[616,7.0,0.0,-10773.0,0.0,0.0,0.0,1.0],[594,0.0,0.0,-10773.0,0.0,0.0,0.0,1.0],[598,10.0,0.1,-11010.2,0.0,0.0,0.0,1.0],[524,0.0,0.0,-10923.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,-10923.0,0.0,0.0,0.0,1.0],[509,13.01,0.0,-10909.82,0.0,0.0,0.0,1.0],[509,-3.99,0.0,-10909.82,0.0,0.0,0.0,1.0],[524,0.0,0.0,-11023.0,0.0,0.0,0.0,1.0],[497,0.0,0.0,-11223.0,0.0,0.0,0.0,1.0],[497,0.0,0.0,-11223.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-11223.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,-11123.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-11123.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,-11023.0,0.0,0.0,0.0,1.0],[528,0.0,0.0,-11273.0,0.0,0.0,0.0,1.0],[532,0.0,0.0,-11348.0,0.0,0.0,0.0,1.0],[532,0.0,0.0,-11448.0,0.0,-1.0,0.0,0.0],[528,0.0,0.0,-11523.0,0.0,-1.0,0.0,0.0],[497,0.0,0.0,-11573.0,0.0,-1.0,0.0,0.0],[497,0.0,0.0,-11673.0,0.0,0.0,0.0,1.0],[777,-25.0,0.0,-11748.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-11773.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,-11773.0,0.0,0.0,0.0,1.0],[557,-10.0,1.0,-11773.0,0.0,0.0,0.0,1.0],[777,-25.0,0.0,-11798.0,0.0,-1.0,0.0,0.0],[516,0.0,0.0,-11873.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-11873.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-11973.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,-11973.0,0.0,0.0,0.0,1.0],[777,25.0,0.0,-12048.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-12073.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,-12073.0,0.0,0.0,0.0,1.0],[557,10.0,1.0,-12073.0,0.0,-1.0,0.0,0.0],[777,25.0,0.0,-12098.0,0.0,-1.0,0.0,0.0],[777,25.0,0.0,-12148.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-12173.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,-12173.0,0.0,0.0,0.0,1.0],[557,10.0,1.0,-12173.0,0.0,-1.0,0.0,0.0],[777,25.0,0.0,-12198.0,0.0,-1.0,0.0,0.0],[516,0.0,0.0,-12273.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-12273.0,0.0,0.0,0.0,1.0],[516,0.0,0.0,-12373.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-12373.0,0.0,0.0,0.0,1.0],[524,0.0,0.0,-12473.0,0.0,0.0,0.0,1.0],[497,0.0,0.0,-12473.0,0.0,0.0,0.0,1.0],[509,64.05,0.06,-12475.62,0.0,-1.0,0.0,0.0],[509,-54.05,0.06,-12510.38,0.0,0.0,0.0,1.0],[509,64.05,0.06,-12525.62,0.0,-1.0,0.0,0.0],[509,-54.05,0.06,-12560.38,0.0,0.0,0.0,1.0],[784,0.0,0.0,-12563.0,0.0,0.0,0.0,1.0],[773,0.0,0.0,-12663.0,0.0,0.0,0.0,1.0],[773,0.0,0.0,-12763.0,0.0,0.0,0.0,1.0],[773,0.0,0.0,-12863.0,0.0,0.0,0.0,1.0],[509,-10.0,1.0,-12933.0,0.0,0.0,0.0,1.0],[773,0.0,0.0,-12963.0,0.0,0.0,0.0,1.0],[509,-10.0,1.0,-12988.0,0.0,0.0,0.0,1.0],[564,-5.0,7.0,-13013.0,0.0,0.0,0.0,1.0],[509,-10.0,1.0,-13033.0,0.0,0.0,0.0,1.0],[773,0.0,0.0,-13063.0,0.0,0.0,0.0,1.0],[773,0.0,0.0,-13163.0,0.0,0.0,0.0,1.0],[509,-10.0,1.0,-13188.0,0.0,0.0,0.0,1.0],[564,0.0,7.0,-13213.0,0.0,0.0,0.0,1.0],[509,-10.0,1.0,-13238.0,0.0,0.0,0.0,1.0],[773,0.0,0.0,-13263.0,0.0,0.0,0.0,1.0],[509,-10.0,1.0,-13278.0,0.0,0.0,0.0,1.0],[773,0.0,0.0,-13363.0,0.0,0.0,0.0,1.0],[773,0.0,0.0,-13463.0,0.0,0.0,0.0,1.0],[773,0.0,0.0,-13563.0,0.0,0.0,0.0,1.0],[777,30.0,0.0,-13613.0,0.0,0.0,0.0,1.0],[629,15.0,1.0,-13638.0,0.0,0.0,0.0,1.0],[773,0.0,0.0,-13663.0,0.0,0.0,0.0,1.0],[629,15.0,1.0,-13673.0,0.0,0.0,0.0,1.0],[777,30.0,0.0,-13703.0,0.0,-1.0,0.0,0.0],[773,0.0,0.0,-13763.0,0.0,0.0,0.0,1.0],[773,0.0,0.0,-13863.0,0.0,0.0,0.0,1.0],[490,0.0,1.0,-13963.0,0.0,0.0,0.0,1.0],[519,0.0,1.0,-14063.0,0.0,0.0,0.0,1.0],[606,10.0,1.0,-14088.0,0.0,0.0,0.0,1.0],[519,0.0,1.0,-14163.0,0.0,0.0,0.0,1.0],[606,-10.0,1.0,-14198.0,0.0,0.0,0.0,1.0],[519,0.0,1.0,-14263.0,0.0,0.0,0.0,1.0],[606,0.0,1.0,-14338.0,0.0,0.0,0.0,1.0],[519,0.0,1.0,-14363.0,0.0,0.0,0.0,1.0],[606,0.0,1.0,-14388.0,0.0,0.0,0.0,1.0],[519,0.0,1.0,-14463.0,0.0,0.0,0.0,1.0],[519,0.0,1.0,-14563.0,0.0,0.0,0.0,1.0],[606,0.0,1.0,-14588.0,0.0,0.0,0.0,1.0],[490,0.0,1.0,-14663.0,0.0,-1.0,0.0,0.0],[509,-98.05,0.06,-14675.38,0.0,0.0,0.0,1.0],[509,-98.05,0.06,-14695.38,0.0,0.0,0.0,1.0],[773,0.0,0.0,-14763.0,0.0,0.0,0.0,1.0],[777,-25.0,0.0,-14778.0,0.0,0.0,0.0,1.0],[509,-15.0,5.0,-14783.0,0.0,-1.0,0.0,0.0],[509,-15.0,5.0,-14843.0,0.0,0.0,0.0,1.0],[773,0.0,0.0,-14863.0,0.0,0.0,0.0,1.0],[777,-25.0,0.0,-14848.0,0.0,-1.0,0.0,0.0],[791,0.0,1.0,-15063.0,0.0,0.0,0.0,1.0],[797,0.0,1.0,-15188.0,0.0,0.0,0.0,1.0],[570,5.0,-8.0,-15298.0,0.0,0.0,0.0,1.0],[557,5.0,-242.0,-8695.0,0.0,0.0,0.0,2.0]]},{"key":"trough","name":"-- Ares' Armpits --","noart":216,"i":[[784,-55.0,0.0,0.0,0.0,0.0,0.0,1.0],[516,50.0,0.0,150.0,0.0,0.0,0.0,1.0],[784,-55.0,0.0,120.0,0.0,1.0,0.0,0.0],[695,-55.0,-59.5,3181.0,0.0,1.0,0.0,0.0],[516,50.0,0.0,250.0,0.0,0.0,0.0,1.0],[784,-55.0,0.0,220.0,0.0,0.0,0.0,1.0],[516,50.0,0.0,350.0,0.0,0.0,0.0,1.0],[784,-55.0,0.0,340.0,0.0,1.0,0.0,0.0],[516,50.0,0.0,450.0,0.0,0.0,0.0,1.0],[784,-55.0,0.0,440.0,0.0,0.0,0.0,1.0],[516,50.0,0.0,550.0,0.0,0.0,0.0,1.0],[784,-55.0,0.0,560.0,0.0,1.0,0.0,0.0],[516,50.0,0.0,650.0,0.0,0.0,0.0,1.0],[784,-55.0,0.0,660.0,0.0,0.0,0.0,1.0],[516,50.0,0.0,750.0,0.0,0.0,0.0,1.0],[784,-55.0,0.0,780.0,0.0,1.0,0.0,0.0],[516,50.0,0.0,850.0,0.0,0.0,0.0,1.0],[519,0.0,5.0,5000.0,0.0,0.0,0.0,1.0],[784,-55.0,0.0,880.0,0.0,0.0,0.0,1.0],[516,50.0,0.0,950.0,0.0,0.0,0.0,1.0],[784,-55.0,0.0,1000.0,0.0,1.0,0.0,0.0],[519,0.0,5.0,5000.0,0.0,0.0,0.0,1.0],[516,50.0,0.0,1050.0,0.0,0.0,0.0,1.0],[616,0.0,31.0,500.0,0.0,0.0,0.0,1.0],[616,0.0,31.0,450.0,0.0,0.0,0.0,1.0],[616,0.0,31.0,50.0,0.0,0.0,0.0,1.0],[662,-55.0,-15.0,1306.0,0.0,1.0,0.0,0.0],[616,-10.0,31.0,500.0,0.0,0.0,0.0,1.0],[616,0.0,31.0,400.0,0.0,0.0,0.0,1.0],[532,-55.0,-59.5,2781.0,0.0,0.0,0.0,1.0],[616,0.0,31.0,550.0,0.0,0.0,0.0,1.0],[616,0.0,31.0,350.0,0.0,0.0,0.0,1.0],[519,0.0,5.0,5000.0,0.0,0.0,0.0,1.0],[662,-55.0,-35.0,1506.0,0.0,1.0,0.0,0.0],[839,50.0,0.0,-100.0,0.0,0.0,0.0,1.0],[616,-10.0,31.0,550.0,0.0,0.0,0.0,1.0],[516,50.0,0.0,-250.0,0.0,0.0,0.0,1.0],[743,30.0,81.0,100.0,0.0,0.70711,0.0,0.70711],[616,-10.0,31.0,450.0,0.0,0.0,0.0,1.0],[743,-30.0,81.0,100.0,0.0,0.70711,0.0,0.70711],[616,-10.0,31.0,400.0,0.0,0.0,0.0,1.0],[743,30.0,81.0,194.0,0.0,0.70711,0.0,0.70711],[616,0.0,31.0,250.0,0.0,0.0,0.0,1.0],[616,0.0,31.0,300.0,0.0,0.0,0.0,1.0],[743,-30.0,81.0,194.0,0.0,0.70711,0.0,0.70711],[743,90.0,81.0,100.0,0.0,0.70711,0.0,0.70711],[616,-10.0,31.0,350.0,0.0,0.0,0.0,1.0],[516,50.0,0.0,-350.0,0.0,0.0,0.0,1.0],[743,-90.0,81.0,100.0,0.0,0.70711,0.0,0.70711],[743,90.0,81.0,194.0,0.0,0.70711,0.0,0.70711],[516,50.0,0.0,-450.0,0.0,0.0,0.0,1.0],[616,0.0,31.0,150.0,0.0,0.0,0.0,1.0],[743,-90.0,81.0,194.0,0.0,0.70711,0.0,0.70711],[743,90.0,81.0,288.0,0.0,0.70711,0.0,0.70711],[743,30.0,81.0,288.0,0.0,0.70711,0.0,0.70711],[743,-30.0,81.0,288.0,0.0,0.70711,0.0,0.70711],[516,50.0,0.0,-550.0,0.0,0.0,0.0,1.0],[743,30.0,81.0,382.0,0.0,0.70711,0.0,0.70711],[743,130.0,58.0,860.0,0.0,0.70711,0.0,0.70711],[516,50.0,0.0,-650.0,0.0,0.0,0.0,1.0],[743,-30.0,81.0,382.0,0.0,0.70711,0.0,0.70711],[616,0.0,31.0,200.0,0.0,0.0,0.0,1.0],[616,0.0,31.0,0.0,0.0,0.0,0.0,1.0],[616,0.0,31.0,-100.0,0.0,0.0,0.0,1.0],[743,90.0,81.0,382.0,0.0,0.70711,0.0,0.70711],[839,50.0,0.0,-750.0,0.0,0.0,0.0,1.0],[839,50.0,0.0,-950.0,0.0,0.0,0.0,1.0],[516,50.0,0.0,-1100.0,0.0,0.0,0.0,1.0],[743,-130.0,35.0,860.0,0.0,0.70711,0.0,0.70711],[743,130.0,58.0,100.0,0.0,0.70711,0.0,0.70711],[616,0.0,31.0,100.0,0.0,0.0,0.0,1.0],[743,-130.0,58.0,385.0,0.0,0.70711,0.0,0.70711],[743,-130.0,58.0,290.0,0.0,0.70711,0.0,0.70711],[743,-130.0,58.0,195.0,0.0,0.70711,0.0,0.70711],[743,-130.0,58.0,100.0,0.0,0.70711,0.0,0.70711],[743,-130.0,58.0,575.0,0.0,0.70711,0.0,0.70711],[743,-130.0,58.0,480.0,0.0,0.70711,0.0,0.70711],[743,-130.0,58.0,670.0,0.0,0.70711,0.0,0.70711],[570,5.0,-104.5,3556.0,0.0,0.0,0.0,1.0],[743,-130.0,58.0,765.0,0.0,0.70711,0.0,0.70711],[743,130.0,35.0,100.0,0.0,0.70711,0.0,0.70711],[743,-130.0,35.0,765.0,0.0,0.70711,0.0,0.70711],[743,130.0,58.0,195.0,0.0,0.70711,0.0,0.70711],[743,-130.0,35.0,100.0,0.0,0.70711,0.0,0.70711],[743,130.0,35.0,195.0,0.0,0.70711,0.0,0.70711],[743,-130.0,35.0,195.0,0.0,0.70711,0.0,0.70711],[743,130.0,58.0,290.0,0.0,0.70711,0.0,0.70711],[743,-130.0,35.0,290.0,0.0,0.70711,0.0,0.70711],[743,130.0,35.0,290.0,0.0,0.70711,0.0,0.70711],[743,-130.0,35.0,385.0,0.0,0.70711,0.0,0.70711],[743,-130.0,58.0,860.0,0.0,0.70711,0.0,0.70711],[743,-130.0,35.0,480.0,0.0,0.70711,0.0,0.70711],[516,50.0,0.0,-750.0,0.0,0.0,0.0,1.0],[516,50.0,0.0,-850.0,0.0,0.0,0.0,1.0],[743,130.0,58.0,385.0,0.0,0.70711,0.0,0.70711],[743,-130.0,35.0,575.0,0.0,0.70711,0.0,0.70711],[743,130.0,35.0,385.0,0.0,0.70711,0.0,0.70711],[516,50.0,0.0,-950.0,0.0,0.0,0.0,1.0],[743,-130.0,35.0,670.0,0.0,0.70711,0.0,0.70711],[653,-55.0,0.5,1206.0,0.0,1.0,0.0,0.0],[743,-30.0,81.0,476.0,0.0,0.70711,0.0,0.70711],[743,30.0,81.0,476.0,0.0,0.70711,0.0,0.70711],[743,-90.0,81.0,476.0,0.0,0.70711,0.0,0.70711],[743,90.0,81.0,476.0,0.0,0.70711,0.0,0.70711],[743,130.0,58.0,480.0,0.0,0.70711,0.0,0.70711],[743,130.0,35.0,480.0,0.0,0.70711,0.0,0.70711],[743,130.0,58.0,575.0,0.0,0.70711,0.0,0.70711],[743,130.0,35.0,575.0,0.0,0.70711,0.0,0.70711],[743,130.0,58.0,670.0,0.0,0.70711,0.0,0.70711],[743,130.0,35.0,670.0,0.0,0.70711,0.0,0.70711],[743,130.0,58.0,765.0,0.0,0.70711,0.0,0.70711],[743,130.0,35.0,765.0,0.0,0.70711,0.0,0.70711],[519,0.0,5.0,5000.0,0.0,0.0,0.0,1.0],[743,-90.0,81.0,382.0,0.0,0.70711,0.0,0.70711],[743,-90.0,81.0,288.0,0.0,0.70711,0.0,0.70711],[743,130.0,35.0,860.0,0.0,0.70711,0.0,0.70711],[743,90.0,81.0,570.0,0.0,0.70711,0.0,0.70711],[743,-90.0,81.0,570.0,0.0,0.70711,0.0,0.70711],[743,30.0,81.0,570.0,0.0,0.70711,0.0,0.70711],[743,-30.0,81.0,570.0,0.0,0.70711,0.0,0.70711],[743,90.0,81.0,664.0,0.0,0.70711,0.0,0.70711],[743,-90.0,81.0,664.0,0.0,0.70711,0.0,0.70711],[743,30.0,81.0,664.0,0.0,0.70711,0.0,0.70711],[743,-30.0,81.0,664.0,0.0,0.70711,0.0,0.70711],[743,90.0,81.0,758.0,0.0,0.70711,0.0,0.70711],[743,-90.0,81.0,758.0,0.0,0.70711,0.0,0.70711],[509,10.0,10.0,5000.0,0.0,0.0,0.0,1.0],[743,30.0,81.0,758.0,0.0,0.70711,0.0,0.70711],[743,-30.0,81.0,758.0,0.0,0.70711,0.0,0.70711],[743,-30.0,81.0,852.0,0.0,0.70711,0.0,0.70711],[743,30.0,81.0,852.0,0.0,0.70711,0.0,0.70711],[743,-90.0,81.0,852.0,0.0,0.70711,0.0,0.70711],[743,90.0,81.0,852.0,0.0,0.70711,0.0,0.70711],[743,-30.0,81.0,946.0,0.0,0.70711,0.0,0.70711],[743,30.0,81.0,946.0,0.0,0.70711,0.0,0.70711],[743,-90.0,81.0,946.0,0.0,0.70711,0.0,0.70711],[743,90.0,81.0,946.0,0.0,0.70711,0.0,0.70711],[743,-30.0,81.0,6.0,0.0,0.70711,0.0,0.70711],[743,30.0,81.0,6.0,0.0,0.70711,0.0,0.70711],[743,-90.0,81.0,6.0,0.0,0.70711,0.0,0.70711],[743,90.0,81.0,6.0,0.0,0.70711,0.0,0.70711],[570,-40.0,0.0,-950.0,0.0,0.0,0.0,1.0],[616,-10.0,31.0,300.0,0.0,0.0,0.0,1.0],[524,-55.0,0.25,1106.5,0.0,0.0,0.0,1.0],[616,-10.0,31.0,-100.0,0.0,0.0,0.0,1.0],[616,-10.0,31.0,250.0,0.0,0.0,0.0,1.0],[616,0.0,31.0,600.0,0.0,0.0,0.0,1.0],[616,-10.0,31.0,200.0,0.0,0.0,0.0,1.0],[524,-55.0,-60.5,2131.0,0.0,-1.0,0.0,0.0],[616,-10.0,31.0,600.0,0.0,0.0,0.0,1.0],[616,-10.0,31.0,150.0,0.0,0.0,0.0,1.0],[743,130.0,35.0,955.0,0.0,0.70711,0.0,0.70711],[497,-55.0,-60.5,2031.0,0.0,-1.0,0.0,0.0],[616,0.0,31.0,650.0,0.0,0.0,0.0,1.0],[616,-10.0,31.0,100.0,0.0,0.0,0.0,1.0],[833,-55.0,2.5,2031.0,0.0,0.0,-1.0,0.0],[743,-130.0,58.0,955.0,0.0,0.70711,0.0,0.70711],[743,-130.0,35.0,955.0,0.0,0.70711,0.0,0.70711],[616,-10.0,31.0,650.0,0.0,0.0,0.0,1.0],[616,-10.0,31.0,50.0,0.0,0.0,0.0,1.0],[616,0.0,31.0,700.0,0.0,0.0,0.0,1.0],[616,-10.0,31.0,0.0,0.0,0.0,0.0,1.0],[826,-55.0,2.5,2031.0,-1.0,0.0,0.0,0.0],[616,-10.0,31.0,700.0,0.0,0.0,0.0,1.0],[616,0.0,31.0,750.0,0.0,0.0,0.0,1.0],[616,-10.0,31.0,750.0,0.0,0.0,0.0,1.0],[616,0.0,31.0,800.0,0.0,0.0,0.0,1.0],[743,130.0,58.0,955.0,0.0,0.70711,0.0,0.70711],[616,-10.0,31.0,800.0,0.0,0.0,0.0,1.0],[616,0.0,31.0,850.0,0.0,0.0,0.0,1.0],[616,-10.0,31.0,850.0,0.0,0.0,0.0,1.0],[616,0.0,31.0,900.0,0.0,0.0,0.0,1.0],[616,-10.0,31.0,900.0,0.0,0.0,0.0,1.0],[616,0.0,31.0,950.0,0.0,0.0,0.0,1.0],[616,-10.0,31.0,950.0,0.0,0.0,0.0,1.0],[725,-55.0,0.5,1306.0,0.0,1.0,0.0,0.0],[784,-55.0,0.0,1100.0,0.0,0.0,0.0,1.0],[662,-55.0,-25.0,1406.0,0.0,1.0,0.0,0.0],[784,-55.0,0.0,-220.0,0.0,0.0,0.0,1.0],[784,-55.0,0.0,-320.0,0.0,1.0,0.0,0.0],[784,-55.0,0.0,-440.0,0.0,0.0,0.0,1.0],[784,-55.0,0.0,-540.0,0.0,1.0,0.0,0.0],[743,90.0,81.0,-88.0,0.0,0.70711,0.0,0.70711],[784,-55.0,0.0,-660.0,0.0,0.0,0.0,1.0],[743,-90.0,81.0,-88.0,0.0,0.70711,0.0,0.70711],[743,30.0,81.0,-88.0,0.0,0.70711,0.0,0.70711],[784,-55.0,0.0,-760.0,0.0,1.0,0.0,0.0],[743,-30.0,81.0,-88.0,0.0,0.70711,0.0,0.70711],[784,-55.0,0.0,-880.0,0.0,0.0,0.0,1.0],[784,-55.0,0.0,-980.0,0.0,1.0,0.0,0.0],[743,-30.0,81.0,-182.0,0.0,0.70711,0.0,0.70711],[616,-10.0,31.0,-50.0,0.0,0.0,0.0,1.0],[616,0.0,31.0,-50.0,0.0,0.0,0.0,1.0],[616,-10.0,31.0,-150.0,0.0,0.0,0.0,1.0],[616,0.0,31.0,-150.0,0.0,0.0,0.0,1.0],[516,50.0,0.0,50.0,0.0,0.0,0.0,1.0],[784,-55.0,0.0,-100.0,0.0,1.0,0.0,0.0],[616,-10.0,31.0,-200.0,0.0,0.0,0.0,1.0],[616,0.0,31.0,-200.0,0.0,0.0,0.0,1.0],[662,-55.0,-45.0,1606.0,0.0,1.0,0.0,0.0],[743,-90.0,35.0,5000.0,0.0,-0.70711,0.0,0.70711],[743,90.0,35.0,5000.0,0.0,-0.70711,0.0,0.70711],[743,-90.0,58.0,5000.0,0.0,-0.70711,0.0,0.70711],[532,-55.0,-59.5,1706.0,0.0,0.0,0.0,1.0],[528,-55.0,-59.5,1981.0,0.0,0.0,0.0,1.0],[743,90.0,58.0,5000.0,0.0,-0.70711,0.0,0.70711],[532,-55.0,-59.5,1806.0,0.0,0.0,0.0,1.0],[743,30.0,81.0,-182.0,0.0,0.70711,0.0,0.70711],[743,-90.0,81.0,-182.0,0.0,0.70711,0.0,0.70711],[532,-55.0,-59.5,1906.0,0.0,0.0,0.0,1.0],[743,90.0,60.0,-1042.0,0.0,-0.70711,0.0,0.70711],[743,-90.0,60.0,-1042.0,0.0,-0.70711,0.0,0.70711],[743,30.0,60.0,-1042.0,0.0,-0.70711,0.0,0.70711],[743,-30.0,60.0,-1042.0,0.0,-0.70711,0.0,0.70711],[616,0.0,31.0,1000.0,0.0,0.0,0.0,1.0],[616,-10.0,31.0,1150.0,0.0,0.0,0.0,1.0],[616,0.0,31.0,1150.0,0.0,0.0,0.0,1.0],[616,-10.0,31.0,1200.0,0.0,0.0,0.0,1.0],[616,0.0,31.0,1200.0,0.0,0.0,0.0,1.0],[743,90.0,81.0,-182.0,0.0,0.70711,0.0,0.70711],[616,-10.0,31.0,1250.0,0.0,0.0,0.0,1.0],[743,-30.0,81.0,-276.0,0.0,0.70711,0.0,0.70711],[616,0.0,31.0,1250.0,0.0,0.0,0.0,1.0],[616,-10.0,31.0,1300.0,0.0,0.0,0.0,1.0],[616,0.0,31.0,1300.0,0.0,0.0,0.0,1.0],[616,-10.0,31.0,1350.0,0.0,0.0,0.0,1.0],[616,0.0,31.0,1350.0,0.0,0.0,0.0,1.0],[743,130.0,35.0,1050.0,0.0,0.70711,0.0,0.70711],[743,-130.0,58.0,1050.0,0.0,0.70711,0.0,0.70711],[743,-130.0,35.0,1050.0,0.0,0.70711,0.0,0.70711],[743,30.0,81.0,-276.0,0.0,0.70711,0.0,0.70711],[743,130.0,58.0,1050.0,0.0,0.70711,0.0,0.70711],[743,130.0,35.0,1145.0,0.0,0.70711,0.0,0.70711],[743,-130.0,58.0,1145.0,0.0,0.70711,0.0,0.70711],[743,-130.0,35.0,1145.0,0.0,0.70711,0.0,0.70711],[743,130.0,58.0,1145.0,0.0,0.70711,0.0,0.70711],[743,-90.0,81.0,-276.0,0.0,0.70711,0.0,0.70711],[743,90.0,81.0,-276.0,0.0,0.70711,0.0,0.70711],[743,-30.0,81.0,-370.0,0.0,0.70711,0.0,0.70711],[743,130.0,58.0,1240.0,0.0,0.70711,0.0,0.70711],[743,-130.0,35.0,1240.0,0.0,0.70711,0.0,0.70711],[743,30.0,81.0,-370.0,0.0,0.70711,0.0,0.70711],[743,-130.0,58.0,1240.0,0.0,0.70711,0.0,0.70711],[743,130.0,35.0,1240.0,0.0,0.70711,0.0,0.70711],[743,-90.0,81.0,-370.0,0.0,0.70711,0.0,0.70711],[743,130.0,58.0,1240.0,0.0,0.70711,0.0,0.70711],[743,90.0,81.0,-370.0,0.0,0.70711,0.0,0.70711],[743,90.0,81.0,-464.0,0.0,0.70711,0.0,0.70711],[743,-130.0,35.0,1240.0,0.0,0.70711,0.0,0.70711],[743,-90.0,81.0,-464.0,0.0,0.70711,0.0,0.70711],[743,-130.0,58.0,1240.0,0.0,0.70711,0.0,0.70711],[743,130.0,35.0,1240.0,0.0,0.70711,0.0,0.70711],[743,-90.0,-25.0,1981.0,0.0,1.0,0.0,0.0],[743,30.0,81.0,-464.0,0.0,0.70711,0.0,0.70711],[743,-30.0,81.0,-464.0,0.0,0.70711,0.0,0.70711],[743,-90.0,81.0,-558.0,0.0,0.70711,0.0,0.70711],[743,90.0,81.0,-558.0,0.0,0.70711,0.0,0.70711],[532,-55.0,-59.5,2881.0,0.0,0.0,0.0,1.0],[532,-55.0,-59.5,2981.0,0.0,0.0,0.0,1.0],[743,-30.0,81.0,-558.0,0.0,0.70711,0.0,0.70711],[532,-55.0,-59.5,3081.0,0.0,0.0,0.0,1.0],[743,30.0,81.0,-558.0,0.0,0.70711,0.0,0.70711],[743,-30.0,39.0,-1042.0,0.0,-0.70711,0.0,0.70711],[564,0.0,-1.5,5000.0,0.0,0.0,0.0,1.0],[743,30.0,39.0,-1042.0,0.0,-0.70711,0.0,0.70711],[743,-90.0,39.0,-1042.0,0.0,-0.70711,0.0,0.70711],[743,90.0,39.0,-1042.0,0.0,-0.70711,0.0,0.70711],[743,90.0,18.0,-1042.0,0.0,-0.70711,0.0,0.70711],[743,-90.0,18.0,-1042.0,0.0,-0.70711,0.0,0.70711],[743,30.0,18.0,-1042.0,0.0,-0.70711,0.0,0.70711],[743,-30.0,18.0,-1042.0,0.0,-0.70711,0.0,0.70711],[743,90.0,-3.0,-1042.0,0.0,-0.70711,0.0,0.70711],[743,-90.0,-3.0,-1042.0,0.0,-0.70711,0.0,0.70711],[743,30.0,-3.0,-1042.0,0.0,-0.70711,0.0,0.70711],[743,-30.0,-3.0,-1042.0,0.0,-0.70711,0.0,0.70711],[616,-10.0,31.0,-250.0,0.0,0.0,0.0,1.0],[616,0.0,31.0,-250.0,0.0,0.0,0.0,1.0],[616,-10.0,31.0,-300.0,0.0,0.0,0.0,1.0],[616,0.0,31.0,-300.0,0.0,0.0,0.0,1.0],[616,-10.0,31.0,-350.0,0.0,0.0,0.0,1.0],[616,0.0,31.0,-350.0,0.0,0.0,0.0,1.0],[616,-10.0,31.0,-400.0,0.0,0.0,0.0,1.0],[616,0.0,31.0,-400.0,0.0,0.0,0.0,1.0],[616,0.0,31.0,-450.0,0.0,0.0,0.0,1.0],[616,-10.0,31.0,-450.0,0.0,0.0,0.0,1.0],[616,-10.0,31.0,-500.0,0.0,0.0,0.0,1.0],[616,0.0,31.0,-500.0,0.0,0.0,0.0,1.0],[616,0.0,31.0,-550.0,0.0,0.0,0.0,1.0],[616,-10.0,31.0,-550.0,0.0,0.0,0.0,1.0],[616,0.0,31.0,-600.0,0.0,0.0,0.0,1.0],[616,-10.0,31.0,-600.0,0.0,0.0,0.0,1.0],[616,-10.0,31.0,-1000.0,0.0,0.0,0.0,1.0],[616,0.0,31.0,-1000.0,0.0,0.0,0.0,1.0],[616,-10.0,31.0,-950.0,0.0,0.0,0.0,1.0],[616,0.0,31.0,-950.0,0.0,0.0,0.0,1.0],[616,0.0,31.0,-900.0,0.0,0.0,0.0,1.0],[616,-10.0,31.0,-900.0,0.0,0.0,0.0,1.0],[616,-10.0,31.0,-850.0,0.0,0.0,0.0,1.0],[616,0.0,31.0,-850.0,0.0,0.0,0.0,1.0],[616,0.0,31.0,-800.0,0.0,0.0,0.0,1.0],[616,-10.0,31.0,-800.0,0.0,0.0,0.0,1.0],[616,0.0,31.0,-750.0,0.0,0.0,0.0,1.0],[616,-10.0,31.0,-750.0,0.0,0.0,0.0,1.0],[616,0.0,31.0,-700.0,0.0,0.0,0.0,1.0],[616,-10.0,31.0,-700.0,0.0,0.0,0.0,1.0],[616,0.0,31.0,-650.0,0.0,0.0,0.0,1.0],[616,-10.0,31.0,-650.0,0.0,0.0,0.0,1.0],[524,-55.0,-60.5,2231.0,0.0,-1.0,0.0,0.0],[826,-55.0,2.5,2131.0,-1.0,0.0,0.0,0.0],[833,-55.0,2.5,2131.0,0.0,0.0,-1.0,0.0],[743,-90.0,81.0,-652.0,0.0,0.70711,0.0,0.70711],[497,-55.0,-60.5,2131.0,0.0,-1.0,0.0,0.0],[497,-55.0,-60.5,2231.0,0.0,-1.0,0.0,0.0],[752,-55.0,-59.0,2025.0,0.0,0.0,0.0,1.0],[829,-55.0,3.0,2231.0,-1.0,0.0,0.0,0.0],[743,-30.0,81.0,-652.0,0.0,0.70711,0.0,0.70711],[455,-55.0,-61.5,2281.0,0.0,0.0,0.0,1.0],[743,30.0,81.0,-652.0,0.0,0.70711,0.0,0.70711],[497,-55.0,-60.5,2331.0,0.0,-1.0,0.0,0.0],[833,-55.0,2.5,2331.0,0.0,0.0,-1.0,0.0],[829,-55.0,3.0,2331.0,-1.0,0.0,0.0,0.0],[524,-55.0,-60.5,2431.0,0.0,-1.0,0.0,0.0],[743,90.0,81.0,-652.0,0.0,0.70711,0.0,0.70711],[497,-55.0,-60.5,2431.0,0.0,-1.0,0.0,0.0],[833,-55.0,2.5,2431.0,0.0,0.0,-1.0,0.0],[826,-55.0,2.5,2431.0,-1.0,0.0,0.0,0.0],[826,-55.0,2.5,2531.0,-1.0,0.0,0.0,0.0],[833,-55.0,2.5,2531.0,0.0,0.0,-1.0,0.0],[497,-55.0,-60.5,2531.0,0.0,-1.0,0.0,0.0],[524,-55.0,-60.5,2531.0,0.0,-1.0,0.0,0.0],[524,-55.0,-60.5,2631.0,0.0,-1.0,0.0,0.0],[497,-55.0,-60.5,2631.0,0.0,-1.0,0.0,0.0],[743,-90.0,81.0,-746.0,0.0,0.70711,0.0,0.70711],[743,90.0,81.0,-746.0,0.0,0.70711,0.0,0.70711],[743,-30.0,81.0,-746.0,0.0,0.70711,0.0,0.70711],[833,-55.0,2.5,2631.0,0.0,0.0,-1.0,0.0],[826,-55.0,2.5,2631.0,-1.0,0.0,0.0,0.0],[833,-55.0,2.5,2731.0,0.0,0.0,-1.0,0.0],[528,-55.0,-59.5,2706.0,0.0,1.0,0.0,0.0],[743,30.0,81.0,-746.0,0.0,0.70711,0.0,0.70711],[743,-90.0,-23.0,2676.0,0.0,1.0,0.0,0.0],[708,-15.0,-104.5,3556.0,0.0,-1.0,0.0,0.0],[743,-90.0,81.0,-840.0,0.0,0.70711,0.0,0.70711],[743,90.0,81.0,-840.0,0.0,0.70711,0.0,0.70711],[743,-30.0,-24.0,-1042.0,0.0,-0.70711,0.0,0.70711],[743,30.0,-24.0,-1042.0,0.0,-0.70711,0.0,0.70711],[743,-90.0,-24.0,-1042.0,0.0,-0.70711,0.0,0.70711],[743,90.0,-24.0,-1042.0,0.0,-0.70711,0.0,0.70711],[743,-30.0,81.0,-840.0,0.0,0.70711,0.0,0.70711],[743,30.0,81.0,-840.0,0.0,0.70711,0.0,0.70711],[743,90.0,81.0,-934.0,0.0,0.70711,0.0,0.70711],[743,-90.0,81.0,-934.0,0.0,0.70711,0.0,0.70711],[743,30.0,81.0,-934.0,0.0,0.70711,0.0,0.70711],[743,-30.0,81.0,-934.0,0.0,0.70711,0.0,0.70711],[743,130.0,35.0,5.0,0.0,0.70711,0.0,0.70711],[743,130.0,58.0,5.0,0.0,0.70711,0.0,0.70711],[743,-130.0,35.0,5.0,0.0,0.70711,0.0,0.70711],[743,-130.0,58.0,5.0,0.0,0.70711,0.0,0.70711],[743,130.0,35.0,-90.0,0.0,0.70711,0.0,0.70711],[743,130.0,58.0,-90.0,0.0,0.70711,0.0,0.70711],[743,-130.0,35.0,-90.0,0.0,0.70711,0.0,0.70711],[743,-130.0,58.0,-90.0,0.0,0.70711,0.0,0.70711],[743,130.0,35.0,-185.0,0.0,0.70711,0.0,0.70711],[743,130.0,58.0,-185.0,0.0,0.70711,0.0,0.70711],[743,-130.0,35.0,-185.0,0.0,0.70711,0.0,0.70711],[743,-130.0,58.0,-185.0,0.0,0.70711,0.0,0.70711],[743,130.0,35.0,-280.0,0.0,0.70711,0.0,0.70711],[743,-130.0,35.0,-280.0,0.0,0.70711,0.0,0.70711],[743,130.0,58.0,-280.0,0.0,0.70711,0.0,0.70711],[743,-130.0,58.0,-280.0,0.0,0.70711,0.0,0.70711],[743,-130.0,35.0,-375.0,0.0,0.70711,0.0,0.70711],[743,130.0,35.0,-375.0,0.0,0.70711,0.0,0.70711],[743,130.0,58.0,-375.0,0.0,0.70711,0.0,0.70711],[743,-130.0,58.0,-375.0,0.0,0.70711,0.0,0.70711],[743,-130.0,35.0,-470.0,0.0,0.70711,0.0,0.70711],[743,130.0,35.0,-470.0,0.0,0.70711,0.0,0.70711],[743,-130.0,58.0,-470.0,0.0,0.70711,0.0,0.70711],[743,130.0,58.0,-470.0,0.0,0.70711,0.0,0.70711],[743,130.0,58.0,-1040.0,0.0,0.70711,0.0,0.70711],[743,-130.0,58.0,-1040.0,0.0,0.70711,0.0,0.70711],[743,130.0,35.0,-1040.0,0.0,0.70711,0.0,0.70711],[743,-130.0,35.0,-1040.0,0.0,0.70711,0.0,0.70711],[743,-130.0,58.0,-945.0,0.0,0.70711,0.0,0.70711],[743,130.0,58.0,-945.0,0.0,0.70711,0.0,0.70711],[743,130.0,35.0,-945.0,0.0,0.70711,0.0,0.70711],[743,-130.0,35.0,-945.0,0.0,0.70711,0.0,0.70711],[743,-130.0,58.0,-850.0,0.0,0.70711,0.0,0.70711],[743,130.0,58.0,-850.0,0.0,0.70711,0.0,0.70711],[743,-130.0,35.0,-850.0,0.0,0.70711,0.0,0.70711],[743,130.0,35.0,-850.0,0.0,0.70711,0.0,0.70711],[743,-130.0,58.0,-755.0,0.0,0.70711,0.0,0.70711],[743,-130.0,35.0,-755.0,0.0,0.70711,0.0,0.70711],[743,130.0,58.0,-755.0,0.0,0.70711,0.0,0.70711],[743,130.0,35.0,-755.0,0.0,0.70711,0.0,0.70711],[743,-130.0,58.0,-660.0,0.0,0.70711,0.0,0.70711],[743,-130.0,35.0,-660.0,0.0,0.70711,0.0,0.70711],[743,130.0,58.0,-660.0,0.0,0.70711,0.0,0.70711],[743,130.0,35.0,-660.0,0.0,0.70711,0.0,0.70711],[743,-130.0,58.0,-565.0,0.0,0.70711,0.0,0.70711],[743,-130.0,35.0,-565.0,0.0,0.70711,0.0,0.70711],[743,130.0,58.0,-565.0,0.0,0.70711,0.0,0.70711],[743,130.0,35.0,-565.0,0.0,0.70711,0.0,0.70711],[743,30.0,81.0,-1028.0,0.0,0.70711,0.0,0.70711],[743,-30.0,81.0,-1028.0,0.0,0.70711,0.0,0.70711],[743,90.0,81.0,-1028.0,0.0,0.70711,0.0,0.70711],[743,-90.0,81.0,-1028.0,0.0,0.70711,0.0,0.70711],[743,-30.0,81.0,-1122.0,0.0,0.70711,0.0,0.70711],[743,30.0,81.0,-1122.0,0.0,0.70711,0.0,0.70711],[743,-90.0,81.0,-1122.0,0.0,0.70711,0.0,0.70711],[743,90.0,81.0,-1122.0,0.0,0.70711,0.0,0.70711],[519,0.0,5.0,5000.0,0.0,0.0,0.0,1.0],[557,10.78,0.0,5000.0,0.0,-1.0,0.0,0.0],[616,-10.0,31.0,1000.0,0.0,0.0,0.0,1.0],[616,0.0,31.0,1050.0,0.0,0.0,0.0,1.0],[616,-10.0,31.0,1050.0,0.0,0.0,0.0,1.0],[616,0.0,31.0,1100.0,0.0,0.0,0.0,1.0],[616,-10.0,31.0,1100.0,0.0,0.0,0.0,1.0]]},{"key":"demoderb","name":"-- Arena (Large) --","noart":451,"i":[[447,-900.0,0.0,-900.0,0.0,0.0,0.0,1.0],[858,-900.0,0.0,-900.0,0.0,0.0,0.0,1.0],[447,900.0,0.0,900.0,0.0,0.0,0.0,1.0],[858,900.0,0.0,900.0,0.0,0.0,0.0,1.0]]},{"key":"arena","name":"-- Arena (Small) --","noart":565,"i":[[743,-775.0,8.0,-730.0,0.0,0.70711,0.0,0.70711],[743,-775.0,31.0,-730.0,0.0,0.70711,0.0,0.70711],[743,775.0,8.0,-730.0,0.0,0.70711,0.0,0.70711],[743,775.0,31.0,-730.0,0.0,0.70711,0.0,0.70711],[743,-775.0,8.0,-635.0,0.0,0.70711,0.0,0.70711],[743,-775.0,31.0,-635.0,0.0,0.70711,0.0,0.70711],[743,775.0,8.0,-635.0,0.0,0.70711,0.0,0.70711],[743,775.0,31.0,-635.0,0.0,0.70711,0.0,0.70711],[743,-775.0,8.0,-540.0,0.0,0.70711,0.0,0.70711],[743,-775.0,31.0,-540.0,0.0,0.70711,0.0,0.70711],[743,775.0,8.0,-540.0,0.0,0.70711,0.0,0.70711],[743,775.0,31.0,-540.0,0.0,0.70711,0.0,0.70711],[743,-775.0,8.0,-445.0,0.0,0.70711,0.0,0.70711],[743,-775.0,31.0,-445.0,0.0,0.70711,0.0,0.70711],[743,775.0,8.0,-445.0,0.0,0.70711,0.0,0.70711],[743,775.0,31.0,-445.0,0.0,0.70711,0.0,0.70711],[743,-775.0,8.0,-350.0,0.0,0.70711,0.0,0.70711],[743,-775.0,31.0,-350.0,0.0,0.70711,0.0,0.70711],[743,775.0,8.0,-350.0,0.0,0.70711,0.0,0.70711],[743,775.0,31.0,-350.0,0.0,0.70711,0.0,0.70711],[743,-775.0,8.0,-255.0,0.0,0.70711,0.0,0.70711],[743,-775.0,31.0,-255.0,0.0,0.70711,0.0,0.70711],[743,775.0,8.0,-255.0,0.0,0.70711,0.0,0.70711],[743,775.0,31.0,-255.0,0.0,0.70711,0.0,0.70711],[743,-775.0,8.0,-160.0,0.0,0.70711,0.0,0.70711],[743,-775.0,31.0,-160.0,0.0,0.70711,0.0,0.70711],[743,775.0,8.0,-160.0,0.0,0.70711,0.0,0.70711],[743,775.0,31.0,-160.0,0.0,0.70711,0.0,0.70711],[743,-775.0,8.0,-65.0,0.0,0.70711,0.0,0.70711],[743,-775.0,31.0,-65.0,0.0,0.70711,0.0,0.70711],[743,775.0,8.0,-65.0,0.0,0.70711,0.0,0.70711],[743,775.0,31.0,-65.0,0.0,0.70711,0.0,0.70711],[743,-775.0,8.0,30.0,0.0,0.70711,0.0,0.70711],[743,-775.0,31.0,30.0,0.0,0.70711,0.0,0.70711],[743,775.0,8.0,30.0,0.0,0.70711,0.0,0.70711],[743,775.0,31.0,30.0,0.0,0.70711,0.0,0.70711],[743,-775.0,8.0,125.0,0.0,0.70711,0.0,0.70711],[743,-775.0,31.0,125.0,0.0,0.70711,0.0,0.70711],[743,775.0,8.0,125.0,0.0,0.70711,0.0,0.70711],[743,775.0,31.0,125.0,0.0,0.70711,0.0,0.70711],[743,-775.0,8.0,220.0,0.0,0.70711,0.0,0.70711],[743,-775.0,31.0,220.0,0.0,0.70711,0.0,0.70711],[743,775.0,8.0,220.0,0.0,0.70711,0.0,0.70711],[743,775.0,31.0,220.0,0.0,0.70711,0.0,0.70711],[743,-775.0,8.0,315.0,0.0,0.70711,0.0,0.70711],[743,-775.0,31.0,315.0,0.0,0.70711,0.0,0.70711],[743,775.0,8.0,315.0,0.0,0.70711,0.0,0.70711],[743,775.0,31.0,315.0,0.0,0.70711,0.0,0.70711],[743,-775.0,8.0,410.0,0.0,0.70711,0.0,0.70711],[743,-775.0,31.0,410.0,0.0,0.70711,0.0,0.70711],[743,775.0,8.0,410.0,0.0,0.70711,0.0,0.70711],[743,775.0,31.0,410.0,0.0,0.70711,0.0,0.70711],[743,-775.0,8.0,505.0,0.0,0.70711,0.0,0.70711],[743,-775.0,31.0,505.0,0.0,0.70711,0.0,0.70711],[743,775.0,8.0,505.0,0.0,0.70711,0.0,0.70711],[743,775.0,31.0,505.0,0.0,0.70711,0.0,0.70711],[743,-775.0,8.0,600.0,0.0,0.70711,0.0,0.70711],[743,-775.0,31.0,600.0,0.0,0.70711,0.0,0.70711],[743,775.0,8.0,600.0,0.0,0.70711,0.0,0.70711],[743,775.0,31.0,600.0,0.0,0.70711,0.0,0.70711],[743,-775.0,8.0,695.0,0.0,0.70711,0.0,0.70711],[743,-775.0,31.0,695.0,0.0,0.70711,0.0,0.70711],[743,775.0,8.0,695.0,0.0,0.70711,0.0,0.70711],[743,775.0,31.0,695.0,0.0,0.70711,0.0,0.70711],[743,-755.0,8.0,-750.0,0.0,1.0,0.0,0.0],[743,-755.0,31.0,-750.0,0.0,1.0,0.0,0.0],[743,-660.0,31.0,-750.0,0.0,1.0,0.0,0.0],[743,-660.0,8.0,-750.0,0.0,1.0,0.0,0.0],[743,-565.0,31.0,-750.0,0.0,1.0,0.0,0.0],[743,-565.0,8.0,-750.0,0.0,1.0,0.0,0.0],[743,-470.0,31.0,-750.0,0.0,1.0,0.0,0.0],[743,-470.0,8.0,-750.0,0.0,1.0,0.0,0.0],[743,-375.0,31.0,-750.0,0.0,1.0,0.0,0.0],[743,-375.0,8.0,-750.0,0.0,1.0,0.0,0.0],[743,-280.0,31.0,-750.0,0.0,1.0,0.0,0.0],[743,-280.0,8.0,-750.0,0.0,1.0,0.0,0.0],[743,-185.0,31.0,-750.0,0.0,1.0,0.0,0.0],[743,-185.0,8.0,-750.0,0.0,1.0,0.0,0.0],[743,-90.0,31.0,-750.0,0.0,1.0,0.0,0.0],[743,-90.0,8.0,-750.0,0.0,1.0,0.0,0.0],[743,90.0,31.0,-750.0,0.0,1.0,0.0,0.0],[743,90.0,8.0,-750.0,0.0,1.0,0.0,0.0],[743,185.0,31.0,-750.0,0.0,1.0,0.0,0.0],[743,185.0,8.0,-750.0,0.0,1.0,0.0,0.0],[743,280.0,31.0,-750.0,0.0,1.0,0.0,0.0],[743,280.0,8.0,-750.0,0.0,1.0,0.0,0.0],[743,375.0,31.0,-750.0,0.0,1.0,0.0,0.0],[743,375.0,8.0,-750.0,0.0,1.0,0.0,0.0],[743,470.0,31.0,-750.0,0.0,1.0,0.0,0.0],[743,470.0,8.0,-750.0,0.0,1.0,0.0,0.0],[743,565.0,31.0,-750.0,0.0,1.0,0.0,0.0],[743,565.0,8.0,-750.0,0.0,1.0,0.0,0.0],[743,660.0,31.0,-750.0,0.0,1.0,0.0,0.0],[743,660.0,8.0,-750.0,0.0,1.0,0.0,0.0],[743,-5.0,8.0,-750.0,0.0,1.0,0.0,0.0],[743,-5.0,31.0,-750.0,0.0,1.0,0.0,0.0],[743,-5.0,31.0,750.0,0.0,1.0,0.0,0.0],[743,-5.0,8.0,750.0,0.0,1.0,0.0,0.0],[743,660.0,8.0,750.0,0.0,1.0,0.0,0.0],[743,660.0,31.0,750.0,0.0,1.0,0.0,0.0],[743,565.0,8.0,750.0,0.0,1.0,0.0,0.0],[743,565.0,31.0,750.0,0.0,1.0,0.0,0.0],[743,470.0,8.0,750.0,0.0,1.0,0.0,0.0],[743,470.0,31.0,750.0,0.0,1.0,0.0,0.0],[743,375.0,8.0,750.0,0.0,1.0,0.0,0.0],[743,375.0,31.0,750.0,0.0,1.0,0.0,0.0],[743,280.0,8.0,750.0,0.0,1.0,0.0,0.0],[743,280.0,31.0,750.0,0.0,1.0,0.0,0.0],[743,185.0,8.0,750.0,0.0,1.0,0.0,0.0],[743,185.0,31.0,750.0,0.0,1.0,0.0,0.0],[743,90.0,8.0,750.0,0.0,1.0,0.0,0.0],[743,90.0,31.0,750.0,0.0,1.0,0.0,0.0],[743,-90.0,8.0,750.0,0.0,1.0,0.0,0.0],[743,-90.0,31.0,750.0,0.0,1.0,0.0,0.0],[743,-185.0,8.0,750.0,0.0,1.0,0.0,0.0],[743,-185.0,31.0,750.0,0.0,1.0,0.0,0.0],[743,-280.0,8.0,750.0,0.0,1.0,0.0,0.0],[743,-280.0,31.0,750.0,0.0,1.0,0.0,0.0],[743,-375.0,8.0,750.0,0.0,1.0,0.0,0.0],[743,-375.0,31.0,750.0,0.0,1.0,0.0,0.0],[743,-470.0,8.0,750.0,0.0,1.0,0.0,0.0],[743,-470.0,31.0,750.0,0.0,1.0,0.0,0.0],[743,-565.0,8.0,750.0,0.0,1.0,0.0,0.0],[743,-565.0,31.0,750.0,0.0,1.0,0.0,0.0],[743,-660.0,8.0,750.0,0.0,1.0,0.0,0.0],[743,-660.0,31.0,750.0,0.0,1.0,0.0,0.0],[743,-755.0,31.0,750.0,0.0,1.0,0.0,0.0],[743,-755.0,8.0,750.0,0.0,1.0,0.0,0.0],[570,-500.0,20.0,-500.0,0.0,0.0,0.0,1.0],[570,500.0,20.0,500.0,0.0,0.0,0.0,1.0]]},{"key":"rpweekend2014","name":"-- Zaxxis --","noart":531,"i":[[858,0.0,22.0,-2230.0,0.0,0.0,0.0,1.0],[557,0.0,22.0,-2145.0,0.0,0.70711,0.0,0.70711],[557,-15.0,22.0,-2130.0,0.0,-1.0,0.0,0.0],[557,15.0,22.0,-2130.0,0.0,0.0,0.0,1.0],[760,0.0,22.0,-2130.0,0.0,0.0,0.0,1.0],[760,0.0,57.0,-2130.0,0.0,0.0,0.0,1.0],[842,0.0,22.0,-2130.0,0.0,-1.0,0.0,0.0],[557,0.0,22.0,-2115.0,0.0,-0.70711,0.0,0.70711],[509,45.0,26.0,-1995.0,0.0,0.0,0.0,1.0],[509,-45.0,26.0,-1995.0,0.0,0.0,0.0,1.0],[777,45.0,21.0,-1995.0,0.0,-1.0,0.0,0.0],[777,-45.0,21.0,-1995.0,0.0,-1.0,0.0,0.0],[691,0.0,22.0,-1880.0,0.0,0.0,0.0,1.0],[532,0.0,16.0,-1720.0,0.0,0.0,0.0,1.0],[541,0.0,16.0,-1620.0,0.0,0.0,0.0,1.0],[524,0.0,16.9,-1575.0,0.0,0.0,0.0,1.0],[528,0.0,16.0,-1545.0,0.0,0.0,0.0,1.0],[524,0.0,16.9,-1475.0,0.0,0.0,0.0,1.0],[653,0.0,17.0,-1475.0,0.0,-1.0,0.0,0.0],[524,0.0,16.9,-1375.0,0.0,0.0,0.0,1.0],[653,0.0,17.0,-1375.0,0.0,0.0,0.0,1.0],[524,0.0,16.0,-1250.0,0.0,0.0,0.0,1.0],[687,0.0,17.0,-1250.0,0.0,0.0,0.0,1.0],[784,0.0,16.0,-1150.0,0.0,0.0,0.0,1.0],[490,0.0,18.0,-1050.0,0.0,-1.0,0.0,0.0],[641,25.0,18.0,-1015.0,0.0,-1.0,0.0,0.0],[641,-25.0,18.0,-1015.0,0.0,0.0,0.0,1.0],[519,0.0,18.0,-950.0,0.0,0.0,0.0,1.0],[519,0.0,18.0,-850.0,0.0,0.0,0.0,1.0],[519,0.0,18.0,-750.0,0.0,0.0,0.0,1.0],[490,0.0,18.0,-650.0,0.0,0.0,0.0,1.0],[497,0.0,-8.0,-600.0,0.0,0.0,0.0,1.0],[602,35.0,18.0,-570.0,0.0,0.0,0.0,1.0],[602,25.0,18.0,-570.0,0.0,0.0,0.0,1.0],[760,12.0,-15.0,-550.0,0.0,0.0,0.0,1.0],[760,-22.0,-15.0,-550.0,0.0,-1.0,0.0,0.0],[767,-5.0,-12.0,-530.0,0.0,-1.0,0.0,0.0],[497,0.0,-8.0,-500.0,0.0,0.0,0.0,1.0],[602,35.0,18.0,-490.0,0.0,0.0,0.0,1.0],[602,25.0,18.0,-490.0,0.0,0.0,0.0,1.0],[602,35.0,18.0,-410.0,0.0,0.0,0.0,1.0],[602,25.0,18.0,-410.0,0.0,0.0,0.0,1.0],[497,0.0,-8.0,-400.0,0.0,0.0,0.0,1.0],[557,17.0,-5.0,-350.0,0.0,-1.0,0.0,0.0],[602,35.0,18.0,-330.0,0.0,0.0,0.0,1.0],[602,25.0,18.0,-330.0,0.0,0.0,0.0,1.0],[497,0.0,-8.0,-300.0,0.0,0.0,0.0,1.0],[557,-22.0,-5.0,-300.0,0.0,0.0,0.0,1.0],[557,17.0,-5.0,-250.0,0.0,-1.0,0.0,0.0],[602,35.0,18.0,-250.0,0.0,0.0,0.0,1.0],[602,25.0,18.0,-250.0,0.0,0.0,0.0,1.0],[497,0.0,-8.0,-200.0,0.0,0.0,0.0,1.0],[557,-22.0,-5.0,-200.0,0.0,0.0,0.0,1.0],[602,35.0,18.0,-170.0,0.0,0.0,0.0,1.0],[602,25.0,18.0,-170.0,0.0,0.0,0.0,1.0],[557,17.0,-5.0,-150.0,0.0,-1.0,0.0,0.0],[497,0.0,-8.0,-100.0,0.0,0.0,0.0,1.0],[557,-22.0,-5.0,-100.0,0.0,0.0,0.0,1.0],[602,35.0,18.0,-90.0,0.0,0.0,0.0,1.0],[602,25.0,18.0,-90.0,0.0,0.0,0.0,1.0],[602,35.0,18.0,-10.0,0.0,0.0,0.0,1.0],[602,25.0,18.0,-10.0,0.0,0.0,0.0,1.0],[497,0.0,-8.0,0.0,0.0,0.0,0.0,1.0],[602,35.0,18.0,70.0,0.0,0.0,0.0,1.0],[602,25.0,18.0,70.0,0.0,0.0,0.0,1.0],[497,0.0,-8.0,100.0,0.0,0.0,0.0,1.0],[602,35.0,18.0,150.0,0.0,0.0,0.0,1.0],[602,25.0,18.0,150.0,0.0,0.0,0.0,1.0],[497,0.0,-8.0,200.0,0.0,0.0,0.0,1.0],[602,35.0,18.0,230.0,0.0,0.0,0.0,1.0],[602,25.0,18.0,230.0,0.0,0.0,0.0,1.0],[497,0.0,-8.0,300.0,0.0,0.0,0.0,1.0],[602,35.0,18.0,310.0,0.0,0.0,0.0,1.0],[602,25.0,18.0,310.0,0.0,0.0,0.0,1.0],[602,35.0,18.0,390.0,0.0,0.0,0.0,1.0],[602,25.0,18.0,390.0,0.0,0.0,0.0,1.0],[497,0.0,-8.0,400.0,0.0,0.0,0.0,1.0],[513,63.0,-12.0,430.0,0.0,-0.70711,0.0,0.70711],[602,35.0,18.0,470.0,0.0,0.0,0.0,1.0],[602,25.0,18.0,470.0,0.0,0.0,0.0,1.0],[513,63.0,-12.0,490.0,0.0,-0.70711,0.0,0.70711],[497,0.0,-8.0,500.0,0.0,0.0,0.0,1.0],[767,6.0,-20.0,530.0,0.0,0.0,0.0,1.0],[767,-12.0,-20.0,530.0,0.0,0.0,0.0,1.0],[513,63.0,-12.0,550.0,0.0,-0.70711,0.0,0.70711],[602,35.0,18.0,550.0,0.0,0.0,0.0,1.0],[602,25.0,18.0,550.0,0.0,0.0,0.0,1.0],[497,0.0,-8.0,600.0,0.0,0.0,0.0,1.0],[490,0.0,10.0,650.0,0.0,-1.0,0.0,0.0],[641,-25.0,10.0,685.0,0.0,0.0,0.0,1.0],[641,25.0,10.0,685.0,0.0,-1.0,0.0,0.0],[519,0.0,10.0,750.0,0.0,0.0,0.0,1.0],[606,6.0,10.0,775.0,0.0,0.0,0.0,1.0],[606,-13.0,10.0,795.0,0.0,0.0,0.0,1.0],[606,7.0,10.0,795.0,0.0,0.0,0.0,1.0],[606,-12.0,10.0,815.0,0.0,0.0,0.0,1.0],[606,8.0,10.0,815.0,0.0,0.0,0.0,1.0],[606,-11.0,10.0,835.0,0.0,0.0,0.0,1.0],[606,9.0,10.0,835.0,0.0,0.0,0.0,1.0],[519,0.0,10.0,850.0,0.0,0.0,0.0,1.0],[606,-10.0,10.0,855.0,0.0,0.0,0.0,1.0],[606,10.0,10.0,855.0,0.0,0.0,0.0,1.0],[606,-9.0,10.0,875.0,0.0,0.0,0.0,1.0],[606,11.0,10.0,875.0,0.0,0.0,0.0,1.0],[606,-8.0,10.0,895.0,0.0,0.0,0.0,1.0],[519,0.0,10.0,950.0,0.0,0.0,0.0,1.0],[826,0.0,61.0,1000.0,0.0,0.0,-1.0,0.0],[641,25.0,10.0,1015.0,0.0,-1.0,0.0,0.0],[641,-25.0,10.0,1015.0,0.0,0.0,0.0,1.0],[490,0.0,10.0,1050.0,0.0,0.0,0.0,1.0],[826,0.0,61.0,1100.0,0.0,0.0,-1.0,0.0],[524,0.0,4.0,1150.0,0.0,0.0,0.0,1.0],[645,0.0,8.0,1150.0,0.0,0.0,0.0,1.0],[826,0.0,61.0,1200.0,0.0,0.0,-1.0,0.0],[516,0.0,4.0,1250.0,0.0,0.0,0.0,1.0],[524,0.0,4.0,1250.0,0.0,0.0,0.0,1.0],[826,0.0,61.0,1300.0,0.0,0.0,-1.0,0.0],[516,0.0,4.0,1350.0,0.0,0.0,0.0,1.0],[524,0.0,4.0,1350.0,0.0,0.0,0.0,1.0],[826,0.0,61.0,1400.0,0.0,0.0,-1.0,0.0],[767,-14.0,-4.0,1425.0,0.0,0.0,0.0,1.0],[516,0.0,4.0,1450.0,0.0,0.0,0.0,1.0],[524,0.0,4.0,1450.0,0.0,0.0,0.0,1.0],[826,0.0,61.0,1500.0,0.0,0.0,-1.0,0.0],[516,0.0,4.0,1550.0,0.0,0.0,0.0,1.0],[524,0.0,4.0,1550.0,0.0,0.0,0.0,1.0],[826,0.0,61.0,1600.0,0.0,0.0,-1.0,0.0],[516,0.0,6.0,1650.0,0.0,0.0,0.0,1.0],[524,0.0,4.0,1650.0,0.0,0.0,0.0,1.0],[826,0.0,61.0,1700.0,0.0,0.0,-1.0,0.0],[826,0.0,61.0,1800.0,0.0,0.0,-1.0,0.0],[839,0.0,6.0,1800.0,0.0,0.0,0.0,1.0],[826,0.0,61.0,1900.0,0.0,0.0,-1.0,0.0],[594,0.0,6.0,2000.0,0.0,0.0,0.0,1.0],[826,0.0,61.0,2000.0,0.0,0.0,-1.0,0.0],[826,0.0,61.0,2100.0,0.0,0.0,-1.0,0.0],[594,0.0,6.0,2200.0,0.0,0.0,0.0,1.0],[826,0.0,61.0,2200.0,0.0,0.0,-1.0,0.0],[524,0.0,6.2,2250.0,0.0,0.0,0.0,1.0],[826,0.0,61.0,2300.0,0.0,0.0,-1.0,0.0],[447,0.0,22.0,-2230.0,0.0,0.0,0.0,1.0],[524,0.0,6.2,2350.0,0.0,0.0,0.0,1.0],[773,0.0,6.0,2350.0,0.0,0.0,0.0,1.0],[743,15.0,-15.0,2400.0,0.0,-1.0,0.0,0.0],[826,0.0,61.0,2400.0,0.0,0.0,-1.0,0.0],[524,0.0,6.2,2450.0,0.0,0.0,0.0,1.0],[773,0.0,6.0,2450.0,0.0,0.0,0.0,1.0],[826,0.0,61.0,2500.0,0.0,0.0,-1.0,0.0],[524,0.0,6.2,2550.0,0.0,0.0,0.0,1.0],[773,0.0,6.0,2550.0,0.0,0.0,0.0,1.0],[826,0.0,61.0,2600.0,0.0,0.0,-1.0,0.0],[773,0.0,6.0,2650.0,0.0,0.0,0.0,1.0],[826,0.0,61.0,2700.0,0.0,0.0,-1.0,0.0],[773,0.0,6.0,2750.0,0.0,0.0,0.0,1.0],[826,0.0,61.0,2800.0,0.0,0.0,-1.0,0.0],[826,0.0,61.0,2900.0,0.0,0.0,-1.0,0.0],[791,0.0,7.0,2950.0,0.0,0.0,0.0,1.0],[791,0.0,7.0,3050.0,0.0,0.0,0.0,1.0],[791,0.0,7.0,3150.0,0.0,-1.0,0.0,0.0],[791,0.0,7.0,3250.0,0.0,0.0,0.0,1.0],[791,0.0,7.0,3350.0,0.0,0.0,0.0,1.0],[570,0.0,7.0,3585.0,0.0,0.0,0.0,1.0],[797,0.0,7.0,3475.0,0.0,-1.0,0.0,0.0],[743,-20.0,-26.0,25.0,0.0,0.0,0.0,1.0]]}],"palette":["#000000","#00bfbf","#4f4f4f","#0000bf","#00bf00","#bf6b6b","#9700bf","#bf0000","#bfbfbf","#cbab00","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#000087","#433323","#870700","#234b23","#730700","#272727","#3b3b3b","#272727","#730700","#232377","#000000","#000000","#000000","#000000","#000000","#000000","#000000","#000000","#000000","#4b8753","#1b1b1b","#002323","#5b5b5b","#8f83ff","#878787","#131313","#4b3f37","#ff0000","#00afaf","#4b4b4b","#004700","#000000","#9f9f9f","#8f8f8f","#bf9300","#a70b00","#3b3bc3","#1f3773","#535353","#071323","#232323","#000000","#000000","#00ffff","#afafaf","#0000ff","#00ff00","#ff8f8f","#cb00ff","#ff0000","#ffffff","#f7ff00","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ffffc7","#ffffc7","#ffffc7","#ffffc7","#ffffc7","#ffffc7","#ffffc7","#ffffc7","#ffffc7","#ffffc7","#ffffc7","#ffffc7","#ffffc7","#ffffc7","#ffffc7","#ffffc7","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ffffc7","#bf0000","#ffffc7","#ffffc7","#ffffc7","#ffffc7","#ffffc7","#ffffc7","#ffffc7","#d70000","#ffffc7","#ffffc7","#ffffc7","#ffffc7","#ffffc7","#ffffc7","#000000","#00bfbf","#4f4f4f","#0000bf","#00bf00","#bf6b6b","#9700bf","#bf0000","#bfbfbf","#cbab00","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#7f0000","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff0000","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#000000","#007f7f","#434343","#00007f","#007f00","#7f4747","#67007f","#7f0000","#7f7f7f","#977f00","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#bf0000","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#d70000","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ff00ff","#ffffff"],"staticColor":60,"background":0,"screen":[448,416]}</script>
|
|
<script>'use strict';
|
|
const DATA = JSON.parse(document.getElementById('data').textContent);
|
|
const cv = document.getElementById('view');
|
|
const ctx = cv.getContext('2d');
|
|
|
|
// ---------------------------------------------------------------- state
|
|
const S = {
|
|
track: 0,
|
|
cx: 0, cz: 0, // view centre, world units
|
|
mpp: 10, // meters per pixel - the engine's own scale term
|
|
gps: false, // false = NavDisplay (LOD follows zoom), true = GPS
|
|
yaw: 0, // map heading, radians. NavDisplay takes the
|
|
// vehicle's; 0 is the map with +Z straight up.
|
|
stats: {},
|
|
};
|
|
|
|
// The engine's own projection, and it is not the obvious one.
|
|
// L4GaugeImagePrimitive::Draw plots MoveToAbsolute(dest->x, dest->z) - so
|
|
// the screen axes are view-space X and Z - and the graphics view puts its
|
|
// origin at the bottom left with Y increasing UP (BackgroundLine draws
|
|
// bottomLeft -> topRight, and the port's zero-degree blit is documented
|
|
// with the origin at the bottom left corner). So on the map +X runs RIGHT
|
|
// and +Z runs UP. Canvas y grows downward, hence the single negation.
|
|
//
|
|
// NavDisplay also inverts the viewer's transform before scaling, taking
|
|
// yaw only unless rockAndRoll is set - the map turns with the vehicle and
|
|
// is centred on it. Free panning with yaw 0 is the north-up case.
|
|
function toScreen(x, z, w, h) {
|
|
const dx = x - S.cx, dz = z - S.cz;
|
|
const c = Math.cos(S.yaw), s = Math.sin(S.yaw);
|
|
return [w / 2 + (dx * c - dz * s) / S.mpp,
|
|
h / 2 - (dx * s + dz * c) / S.mpp];
|
|
}
|
|
|
|
// Quaternion (x,y,z,w) applied to a point - MUNGA's own convention.
|
|
function rotate(q, p) {
|
|
const [qx, qy, qz, qw] = q, [x, y, z] = p;
|
|
const tx = 2 * (qy * z - qz * y);
|
|
const ty = 2 * (qz * x - qx * z);
|
|
const tz = 2 * (qx * y - qy * x);
|
|
return [x + qw * tx + qy * tz - qz * ty,
|
|
y + qw * ty + qz * tx - qx * tz,
|
|
z + qw * tz + qx * ty - qy * tx];
|
|
}
|
|
|
|
// The map screen is not a phosphor display. Primitives carry palette
|
|
// indices and the palette is the one the port was configured with -
|
|
// secpal.pcc for the pod's secondary screen, where the nav display lives.
|
|
// Walls (index 51) are grey. L4GaugeImage::Draw only overrides the colour
|
|
// when it is non-zero, so 0 means "keep what is set", which is the
|
|
// display's own staticColor (0x3C).
|
|
function ink(c) {
|
|
return DATA.palette[c ? c : DATA.staticColor] || '#535353';
|
|
}
|
|
|
|
// ------------------------------------------------------------- bounds
|
|
function bounds(list) {
|
|
let x0 = Infinity, x1 = -Infinity, z0 = Infinity, z1 = -Infinity;
|
|
for (const r of list) {
|
|
if (r[1] < x0) x0 = r[1];
|
|
if (r[1] > x1) x1 = r[1];
|
|
if (r[3] < z0) z0 = r[3];
|
|
if (r[3] > z1) z1 = r[3];
|
|
}
|
|
return list.length ? {x0, x1, z0, z1} : {x0: -1, x1: 1, z0: -1, z1: 1};
|
|
}
|
|
|
|
// Fourteen tracks park a single piece far off the course; fitting to
|
|
// everything squeezes the track into a sliver, so "fit" ignores loners
|
|
// and "fit all" (A) is there when you want the literal extent.
|
|
function course(t) {
|
|
if (t._course) return t._course;
|
|
const keep = t.i.filter(a =>
|
|
t.i.some(b => b !== a && (b[1] - a[1]) ** 2 + (b[3] - a[3]) ** 2 < 200 * 200));
|
|
return (t._course = keep.length ? keep : t.i);
|
|
}
|
|
|
|
function fit(all) {
|
|
const t = DATA.tracks[S.track];
|
|
const b = bounds(all ? t.i : course(t));
|
|
S.cx = (b.x0 + b.x1) / 2;
|
|
S.cz = (b.z0 + b.z1) / 2;
|
|
const w = cv.clientWidth || 800, h = cv.clientHeight || 600;
|
|
// The GPS gauge allows 1.2x "for large objects at edges of map"
|
|
// (RPL4GAUG.cpp:2060); same here so nothing clips at the border.
|
|
S.mpp = Math.max((b.x1 - b.x0) / w, (b.z1 - b.z0) / h, 1e-4) * 1.2;
|
|
draw();
|
|
}
|
|
|
|
// -------------------------------------------------------------- render
|
|
function draw() {
|
|
const dpr = window.devicePixelRatio || 1;
|
|
const w = cv.clientWidth, h = cv.clientHeight;
|
|
if (cv.width !== Math.round(w * dpr) || cv.height !== Math.round(h * dpr)) {
|
|
cv.width = Math.round(w * dpr);
|
|
cv.height = Math.round(h * dpr);
|
|
}
|
|
ctx.setTransform(dpr, 0, 0, dpr, 0, 0);
|
|
ctx.clearRect(0, 0, w, h);
|
|
|
|
const t = DATA.tracks[S.track];
|
|
// NavDisplay sets LODIndex = metersPerPixel every time it recalculates
|
|
// bounds. The GPS gauge takes its LOD from the config and never moves it.
|
|
const lodValue = S.gps ? 1.0 : S.mpp;
|
|
let drawn = 0, culled = 0, prims = 0;
|
|
|
|
ctx.lineWidth = 1;
|
|
ctx.lineJoin = 'round';
|
|
for (const r of t.i) {
|
|
const img = DATA.images[r[0]];
|
|
if (!img) { culled++; continue; }
|
|
|
|
// L4GaugeImage::Draw - scales ascend, so index 0 is the FINEST, and
|
|
// running past the largest means the object is not drawn at all.
|
|
let k = 0;
|
|
while (k < img.l.length && lodValue > img.l[k].s) k++;
|
|
if (k >= img.l.length) { culled++; continue; }
|
|
drawn++;
|
|
|
|
const q = [r[4], r[5], r[6], r[7]];
|
|
for (const p of img.l[k].p) {
|
|
ctx.strokeStyle = ink(p.c);
|
|
ctx.beginPath();
|
|
for (let n = 0; n < p.i.length; n++) {
|
|
let v = img.v[p.i[n]];
|
|
if (!v) continue;
|
|
// attributeUnscaled: pre-multiply by the scale factor so the
|
|
// primitive keeps a constant size on screen (L4GAUIMA.cpp:1599).
|
|
if (p.a & 1) v = [v[0] * S.mpp, v[1] * S.mpp, v[2] * S.mpp];
|
|
const g = rotate(q, v);
|
|
const [sx, sy] = toScreen(g[0] + r[1], g[2] + r[3], w, h);
|
|
n ? ctx.lineTo(sx, sy) : ctx.moveTo(sx, sy);
|
|
}
|
|
ctx.stroke();
|
|
prims++;
|
|
}
|
|
}
|
|
S.stats = {drawn, culled, prims, lodValue};
|
|
hud();
|
|
}
|
|
|
|
// ----------------------------------------------------------------- hud
|
|
function hud() {
|
|
const t = DATA.tracks[S.track];
|
|
const s = S.stats;
|
|
const px = 1 / S.mpp;
|
|
document.getElementById('name').textContent = t.name;
|
|
document.getElementById('key').textContent =
|
|
t.key + ' ' + (S.track + 1) + '/' + DATA.tracks.length;
|
|
const rows = [
|
|
['mode', S.gps ? 'GPS (LOD pinned 1.0)' : 'NavDisplay (LOD = m/px)'],
|
|
['metersPerPixel', S.mpp.toFixed(3)],
|
|
['pixelsPerMeter', px.toFixed(4)],
|
|
['LOD value', s.lodValue.toFixed(3)],
|
|
['centre X / Z', S.cx.toFixed(0) + ' / ' + S.cz.toFixed(0)],
|
|
['heading', (((S.yaw * 180 / Math.PI) % 360 + 360) % 360).toFixed(0) + '°'],
|
|
['objects drawn', s.drawn],
|
|
['dropped by LOD', s.culled],
|
|
['primitives', s.prims],
|
|
['no map art', t.noart],
|
|
];
|
|
document.getElementById('stats').innerHTML = rows.map(
|
|
r => '<dt>' + r[0] + '</dt><dd>' + r[1] + '</dd>').join('');
|
|
|
|
// Scale bar: a round number of meters, whatever fits under 160px.
|
|
let m = Math.pow(10, Math.floor(Math.log10(160 * S.mpp)));
|
|
for (const f of [5, 2, 1]) if (m * f <= 160 * S.mpp) { m *= f; break; }
|
|
document.getElementById('barline').style.width = (m / S.mpp) + 'px';
|
|
document.getElementById('bartext').textContent = m + ' m';
|
|
}
|
|
|
|
// ------------------------------------------------------------ controls
|
|
// Pan in what you see, not in world axes: with the map turned, "up" has
|
|
// to stay up. Screen delta rotated back out through the heading.
|
|
function pan(sx, sy) {
|
|
const step = 0.1 * Math.min(cv.clientWidth, cv.clientHeight) * S.mpp;
|
|
const c = Math.cos(S.yaw), s = Math.sin(S.yaw);
|
|
S.cx += (sx * c + sy * s) * step;
|
|
S.cz += (-sx * s + sy * c) * step;
|
|
draw();
|
|
}
|
|
|
|
function zoom(f) {
|
|
S.mpp = Math.max(0.02, Math.min(4000, S.mpp * f));
|
|
draw();
|
|
}
|
|
|
|
function pick(n) {
|
|
S.track = (n + DATA.tracks.length) % DATA.tracks.length;
|
|
document.getElementById('track').value = S.track;
|
|
fit(false);
|
|
}
|
|
|
|
addEventListener('keydown', e => {
|
|
if (e.target.tagName === 'SELECT') return;
|
|
const k = e.key;
|
|
// Screen directions: right is +X and up is +Z when the heading is zero.
|
|
if (k === 'ArrowUp') pan(0, 1);
|
|
else if (k === 'ArrowDown') pan(0, -1);
|
|
else if (k === 'ArrowLeft') pan(-1, 0);
|
|
else if (k === 'ArrowRight') pan(1, 0);
|
|
else if (k === 'q' || k === 'Q') { S.yaw -= Math.PI / 12; draw(); }
|
|
else if (k === 'e' || k === 'E') { S.yaw += Math.PI / 12; draw(); }
|
|
else if (k === 'r' || k === 'R') { S.yaw = 0; draw(); }
|
|
else if (k === '+' || k === '=') zoom(1 / 1.25);
|
|
else if (k === '-' || k === '_') zoom(1.25);
|
|
else if (k === '[') pick(S.track - 1);
|
|
else if (k === ']') pick(S.track + 1);
|
|
else if (k === 'f' || k === 'F') fit(false);
|
|
else if (k === 'a' || k === 'A') fit(true);
|
|
else if (k === 'g' || k === 'G') { S.gps = !S.gps; draw(); }
|
|
else return;
|
|
e.preventDefault();
|
|
});
|
|
|
|
let drag = null;
|
|
cv.addEventListener('pointerdown', e => {
|
|
drag = {x: e.clientX, y: e.clientY};
|
|
cv.setPointerCapture(e.pointerId);
|
|
});
|
|
cv.addEventListener('pointermove', e => {
|
|
if (!drag) return;
|
|
const dx = (e.clientX - drag.x) * S.mpp, dy = (e.clientY - drag.y) * S.mpp;
|
|
const c = Math.cos(S.yaw), s = Math.sin(S.yaw);
|
|
S.cx -= dx * c - dy * s;
|
|
S.cz -= -dx * s - dy * c;
|
|
drag = {x: e.clientX, y: e.clientY};
|
|
draw();
|
|
});
|
|
cv.addEventListener('pointerup', () => { drag = null; });
|
|
cv.addEventListener('wheel', e => {
|
|
e.preventDefault();
|
|
zoom(e.deltaY > 0 ? 1.1 : 1 / 1.1);
|
|
}, {passive: false});
|
|
|
|
const sel = document.getElementById('track');
|
|
sel.innerHTML = DATA.tracks.map(
|
|
(t, i) => '<option value="' + i + '">' + t.name + '</option>').join('');
|
|
sel.addEventListener('change', () => pick(+sel.value));
|
|
addEventListener('resize', draw);
|
|
pick(0);
|
|
</script>
|
|
</body>
|
|
</html>
|