Skip to content

Instantly share code, notes, and snippets.

@linus
Created December 14, 2011 02:51
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save linus/1475034 to your computer and use it in GitHub Desktop.
Save linus/1475034 to your computer and use it in GitHub Desktop.
Google Turkey Doodle in CoffeeScript
linus@Newton:~/development/projects/turkey$ ab -n 10000 http://localhost:3000/A012B490
This is ApacheBench, Version 2.3 <$Revision: 655654 $>
Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/
Licensed to The Apache Software Foundation, http://www.apache.org/
Benchmarking localhost (be patient)
Completed 1000 requests
Completed 2000 requests
Completed 3000 requests
Completed 4000 requests
Completed 5000 requests
Completed 6000 requests
Completed 7000 requests
Completed 8000 requests
Completed 9000 requests
Completed 10000 requests
Finished 10000 requests
Server Software:
Server Hostname: localhost
Server Port: 3000
Document Path: /A012B490
Document Length: 51243 bytes
Concurrency Level: 1
Time taken for tests: 189.334 seconds
Complete requests: 10000
Failed requests: 0
Write errors: 0
Total transferred: 513290000 bytes
HTML transferred: 512430000 bytes
Requests per second: 52.82 [#/sec] (mean)
Time per request: 18.933 [ms] (mean)
Time per request: 18.933 [ms] (mean, across all concurrent requests)
Transfer rate: 2647.49 [Kbytes/sec] received
Connection Times (ms)
min mean[+/-sd] median max
Connect: 0 0 0.0 0 1
Processing: 18 19 1.9 19 66
Waiting: 0 1 1.1 1 48
Total: 18 19 1.9 19 66
Percentage of the requests served within a certain time (ms)
50% 19
66% 19
75% 19
80% 19
90% 19
95% 20
98% 22
99% 27
100% 66 (longest request)
{
"name": "turkey",
"description": "Google Turkey Doodle in CoffeeScript",
"version": "0.0.1",
"private": true,
"author": "Linus G Thiel <linus@hanssonlarsson.se> (http://hanssonlarsson.se/)",
"licenses": [{
"type": "MIT",
"url": "http://opensource.org/licenses/mit-license.php"
}],
"dependencies": {
"express": "",
"canvas": ""
},
"keywords": ["image", "turkey"]
}
Macbook Air 3,2 with Intel(R) Core(TM)2 Duo CPU L9600 @ 2.13GHz, 4 GB RAM, SSD
# Dependencies
fs = require "fs"
{join} = require "path"
{pump} = require "util"
Canvas = require "canvas"
express = require "express"
# File paths and image positions for the various parts
head =
path: "img/heads"
position: [109, 50]
beak =
path: "img/eyes_beak"
position: [105, 104]
index =
path: "img/index_feathers"
position: [136, 21]
middle =
path: "img/middle_feathers"
position: [159, 7]
ring =
path: "img/ring_feathers"
position: [188, 20]
pinky =
path: "img/pinky_feathers"
position: [216, 48]
feet =
path: "img/feet"
position: [155, 176]
wings =
path: "img/wing"
position: [169, 118]
# URL parameters come in this order
parts = [head, beak, index, middle, ring, pinky, feet, wings]
# Background image, we will initialize this later
bg = null
# Load the image at path and return it, synchronously
loadImage = (path) ->
img = new Canvas.Image()
img.src = fs.readFileSync path
return img
# Load all images, synchronously
loadImages = ->
bg = loadImage "img/bg/thanksgiving-2011-actual-size-bg-nolinks.png"
for part in parts
files = fs.readdirSync part.path
part.images = (loadImage join(part.path, file) for file in files.sort())
# Draw the specified images on the background, return a canvas
drawImage = (bg, images) ->
canvas = new Canvas bg.width, bg.height
ctx = canvas.getContext "2d"
# Draw the background
ctx.drawImage bg, 0, 0
# Images is an array of the requested images, in order
for image, i in images
# Find the correct part
part = parts[i]
# Draw the corresponding image in the correct position
ctx.drawImage part.images[image], part.position...
return canvas
# Match our paths
regex = ///
/ # Leading slash
(\d|[A-B]) # Head image, 12 varieties
([0-2]) # Eyes & beak, 3 alternatives
(\d|[A-B]) # Index feather, 12 alternatives
(\d|[A-B]) # Middle feather, 12 alternatives
(\d|[A-B]) # Ring feather, 12 alternatives
(\d|A) # Pinky feather, 11 alternatives
(\d|[A-B]) # Feet, 12 alternatives
(\d|[A-C]) # Wings, 13 alternatives
///i
# This will be our server
app = express.createServer()
# Request handler
app.get regex, (req, res) ->
# Parse hex numbers to decimals
indices = (parseInt n, 16 for n in req.params)
# Draw the image
canvas = drawImage bg, indices
# Send our response
res.writeHead 200, "content-type": "image/png"
pump canvas.createPNGStream(), res
# Load all images before starting
loadImages()
# Ready to go!
app.listen 3000
This file has been truncated, but you can view the full file.
shared-library,"/usr/local/bin/node",0x00400000,0x009fe000
shared-library,"/lib/x86_64-linux-gnu/libc-2.13.so",0x7fc59795c000,0x7fc597af1000
shared-library,"/lib/x86_64-linux-gnu/libpthread-2.13.so",0x7fc597cfb000,0x7fc597d13000
shared-library,"/lib/x86_64-linux-gnu/libgcc_s.so.1",0x7fc597f18000,0x7fc597f2d000
shared-library,"/lib/x86_64-linux-gnu/libm-2.13.so",0x7fc59812e000,0x7fc5981b1000
shared-library,"/usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.16",0x7fc5983b2000,0x7fc59849a000
shared-library,"/lib/x86_64-linux-gnu/libdl-2.13.so",0x7fc5986b9000,0x7fc5986bb000
shared-library,"/lib/x86_64-linux-gnu/libcrypto.so.1.0.0",0x7fc5988bd000,0x7fc598a45000
shared-library,"/lib/x86_64-linux-gnu/libssl.so.1.0.0",0x7fc598c6c000,0x7fc598cb6000
shared-library,"/lib/x86_64-linux-gnu/librt-2.13.so",0x7fc598ebd000,0x7fc598ec4000
shared-library,"/lib/x86_64-linux-gnu/libz.so.1.2.3.4",0x7fc5990c5000,0x7fc5990dc000
shared-library,"/lib/x86_64-linux-gnu/ld-2.13.so",0x7fc5992dd000,0x7fc5992fe000
shared-library,"7fff191bc000-7fff191bd000",0x7fff191bc000,0x7fff191bd000
shared-library,"ffffffffff600000-ffffffffff601000",0xffffffffff600000,0xffffffffff601000
profiler,"begin",1
snapshot-pos,0x1db253e30040,2
snapshot-pos,0x1db253e30078,6
snapshot-pos,0x1cf698f6a040,19
snapshot-pos,0x1db253e300b0,23
snapshot-pos,0x1cf698f6a060,49
snapshot-pos,0x1db253e300e8,51
snapshot-pos,0x1cf698f6a070,92
snapshot-pos,0x1db253e30120,94
snapshot-pos,0x1db253e30158,207
snapshot-pos,0x1db253e30190,237
snapshot-pos,0x1cf698f6a090,267
snapshot-pos,0x1cf698f6a0b0,271
snapshot-pos,0x1cf698f6a0d8,308
snapshot-pos,0x1db253e301c8,310
snapshot-pos,0x1cf698f6a0e8,358
snapshot-pos,0x1cf698f6a108,362
snapshot-pos,0x1cf698f6a128,410
snapshot-pos,0x1cf698f6a148,414
snapshot-pos,0x1cf698f6a168,460
snapshot-pos,0x1cf698f6a188,464
snapshot-pos,0x1cf698f6a1a8,510
snapshot-pos,0x1cf698f6a1c8,514
snapshot-pos,0x1db253e30200,570
snapshot-pos,0x1db253e30238,602
snapshot-pos,0x1db253e30270,632
snapshot-pos,0x1db253e302a8,662
snapshot-pos,0x1cf698f6a1f0,692
snapshot-pos,0x1cf698f6a210,696
snapshot-pos,0x1db253e302e0,769
snapshot-pos,0x5e68d14c040,811
snapshot-pos,0x3f0f96bd4040,66377
snapshot-pos,0x1cf698f6a248,66460
snapshot-pos,0x1cf698f6a268,66497
snapshot-pos,0x1cf698f6a288,66544
snapshot-pos,0x1cf698f6a2a8,66573
snapshot-pos,0x1cf698f6a2c8,66602
snapshot-pos,0x1cf698f6a2e8,66631
snapshot-pos,0x1cf698f6a308,66660
snapshot-pos,0x1cf698f6a328,66689
snapshot-pos,0x1cf698f6a348,66718
snapshot-pos,0x1cf698f6a368,66747
snapshot-pos,0x1cf698f6a388,66776
snapshot-pos,0x1cf698f6a3a8,66809
snapshot-pos,0x1cf698f6a3c8,66840
snapshot-pos,0x1cf698f6a3e8,66949
snapshot-pos,0x3f0f96bd4450,67027
snapshot-pos,0x1cf698f6a408,69090
snapshot-pos,0x1cf698f6a428,69094
snapshot-pos,0x1cf698f6a458,69159
snapshot-pos,0x1cf698f6a468,69182
snapshot-pos,0x1db253e30318,69184
snapshot-pos,0x1cf698f6a480,69235
snapshot-pos,0x1db253e30350,69248
snapshot-pos,0x1db253e30388,69284
snapshot-pos,0x1db253e303c0,69318
snapshot-pos,0x1db253e303f8,69352
snapshot-pos,0x1db253e30430,69386
snapshot-pos,0x1db253e30468,69420
snapshot-pos,0x1db253e304a0,69457
snapshot-pos,0x1db253e304d8,69492
snapshot-pos,0x1db253e30510,69527
snapshot-pos,0x1db253e30548,69562
snapshot-pos,0x1db253e30580,69597
snapshot-pos,0x1db253e305b8,69632
snapshot-pos,0x1db253e305f0,69667
snapshot-pos,0x1db253e30628,69702
snapshot-pos,0x1db253e30660,69737
snapshot-pos,0x1db253e30698,69772
snapshot-pos,0x1db253e306d0,69807
snapshot-pos,0x1db253e30708,69842
snapshot-pos,0x1db253e30740,69877
snapshot-pos,0x1db253e30778,69912
snapshot-pos,0x1db253e307b0,69947
snapshot-pos,0x1db253e307e8,69982
snapshot-pos,0x1db253e30820,70017
snapshot-pos,0x1db253e30858,70052
snapshot-pos,0x1db253e30890,70087
snapshot-pos,0x1db253e308c8,70122
snapshot-pos,0x1db253e30900,70157
snapshot-pos,0x1db253e30938,70192
snapshot-pos,0x1db253e30970,70227
snapshot-pos,0x1db253e309a8,70262
snapshot-pos,0x1db253e309e0,70297
snapshot-pos,0x1db253e30a18,70335
snapshot-pos,0x1db253e30a50,70370
snapshot-pos,0x1db253e30a88,70405
snapshot-pos,0x1db253e30ac0,70440
snapshot-pos,0x1cf698f6a490,70477
snapshot-pos,0x1db253e30af8,70491
snapshot-pos,0x3f0f96bd4c60,70526
snapshot-pos,0x3f0f96bd4c78,70533
snapshot-pos,0x1cf698f6a4a0,70563
snapshot-pos,0x3f0f96bd6040,70572
snapshot-pos,0x1f9009eae040,70683
snapshot-pos,0x1cf698f6a4b0,70694
snapshot-pos,0x1f9009eae0c0,70800
snapshot-pos,0x1cf698f6a4c8,70809
snapshot-pos,0x1f9009eae3c0,71602
snapshot-pos,0x1cf698f6a510,71611
snapshot-pos,0x1f9009eae460,71835
snapshot-pos,0x1cf698f6a528,71844
snapshot-pos,0x1f9009eae4e0,72014
snapshot-pos,0x1cf698f6a540,72023
snapshot-pos,0x1f9009eae600,72326
snapshot-pos,0x1cf698f6a558,72335
snapshot-pos,0x1f9009eae6e0,72572
snapshot-pos,0x1cf698f6a578,72581
snapshot-pos,0x1f9009eae7a0,72793
snapshot-pos,0x1cf698f6a590,72802
snapshot-pos,0x1f9009eae8a0,73072
snapshot-pos,0x1cf698f6a5a8,73081
snapshot-pos,0x1f9009eae980,73376
snapshot-pos,0x1cf698f6a5c8,73385
snapshot-pos,0x1f9009eaea80,73742
snapshot-pos,0x1cf698f6a5e0,73751
snapshot-pos,0x1f9009eaeb40,73953
snapshot-pos,0x1cf698f6a5f8,73962
snapshot-pos,0x1f9009eaec40,74259
snapshot-pos,0x1cf698f6a618,74268
snapshot-pos,0x1f9009eaee40,74804
snapshot-pos,0x1cf698f6a630,74813
snapshot-pos,0x1f9009eaeee0,74983
snapshot-pos,0x1cf698f6a648,74992
snapshot-pos,0x1f9009eaefc0,75302
snapshot-pos,0x1cf698f6a668,75311
snapshot-pos,0x1f9009eaf0a0,75621
snapshot-pos,0x1cf698f6a688,75630
snapshot-pos,0x1f9009eaf140,75800
snapshot-pos,0x1cf698f6a6a0,75809
snapshot-pos,0x1f9009eaf1e0,75989
snapshot-pos,0x1cf698f6a6b8,75998
snapshot-pos,0x1f9009eaf260,76213
snapshot-pos,0x1cf698f6a6d0,76222
snapshot-pos,0x1f9009eaf340,76345
snapshot-pos,0x1cf698f6a6e8,76354
snapshot-pos,0x1f9009eaf440,76790
snapshot-pos,0x1cf698f6a6f8,76799
snapshot-pos,0x1f9009eaf980,78161
snapshot-pos,0x1cf698f6a730,78170
snapshot-pos,0x1f9009eafa40,78387
snapshot-pos,0x1cf698f6a748,78396
snapshot-pos,0x1f9009eb0040,79790
snapshot-pos,0x1cf698f6a780,79801
snapshot-pos,0x1f9009eb0660,81464
snapshot-pos,0x1cf698f6a7b8,81473
snapshot-pos,0x1f9009eb06e0,81614
snapshot-pos,0x1cf698f6a7d0,81623
snapshot-pos,0x1f9009eb0760,81774
snapshot-pos,0x1cf698f6a7e8,81783
snapshot-pos,0x1f9009eb0820,81867
snapshot-pos,0x1cf698f6a800,81876
snapshot-pos,0x1f9009eb0e40,83562
snapshot-pos,0x1cf698f6a838,83571
snapshot-pos,0x1f9009eb0f00,83826
snapshot-pos,0x1cf698f6a850,83835
snapshot-pos,0x1f9009eb0fa0,84059
snapshot-pos,0x1cf698f6a868,84068
snapshot-pos,0x1f9009eb1100,84424
snapshot-pos,0x1cf698f6a890,84433
snapshot-pos,0x1f9009eb1160,84605
snapshot-pos,0x1cf698f6a8a8,84614
snapshot-pos,0x1f9009eb1220,84829
snapshot-pos,0x1cf698f6a8c0,84838
snapshot-pos,0x1f9009eb12a0,84998
snapshot-pos,0x1cf698f6a8d8,85007
snapshot-pos,0x1f9009eb13a0,85294
snapshot-pos,0x1cf698f6a8f8,85303
snapshot-pos,0x1f9009eb14c0,85605
snapshot-pos,0x1cf698f6a910,85614
snapshot-pos,0x1f9009eb16e0,86189
snapshot-pos,0x1cf698f6a928,86198
snapshot-pos,0x1f9009eb1aa0,87198
snapshot-pos,0x1cf698f6a948,87207
snapshot-pos,0x1f9009eb1bc0,87600
snapshot-pos,0x1cf698f6a960,87609
snapshot-pos,0x1f9009eb1c40,87721
snapshot-pos,0x1cf698f6a978,87730
snapshot-pos,0x1f9009eb1ca0,87851
snapshot-pos,0x1cf698f6a990,87860
snapshot-pos,0x1f9009eb1d80,88121
snapshot-pos,0x1cf698f6a9a8,88130
snapshot-pos,0x1f9009eb1e60,88372
snapshot-pos,0x1cf698f6a9c0,88381
snapshot-pos,0x1f9009eb2040,88633
snapshot-pos,0x1cf698f6a9d8,88644
snapshot-pos,0x1f9009eb2400,89617
snapshot-pos,0x1cf698f6a9f8,89626
snapshot-pos,0x1f9009eb2500,89976
snapshot-pos,0x1cf698f6aa18,89985
snapshot-pos,0x1f9009eb28c0,91021
snapshot-pos,0x1cf698f6aa38,91030
snapshot-pos,0x1f9009eb29a0,91267
snapshot-pos,0x1cf698f6aa58,91276
snapshot-pos,0x1f9009eb2a40,91445
snapshot-pos,0x1cf698f6aa70,91454
snapshot-pos,0x1f9009eb2ac0,91659
snapshot-pos,0x1cf698f6aa88,91668
snapshot-pos,0x1f9009eb2b60,91865
snapshot-pos,0x1cf698f6aaa0,91874
snapshot-pos,0x1f9009eb2c00,92066
snapshot-pos,0x1cf698f6aab8,92075
snapshot-pos,0x1f9009eb2c80,92311
snapshot-pos,0x1cf698f6aac8,92320
snapshot-pos,0x1f9009eb2d20,92493
snapshot-pos,0x1cf698f6aae0,92502
snapshot-pos,0x1f9009eb2da0,92653
snapshot-pos,0x1cf698f6aaf8,92662
snapshot-pos,0x1f9009eb2e20,92813
snapshot-pos,0x1cf698f6ab10,92822
snapshot-pos,0x1f9009eb2e80,92977
snapshot-pos,0x1cf698f6ab28,92986
snapshot-pos,0x1f9009eb2f40,93186
snapshot-pos,0x1cf698f6ab40,93195
snapshot-pos,0x1f9009eb3020,93466
snapshot-pos,0x1cf698f6ab58,93475
snapshot-pos,0x1f9009eb3120,93773
snapshot-pos,0x1cf698f6ab70,93782
snapshot-pos,0x3f0f96bd8040,94203
snapshot-pos,0x1f9009eb3280,94278
snapshot-pos,0x1cf698f6ab98,94287
snapshot-pos,0x1f9009eb3360,94539
snapshot-pos,0x1cf698f6abb0,94548
snapshot-pos,0x1f9009eb3440,94782
snapshot-pos,0x1cf698f6abc8,94791
snapshot-pos,0x1f9009eb3520,95035
snapshot-pos,0x1cf698f6abe0,95044
snapshot-pos,0x1f9009eb3600,95386
snapshot-pos,0x1cf698f6abf8,95395
snapshot-pos,0x1f9009eb36e0,95657
snapshot-pos,0x1cf698f6ac10,95666
snapshot-pos,0x1f9009eb37c0,95928
snapshot-pos,0x1cf698f6ac28,95937
snapshot-pos,0x1f9009eb38a0,96171
snapshot-pos,0x1cf698f6ac40,96180
snapshot-pos,0x1f9009eb3980,96441
snapshot-pos,0x1cf698f6ac58,96450
snapshot-pos,0x1f9009eb3a60,96684
snapshot-pos,0x1cf698f6ac70,96693
snapshot-pos,0x1f9009eb3b40,96927
snapshot-pos,0x1cf698f6ac88,96936
snapshot-pos,0x1f9009eb3c20,97169
snapshot-pos,0x1cf698f6aca0,97178
snapshot-pos,0x1f9009eb3d00,97421
snapshot-pos,0x1cf698f6acb8,97430
snapshot-pos,0x1f9009eb3de0,97663
snapshot-pos,0x1cf698f6acd0,97672
snapshot-pos,0x1f9009eb3ec0,97906
snapshot-pos,0x1cf698f6ace8,97915
snapshot-pos,0x1f9009eb4040,98159
snapshot-pos,0x1cf698f6ad00,98170
snapshot-pos,0x1f9009eb4120,98404
snapshot-pos,0x1cf698f6ad18,98413
snapshot-pos,0x1f9009eb4200,98701
snapshot-pos,0x1cf698f6ad30,98710
snapshot-pos,0x1f9009eb42e0,98990
snapshot-pos,0x1cf698f6ad48,98999
snapshot-pos,0x1f9009eb43c0,99270
snapshot-pos,0x1cf698f6ad60,99279
snapshot-pos,0x1f9009eb44a0,99522
snapshot-pos,0x1cf698f6ad78,99531
snapshot-pos,0x1f9009eb4580,99764
snapshot-pos,0x1cf698f6ad90,99773
snapshot-pos,0x1f9009eb4660,100006
snapshot-pos,0x1cf698f6ada8,100015
snapshot-pos,0x1f9009eb4740,100267
snapshot-pos,0x1cf698f6adc0,100276
snapshot-pos,0x1f9009eb4820,100509
snapshot-pos,0x1cf698f6add8,100518
snapshot-pos,0x1f9009eb4900,100752
snapshot-pos,0x1cf698f6adf0,100761
snapshot-pos,0x1f9009eb49e0,100995
snapshot-pos,0x1cf698f6ae08,101004
snapshot-pos,0x1f9009eb4ac0,101248
snapshot-pos,0x1cf698f6ae20,101257
snapshot-pos,0x1f9009eb4ba0,101536
snapshot-pos,0x1cf698f6ae38,101545
snapshot-pos,0x1f9009eb4c80,101779
snapshot-pos,0x1cf698f6ae50,101788
snapshot-pos,0x1f9009eb4d60,102022
snapshot-pos,0x1cf698f6ae68,102031
snapshot-pos,0x1f9009eb4e40,102274
snapshot-pos,0x1cf698f6ae80,102283
snapshot-pos,0x1f9009eb4f20,102517
snapshot-pos,0x1cf698f6ae98,102526
snapshot-pos,0x1f9009eb5000,102760
snapshot-pos,0x1cf698f6aeb0,102769
snapshot-pos,0x1f9009eb50e0,103039
snapshot-pos,0x1cf698f6aec8,103048
snapshot-pos,0x1f9009eb51c0,103282
snapshot-pos,0x1cf698f6aee0,103291
snapshot-pos,0x1f9009eb52a0,103579
snapshot-pos,0x1cf698f6aef8,103588
snapshot-pos,0x1f9009eb5380,103822
snapshot-pos,0x1cf698f6af10,103831
snapshot-pos,0x1f9009eb5460,104064
snapshot-pos,0x1cf698f6af28,104073
snapshot-pos,0x1f9009eb5540,104325
snapshot-pos,0x1cf698f6af40,104334
snapshot-pos,0x1f9009eb5620,104567
snapshot-pos,0x1cf698f6af58,104576
snapshot-pos,0x1f9009eb5700,104874
snapshot-pos,0x1cf698f6af70,104883
snapshot-pos,0x1f9009eb57e0,105117
snapshot-pos,0x1cf698f6af88,105126
snapshot-pos,0x1f9009eb58c0,105359
snapshot-pos,0x1cf698f6afa0,105368
snapshot-pos,0x1f9009eb59a0,105602
snapshot-pos,0x1cf698f6afb8,105611
snapshot-pos,0x1f9009eb5a80,105844
snapshot-pos,0x1cf698f6afd0,105853
snapshot-pos,0x1f9009eb5b60,106096
snapshot-pos,0x1cf698f6afe8,106105
snapshot-pos,0x1f9009eb5c40,106358
snapshot-pos,0x1cf698f6b000,106367
snapshot-pos,0x1f9009eb5d20,106629
snapshot-pos,0x1cf698f6b018,106638
snapshot-pos,0x1f9009eb5e00,106872
snapshot-pos,0x1cf698f6b030,106881
snapshot-pos,0x3f0f96bd8c78,107116
snapshot-pos,0x1db253e30b30,107118
snapshot-pos,0x3f0f96bd8c88,107162
snapshot-pos,0x1cf698f6b048,107176
snapshot-pos,0x1cf698f6b068,107200
snapshot-pos,0x1cf698f6b088,107224
snapshot-pos,0x1cf698f6b0a8,107248
snapshot-pos,0x1cf698f6b0c8,107272
snapshot-pos,0x1cf698f6b0e8,107296
snapshot-pos,0x1cf698f6b108,107320
snapshot-pos,0x1cf698f6b128,107344
snapshot-pos,0x1cf698f6b148,107368
snapshot-pos,0x1cf698f6b168,107392
snapshot-pos,0x1cf698f6b188,107416
snapshot-pos,0x1cf698f6b1a8,107440
snapshot-pos,0x1cf698f6b1c8,107464
snapshot-pos,0x1cf698f6b1e8,107488
snapshot-pos,0x3f0f96bd8d08,107522
snapshot-pos,0x1db253e30b68,107524
snapshot-pos,0x1cf698f6b208,107588
snapshot-pos,0x335e62000000,107646
snapshot-pos,0x1cf698f6b218,107707
snapshot-pos,0x1cf698f6b260,107795
snapshot-pos,0x1cf698f6b290,107859
snapshot-pos,0x1cf698f6b2b8,107914
snapshot-pos,0x1cf698f6b2e0,107969
snapshot-pos,0x1cf698f6b310,108042
snapshot-pos,0x1cf698f6b340,108178
snapshot-pos,0x1cf698f6b360,108243
snapshot-pos,0x1cf698f6b388,108325
snapshot-pos,0x1cf698f6b3c0,108424
snapshot-pos,0x1cf698f6b3f0,108506
snapshot-pos,0x1cf698f6b418,108570
snapshot-pos,0x1cf698f6b440,108661
snapshot-pos,0x1cf698f6b468,108734
snapshot-pos,0x1cf698f6b498,108834
snapshot-pos,0x1cf698f6b4c8,108898
snapshot-pos,0x1cf698f6b500,109060
snapshot-pos,0x1cf698f6b530,109151
snapshot-pos,0x1cf698f6b558,109224
snapshot-pos,0x1cf698f6b580,109288
snapshot-pos,0x1cf698f6b5a8,109343
snapshot-pos,0x1cf698f6b5d8,109497
snapshot-pos,0x1cf698f6b5f8,109616
snapshot-pos,0x1cf698f6b630,109688
snapshot-pos,0x1cf698f6b668,109760
snapshot-pos,0x1cf698f6b690,109815
snapshot-pos,0x1cf698f6b6c0,109879
snapshot-pos,0x1cf698f6b6f0,109943
snapshot-pos,0x1cf698f6b718,109998
snapshot-pos,0x1cf698f6b740,110053
snapshot-pos,0x1cf698f6b778,110125
snapshot-pos,0x1cf698f6b798,110181
snapshot-pos,0x1cf698f6b7c0,110263
snapshot-pos,0x1cf698f6b7f0,110336
snapshot-pos,0x1cf698f6b820,110436
snapshot-pos,0x1cf698f6b848,110491
snapshot-pos,0x1cf698f6b880,110563
snapshot-pos,0x1cf698f6b8b8,110653
snapshot-pos,0x1cf698f6b8e0,110708
snapshot-pos,0x1cf698f6b908,110862
snapshot-pos,0x1cf698f6b930,110980
snapshot-pos,0x1cf698f6b960,111044
snapshot-pos,0x1cf698f6b988,111099
snapshot-pos,0x1cf698f6b9b0,111154
snapshot-pos,0x1cf698f6b9d8,111209
snapshot-pos,0x1cf698f6ba18,111316
snapshot-pos,0x1cf698f6ba40,111398
snapshot-pos,0x1cf698f6ba68,111453
snapshot-pos,0x1cf698f6ba98,111517
snapshot-pos,0x1cf698f6bac0,111644
snapshot-pos,0x1cf698f6baf0,111708
snapshot-pos,0x1cf698f6bb20,111772
snapshot-pos,0x1cf698f6bb48,111827
snapshot-pos,0x1cf698f6bb70,111882
snapshot-pos,0x1cf698f6bb90,111956
snapshot-pos,0x1cf698f6bbb0,112012
snapshot-pos,0x1cf698f6bbd8,112067
snapshot-pos,0x1cf698f6bc08,112131
snapshot-pos,0x1cf698f6bc30,112213
snapshot-pos,0x1cf698f6bc58,112277
snapshot-pos,0x1cf698f6bc88,112359
snapshot-pos,0x1cf698f6bcb0,112450
snapshot-pos,0x1cf698f6bcd8,112541
snapshot-pos,0x1cf698f6bd00,112596
snapshot-pos,0x1cf698f6bd30,112660
snapshot-pos,0x1cf698f6bd60,112760
snapshot-pos,0x1cf698f6bd80,112816
snapshot-pos,0x1cf698f6bda8,112880
snapshot-pos,0x1cf698f6bdd0,112962
snapshot-pos,0x1cf698f6bdf0,113045
snapshot-pos,0x1cf698f6be10,113092
snapshot-pos,0x1cf698f6be40,113156
snapshot-pos,0x1cf698f6be70,113229
snapshot-pos,0x1cf698f6be98,113311
snapshot-pos,0x1cf698f6bec0,113366
snapshot-pos,0x1cf698f6bef0,113430
snapshot-pos,0x1cf698f6bf28,113502
snapshot-pos,0x1cf698f6bf50,113566
snapshot-pos,0x1cf698f6bf80,113639
snapshot-pos,0x1cf698f6bfa8,113694
snapshot-pos,0x1cf698f6c040,113776
snapshot-pos,0x1cf698f6c078,113850
snapshot-pos,0x1cf698f6c0a0,113908
snapshot-pos,0x1cf698f6c0c8,113981
snapshot-pos,0x1cf698f6c0f8,114045
snapshot-pos,0x1cf698f6c120,114100
snapshot-pos,0x1cf698f6c148,114161
snapshot-pos,0x1cf698f6c178,114225
snapshot-pos,0x1cf698f6c1a0,114295
snapshot-pos,0x1cf698f6c1c8,114350
snapshot-pos,0x1cf698f6c1f8,114414
snapshot-pos,0x1cf698f6c228,114478
snapshot-pos,0x1cf698f6c250,114539
snapshot-pos,0x1cf698f6c278,114606
snapshot-pos,0x1cf698f6c2a0,114682
snapshot-pos,0x1cf698f6c2d0,114746
snapshot-pos,0x1cf698f6c300,114816
snapshot-pos,0x1cf698f6c338,114888
snapshot-pos,0x1cf698f6c360,114952
snapshot-pos,0x1cf698f6c390,115022
snapshot-pos,0x1cf698f6c3b8,115077
snapshot-pos,0x1cf698f6c3f0,115149
snapshot-pos,0x1cf698f6c420,115222
snapshot-pos,0x1cf698f6c448,115277
snapshot-pos,0x1cf698f6c470,115338
snapshot-pos,0x1cf698f6c4a8,115410
snapshot-pos,0x1cf698f6c4d0,115477
snapshot-pos,0x1cf698f6c4f8,115532
snapshot-pos,0x1cf698f6c538,115618
snapshot-pos,0x1cf698f6c560,115673
snapshot-pos,0x1cf698f6c588,115731
snapshot-pos,0x1cf698f6c5b8,115795
snapshot-pos,0x1cf698f6c5f0,115870
snapshot-pos,0x1cf698f6c620,115934
snapshot-pos,0x1cf698f6c650,116001
snapshot-pos,0x1cf698f6c678,116083
snapshot-pos,0x1cf698f6c698,116148
snapshot-pos,0x1cf698f6c6c0,116215
snapshot-pos,0x1cf698f6c6e8,116276
snapshot-pos,0x1cf698f6c718,116358
snapshot-pos,0x1cf698f6c740,116413
snapshot-pos,0x1cf698f6c778,116488
snapshot-pos,0x1cf698f6c7a8,116561
snapshot-pos,0x1cf698f6c7d0,116616
snapshot-pos,0x1cf698f6c800,116680
snapshot-pos,0x1cf698f6c830,116744
snapshot-pos,0x1cf698f6c860,116811
snapshot-pos,0x1cf698f6c890,116875
snapshot-pos,0x1cf698f6c8c0,116942
snapshot-pos,0x1cf698f6c8e8,116997
snapshot-pos,0x1cf698f6c910,117064
snapshot-pos,0x1cf698f6c948,117142
snapshot-pos,0x1cf698f6c970,117209
snapshot-pos,0x1cf698f6c9a0,117285
snapshot-pos,0x1cf698f6c9c0,117335
snapshot-pos,0x1cf698f6c9e8,117393
snapshot-pos,0x1cf698f6ca18,117460
snapshot-pos,0x1cf698f6ca40,117515
snapshot-pos,0x1cf698f6ca70,117579
snapshot-pos,0x1cf698f6ca90,117629
snapshot-pos,0x1cf698f6cab8,117687
snapshot-pos,0x1cf698f6cae8,117757
snapshot-pos,0x1cf698f6cb28,117843
snapshot-pos,0x1cf698f6cb50,117898
snapshot-pos,0x1cf698f6cb80,117971
snapshot-pos,0x1cf698f6cba8,118026
snapshot-pos,0x1cf698f6cbe0,118101
snapshot-pos,0x1cf698f6cc08,118171
snapshot-pos,0x1cf698f6cc38,118244
snapshot-pos,0x1cf698f6cc60,118329
snapshot-pos,0x1cf698f6cc88,118384
snapshot-pos,0x1cf698f6ccc0,118456
snapshot-pos,0x1cf698f6ccf0,118523
snapshot-pos,0x1cf698f6cd30,118609
snapshot-pos,0x1cf698f6cd58,118664
snapshot-pos,0x1cf698f6cd80,118728
snapshot-pos,0x1cf698f6cda8,118789
snapshot-pos,0x1cf698f6cdd8,118856
snapshot-pos,0x1cf698f6cdf8,118903
snapshot-pos,0x1cf698f6ce20,118961
snapshot-pos,0x1cf698f6ce40,119014
snapshot-pos,0x1cf698f6ce60,119067
snapshot-pos,0x1cf698f6ce80,119126
snapshot-pos,0x1cf698f6ceb0,119193
snapshot-pos,0x1cf698f6cee8,119271
snapshot-pos,0x1cf698f6cf18,119335
snapshot-pos,0x1cf698f6cf50,119407
snapshot-pos,0x1cf698f6cf80,119471
snapshot-pos,0x1cf698f6cfa0,119521
snapshot-pos,0x1cf698f6cfc0,119583
snapshot-pos,0x1cf698f6cfe0,119630
snapshot-pos,0x1cf698f6d008,119691
snapshot-pos,0x1cf698f6d030,119752
snapshot-pos,0x1cf698f6d058,119813
snapshot-pos,0x1cf698f6d080,119868
snapshot-pos,0x1cf698f6d0b0,119938
snapshot-pos,0x1cf698f6d0e0,120002
snapshot-pos,0x1cf698f6d108,120060
snapshot-pos,0x1cf698f6d140,120138
snapshot-pos,0x1cf698f6d178,120210
snapshot-pos,0x1cf698f6d1a8,120286
snapshot-pos,0x1cf698f6d1c8,120333
snapshot-pos,0x1cf698f6d1f8,120403
snapshot-pos,0x1cf698f6d220,120479
snapshot-pos,0x1cf698f6d250,120543
snapshot-pos,0x1cf698f6d278,120604
snapshot-pos,0x1cf698f6d2a8,120668
snapshot-pos,0x1cf698f6d2d0,120726
snapshot-pos,0x1cf698f6d2f0,120773
snapshot-pos,0x1cf698f6d320,120840
snapshot-pos,0x1cf698f6d350,120916
snapshot-pos,0x1cf698f6d380,120983
snapshot-pos,0x1cf698f6d3a8,121047
snapshot-pos,0x1cf698f6d3d8,121132
snapshot-pos,0x1cf698f6d400,121196
snapshot-pos,0x1cf698f6d428,121251
snapshot-pos,0x1cf698f6d458,121318
snapshot-pos,0x1cf698f6d480,121373
snapshot-pos,0x1cf698f6d4a8,121428
snapshot-pos,0x1cf698f6d4d0,121501
snapshot-pos,0x1cf698f6d510,121605
snapshot-pos,0x1cf698f6d548,121680
snapshot-pos,0x1cf698f6d570,121735
snapshot-pos,0x1cf698f6d598,121808
snapshot-pos,0x1cf698f6d5c0,121881
snapshot-pos,0x1cf698f6d5e0,121928
snapshot-pos,0x1cf698f6d618,122003
snapshot-pos,0x1cf698f6d640,122091
snapshot-pos,0x1cf698f6d668,122146
snapshot-pos,0x1cf698f6d698,122210
snapshot-pos,0x1cf698f6d6d0,122282
snapshot-pos,0x1cf698f6d708,122363
snapshot-pos,0x1cf698f6d730,122418
snapshot-pos,0x1cf698f6d760,122482
snapshot-pos,0x1cf698f6d788,122540
snapshot-pos,0x1cf698f6d7b0,122616
snapshot-pos,0x1cf698f6d7e0,122680
snapshot-pos,0x1cf698f6d810,122747
snapshot-pos,0x1cf698f6d840,122811
snapshot-pos,0x1cf698f6d868,122872
snapshot-pos,0x1cf698f6d8a0,122944
snapshot-pos,0x1cf698f6d8c8,123026
snapshot-pos,0x1cf698f6d8f0,123084
snapshot-pos,0x1cf698f6d920,123154
snapshot-pos,0x1cf698f6d950,123224
snapshot-pos,0x1cf698f6d980,123294
snapshot-pos,0x1cf698f6d9b0,123364
snapshot-pos,0x1cf698f6d9d0,123411
snapshot-pos,0x1cf698f6da00,123475
snapshot-pos,0x1cf698f6da28,123530
snapshot-pos,0x1cf698f6da60,123608
snapshot-pos,0x1cf698f6da88,123678
snapshot-pos,0x1cf698f6dab0,123733
snapshot-pos,0x1cf698f6dad8,123791
snapshot-pos,0x1cf698f6db00,123855
snapshot-pos,0x1cf698f6db28,123922
snapshot-pos,0x1cf698f6db50,123977
snapshot-pos,0x1cf698f6db70,124036
snapshot-pos,0x1cf698f6db98,124091
snapshot-pos,0x1cf698f6dbc8,124155
snapshot-pos,0x1cf698f6dc08,124235
snapshot-pos,0x1cf698f6dc30,124296
snapshot-pos,0x1cf698f6dc60,124360
snapshot-pos,0x1cf698f6dc90,124424
snapshot-pos,0x1cf698f6dcc0,124488
snapshot-pos,0x1cf698f6dce8,124549
snapshot-pos,0x1cf698f6dd10,124625
snapshot-pos,0x1cf698f6dd40,124692
snapshot-pos,0x1cf698f6dd68,124756
snapshot-pos,0x1cf698f6dd98,124820
snapshot-pos,0x1cf698f6ddc8,124884
snapshot-pos,0x1cf698f6ddf0,124939
snapshot-pos,0x1cf698f6de18,124994
snapshot-pos,0x1cf698f6de40,125049
snapshot-pos,0x1cf698f6de68,125119
snapshot-pos,0x1cf698f6dea0,125191
snapshot-pos,0x1cf698f6dec8,125246
snapshot-pos,0x1cf698f6def8,125310
snapshot-pos,0x1cf698f6df20,125368
snapshot-pos,0x1cf698f6df48,125423
snapshot-pos,0x1cf698f6df70,125496
snapshot-pos,0x1cf698f6dfb0,125585
snapshot-pos,0x1cf698f6dfd8,125640
snapshot-pos,0x1cf698f6e040,125704
snapshot-pos,0x1cf698f6e068,125761
snapshot-pos,0x1cf698f6e090,125816
snapshot-pos,0x1cf698f6e0b8,125871
snapshot-pos,0x1cf698f6e0e0,125926
snapshot-pos,0x1cf698f6e110,125990
snapshot-pos,0x1cf698f6e140,126057
snapshot-pos,0x1cf698f6e178,126135
snapshot-pos,0x1cf698f6e1a8,126202
snapshot-pos,0x1cf698f6e1d8,126266
snapshot-pos,0x1cf698f6e208,126330
snapshot-pos,0x1cf698f6e238,126394
snapshot-pos,0x1cf698f6e258,126450
snapshot-pos,0x1cf698f6e280,126505
snapshot-pos,0x1cf698f6e2b0,126578
snapshot-pos,0x1cf698f6e2e0,126669
snapshot-pos,0x1cf698f6e310,126736
snapshot-pos,0x1cf698f6e338,126803
snapshot-pos,0x1cf698f6e368,126876
snapshot-pos,0x1cf698f6e390,126943
snapshot-pos,0x1cf698f6e3b0,127014
snapshot-pos,0x1cf698f6e3d8,127075
snapshot-pos,0x1cf698f6e400,127130
snapshot-pos,0x1cf698f6e428,127194
snapshot-pos,0x1cf698f6e468,127280
snapshot-pos,0x1cf698f6e490,127341
snapshot-pos,0x1cf698f6e4b8,127408
snapshot-pos,0x1cf698f6e4f0,127480
snapshot-pos,0x1cf698f6e518,127535
snapshot-pos,0x1cf698f6e540,127602
snapshot-pos,0x1cf698f6e568,127669
snapshot-pos,0x1cf698f6e5a0,127741
snapshot-pos,0x1cf698f6e5c0,127791
snapshot-pos,0x1cf698f6e5f0,127858
snapshot-pos,0x1cf698f6e618,127925
snapshot-pos,0x1cf698f6e638,127975
snapshot-pos,0x1cf698f6e668,128039
snapshot-pos,0x1cf698f6e698,128112
snapshot-pos,0x1cf698f6e6c8,128185
snapshot-pos,0x1cf698f6e6e8,128274
snapshot-pos,0x1cf698f6e718,128338
snapshot-pos,0x1cf698f6e740,128399
snapshot-pos,0x1cf698f6e768,128469
snapshot-pos,0x1cf698f6e790,128530
snapshot-pos,0x1cf698f6e7b8,128585
snapshot-pos,0x1cf698f6e7e8,128652
snapshot-pos,0x1cf698f6e810,128710
snapshot-pos,0x1cf698f6e848,128797
snapshot-pos,0x1cf698f6e870,128876
snapshot-pos,0x1cf698f6e898,128943
snapshot-pos,0x1cf698f6e8b8,128990
snapshot-pos,0x1cf698f6e8e8,129057
snapshot-pos,0x1cf698f6e908,129128
snapshot-pos,0x1cf698f6e930,129189
snapshot-pos,0x1cf698f6e958,129244
snapshot-pos,0x1cf698f6e980,129311
snapshot-pos,0x1cf698f6e9a8,129366
snapshot-pos,0x1cf698f6e9d0,129427
snapshot-pos,0x1cf698f6ea00,129491
snapshot-pos,0x1cf698f6ea30,129558
snapshot-pos,0x1cf698f6ea60,129637
snapshot-pos,0x1cf698f6ea88,129692
snapshot-pos,0x1cf698f6eab8,129807
snapshot-pos,0x1cf698f6eae8,129913
snapshot-pos,0x1cf698f6eb18,129977
snapshot-pos,0x1cf698f6eb58,130057
snapshot-pos,0x1cf698f6eb80,130112
snapshot-pos,0x1cf698f6ebb8,130184
snapshot-pos,0x1cf698f6ebe0,130242
snapshot-pos,0x1cf698f6ec08,130300
snapshot-pos,0x1cf698f6ec30,130361
snapshot-pos,0x1cf698f6ec70,130453
snapshot-pos,0x1cf698f6eca0,130517
snapshot-pos,0x1cf698f6ecc8,130575
snapshot-pos,0x1cf698f6ecf8,130654
snapshot-pos,0x1cf698f6ed28,130718
snapshot-pos,0x1cf698f6ed50,130773
snapshot-pos,0x1cf698f6ed80,130837
snapshot-pos,0x1cf698f6edb0,130904
snapshot-pos,0x1cf698f6ede0,130974
snapshot-pos,0x1cf698f6ee08,131029
snapshot-pos,0x1cf698f6ee38,131093
snapshot-pos,0x1cf698f6ee60,131148
snapshot-pos,0x1cf698f6ee88,131203
snapshot-pos,0x1cf698f6eeb0,131270
snapshot-pos,0x1cf698f6eee8,131348
snapshot-pos,0x1cf698f6ef08,131395
snapshot-pos,0x1cf698f6ef28,131445
snapshot-pos,0x1cf698f6ef60,131520
snapshot-pos,0x1cf698f6ef98,131598
snapshot-pos,0x1cf698f6efc0,131653
snapshot-pos,0x1db253e30ba0,131742
snapshot-pos,0x1db253e30bd8,131771
snapshot-pos,0x1db253e30c10,131800
snapshot-pos,0x1db253e30c48,131829
snapshot-pos,0x1db253e30c80,131858
snapshot-pos,0x1db253e30cb8,131887
snapshot-pos,0x1db253e30cf0,131916
snapshot-pos,0x1db253e30d28,131945
snapshot-pos,0x1db253e30d60,131976
snapshot-pos,0x1db253e30d98,132007
snapshot-pos,0x1db253e30dd0,132036
snapshot-pos,0x1cf698f6f000,132065
snapshot-pos,0x1cf698f6f020,132095
snapshot-pos,0x1cf698f6f040,132125
snapshot-pos,0x1cf698f6f068,132163
snapshot-pos,0x1cf698f6f090,132201
snapshot-pos,0x1cf698f6f0b8,132239
snapshot-pos,0x1cf698f6f0e0,132277
snapshot-pos,0x1cf698f6f100,132307
snapshot-pos,0x1cf698f6f120,132337
snapshot-pos,0x1cf698f6f140,132367
snapshot-pos,0x1cf698f6f160,132397
snapshot-pos,0x1cf698f6f180,132427
snapshot-pos,0x1cf698f6f1a0,132457
snapshot-pos,0x1cf698f6f1c8,132495
snapshot-pos,0x1cf698f6f1e8,132525
snapshot-pos,0x1cf698f6f208,132555
snapshot-pos,0x1cf698f6f230,132593
snapshot-pos,0x1cf698f6f248,132615
snapshot-pos,0x1cf698f6f268,132645
snapshot-pos,0x1cf698f6f288,132675
snapshot-pos,0x1cf698f6f2a8,132705
snapshot-pos,0x1cf698f6f2c8,132735
snapshot-pos,0x1cf698f6f2e8,132767
snapshot-pos,0x1cf698f6f308,132797
snapshot-pos,0x1cf698f6f328,132827
snapshot-pos,0x1cf698f6f348,132857
snapshot-pos,0x1cf698f6f368,132887
snapshot-pos,0x1cf698f6f388,132917
snapshot-pos,0x1cf698f6f3a8,132947
snapshot-pos,0x1cf698f6f3d0,132985
snapshot-pos,0x1cf698f6f3f8,133023
snapshot-pos,0x1cf698f6f418,133053
snapshot-pos,0x1cf698f6f438,133083
snapshot-pos,0x1cf698f6f460,133121
snapshot-pos,0x1cf698f6f480,133151
snapshot-pos,0x1cf698f6f4a8,133189
snapshot-pos,0x1cf698f6f4c8,133219
snapshot-pos,0x1cf698f6f4e8,133249
snapshot-pos,0x1cf698f6f508,133279
snapshot-pos,0x1cf698f6f528,133309
snapshot-pos,0x1cf698f6f548,133339
snapshot-pos,0x1cf698f6f568,133371
snapshot-pos,0x1cf698f6f588,133407
snapshot-pos,0x1cf698f6f5c0,133462
snapshot-pos,0x1cf698f6f5f8,133517
snapshot-pos,0x1cf698f6f630,133572
snapshot-pos,0x1cf698f6f668,133627
snapshot-pos,0x1cf698f6f6a0,133682
snapshot-pos,0x1cf698f6f6c8,133720
snapshot-pos,0x1cf698f6f6f0,133758
snapshot-pos,0x1cf698f6f720,133805
snapshot-pos,0x1cf698f6f740,133835
snapshot-pos,0x1cf698f6f760,133865
snapshot-pos,0x1cf698f6f780,133895
snapshot-pos,0x1cf698f6f7a8,133933
snapshot-pos,0x1cf698f6f7d8,133980
snapshot-pos,0x1cf698f6f800,134018
snapshot-pos,0x1cf698f6f828,134056
snapshot-pos,0x1cf698f6f860,134111
snapshot-pos,0x1cf698f6f890,134158
snapshot-pos,0x1cf698f6f8c8,134213
snapshot-pos,0x1cf698f6f8f8,134260
snapshot-pos,0x1cf698f6f920,134298
snapshot-pos,0x1cf698f6f948,134336
snapshot-pos,0x1cf698f6f970,134374
snapshot-pos,0x1cf698f6f998,134412
snapshot-pos,0x1cf698f6f9c0,134450
snapshot-pos,0x1cf698f6f9e8,134488
snapshot-pos,0x1cf698f6fa08,134518
snapshot-pos,0x1cf698f6fa28,134548
snapshot-pos,0x1cf698f6fa48,134578
snapshot-pos,0x1cf698f6fa70,134616
snapshot-pos,0x1cf698f6fa98,134654
snapshot-pos,0x1cf698f6fac0,134692
snapshot-pos,0x1cf698f6fae8,134730
snapshot-pos,0x1cf698f6fb08,134760
snapshot-pos,0x1cf698f6fb38,134807
snapshot-pos,0x1f9009eb5ee0,134857
snapshot-pos,0x1cf698f6fb50,134867
snapshot-pos,0x1f9009eb6040,135013
snapshot-pos,0x1cf698f6fb68,135025
snapshot-pos,0x3f0f96bd8d78,135172
snapshot-pos,0x3f0f96bd95a0,135219
snapshot-pos,0x1f9009eb60e0,135226
snapshot-pos,0x1cf698f6fb80,135236
snapshot-pos,0x3f0f96bd9630,135358
snapshot-pos,0x1cf698f6fbb8,135372
snapshot-pos,0x1cf698f6fbd8,135403
snapshot-pos,0x3f0f96bd96f0,135433
snapshot-pos,0x1f9009eb6200,135439
snapshot-pos,0x1cf698f6fbf8,135449
snapshot-pos,0x1f9009eb6280,135568
snapshot-pos,0x1cf698f6fc10,135578
snapshot-pos,0x3f0f96bd9780,136147
snapshot-pos,0x1cf698f6fc40,136154
snapshot-pos,0x1cf698f6fc68,136211
snapshot-pos,0x3f0f96bda040,136235
snapshot-pos,0x1cf698f6fc78,139121
snapshot-pos,0x3f0f96bdab38,139159
snapshot-pos,0x1cf698f6fca0,139163
snapshot-pos,0x1cf698f6fcc0,139263
snapshot-pos,0x3f0f96bdabc8,139301
snapshot-pos,0x1cf698f6fce8,139377
snapshot-pos,0x3f0f96bdac58,139415
snapshot-pos,0x1cf698f6fd10,139491
snapshot-pos,0x3f0f96bdace8,139529
snapshot-pos,0x1cf698f6fd38,139605
snapshot-pos,0x3f0f96bdad78,139652
snapshot-pos,0x1cf698f6fd68,139728
snapshot-pos,0x3f0f96bdae08,139775
snapshot-pos,0x1cf698f6fd98,139851
snapshot-pos,0x3f0f96bdae98,139898
snapshot-pos,0x1cf698f6fdc8,139974
snapshot-pos,0x3f0f96bdaf28,140012
snapshot-pos,0x1cf698f6fdf0,140016
snapshot-pos,0x1cf698f6fe18,140124
snapshot-pos,0x3f0f96bdafb8,140162
snapshot-pos,0x1f9009eb64c0,140168
snapshot-pos,0x1cf698f6fe40,140178
snapshot-pos,0x1f9009eb65e0,140346
snapshot-pos,0x1cf698f6fe88,140356
snapshot-pos,0x1cf698f6fea0,140501
snapshot-pos,0x1cf698f6fec0,140544
snapshot-pos,0x3f0f96bdb048,140634
snapshot-pos,0x1cf698f6fee8,140824
snapshot-pos,0x3f0f96bdb088,140950
snapshot-pos,0x3f0f96bdb0d0,141115
snapshot-pos,0x1f9009eb6640,141123
snapshot-pos,0x1cf698f70040,141133
snapshot-pos,0x3f0f96bdb160,141675
snapshot-pos,0x1cf698f70218,141689
snapshot-pos,0x1cf698f70238,141721
snapshot-pos,0x3f0f96bdb5d0,141764
snapshot-pos,0x1f9009eb7000,141771
snapshot-pos,0x1cf698f70260,141781
snapshot-pos,0x1f9009eb7240,142118
snapshot-pos,0x1cf698f702f8,142128
snapshot-pos,0x3f0f96bdb660,142558
snapshot-pos,0x1cf698f70310,142608
snapshot-pos,0x1cf698f70330,142638
snapshot-pos,0x1cf698f70350,142668
snapshot-pos,0x1cf698f70370,142707
snapshot-pos,0x1cf698f70390,142737
snapshot-pos,0x1cf698f703b0,142767
snapshot-pos,0x3f0f96bdb6d0,142804
snapshot-pos,0x1cf698f703d0,142811
snapshot-pos,0x1cf698f70400,142877
snapshot-pos,0x335e62006038,142901
snapshot-pos,0x1cf698f70410,155489
snapshot-pos,0x3f0f96bdb740,155552
snapshot-pos,0x1f9009eb72a0,155558
snapshot-pos,0x1cf698f70450,155568
snapshot-pos,0x1cf698f70488,155713
snapshot-pos,0x1f9009eb73a0,155761
snapshot-pos,0x1cf698f704a8,155771
snapshot-pos,0x3f0f96bdb7d0,156035
snapshot-pos,0x1cf698f704c0,156168
snapshot-pos,0x3f0f96bdb830,156215
snapshot-pos,0x1f9009eb7440,156221
snapshot-pos,0x1cf698f704f0,156231
snapshot-pos,0x1f9009eb77a0,157164
snapshot-pos,0x1cf698f705d0,157174
snapshot-pos,0x3f0f96bdb8c0,157354
snapshot-pos,0x1cf698f705e8,157423
snapshot-pos,0x1cf698f70608,157523
snapshot-pos,0x3f0f96bdb940,157561
snapshot-pos,0x1cf698f70630,157565
snapshot-pos,0x1cf698f70650,157666
snapshot-pos,0x3f0f96bdb9d0,157704
snapshot-pos,0x1cf698f70678,157708
snapshot-pos,0x1f9009eb7800,157738
snapshot-pos,0x1cf698f70698,157748
snapshot-pos,0x1cf698f706e8,157933
snapshot-pos,0x1cf698f70718,158116
snapshot-pos,0x1cf698f70728,158189
snapshot-pos,0x3f0f96bdba60,158266
snapshot-pos,0x1cf698f70738,158394
snapshot-pos,0x3f0f96bdbaa8,158432
snapshot-pos,0x1cf698f70760,158436
snapshot-pos,0x1cf698f70780,158538
snapshot-pos,0x3f0f96bdbb38,158576
snapshot-pos,0x1cf698f707a8,158580
snapshot-pos,0x3f0f96bdbbc8,158693
snapshot-pos,0x1cf698f707d0,158772
snapshot-pos,0x3f0f96bdbc58,158810
snapshot-pos,0x1f9009eb79c0,158816
snapshot-pos,0x1cf698f707f8,158826
snapshot-pos,0x1cf698f70880,159072
snapshot-pos,0x1cf698f708a0,159159
snapshot-pos,0x1cf698f708c0,159194
snapshot-pos,0x3f0f96bdbce8,159505
snapshot-pos,0x1cf698f708d0,159631
snapshot-pos,0x3f0f96bdbd28,159669
snapshot-pos,0x1cf698f708f8,159748
snapshot-pos,0x3f0f96bdbdb8,159795
snapshot-pos,0x1cf698f70928,159799
snapshot-pos,0x1cf698f70950,159909
snapshot-pos,0x3f0f96bdbe48,159947
snapshot-pos,0x1cf698f70978,160026
snapshot-pos,0x3f0f96bdbed8,160073
snapshot-pos,0x1cf698f709a8,160077
snapshot-pos,0x1f9009eb7c20,160115
snapshot-pos,0x1cf698f709d0,160125
snapshot-pos,0x1cf698f70a38,160370
snapshot-pos,0x1cf698f70a58,160405
snapshot-pos,0x1cf698f70a88,160516
snapshot-pos,0x1cf698f70ab8,160576
snapshot-pos,0x1cf698f70ae0,160680
snapshot-pos,0x3f0f96bdbf68,160830
snapshot-pos,0x1cf698f70b00,160962
snapshot-pos,0x3f0f96bdc040,161009
snapshot-pos,0x1cf698f70b30,161015
snapshot-pos,0x1cf698f70b58,161125
snapshot-pos,0x3f0f96bdc0d0,161180
snapshot-pos,0x1cf698f70b90,161184
snapshot-pos,0x1cf698f70bc0,161303
snapshot-pos,0x3f0f96bdc160,161350
snapshot-pos,0x1cf698f70bf0,161354
snapshot-pos,0x1cf698f70c18,161464
snapshot-pos,0x3f0f96bdc1f0,161511
snapshot-pos,0x1cf698f70c48,161515
snapshot-pos,0x1cf698f70c70,161625
snapshot-pos,0x3f0f96bdc280,161672
snapshot-pos,0x1cf698f70ca0,161676
snapshot-pos,0x1cf698f70cc8,161786
snapshot-pos,0x3f0f96bdc310,161833
snapshot-pos,0x1cf698f70cf8,161837
snapshot-pos,0x1cf698f70d20,161947
snapshot-pos,0x3f0f96bdc3a0,161985
snapshot-pos,0x1cf698f70d48,161989
snapshot-pos,0x1cf698f70d68,162091
snapshot-pos,0x3f0f96bdc430,162138
snapshot-pos,0x1f9009eb7e00,162144
snapshot-pos,0x1cf698f70d98,162154
snapshot-pos,0x1cf698f70dd0,162341
snapshot-pos,0x1cf698f70df8,162420
snapshot-pos,0x3f0f96bdc4c0,162500
snapshot-pos,0x1cf698f70e20,162629
snapshot-pos,0x3f0f96bdc508,162667
snapshot-pos,0x1f9009eb7f00,162673
snapshot-pos,0x1cf698f70e48,162683
snapshot-pos,0x1cf698f70e80,162870
snapshot-pos,0x1cf698f70ea0,162941
snapshot-pos,0x3f0f96bdc598,163021
snapshot-pos,0x1cf698f70ec8,163150
snapshot-pos,0x3f0f96bdc5e0,163197
snapshot-pos,0x1f9009eb8040,163203
snapshot-pos,0x1cf698f70ef8,163215
snapshot-pos,0x3f0f96bdc670,163445
snapshot-pos,0x1cf698f70f28,163574
snapshot-pos,0x3f0f96bdc6b8,163621
snapshot-pos,0x1f9009eb8120,163627
snapshot-pos,0x1cf698f70f58,163637
snapshot-pos,0x3f0f96bdc748,163876
snapshot-pos,0x1cf698f70f88,164005
snapshot-pos,0x3f0f96bdc790,164052
snapshot-pos,0x1cf698f70fb8,164130
snapshot-pos,0x3f0f96bdc820,164185
snapshot-pos,0x1cf698f70ff0,164263
snapshot-pos,0x3f0f96bdc8b0,164310
snapshot-pos,0x1f9009eb8200,164317
snapshot-pos,0x1cf698f71020,164327
snapshot-pos,0x1cf698f71178,164781
snapshot-pos,0x3f0f96bdc940,164843
snapshot-pos,0x1cf698f711a8,164972
snapshot-pos,0x1cf698f711d8,165047
snapshot-pos,0x1cf698f71200,165148
snapshot-pos,0x1cf698f71228,165199
snapshot-pos,0x1cf698f71250,165249
snapshot-pos,0x1cf698f71278,165365
snapshot-pos,0x1cf698f712a0,165415
snapshot-pos,0x1cf698f712c0,165505
snapshot-pos,0x1cf698f712e0,165547
snapshot-pos,0x1cf698f71300,165655
snapshot-pos,0x1cf698f71328,165926
snapshot-pos,0x3f0f96bdc958,165992
snapshot-pos,0x1cf698f71358,166127
snapshot-pos,0x1cf698f71378,166390
snapshot-pos,0x3f0f96bdc970,166456
snapshot-pos,0x1cf698f713a8,166591
snapshot-pos,0x1cf698f713c8,166673
snapshot-pos,0x3f0f96bdc988,166741
snapshot-pos,0x3f0f96bdc9a0,166918
snapshot-pos,0x1cf698f713f8,167056
snapshot-pos,0x3f0f96bdca00,167111
snapshot-pos,0x3f0f96bdca90,167191
snapshot-pos,0x1f9009eb8940,167197
snapshot-pos,0x1cf698f71430,167207
snapshot-pos,0x1cf698f714b0,167415
snapshot-pos,0x1cf698f714d0,167462
snapshot-pos,0x1cf698f714f8,167517
snapshot-pos,0x1cf698f71520,167572
snapshot-pos,0x1cf698f71548,167627
snapshot-pos,0x1cf698f71570,167682
snapshot-pos,0x1cf698f71598,167737
snapshot-pos,0x1cf698f715c0,167792
snapshot-pos,0x1cf698f715e8,167847
snapshot-pos,0x1cf698f71608,167894
snapshot-pos,0x1cf698f71630,167949
snapshot-pos,0x1cf698f71650,167996
snapshot-pos,0x3f0f96bdcb20,168065
snapshot-pos,0x1cf698f71678,168191
snapshot-pos,0x3f0f96bdcb60,168254
snapshot-pos,0x1f9009eb8b00,168260
snapshot-pos,0x1cf698f716b8,168270
snapshot-pos,0x1cf698f71750,168523
snapshot-pos,0x3f0f96bdcbf0,168967
snapshot-pos,0x1cf698f71790,169099
snapshot-pos,0x3f0f96bdcc40,169129
snapshot-pos,0x1cf698f717b0,169207
snapshot-pos,0x3f0f96bdccd0,169245
snapshot-pos,0x3f0f96bdcd60,169326
snapshot-pos,0x1cf698f717d8,169405
snapshot-pos,0x3f0f96bdcdf0,169443
snapshot-pos,0x3f0f96bdce80,169524
snapshot-pos,0x1cf698f71800,169603
snapshot-pos,0x3f0f96bdcf10,169650
snapshot-pos,0x1cf698f71830,169728
snapshot-pos,0x3f0f96bdcfa0,169775
snapshot-pos,0x1f9009eba040,169782
snapshot-pos,0x1cf698f71860,169795
snapshot-pos,0x1cf698f71c78,171061
snapshot-pos,0x1cf698f71c98,171302
snapshot-pos,0x3f0f96bdd030,171364
snapshot-pos,0x1cf698f71cc8,171644
snapshot-pos,0x1cf698f71cf0,171716
snapshot-pos,0x1cf698f71d18,171786
snapshot-pos,0x1cf698f71d40,171855
snapshot-pos,0x1cf698f71d68,171927
snapshot-pos,0x1cf698f71d90,172067
snapshot-pos,0x1cf698f71db8,172207
snapshot-pos,0x1cf698f71dd8,172339
snapshot-pos,0x1cf698f71df8,172471
snapshot-pos,0x1cf698f71e18,172747
snapshot-pos,0x3f0f96bdd048,172813
snapshot-pos,0x3f0f96bdd060,173097
snapshot-pos,0x3f0f96bdd078,173427
snapshot-pos,0x3f0f96bdd090,173752
snapshot-pos,0x3f0f96bdd0a8,174124
snapshot-pos,0x3f0f96bdd0c0,174422
snapshot-pos,0x3f0f96bdd0d8,175876
snapshot-pos,0x1cf698f71e48,175950
snapshot-pos,0x1cf698f71e68,175980
snapshot-pos,0x1cf698f71e88,176085
snapshot-pos,0x3f0f96bdd168,176132
snapshot-pos,0x1cf698f71eb8,176136
snapshot-pos,0x1cf698f71ee0,176246
snapshot-pos,0x3f0f96bdd1f8,176301
snapshot-pos,0x1cf698f71f18,176305
snapshot-pos,0x1cf698f71f48,176424
snapshot-pos,0x3f0f96bdd288,176462
snapshot-pos,0x1cf698f71f70,176540
snapshot-pos,0x3f0f96bdd318,176595
snapshot-pos,0x1cf698f71fa8,176599
snapshot-pos,0x1cf698f71fd8,176718
snapshot-pos,0x3f0f96bdd3a8,176756
snapshot-pos,0x1cf698f72040,176760
snapshot-pos,0x1cf698f72060,176864
snapshot-pos,0x3f0f96bdd438,176911
snapshot-pos,0x1cf698f72090,176915
snapshot-pos,0x1cf698f720b8,177025
snapshot-pos,0x3f0f96bdd4c8,177080
snapshot-pos,0x1cf698f720f0,177158
snapshot-pos,0x3f0f96bdd558,177205
snapshot-pos,0x1cf698f72120,177209
snapshot-pos,0x1cf698f72148,177319
snapshot-pos,0x3f0f96bdd5e8,177349
snapshot-pos,0x1cf698f72168,177427
snapshot-pos,0x3f0f96bdd678,177465
snapshot-pos,0x1cf698f72190,177469
snapshot-pos,0x1cf698f721b0,177571
snapshot-pos,0x3f0f96bdd708,177609
snapshot-pos,0x1cf698f721d8,177613
snapshot-pos,0x1cf698f721f8,177715
snapshot-pos,0x3f0f96bdd798,177762
snapshot-pos,0x1cf698f72228,177766
snapshot-pos,0x1cf698f72258,177885
snapshot-pos,0x3f0f96bdd828,177923
snapshot-pos,0x1cf698f72280,177927
snapshot-pos,0x1cf698f722a0,178029
snapshot-pos,0x3f0f96bdd8b8,178067
snapshot-pos,0x1cf698f722c8,178071
snapshot-pos,0x1cf698f722e8,178173
snapshot-pos,0x3f0f96bdd948,178220
snapshot-pos,0x1cf698f72318,178224
snapshot-pos,0x1cf698f72340,178334
snapshot-pos,0x3f0f96bdd9d8,178372
snapshot-pos,0x1f9009ebb420,178379
snapshot-pos,0x1cf698f72368,178389
snapshot-pos,0x3f0f96bdda68,179513
snapshot-pos,0x1cf698f724a8,179639
snapshot-pos,0x3f0f96bddaa8,179677
snapshot-pos,0x1cf698f724d0,179756
snapshot-pos,0x3f0f96bddb38,179794
snapshot-pos,0x1cf698f724f8,179873
snapshot-pos,0x3f0f96bddbc8,179911
snapshot-pos,0x1f9009ebb840,179917
snapshot-pos,0x1cf698f72520,179927
snapshot-pos,0x1cf698f72578,180103
snapshot-pos,0x3f0f96bddc58,180268
snapshot-pos,0x3f0f96bddc98,180397
snapshot-pos,0x1cf698f72598,180476
snapshot-pos,0x3f0f96bddd28,180523
snapshot-pos,0x1cf698f725c8,180602
snapshot-pos,0x3f0f96bdddb8,180640
snapshot-pos,0x3f0f96bdde48,180722
snapshot-pos,0x1cf698f725f0,180726
snapshot-pos,0x3f0f96bdded8,180831
snapshot-pos,0x1cf698f72610,180835
snapshot-pos,0x3f0f96bddf68,180948
snapshot-pos,0x1cf698f72638,180952
snapshot-pos,0x1cf698f72660,181062
snapshot-pos,0x3f0f96bde040,181100
snapshot-pos,0x1f9009ebb960,181109
snapshot-pos,0x1cf698f72688,181119
snapshot-pos,0x1cf698f727a8,181493
snapshot-pos,0x1cf698f727c8,181698
snapshot-pos,0x1cf698f727f0,181741
snapshot-pos,0x1cf698f72800,181804
snapshot-pos,0x1cf698f72828,181847
snapshot-pos,0x1cf698f72838,181977
snapshot-pos,0x1cf698f72868,182029
snapshot-pos,0x1cf698f72878,182092
snapshot-pos,0x1cf698f728a8,182144
snapshot-pos,0x3f0f96bde0d0,182465
snapshot-pos,0x1cf698f728b8,182591
snapshot-pos,0x3f0f96bde110,182638
snapshot-pos,0x1cf698f728e8,182716
snapshot-pos,0x3f0f96bde1a0,182754
snapshot-pos,0x1cf698f72910,182833
snapshot-pos,0x3f0f96bde230,182871
snapshot-pos,0x1cf698f72938,182875
snapshot-pos,0x1cf698f72958,182977
snapshot-pos,0x3f0f96bde2c0,183015
snapshot-pos,0x1f9009ebc040,183021
snapshot-pos,0x1cf698f72980,183033
snapshot-pos,0x1cf698f72a60,183405
snapshot-pos,0x1f9009ebc3e0,183523
snapshot-pos,0x1cf698f72a88,183533
snapshot-pos,0x1cf698f72aa0,183783
snapshot-pos,0x1cf698f72ac0,183834
snapshot-pos,0x1cf698f72ae0,183884
snapshot-pos,0x1cf698f72b00,183919
snapshot-pos,0x1cf698f72b20,183988
snapshot-pos,0x1cf698f72b48,184170
snapshot-pos,0x1cf698f72b70,184225
snapshot-pos,0x1cf698f72b90,184278
snapshot-pos,0x3f0f96bde350,184464
snapshot-pos,0x1cf698f72bb0,184610
snapshot-pos,0x3f0f96bde3c8,184648
snapshot-pos,0x1f9009ebc440,184654
snapshot-pos,0x1cf698f72bd8,184664
snapshot-pos,0x1cf698f72c30,184840
snapshot-pos,0x3f0f96bde458,185012
snapshot-pos,0x3f0f96bde498,185295
snapshot-pos,0x1f9009ebc560,185302
snapshot-pos,0x1cf698f72c58,185312
snapshot-pos,0x3f0f96bde528,185641
snapshot-pos,0x3f0f96bde570,185714
snapshot-pos,0x1cf698f72c88,185739
snapshot-pos,0x3f0f96bde598,186223
snapshot-pos,0x3f0f96bde628,186246
snapshot-pos,0x1cf698f72cb0,186271
snapshot-pos,0x3f0f96bde650,186393
snapshot-pos,0x3f0f96bde6e0,186416
snapshot-pos,0x1cf698f72cd0,186441
snapshot-pos,0x3f0f96bde708,186480
snapshot-pos,0x3f0f96bde748,186610
snapshot-pos,0x3f0f96bde7d8,186727
snapshot-pos,0x1f9009ebc6a0,186734
snapshot-pos,0x1cf698f72cf8,186744
snapshot-pos,0x3f0f96bde868,186915
snapshot-pos,0x3f0f96bde8a8,187079
snapshot-pos,0x1f9009ebc740,187086
snapshot-pos,0x1cf698f72d20,187096
snapshot-pos,0x3f0f96bde938,187300
snapshot-pos,0x3f0f96bde980,187373
snapshot-pos,0x1cf698f72d50,187398
snapshot-pos,0x3f0f96bde9a8,187437
snapshot-pos,0x3f0f96bde9e8,187567
snapshot-pos,0x1f9009ebc800,187574
snapshot-pos,0x1cf698f72d78,187584
snapshot-pos,0x3f0f96bdea78,187755
snapshot-pos,0x3f0f96bdeab8,187919
snapshot-pos,0x1f9009ebc8a0,187926
snapshot-pos,0x1cf698f72da0,187936
snapshot-pos,0x3f0f96bdeb48,188107
snapshot-pos,0x3f0f96bdeb88,188271
snapshot-pos,0x3f0f96bdec18,188294
snapshot-pos,0x3f0f96bdec40,188319
snapshot-pos,0x3f0f96bdec68,188348
snapshot-pos,0x3f0f96bdeca8,188478
snapshot-pos,0x3f0f96bded38,188595
snapshot-pos,0x1f9009ebc940,188602
snapshot-pos,0x1cf698f72dc8,188612
snapshot-pos,0x3f0f96bdedc8,188783
snapshot-pos,0x3f0f96bdee08,188947
snapshot-pos,0x1f9009ebc9e0,188954
snapshot-pos,0x1cf698f72df0,188964
snapshot-pos,0x3f0f96bdee98,189168
snapshot-pos,0x1cf698f72e20,189241
snapshot-pos,0x3f0f96bdeee0,189280
snapshot-pos,0x3f0f96bdef20,189410
snapshot-pos,0x1f9009ebcaa0,189417
snapshot-pos,0x1cf698f72e48,189427
snapshot-pos,0x3f0f96bdefb0,189598
snapshot-pos,0x3f0f96bdeff0,189762
snapshot-pos,0x1f9009ebcb40,189769
snapshot-pos,0x1cf698f72e70,189779
snapshot-pos,0x3f0f96bdf080,189950
snapshot-pos,0x3f0f96bdf0c0,190114
snapshot-pos,0x1f9009ebcbe0,190121
snapshot-pos,0x1cf698f72e98,190131
snapshot-pos,0x3f0f96bdf150,190335
snapshot-pos,0x1cf698f72ec8,190408
snapshot-pos,0x3f0f96bdf198,190447
snapshot-pos,0x3f0f96bdf1d8,190577
snapshot-pos,0x1f9009ebcca0,190584
snapshot-pos,0x1cf698f72ef0,190594
snapshot-pos,0x3f0f96bdf268,190765
snapshot-pos,0x3f0f96bdf2a8,190929
snapshot-pos,0x1f9009ebcd40,190936
snapshot-pos,0x1cf698f72f18,190946
snapshot-pos,0x3f0f96bdf338,191117
snapshot-pos,0x3f0f96bdf378,191281
snapshot-pos,0x1f9009ebcde0,191288
snapshot-pos,0x1cf698f72f40,191298
snapshot-pos,0x3f0f96bdf408,191502
snapshot-pos,0x3f0f96bdf450,191579
snapshot-pos,0x3f0f96bdf490,191709
snapshot-pos,0x1f9009ebcea0,191716
snapshot-pos,0x1cf698f72f70,191726
snapshot-pos,0x3f0f96bdf520,191897
snapshot-pos,0x3f0f96bdf560,192062
snapshot-pos,0x1f9009ebcf40,192069
snapshot-pos,0x1cf698f72f98,192079
snapshot-pos,0x3f0f96bdf5f0,192250
snapshot-pos,0x3f0f96bdf630,192454
snapshot-pos,0x1f9009ebcfe0,192461
snapshot-pos,0x1cf698f72fc0,192471
snapshot-pos,0x3f0f96bdf6c0,192882
snapshot-pos,0x3f0f96bdf708,193153
snapshot-pos,0x1f9009ebd160,193160
snapshot-pos,0x1cf698f73000,193170
snapshot-pos,0x1cf698f73038,193360
snapshot-pos,0x3f0f96bdf798,193602
snapshot-pos,0x3f0f96bdf7e8,194025
snapshot-pos,0x3f0f96bdf830,194157
snapshot-pos,0x1f9009ebd2e0,194164
snapshot-pos,0x1cf698f73058,194174
snapshot-pos,0x3f0f96bdf8c0,194344
snapshot-pos,0x1cf698f730c0,194358
snapshot-pos,0x1cf698f730e0,194390
snapshot-pos,0x3f0f96bdfa10,194437
snapshot-pos,0x3f0f96bdfaa0,194455
snapshot-pos,0x1cf698f73110,194462
snapshot-pos,0x1cf698f73138,194519
snapshot-pos,0x3f0f96be0040,194543
snapshot-pos,0x1cf698f73148,198549
snapshot-pos,0x3f0f96be0f98,198596
snapshot-pos,0x1f9009ebd4c0,198602
snapshot-pos,0x1cf698f73178,198612
snapshot-pos,0x3f0f96be1028,198957
snapshot-pos,0x1cf698f731b0,199089
snapshot-pos,0x3f0f96be1078,199127
snapshot-pos,0x1cf698f731d8,199131
snapshot-pos,0x1cf698f731f8,199233
snapshot-pos,0x3f0f96be1108,199271
snapshot-pos,0x1cf698f73220,199349
snapshot-pos,0x3f0f96be1198,199396
snapshot-pos,0x1cf698f73250,199474
snapshot-pos,0x3f0f96be1228,199521
snapshot-pos,0x3f0f96be12b8,199602
snapshot-pos,0x1cf698f73280,199681
snapshot-pos,0x1cf698f732a8,199720
snapshot-pos,0x1cf698f732d0,199759
snapshot-pos,0x3f0f96be1348,199797
snapshot-pos,0x1cf698f732f8,199801
snapshot-pos,0x1cf698f73318,199903
snapshot-pos,0x3f0f96be13d8,199941
snapshot-pos,0x1cf698f73340,200020
snapshot-pos,0x3f0f96be1468,200067
snapshot-pos,0x1cf698f73370,200145
snapshot-pos,0x3f0f96be14f8,200192
snapshot-pos,0x1cf698f733a0,200270
snapshot-pos,0x3f0f96be1588,200317
snapshot-pos,0x1cf698f733d0,200395
snapshot-pos,0x3f0f96be1618,200442
snapshot-pos,0x1cf698f73400,200520
snapshot-pos,0x3f0f96be16a8,200567
snapshot-pos,0x1f9009ebd600,200573
snapshot-pos,0x1cf698f73430,200583
snapshot-pos,0x3f0f96be1738,200778
snapshot-pos,0x1f9009ebd6e0,200785
snapshot-pos,0x1cf698f73460,200795
snapshot-pos,0x1cf698f73518,201059
snapshot-pos,0x1cf698f73548,201269
snapshot-pos,0x3f0f96be17c8,201598
snapshot-pos,0x3f0f96be1820,201771
snapshot-pos,0x1cf698f73570,201918
snapshot-pos,0x3f0f96be1878,201956
snapshot-pos,0x1f9009ebe040,201963
snapshot-pos,0x1cf698f73598,201975
snapshot-pos,0x3f0f96be1908,202705
snapshot-pos,0x1cf698f73820,202709
snapshot-pos,0x1f9009ebeca0,202747
snapshot-pos,0x1cf698f73848,202757
snapshot-pos,0x3f0f96be1998,202997
snapshot-pos,0x3f0f96be19e0,203140
snapshot-pos,0x1cf698f73878,203144
snapshot-pos,0x1f9009ebed80,203182
snapshot-pos,0x1cf698f738a0,203192
snapshot-pos,0x3f0f96be1a70,203400
snapshot-pos,0x3f0f96be1ab8,203543
snapshot-pos,0x1cf698f738d0,203547
snapshot-pos,0x1f9009ebee40,203594
snapshot-pos,0x1cf698f73900,203604
snapshot-pos,0x3f0f96be1b48,203739
snapshot-pos,0x3f0f96be1b88,203879
snapshot-pos,0x1cf698f73920,203883
snapshot-pos,0x1f9009ebeec0,203930
snapshot-pos,0x1cf698f73950,203940
snapshot-pos,0x3f0f96be1c18,204193
snapshot-pos,0x3f0f96be1c60,204336
snapshot-pos,0x1cf698f73978,204340
snapshot-pos,0x1f9009ebefc0,204378
snapshot-pos,0x1cf698f739a0,204388
snapshot-pos,0x3f0f96be1cf0,204523
snapshot-pos,0x1cf698f739c0,205262
snapshot-pos,0x1cf698f739e0,205404
snapshot-pos,0x1cf698f73a00,205726
snapshot-pos,0x1cf698f73a20,205868
snapshot-pos,0x1cf698f73a48,206025
snapshot-pos,0x1cf698f73a68,206179
snapshot-pos,0x1cf698f73a90,206336
snapshot-pos,0x1cf698f73ab0,206490
snapshot-pos,0x1cf698f73ad8,206647
snapshot-pos,0x1cf698f73af8,206801
snapshot-pos,0x1cf698f73b20,206958
snapshot-pos,0x1cf698f73b40,207125
snapshot-pos,0x3f0f96be1d38,207493
snapshot-pos,0x3f0f96be1db8,207962
snapshot-pos,0x3f0f96be1e00,208098
snapshot-pos,0x1f9009ebf040,208105
snapshot-pos,0x1cf698f73b60,208115
snapshot-pos,0x3f0f96be2040,208350
snapshot-pos,0x1cf698f73c08,208376
snapshot-pos,0x1cf698f73c28,208428
snapshot-pos,0x1cf698f73c48,208460
snapshot-pos,0x3f0f96be23b0,208490
snapshot-pos,0x1f9009ebf320,208497
snapshot-pos,0x1cf698f73c68,208507
snapshot-pos,0x1cf698f73d68,209187
snapshot-pos,0x3f0f96be2440,210439
snapshot-pos,0x3f0f96be2490,210511
snapshot-pos,0x1cf698f73d90,210518
snapshot-pos,0x1cf698f73dc0,210584
snapshot-pos,0x3f0f96be2500,210608
snapshot-pos,0x1cf698f73dd0,216124
snapshot-pos,0x3f0f96be3a40,216162
snapshot-pos,0x1f9009ebf9e0,216168
snapshot-pos,0x1cf698f73df8,216178
snapshot-pos,0x3f0f96be3ad0,216564
snapshot-pos,0x1cf698f73e38,216693
snapshot-pos,0x3f0f96be3b18,216723
snapshot-pos,0x1f9009ebfb40,216729
snapshot-pos,0x1cf698f73e58,216739
snapshot-pos,0x3f0f96be3ba8,217841
snapshot-pos,0x1cf698f73ef8,217985
snapshot-pos,0x3f0f96be3c18,218015
snapshot-pos,0x1f9009ec0040,218021
snapshot-pos,0x1cf698f73f18,218033
snapshot-pos,0x3f0f96be3ca8,218751
snapshot-pos,0x1cf698f73f98,218886
snapshot-pos,0x3f0f96be3d00,218924
snapshot-pos,0x1f9009ec02c0,218930
snapshot-pos,0x1cf698f74040,218940
snapshot-pos,0x3f0f96be3d90,219585
snapshot-pos,0x1cf698f74090,219714
snapshot-pos,0x3f0f96be3dd8,219752
snapshot-pos,0x1f9009ec0520,219758
snapshot-pos,0x1cf698f740b8,219768
snapshot-pos,0x3f0f96be3e68,220451
snapshot-pos,0x1cf698f74110,220583
snapshot-pos,0x3f0f96be3eb8,220613
snapshot-pos,0x1f9009ec07a0,220619
snapshot-pos,0x1cf698f74130,220629
snapshot-pos,0x3f0f96be3f48,220947
snapshot-pos,0x1cf698f74170,221079
snapshot-pos,0x3f0f96be4040,221109
snapshot-pos,0x1f9009ec08c0,221117
snapshot-pos,0x1cf698f74190,221127
snapshot-pos,0x3f0f96be40d0,221445
snapshot-pos,0x1cf698f741d0,221577
snapshot-pos,0x3f0f96be4120,221607
snapshot-pos,0x1f9009ec09e0,221613
snapshot-pos,0x1cf698f741f0,221623
snapshot-pos,0x3f0f96be41b0,221941
snapshot-pos,0x1cf698f74230,222073
snapshot-pos,0x3f0f96be4200,222103
snapshot-pos,0x1f9009ec0b00,222109
snapshot-pos,0x1cf698f74250,222119
snapshot-pos,0x3f0f96be4290,222437
snapshot-pos,0x1cf698f74290,222569
snapshot-pos,0x3f0f96be42e0,222599
snapshot-pos,0x1f9009ec0c20,222605
snapshot-pos,0x1cf698f742b0,222615
snapshot-pos,0x3f0f96be4370,222933
snapshot-pos,0x1cf698f742f0,223065
snapshot-pos,0x3f0f96be43c0,223095
snapshot-pos,0x1f9009ec0d40,223101
snapshot-pos,0x1cf698f74310,223111
snapshot-pos,0x3f0f96be4450,223547
snapshot-pos,0x1cf698f74368,223679
snapshot-pos,0x3f0f96be44a0,223709
snapshot-pos,0x1f9009ec0ec0,223715
snapshot-pos,0x1cf698f74388,223725
snapshot-pos,0x3f0f96be4530,224043
snapshot-pos,0x1cf698f743c8,224175
snapshot-pos,0x3f0f96be4580,224213
snapshot-pos,0x1f9009ec0fe0,224219
snapshot-pos,0x1cf698f743f0,224229
snapshot-pos,0x3f0f96be4610,224471
snapshot-pos,0x1cf698f74420,224600
snapshot-pos,0x3f0f96be4658,224630
snapshot-pos,0x1f9009ec10c0,224636
snapshot-pos,0x1cf698f74440,224646
snapshot-pos,0x3f0f96be46e8,224888
snapshot-pos,0x1cf698f74470,225017
snapshot-pos,0x3f0f96be4730,225047
snapshot-pos,0x1f9009ec11a0,225053
snapshot-pos,0x1cf698f74490,225063
snapshot-pos,0x3f0f96be47c0,225381
snapshot-pos,0x1cf698f744d0,225513
snapshot-pos,0x3f0f96be4810,225543
snapshot-pos,0x1f9009ec12c0,225549
snapshot-pos,0x1cf698f744f0,225559
snapshot-pos,0x3f0f96be48a0,225995
snapshot-pos,0x1cf698f74548,226127
snapshot-pos,0x3f0f96be48f0,226157
snapshot-pos,0x1f9009ec1440,226163
snapshot-pos,0x1cf698f74568,226173
snapshot-pos,0x3f0f96be4980,226491
snapshot-pos,0x1cf698f745a8,226623
snapshot-pos,0x3f0f96be49d0,226653
snapshot-pos,0x1f9009ec1560,226659
snapshot-pos,0x1cf698f745c8,226669
snapshot-pos,0x3f0f96be4a60,226907
snapshot-pos,0x1cf698f745f8,227039
snapshot-pos,0x3f0f96be4ab0,227069
snapshot-pos,0x1f9009ec1640,227075
snapshot-pos,0x1cf698f74618,227085
snapshot-pos,0x1cf698f74670,227279
snapshot-pos,0x3f0f96be4b40,227341
snapshot-pos,0x3f0f96be4b60,227707
snapshot-pos,0x1cf698f746a0,227836
snapshot-pos,0x3f0f96be4ba8,227874
snapshot-pos,0x1f9009ec1860,227880
snapshot-pos,0x1cf698f746c8,227890
snapshot-pos,0x1cf698f74740,228221
snapshot-pos,0x3f0f96be4c38,228291
snapshot-pos,0x1cf698f74778,228516
snapshot-pos,0x3f0f96be4c50,228590
snapshot-pos,0x3f0f96be4c68,228791
snapshot-pos,0x1cf698f747b0,228926
snapshot-pos,0x3f0f96be4cc0,228956
snapshot-pos,0x1f9009ec1b40,228962
snapshot-pos,0x1cf698f747d0,228972
snapshot-pos,0x3f0f96be4d50,229144
snapshot-pos,0x1cf698f747f8,229270
snapshot-pos,0x3f0f96be4d90,229308
snapshot-pos,0x1f9009ec1be0,229314
snapshot-pos,0x1cf698f74820,229324
snapshot-pos,0x3f0f96be4e20,229565
snapshot-pos,0x1cf698f74850,229697
snapshot-pos,0x3f0f96be4e70,229744
snapshot-pos,0x1f9009ec1cc0,229750
snapshot-pos,0x1cf698f74880,229760
snapshot-pos,0x1cf698f748d0,229994
snapshot-pos,0x3f0f96be4f00,230056
snapshot-pos,0x3f0f96be4f18,230291
snapshot-pos,0x1cf698f74900,230423
snapshot-pos,0x3f0f96be4f68,230478
snapshot-pos,0x1f9009ec2040,230484
snapshot-pos,0x1cf698f74938,230496
snapshot-pos,0x3f0f96be4ff8,230747
snapshot-pos,0x3f0f96be5010,230982
snapshot-pos,0x1cf698f74988,231114
snapshot-pos,0x3f0f96be5060,231161
snapshot-pos,0x1f9009ec2200,231167
snapshot-pos,0x1cf698f749b8,231177
snapshot-pos,0x3f0f96be50f0,231501
snapshot-pos,0x1cf698f749f8,231639
snapshot-pos,0x3f0f96be5150,231702
snapshot-pos,0x1f9009ec2320,231708
snapshot-pos,0x1cf698f74a38,231718
snapshot-pos,0x1cf698f74ac8,232243
snapshot-pos,0x3f0f96be51e0,232305
snapshot-pos,0x3f0f96be51f8,232580
snapshot-pos,0x1cf698f74af8,232736
snapshot-pos,0x3f0f96be5278,232774
snapshot-pos,0x1f9009ec2600,232781
snapshot-pos,0x1cf698f74b20,232791
snapshot-pos,0x1cf698f74bd0,233368
snapshot-pos,0x1cf698f74bf0,233455
snapshot-pos,0x1cf698f74c18,233521
snapshot-pos,0x1cf698f74c40,233713
snapshot-pos,0x3f0f96be5308,233779
snapshot-pos,0x1cf698f74c70,234215
snapshot-pos,0x3f0f96be5328,234339
snapshot-pos,0x1cf698f74c98,234471
snapshot-pos,0x3f0f96be5378,234509
snapshot-pos,0x1f9009ec2b20,234515
snapshot-pos,0x1cf698f74cc0,234525
snapshot-pos,0x3f0f96be5408,234756
snapshot-pos,0x1cf698f74cf0,234885
snapshot-pos,0x3f0f96be5450,234923
snapshot-pos,0x1f9009ec2c00,234929
snapshot-pos,0x1cf698f74d18,234939
snapshot-pos,0x3f0f96be54e0,235110
snapshot-pos,0x1cf698f74d40,235236
snapshot-pos,0x3f0f96be5520,235274
snapshot-pos,0x1f9009ec2ca0,235280
snapshot-pos,0x1cf698f74d68,235290
snapshot-pos,0x3f0f96be55b0,235461
snapshot-pos,0x1cf698f74d90,235587
snapshot-pos,0x3f0f96be55f0,235625
snapshot-pos,0x1f9009ec2d40,235631
snapshot-pos,0x1cf698f74db8,235641
snapshot-pos,0x3f0f96be5680,235812
snapshot-pos,0x3f0f96be56c0,235941
snapshot-pos,0x1f9009ec2de0,235948
snapshot-pos,0x1cf698f74de0,235958
snapshot-pos,0x1cf698f74e30,236382
snapshot-pos,0x1cf698f74e58,236448
snapshot-pos,0x3f0f96be5750,236515
snapshot-pos,0x3f0f96be57a0,236650
snapshot-pos,0x1f9009ec2fa0,236657
snapshot-pos,0x1cf698f74e80,236667
snapshot-pos,0x3f0f96be5830,237137
snapshot-pos,0x3f0f96be5878,237269
snapshot-pos,0x1f9009ec3160,237276
snapshot-pos,0x1cf698f74ed0,237286
snapshot-pos,0x3f0f96be5908,237817
snapshot-pos,0x3f0f96be5950,237949
snapshot-pos,0x3f0f96be59e0,238031
snapshot-pos,0x1f9009ec3340,238038
snapshot-pos,0x1cf698f74f28,238048
snapshot-pos,0x3f0f96be5a70,238487
snapshot-pos,0x3f0f96be5ab8,238619
snapshot-pos,0x3f0f96be5b48,238701
snapshot-pos,0x1f9009ec34e0,238708
snapshot-pos,0x1cf698f74f70,238718
snapshot-pos,0x1cf698f74fd8,239187
snapshot-pos,0x3f0f96be5bd8,239323
snapshot-pos,0x1cf698f75000,239452
snapshot-pos,0x3f0f96be5c20,239490
snapshot-pos,0x3f0f96be5cb0,239571
snapshot-pos,0x1cf698f75028,239650
snapshot-pos,0x3f0f96be5d40,239680
snapshot-pos,0x3f0f96be5dd0,239761
snapshot-pos,0x1cf698f75048,239840
snapshot-pos,0x3f0f96be5e60,239878
snapshot-pos,0x3f0f96be5ef0,239958
snapshot-pos,0x3f0f96be6040,240038
snapshot-pos,0x1cf698f75070,240474
snapshot-pos,0x3f0f96be60d0,240638
snapshot-pos,0x3f0f96be6118,240772
snapshot-pos,0x1f9009ec36e0,240779
snapshot-pos,0x1cf698f75080,240789
snapshot-pos,0x3f0f96be61a8,240915
snapshot-pos,0x1cf698f750c0,240929
snapshot-pos,0x3f0f96be6218,240967
snapshot-pos,0x3f0f96be62a8,240985
snapshot-pos,0x1cf698f750e8,240992
snapshot-pos,0x1cf698f75118,241058
snapshot-pos,0x1cf698f75128,241158
snapshot-pos,0x1cf698f75158,241207
snapshot-pos,0x1cf698f75180,241247
snapshot-pos,0x3f0f96be6318,241285
snapshot-pos,0x1cf698f751a8,241362
snapshot-pos,0x3f0f96be63a8,241409
snapshot-pos,0x1cf698f751d8,241486
snapshot-pos,0x3f0f96be6438,241541
snapshot-pos,0x3f0f96be64c8,241780
snapshot-pos,0x3f0f96be6508,241930
snapshot-pos,0x1f9009ec3800,241937
snapshot-pos,0x1cf698f75210,241947
snapshot-pos,0x3f0f96be6598,242222
snapshot-pos,0x1cf698f752e0,242236
snapshot-pos,0x3f0f96be68a8,242274
snapshot-pos,0x3f0f96be6938,242293
snapshot-pos,0x1cf698f75308,242300
snapshot-pos,0x1cf698f75330,242357
snapshot-pos,0x3f0f96be8040,242381
snapshot-pos,0x1cf698f75340,250443
snapshot-pos,0x3f0f96be9f70,250481
snapshot-pos,0x1cf698f75368,250560
snapshot-pos,0x3f0f96bea040,250598
snapshot-pos,0x1cf698f75390,250604
snapshot-pos,0x3f0f96bea0d0,250717
snapshot-pos,0x1cf698f753b0,250721
snapshot-pos,0x1cf698f753d8,250839
snapshot-pos,0x3f0f96bea160,250877
snapshot-pos,0x1cf698f75400,250881
snapshot-pos,0x3f0f96bea1f0,250986
snapshot-pos,0x3f0f96bea280,251068
snapshot-pos,0x1cf698f75420,251072
snapshot-pos,0x3f0f96bea310,251185
snapshot-pos,0x1cf698f75448,251189
snapshot-pos,0x3f0f96bea3a0,251302
snapshot-pos,0x1cf698f75470,251306
snapshot-pos,0x3f0f96bea430,251411
snapshot-pos,0x1cf698f75490,251490
snapshot-pos,0x1cf698f754c0,251538
snapshot-pos,0x3f0f96bea4c0,251576
snapshot-pos,0x1cf698f754e8,251580
snapshot-pos,0x1cf698f75508,251682
snapshot-pos,0x3f0f96bea550,251729
snapshot-pos,0x1cf698f75538,251807
snapshot-pos,0x3f0f96bea5e0,251845
snapshot-pos,0x1cf698f75560,251923
snapshot-pos,0x3f0f96bea670,251961
snapshot-pos,0x1cf698f75588,252039
snapshot-pos,0x1cf698f755b8,252087
snapshot-pos,0x3f0f96bea700,252150
snapshot-pos,0x1cf698f755f8,252228
snapshot-pos,0x3f0f96bea790,252291
snapshot-pos,0x1cf698f75638,252369
snapshot-pos,0x3f0f96bea820,252407
snapshot-pos,0x1cf698f75660,252411
snapshot-pos,0x1cf698f75680,252513
snapshot-pos,0x3f0f96bea8b0,252551
snapshot-pos,0x1cf698f756a8,252555
snapshot-pos,0x3f0f96bea940,252660
snapshot-pos,0x1cf698f756c8,252664
snapshot-pos,0x1cf698f756e8,252766
snapshot-pos,0x3f0f96bea9d0,252804
snapshot-pos,0x1cf698f75710,252808
snapshot-pos,0x1cf698f75738,252918
snapshot-pos,0x3f0f96beaa60,252956
snapshot-pos,0x1cf698f75760,252960
snapshot-pos,0x3f0f96beaaf0,253065
snapshot-pos,0x1cf698f75780,253069
snapshot-pos,0x1cf698f757a8,253179
snapshot-pos,0x3f0f96beab80,253226
snapshot-pos,0x1cf698f757d8,253230
snapshot-pos,0x3f0f96beac10,253352
snapshot-pos,0x1cf698f75808,253356
snapshot-pos,0x1cf698f75830,253466
snapshot-pos,0x3f0f96beaca0,253513
snapshot-pos,0x1cf698f75860,253517
snapshot-pos,0x3f0f96bead30,253639
snapshot-pos,0x1cf698f75890,253643
snapshot-pos,0x1cf698f758b0,253745
snapshot-pos,0x3f0f96beadc0,253783
snapshot-pos,0x1cf698f758d8,253787
snapshot-pos,0x1cf698f758f8,253889
snapshot-pos,0x3f0f96beae50,253927
snapshot-pos,0x1cf698f75920,253931
snapshot-pos,0x1cf698f75948,254041
snapshot-pos,0x1cf698f75978,254089
snapshot-pos,0x3f0f96beaee0,254136
snapshot-pos,0x1cf698f759a8,254140
snapshot-pos,0x1cf698f759d0,254258
snapshot-pos,0x3f0f96beaf70,254296
snapshot-pos,0x1cf698f759f8,254374
snapshot-pos,0x3f0f96beb000,254412
snapshot-pos,0x1cf698f75a20,254416
snapshot-pos,0x1cf698f75a40,254518
snapshot-pos,0x3f0f96beb090,254556
snapshot-pos,0x1cf698f75a68,254560
snapshot-pos,0x1cf698f75a88,254662
snapshot-pos,0x3f0f96beb120,254700
snapshot-pos,0x1cf698f75ab0,254704
snapshot-pos,0x1cf698f75ad8,254814
snapshot-pos,0x3f0f96beb1b0,254852
snapshot-pos,0x1cf698f75b00,254856
snapshot-pos,0x1cf698f75b20,254958
snapshot-pos,0x3f0f96beb240,254996
snapshot-pos,0x1cf698f75b48,255000
snapshot-pos,0x1cf698f75b68,255102
snapshot-pos,0x3f0f96beb2d0,255140
snapshot-pos,0x1cf698f75b90,255144
snapshot-pos,0x1cf698f75bb0,255246
snapshot-pos,0x3f0f96beb360,255284
snapshot-pos,0x1cf698f75bd8,255288
snapshot-pos,0x1cf698f75bf8,255390
snapshot-pos,0x3f0f96beb3f0,255428
snapshot-pos,0x1cf698f75c20,255432
snapshot-pos,0x1cf698f75c40,255534
snapshot-pos,0x3f0f96beb480,255572
snapshot-pos,0x1cf698f75c68,255576
snapshot-pos,0x1cf698f75c88,255678
snapshot-pos,0x3f0f96beb510,255716
snapshot-pos,0x1cf698f75cb0,255720
snapshot-pos,0x1cf698f75cd0,255822
snapshot-pos,0x3f0f96beb5a0,255860
snapshot-pos,0x1cf698f75cf8,255864
snapshot-pos,0x1cf698f75d18,255966
snapshot-pos,0x3f0f96beb630,256004
snapshot-pos,0x1cf698f75d40,256008
snapshot-pos,0x1cf698f75d60,256110
snapshot-pos,0x3f0f96beb6c0,256148
snapshot-pos,0x1cf698f75d88,256152
snapshot-pos,0x1cf698f75da8,256254
snapshot-pos,0x3f0f96beb750,256301
snapshot-pos,0x1cf698f75dd8,256379
snapshot-pos,0x3f0f96beb7e0,256417
snapshot-pos,0x1f9009ec4040,256424
snapshot-pos,0x1cf698f75e00,256436
snapshot-pos,0x3f0f96beb870,257972
snapshot-pos,0x3f0f96beb8b0,258157
snapshot-pos,0x1f9009ec4640,258164
snapshot-pos,0x1cf698f75f78,258174
snapshot-pos,0x3f0f96beb940,258615
snapshot-pos,0x3f0f96beb990,258908
snapshot-pos,0x1cf698f75fb8,259139
snapshot-pos,0x1cf698f75fd8,259174
snapshot-pos,0x1cf698f76040,259237
snapshot-pos,0x3f0f96beb9c8,259275
snapshot-pos,0x1cf698f76060,259384
snapshot-pos,0x3f0f96beba58,259428
snapshot-pos,0x1cf698f76088,259537
snapshot-pos,0x3f0f96bebae8,259573
snapshot-pos,0x3f0f96bebb78,259788
snapshot-pos,0x3f0f96bebbc0,259982
snapshot-pos,0x1f9009ec47e0,259989
snapshot-pos,0x1cf698f760a8,259999
snapshot-pos,0x3f0f96bebc50,260210
snapshot-pos,0x1cf698f76138,260224
snapshot-pos,0x1cf698f76158,260256
snapshot-pos,0x1cf698f76178,260288
snapshot-pos,0x1cf698f76198,260320
snapshot-pos,0x3f0f96bebde0,260358
snapshot-pos,0x1f9009ec4a60,260364
snapshot-pos,0x1cf698f761c0,260374
snapshot-pos,0x3f0f96bebe70,260509
snapshot-pos,0x1cf698f761e0,260571
snapshot-pos,0x3f0f96bebeb0,260602
snapshot-pos,0x1cf698f76200,260609
snapshot-pos,0x1cf698f76228,260666
snapshot-pos,0x3f0f96bec040,260690
snapshot-pos,0x1cf698f76238,262904
snapshot-pos,0x1cf698f76258,262936
snapshot-pos,0x3f0f96bec898,262966
snapshot-pos,0x1cf698f76278,262970
snapshot-pos,0x1cf698f76298,263080
snapshot-pos,0x3f0f96bec928,263110
snapshot-pos,0x1cf698f762b8,263114
snapshot-pos,0x1cf698f762d8,263224
snapshot-pos,0x3f0f96bec9b8,263254
snapshot-pos,0x1cf698f762f8,263258
snapshot-pos,0x1cf698f76318,263368
snapshot-pos,0x3f0f96beca48,263398
snapshot-pos,0x1cf698f76338,263402
snapshot-pos,0x1cf698f76358,263512
snapshot-pos,0x3f0f96becad8,263550
snapshot-pos,0x1cf698f76380,263554
snapshot-pos,0x1cf698f763a0,263656
snapshot-pos,0x3f0f96becb68,263686
snapshot-pos,0x1cf698f763c0,263690
snapshot-pos,0x1cf698f763e0,263800
snapshot-pos,0x3f0f96becbf8,263830
snapshot-pos,0x1cf698f76400,263834
snapshot-pos,0x1cf698f76420,263944
snapshot-pos,0x3f0f96becc88,263974
snapshot-pos,0x1cf698f76440,263978
snapshot-pos,0x1cf698f76460,264088
snapshot-pos,0x3f0f96becd18,264126
snapshot-pos,0x1cf698f76488,264130
snapshot-pos,0x1cf698f764a8,264240
snapshot-pos,0x3f0f96becda8,264270
snapshot-pos,0x1cf698f764c8,264274
snapshot-pos,0x1cf698f764e8,264384
snapshot-pos,0x3f0f96bece38,264414
snapshot-pos,0x1cf698f76508,264418
snapshot-pos,0x1cf698f76528,264520
snapshot-pos,0x3f0f96becec8,264550
snapshot-pos,0x1cf698f76548,264554
snapshot-pos,0x1cf698f76568,264656
snapshot-pos,0x3f0f96becf58,264686
snapshot-pos,0x1cf698f76588,264690
snapshot-pos,0x1cf698f765a8,264800
snapshot-pos,0x3f0f96becfe8,264838
snapshot-pos,0x1cf698f765d0,264842
snapshot-pos,0x1cf698f765f0,264944
snapshot-pos,0x3f0f96bed078,264982
snapshot-pos,0x1cf698f76618,264986
snapshot-pos,0x1cf698f76638,265096
snapshot-pos,0x3f0f96bed108,265126
snapshot-pos,0x1cf698f76658,265130
snapshot-pos,0x1cf698f76678,265240
snapshot-pos,0x3f0f96bed198,265270
snapshot-pos,0x1cf698f76698,265274
snapshot-pos,0x1cf698f766b8,265384
snapshot-pos,0x3f0f96bed228,265414
snapshot-pos,0x1cf698f766d8,265418
snapshot-pos,0x1cf698f766f8,265528
snapshot-pos,0x3f0f96bed2b8,265566
snapshot-pos,0x1f9009ec4ae0,265573
snapshot-pos,0x1cf698f76720,265583
snapshot-pos,0x1cf698f76878,266071
snapshot-pos,0x1cf698f76898,266106
snapshot-pos,0x1cf698f768a8,266170
snapshot-pos,0x1cf698f768c8,266205
snapshot-pos,0x1cf698f768d8,266269
snapshot-pos,0x1cf698f768f8,266304
snapshot-pos,0x1cf698f76908,266368
snapshot-pos,0x1cf698f76928,266403
snapshot-pos,0x1cf698f76938,266467
snapshot-pos,0x1cf698f76958,266502
snapshot-pos,0x1cf698f76968,266566
snapshot-pos,0x1cf698f76988,266601
snapshot-pos,0x1cf698f76998,266665
snapshot-pos,0x1cf698f769b8,266700
snapshot-pos,0x1cf698f769c8,266764
snapshot-pos,0x1cf698f769e8,266799
snapshot-pos,0x3f0f96bed348,267410
snapshot-pos,0x3f0f96bed388,267981
snapshot-pos,0x3f0f96bed3d0,268121
snapshot-pos,0x1f9009ec50c0,268129
snapshot-pos,0x1cf698f769f8,268139
snapshot-pos,0x3f0f96bed460,268519
snapshot-pos,0x1cf698f76b30,268533
snapshot-pos,0x1cf698f76b50,268565
snapshot-pos,0x3f0f96beda60,268612
snapshot-pos,0x3f0f96bedaf0,268630
snapshot-pos,0x1cf698f76b80,268637
snapshot-pos,0x1cf698f76ba8,268694
snapshot-pos,0x335e62009118,268718
snapshot-pos,0x1cf698f76bb8,277738
snapshot-pos,0x3f0f96bedb60,277768
snapshot-pos,0x1cf698f76bd8,277845
snapshot-pos,0x3f0f96bedbf0,277883
snapshot-pos,0x1cf698f76c00,277960
snapshot-pos,0x3f0f96bedc80,277998
snapshot-pos,0x1cf698f76c28,278075
snapshot-pos,0x3f0f96bedd10,278113
snapshot-pos,0x1cf698f76c50,278190
snapshot-pos,0x3f0f96bedda0,278228
snapshot-pos,0x1cf698f76c78,278305
snapshot-pos,0x3f0f96bede30,278343
snapshot-pos,0x1cf698f76ca0,278420
snapshot-pos,0x3f0f96bedec0,278458
snapshot-pos,0x1cf698f76cc8,278536
snapshot-pos,0x3f0f96bedf50,278574
snapshot-pos,0x1cf698f76cf0,278652
snapshot-pos,0x1cf698f76d20,278700
snapshot-pos,0x1cf698f76d48,278739
snapshot-pos,0x3f0f96bee040,278786
snapshot-pos,0x1cf698f76d78,278866
snapshot-pos,0x1cf698f76da8,278914
snapshot-pos,0x1cf698f76dd8,278962
snapshot-pos,0x3f0f96bee0d0,279000
snapshot-pos,0x1cf698f76e00,279078
snapshot-pos,0x3f0f96bee160,279108
snapshot-pos,0x1cf698f76e20,279186
snapshot-pos,0x3f0f96bee1f0,279224
snapshot-pos,0x1cf698f76e48,279302
snapshot-pos,0x1cf698f76e68,279333
snapshot-pos,0x3f0f96bee280,279371
snapshot-pos,0x1cf698f76e90,279449
snapshot-pos,0x3f0f96bee310,279479
snapshot-pos,0x1cf698f76eb0,279557
snapshot-pos,0x3f0f96bee3a0,279587
snapshot-pos,0x1cf698f76ed0,279665
snapshot-pos,0x3f0f96bee430,279703
snapshot-pos,0x1cf698f76ef8,279781
snapshot-pos,0x1cf698f76f28,279829
snapshot-pos,0x1cf698f76f60,279885
snapshot-pos,0x3f0f96bee4c0,279923
snapshot-pos,0x1cf698f76f88,280001
snapshot-pos,0x3f0f96bee550,280039
snapshot-pos,0x1cf698f76fb0,280117
snapshot-pos,0x3f0f96bee5e0,280155
snapshot-pos,0x1cf698f76fd8,280233
snapshot-pos,0x3f0f96bee670,280263
snapshot-pos,0x1cf698f76ff8,280341
snapshot-pos,0x3f0f96bee700,280371
snapshot-pos,0x1cf698f77018,280449
snapshot-pos,0x3f0f96bee790,280479
snapshot-pos,0x1f9009ec5720,280485
snapshot-pos,0x1cf698f77038,280495
snapshot-pos,0x1cf698f77090,280743
snapshot-pos,0x3f0f96bee820,280896
snapshot-pos,0x1cf698f770a0,281025
snapshot-pos,0x1cf698f770c8,281064
snapshot-pos,0x1cf698f770e8,281095
snapshot-pos,0x1cf698f77108,281126
snapshot-pos,0x3f0f96bee868,281164
snapshot-pos,0x1cf698f77130,281242
snapshot-pos,0x3f0f96bee8f8,281280
snapshot-pos,0x1cf698f77158,281358
snapshot-pos,0x1cf698f77180,281397
snapshot-pos,0x1cf698f771a8,281436
snapshot-pos,0x3f0f96bee988,281474
snapshot-pos,0x1cf698f771d0,281552
snapshot-pos,0x3f0f96beea18,281590
snapshot-pos,0x1cf698f771f8,281668
snapshot-pos,0x3f0f96beeaa8,281715
snapshot-pos,0x1cf698f77228,281793
snapshot-pos,0x3f0f96beeb38,281831
snapshot-pos,0x1cf698f77250,281909
snapshot-pos,0x1cf698f77278,281948
snapshot-pos,0x3f0f96beebc8,281986
snapshot-pos,0x1cf698f772a0,282065
snapshot-pos,0x3f0f96beec58,282095
snapshot-pos,0x1cf698f772c0,282174
snapshot-pos,0x3f0f96beece8,282204
snapshot-pos,0x1cf698f772e0,282208
snapshot-pos,0x1cf698f77300,282310
snapshot-pos,0x3f0f96beed78,282348
snapshot-pos,0x1cf698f77328,282427
snapshot-pos,0x3f0f96beee08,282465
snapshot-pos,0x1cf698f77350,282469
snapshot-pos,0x1cf698f77378,282579
snapshot-pos,0x3f0f96beee98,282617
snapshot-pos,0x1cf698f773a0,282621
snapshot-pos,0x1cf698f773c8,282731
snapshot-pos,0x3f0f96beef28,282778
snapshot-pos,0x1cf698f773f8,282857
snapshot-pos,0x3f0f96beefb8,282904
snapshot-pos,0x1cf698f77428,282908
snapshot-pos,0x1cf698f77458,283027
snapshot-pos,0x3f0f96bef048,283074
snapshot-pos,0x1cf698f77488,283078
snapshot-pos,0x1cf698f774b8,283197
snapshot-pos,0x3f0f96bef0d8,283235
snapshot-pos,0x1cf698f774e0,283314
snapshot-pos,0x3f0f96bef168,283352
snapshot-pos,0x1cf698f77508,283356
snapshot-pos,0x1cf698f77528,283458
snapshot-pos,0x3f0f96bef1f8,283496
snapshot-pos,0x1cf698f77550,283500
snapshot-pos,0x1cf698f77578,283610
snapshot-pos,0x3f0f96bef288,283657
snapshot-pos,0x1cf698f775a8,283661
snapshot-pos,0x1cf698f775d0,283771
snapshot-pos,0x3f0f96bef318,283809
snapshot-pos,0x1cf698f775f8,283813
snapshot-pos,0x1cf698f77618,283915
snapshot-pos,0x3f0f96bef3a8,283953
snapshot-pos,0x1cf698f77640,283957
snapshot-pos,0x1cf698f77668,284067
snapshot-pos,0x3f0f96bef438,284105
snapshot-pos,0x1cf698f77690,284109
snapshot-pos,0x1cf698f776b0,284211
snapshot-pos,0x3f0f96bef4c8,284249
snapshot-pos,0x1cf698f776d8,284253
snapshot-pos,0x1cf698f77700,284363
snapshot-pos,0x3f0f96bef558,284401
snapshot-pos,0x1cf698f77728,284405
snapshot-pos,0x1cf698f77748,284507
snapshot-pos,0x3f0f96bef5e8,284545
snapshot-pos,0x1cf698f77770,284549
snapshot-pos,0x1cf698f77798,284659
snapshot-pos,0x3f0f96bef678,284697
snapshot-pos,0x1cf698f777c0,284701
snapshot-pos,0x1cf698f777e0,284803
snapshot-pos,0x3f0f96bef708,284841
snapshot-pos,0x1cf698f77808,284845
snapshot-pos,0x1cf698f77830,284955
snapshot-pos,0x3f0f96bef798,284993
snapshot-pos,0x1cf698f77858,284997
snapshot-pos,0x1cf698f77880,285107
snapshot-pos,0x3f0f96bef828,285154
snapshot-pos,0x1cf698f778b0,285158
snapshot-pos,0x1cf698f778d8,285268
snapshot-pos,0x3f0f96bef8b8,285306
snapshot-pos,0x1cf698f77900,285310
snapshot-pos,0x1cf698f77928,285420
snapshot-pos,0x3f0f96bef948,285467
snapshot-pos,0x1cf698f77958,285471
snapshot-pos,0x1cf698f77980,285581
snapshot-pos,0x3f0f96bef9d8,285628
snapshot-pos,0x1cf698f779b0,285632
snapshot-pos,0x1cf698f779d8,285742
snapshot-pos,0x3f0f96befa68,285789
snapshot-pos,0x1cf698f77a08,285793
snapshot-pos,0x1cf698f77a38,285912
snapshot-pos,0x3f0f96befaf8,285959
snapshot-pos,0x1cf698f77a68,285963
snapshot-pos,0x1cf698f77a98,286082
snapshot-pos,0x3f0f96befb88,286120
snapshot-pos,0x1cf698f77ac0,286124
snapshot-pos,0x1cf698f77ae0,286226
snapshot-pos,0x3f0f96befc18,286273
snapshot-pos,0x1cf698f77b10,286277
snapshot-pos,0x1cf698f77b38,286387
snapshot-pos,0x3f0f96befca8,286434
snapshot-pos,0x1cf698f77b68,286438
snapshot-pos,0x1cf698f77b98,286557
snapshot-pos,0x3f0f96befd38,286595
snapshot-pos,0x1cf698f77bc0,286599
snapshot-pos,0x1cf698f77be8,286709
snapshot-pos,0x3f0f96befdc8,286756
snapshot-pos,0x1cf698f77c18,286760
snapshot-pos,0x1cf698f77c40,286870
snapshot-pos,0x3f0f96befe58,286908
snapshot-pos,0x1cf698f77c68,286912
snapshot-pos,0x1cf698f77c90,287022
snapshot-pos,0x3f0f96befee8,287069
snapshot-pos,0x1cf698f77cc0,287073
snapshot-pos,0x1cf698f77ce8,287183
snapshot-pos,0x3f0f96bf0040,287221
snapshot-pos,0x1cf698f77d10,287227
snapshot-pos,0x1cf698f77d30,287329
snapshot-pos,0x3f0f96bf00d0,287367
snapshot-pos,0x1cf698f77d58,287371
snapshot-pos,0x1cf698f77d80,287481
snapshot-pos,0x3f0f96bf0160,287519
snapshot-pos,0x1cf698f77da8,287523
snapshot-pos,0x1cf698f77dc8,287625
snapshot-pos,0x3f0f96bf01f0,287663
snapshot-pos,0x1cf698f77df0,287667
snapshot-pos,0x1cf698f77e18,287777
snapshot-pos,0x3f0f96bf0280,287815
snapshot-pos,0x1cf698f77e40,287819
snapshot-pos,0x1cf698f77e60,287921
snapshot-pos,0x3f0f96bf0310,287959
snapshot-pos,0x1cf698f77e88,287963
snapshot-pos,0x1cf698f77eb0,288073
snapshot-pos,0x3f0f96bf03a0,288111
snapshot-pos,0x1cf698f77ed8,288115
snapshot-pos,0x1cf698f77f00,288225
snapshot-pos,0x3f0f96bf0430,288272
snapshot-pos,0x1cf698f77f30,288276
snapshot-pos,0x1cf698f77f58,288386
snapshot-pos,0x3f0f96bf04c0,288424
snapshot-pos,0x1cf698f77f80,288428
snapshot-pos,0x1cf698f77fa8,288538
snapshot-pos,0x3f0f96bf0550,288576
snapshot-pos,0x1cf698f77fd0,288580
snapshot-pos,0x1cf698f78040,288682
snapshot-pos,0x3f0f96bf05e0,288722
snapshot-pos,0x1cf698f78068,288726
snapshot-pos,0x1cf698f78088,288828
snapshot-pos,0x3f0f96bf0670,288866
snapshot-pos,0x1cf698f780b0,288870
snapshot-pos,0x1cf698f780d8,288980
snapshot-pos,0x3f0f96bf0700,289010
snapshot-pos,0x1cf698f780f8,289088
snapshot-pos,0x3f0f96bf0790,289126
snapshot-pos,0x1cf698f78120,289130
snapshot-pos,0x1cf698f78148,289240
snapshot-pos,0x3f0f96bf0820,289278
snapshot-pos,0x1cf698f78170,289282
snapshot-pos,0x1cf698f78190,289384
snapshot-pos,0x3f0f96bf08b0,289422
snapshot-pos,0x1cf698f781b8,289500
snapshot-pos,0x3f0f96bf0940,289538
snapshot-pos,0x1f9009ec6040,289545
snapshot-pos,0x1cf698f781e0,289557
snapshot-pos,0x3f0f96bf09d0,291563
snapshot-pos,0x3f0f96bf0a10,291829
snapshot-pos,0x1cf698f783f0,291843
snapshot-pos,0x1cf698f78410,291882
snapshot-pos,0x1cf698f78430,291921
snapshot-pos,0x1cf698f78450,291960
snapshot-pos,0x1cf698f78478,292007
snapshot-pos,0x3f0f96bf0a70,292197
snapshot-pos,0x1cf698f784a8,292211
snapshot-pos,0x1cf698f784c8,292242
snapshot-pos,0x3f0f96bf0aa0,292338
snapshot-pos,0x3f0f96bf0ac8,292697
snapshot-pos,0x1cf698f784e8,292711
snapshot-pos,0x1cf698f78508,292742
snapshot-pos,0x3f0f96bf0b08,292893
snapshot-pos,0x1f9009ec67e0,292901
snapshot-pos,0x1cf698f78528,292911
snapshot-pos,0x3f0f96bf0b98,294995
snapshot-pos,0x1cf698f786c0,295077
snapshot-pos,0x1cf698f786e0,295107
snapshot-pos,0x1cf698f78700,295137
snapshot-pos,0x1cf698f78720,295167
snapshot-pos,0x3f0f96bf0c38,295414
snapshot-pos,0x1cf698f78740,295428
snapshot-pos,0x1cf698f78760,295458
snapshot-pos,0x1cf698f78780,295488
snapshot-pos,0x1cf698f787a0,295518
snapshot-pos,0x1cf698f787c0,295548
snapshot-pos,0x1cf698f787e0,295578
snapshot-pos,0x1cf698f78800,295608
snapshot-pos,0x3f0f96bf0c80,295695
snapshot-pos,0x1cf698f78820,295709
snapshot-pos,0x1cf698f78840,295739
snapshot-pos,0x1cf698f78860,295769
snapshot-pos,0x1cf698f78880,295799
snapshot-pos,0x1cf698f788a0,295829
snapshot-pos,0x1cf698f788c0,295859
snapshot-pos,0x1cf698f788e0,295889
snapshot-pos,0x1cf698f78900,295919
snapshot-pos,0x1cf698f78920,295949
snapshot-pos,0x1cf698f78940,295979
snapshot-pos,0x1cf698f78960,296009
snapshot-pos,0x1cf698f78980,296039
snapshot-pos,0x3f0f96bf0cf0,296126
snapshot-pos,0x1cf698f789a0,296140
snapshot-pos,0x1cf698f789c0,296170
snapshot-pos,0x1cf698f789e0,296200
snapshot-pos,0x1cf698f78a00,296230
snapshot-pos,0x1cf698f78a28,296268
snapshot-pos,0x1cf698f78a48,296298
snapshot-pos,0x1cf698f78a68,296328
snapshot-pos,0x3f0f96bf0d38,296412
snapshot-pos,0x1cf698f78a88,296426
snapshot-pos,0x1cf698f78aa8,296456
snapshot-pos,0x1cf698f78ac8,296486
snapshot-pos,0x1cf698f78ae8,296516
snapshot-pos,0x1cf698f78b08,296548
snapshot-pos,0x1cf698f78b28,296578
snapshot-pos,0x1cf698f78b48,296608
snapshot-pos,0x1cf698f78b68,296638
snapshot-pos,0x1cf698f78b90,296676
snapshot-pos,0x1cf698f78bb0,296706
snapshot-pos,0x1cf698f78bd0,296736
snapshot-pos,0x3f0f96bf0da8,296903
snapshot-pos,0x3f0f96bf0df0,297069
snapshot-pos,0x1f9009ec6f00,297076
snapshot-pos,0x1cf698f78bf0,297086
snapshot-pos,0x3f0f96bf0e80,297216
snapshot-pos,0x1cf698f78c30,297230
snapshot-pos,0x1cf698f78c58,297269
snapshot-pos,0x3f0f96bf10d0,297316
snapshot-pos,0x3f0f96bf1160,297334
snapshot-pos,0x1cf698f78c88,297341
snapshot-pos,0x1cf698f78cb0,297398
snapshot-pos,0x335e6200b408,297422
snapshot-pos,0x3f0f96bf11d0,308573
snapshot-pos,0x1cf698f78cc0,308651
snapshot-pos,0x3f0f96bf1260,308689
snapshot-pos,0x1cf698f78ce8,308766
snapshot-pos,0x3f0f96bf12f0,308804
snapshot-pos,0x3f0f96bf1380,308884
snapshot-pos,0x1cf698f78d10,308962
snapshot-pos,0x3f0f96bf1410,309000
snapshot-pos,0x1cf698f78d38,309077
snapshot-pos,0x3f0f96bf14a0,309124
snapshot-pos,0x1cf698f78d68,309201
snapshot-pos,0x3f0f96bf1530,309239
snapshot-pos,0x1cf698f78d90,309317
snapshot-pos,0x3f0f96bf15c0,309355
snapshot-pos,0x1cf698f78db8,309433
snapshot-pos,0x3f0f96bf1650,309471
snapshot-pos,0x1cf698f78de0,309549
snapshot-pos,0x3f0f96bf16e0,309587
snapshot-pos,0x1cf698f78e08,309665
snapshot-pos,0x3f0f96bf1770,309703
snapshot-pos,0x1cf698f78e30,309782
snapshot-pos,0x3f0f96bf1800,309829
snapshot-pos,0x1cf698f78e60,309908
snapshot-pos,0x3f0f96bf1890,309946
snapshot-pos,0x1cf698f78e88,309950
snapshot-pos,0x1cf698f78ea8,310052
snapshot-pos,0x3f0f96bf1920,310082
snapshot-pos,0x1cf698f78ec8,310160
snapshot-pos,0x3f0f96bf19b0,310198
snapshot-pos,0x3f0f96bf1a40,310279
snapshot-pos,0x1cf698f78ef0,310358
snapshot-pos,0x3f0f96bf1ad0,310396
snapshot-pos,0x1cf698f78f18,310474
snapshot-pos,0x3f0f96bf1b60,310512
snapshot-pos,0x1cf698f78f40,310516
snapshot-pos,0x1cf698f78f60,310618
snapshot-pos,0x3f0f96bf1bf0,310656
snapshot-pos,0x1cf698f78f88,310734
snapshot-pos,0x3f0f96bf1c80,310772
snapshot-pos,0x1cf698f78fb0,310850
snapshot-pos,0x3f0f96bf1d10,310888
snapshot-pos,0x1cf698f78fd8,310966
snapshot-pos,0x3f0f96bf1da0,311004
snapshot-pos,0x1cf698f79000,311082
snapshot-pos,0x3f0f96bf1e30,311120
snapshot-pos,0x1cf698f79028,311124
snapshot-pos,0x1cf698f79048,311226
snapshot-pos,0x3f0f96bf1ec0,311264
snapshot-pos,0x1cf698f79070,311268
snapshot-pos,0x1cf698f79090,311370
snapshot-pos,0x3f0f96bf1f50,311408
snapshot-pos,0x1cf698f790b8,311412
snapshot-pos,0x1cf698f790d8,311514
snapshot-pos,0x3f0f96bf2040,311552
snapshot-pos,0x1cf698f79100,311558
snapshot-pos,0x1cf698f79120,311660
snapshot-pos,0x3f0f96bf20d0,311698
snapshot-pos,0x1cf698f79148,311702
snapshot-pos,0x1cf698f79168,311804
snapshot-pos,0x3f0f96bf2160,311834
snapshot-pos,0x1cf698f79188,311838
snapshot-pos,0x1cf698f791a8,311940
snapshot-pos,0x3f0f96bf21f0,311978
snapshot-pos,0x1cf698f791d0,312057
snapshot-pos,0x3f0f96bf2280,312095
snapshot-pos,0x1cf698f791f8,312174
snapshot-pos,0x3f0f96bf2310,312212
snapshot-pos,0x1cf698f79220,312216
snapshot-pos,0x1cf698f79240,312318
snapshot-pos,0x3f0f96bf23a0,312356
snapshot-pos,0x1cf698f79268,312360
snapshot-pos,0x1cf698f79290,312470
snapshot-pos,0x3f0f96bf2430,312508
snapshot-pos,0x1cf698f792b8,312512
snapshot-pos,0x1cf698f792d8,312614
snapshot-pos,0x3f0f96bf24c0,312652
snapshot-pos,0x1f9009ec7020,312659
snapshot-pos,0x1cf698f79300,312669
snapshot-pos,0x3f0f96bf2550,313313
snapshot-pos,0x1cf698f79538,313317
snapshot-pos,0x1f9009ec7980,313355
snapshot-pos,0x1cf698f79560,313365
snapshot-pos,0x3f0f96bf25e0,313680
snapshot-pos,0x1cf698f79598,314338
snapshot-pos,0x1cf698f795b8,314421
snapshot-pos,0x1cf698f795d8,314622
snapshot-pos,0x1cf698f795f8,314705
snapshot-pos,0x1cf698f79618,314853
snapshot-pos,0x3f0f96bf2640,315887
snapshot-pos,0x3f0f96bf2698,316197
snapshot-pos,0x3f0f96bf26e0,316353
snapshot-pos,0x1f9009ec7aa0,316360
snapshot-pos,0x1cf698f79638,316370
snapshot-pos,0x3f0f96bf2770,316492
snapshot-pos,0x1cf698f79670,316506
snapshot-pos,0x1cf698f79698,316545
snapshot-pos,0x1cf698f796c0,316584
snapshot-pos,0x3f0f96bf28d0,316639
snapshot-pos,0x3f0f96bf2960,316657
snapshot-pos,0x1cf698f796f8,316664
snapshot-pos,0x1cf698f79720,316721
snapshot-pos,0x3f0f96bf29d0,316745
snapshot-pos,0x1cf698f79730,320117
snapshot-pos,0x3f0f96bf36b0,320155
snapshot-pos,0x1cf698f79758,320233
snapshot-pos,0x3f0f96bf3740,320271
snapshot-pos,0x1cf698f79780,320349
snapshot-pos,0x3f0f96bf37d0,320387
snapshot-pos,0x1cf698f797a8,320465
snapshot-pos,0x3f0f96bf3860,320512
snapshot-pos,0x1cf698f797d8,320590
snapshot-pos,0x3f0f96bf38f0,320628
snapshot-pos,0x1cf698f79800,320706
snapshot-pos,0x3f0f96bf3980,320736
snapshot-pos,0x1cf698f79820,320814
snapshot-pos,0x3f0f96bf3a10,320844
snapshot-pos,0x1cf698f79840,320922
snapshot-pos,0x3f0f96bf3aa0,320960
snapshot-pos,0x1cf698f79868,320964
snapshot-pos,0x1cf698f79890,321074
snapshot-pos,0x3f0f96bf3b30,321121
snapshot-pos,0x1cf698f798c0,321125
snapshot-pos,0x1cf698f798f0,321244
snapshot-pos,0x3f0f96bf3bc0,321282
snapshot-pos,0x1cf698f79918,321360
snapshot-pos,0x3f0f96bf3c50,321398
snapshot-pos,0x1cf698f79940,321402
snapshot-pos,0x1cf698f79968,321512
snapshot-pos,0x3f0f96bf3ce0,321559
snapshot-pos,0x1cf698f79998,321563
snapshot-pos,0x1cf698f799c8,321682
snapshot-pos,0x3f0f96bf3d70,321720
snapshot-pos,0x1cf698f799f0,321798
snapshot-pos,0x3f0f96bf3e00,321845
snapshot-pos,0x1cf698f79a20,321923
snapshot-pos,0x3f0f96bf3e90,321961
snapshot-pos,0x3f0f96bf3f20,322042
snapshot-pos,0x1cf698f79a48,322046
snapshot-pos,0x3f0f96bf4040,322151
snapshot-pos,0x1cf698f79a68,322157
snapshot-pos,0x1cf698f79a88,322259
snapshot-pos,0x3f0f96bf40d0,322289
snapshot-pos,0x1f9009ec7bc0,322295
snapshot-pos,0x1cf698f79aa8,322305
snapshot-pos,0x3f0f96bf4160,322735
snapshot-pos,0x3f0f96bf41a0,323030
snapshot-pos,0x3f0f96bf41e8,323162
snapshot-pos,0x1f9009ec8040,323170
snapshot-pos,0x1cf698f79b18,323182
snapshot-pos,0x3f0f96bf4278,323945
snapshot-pos,0x1cf698f79dd0,323959
snapshot-pos,0x1cf698f79e08,324016
snapshot-pos,0x1cf698f79e30,324056
snapshot-pos,0x3f0f96bf4638,324094
snapshot-pos,0x3f0f96bf46c8,324112
snapshot-pos,0x1cf698f79e58,324119
snapshot-pos,0x1cf698f79e88,324185
snapshot-pos,0x335e6200df48,324209
snapshot-pos,0x1cf698f79e98,333853
snapshot-pos,0x3f0f96bf4738,333900
snapshot-pos,0x1cf698f79ec8,333977
snapshot-pos,0x3f0f96bf47c8,334024
snapshot-pos,0x1cf698f79ef8,334101
snapshot-pos,0x3f0f96bf4858,334139
snapshot-pos,0x1cf698f79f20,334216
snapshot-pos,0x3f0f96bf48e8,334254
snapshot-pos,0x1f9009ec8a20,334260
snapshot-pos,0x1cf698f79f48,334270
snapshot-pos,0x1cf698f79f90,334526
snapshot-pos,0x3f0f96bf4978,334619
snapshot-pos,0x1cf698f79fb0,334756
snapshot-pos,0x3f0f96bf49d8,334794
snapshot-pos,0x1cf698f79fd8,334871
snapshot-pos,0x3f0f96bf4a68,334909
snapshot-pos,0x1cf698f7a040,334987
snapshot-pos,0x3f0f96bf4af8,335027
snapshot-pos,0x3f0f96bf4b88,335108
snapshot-pos,0x3f0f96bf4c18,335190
snapshot-pos,0x1f9009ec8b40,335197
snapshot-pos,0x1cf698f7a068,335207
snapshot-pos,0x1cf698f7a098,335330
snapshot-pos,0x3f0f96bf4ca8,335451
snapshot-pos,0x3f0f96bf4cf8,335586
snapshot-pos,0x3f0f96bf4d88,335668
snapshot-pos,0x1cf698f7a0c0,335747
snapshot-pos,0x3f0f96bf4e18,335785
snapshot-pos,0x1cf698f7a0e8,335863
snapshot-pos,0x3f0f96bf4ea8,335901
snapshot-pos,0x1cf698f7a110,335979
snapshot-pos,0x3f0f96bf4f38,336026
snapshot-pos,0x1cf698f7a140,336104
snapshot-pos,0x3f0f96bf4fc8,336159
snapshot-pos,0x1cf698f7a178,336237
snapshot-pos,0x3f0f96bf5058,336284
snapshot-pos,0x1cf698f7a1a8,336362
snapshot-pos,0x3f0f96bf50e8,336409
snapshot-pos,0x1cf698f7a1d8,336487
snapshot-pos,0x3f0f96bf5178,336525
snapshot-pos,0x1cf698f7a200,336603
snapshot-pos,0x3f0f96bf5208,336641
snapshot-pos,0x1cf698f7a228,336719
snapshot-pos,0x3f0f96bf5298,336766
snapshot-pos,0x1cf698f7a258,336844
snapshot-pos,0x3f0f96bf5328,336882
snapshot-pos,0x3f0f96bf53b8,336908
snapshot-pos,0x1cf698f7a280,336922
snapshot-pos,0x1cf698f7a2a0,336962
snapshot-pos,0x1cf698f7a2c0,337002
snapshot-pos,0x1cf698f7a2e0,337042
snapshot-pos,0x1cf698f7a300,337158
snapshot-pos,0x1cf698f7a328,337198
snapshot-pos,0x3f0f96bf5458,337245
snapshot-pos,0x1cf698f7a358,337323
snapshot-pos,0x3f0f96bf54e8,337370
snapshot-pos,0x1cf698f7a388,337448
snapshot-pos,0x3f0f96bf5578,337486
snapshot-pos,0x3f0f96bf5608,337512
snapshot-pos,0x1cf698f7a3b0,337538
snapshot-pos,0x1cf698f7a3d8,337586
snapshot-pos,0x1cf698f7a3f8,337626
snapshot-pos,0x1cf698f7a420,337674
snapshot-pos,0x1cf698f7a448,337772
snapshot-pos,0x3f0f96bf5690,337819
snapshot-pos,0x1cf698f7a478,337897
snapshot-pos,0x3f0f96bf5720,337944
snapshot-pos,0x1cf698f7a4a8,338022
snapshot-pos,0x3f0f96bf57b0,338069
snapshot-pos,0x1cf698f7a4d8,338147
snapshot-pos,0x3f0f96bf5840,338194
snapshot-pos,0x1f9009ec8c00,338200
snapshot-pos,0x1cf698f7a508,338210
snapshot-pos,0x3f0f96bf58d0,338505
snapshot-pos,0x1cf698f7a560,338509
snapshot-pos,0x1f9009ec8e40,338539
snapshot-pos,0x1cf698f7a580,338549
snapshot-pos,0x3f0f96bf5960,338913
snapshot-pos,0x3f0f96bf59a0,339053
snapshot-pos,0x1cf698f7a5b8,339057
snapshot-pos,0x1f9009ec8fa0,339087
snapshot-pos,0x1cf698f7a5d8,339097
snapshot-pos,0x3f0f96bf5a30,339377
snapshot-pos,0x3f0f96bf5a78,339611
snapshot-pos,0x3f0f96bf5ac8,339797
snapshot-pos,0x1cf698f7a600,339986
snapshot-pos,0x3f0f96bf5b78,340016
snapshot-pos,0x3f0f96bf5c08,340042
snapshot-pos,0x1cf698f7a620,340056
snapshot-pos,0x1cf698f7a640,340096
snapshot-pos,0x1cf698f7a660,340136
snapshot-pos,0x1cf698f7a680,340226
snapshot-pos,0x3f0f96bf5c60,340264
snapshot-pos,0x1cf698f7a6a8,340342
snapshot-pos,0x3f0f96bf5cf0,340389
snapshot-pos,0x1cf698f7a6d8,340467
snapshot-pos,0x3f0f96bf5d80,340514
snapshot-pos,0x1cf698f7a708,340592
snapshot-pos,0x3f0f96bf5e10,340630
snapshot-pos,0x1cf698f7a730,340708
snapshot-pos,0x3f0f96bf5ea0,340755
snapshot-pos,0x1cf698f7a760,340833
snapshot-pos,0x3f0f96bf5f30,340888
snapshot-pos,0x1cf698f7a798,340966
snapshot-pos,0x3f0f96bf6040,341013
snapshot-pos,0x1cf698f7a7c8,341094
snapshot-pos,0x3f0f96bf60d0,341141
snapshot-pos,0x1cf698f7a7f8,341220
snapshot-pos,0x3f0f96bf6160,341267
snapshot-pos,0x1cf698f7a828,341346
snapshot-pos,0x3f0f96bf61f0,341393
snapshot-pos,0x1cf698f7a858,341472
snapshot-pos,0x3f0f96bf6280,341519
snapshot-pos,0x1cf698f7a888,341598
snapshot-pos,0x3f0f96bf6310,341645
snapshot-pos,0x1cf698f7a8b8,341724
snapshot-pos,0x3f0f96bf63a0,341762
snapshot-pos,0x1cf698f7a8e0,341841
snapshot-pos,0x3f0f96bf6430,341888
snapshot-pos,0x1cf698f7a910,341967
snapshot-pos,0x3f0f96bf64c0,342014
snapshot-pos,0x1cf698f7a940,342093
snapshot-pos,0x3f0f96bf6550,342131
snapshot-pos,0x1cf698f7a968,342210
snapshot-pos,0x3f0f96bf65e0,342257
snapshot-pos,0x1cf698f7a998,342336
snapshot-pos,0x3f0f96bf6670,342374
snapshot-pos,0x1cf698f7a9c0,342453
snapshot-pos,0x3f0f96bf6700,342500
snapshot-pos,0x1cf698f7a9f0,342579
snapshot-pos,0x3f0f96bf6790,342626
snapshot-pos,0x1f9009ec90c0,342632
snapshot-pos,0x1cf698f7aa20,342642
snapshot-pos,0x1cf698f7aa88,342833
snapshot-pos,0x1cf698f7aaa8,342875
snapshot-pos,0x1cf698f7aad0,343191
snapshot-pos,0x3f0f96bf6820,343226
snapshot-pos,0x1f9009ec92c0,343233
snapshot-pos,0x1cf698f7aaf0,343243
snapshot-pos,0x3f0f96bf68b0,343414
snapshot-pos,0x3f0f96bf68f8,343600
snapshot-pos,0x1cf698f7ab18,343748
snapshot-pos,0x3f0f96bf6960,343786
snapshot-pos,0x1f9009ec9360,343792
snapshot-pos,0x1cf698f7ab40,343802
snapshot-pos,0x3f0f96bf69f0,343987
snapshot-pos,0x1cf698f7abb8,343991
snapshot-pos,0x1f9009ec9520,344029
snapshot-pos,0x1cf698f7abe0,344039
snapshot-pos,0x3f0f96bf6a80,344374
snapshot-pos,0x1cf698f7aca0,344378
snapshot-pos,0x1f9009ec9880,344416
snapshot-pos,0x1cf698f7acc8,344426
snapshot-pos,0x3f0f96bf6b10,344561
snapshot-pos,0x1cf698f7ace8,344623
snapshot-pos,0x3f0f96bf6b50,345225
snapshot-pos,0x1f9009ec9900,345232
snapshot-pos,0x1cf698f7ad08,345242
snapshot-pos,0x1cf698f7ad90,345650
snapshot-pos,0x3f0f96bf6be0,345685
snapshot-pos,0x1f9009ec9b40,345692
snapshot-pos,0x1cf698f7adb0,345702
snapshot-pos,0x3f0f96bf6c70,345959
snapshot-pos,0x3f0f96bf6cb8,346311
snapshot-pos,0x3f0f96bf6d00,346518
snapshot-pos,0x3f0f96bf6d68,346701
snapshot-pos,0x3f0f96bf6df8,346808
snapshot-pos,0x1cf698f7adf8,346812
snapshot-pos,0x3f0f96bf6e88,346951
snapshot-pos,0x1cf698f7ae20,346955
snapshot-pos,0x3f0f96bf6f18,347094
snapshot-pos,0x1cf698f7ae48,347098
snapshot-pos,0x3f0f96bf6fa8,347237
snapshot-pos,0x1cf698f7ae70,347241
snapshot-pos,0x3f0f96bf7038,347380
snapshot-pos,0x1cf698f7ae98,347384
snapshot-pos,0x3f0f96bf70c8,347524
snapshot-pos,0x1cf698f7aec0,347528
snapshot-pos,0x3f0f96bf7158,347690
snapshot-pos,0x1cf698f7aee0,347819
snapshot-pos,0x1cf698f7af08,347859
snapshot-pos,0x1cf698f7af38,347908
snapshot-pos,0x3f0f96bf71a0,347955
snapshot-pos,0x1cf698f7af68,348034
snapshot-pos,0x3f0f96bf7230,348072
snapshot-pos,0x1cf698f7af90,348287
snapshot-pos,0x3f0f96bf72c0,348447
snapshot-pos,0x1f9009ec9c20,348454
snapshot-pos,0x1cf698f7afb0,348464
snapshot-pos,0x1cf698f7afe0,348600
snapshot-pos,0x3f0f96bf7350,348704
snapshot-pos,0x1cf698f7b008,348917
snapshot-pos,0x1cf698f7b030,348960
snapshot-pos,0x1cf698f7b058,349003
snapshot-pos,0x1cf698f7b080,349066
snapshot-pos,0x1cf698f7b0a8,349125
snapshot-pos,0x1cf698f7b0d8,349193
snapshot-pos,0x1cf698f7b100,349252
snapshot-pos,0x1cf698f7b128,349311
snapshot-pos,0x1cf698f7b150,349370
snapshot-pos,0x1cf698f7b178,349429
snapshot-pos,0x1cf698f7b1a0,349646
snapshot-pos,0x1cf698f7b1c0,349697
snapshot-pos,0x1cf698f7b1e8,349991
snapshot-pos,0x1cf698f7b208,350042
snapshot-pos,0x1cf698f7b230,350101
snapshot-pos,0x1cf698f7b258,350160
snapshot-pos,0x1cf698f7b278,350211
snapshot-pos,0x1cf698f7b2a0,350270
snapshot-pos,0x1cf698f7b2d0,350362
snapshot-pos,0x1cf698f7b2f8,350421
snapshot-pos,0x1cf698f7b320,350480
snapshot-pos,0x1cf698f7b348,350539
snapshot-pos,0x1cf698f7b370,350598
snapshot-pos,0x1cf698f7b398,350657
snapshot-pos,0x1cf698f7b3b8,350708
snapshot-pos,0x1cf698f7b3e0,350767
snapshot-pos,0x3f0f96bf7398,351139
snapshot-pos,0x3f0f96bf73b8,351384
snapshot-pos,0x3f0f96bf7400,351553
snapshot-pos,0x3f0f96bf8040,351848
snapshot-pos,0x3f0f96bf8868,352145
snapshot-pos,0x1f9009ec9ce0,352445
snapshot-pos,0x1cf698f7b408,352455
snapshot-pos,0x1f9009ec9d40,352546
snapshot-pos,0x1cf698f7b420,352556
snapshot-pos,0x1f9009ec9da0,352647
snapshot-pos,0x1cf698f7b438,352657
snapshot-pos,0x1f9009ec9e00,352748
snapshot-pos,0x1cf698f7b450,352758
snapshot-pos,0x1f9009ec9e60,352849
snapshot-pos,0x1cf698f7b468,352859
snapshot-pos,0x1f9009ec9ec0,352950
snapshot-pos,0x1cf698f7b480,352960
snapshot-pos,0x1f9009ec9f20,353051
snapshot-pos,0x1cf698f7b498,353061
snapshot-pos,0x1f9009ec9f80,353152
snapshot-pos,0x1cf698f7b4b0,353162
snapshot-pos,0x1f9009eca040,353253
snapshot-pos,0x1cf698f7b4c8,353265
snapshot-pos,0x1f9009eca0a0,353356
snapshot-pos,0x1cf698f7b4e0,353366
snapshot-pos,0x1f9009eca100,353457
snapshot-pos,0x1cf698f7b4f8,353467
snapshot-pos,0x1f9009eca160,353557
snapshot-pos,0x1cf698f7b510,353567
snapshot-pos,0x1f9009eca1c0,353658
snapshot-pos,0x1cf698f7b528,353668
snapshot-pos,0x1f9009eca220,353758
snapshot-pos,0x1cf698f7b540,353768
snapshot-pos,0x1f9009eca280,353859
snapshot-pos,0x1cf698f7b558,353869
snapshot-pos,0x1f9009eca2e0,353960
snapshot-pos,0x1cf698f7b570,353970
snapshot-pos,0x1f9009eca340,354067
snapshot-pos,0x1cf698f7b588,354077
snapshot-pos,0x1f9009eca5a0,354673
snapshot-pos,0x1cf698f7b5b8,354683
snapshot-pos,0x1f9009eca7c0,355216
snapshot-pos,0x1cf698f7b5e8,355226
snapshot-pos,0x1f9009eca880,355413
snapshot-pos,0x1cf698f7b600,355423
snapshot-pos,0x1f9009eca920,355581
snapshot-pos,0x1cf698f7b618,355591
snapshot-pos,0x1f9009eca9a0,355708
snapshot-pos,0x1cf698f7b630,355718
snapshot-pos,0x1f9009ecaa60,355897
snapshot-pos,0x1cf698f7b648,355907
snapshot-pos,0x1f9009ecab20,356086
snapshot-pos,0x1cf698f7b660,356096
snapshot-pos,0x1f9009ecabc0,356246
snapshot-pos,0x1cf698f7b678,356256
snapshot-pos,0x1f9009ecac20,356346
snapshot-pos,0x1cf698f7b690,356356
snapshot-pos,0x1f9009ecac80,356449
snapshot-pos,0x1cf698f7b6a8,356459
snapshot-pos,0x1f9009ecace0,356549
snapshot-pos,0x1cf698f7b6c0,356559
snapshot-pos,0x1f9009ecad40,356649
snapshot-pos,0x1cf698f7b6d8,356659
snapshot-pos,0x1f9009ecada0,356749
snapshot-pos,0x1cf698f7b6f0,356759
snapshot-pos,0x1f9009ecae00,356849
snapshot-pos,0x1cf698f7b708,356859
snapshot-pos,0x1f9009ecae60,356952
snapshot-pos,0x1cf698f7b720,356962
snapshot-pos,0x1f9009ecaec0,357052
snapshot-pos,0x1cf698f7b738,357062
snapshot-pos,0x1f9009ecb020,357411
snapshot-pos,0x1cf698f7b750,357421
snapshot-pos,0x1f9009ecb080,357514
snapshot-pos,0x1cf698f7b768,357524
snapshot-pos,0x1f9009ecb100,357651
snapshot-pos,0x1cf698f7b780,357661
snapshot-pos,0x1f9009ecb1a0,357820
snapshot-pos,0x1cf698f7b798,357830
snapshot-pos,0x1f9009ecb240,357988
snapshot-pos,0x1cf698f7b7b0,357998
snapshot-pos,0x1f9009ecb340,358252
snapshot-pos,0x1cf698f7b7c8,358262
snapshot-pos,0x1f9009ecb3a0,358352
snapshot-pos,0x1cf698f7b7e0,358362
snapshot-pos,0x1f9009ecb6a0,359128
snapshot-pos,0x1cf698f7b800,359138
snapshot-pos,0x1f9009ecb960,359823
snapshot-pos,0x1cf698f7b830,359833
snapshot-pos,0x1f9009ecba00,359984
snapshot-pos,0x1cf698f7b848,359994
snapshot-pos,0x1f9009ecbb20,360282
snapshot-pos,0x1cf698f7b868,360292
snapshot-pos,0x1f9009ecbbe0,360475
snapshot-pos,0x1cf698f7b880,360485
snapshot-pos,0x1f9009ecbd80,360896
snapshot-pos,0x1cf698f7b8a0,360906
snapshot-pos,0x1f9009ecbea0,361193
snapshot-pos,0x1cf698f7b8c0,361203
snapshot-pos,0x1f9009ecbf00,361293
snapshot-pos,0x1cf698f7b8d8,361303
snapshot-pos,0x1f9009ecc040,361393
snapshot-pos,0x1cf698f7b8f0,361405
snapshot-pos,0x1f9009ecc100,361588
snapshot-pos,0x1cf698f7b908,361598
snapshot-pos,0x1f9009ecc2a0,362009
snapshot-pos,0x1cf698f7b928,362019
snapshot-pos,0x1f9009ecc3c0,362306
snapshot-pos,0x1cf698f7b948,362316
snapshot-pos,0x1f9009ecc420,362409
snapshot-pos,0x1cf698f7b960,362419
snapshot-pos,0x1f9009ecc560,362734
snapshot-pos,0x1cf698f7b980,362744
snapshot-pos,0x1f9009ecc5c0,362834
snapshot-pos,0x1cf698f7b998,362844
snapshot-pos,0x1f9009ecc700,363159
snapshot-pos,0x1cf698f7b9b8,363169
snapshot-pos,0x1f9009ecc8a0,363563
snapshot-pos,0x1cf698f7b9d8,363573
snapshot-pos,0x1f9009ecca80,364054
snapshot-pos,0x1cf698f7b9f8,364064
snapshot-pos,0x1f9009eccc60,364542
snapshot-pos,0x1cf698f7ba10,364552
snapshot-pos,0x1f9009eccf80,365315
snapshot-pos,0x1cf698f7ba48,365325
snapshot-pos,0x1f9009ecd2a0,366088
snapshot-pos,0x1cf698f7ba80,366098
snapshot-pos,0x1f9009ecd4e0,366663
snapshot-pos,0x1cf698f7bab0,366673
snapshot-pos,0x1f9009ecd8a0,367622
snapshot-pos,0x1cf698f7bad8,367632
snapshot-pos,0x1f9009ecd960,367811
snapshot-pos,0x1cf698f7baf0,367821
snapshot-pos,0x1f9009ecd9e0,367933
snapshot-pos,0x1cf698f7bb08,367943
snapshot-pos,0x1f9009ecda80,368087
snapshot-pos,0x1cf698f7bb20,368097
snapshot-pos,0x1f9009ecdb20,368241
snapshot-pos,0x1cf698f7bb38,368251
snapshot-pos,0x1f9009ecdbc0,368398
snapshot-pos,0x1cf698f7bb50,368408
snapshot-pos,0x1f9009ecdc60,368558
snapshot-pos,0x1cf698f7bb68,368568
snapshot-pos,0x1f9009ecdcc0,368654
snapshot-pos,0x1cf698f7bb78,368664
snapshot-pos,0x3f0f96bf9090,368810
snapshot-pos,0x3f0f96bf9120,368886
snapshot-pos,0x1cf698f7bb90,369213
snapshot-pos,0x1cf698f7bbb8,369251
snapshot-pos,0x1cf698f7bbe0,369289
snapshot-pos,0x1cf698f7bc00,369319
snapshot-pos,0x1cf698f7bc20,369349
snapshot-pos,0x1cf698f7bc48,369387
snapshot-pos,0x1cf698f7bc78,369437
snapshot-pos,0x3f0f96bf91b0,369492
snapshot-pos,0x3f0f96bf9240,369756
snapshot-pos,0x3f0f96bf92d0,369843
snapshot-pos,0x3f0f96bf9360,369939
snapshot-pos,0x1cf698f7bcb0,370334
snapshot-pos,0x1cf698f7bcd0,370367
snapshot-pos,0x1cf698f7bcf0,370400
snapshot-pos,0x1cf698f7bd10,370445
snapshot-pos,0x1cf698f7bd30,370475
snapshot-pos,0x1cf698f7bd50,370505
snapshot-pos,0x1cf698f7bd70,370544
snapshot-pos,0x1cf698f7bd90,370574
snapshot-pos,0x1cf698f7bdb0,370604
snapshot-pos,0x3f0f96bf93f0,370652
snapshot-pos,0x3f0f96bf9480,370774
snapshot-pos,0x3f0f96bf9510,370868
snapshot-pos,0x3f0f96bf95a0,370950
snapshot-pos,0x3f0f96bf9630,371029
snapshot-pos,0x3f0f96bf96c0,371114
snapshot-pos,0x3f0f96bf9750,371244
snapshot-pos,0x3f0f96bf97e0,371587
snapshot-pos,0x1cf698f7bdd0,371892
snapshot-pos,0x3f0f96bf9870,371980
snapshot-pos,0x1cf698f7bdf8,372002
snapshot-pos,0x3f0f96bf9898,372242
snapshot-pos,0x1cf698f7be20,372246
snapshot-pos,0x3f0f96bf9928,372522
snapshot-pos,0x1cf698f7be40,372816
snapshot-pos,0x1cf698f7be68,373037
snapshot-pos,0x1cf698f7be90,373116
snapshot-pos,0x3f0f96bf99b8,373154
snapshot-pos,0x3f0f96bf9a48,373463
snapshot-pos,0x3f0f96bf9ad8,373566
snapshot-pos,0x3f0f96bf9b68,373778
snapshot-pos,0x3f0f96bf9bf8,373858
snapshot-pos,0x3f0f96bf9c88,374096
snapshot-pos,0x1cf698f7beb8,374632
snapshot-pos,0x3f0f96bf9d18,375206
snapshot-pos,0x3f0f96bf9da8,375307
snapshot-pos,0x3f0f96bf9e38,375386
snapshot-pos,0x3f0f96bf9ec8,375476
snapshot-pos,0x1cf698f7bee0,375480
snapshot-pos,0x3f0f96bf9f58,375522
snapshot-pos,0x1cf698f7bf00,375526
snapshot-pos,0x1cf698f7bf20,375576
snapshot-pos,0x3f0f96bfa040,375675
snapshot-pos,0x3f0f96bfa0d0,375756
snapshot-pos,0x1cf698f7bf30,375760
snapshot-pos,0x3f0f96bfa160,375870
snapshot-pos,0x3f0f96bfa1f0,375949
snapshot-pos,0x3f0f96bfa280,376025
snapshot-pos,0x1cf698f7bf58,376040
snapshot-pos,0x335e620104a8,376202
code-creation,Stub,0x1f9009eae040,114,"BinaryOpStub"
code-creation,Stub,0x1f9009eae0c0,745,"CEntryStub"
code-creation,Stub,0x1f9009eae3c0,145,"CompareICStub"
code-creation,Stub,0x1f9009eae460,114,"BinaryOpStub"
code-creation,Stub,0x1f9009eae4e0,270,"BinaryOpStub"
code-creation,Stub,0x1f9009eae600,200,"FastCloneShallowArrayStub"
code-creation,Stub,0x1f9009eae6e0,176,"CompareICStub"
code-creation,Stub,0x1f9009eae7a0,255,"BinaryOpStub"
code-creation,Stub,0x1f9009eae8a0,221,"FastNewClosureStub"
code-creation,Stub,0x1f9009eae980,228,"NumberToStringStub"
code-creation,Stub,0x1f9009eaea80,176,"CompareICStub"
code-creation,Stub,0x1f9009eaeb40,244,"FastCloneShallowArrayStub"
code-creation,Stub,0x1f9009eaec40,487,"CompareStub"
code-creation,Stub,0x1f9009eaee40,145,"CompareICStub"
code-creation,Stub,0x1f9009eaeee0,200,"FastCloneShallowArrayStub"
code-creation,Stub,0x1f9009eaefc0,196,"FastNewContextStub"
code-creation,Stub,0x1f9009eaf0a0,145,"CompareICStub"
code-creation,Stub,0x1f9009eaf140,145,"CompareICStub"
code-creation,Stub,0x1f9009eaf1e0,114,"BinaryOpStub"
code-creation,Stub,0x1f9009eaf260,218,"CallFunctionStub"
code-creation,Builtin,0x1f9009eaf340,228,"A builtin from the snapshot"
code-creation,Stub,0x1f9009eaf440,1317,"StringAddStub"
code-creation,Stub,0x1f9009eaf980,185,"ArgumentsAccessStub"
code-creation,Stub,0x1f9009eafa40,1356,"StringAddStub"
code-creation,Stub,0x1f9009eb0040,1546,"StringAddStub"
code-creation,Stub,0x1f9009eb0660,114,"BinaryOpStub"
code-creation,Stub,0x1f9009eb06e0,114,"BinaryOpStub"
code-creation,Stub,0x1f9009eb0760,171,"BinaryOpStub"
code-creation,Stub,0x1f9009eb0820,1549,"StringAddStub"
code-creation,Stub,0x1f9009eb0e40,186,"CompareICStub"
code-creation,Stub,0x1f9009eb0f00,145,"CompareICStub"
code-creation,Stub,0x1f9009eb0fa0,329,"JSEntryStub"
code-creation,Stub,0x1f9009eb1100,90,"ToBooleanStub"
code-creation,Stub,0x1f9009eb1160,172,"BinaryOpStub"
code-creation,Stub,0x1f9009eb1220,106,"ToBooleanStub"
code-creation,Stub,0x1f9009eb12a0,228,"FastCloneShallowArrayStub"
code-creation,Stub,0x1f9009eb13a0,270,"BinaryOpStub"
code-creation,Stub,0x1f9009eb14c0,534,"CompareStub"
code-creation,Stub,0x1f9009eb16e0,959,"StringDictionaryNegativeLookupStub"
code-creation,Stub,0x1f9009eb1aa0,270,"BinaryOpStub"
code-creation,Stub,0x1f9009eb1bc0,117,"KeyedLoadElementStub"
code-creation,Builtin,0x1f9009eb1c40,88,"A builtin from the snapshot"
code-creation,Stub,0x1f9009eb1ca0,212,"CallFunctionStub"
code-creation,Stub,0x1f9009eb1d80,218,"CallFunctionStub"
code-creation,Stub,0x1f9009eb1e60,218,"CallFunctionStub"
code-creation,Stub,0x1f9009eb2040,940,"StringDictionaryNegativeLookupStub"
code-creation,Stub,0x1f9009eb2400,236,"FastCloneShallowArrayStub"
code-creation,Stub,0x1f9009eb2500,940,"StringDictionaryNegativeLookupStub"
code-creation,Stub,0x1f9009eb28c0,211,"FastNewContextStub"
code-creation,Stub,0x1f9009eb29a0,145,"CompareICStub"
code-creation,Stub,0x1f9009eb2a40,119,"ToBooleanStub"
code-creation,Stub,0x1f9009eb2ac0,159,"CompareICStub"
code-creation,Stub,0x1f9009eb2b60,131,"ArgumentsAccessStub"
code-creation,Stub,0x1f9009eb2c00,107,"ToNumberStub"
code-creation,Stub,0x1f9009eb2c80,133,"ToBooleanStub"
code-creation,Stub,0x1f9009eb2d20,114,"BinaryOpStub"
code-creation,Stub,0x1f9009eb2da0,114,"BinaryOpStub"
code-creation,Stub,0x1f9009eb2e20,81,"StackCheckStub"
code-creation,Stub,0x1f9009eb2e80,186,"CompareICStub"
code-creation,Stub,0x1f9009eb2f40,215,"CompareICStub"
code-creation,Stub,0x1f9009eb3020,241,"StringCompareStub"
code-creation,Stub,0x1f9009eb3120,329,"JSEntryStub"
code-creation,CallIC,0x1f9009eb3280,223,"A call IC from the snapshot"
code-creation,CallIC,0x1f9009eb3360,214,"A call IC from the snapshot"
code-creation,CallIC,0x1f9009eb3440,214,"A call IC from the snapshot"
code-creation,CallIC,0x1f9009eb3520,223,"A call IC from the snapshot"
code-creation,CallIC,0x1f9009eb3600,214,"A call IC from the snapshot"
code-creation,CallIC,0x1f9009eb36e0,214,"A call IC from the snapshot"
code-creation,CallIC,0x1f9009eb37c0,214,"A call IC from the snapshot"
code-creation,CallIC,0x1f9009eb38a0,223,"A call IC from the snapshot"
code-creation,CallIC,0x1f9009eb3980,214,"A call IC from the snapshot"
code-creation,CallIC,0x1f9009eb3a60,209,"A call IC from the snapshot"
code-creation,CallIC,0x1f9009eb3b40,212,"A call IC from the snapshot"
code-creation,CallIC,0x1f9009eb3c20,223,"A call IC from the snapshot"
code-creation,CallIC,0x1f9009eb3d00,223,"A call IC from the snapshot"
code-creation,CallIC,0x1f9009eb3de0,214,"A call IC from the snapshot"
code-creation,CallIC,0x1f9009eb3ec0,214,"A call IC from the snapshot"
code-creation,CallIC,0x1f9009eb4040,214,"A call IC from the snapshot"
code-creation,CallIC,0x1f9009eb4120,223,"A call IC from the snapshot"
code-creation,CallIC,0x1f9009eb4200,214,"A call IC from the snapshot"
code-creation,CallIC,0x1f9009eb42e0,214,"A call IC from the snapshot"
code-creation,CallIC,0x1f9009eb43c0,223,"A call IC from the snapshot"
code-creation,CallIC,0x1f9009eb44a0,212,"A call IC from the snapshot"
code-creation,CallIC,0x1f9009eb4580,223,"A call IC from the snapshot"
code-creation,CallIC,0x1f9009eb4660,223,"A call IC from the snapshot"
code-creation,CallIC,0x1f9009eb4740,223,"A call IC from the snapshot"
code-creation,CallIC,0x1f9009eb4820,214,"A call IC from the snapshot"
code-creation,CallIC,0x1f9009eb4900,214,"A call IC from the snapshot"
code-creation,CallIC,0x1f9009eb49e0,214,"A call IC from the snapshot"
code-creation,CallIC,0x1f9009eb4ac0,223,"A call IC from the snapshot"
code-creation,CallIC,0x1f9009eb4ba0,209,"A call IC from the snapshot"
code-creation,CallIC,0x1f9009eb4c80,214,"A call IC from the snapshot"
code-creation,CallIC,0x1f9009eb4d60,223,"A call IC from the snapshot"
code-creation,CallIC,0x1f9009eb4e40,214,"A call IC from the snapshot"
code-creation,CallIC,0x1f9009eb4f20,209,"A call IC from the snapshot"
code-creation,CallIC,0x1f9009eb5000,223,"A call IC from the snapshot"
code-creation,CallIC,0x1f9009eb50e0,214,"A call IC from the snapshot"
code-creation,CallIC,0x1f9009eb51c0,223,"A call IC from the snapshot"
code-creation,CallIC,0x1f9009eb52a0,214,"A call IC from the snapshot"
code-creation,CallIC,0x1f9009eb5380,212,"A call IC from the snapshot"
code-creation,CallIC,0x1f9009eb5460,212,"A call IC from the snapshot"
code-creation,CallIC,0x1f9009eb5540,212,"A call IC from the snapshot"
code-creation,CallIC,0x1f9009eb5620,214,"A call IC from the snapshot"
code-creation,CallIC,0x1f9009eb5700,214,"A call IC from the snapshot"
code-creation,CallIC,0x1f9009eb57e0,212,"A call IC from the snapshot"
code-creation,CallIC,0x1f9009eb58c0,214,"A call IC from the snapshot"
code-creation,CallIC,0x1f9009eb59a0,223,"A call IC from the snapshot"
code-creation,CallIC,0x1f9009eb5a80,223,"A call IC from the snapshot"
code-creation,CallIC,0x1f9009eb5b60,211,"A call IC from the snapshot"
code-creation,CallIC,0x1f9009eb5c40,214,"A call IC from the snapshot"
code-creation,CallIC,0x1f9009eb5d20,214,"A call IC from the snapshot"
code-creation,CallIC,0x1f9009eb5e00,211,"A call IC from the snapshot"
code-creation,Builtin,0x1f9009eb5ee0,133,"A builtin from the snapshot"
code-creation,Builtin,0x1f9009eb6040,131,"A builtin from the snapshot"
code-creation,Builtin,0x1f9009eb6200,128,"A builtin from the snapshot"
code-creation,Builtin,0x1f9009eb6280,545,"A builtin from the snapshot"
code-creation,LoadIC,0x1f9009eb65e0,88,"A load IC from the snapshot"
code-creation,KeyedLoadIC,0x1f9009eb7240,88,"A keyed load IC from the snapshot"
code-creation,Builtin,0x1f9009eb73a0,130,"A builtin from the snapshot"
code-creation,StoreIC,0x1f9009eb77a0,89,"A store IC from the snapshot"
code-creation,KeyedStoreIC,0x1f9009ebc3e0,89,"A keyed store IC from the snapshot"
code-creation,Builtin,0x1f9009ec9ce0,83,"A builtin from the snapshot"
code-creation,Builtin,0x1f9009ec9d40,83,"A builtin from the snapshot"
code-creation,Builtin,0x1f9009ec9da0,83,"A builtin from the snapshot"
code-creation,Builtin,0x1f9009ec9e00,83,"A builtin from the snapshot"
code-creation,Builtin,0x1f9009ec9e60,83,"A builtin from the snapshot"
code-creation,Builtin,0x1f9009ec9ec0,83,"A builtin from the snapshot"
code-creation,Builtin,0x1f9009ec9f20,83,"A builtin from the snapshot"
code-creation,Builtin,0x1f9009ec9f80,83,"A builtin from the snapshot"
code-creation,Builtin,0x1f9009eca040,83,"A builtin from the snapshot"
code-creation,Builtin,0x1f9009eca0a0,83,"A builtin from the snapshot"
code-creation,Builtin,0x1f9009eca100,88,"A builtin from the snapshot"
code-creation,Builtin,0x1f9009eca160,83,"A builtin from the snapshot"
code-creation,Builtin,0x1f9009eca1c0,88,"A builtin from the snapshot"
code-creation,Builtin,0x1f9009eca220,83,"A builtin from the snapshot"
code-creation,Builtin,0x1f9009eca280,83,"A builtin from the snapshot"
code-creation,Builtin,0x1f9009eca2e0,83,"A builtin from the snapshot"
code-creation,Builtin,0x1f9009eca340,586,"A builtin from the snapshot"
code-creation,Builtin,0x1f9009eca5a0,522,"A builtin from the snapshot"
code-creation,Builtin,0x1f9009eca7c0,174,"A builtin from the snapshot"
code-creation,Builtin,0x1f9009eca880,145,"A builtin from the snapshot"
code-creation,Builtin,0x1f9009eca920,128,"A builtin from the snapshot"
code-creation,Builtin,0x1f9009eca9a0,186,"A builtin from the snapshot"
code-creation,Builtin,0x1f9009ecaa60,186,"A builtin from the snapshot"
code-creation,Builtin,0x1f9009ecab20,157,"A builtin from the snapshot"
code-creation,Builtin,0x1f9009ecabc0,88,"A builtin from the snapshot"
code-creation,Builtin,0x1f9009ecac20,88,"A builtin from the snapshot"
code-creation,Builtin,0x1f9009ecac80,88,"A builtin from the snapshot"
code-creation,Builtin,0x1f9009ecace0,89,"A builtin from the snapshot"
code-creation,Builtin,0x1f9009ecad40,89,"A builtin from the snapshot"
code-creation,Builtin,0x1f9009ecada0,89,"A builtin from the snapshot"
code-creation,Builtin,0x1f9009ecae00,89,"A builtin from the snapshot"
code-creation,LoadIC,0x1f9009ecae60,88,"A load IC from the snapshot"
code-creation,LoadIC,0x1f9009ecaec0,321,"A load IC from the snapshot"
code-creation,LoadIC,0x1f9009ecb020,96,"A load IC from the snapshot"
code-creation,LoadIC,0x1f9009ecb080,99,"A load IC from the snapshot"
code-creation,LoadIC,0x1f9009ecb100,146,"A load IC from the snapshot"
code-creation,LoadIC,0x1f9009ecb1a0,136,"A load IC from the snapshot"
code-creation,LoadIC,0x1f9009ecb240,242,"A load IC from the snapshot"
code-creation,KeyedLoadIC,0x1f9009ecb340,88,"A keyed load IC from the snapshot"
code-creation,KeyedLoadIC,0x1f9009ecb3a0,764,"A keyed load IC from the snapshot"
code-creation,KeyedLoadIC,0x1f9009ecb6a0,689,"A keyed load IC from the snapshot"
code-creation,KeyedLoadIC,0x1f9009ecb960,156,"A keyed load IC from the snapshot"
code-creation,KeyedLoadIC,0x1f9009ecba00,275,"A keyed load IC from the snapshot"
code-creation,StoreIC,0x1f9009ecbb20,162,"A store IC from the snapshot"
code-creation,StoreIC,0x1f9009ecbbe0,408,"A store IC from the snapshot"
code-creation,StoreIC,0x1f9009ecbd80,263,"A store IC from the snapshot"
code-creation,StoreIC,0x1f9009ecbea0,93,"A store IC from the snapshot"
code-creation,StoreIC,0x1f9009ecbf00,89,"A store IC from the snapshot"
code-creation,StoreIC,0x1f9009ecc040,162,"A store IC from the snapshot"
code-creation,StoreIC,0x1f9009ecc100,408,"A store IC from the snapshot"
code-creation,StoreIC,0x1f9009ecc2a0,263,"A store IC from the snapshot"
code-creation,StoreIC,0x1f9009ecc3c0,93,"A store IC from the snapshot"
code-creation,KeyedStoreIC,0x1f9009ecc420,306,"A keyed store IC from the snapshot"
code-creation,KeyedStoreIC,0x1f9009ecc560,89,"A keyed store IC from the snapshot"
code-creation,KeyedStoreIC,0x1f9009ecc5c0,306,"A keyed store IC from the snapshot"
code-creation,KeyedStoreIC,0x1f9009ecc700,401,"A keyed store IC from the snapshot"
code-creation,Builtin,0x1f9009ecc8a0,451,"A builtin from the snapshot"
code-creation,Builtin,0x1f9009ecca80,460,"A builtin from the snapshot"
code-creation,Builtin,0x1f9009eccc60,789,"A builtin from the snapshot"
code-creation,Builtin,0x1f9009eccf80,774,"A builtin from the snapshot"
code-creation,Builtin,0x1f9009ecd2a0,545,"A builtin from the snapshot"
code-creation,Builtin,0x1f9009ecd4e0,938,"A builtin from the snapshot"
code-creation,Builtin,0x1f9009ecd8a0,165,"A builtin from the snapshot"
code-creation,Builtin,0x1f9009ecd960,127,"A builtin from the snapshot"
code-creation,LoadIC,0x1f9009ecd9e0,131,"A load IC from the snapshot"
code-creation,KeyedLoadIC,0x1f9009ecda80,131,"A keyed load IC from the snapshot"
code-creation,StoreIC,0x1f9009ecdb20,133,"A store IC from the snapshot"
code-creation,KeyedStoreIC,0x1f9009ecdbc0,133,"A keyed store IC from the snapshot"
code-creation,Builtin,0x1f9009ecdc60,65,"A builtin from the snapshot"
code-creation,Builtin,0x1f9009ecdcc0,105,"A builtin from the snapshot"
code-creation,Script,0x1f9009eb60e0,264,"native json.js",0x3f0f96bd95a0,
code-creation,LazyCompile,0x1f9009eb64c0,268,"SetUpJSON native json.js:340",0x3f0f96bdafb8,
code-creation,Script,0x1f9009eb6640,2488,"native v8natives.js",0x3f0f96bdb0d0,
code-creation,LazyCompile,0x1f9009eb7000,556,"InstallFunctions native v8natives.js:48",0x3f0f96bdb5d0,
code-creation,LazyCompile,0x1f9009eb72a0,232,"InstallFunctionsOnHiddenPrototype native v8natives.js:67",0x3f0f96bdb740,
code-creation,LazyCompile,0x1f9009eb7440,836,"SetUpLockedPrototype native v8natives.js:79",0x3f0f96bdb830,
code-creation,LazyCompile,0x1f9009eb7800,440,"isFinite native v8natives.js:115",0x3f0f96bdb9d0,
code-creation,LazyCompile,0x1f9009eb79c0,592,"SetUpGlobal native v8natives.js:193",0x3f0f96bdbc58,
code-creation,LazyCompile,0x1f9009eb7c20,472,"hasOwnProperty native v8natives.js:264",0x3f0f96bdbed8,
code-creation,LazyCompile,0x1f9009eb7e00,236,"IsAccessorDescriptor native v8natives.js:360",0x3f0f96bdc430,
code-creation,LazyCompile,0x1f9009eb7f00,236,"IsDataDescriptor native v8natives.js:367",0x3f0f96bdc508,
code-creation,LazyCompile,0x1f9009eb8040,220,"IsGenericDescriptor native v8natives.js:374",0x3f0f96bdc5e0,
code-creation,LazyCompile,0x1f9009eb8120,196,"IsInconsistentDescriptor native v8natives.js:379",0x3f0f96bdc6b8,
code-creation,LazyCompile,0x1f9009eb8200,1836,"ToPropertyDescriptor native v8natives.js:432",0x3f0f96bdc8b0,
code-creation,LazyCompile,0x1f9009eb8940,448,"PropertyDescriptor native v8natives.js:494",0x3f0f96bdca90,
code-creation,LazyCompile,0x1f9009eb8b00,524,"ConvertDescriptorArrayToDescriptor native v8natives.js:593",0x3f0f96bdcb60,
code-creation,LazyCompile,0x1f9009eba040,5068,"DefineOwnProperty native v8natives.js:692",0x3f0f96bdcfa0,
code-creation,LazyCompile,0x1f9009ebb420,1028,"SetUpObject native v8natives.js:1186",0x3f0f96bdd9d8,
code-creation,LazyCompile,0x1f9009ebb840,284,"SetUpBoolean native v8natives.js:1249",0x3f0f96bddbc8,
code-creation,LazyCompile,0x1f9009ebb960,1044,"SetUpNumber native v8natives.js:1372",0x3f0f96bde040,
code-creation,LazyCompile,0x1f9009ebc040,904,"NewFunction native v8natives.js:1527",0x3f0f96bde2c0,
code-creation,LazyCompile,0x1f9009ebc440,284,"SetUpFunction native v8natives.js:1553",0x3f0f96bde3c8,
code-creation,LazyCompile,0x1f9009ebc560,316,"$Object.constructor native v8natives.js:220",0x3f0f96bde498,
code-creation,LazyCompile,0x1f9009ebc6a0,140,"$Array.enumerable_ native v8natives.js:535",0x3f0f96bde7d8,
code-creation,LazyCompile,0x1f9009ebc740,168,"$Array.writable_ native v8natives.js:538",0x3f0f96bde8a8,
code-creation,LazyCompile,0x1f9009ebc800,140,"$Array.writable_ native v8natives.js:542",0x3f0f96bde9e8,
code-creation,LazyCompile,0x1f9009ebc8a0,140,"$Array.writable_ native v8natives.js:545",0x3f0f96bdeab8,
code-creation,LazyCompile,0x1f9009ebc940,140,"$Array.configurable_ native v8natives.js:555",0x3f0f96bded38,
code-creation,LazyCompile,0x1f9009ebc9e0,168,"$Array.get_ native v8natives.js:558",0x3f0f96bdee08,
code-creation,LazyCompile,0x1f9009ebcaa0,140,"$Array.get_ native v8natives.js:562",0x3f0f96bdef20,
code-creation,LazyCompile,0x1f9009ebcb40,140,"$Array.get_ native v8natives.js:565",0x3f0f96bdeff0,
code-creation,LazyCompile,0x1f9009ebcbe0,168,"$Array.set_ native v8natives.js:568",0x3f0f96bdf0c0,
code-creation,LazyCompile,0x1f9009ebcca0,140,"$Array.set_ native v8natives.js:572",0x3f0f96bdf1d8,
code-creation,LazyCompile,0x1f9009ebcd40,140,"$Array.set_ native v8natives.js:575",0x3f0f96bdf2a8,
code-creation,LazyCompile,0x1f9009ebcde0,168,"d native v8natives.js:578",0x3f0f96bdf378,
code-creation,LazyCompile,0x1f9009ebcea0,140,"d native v8natives.js:582",0x3f0f96bdf490,
code-creation,LazyCompile,0x1f9009ebcf40,140," native v8natives.js:585",0x3f0f96bdf560,
code-creation,LazyCompile,0x1f9009ebcfe0,372,"a native v8natives.js:1171",0x3f0f96bdf630,
code-creation,LazyCompile,0x1f9009ebd160,356,"b native v8natives.js:1264",0x3f0f96bdf708,
code-creation,Script,0x1f9009ebd2e0,472,"native regexp.js",0x3f0f96bdf830,
code-creation,LazyCompile,0x1f9009ebd4c0,308,"RegExpConstructor native regexp.js:86",0x3f0f96be0f98,
code-creation,LazyCompile,0x1f9009ebd600,220,"RegExpMakeCaptureGetter native regexp.js:370",0x3f0f96be16a8,
code-creation,LazyCompile,0x1f9009ebd6e0,588," native regexp.js:371",0x3f0f96be1738,
code-creation,LazyCompile,0x1f9009ebe040,3152,"SetUpRegExp native regexp.js:408",0x3f0f96be1878,
code-creation,LazyCompile,0x1f9009ebeca0,212,"RegExpGetInput native regexp.js:428",0x3f0f96be1908,
code-creation,LazyCompile,0x1f9009ebed80,176,"RegExpSetInput native regexp.js:432",0x3f0f96be19e0,
code-creation,LazyCompile,0x1f9009ebee40,128,"RegExpGetMultiline native regexp.js:452",0x3f0f96be1ab8,
code-creation,LazyCompile,0x1f9009ebeec0,236,"RegExpSetMultiline native regexp.js:453",0x3f0f96be1b88,
code-creation,LazyCompile,0x1f9009ebefc0,116,"NoOpSetter native regexp.js:461",0x3f0f96be1c60,
code-creation,Script,0x1f9009ebf040,732,"native runtime.js",0x3f0f96be1e00,
code-creation,LazyCompile,0x1f9009ebf320,1700,"EQUALS native runtime.js:54",0x3f0f96be23b0,
code-creation,LazyCompile,0x1f9009ebf9e0,344,"STRICT_EQUALS native runtime.js:100",0x3f0f96be3a40,
code-creation,LazyCompile,0x1f9009ebfb40,964,"COMPARE native runtime.js:120",0x3f0f96be3b18,
code-creation,LazyCompile,0x1f9009ec0040,616,"ADD native runtime.js:163",0x3f0f96be3c18,
code-creation,LazyCompile,0x1f9009ec02c0,604,"STRING_ADD_LEFT native runtime.js:183",0x3f0f96be3d00,
code-creation,LazyCompile,0x1f9009ec0520,616,"STRING_ADD_RIGHT native runtime.js:198",0x3f0f96be3dd8,
code-creation,LazyCompile,0x1f9009ec07a0,276,"SUB native runtime.js:214",0x3f0f96be3eb8,
code-creation,LazyCompile,0x1f9009ec08c0,276,"MUL native runtime.js:222",0x3f0f96be4040,
code-creation,LazyCompile,0x1f9009ec09e0,276,"DIV native runtime.js:230",0x3f0f96be4120,
code-creation,LazyCompile,0x1f9009ec0b00,276,"MOD native runtime.js:238",0x3f0f96be4200,
code-creation,LazyCompile,0x1f9009ec0c20,276,"BIT_OR native runtime.js:252",0x3f0f96be42e0,
code-creation,LazyCompile,0x1f9009ec0d40,384,"BIT_AND native runtime.js:260",0x3f0f96be43c0,
code-creation,LazyCompile,0x1f9009ec0ec0,276,"BIT_XOR native runtime.js:282",0x3f0f96be44a0,
code-creation,LazyCompile,0x1f9009ec0fe0,216,"UNARY_MINUS native runtime.js:290",0x3f0f96be4580,
code-creation,LazyCompile,0x1f9009ec10c0,216,"BIT_NOT native runtime.js:297",0x3f0f96be4658,
code-creation,LazyCompile,0x1f9009ec11a0,276,"SHL native runtime.js:304",0x3f0f96be4730,
code-creation,LazyCompile,0x1f9009ec12c0,384,"SAR native runtime.js:312",0x3f0f96be4810,
code-creation,LazyCompile,0x1f9009ec1440,276,"SHR native runtime.js:334",0x3f0f96be48f0,
code-creation,LazyCompile,0x1f9009ec1560,204,"DELETE native runtime.js:348",0x3f0f96be49d0,
code-creation,LazyCompile,0x1f9009ec1640,528,"IN native runtime.js:354",0x3f0f96be4ab0,
code-creation,LazyCompile,0x1f9009ec1860,732,"INSTANCE_OF native runtime.js:367",0x3f0f96be4ba8,
code-creation,LazyCompile,0x1f9009ec1b40,144,"GET_KEYS native runtime.js:391",0x3f0f96be4cc0,
code-creation,LazyCompile,0x1f9009ec1be0,204,"FILTER_KEY native runtime.js:399",0x3f0f96be4d90,
code-creation,LazyCompile,0x1f9009ec1cc0,432,"CALL_NON_FUNCTION native runtime.js:406",0x3f0f96be4e70,
code-creation,LazyCompile,0x1f9009ec2040,432,"CALL_NON_FUNCTION_AS_CONSTRUCTOR native runtime.js:415",0x3f0f96be4f68,
code-creation,LazyCompile,0x1f9009ec2200,260,"CALL_FUNCTION_PROXY native runtime.js:424",0x3f0f96be5060,
code-creation,LazyCompile,0x1f9009ec2320,708,"CALL_FUNCTION_PROXY_AS_CONSTRUCTOR native runtime.js:432",0x3f0f96be5150,
code-creation,LazyCompile,0x1f9009ec2600,1312,"APPLY_PREPARE native runtime.js:449",0x3f0f96be5278,
code-creation,LazyCompile,0x1f9009ec2b20,204,"APPLY_OVERFLOW native runtime.js:486",0x3f0f96be5378,
code-creation,LazyCompile,0x1f9009ec2c00,148,"TO_OBJECT native runtime.js:492",0x3f0f96be5450,
code-creation,LazyCompile,0x1f9009ec2ca0,148,"TO_NUMBER native runtime.js:498",0x3f0f96be5520,
code-creation,LazyCompile,0x1f9009ec2d40,148,"TO_STRING native runtime.js:504",0x3f0f96be55f0,
code-creation,LazyCompile,0x1f9009ec2de0,448,"ToPrimitive native runtime.js:516",0x3f0f96be56c0,
code-creation,LazyCompile,0x1f9009ec2fa0,440,"ToBoolean native runtime.js:527",0x3f0f96be57a0,
code-creation,LazyCompile,0x1f9009ec3160,456,"ToNumber native runtime.js:537",0x3f0f96be5878,
code-creation,LazyCompile,0x1f9009ec3340,408,"ToString native runtime.js:560",0x3f0f96be59e0,
code-creation,LazyCompile,0x1f9009ec34e0,496,"ToObject native runtime.js:577",0x3f0f96be5b48,
code-creation,Script,0x1f9009ec36e0,288,"native apinatives.js",0x3f0f96be6118,
code-creation,Script,0x1f9009ec3800,904,"native string.js",0x3f0f96be6508,
code-creation,LazyCompile,0x1f9009ec4040,1536,"SetUpString native string.js:943",0x3f0f96beb7e0,
code-creation,LazyCompile,0x1f9009ec4640,408,"b native string.js:36",0x3f0f96beb8b0,
code-creation,Script,0x1f9009ec47e0,616,"native math.js",0x3f0f96bebbc0,
code-creation,LazyCompile,0x1f9009ec4a60,116,"MathConstructor native math.js:38",0x3f0f96bebde0,
code-creation,LazyCompile,0x1f9009ec4ae0,1480,"SetUpMath native math.js:198",0x3f0f96bed2b8,
code-creation,Script,0x1f9009ec50c0,1628,"native date.js",0x3f0f96bed3d0,
code-creation,LazyCompile,0x1f9009ec5720,336,"TimeClip native date.js:378",0x3f0f96bee790,
code-creation,LazyCompile,0x1f9009ec6040,1952,"SetUpDate native date.js:1051",0x3f0f96bf0940,
code-creation,LazyCompile,0x1f9009ec67e0,1824,"WeekDays native date.js:398",0x3f0f96bf0b08,
code-creation,Script,0x1f9009ec6f00,260,"native array.js",0x3f0f96bf0df0,
code-creation,LazyCompile,0x1f9009ec7020,2376,"SetUpArray native array.js:1317",0x3f0f96bf24c0,
code-creation,LazyCompile,0x1f9009ec7980,260,"getFunction native array.js:1330",0x3f0f96bf2550,
code-creation,Script,0x1f9009ec7aa0,268,"native uri.js",0x3f0f96bf26e0,
code-creation,LazyCompile,0x1f9009ec7bc0,396,"SetUpUri native uri.js:395",0x3f0f96bf40d0,
code-creation,Script,0x1f9009ec8040,2520,"native messages.js",0x3f0f96bf41e8,
code-creation,LazyCompile,0x1f9009ec8a20,280,"MakeGenericError native messages.js:107",0x3f0f96bf48e8,
code-creation,LazyCompile,0x1f9009ec8b40,168,"MakeRangeError native messages.js:297",0x3f0f96bf4c18,
code-creation,LazyCompile,0x1f9009ec8c00,576,"DefineOneShotAccessor native messages.js:727",0x3f0f96bf5840,
code-creation,LazyCompile,0x1f9009ec8e40,352,"getter native messages.js:733",0x3f0f96bf58d0,
code-creation,LazyCompile,0x1f9009ec8fa0,276,"setter native messages.js:741",0x3f0f96bf59a0,
code-creation,LazyCompile,0x1f9009ec90c0,496,"captureStackTrace native messages.js:1054",0x3f0f96bf6790,
code-creation,LazyCompile,0x1f9009ec92c0,152," native messages.js:1063",0x3f0f96bf6820,
code-creation,LazyCompile,0x1f9009ec9360,428,"SetUpError native messages.js:1069",0x3f0f96bf6960,
code-creation,LazyCompile,0x1f9009ec9520,836,"DefineError native messages.js:1072",0x3f0f96bf69f0,
code-creation,LazyCompile,0x1f9009ec9880,116,"ErrorPrototype native messages.js:1088",0x3f0f96bf6a80,
code-creation,LazyCompile,0x1f9009ec9900,560," native messages.js:1104",0x3f0f96bf6b50,
code-creation,LazyCompile,0x1f9009ec9b40,204," native messages.js:1115",0x3f0f96bf6be0,
code-creation,LazyCompile,0x1f9009ec9900,560,"Error",0x3f0f96bf6d68,
code-creation,LazyCompile,0x1f9009ec9900,560,"TypeError",0x3f0f96bf6df8,
code-creation,LazyCompile,0x1f9009ec9900,560,"RangeError",0x3f0f96bf6e88,
code-creation,LazyCompile,0x1f9009ec9900,560,"SyntaxError",0x3f0f96bf6f18,
code-creation,LazyCompile,0x1f9009ec9900,560,"ReferenceError",0x3f0f96bf6fa8,
code-creation,LazyCompile,0x1f9009ec9900,560,"EvalError",0x3f0f96bf7038,
code-creation,LazyCompile,0x1f9009ec9900,560,"URIError",0x3f0f96bf70c8,
code-creation,LazyCompile,0x1f9009ec9c20,184,"b native messages.js:124",0x3f0f96bf72c0,
code-creation,LazyCompile,0x1f9009ec9ce0,83,"",0x3f0f96bf9090,
code-creation,LazyCompile,0x1f9009ec9ce0,83,"",0x3f0f96bf9120,
code-creation,LazyCompile,0x1f9009ec9c20,184,"Script",0x3f0f96bf91b0,
code-creation,LazyCompile,0x1f9009ec9e60,83,"pop",0x3f0f96bf9240,
code-creation,LazyCompile,0x1f9009ec9e00,83,"push",0x3f0f96bf92d0,
code-creation,LazyCompile,0x1f9009eccc60,789,"InternalArray",0x3f0f96bf9360,
code-creation,LazyCompile,0x1f9009ebd4c0,308,"RegExp",0x3f0f96bf93f0,
code-creation,LazyCompile,0x1f9009eca0a0,83,"concat",0x3f0f96bf9480,
code-creation,LazyCompile,0x1f9009eca040,83,"splice",0x3f0f96bf9510,
code-creation,LazyCompile,0x1f9009ec9ec0,83,"shift",0x3f0f96bf95a0,
code-creation,LazyCompile,0x1f9009ec9f20,83,"unshift",0x3f0f96bf9630,
code-creation,LazyCompile,0x1f9009ec9f80,83,"slice",0x3f0f96bf96c0,
code-creation,LazyCompile,0x1f9009eccc60,789,"Array",0x3f0f96bf9750,
code-creation,LazyCompile,0x1f9009ec67e0,1824,"Date",0x3f0f96bf97e0,
code-creation,LazyCompile,0x1f9009ec9ce0,83,"JSON",0x3f0f96bf9898,
code-creation,LazyCompile,0x1f9009ebd160,356,"Number",0x3f0f96bf9928,
code-creation,LazyCompile,0x1f9009ec9ce0,83,"OpaqueReference",0x3f0f96bf99b8,
code-creation,LazyCompile,0x1f9009ec9ce0,83,"",0x3f0f96bf9a48,
code-creation,LazyCompile,0x1f9009ebc560,316,"Boolean",0x3f0f96bf9ad8,
code-creation,LazyCompile,0x1f9009ec4640,408,"String",0x3f0f96bf9b68,
code-creation,LazyCompile,0x1f9009ebc040,904,"Function",0x3f0f96bf9bf8,
code-creation,LazyCompile,0x1f9009ec9ce0,83,"",0x3f0f96bf9c88,
code-creation,LazyCompile,0x1f9009ebcfe0,372,"Object",0x3f0f96bf9d18,
code-creation,LazyCompile,0x1f9009ecc8a0,451,"call",0x3f0f96bf9da8,
code-creation,LazyCompile,0x1f9009ecca80,460,"apply",0x3f0f96bf9e38,
code-creation,LazyCompile,0x1f9009ec9d40,83,"Empty",0x3f0f96bf9ec8,
code-creation,LazyCompile,0x1f9009ec9ce0,83,"Arguments",0x3f0f96bfa040,
code-creation,LazyCompile,0x1f9009eca2e0,83,"ThrowTypeError",0x3f0f96bfa0d0,
code-creation,LazyCompile,0x1f9009eca220,83,"",0x3f0f96bfa160,
code-creation,LazyCompile,0x1f9009eca280,83,"",0x3f0f96bfa1f0,
code-creation,LazyCompile,0x1f9009ec9ce0,83,"",0x3f0f96bfa280,
snapshot-pos,0x3f0f96bfc040,2
snapshot-pos,0x3f0f96bfc238,17
snapshot-pos,0x1db253e32040,19
snapshot-pos,0x3f0f96bfc280,34
snapshot-pos,0x1db253e32078,36
snapshot-pos,0x3f0f96bfc298,51
snapshot-pos,0x1db253e320b0,53
snapshot-pos,0x3f0f96bfc2e0,70
snapshot-pos,0x3f0f96bfc398,91
snapshot-pos,0x3f0f96bfc4c8,104
snapshot-pos,0x1db253e320e8,106
snapshot-pos,0x3f0f96bfc510,123
snapshot-pos,0x3f0f96bfc558,144
snapshot-pos,0x1cf698f7c040,157
snapshot-pos,0x1cf698f7c050,176
snapshot-pos,0x1cf698f7c060,193
snapshot-pos,0x1cf698f7c070,210
snapshot-pos,0x3f0f96bfc5a8,258
snapshot-pos,0x3f0f96bfc5d8,271
snapshot-pos,0x1db253e32120,273
snapshot-pos,0x3f0f96bfc620,290
snapshot-pos,0x3f0f96bfc678,311
snapshot-pos,0x1cf698f7c080,324
snapshot-pos,0x1cf698f7c090,341
snapshot-pos,0x1db253e32158,358
snapshot-pos,0x3f0f96bfc6e8,376
snapshot-pos,0x3f0f96bfc748,397
snapshot-pos,0x1db253e32190,410
snapshot-pos,0x3f0f96bfc7c8,428
snapshot-pos,0x3f0f96bfc828,449
snapshot-pos,0x3f0f96bfc8a8,500
snapshot-pos,0x1cf698f7c0a0,529
snapshot-pos,0x1cf698f7c0b0,546
snapshot-pos,0x1cf698f7c0c0,563
snapshot-pos,0x3f0f96bfc8f0,808
snapshot-pos,0x1db253e321c8,810
snapshot-pos,0x3f0f96bfcb20,823
snapshot-pos,0x1db253e32200,825
snapshot-pos,0x3f0f96bfcb38,844
snapshot-pos,0x3f0f96bfcb68,865
snapshot-pos,0x3f0f96bfcb88,878
snapshot-pos,0x1db253e32238,888
snapshot-pos,0x335e620188b8,971
snapshot-pos,0x32df2dd00040,1023
snapshot-pos,0x3f0f96bfcbd0,1029
snapshot-pos,0x3f0f96bfcc18,1046
snapshot-pos,0x32df2dd00050,1081
snapshot-pos,0x3f0f96bfcc48,1085
snapshot-pos,0x32df2dd00060,1117
snapshot-pos,0x3f0f96bfcc90,1121
snapshot-pos,0x3f0f96bfccd8,1138
snapshot-pos,0x32df2dd00070,1175
snapshot-pos,0x32df2dd00080,1210
snapshot-pos,0x3f0f96bfccf8,1214
snapshot-pos,0x3f0f96bfcd40,1231
snapshot-pos,0x32df2dd00090,1262
snapshot-pos,0x3f0f96bfcd60,1266
snapshot-pos,0x32df2dd000a0,1298
snapshot-pos,0x32df2dd000b0,1316
snapshot-pos,0x3f0f96bfcda8,1320
snapshot-pos,0x32df2dd000c0,1352
snapshot-pos,0x3f0f96bfcdf0,1356
snapshot-pos,0x32df2dd000d0,1388
snapshot-pos,0x3f0f96bfce38,1392
snapshot-pos,0x3f0f96bfce80,1409
snapshot-pos,0x32df2dd000e0,1462
snapshot-pos,0x3f0f96bfceb0,1466
snapshot-pos,0x3f0f96bfcef8,1483
snapshot-pos,0x32df2dd000f0,1516
snapshot-pos,0x3f0f96bfcf20,1520
snapshot-pos,0x32df2dd00100,1558
snapshot-pos,0x3f0f96bfcf68,1562
snapshot-pos,0x32df2dd00110,1594
snapshot-pos,0x3f0f96bfcfb0,1598
snapshot-pos,0x3f0f96bfcff8,1615
snapshot-pos,0x32df2dd00120,1646
snapshot-pos,0x3f0f96bfd018,1650
snapshot-pos,0x32df2dd00130,1700
snapshot-pos,0x3f0f96bfd060,1704
snapshot-pos,0x32df2dd00140,1784
snapshot-pos,0x3f0f96bfd0a8,1788
snapshot-pos,0x32df2dd00150,1820
snapshot-pos,0x3f0f96bfd0f0,1824
snapshot-pos,0x32df2dd00160,1880
snapshot-pos,0x3f0f96bfd138,1884
snapshot-pos,0x32df2dd00170,1952
snapshot-pos,0x3f0f96bfd180,1956
snapshot-pos,0x32df2dd00180,1988
snapshot-pos,0x3f0f96bfd1c8,1992
snapshot-pos,0x32df2dd00190,2024
snapshot-pos,0x3f0f96bfd210,2028
snapshot-pos,0x32df2dd001a0,2060
snapshot-pos,0x3f0f96bfd258,2064
snapshot-pos,0x32df2dd001b0,2096
snapshot-pos,0x3f0f96bfd2a0,2100
snapshot-pos,0x32df2dd001c0,2132
snapshot-pos,0x3f0f96bfd2e8,2136
snapshot-pos,0x32df2dd001d0,2174
snapshot-pos,0x3f0f96bfd330,2178
snapshot-pos,0x3f0f96bfd378,2195
snapshot-pos,0x32df2dd001e0,2226
snapshot-pos,0x3f0f96bfd398,2230
snapshot-pos,0x32df2dd001f0,2262
snapshot-pos,0x3f0f96bfd3e0,2266
snapshot-pos,0x3f0f96bfd428,2283
snapshot-pos,0x32df2dd00200,2320
snapshot-pos,0x3f0f96bfd448,2324
snapshot-pos,0x3f0f96bfd490,2341
snapshot-pos,0x32df2dd00210,2384
snapshot-pos,0x3f0f96bfd4c8,2388
snapshot-pos,0x1db253e32270,2398
snapshot-pos,0x3f0f96bfd510,2411
snapshot-pos,0x1db253e322a8,2413
snapshot-pos,0x3f0f96bfd528,2431
snapshot-pos,0x3f0f96bfd5b8,2452
snapshot-pos,0x3f0f96bfd698,2498
snapshot-pos,0x3f0f96bfd6e0,2528
snapshot-pos,0x3f0f96bfd728,2591
snapshot-pos,0x3f0f96bfd770,2621
snapshot-pos,0x3f0f96bfd7b8,2651
snapshot-pos,0x3f0f96bfd800,2668
snapshot-pos,0x3f0f96bfd820,2708
snapshot-pos,0x3f0f96bfd868,2738
snapshot-pos,0x3f0f96bfd8b0,2823
snapshot-pos,0x3f0f96bfd8e8,2851
snapshot-pos,0x3f0f96bfd978,2872
snapshot-pos,0x1cf698f7c0d0,2885
snapshot-pos,0x1cf698f7c0e0,2902
snapshot-pos,0x1cf698f7c0f0,2919
snapshot-pos,0x1cf698f7c100,2936
snapshot-pos,0x1cf698f7c110,2953
snapshot-pos,0x1cf698f7c120,2970
snapshot-pos,0x1cf698f7c130,2987
snapshot-pos,0x1cf698f7c140,3004
snapshot-pos,0x1cf698f7c150,3021
snapshot-pos,0x1cf698f7c160,3038
snapshot-pos,0x1cf698f7c170,3055
snapshot-pos,0x1cf698f7c180,3072
snapshot-pos,0x1cf698f7c190,3089
snapshot-pos,0x32df2dd00220,3166
snapshot-pos,0x3f0f96bfda58,3170
snapshot-pos,0x32df2dd00230,3202
snapshot-pos,0x3f0f96bfdaa0,3206
snapshot-pos,0x3f0f96bfdae8,3223
snapshot-pos,0x32df2dd00240,3254
snapshot-pos,0x3f0f96bfdb08,3258
snapshot-pos,0x3f0f96bfdb50,3275
snapshot-pos,0x32df2dd00250,3312
snapshot-pos,0x3f0f96bfdb70,3316
snapshot-pos,0x3f0f96bfdbb8,3333
snapshot-pos,0x32df2dd00260,3370
snapshot-pos,0x3f0f96bfdbd8,3374
snapshot-pos,0x3f0f96bfdc20,3391
snapshot-pos,0x32df2dd00270,3458
snapshot-pos,0x3f0f96bfdc40,3462
snapshot-pos,0x32df2dd00280,3494
snapshot-pos,0x3f0f96bfdc88,3498
snapshot-pos,0x3f0f96bfdcd0,3515
snapshot-pos,0x32df2dd00290,3552
snapshot-pos,0x3f0f96bfdcf0,3556
snapshot-pos,0x32df2dd002a0,3600
snapshot-pos,0x3f0f96bfdd38,3604
snapshot-pos,0x32df2dd002b0,3636
snapshot-pos,0x3f0f96bfdd80,3640
snapshot-pos,0x3f0f96bfddc8,3657
snapshot-pos,0x32df2dd002c0,3690
snapshot-pos,0x3f0f96bfddf0,3694
snapshot-pos,0x32df2dd002d0,3732
snapshot-pos,0x3f0f96bfde38,3736
snapshot-pos,0x3f0f96bfde80,3753
snapshot-pos,0x32df2dd002e0,3784
snapshot-pos,0x3f0f96bfdea0,3788
snapshot-pos,0x3f0f96bfdee8,3805
snapshot-pos,0x32df2dd002f0,3854
snapshot-pos,0x3f0f96bfdf08,3858
snapshot-pos,0x32df2dd00300,3890
snapshot-pos,0x32df2dd00310,3943
snapshot-pos,0x3f0f96bfdf50,3947
snapshot-pos,0x32df2dd00320,3987
snapshot-pos,0x3f0f96bfdf98,3991
snapshot-pos,0x32df2dd00330,4025
snapshot-pos,0x3f0f96bfe040,4029
snapshot-pos,0x32df2dd00340,4065
snapshot-pos,0x3f0f96bfe088,4069
snapshot-pos,0x32df2dd00350,4109
snapshot-pos,0x3f0f96bfe0d0,4113
snapshot-pos,0x32df2dd00360,4153
snapshot-pos,0x3f0f96bfe118,4157
snapshot-pos,0x32df2dd00370,4197
snapshot-pos,0x3f0f96bfe160,4201
snapshot-pos,0x32df2dd00380,4235
snapshot-pos,0x3f0f96bfe1a8,4239
snapshot-pos,0x32df2dd00390,4273
snapshot-pos,0x3f0f96bfe1f0,4277
snapshot-pos,0x3f0f96bfe238,4295
snapshot-pos,0x32df2dd003a0,4356
snapshot-pos,0x3f0f96bfe258,4360
snapshot-pos,0x32df2dd003b0,4401
snapshot-pos,0x3f0f96bfe2a0,4405
snapshot-pos,0x3f0f96bfe2e8,4423
snapshot-pos,0x32df2dd003c0,4454
snapshot-pos,0x3f0f96bfe308,4458
snapshot-pos,0x32df2dd003d0,4492
snapshot-pos,0x3f0f96bfe350,4496
snapshot-pos,0x32df2dd003e0,4530
snapshot-pos,0x3f0f96bfe398,4534
snapshot-pos,0x32df2dd003f0,4568
snapshot-pos,0x3f0f96bfe3e0,4572
snapshot-pos,0x32df2dd00400,4606
snapshot-pos,0x3f0f96bfe428,4610
snapshot-pos,0x1db253e322e0,4612
snapshot-pos,0x3f0f96bfe448,4625
snapshot-pos,0x1db253e32318,4627
snapshot-pos,0x3f0f96bfe460,4644
snapshot-pos,0x3f0f96bfe4a0,4665
snapshot-pos,0x3f0f96bfe4e0,4689
snapshot-pos,0x3f0f96bfe528,4720
snapshot-pos,0x3f0f96bfe570,4777
snapshot-pos,0x3f0f96bfe5b8,4799
snapshot-pos,0x3f0f96bfe5e8,4820
snapshot-pos,0x1cf698f7c1a0,4833
snapshot-pos,0x3f0f96bfe608,4867
snapshot-pos,0x32df2dd00410,4909
snapshot-pos,0x3f0f96bfe638,4913
snapshot-pos,0x32df2dd00420,4947
snapshot-pos,0x3f0f96bfe680,4951
snapshot-pos,0x32df2dd00430,4985
snapshot-pos,0x3f0f96bfe6c8,4989
snapshot-pos,0x3f0f96bfe710,5007
snapshot-pos,0x32df2dd00440,5038
snapshot-pos,0x32df2dd00450,5056
snapshot-pos,0x3f0f96bfe730,5060
snapshot-pos,0x32df2dd00460,5107
snapshot-pos,0x3f0f96bfe778,5111
snapshot-pos,0x3f0f96bfe7c0,5121
snapshot-pos,0x1db253e32350,5123
snapshot-pos,0x3f0f96bfe7d8,5140
snapshot-pos,0x3f0f96bfe848,5161
snapshot-pos,0x3f0f96bfe8e8,5223
snapshot-pos,0x3f0f96bfe930,5287
snapshot-pos,0x3f0f96bfe978,5384
snapshot-pos,0x32df2dd00470,5445
snapshot-pos,0x3f0f96bfe9b8,5449
snapshot-pos,0x32df2dd00480,5489
snapshot-pos,0x3f0f96bfea00,5493
snapshot-pos,0x3f0f96bfea48,5511
snapshot-pos,0x32df2dd00490,5544
snapshot-pos,0x3f0f96bfea70,5548
snapshot-pos,0x3f0f96bfeab8,5566
snapshot-pos,0x32df2dd004a0,5597
snapshot-pos,0x3f0f96bfead8,5601
snapshot-pos,0x32df2dd004b0,5659
snapshot-pos,0x3f0f96bfeb20,5663
snapshot-pos,0x32df2dd004c0,5697
snapshot-pos,0x32df2dd004d0,5716
snapshot-pos,0x3f0f96bfeb68,5720
snapshot-pos,0x32df2dd004e0,5779
snapshot-pos,0x3f0f96bfebb0,5783
snapshot-pos,0x32df2dd004f0,5817
snapshot-pos,0x32df2dd00500,5836
snapshot-pos,0x3f0f96bfebf8,5840
snapshot-pos,0x32df2dd00510,5886
snapshot-pos,0x3f0f96bfec40,5890
snapshot-pos,0x32df2dd00520,5930
snapshot-pos,0x3f0f96bfec88,5934
snapshot-pos,0x3f0f96bfecd0,5952
snapshot-pos,0x32df2dd00530,5983
snapshot-pos,0x3f0f96bfecf0,5987
snapshot-pos,0x32df2dd00540,6045
snapshot-pos,0x3f0f96bfed38,6049
snapshot-pos,0x32df2dd00550,6083
snapshot-pos,0x3f0f96bfed80,6087
snapshot-pos,0x32df2dd00560,6145
snapshot-pos,0x3f0f96bfedc8,6149
snapshot-pos,0x32df2dd00570,6183
snapshot-pos,0x3f0f96bfee10,6187
snapshot-pos,0x32df2dd00580,6221
snapshot-pos,0x3f0f96bfee58,6225
snapshot-pos,0x3f0f96bfeea0,6243
snapshot-pos,0x32df2dd00590,6280
snapshot-pos,0x3f0f96bfeec0,6284
snapshot-pos,0x32df2dd005a0,6318
snapshot-pos,0x3f0f96bfef08,6322
snapshot-pos,0x32df2dd005b0,6356
snapshot-pos,0x3f0f96bfef50,6360
snapshot-pos,0x32df2dd005c0,6394
snapshot-pos,0x3f0f96bfef98,6398
snapshot-pos,0x3f0f96bfefe0,6416
snapshot-pos,0x32df2dd005d0,6453
snapshot-pos,0x3f0f96bff018,6457
snapshot-pos,0x32df2dd005e0,6497
snapshot-pos,0x3f0f96bff060,6501
snapshot-pos,0x32df2dd005f0,6536
snapshot-pos,0x3f0f96bff0a8,6540
snapshot-pos,0x32df2dd00600,6592
snapshot-pos,0x3f0f96bff0f0,6596
snapshot-pos,0x32df2dd00610,6642
snapshot-pos,0x3f0f96bff138,6646
snapshot-pos,0x3f0f96bff180,6664
snapshot-pos,0x32df2dd00620,6713
snapshot-pos,0x3f0f96bff1a0,6717
snapshot-pos,0x32df2dd00630,6775
snapshot-pos,0x3f0f96bff1e8,6779
snapshot-pos,0x32df2dd00640,6819
snapshot-pos,0x3f0f96bff230,6823
snapshot-pos,0x32df2dd00650,6881
snapshot-pos,0x3f0f96bff278,6885
snapshot-pos,0x32df2dd00660,6925
snapshot-pos,0x3f0f96bff2c0,6929
snapshot-pos,0x1db253e32388,6931
snapshot-pos,0x3f0f96bff308,6948
snapshot-pos,0x3f0f96bff408,6969
snapshot-pos,0x3f0f96bff5c8,6982
snapshot-pos,0x3f0f96bff5e8,6995
snapshot-pos,0x3f0f96bff630,7011
snapshot-pos,0x3f0f96bff668,7024
snapshot-pos,0x3f0f96bff6b0,7068
snapshot-pos,0x3f0f96bff6f8,7099
snapshot-pos,0x3f0f96bff718,7112
snapshot-pos,0x3f0f96bff760,7128
snapshot-pos,0x3f0f96bff798,7141
snapshot-pos,0x3f0f96bff7e0,7192
snapshot-pos,0x3f0f96bff828,7223
snapshot-pos,0x3f0f96bff848,7236
snapshot-pos,0x3f0f96bff890,7280
snapshot-pos,0x3f0f96bff8b0,7293
snapshot-pos,0x3f0f96bff8f8,7309
snapshot-pos,0x3f0f96bff930,7363
snapshot-pos,0x3f0f96bff950,7376
snapshot-pos,0x3f0f96bff998,7409
snapshot-pos,0x3f0f96bff9b8,7446
snapshot-pos,0x3f0f96bff9d8,7459
snapshot-pos,0x3f0f96bffa20,7475
snapshot-pos,0x3f0f96bffa58,7529
snapshot-pos,0x3f0f96bffa78,7556
snapshot-pos,0x3f0f96bffa98,7569
snapshot-pos,0x3f0f96bffae0,7592
snapshot-pos,0x3f0f96bffb28,7624
snapshot-pos,0x3f0f96bffb48,7651
snapshot-pos,0x3f0f96bffb68,7664
snapshot-pos,0x3f0f96bffbb0,7708
snapshot-pos,0x3f0f96bffbd0,7734
snapshot-pos,0x3f0f96bffbf0,7747
snapshot-pos,0x3f0f96bffc38,7763
snapshot-pos,0x3f0f96bffc70,7819
snapshot-pos,0x3f0f96bffc90,7832
snapshot-pos,0x3f0f96bffcd8,7848
snapshot-pos,0x3f0f96bffd10,7915
snapshot-pos,0x3f0f96bffd30,7928
snapshot-pos,0x3f0f96bffd78,7944
snapshot-pos,0x3f0f96bffdb0,8000
snapshot-pos,0x3f0f96bffdd0,8028
snapshot-pos,0x3f0f96bffdf0,8054
snapshot-pos,0x3f0f96bffe10,8091
snapshot-pos,0x3f0f96bffe30,8118
snapshot-pos,0x3f0f96bffe50,8131
snapshot-pos,0x3f0f96bffe98,8147
snapshot-pos,0x3f0f96bffed0,8203
snapshot-pos,0x3f0f96bffef0,8216
snapshot-pos,0x3f0f96bfff38,8232
snapshot-pos,0x3f0f96bfff70,8288
snapshot-pos,0x3f0f96bfff90,8301
snapshot-pos,0x3f0f96c00040,8317
snapshot-pos,0x1db253e323c0,8471
snapshot-pos,0x3f0f96c00078,8484
snapshot-pos,0x1db253e323f8,8486
snapshot-pos,0x3f0f96c00090,8503
snapshot-pos,0x3f0f96c000e0,8524
snapshot-pos,0x3f0f96c00140,8537
snapshot-pos,0x3f0f96c00188,8580
snapshot-pos,0x3f0f96c001d0,8598
snapshot-pos,0x3f0f96c00200,8630
snapshot-pos,0x3f0f96c00248,8707
snapshot-pos,0x3f0f96c00298,8728
snapshot-pos,0x32df2dd00670,8874
snapshot-pos,0x32df2dd00680,8905
snapshot-pos,0x3f0f96c002f8,8909
snapshot-pos,0x32df2dd00690,8943
snapshot-pos,0x3f0f96c00340,8947
snapshot-pos,0x3f0f96c00388,8965
snapshot-pos,0x32df2dd006a0,8996
snapshot-pos,0x3f0f96c003a8,9000
snapshot-pos,0x32df2dd006b0,9059
snapshot-pos,0x3f0f96c003f0,9063
snapshot-pos,0x3f0f96c00438,9081
snapshot-pos,0x32df2dd006c0,9126
snapshot-pos,0x3f0f96c00460,9130
snapshot-pos,0x32df2dd006d0,9165
snapshot-pos,0x3f0f96c004a8,9169
snapshot-pos,0x1db253e32430,9171
snapshot-pos,0x3f0f96c004c8,9184
snapshot-pos,0x1db253e32468,9186
snapshot-pos,0x3f0f96c004e8,9199
snapshot-pos,0x1db253e324a0,9201
snapshot-pos,0x3f0f96c00500,9218
snapshot-pos,0x3f0f96c005d0,9239
snapshot-pos,0x3f0f96c00730,9252
snapshot-pos,0x3f0f96c00778,9283
snapshot-pos,0x3f0f96c007c0,9301
snapshot-pos,0x3f0f96c007e8,9355
snapshot-pos,0x3f0f96c00830,9373
snapshot-pos,0x3f0f96c00850,9401
snapshot-pos,0x3f0f96c00898,9419
snapshot-pos,0x3f0f96c008c8,9451
snapshot-pos,0x3f0f96c00910,9469
snapshot-pos,0x3f0f96c00938,9499
snapshot-pos,0x3f0f96c00980,9542
snapshot-pos,0x3f0f96c009c8,9573
snapshot-pos,0x3f0f96c00a10,9591
snapshot-pos,0x3f0f96c00a38,9621
snapshot-pos,0x3f0f96c00a80,9652
snapshot-pos,0x3f0f96c00ac8,9683
snapshot-pos,0x3f0f96c00b10,9714
snapshot-pos,0x3f0f96c00b58,9732
snapshot-pos,0x3f0f96c00b78,9820
snapshot-pos,0x3f0f96c00bc0,9931
snapshot-pos,0x1db253e324d8,9933
snapshot-pos,0x3f0f96c00c08,9950
snapshot-pos,0x3f0f96c00c60,9971
snapshot-pos,0x3f0f96c00cd0,10096
snapshot-pos,0x3f0f96c00d08,10117
snapshot-pos,0x1cf698f7c1b0,10130
snapshot-pos,0x3f0f96c00d38,10190
snapshot-pos,0x3f0f96c00d68,10211
snapshot-pos,0x3f0f96c00d88,10252
snapshot-pos,0x32df2dd006e0,10308
snapshot-pos,0x3f0f96c00dd8,10312
snapshot-pos,0x32df2dd006f0,10347
snapshot-pos,0x3f0f96c00e20,10351
snapshot-pos,0x3f0f96c00e68,10370
snapshot-pos,0x32df2dd00700,10403
snapshot-pos,0x3f0f96c00e90,10407
tick,0x7fc597a2fc0d,0x7fff19045840,0,0x0,3
snapshot-pos,0x1db253e32510,10409
snapshot-pos,0x3f0f96c00ed8,10426
snapshot-pos,0x3f0f96c00f40,10447
snapshot-pos,0x3f0f96c00fd0,10460
snapshot-pos,0x3f0f96c01018,10503
snapshot-pos,0x3f0f96c01060,10579
snapshot-pos,0x1db253e32548,10650
snapshot-pos,0x3f0f96c010a8,10663
snapshot-pos,0x1db253e32580,10665
snapshot-pos,0x3f0f96c010c8,10678
snapshot-pos,0x1db253e325b8,10680
snapshot-pos,0x3f0f96c010e0,10697
snapshot-pos,0x3f0f96c01278,10718
snapshot-pos,0x3f0f96c01568,10731
snapshot-pos,0x3f0f96c015b0,10763
snapshot-pos,0x3f0f96c015f8,10795
snapshot-pos,0x3f0f96c01640,10851
snapshot-pos,0x3f0f96c01688,10883
snapshot-pos,0x3f0f96c016d0,10915
snapshot-pos,0x3f0f96c01718,10947
snapshot-pos,0x3f0f96c01760,10979
snapshot-pos,0x3f0f96c017a8,11023
snapshot-pos,0x3f0f96c017f0,11067
snapshot-pos,0x3f0f96c01838,11111
snapshot-pos,0x3f0f96c01880,11143
snapshot-pos,0x3f0f96c018c8,11187
snapshot-pos,0x3f0f96c01910,11231
snapshot-pos,0x3f0f96c01958,11275
snapshot-pos,0x3f0f96c019a0,11307
snapshot-pos,0x3f0f96c019e8,11339
snapshot-pos,0x3f0f96c01a30,11371
snapshot-pos,0x3f0f96c01a78,11403
snapshot-pos,0x3f0f96c01ac0,11459
snapshot-pos,0x3f0f96c01b08,11491
snapshot-pos,0x3f0f96c01b50,11523
snapshot-pos,0x3f0f96c01b98,11555
snapshot-pos,0x3f0f96c01be0,11587
snapshot-pos,0x3f0f96c01c28,11619
snapshot-pos,0x3f0f96c01c70,11651
snapshot-pos,0x3f0f96c01cb8,11683
snapshot-pos,0x3f0f96c01d00,11727
snapshot-pos,0x3f0f96c01d48,11759
snapshot-pos,0x3f0f96c01d90,11791
snapshot-pos,0x3f0f96c01dd8,11823
snapshot-pos,0x3f0f96c01e20,11867
snapshot-pos,0x3f0f96c01e68,11899
snapshot-pos,0x3f0f96c01eb0,11931
snapshot-pos,0x3f0f96c01ef8,12121
snapshot-pos,0x3f0f96c01f28,12142
snapshot-pos,0x32df2dd00710,12226
snapshot-pos,0x3f0f96c01f48,12230
snapshot-pos,0x32df2dd00720,12265
snapshot-pos,0x3f0f96c01f90,12269
snapshot-pos,0x32df2dd00730,12316
snapshot-pos,0x3f0f96c02040,12320
snapshot-pos,0x32df2dd00740,12357
snapshot-pos,0x32df2dd00750,12382
snapshot-pos,0x3f0f96c02088,12386
snapshot-pos,0x3f0f96c020d0,12405
snapshot-pos,0x32df2dd00760,12436
snapshot-pos,0x32df2dd00770,12455
snapshot-pos,0x32df2dd00780,12486
snapshot-pos,0x3f0f96c020f0,12490
snapshot-pos,0x3f0f96c02138,12509
snapshot-pos,0x32df2dd00790,12540
snapshot-pos,0x32df2dd007a0,12595
snapshot-pos,0x3f0f96c02158,12599
snapshot-pos,0x32df2dd007b0,12635
snapshot-pos,0x3f0f96c021a0,12639
snapshot-pos,0x32df2dd007c0,12680
snapshot-pos,0x3f0f96c021e8,12684
snapshot-pos,0x32df2dd007d0,12719
snapshot-pos,0x3f0f96c02230,12723
snapshot-pos,0x3f0f96c02278,12742
snapshot-pos,0x32df2dd007e0,12773
snapshot-pos,0x3f0f96c02298,12777
snapshot-pos,0x3f0f96c022e0,12796
snapshot-pos,0x32df2dd007f0,12845
snapshot-pos,0x32df2dd00800,12864
snapshot-pos,0x3f0f96c02300,12868
snapshot-pos,0x32df2dd00810,12915
snapshot-pos,0x32df2dd00820,12940
snapshot-pos,0x3f0f96c02348,12944
snapshot-pos,0x32df2dd00830,13021
snapshot-pos,0x3f0f96c02390,13025
snapshot-pos,0x32df2dd00840,13061
snapshot-pos,0x32df2dd00850,13080
snapshot-pos,0x32df2dd00860,13099
snapshot-pos,0x3f0f96c023d8,13103
snapshot-pos,0x32df2dd00870,13150
snapshot-pos,0x3f0f96c02420,13154
snapshot-pos,0x32df2dd00880,13195
snapshot-pos,0x32df2dd00890,13214
snapshot-pos,0x3f0f96c02468,13218
snapshot-pos,0x3f0f96c024b0,13238
snapshot-pos,0x3f0f96c024d0,13253
snapshot-pos,0x1db253e325f0,13255
snapshot-pos,0x3f0f96c02508,13272
snapshot-pos,0x3f0f96c02550,13293
snapshot-pos,0x32df2dd008a0,13428
snapshot-pos,0x3f0f96c025a0,13432
snapshot-pos,0x32df2dd008b0,13473
snapshot-pos,0x3f0f96c025e8,13477
snapshot-pos,0x32df2dd008c0,13518
snapshot-pos,0x3f0f96c02630,13522
snapshot-pos,0x3f0f96c02650,13528
snapshot-pos,0x32df2dd008d0,13591
snapshot-pos,0x3f0f96c02688,13595
snapshot-pos,0x32df2dd008e0,13630
snapshot-pos,0x3f0f96c026d0,13634
snapshot-pos,0x32df2dd008f0,13675
snapshot-pos,0x32df2dd00900,13706
snapshot-pos,0x3f0f96c02718,13710
snapshot-pos,0x32df2dd00910,13745
snapshot-pos,0x3f0f96c02760,13749
snapshot-pos,0x32df2dd00920,13785
snapshot-pos,0x32df2dd00930,13810
snapshot-pos,0x3f0f96c027a8,13814
snapshot-pos,0x32df2dd00940,13849
snapshot-pos,0x3f0f96c027f0,13853
snapshot-pos,0x32df2dd00950,13900
snapshot-pos,0x3f0f96c02838,13904
snapshot-pos,0x32df2dd00960,13934
snapshot-pos,0x3f0f96c02858,13938
snapshot-pos,0x32df2dd00970,13973
snapshot-pos,0x3f0f96c028a0,13977
snapshot-pos,0x32df2dd00980,14012
snapshot-pos,0x3f0f96c028e8,14016
snapshot-pos,0x3f0f96c02930,14036
snapshot-pos,0x3f0f96c02950,14051
snapshot-pos,0x1db253e32628,14053
snapshot-pos,0x3f0f96c02968,14070
snapshot-pos,0x3f0f96c02998,14091
snapshot-pos,0x32df2dd00990,14155
snapshot-pos,0x3f0f96c029b8,14159
snapshot-pos,0x3f0f96c02a00,14171
snapshot-pos,0x1db253e32660,14173
snapshot-pos,0x3f0f96c02a38,14186
snapshot-pos,0x1db253e32698,14188
snapshot-pos,0x3f0f96c02a70,14203
snapshot-pos,0x1db253e326d0,14215
snapshot-pos,0x3f0f96c02ab8,14232
snapshot-pos,0x3f0f96c02ae8,14253
snapshot-pos,0x3f0f96c02b08,14295
snapshot-pos,0x3f0f96c02b40,14308
snapshot-pos,0x3f0f96c02b88,14347
snapshot-pos,0x3f0f96c02bd0,14352
snapshot-pos,0x1db253e32708,14382
snapshot-pos,0x3f0f96c02bf8,14399
snapshot-pos,0x3f0f96c02c28,14420
snapshot-pos,0x1db253e32740,14433
snapshot-pos,0x3f0f96c02c48,14450
snapshot-pos,0x3f0f96c02c80,14471
snapshot-pos,0x1db253e32778,14500
snapshot-pos,0x3f0f96c02cb0,14517
snapshot-pos,0x3f0f96c02cf0,14538
snapshot-pos,0x1db253e327b0,14584
snapshot-pos,0x3f0f96c02d30,14601
snapshot-pos,0x3f0f96c02d78,14622
snapshot-pos,0x1db253e327e8,14684
snapshot-pos,0x3f0f96c02dc8,14701
snapshot-pos,0x3f0f96c02e18,14722
snapshot-pos,0x3f0f96c02e78,14961
snapshot-pos,0x3f0f96c02ec0,14982
snapshot-pos,0x3f0f96c02f10,15011
snapshot-pos,0x3f0f96c02f58,15030
snapshot-pos,0x3f0f96c02f78,15129
snapshot-pos,0x3f0f96c02fc8,15150
snapshot-pos,0x3f0f96c03028,15268
snapshot-pos,0x3f0f96c03050,15302
snapshot-pos,0x32df2dd009a0,15382
snapshot-pos,0x3f0f96c03088,15386
snapshot-pos,0x32df2dd009b0,15428
snapshot-pos,0x3f0f96c030d0,15432
snapshot-pos,0x3f0f96c03118,15444
snapshot-pos,0x3f0f96c03150,15448
snapshot-pos,0x3f0f96c03178,15481
snapshot-pos,0x32df2dd009c0,15560
snapshot-pos,0x3f0f96c031b0,15564
snapshot-pos,0x32df2dd009d0,15599
snapshot-pos,0x3f0f96c031f8,15603
snapshot-pos,0x32df2dd009e0,15638
snapshot-pos,0x32df2dd009f0,15657
snapshot-pos,0x32df2dd00a00,15706
snapshot-pos,0x3f0f96c03240,15710
snapshot-pos,0x3f0f96c03288,15729
snapshot-pos,0x32df2dd00a10,15760
snapshot-pos,0x3f0f96c032a8,15764
snapshot-pos,0x32df2dd00a20,15811
snapshot-pos,0x3f0f96c032f0,15815
snapshot-pos,0x3f0f96c03338,15834
snapshot-pos,0x32df2dd00a30,15865
snapshot-pos,0x3f0f96c03358,15869
snapshot-pos,0x3f0f96c033a0,15888
snapshot-pos,0x32df2dd00a40,15925
snapshot-pos,0x3f0f96c033c0,15929
snapshot-pos,0x32df2dd00a50,15961
snapshot-pos,0x3f0f96c033d8,15965
snapshot-pos,0x32df2dd00a60,16018
snapshot-pos,0x32df2dd00a70,16037
snapshot-pos,0x3f0f96c03420,16041
snapshot-pos,0x3f0f96c03468,16060
snapshot-pos,0x32df2dd00a80,16091
snapshot-pos,0x3f0f96c03488,16095
snapshot-pos,0x32df2dd00a90,16131
snapshot-pos,0x3f0f96c034d0,16135
snapshot-pos,0x32df2dd00aa0,16171
snapshot-pos,0x3f0f96c03518,16175
snapshot-pos,0x32df2dd00ab0,16222
snapshot-pos,0x32df2dd00ac0,16241
snapshot-pos,0x3f0f96c03560,16245
snapshot-pos,0x32df2dd00ad0,16287
snapshot-pos,0x3f0f96c035a8,16291
snapshot-pos,0x3f0f96c035f0,16311
snapshot-pos,0x32df2dd00ae0,16342
snapshot-pos,0x3f0f96c03610,16346
snapshot-pos,0x32df2dd00af0,16381
snapshot-pos,0x32df2dd00b00,16400
snapshot-pos,0x32df2dd00b10,16425
snapshot-pos,0x32df2dd00b20,16444
snapshot-pos,0x3f0f96c03658,16448
snapshot-pos,0x32df2dd00b30,16484
snapshot-pos,0x3f0f96c036a0,16488
snapshot-pos,0x3f0f96c036c0,16495
snapshot-pos,0x32df2dd00b40,16537
snapshot-pos,0x3f0f96c036f0,16541
snapshot-pos,0x1db253e32820,16543
snapshot-pos,0x3f0f96c03708,16556
snapshot-pos,0x3f0f96c03740,16560
snapshot-pos,0x3f0f96c03768,16588
snapshot-pos,0x1db253e32858,16600
snapshot-pos,0x3f0f96c037b0,16617
snapshot-pos,0x3f0f96c037e0,16638
snapshot-pos,0x3f0f96c03800,16681
snapshot-pos,0x3f0f96c03838,16720
snapshot-pos,0x3f0f96c03880,16741
snapshot-pos,0x3f0f96c038d0,16787
snapshot-pos,0x3f0f96c038f0,16800
snapshot-pos,0x3f0f96c03938,16817
snapshot-pos,0x3f0f96c03988,16848
snapshot-pos,0x3f0f96c039d0,16881
snapshot-pos,0x3f0f96c03a18,16952
snapshot-pos,0x3f0f96c03a40,16967
snapshot-pos,0x32df2dd00b50,17002
snapshot-pos,0x3f0f96c03a60,17006
snapshot-pos,0x3f0f96c03aa8,17025
snapshot-pos,0x32df2dd00b60,17056
snapshot-pos,0x3f0f96c03ac8,17060
snapshot-pos,0x3f0f96c03b10,17079
snapshot-pos,0x32df2dd00b70,17122
snapshot-pos,0x3f0f96c03b30,17126
snapshot-pos,0x32df2dd00b80,17167
snapshot-pos,0x3f0f96c03b78,17171
snapshot-pos,0x32df2dd00b90,17236
snapshot-pos,0x3f0f96c03bc0,17240
snapshot-pos,0x1db253e32890,17242
snapshot-pos,0x3f0f96c03bd8,17257
snapshot-pos,0x1db253e328c8,17268
snapshot-pos,0x3f0f96c03c20,17307
snapshot-pos,0x3f0f96c03c58,17328
snapshot-pos,0x3f0f96c03c88,17353
snapshot-pos,0x3f0f96c03cd0,17372
snapshot-pos,0x32df2dd00ba0,17459
snapshot-pos,0x3f0f96c03cf0,17463
snapshot-pos,0x32df2dd00bb0,17499
snapshot-pos,0x3f0f96c03d38,17503
snapshot-pos,0x3f0f96c03d80,17522
snapshot-pos,0x32df2dd00bc0,17595
snapshot-pos,0x3f0f96c03da0,17599
snapshot-pos,0x32df2dd00bd0,17658
snapshot-pos,0x32df2dd00be0,17695
snapshot-pos,0x3f0f96c03de8,17699
snapshot-pos,0x3f0f96c03e30,17718
snapshot-pos,0x32df2dd00bf0,17749
snapshot-pos,0x3f0f96c03e50,17753
snapshot-pos,0x32df2dd00c00,17824
snapshot-pos,0x32df2dd00c10,17855
snapshot-pos,0x3f0f96c03e98,17859
snapshot-pos,0x3f0f96c03ee0,17879
snapshot-pos,0x32df2dd00c20,17910
snapshot-pos,0x3f0f96c03f00,17914
snapshot-pos,0x32df2dd00c30,17949
snapshot-pos,0x3f0f96c03f48,17953
snapshot-pos,0x32df2dd00c40,17988
snapshot-pos,0x3f0f96c03f90,17992
snapshot-pos,0x3f0f96c03fd8,18011
snapshot-pos,0x32df2dd00c50,18048
snapshot-pos,0x3f0f96c04040,18052
snapshot-pos,0x32df2dd00c60,18089
snapshot-pos,0x32df2dd00c70,18114
snapshot-pos,0x32df2dd00c80,18144
snapshot-pos,0x3f0f96c04088,18148
snapshot-pos,0x3f0f96c040d0,18167
snapshot-pos,0x32df2dd00c90,18200
snapshot-pos,0x32df2dd00ca0,18219
snapshot-pos,0x3f0f96c040f8,18223
snapshot-pos,0x32df2dd00cb0,18264
snapshot-pos,0x3f0f96c04140,18268
snapshot-pos,0x3f0f96c04188,18288
snapshot-pos,0x32df2dd00cc0,18319
snapshot-pos,0x3f0f96c041a8,18323
snapshot-pos,0x32df2dd00cd0,18360
snapshot-pos,0x32df2dd00ce0,18397
snapshot-pos,0x3f0f96c041c8,18401
snapshot-pos,0x32df2dd00cf0,18448
snapshot-pos,0x3f0f96c04210,18452
snapshot-pos,0x32df2dd00d00,18487
snapshot-pos,0x32df2dd00d10,18506
snapshot-pos,0x3f0f96c04258,18510
snapshot-pos,0x1db253e32900,18512
snapshot-pos,0x3f0f96c042a0,18529
snapshot-pos,0x3f0f96c04318,18550
snapshot-pos,0x3f0f96c043c8,18737
snapshot-pos,0x1db253e32938,18769
snapshot-pos,0x3f0f96c04400,18782
snapshot-pos,0x1db253e32970,18784
snapshot-pos,0x3f0f96c04420,18801
snapshot-pos,0x3f0f96c04480,18822
snapshot-pos,0x3f0f96c04500,18835
snapshot-pos,0x3f0f96c04548,18854
snapshot-pos,0x3f0f96c04568,18882
snapshot-pos,0x3f0f96c045b0,18938
snapshot-pos,0x32df2dd00d20,19076
snapshot-pos,0x3f0f96c045f8,19080
snapshot-pos,0x3f0f96c04640,19099
snapshot-pos,0x32df2dd00d30,19136
snapshot-pos,0x3f0f96c04660,19140
snapshot-pos,0x32df2dd00d40,19194
snapshot-pos,0x3f0f96c046a8,19198
snapshot-pos,0x32df2dd00d50,19235
snapshot-pos,0x3f0f96c046c8,19239
snapshot-pos,0x1db253e329a8,19241
snapshot-pos,0x3f0f96c046e0,19271
snapshot-pos,0x32df2dd00d60,19312
snapshot-pos,0x3f0f96c04710,19316
snapshot-pos,0x32df2dd00d70,19351
snapshot-pos,0x3f0f96c04758,19355
snapshot-pos,0x32df2dd00d80,19396
snapshot-pos,0x3f0f96c047a0,19400
snapshot-pos,0x32df2dd00d90,19435
snapshot-pos,0x3f0f96c047e8,19439
snapshot-pos,0x3f0f96c04808,19446
snapshot-pos,0x32df2dd00da0,19492
snapshot-pos,0x3f0f96c04830,19496
snapshot-pos,0x32df2dd00db0,19531
snapshot-pos,0x3f0f96c04878,19535
snapshot-pos,0x3f0f96c048c0,19554
snapshot-pos,0x32df2dd00dc0,19591
snapshot-pos,0x3f0f96c048e0,19595
snapshot-pos,0x32df2dd00dd0,19630
snapshot-pos,0x3f0f96c04928,19634
snapshot-pos,0x3f0f96c04970,19653
snapshot-pos,0x32df2dd00de0,19684
snapshot-pos,0x3f0f96c04990,19688
snapshot-pos,0x3f0f96c049d8,19707
snapshot-pos,0x32df2dd00df0,19954
snapshot-pos,0x32df2dd00e00,19973
snapshot-pos,0x3f0f96c04d58,19977
snapshot-pos,0x3f0f96c04da0,19996
snapshot-pos,0x32df2dd00e10,20027
snapshot-pos,0x32df2dd00e20,20046
snapshot-pos,0x3f0f96c04dc0,20050
snapshot-pos,0x3f0f96c04e08,20069
snapshot-pos,0x32df2dd00e30,20100
snapshot-pos,0x3f0f96c04e28,20104
snapshot-pos,0x32df2dd00e40,20139
snapshot-pos,0x3f0f96c04e70,20143
snapshot-pos,0x32df2dd00e50,20179
snapshot-pos,0x3f0f96c04eb8,20183
snapshot-pos,0x32df2dd00e60,20219
snapshot-pos,0x32df2dd00e70,20237
snapshot-pos,0x3f0f96c04f00,20241
snapshot-pos,0x32df2dd00e80,20277
snapshot-pos,0x32df2dd00e90,20296
snapshot-pos,0x32df2dd00ea0,20315
snapshot-pos,0x32df2dd00eb0,20370
snapshot-pos,0x3f0f96c04f48,20374
snapshot-pos,0x32df2dd00ec0,20409
snapshot-pos,0x32df2dd00ed0,20434
snapshot-pos,0x3f0f96c04f90,20438
snapshot-pos,0x32df2dd00ee0,20473
snapshot-pos,0x32df2dd00ef0,20498
snapshot-pos,0x3f0f96c04fd8,20502
snapshot-pos,0x32df2dd00f00,20537
snapshot-pos,0x3f0f96c05020,20541
snapshot-pos,0x32df2dd00f10,20576
snapshot-pos,0x3f0f96c05068,20580
snapshot-pos,0x3f0f96c050b0,20600
snapshot-pos,0x32df2dd00f20,20633
snapshot-pos,0x3f0f96c050d8,20637
snapshot-pos,0x32df2dd00f30,20672
snapshot-pos,0x3f0f96c05120,20676
snapshot-pos,0x32df2dd00f40,20729
snapshot-pos,0x3f0f96c05168,20733
snapshot-pos,0x32df2dd00f50,20804
snapshot-pos,0x32df2dd00f60,20841
snapshot-pos,0x32df2dd00f70,20860
snapshot-pos,0x3f0f96c051b0,20864
snapshot-pos,0x32df2dd00f80,20900
snapshot-pos,0x3f0f96c051f8,20904
tick,0x7fc597a2fc0d,0x7fff19045e80,0,0x0,3
snapshot-pos,0x3f0f96c05240,20916
snapshot-pos,0x3f0f96c05278,20920
snapshot-pos,0x3f0f96c052a0,20953
snapshot-pos,0x32df2dd00f90,21008
snapshot-pos,0x3f0f96c052d8,21012
snapshot-pos,0x3f0f96c05320,21031
snapshot-pos,0x32df2dd00fa0,21062
snapshot-pos,0x32df2dd00fb0,21141
snapshot-pos,0x3f0f96c05340,21145
snapshot-pos,0x3f0f96c05388,21164
snapshot-pos,0x32df2dd00fc0,21219
snapshot-pos,0x32df2dd00fd0,21250
snapshot-pos,0x3f0f96c053a8,21254
snapshot-pos,0x32df2dd00fe0,21290
snapshot-pos,0x3f0f96c053f0,21294
snapshot-pos,0x32df2dd00ff0,21365
snapshot-pos,0x3f0f96c05438,21369
snapshot-pos,0x32df2dd01000,21405
snapshot-pos,0x3f0f96c05480,21409
snapshot-pos,0x32df2dd01010,21444
snapshot-pos,0x3f0f96c054c8,21448
snapshot-pos,0x32df2dd01020,21483
snapshot-pos,0x3f0f96c05510,21487
snapshot-pos,0x32df2dd01030,21528
snapshot-pos,0x3f0f96c05558,21532
snapshot-pos,0x32df2dd01040,21567
snapshot-pos,0x3f0f96c055a0,21571
snapshot-pos,0x32df2dd01050,21630
snapshot-pos,0x32df2dd01060,21691
snapshot-pos,0x32df2dd01070,21728
snapshot-pos,0x3f0f96c055e8,21732
snapshot-pos,0x3f0f96c05630,21751
snapshot-pos,0x32df2dd01080,21784
snapshot-pos,0x3f0f96c05658,21788
snapshot-pos,0x32df2dd01090,21823
snapshot-pos,0x32df2dd010a0,21860
snapshot-pos,0x3f0f96c056a0,21864
snapshot-pos,0x32df2dd010b0,21924
snapshot-pos,0x3f0f96c056e8,21928
snapshot-pos,0x32df2dd010c0,21975
snapshot-pos,0x3f0f96c05730,21979
snapshot-pos,0x32df2dd010d0,22014
snapshot-pos,0x32df2dd010e0,22051
snapshot-pos,0x3f0f96c05778,22055
snapshot-pos,0x32df2dd010f0,22114
snapshot-pos,0x3f0f96c057c0,22118
snapshot-pos,0x32df2dd01100,22153
snapshot-pos,0x3f0f96c05808,22157
snapshot-pos,0x32df2dd01110,22204
snapshot-pos,0x32df2dd01120,22223
snapshot-pos,0x3f0f96c05850,22227
snapshot-pos,0x3f0f96c05898,22247
snapshot-pos,0x32df2dd01130,22284
snapshot-pos,0x3f0f96c058b8,22288
snapshot-pos,0x32df2dd01140,22341
snapshot-pos,0x3f0f96c05900,22345
snapshot-pos,0x32df2dd01150,22381
snapshot-pos,0x32df2dd01160,22406
snapshot-pos,0x32df2dd01170,22449
snapshot-pos,0x32df2dd01180,22480
snapshot-pos,0x3f0f96c05948,22484
snapshot-pos,0x3f0f96c05990,22496
snapshot-pos,0x3f0f96c059c8,22500
snapshot-pos,0x3f0f96c059f0,22533
snapshot-pos,0x32df2dd01190,22600
snapshot-pos,0x3f0f96c05a28,22604
snapshot-pos,0x32df2dd011a0,22640
snapshot-pos,0x3f0f96c05a70,22644
snapshot-pos,0x32df2dd011b0,22691
snapshot-pos,0x32df2dd011c0,22710
snapshot-pos,0x3f0f96c05ab8,22714
snapshot-pos,0x32df2dd011d0,22755
snapshot-pos,0x32df2dd011e0,22785
snapshot-pos,0x3f0f96c05b00,22789
snapshot-pos,0x32df2dd011f0,22824
snapshot-pos,0x3f0f96c05b48,22828
snapshot-pos,0x1db253e329e0,22839
snapshot-pos,0x3f0f96c05b90,22852
snapshot-pos,0x1db253e32a18,22854
snapshot-pos,0x32df2dd01200,22936
snapshot-pos,0x3f0f96c05ba8,22940
snapshot-pos,0x32df2dd01210,22975
snapshot-pos,0x32df2dd01220,22994
snapshot-pos,0x3f0f96c05bf0,22998
snapshot-pos,0x3f0f96c05c38,23017
snapshot-pos,0x32df2dd01230,23048
snapshot-pos,0x3f0f96c05c58,23052
snapshot-pos,0x1db253e32a50,23054
snapshot-pos,0x3f0f96c05c80,23071
snapshot-pos,0x3f0f96c05cb8,23092
snapshot-pos,0x32df2dd01240,23183
snapshot-pos,0x3f0f96c05ce8,23187
snapshot-pos,0x1db253e32a88,23199
snapshot-pos,0x3f0f96c05d30,23212
snapshot-pos,0x1db253e32ac0,23214
snapshot-pos,0x3f0f96c05d48,23231
snapshot-pos,0x3f0f96c06040,23252
snapshot-pos,0x3f0f96c06250,23885
snapshot-pos,0x3f0f96c06358,23898
snapshot-pos,0x3f0f96c063a0,23932
snapshot-pos,0x3f0f96c063e8,23958
snapshot-pos,0x3f0f96c06430,23984
snapshot-pos,0x3f0f96c06478,24008
snapshot-pos,0x3f0f96c064c0,24032
snapshot-pos,0x3f0f96c06508,24056
snapshot-pos,0x3f0f96c06550,24080
snapshot-pos,0x3f0f96c06598,24104
snapshot-pos,0x3f0f96c065e0,24127
snapshot-pos,0x3f0f96c06628,24155
snapshot-pos,0x3f0f96c06670,24180
snapshot-pos,0x3f0f96c066b8,24203
snapshot-pos,0x3f0f96c06700,24227
snapshot-pos,0x3f0f96c06748,24253
snapshot-pos,0x3f0f96c06790,24276
snapshot-pos,0x3f0f96c067d8,24300
snapshot-pos,0x3f0f96c06820,24324
snapshot-pos,0x3f0f96c06868,24347
snapshot-pos,0x3f0f96c068b0,24378
snapshot-pos,0x3f0f96c068e0,24399
snapshot-pos,0x32df2dd01250,24461
snapshot-pos,0x3f0f96c06900,24465
snapshot-pos,0x32df2dd01260,24507
snapshot-pos,0x32df2dd01270,24537
snapshot-pos,0x3f0f96c06948,24541
snapshot-pos,0x1db253e32af8,24543
snapshot-pos,0x3f0f96c06978,24556
snapshot-pos,0x1db253e32b30,24558
snapshot-pos,0x3f0f96c06990,24575
snapshot-pos,0x3f0f96c069c0,24596
snapshot-pos,0x3f0f96c069e0,24640
snapshot-pos,0x3f0f96c06a08,24661
snapshot-pos,0x1db253e32b68,24672
snapshot-pos,0x3f0f96c06a50,24725
snapshot-pos,0x32df2dd01280,24782
snapshot-pos,0x32df2dd01290,24801
snapshot-pos,0x32df2dd012a0,24844
snapshot-pos,0x3f0f96c07688,24848
snapshot-pos,0x32df2dd012b0,24882
snapshot-pos,0x32df2dd012c0,24901
snapshot-pos,0x32df2dd012d0,24926
snapshot-pos,0x32df2dd012e0,24945
snapshot-pos,0x32df2dd012f0,24964
snapshot-pos,0x32df2dd01300,24982
snapshot-pos,0x32df2dd01310,25012
snapshot-pos,0x32df2dd01320,25031
snapshot-pos,0x32df2dd01330,25068
snapshot-pos,0x32df2dd01340,25087
snapshot-pos,0x32df2dd01350,25165
snapshot-pos,0x3f0f96c076d0,25169
snapshot-pos,0x1db253e32ba0,25181
snapshot-pos,0x3f0f96c07718,25194
snapshot-pos,0x1db253e32bd8,25196
snapshot-pos,0x3f0f96c07738,25213
snapshot-pos,0x3f0f96c07778,25234
snapshot-pos,0x3f0f96c077b8,25247
snapshot-pos,0x32df2dd01360,25396
snapshot-pos,0x32df2dd01370,25444
snapshot-pos,0x32df2dd01380,25582
snapshot-pos,0x3f0f96c07800,25586
snapshot-pos,0x1db253e32c10,25588
snapshot-pos,0x3f0f96c07848,25605
snapshot-pos,0x3f0f96c078a0,25626
snapshot-pos,0x3f0f96c07910,25683
snapshot-pos,0x1db253e32c48,25760
snapshot-pos,0x3f0f96c07958,25773
snapshot-pos,0x1db253e32c80,25775
snapshot-pos,0x3f0f96c07978,25788
snapshot-pos,0x1db253e32cb8,25790
snapshot-pos,0x3f0f96c07990,25807
snapshot-pos,0x3f0f96c07ad0,25828
snapshot-pos,0x3f0f96c07d10,25841
snapshot-pos,0x3f0f96c07d58,25860
snapshot-pos,0x3f0f96c07d78,25888
snapshot-pos,0x3f0f96c07dc0,25907
snapshot-pos,0x3f0f96c07de0,25971
snapshot-pos,0x3f0f96c07e28,26111
snapshot-pos,0x3f0f96c07e70,26130
snapshot-pos,0x3f0f96c07ec0,26170
snapshot-pos,0x3f0f96c07f08,26189
snapshot-pos,0x3f0f96c07f28,26217
snapshot-pos,0x3f0f96c07f70,26261
snapshot-pos,0x3f0f96c07fb8,26329
snapshot-pos,0x3f0f96c08040,26361
snapshot-pos,0x3f0f96c08088,26407
snapshot-pos,0x3f0f96c080d0,26475
snapshot-pos,0x3f0f96c08118,26519
snapshot-pos,0x3f0f96c08160,26538
snapshot-pos,0x3f0f96c08188,26568
snapshot-pos,0x3f0f96c081d0,26587
snapshot-pos,0x3f0f96c081f0,26752
snapshot-pos,0x3f0f96c08228,26773
snapshot-pos,0x1cf698f7c1c0,26786
snapshot-pos,0x3f0f96c08258,26841
snapshot-pos,0x3f0f96c08288,26862
snapshot-pos,0x32df2dd01390,26941
snapshot-pos,0x3f0f96c082a8,26945
snapshot-pos,0x1db253e32cf0,26957
snapshot-pos,0x3f0f96c082f0,26993
snapshot-pos,0x32df2dd013a0,27024
snapshot-pos,0x3f0f96c08310,27028
snapshot-pos,0x1db253e32d28,27030
snapshot-pos,0x3f0f96c08348,27043
snapshot-pos,0x1db253e32d60,27045
snapshot-pos,0x3f0f96c08360,27062
snapshot-pos,0x3f0f96c08418,27083
snapshot-pos,0x3f0f96c08548,27120
snapshot-pos,0x3f0f96c08590,27188
snapshot-pos,0x3f0f96c085d8,27280
snapshot-pos,0x3f0f96c08620,27336
snapshot-pos,0x3f0f96c08668,27368
snapshot-pos,0x3f0f96c086b0,27483
snapshot-pos,0x1db253e32d98,27495
snapshot-pos,0x3f0f96c086f8,27508
snapshot-pos,0x1db253e32dd0,27510
snapshot-pos,0x3f0f96c08710,27527
snapshot-pos,0x3f0f96c08740,27548
snapshot-pos,0x3f0f96c08760,27587
snapshot-pos,0x3f0f96c08790,27623
snapshot-pos,0x3f0f96c087c8,27662
snapshot-pos,0x3f0f96c08830,27683
snapshot-pos,0x3f0f96c088c0,27863
snapshot-pos,0x32df2dd013b0,27914
snapshot-pos,0x32df2dd013c0,27932
snapshot-pos,0x32df2dd013d0,27975
snapshot-pos,0x3f0f96c088f0,27979
snapshot-pos,0x32df2dd013e0,28038
snapshot-pos,0x3f0f96c08938,28042
snapshot-pos,0x32df2dd013f0,28107
snapshot-pos,0x32df2dd01400,28126
snapshot-pos,0x3f0f96c08980,28130
snapshot-pos,0x3f0f96c089c8,28142
snapshot-pos,0x3f0f96c08a00,28147
snapshot-pos,0x3f0f96c08a28,28180
snapshot-pos,0x32df2dd01410,28325
snapshot-pos,0x32df2dd01420,28343
snapshot-pos,0x32df2dd01430,28366
snapshot-pos,0x32df2dd01440,28427
snapshot-pos,0x32df2dd01450,28476
snapshot-pos,0x32df2dd01460,28495
snapshot-pos,0x3f0f96c08a60,28524
snapshot-pos,0x1db253e32e08,28526
snapshot-pos,0x3f0f96c08a80,28542
snapshot-pos,0x1db253e32e40,28553
snapshot-pos,0x3f0f96c08ac8,28566
snapshot-pos,0x1db253e32e78,28568
snapshot-pos,0x3f0f96c08ae0,28585
snapshot-pos,0x3f0f96c08b10,28606
snapshot-pos,0x32df2dd01470,28716
snapshot-pos,0x3f0f96c08b30,28720
snapshot-pos,0x32df2dd01480,28761
snapshot-pos,0x32df2dd01490,28791
snapshot-pos,0x3f0f96c08b78,28795
snapshot-pos,0x3f0f96c08bc0,28815
snapshot-pos,0x32df2dd014a0,28858
snapshot-pos,0x3f0f96c08be0,28862
snapshot-pos,0x3f0f96c08c28,28881
snapshot-pos,0x32df2dd014b0,28912
snapshot-pos,0x32df2dd014c0,28937
snapshot-pos,0x3f0f96c08c48,28941
snapshot-pos,0x32df2dd014d0,28982
snapshot-pos,0x3f0f96c08c90,28986
snapshot-pos,0x32df2dd014e0,29021
snapshot-pos,0x32df2dd014f0,29046
snapshot-pos,0x32df2dd01500,29071
snapshot-pos,0x3f0f96c08cd8,29075
snapshot-pos,0x32df2dd01510,29110
snapshot-pos,0x32df2dd01520,29129
snapshot-pos,0x3f0f96c08d20,29133
snapshot-pos,0x32df2dd01530,29193
snapshot-pos,0x3f0f96c08d68,29197
snapshot-pos,0x32df2dd01540,29256
snapshot-pos,0x32df2dd01550,29275
snapshot-pos,0x3f0f96c08db0,29279
snapshot-pos,0x32df2dd01560,29321
snapshot-pos,0x3f0f96c08df8,29325
snapshot-pos,0x32df2dd01570,29372
snapshot-pos,0x3f0f96c08e40,29376
snapshot-pos,0x32df2dd01580,29429
snapshot-pos,0x32df2dd01590,29514
snapshot-pos,0x3f0f96c08e88,29518
snapshot-pos,0x32df2dd015a0,29553
snapshot-pos,0x3f0f96c08ed0,29557
snapshot-pos,0x32df2dd015b0,29610
snapshot-pos,0x32df2dd015c0,29635
snapshot-pos,0x3f0f96c08f18,29639
snapshot-pos,0x3f0f96c08f60,29659
snapshot-pos,0x32df2dd015d0,29720
snapshot-pos,0x3f0f96c08fb0,29724
snapshot-pos,0x32df2dd015e0,29784
snapshot-pos,0x3f0f96c08ff8,29788
snapshot-pos,0x32df2dd015f0,29824
snapshot-pos,0x32df2dd01600,29843
snapshot-pos,0x3f0f96c09040,29847
snapshot-pos,0x32df2dd01610,29882
snapshot-pos,0x3f0f96c09088,29886
snapshot-pos,0x32df2dd01620,29933
snapshot-pos,0x3f0f96c090d0,29937
snapshot-pos,0x32df2dd01630,29972
snapshot-pos,0x32df2dd01640,30027
snapshot-pos,0x3f0f96c09118,30031
snapshot-pos,0x3f0f96c09160,30050
snapshot-pos,0x32df2dd01650,30085
snapshot-pos,0x3f0f96c09190,30089
snapshot-pos,0x32df2dd01660,30131
snapshot-pos,0x32df2dd01670,30150
snapshot-pos,0x3f0f96c091d8,30154
snapshot-pos,0x3f0f96c09220,30173
snapshot-pos,0x32df2dd01680,30204
snapshot-pos,0x32df2dd01690,30223
snapshot-pos,0x3f0f96c09240,30227
snapshot-pos,0x32df2dd016a0,30263
snapshot-pos,0x32df2dd016b0,30294
snapshot-pos,0x32df2dd016c0,30343
snapshot-pos,0x3f0f96c09288,30347
snapshot-pos,0x32df2dd016d0,30394
snapshot-pos,0x32df2dd016e0,30413
snapshot-pos,0x32df2dd016f0,30432
snapshot-pos,0x32df2dd01700,30457
snapshot-pos,0x3f0f96c092d0,30461
snapshot-pos,0x3f0f96c09318,30480
snapshot-pos,0x32df2dd01710,30511
snapshot-pos,0x3f0f96c09338,30515
snapshot-pos,0x32df2dd01720,30551
snapshot-pos,0x3f0f96c09380,30555
snapshot-pos,0x32df2dd01730,30590
snapshot-pos,0x32df2dd01740,30609
snapshot-pos,0x3f0f96c093c8,30613
snapshot-pos,0x32df2dd01750,30648
snapshot-pos,0x3f0f96c09410,30652
snapshot-pos,0x32df2dd01760,30687
snapshot-pos,0x32df2dd01770,30706
snapshot-pos,0x3f0f96c09458,30710
snapshot-pos,0x32df2dd01780,30746
snapshot-pos,0x32df2dd01790,30765
snapshot-pos,0x32df2dd017a0,30784
snapshot-pos,0x32df2dd017b0,30815
snapshot-pos,0x32df2dd017c0,30846
snapshot-pos,0x3f0f96c094a0,30850
snapshot-pos,0x32df2dd017d0,30898
snapshot-pos,0x32df2dd017e0,30917
snapshot-pos,0x32df2dd017f0,30935
snapshot-pos,0x3f0f96c094e8,30939
snapshot-pos,0x32df2dd01800,30980
snapshot-pos,0x32df2dd01810,30999
snapshot-pos,0x32df2dd01820,31018
snapshot-pos,0x3f0f96c09530,31022
snapshot-pos,0x32df2dd01830,31057
snapshot-pos,0x3f0f96c09578,31061
snapshot-pos,0x32df2dd01840,31096
snapshot-pos,0x3f0f96c095c0,31100
snapshot-pos,0x3f0f96c09608,31120
snapshot-pos,0x32df2dd01850,31157
snapshot-pos,0x3f0f96c09640,31161
snapshot-pos,0x32df2dd01860,31202
snapshot-pos,0x3f0f96c09688,31206
snapshot-pos,0x32df2dd01870,31265
snapshot-pos,0x3f0f96c096d0,31269
snapshot-pos,0x32df2dd01880,31328
snapshot-pos,0x3f0f96c09718,31332
snapshot-pos,0x3f0f96c09760,31351
snapshot-pos,0x32df2dd01890,31396
snapshot-pos,0x32df2dd018a0,31433
snapshot-pos,0x3f0f96c097a0,31437
snapshot-pos,0x32df2dd018b0,31472
snapshot-pos,0x32df2dd018c0,31515
snapshot-pos,0x3f0f96c097e8,31519
snapshot-pos,0x32df2dd018d0,31555
snapshot-pos,0x3f0f96c09830,31559
snapshot-pos,0x3f0f96c09878,31579
snapshot-pos,0x32df2dd018e0,31610
snapshot-pos,0x3f0f96c09898,31614
snapshot-pos,0x32df2dd018f0,31667
snapshot-pos,0x32df2dd01900,31698
snapshot-pos,0x3f0f96c098e0,31702
snapshot-pos,0x3f0f96c09928,31721
snapshot-pos,0x32df2dd01910,31758
snapshot-pos,0x32df2dd01920,31813
snapshot-pos,0x32df2dd01930,31832
snapshot-pos,0x3f0f96c09948,31836
snapshot-pos,0x32df2dd01940,31863
snapshot-pos,0x32df2dd01950,31882
snapshot-pos,0x3f0f96c09960,31886
snapshot-pos,0x32df2dd01960,31928
snapshot-pos,0x3f0f96c099a8,31932
snapshot-pos,0x32df2dd01970,31973
snapshot-pos,0x3f0f96c099f0,31977
snapshot-pos,0x32df2dd01980,32012
snapshot-pos,0x32df2dd01990,32031
snapshot-pos,0x32df2dd019a0,32050
snapshot-pos,0x3f0f96c09a38,32054
snapshot-pos,0x32df2dd019b0,32101
snapshot-pos,0x32df2dd019c0,32120
snapshot-pos,0x3f0f96c09a80,32124
snapshot-pos,0x32df2dd019d0,32167
snapshot-pos,0x3f0f96c09aa0,32171
snapshot-pos,0x3f0f96c09ae8,32190
snapshot-pos,0x32df2dd019e0,32245
snapshot-pos,0x32df2dd019f0,32270
snapshot-pos,0x32df2dd01a00,32295
snapshot-pos,0x3f0f96c09b08,32299
snapshot-pos,0x32df2dd01a10,32340
snapshot-pos,0x32df2dd01a20,32359
snapshot-pos,0x32df2dd01a30,32384
snapshot-pos,0x3f0f96c09b50,32388
snapshot-pos,0x3f0f96c09b70,32395
snapshot-pos,0x32df2dd01a40,32461
snapshot-pos,0x32df2dd01a50,32480
snapshot-pos,0x3f0f96c09c00,32484
snapshot-pos,0x32df2dd01a60,32537
snapshot-pos,0x3f0f96c09c48,32541
snapshot-pos,0x32df2dd01a70,32594
snapshot-pos,0x32df2dd01a80,32643
snapshot-pos,0x3f0f96c09c90,32647
snapshot-pos,0x32df2dd01a90,32706
snapshot-pos,0x3f0f96c09cd8,32710
snapshot-pos,0x3f0f96c09cf8,32717
snapshot-pos,0x32df2dd01aa0,32759
snapshot-pos,0x3f0f96c09d28,32763
snapshot-pos,0x32df2dd01ab0,32799
snapshot-pos,0x32df2dd01ac0,32824
snapshot-pos,0x32df2dd01ad0,32843
snapshot-pos,0x3f0f96c09d70,32847
snapshot-pos,0x3f0f96c09db8,32858
snapshot-pos,0x1db253e32eb0,32860
snapshot-pos,0x3f0f96c09dd0,32877
snapshot-pos,0x3f0f96c09e30,32898
snapshot-pos,0x3f0f96c09eb0,33049
snapshot-pos,0x32df2dd01ae0,33096
snapshot-pos,0x32df2dd01af0,33115
snapshot-pos,0x3f0f96c09ee8,33119
snapshot-pos,0x32df2dd01b00,33155
snapshot-pos,0x3f0f96c09f30,33159
snapshot-pos,0x32df2dd01b10,33194
snapshot-pos,0x3f0f96c09f78,33198
snapshot-pos,0x3f0f96c09fc0,33217
snapshot-pos,0x32df2dd01b20,33278
snapshot-pos,0x3f0f96c0a040,33282
snapshot-pos,0x32df2dd01b30,33320
snapshot-pos,0x3f0f96c0a088,33324
snapshot-pos,0x3f0f96c0a0d0,33343
snapshot-pos,0x32df2dd01b40,33374
snapshot-pos,0x32df2dd01b50,33393
snapshot-pos,0x32df2dd01b60,33436
snapshot-pos,0x3f0f96c0a0f0,33440
snapshot-pos,0x32df2dd01b70,33487
snapshot-pos,0x3f0f96c0a138,33491
snapshot-pos,0x32df2dd01b80,33533
snapshot-pos,0x3f0f96c0a180,33537
snapshot-pos,0x32df2dd01b90,33584
snapshot-pos,0x3f0f96c0a1c8,33588
snapshot-pos,0x3f0f96c0a210,33608
snapshot-pos,0x32df2dd01ba0,33639
snapshot-pos,0x32df2dd01bb0,33676
snapshot-pos,0x3f0f96c0a230,33680
snapshot-pos,0x32df2dd01bc0,33716
snapshot-pos,0x3f0f96c0a278,33720
snapshot-pos,0x3f0f96c0a2c0,33739
snapshot-pos,0x32df2dd01bd0,33776
snapshot-pos,0x3f0f96c0a2e0,33780
snapshot-pos,0x32df2dd01be0,33833
snapshot-pos,0x3f0f96c0a328,33837
snapshot-pos,0x32df2dd01bf0,33872
snapshot-pos,0x32df2dd01c00,33909
snapshot-pos,0x32df2dd01c10,33970
snapshot-pos,0x32df2dd01c20,33989
snapshot-pos,0x3f0f96c0a370,33993
snapshot-pos,0x32df2dd01c30,34070
snapshot-pos,0x32df2dd01c40,34089
snapshot-pos,0x3f0f96c0a3b8,34093
snapshot-pos,0x3f0f96c0a400,34104
snapshot-pos,0x1db253e32ee8,34106
snapshot-pos,0x3f0f96c0a418,34123
snapshot-pos,0x3f0f96c0a4d8,34144
snapshot-pos,0x3f0f96c0a618,34181
snapshot-pos,0x3f0f96c0a660,34225
snapshot-pos,0x3f0f96c0a6a8,34504
snapshot-pos,0x32df2dd01c50,34565
snapshot-pos,0x32df2dd01c60,34584
tick,0x7fc5979a3320,0x7fff190455c8,0,0x0,3
snapshot-pos,0x32df2dd01c70,34608
snapshot-pos,0x3f0f96c0a6d0,34612
snapshot-pos,0x1db253e32f20,34614
snapshot-pos,0x3f0f96c0a710,34631
snapshot-pos,0x3f0f96c0a760,34652
snapshot-pos,0x32df2dd01c80,34892
snapshot-pos,0x3f0f96c0a7c0,34896
snapshot-pos,0x32df2dd01c90,34938
snapshot-pos,0x3f0f96c0a808,34942
snapshot-pos,0x32df2dd01ca0,34973
snapshot-pos,0x32df2dd01cb0,35016
snapshot-pos,0x3f0f96c0a828,35020
snapshot-pos,0x32df2dd01cc0,35055
snapshot-pos,0x32df2dd01cd0,35080
snapshot-pos,0x32df2dd01ce0,35123
snapshot-pos,0x3f0f96c0a870,35127
snapshot-pos,0x3f0f96c0a8b8,35138
snapshot-pos,0x1db253e32f58,35140
snapshot-pos,0x3f0f96c0a8d0,35157
snapshot-pos,0x3f0f96c0a928,35178
snapshot-pos,0x3f0f96c0a998,35313
snapshot-pos,0x3f0f96c0a9d0,35326
snapshot-pos,0x3f0f96c0aa18,35349
snapshot-pos,0x3f0f96c0aa60,35372
snapshot-pos,0x32df2dd01cf0,35447
snapshot-pos,0x3f0f96c0aaa8,35451
snapshot-pos,0x32df2dd01d00,35499
snapshot-pos,0x32df2dd01d10,35518
snapshot-pos,0x3f0f96c0aaf0,35522
snapshot-pos,0x32df2dd01d20,35575
snapshot-pos,0x32df2dd01d30,35606
snapshot-pos,0x32df2dd01d40,35630
snapshot-pos,0x32df2dd01d50,35649
snapshot-pos,0x32df2dd01d60,35668
snapshot-pos,0x3f0f96c0ab38,35672
snapshot-pos,0x32df2dd01d70,35713
snapshot-pos,0x32df2dd01d80,35768
snapshot-pos,0x3f0f96c0ab80,35772
snapshot-pos,0x3f0f96c0abc8,35791
snapshot-pos,0x32df2dd01d90,35822
snapshot-pos,0x32df2dd01da0,35841
snapshot-pos,0x32df2dd01db0,35860
snapshot-pos,0x3f0f96c0abe8,35864
snapshot-pos,0x1db253e32f90,35866
snapshot-pos,0x3f0f96c0ac18,35883
snapshot-pos,0x3f0f96c0ac58,35904
snapshot-pos,0x32df2dd01dc0,36016
snapshot-pos,0x3f0f96c0ac98,36020
snapshot-pos,0x3f0f96c0ace0,36039
snapshot-pos,0x32df2dd01dd0,36070
snapshot-pos,0x3f0f96c0ad00,36074
snapshot-pos,0x32df2dd01de0,36109
snapshot-pos,0x32df2dd01df0,36128
snapshot-pos,0x32df2dd01e00,36147
snapshot-pos,0x3f0f96c0ad48,36151
snapshot-pos,0x3f0f96c0ad90,36170
snapshot-pos,0x32df2dd01e10,36201
snapshot-pos,0x3f0f96c0adb0,36205
snapshot-pos,0x32df2dd01e20,36247
snapshot-pos,0x3f0f96c0adf8,36251
snapshot-pos,0x32df2dd01e30,36322
snapshot-pos,0x32df2dd01e40,36340
snapshot-pos,0x3f0f96c0ae40,36344
snapshot-pos,0x32df2dd01e50,36433
snapshot-pos,0x3f0f96c0ae88,36437
snapshot-pos,0x32df2dd01e60,36473
snapshot-pos,0x3f0f96c0aed0,36477
snapshot-pos,0x32df2dd01e70,36512
snapshot-pos,0x3f0f96c0af18,36516
snapshot-pos,0x3f0f96c0af60,36536
snapshot-pos,0x32df2dd01e80,36571
snapshot-pos,0x3f0f96c0af90,36575
snapshot-pos,0x32df2dd01e90,36634
snapshot-pos,0x3f0f96c0afd8,36638
snapshot-pos,0x3f0f96c0b020,36866
snapshot-pos,0x3f0f96c0b048,37174
snapshot-pos,0x3f0f96c0b068,37193
snapshot-pos,0x3f0f96c0b0e8,37214
snapshot-pos,0x3f0f96c0b1a8,37409
snapshot-pos,0x3f0f96c0b218,37430
snapshot-pos,0x3f0f96c0b2b8,37489
snapshot-pos,0x3f0f96c0b300,37532
snapshot-pos,0x3f0f96c0b348,37659
snapshot-pos,0x1db253e32fc8,37661
snapshot-pos,0x3f0f96c0b370,37676
snapshot-pos,0x1db253e33000,37687
snapshot-pos,0x3f0f96c0b3b8,37704
snapshot-pos,0x3f0f96c0b3e8,37725
snapshot-pos,0x1db253e33038,37738
snapshot-pos,0x3f0f96c0b408,37755
snapshot-pos,0x3f0f96c0b440,37776
snapshot-pos,0x3f0f96c0b470,37866
snapshot-pos,0x3f0f96c0b4a8,37887
snapshot-pos,0x3f0f96c0b4d8,37958
snapshot-pos,0x1db253e33070,37960
snapshot-pos,0x3f0f96c0b500,37977
snapshot-pos,0x3f0f96c0b538,37998
snapshot-pos,0x3f0f96c0b568,38063
snapshot-pos,0x3f0f96c0b588,38084
snapshot-pos,0x1db253e330a8,38086
snapshot-pos,0x3f0f96c0b5a8,38103
snapshot-pos,0x3f0f96c0b5e8,38124
snapshot-pos,0x3f0f96c0b628,38137
snapshot-pos,0x3f0f96c0b648,38150
snapshot-pos,0x1db253e330e0,38152
snapshot-pos,0x3f0f96c0b690,38169
snapshot-pos,0x3f0f96c0b6e0,38190
snapshot-pos,0x3f0f96c0b740,38284
snapshot-pos,0x3f0f96c0ba78,38572
snapshot-pos,0x1db253e33118,38625
snapshot-pos,0x3f0f96c0ba98,38643
snapshot-pos,0x3f0f96c0bac8,38664
snapshot-pos,0x1db253e33150,38703
snapshot-pos,0x3f0f96c0bae8,38722
snapshot-pos,0x3f0f96c0bb28,38743
snapshot-pos,0x1db253e33188,38820
snapshot-pos,0x3f0f96c0bb68,38837
snapshot-pos,0x3f0f96c0bbb8,38858
snapshot-pos,0x1cf698f7c1d0,38871
snapshot-pos,0x1cf698f7c1e0,38888
snapshot-pos,0x1cf698f7c1f0,38905
snapshot-pos,0x1cf698f7c200,38922
snapshot-pos,0x1cf698f7c210,38939
snapshot-pos,0x1db253e331c0,38980
snapshot-pos,0x3f0f96c0bc18,38997
snapshot-pos,0x3f0f96c0bc68,39018
snapshot-pos,0x3f0f96c0bcc8,39031
snapshot-pos,0x1cf698f7c220,39059
snapshot-pos,0x1cf698f7c230,39076
snapshot-pos,0x1cf698f7c240,39093
snapshot-pos,0x3f0f96c0bce8,39110
snapshot-pos,0x1db253e331f8,39165
snapshot-pos,0x3f0f96c0bd08,39182
snapshot-pos,0x3f0f96c0bd50,39203
snapshot-pos,0x1cf698f7c250,39227
snapshot-pos,0x1cf698f7c260,39244
snapshot-pos,0x1db253e33230,39293
snapshot-pos,0x3f0f96c0bda0,39310
snapshot-pos,0x3f0f96c0bdf0,39331
snapshot-pos,0x1cf698f7c270,39344
snapshot-pos,0x1cf698f7c280,39361
snapshot-pos,0x1cf698f7c290,39378
snapshot-pos,0x1cf698f7c2a0,39395
snapshot-pos,0x1cf698f7c2b0,39412
snapshot-pos,0x1db253e33268,39453
snapshot-pos,0x3f0f96c0be50,39470
snapshot-pos,0x3f0f96c0bea0,39491
snapshot-pos,0x1cf698f7c2c0,39515
snapshot-pos,0x1cf698f7c2d0,39532
snapshot-pos,0x1cf698f7c2e0,39549
snapshot-pos,0x3f0f96c0bf00,39664
snapshot-pos,0x3f0f96c0bf18,39670
snapshot-pos,0x3f0f96c0bf38,39703
snapshot-pos,0x3f0f96c0c040,39716
snapshot-pos,0x3f0f96c0c170,39817
snapshot-pos,0x3f0f96c0c380,39961
snapshot-pos,0x1db253e332a0,39973
snapshot-pos,0x3f0f96c0c3c8,39986
snapshot-pos,0x1db253e332d8,39988
snapshot-pos,0x3f0f96c0c3e0,40005
snapshot-pos,0x3f0f96c0c410,40026
snapshot-pos,0x3f0f96c0c430,40093
snapshot-pos,0x1db253e33310,40105
snapshot-pos,0x3f0f96c0c478,40118
snapshot-pos,0x1db253e33348,40120
snapshot-pos,0x3f0f96c0c490,40137
snapshot-pos,0x3f0f96c0c4c0,40158
snapshot-pos,0x3f0f96c0c4e0,40231
snapshot-pos,0x1db253e33380,40242
snapshot-pos,0x3f0f96c0c528,40255
snapshot-pos,0x1db253e333b8,40257
snapshot-pos,0x3f0f96c0c540,40274
snapshot-pos,0x3f0f96c0c570,40295
snapshot-pos,0x3f0f96c0c590,40377
snapshot-pos,0x3f0f96c0c9b8,40515
snapshot-pos,0x1db253e333f0,40537
snapshot-pos,0x3f0f96c0c9e0,40554
snapshot-pos,0x3f0f96c0ca10,40575
snapshot-pos,0x1db253e33428,40588
snapshot-pos,0x3f0f96c0ca30,40605
snapshot-pos,0x3f0f96c0ca68,40626
snapshot-pos,0x1db253e33460,40655
snapshot-pos,0x3f0f96c0ca98,40672
snapshot-pos,0x3f0f96c0cad8,40693
snapshot-pos,0x3f0f96c0cb18,40834
snapshot-pos,0x1db253e33498,40862
snapshot-pos,0x3f0f96c0cb50,40879
snapshot-pos,0x3f0f96c0cb80,40900
snapshot-pos,0x1db253e334d0,40913
snapshot-pos,0x3f0f96c0cba0,40930
snapshot-pos,0x3f0f96c0cbd8,40951
snapshot-pos,0x1db253e33508,40964
snapshot-pos,0x3f0f96c0cc08,40981
snapshot-pos,0x3f0f96c0cc48,41002
snapshot-pos,0x1db253e33540,41048
snapshot-pos,0x3f0f96c0cc88,41065
snapshot-pos,0x3f0f96c0ccd0,41086
snapshot-pos,0x1db253e33578,41115
snapshot-pos,0x3f0f96c0cd20,41132
snapshot-pos,0x3f0f96c0cd70,41153
snapshot-pos,0x3f0f96c0cdd0,41486
snapshot-pos,0x1db253e335b0,41511
snapshot-pos,0x3f0f96c0ce00,41528
snapshot-pos,0x3f0f96c0ce30,41549
snapshot-pos,0x1db253e335e8,41562
snapshot-pos,0x3f0f96c0ce50,41579
snapshot-pos,0x3f0f96c0ce88,41600
snapshot-pos,0x1db253e33620,41613
snapshot-pos,0x3f0f96c0ceb8,41630
snapshot-pos,0x3f0f96c0cef8,41651
snapshot-pos,0x1db253e33658,41664
snapshot-pos,0x3f0f96c0cf38,41681
snapshot-pos,0x3f0f96c0cf80,41702
snapshot-pos,0x3f0f96c0cfd0,41966
snapshot-pos,0x1db253e33690,41985
snapshot-pos,0x3f0f96c0cff0,42002
snapshot-pos,0x3f0f96c0d020,42023
snapshot-pos,0x1db253e336c8,42036
snapshot-pos,0x3f0f96c0d040,42053
snapshot-pos,0x3f0f96c0d078,42074
code-creation,LazyCompile,0x1f9009ecdd40,588,"Instantiate native apinatives.js:44",0x3f0f96be6318,~
code-creation,Stub,0x1f9009ece040,156,"CompareICStub"
tick,0x6cf840,0x7fff19045530,0,0x281a500,2,0x1f9009ecde55
code-creation,Stub,0x1f9009ece0e0,194,"FastNewContextStub"
code-creation,Stub,0x1f9009ece1c0,111,"BinaryOpStub_BIT_AND_Alloc_Uninitialized"
code-creation,LazyCompile,0x1f9009ece240,1308,"InstantiateFunction native apinatives.js:65",0x3f0f96be63a8,~
code-creation,Stub,0x1f9009ece760,178,"KeyedStoreElementStub"
code-creation,KeyedStoreIC,0x1f9009ece820,98,""
code-creation,KeyedStoreIC,0x1f9009ece820,98,"args_count: 0"
code-creation,Stub,0x1f9009ece8a0,244,"BinaryOpStub_BIT_AND_Alloc_SMI"
code-creation,Stub,0x1f9009ece9a0,106,"ToBooleanStub_Smi"
code-creation,LazyCompile,0x1f9009ecea20,704,"ConfigureTemplateInstance native apinatives.js:105",0x3f0f96be6438,~
code-creation,KeyedLoadIC,0x1f9009ecece0,98,""
code-creation,KeyedLoadIC,0x1f9009ecece0,98,"args_count: 0"
code-creation,CallIC,0x1f9009eced60,149,"InstantiateFunction"
code-creation,LoadIC,0x1f9009ecee00,107,"kApiFunctionCache"
code-creation,LoadIC,0x1f9009ecee00,107,"kApiFunctionCache"
code-creation,CallIC,0x1f9009ecee80,149,"ConfigureTemplateInstance"
code-creation,Stub,0x1f9009ecef20,141,"ToBooleanStub_UndefinedSpecObject"
code-creation,KeyedLoadIC,0x1f9009ecefc0,98,""
code-creation,KeyedLoadIC,0x1f9009ecefc0,98,"args_count: 0"
code-creation,CallIC,0x1f9009ecf040,149,"Instantiate"
tick,0x6864bb,0x7fff19044ed0,0,0x0,2
code-creation,Script,0x1f9009ecf0e0,160,"node.js",0x3f0f96c11a08,
tick,0x6b5fc0,0x7fff19046868,0,0x1f9009eae14e,0,0x1f9009ecf15f
code-creation,Stub,0x1f9009ecf180,218,"FastNewContextStub"
code-creation,Function,0x1f9009ecf260,140," node.js:62",0x3f0f96c11c00,~
code-creation,CallInitialize,0x1f9009ecf300,209,"args_count: 4"
code-creation,Function,0x1f9009ecf3e0,192,"startup.globalVariables.global.process node.js:114",0x3f0f96c11cd8,~
code-creation,Function,0x1f9009ecf4a0,160,"startup.globalVariables.global.process node.js:118",0x3f0f96c11da8,~
code-creation,Function,0x1f9009ecf540,2452,"startup node.js:32",0x3f0f96c11ed0,~
code-creation,Function,0x1f9009ecfee0,252,"errnoException node.js:211",0x3f0f96c12040,~
code-creation,Function,0x1f9009ed0040,1056,"createWritableStdioStream node.js:221",0x3f0f96c12140,~
code-creation,Function,0x1f9009ed0460,252,"NativeModule node.js:476",0x3f0f96c12218,~
code-creation,Function,0x1f9009ed0560,400,"startup.globalVariables node.js:125",0x3f0f96c122e8,~
code-creation,Function,0x1f9009ed0700,216,"startup.globalTimeouts.global.setTimeout node.js:134",0x3f0f96c123c8,~
code-creation,Function,0x1f9009ed07e0,216,"startup.globalTimeouts.global.setInterval node.js:139",0x3f0f96c124a8,~
code-creation,Function,0x1f9009ed08c0,216,"startup.globalTimeouts.global.clearTimeout node.js:144",0x3f0f96c12588,~
code-creation,Function,0x1f9009ed09a0,216,"startup.globalTimeouts.global.clearInterval node.js:149",0x3f0f96c12668,~
code-creation,Function,0x1f9009ed0a80,416,"startup.globalTimeouts node.js:133",0x3f0f96c12738,~
code-creation,Function,0x1f9009ed0c20,144,"startup.globalConsole node.js:156",0x3f0f96c12808,~
code-creation,Function,0x1f9009ed0cc0,172,"startup.globalConsole node.js:155",0x3f0f96c128d8,~
code-creation,Function,0x1f9009ed0d80,224,"startup.lazyConstants node.js:164",0x3f0f96c129a8,~
code-creation,Function,0x1f9009ed0e60,212,"startup.processAssert.process.assert node.js:176",0x3f0f96c12a88,~
code-creation,Function,0x1f9009ed0f40,236,"startup.processAssert node.js:172",0x3f0f96c12b58,~
code-creation,Stub,0x1f9009ed1040,198,"FastNewContextStub"
code-creation,KeyedCallInitialize,0x1f9009ed1120,159,"args_count: 0"
code-creation,Function,0x1f9009ed11c0,1128,"startup.processNextTick.process._tickCallback node.js:184",0x3f0f96c12c58,~
code-creation,Function,0x1f9009ed1640,156,"startup.processNextTick.process.nextTick node.js:205",0x3f0f96c12d30,~
code-creation,Function,0x1f9009ed16e0,336,"startup.processNextTick node.js:181",0x3f0f96c12e10,~
code-creation,Function,0x1f9009ed1840,168,"startup.processStdio.process.__defineGetter__.stdout.end.stdout.destroy.stdout.destroySoon node.js:283",0x3f0f96c12ee0,~
code-creation,Function,0x1f9009ed1900,356," node.js:280",0x3f0f96c12fb0,~
code-creation,Function,0x1f9009ed1a80,168,"startup.processStdio.process.__defineGetter__.stderr.end.stderr.destroy.stderr.destroySoon node.js:292",0x3f0f96c13080,~
code-creation,Function,0x1f9009ed1b40,360," node.js:289",0x3f0f96c13150,~
code-creation,Function,0x1f9009ed2040,1016,"startup.processStdio.process.openStdin node.js:298",0x3f0f96c13248,~
code-creation,Function,0x1f9009ed2440,172,"startup.processStdio.process.openStdin node.js:332",0x3f0f96c13318,~
code-creation,Function,0x1f9009ed2500,372,"startup.processStdio node.js:277",0x3f0f96c13418,~
code-creation,Function,0x1f9009ed2680,216,"startup.processKillAndExit.process.exit node.js:339",0x3f0f96c134f0,~
code-creation,Function,0x1f9009ed2760,524,"startup.processKillAndExit.process.kill node.js:344",0x3f0f96c135d8,~
code-creation,Function,0x1f9009ed2980,232,"startup.processKillAndExit node.js:338",0x3f0f96c136a8,~
code-creation,Function,0x1f9009ed2a80,248,"isSignal node.js:372",0x3f0f96c13780,~
code-creation,Function,0x1f9009ed2b80,140,"startup.processSignalHandlers.process.on.process.addListener.w.callback node.js:383",0x3f0f96c13850,~
code-creation,Function,0x1f9009ed2c20,776,"startup.processSignalHandlers.process.on.process.addListener node.js:377",0x3f0f96c13970,~
code-creation,Function,0x1f9009ed2f40,548,"startup.processSignalHandlers.process.removeListener node.js:395",0x3f0f96c13a80,~
code-creation,Function,0x1f9009ed3180,636,"startup.processSignalHandlers node.js:365",0x3f0f96c13b90,~
code-creation,Function,0x1f9009ed3400,452,"startup.processChannel node.js:410",0x3f0f96c13c70,~
code-creation,Function,0x1f9009ed35e0,568,"startup.removedMethods node.js:440",0x3f0f96c13d50,~
code-creation,Function,0x1f9009ed3820,164,"startup._removedMethod node.js:448",0x3f0f96c13e20,~
code-creation,Function,0x1f9009ed38e0,200,"startup._removedMethod node.js:447",0x3f0f96c13f08,~
code-creation,Function,0x1f9009ed39c0,540,"startup.resolveArgv0 node.js:453",0x3f0f96c0bf50,~
code-creation,Function,0x1f9009ed3be0,520,"NativeModule.require node.js:486",0x3f0f96bebf20,~
code-creation,Function,0x1f9009ed3e00,140,"NativeModule.getCached node.js:510",0x3f0f96be1e90,~
code-creation,Function,0x1f9009ed3ea0,188,"NativeModule.exists node.js:514",0x3f0f96be1f20,~
code-creation,Function,0x1f9009ed3f60,140,"NativeModule.getSource node.js:518",0x3f0f96c05e70,~
code-creation,Function,0x1f9009ed4040,188,"NativeModule.wrap node.js:522",0x3f0f96c05f00,~
code-creation,Stub,0x1f9009ed4100,218,"CallFunctionStub_Args4"
code-creation,Function,0x1f9009ed41e0,372,"NativeModule.compile node.js:531",0x3f0f96bf7c28,~
code-creation,Function,0x1f9009ed4360,156,"NativeModule.cache node.js:541",0x3f0f96bf7cb8,~
code-creation,LazyCompile,0x1f9009ed4400,2308," node.js:27",0x3f0f96c11930,~
code-creation,Stub,0x1f9009ed4d20,145,"ToBooleanStub_UndefinedString"
code-creation,KeyedLoadIC,0x1f9009ed4dc0,98,""
code-creation,KeyedLoadIC,0x1f9009ed4dc0,98,"args_count: 0"
code-creation,Stub,0x1f9009ed4e40,169,"BinaryOpStub_ADD_OverwriteLeft_BothStrings"
code-creation,Script,0x1f9009ed4f00,160,"events.js",0x3f0f96bd9dd0,
code-creation,Function,0x1f9009ed4fa0,104,"EventEmitter events.js:24",0x3f0f96bd9f20,~
code-creation,Function,0x1f9009ed5020,220,"EventEmitter.setMaxListeners events.js:34",0x3f0f96bd4c98,~
code-creation,Stub,0x1f9009ed5100,299,"InstanceofStub"
code-creation,CallInitialize,0x1f9009ed5240,209,"args_count: 3"
code-creation,Function,0x1f9009ed5320,1908,"EventEmitter.emit events.js:40",0x3f0f96bd4da0,~
code-creation,Function,0x1f9009ed5aa0,1348,"EventEmitter.addListener events.js:99",0x3f0f96bd4e88,~
code-creation,Function,0x1f9009ed6040,192,"g events.js:152",0x3f0f96bd4f60,~
code-creation,Function,0x1f9009ed6100,584,"EventEmitter.once events.js:146",0x3f0f96bd5080,~
code-creation,Function,0x1f9009ed6360,1152,"EventEmitter.removeListener events.js:163",0x3f0f96bd5180,~
code-creation,Function,0x1f9009ed67e0,484,"EventEmitter.removeAllListeners events.js:197",0x3f0f96bd5270,~
code-creation,Function,0x1f9009ed69e0,564,"EventEmitter.listeners events.js:208",0x3f0f96bd5348,~
code-creation,LazyCompile,0x1f9009ed6c20,956," events.js:1",0x3f0f96bd9cf8,~
code-creation,StoreIC,0x1f9009ed6fe0,164,"loaded"
code-creation,StoreIC,0x1f9009ed6fe0,164,"loaded"
code-creation,CallIC,0x1f9009ed70a0,125,"getCached"
code-creation,LoadIC,0x1f9009ed7120,106,"_cache"
code-creation,LoadIC,0x1f9009ed7120,106,"_cache"
code-creation,CallIC,0x1f9009ed71a0,125,"exists"
code-creation,LoadIC,0x1f9009ed7220,106,"_source"
code-creation,LoadIC,0x1f9009ed7220,106,"_source"
code-creation,CallIC,0x1f9009ed72a0,148,"ToString"
code-creation,LoadIC,0x1f9009ed7340,106,"moduleLoadList"
code-creation,LoadIC,0x1f9009ed7340,106,"moduleLoadList"
code-creation,CallIC,0x1f9009ed73c0,386,"push"
code-creation,StoreIC,0x1f9009ed7560,178,"filename"
code-creation,StoreIC,0x1f9009ed7560,178,"filename"
code-creation,StoreIC,0x1f9009ed7620,178,"id"
code-creation,StoreIC,0x1f9009ed7620,178,"id"
code-creation,StoreIC,0x1f9009ed76e0,178,"exports"
code-creation,StoreIC,0x1f9009ed76e0,178,"exports"
code-creation,StoreIC,0x1f9009ed77a0,178,"loaded"
code-creation,StoreIC,0x1f9009ed77a0,178,"loaded"
code-creation,CallIC,0x1f9009ed7860,152,"compile"
code-creation,LoadIC,0x1f9009ed7900,102,"id"
code-creation,LoadIC,0x1f9009ed7900,102,"id"
code-creation,CallIC,0x1f9009ed7980,125,"getSource"
code-creation,CallIC,0x1f9009ed7a00,125,"wrap"
code-creation,LoadIC,0x1f9009ed7a80,106,"wrapper"
code-creation,LoadIC,0x1f9009ed7a80,106,"wrapper"
code-creation,LoadIC,0x1f9009ed7b00,102,"filename"
code-creation,LoadIC,0x1f9009ed7b00,102,"filename"
tick,0x6ccbc0,0x7fff19044480,1,0x536740,2,0x1f9009ed42bd,0x1f9009ed3da9,0x1f9009ed06b6,0x1f9009ecf683,0x1f9009ed4ce4
code-creation,Script,0x1f9009ed7b80,160,"buffer.js",0x3f0f96bd58e8,
code-creation,LoadIC,0x1f9009ed7c20,102,"exports"
code-creation,LoadIC,0x1f9009ed7c20,102,"exports"
code-creation,LoadIC,0x1f9009ed7ca0,108,"require"
code-creation,LoadIC,0x1f9009ed7ca0,108,"require"
tick,0x7fc597a8b317,0x7fff19044c68,0,0x6d8a4c,2,0x1f9009ed431a,0x1f9009ed3da9,0x1f9009ed06b6,0x1f9009ecf683,0x1f9009ed4ce4
tick,0x6692f0,0x7fff190451a8,0,0x6775a7,2,0x1f9009ed431a,0x1f9009ed3da9,0x1f9009ed06b6,0x1f9009ecf683,0x1f9009ed4ce4
code-creation,Stub,0x1f9009ed7d20,331,"FastNewContextStub"
code-creation,Function,0x1f9009ed7e80,240,"toHex buffer.js:28",0x3f0f96bd5a08,~
code-creation,Stub,0x1f9009ed7f80,100,"UnaryOpStub_BIT_NOT_Alloc_Uninitialized"
code-creation,Stub,0x1f9009ed8040,100,"UnaryOpStub_BIT_NOT_Overwrite_Uninitialized"
code-creation,Function,0x1f9009ed80c0,224,"coerce buffer.js:199",0x3f0f96bd5ae0,~
code-creation,Function,0x1f9009ed81a0,1696,"Buffer buffer.js:210",0x3f0f96bd5bd8,~
code-creation,Function,0x1f9009ed8840,424,"isArrayIsh buffer.js:269",0x3f0f96bd5cb0,~
code-creation,Function,0x1f9009ed8a00,252,"allocPool buffer.js:281",0x3f0f96bd5d80,~
code-creation,Stub,0x1f9009ed8b00,111,"BinaryOpStub_SHL_Alloc_Uninitialized"
code-creation,Stub,0x1f9009ed8b80,111,"BinaryOpStub_BIT_OR_OverwriteRight_Uninitialized"
code-creation,Function,0x1f9009ed8c00,692,"readUInt16 buffer.js:563",0x3f0f96bd5e78,~
code-creation,Stub,0x1f9009ed8ec0,111,"BinaryOpStub_SHR_OverwriteLeft_Uninitialized"
code-creation,Function,0x1f9009ed8f40,936,"readUInt32 buffer.js:597",0x3f0f96bd5f70,~
code-creation,Stub,0x1f9009ed9300,111,"BinaryOpStub_MUL_OverwriteLeft_Uninitialized"
code-creation,Function,0x1f9009ed9380,724,"readInt16 buffer.js:700",0x3f0f96be6a10,~
code-creation,Function,0x1f9009ed9660,724,"readInt32 buffer.js:731",0x3f0f96be6b08,~
code-creation,CallInitialize,0x1f9009ed9940,209,"args_count: 5"
code-creation,Function,0x1f9009ed9a20,412,"readFloat buffer.js:762",0x3f0f96be6bf8,~
code-creation,Function,0x1f9009ed9bc0,416,"readDouble buffer.js:783",0x3f0f96be6ce8,~
code-creation,Function,0x1f9009ed9d60,492,"verifuint buffer.js:814",0x3f0f96be6dc8,~
code-creation,Function,0x1f9009eda040,952,"writeUInt16 buffer.js:845",0x3f0f96be6ec0,~
code-creation,Stub,0x1f9009eda400,111,"BinaryOpStub_SHR_Alloc_Uninitialized"
code-creation,Stub,0x1f9009eda480,111,"BinaryOpStub_BIT_AND_OverwriteLeft_Uninitialized"
code-creation,Function,0x1f9009eda500,1208,"writeUInt32 buffer.js:879",0x3f0f96be6fb8,~
code-creation,Function,0x1f9009eda9c0,492,"verifsint buffer.js:958",0x3f0f96be70a0,~
code-creation,Function,0x1f9009edabc0,368,"verifIEEE754 buffer.js:969",0x3f0f96be7188,~
code-creation,Stub,0x1f9009edad40,218,"CallFunctionStub_Args5"
code-creation,Function,0x1f9009edae20,912,"writeInt16 buffer.js:1001",0x3f0f96be7280,~
code-creation,Function,0x1f9009edb1c0,916,"writeInt32 buffer.js:1033",0x3f0f96be7378,~
code-creation,CallInitialize,0x1f9009edb560,209,"args_count: 6"
code-creation,Function,0x1f9009edb640,852,"writeFloat buffer.js:1065",0x3f0f96be7470,~
code-creation,Function,0x1f9009edb9a0,856,"writeDouble buffer.js:1094",0x3f0f96be7568,~
code-creation,Function,0x1f9009edbd00,580,"SlowBuffer.inspect buffer.js:34",0x3f0f96be7650,~
code-creation,Function,0x1f9009edc040,548,"SlowBuffer.hexSlice buffer.js:48",0x3f0f96be7748,~
code-creation,Function,0x1f9009edc280,960,"SlowBuffer.toString buffer.js:63",0x3f0f96be7830,~
code-creation,Stub,0x1f9009edc640,111,"BinaryOpStub_MOD_Alloc_Uninitialized"
code-creation,Stub,0x1f9009edc6c0,111,"BinaryOpStub_DIV_Alloc_Uninitialized"
code-creation,Function,0x1f9009edc740,952,"SlowBuffer.hexWrite buffer.js:100",0x3f0f96be7938,~
tick,0x783ec3,0x7fff19045bf0,0,0x7fff19045e90,2,0x1f9009ed431a,0x1f9009ed3da9,0x1f9009ed06b6,0x1f9009ecf683,0x1f9009ed4ce4
code-creation,Function,0x1f9009edcb00,1116,"SlowBuffer.write buffer.js:130",0x3f0f96be7a38,~
code-creation,Function,0x1f9009edcf60,472,"SlowBuffer.slice buffer.js:185",0x3f0f96be7b18,~
code-creation,Function,0x1f9009edd140,260,"isBuffer buffer.js:288",0x3f0f96be7bf0,~
code-creation,Function,0x1f9009edd260,676,"inspect buffer.js:294",0x3f0f96be7cd8,~
code-creation,Function,0x1f9009edd520,356,"get buffer.js:310",0x3f0f96be7db0,~
code-creation,Function,0x1f9009edd6a0,360,"set buffer.js:316",0x3f0f96be7e90,~
code-creation,Function,0x1f9009edd820,1492,"Buffer.write buffer.js:323",0x3f0f96bfa310,~
code-creation,Function,0x1f9009ede040,1292,"Buffer.toString buffer.js:390",0x3f0f96bfa3a0,~
code-creation,Function,0x1f9009ede560,1096,"fill buffer.js:440",0x3f0f96bfa488,~
code-creation,Function,0x1f9009ede9c0,1312,"Buffer.copy buffer.js:473",0x3f0f96bfa580,~
code-creation,Function,0x1f9009edeee0,516,"Buffer.slice buffer.js:514",0x3f0f96bfa660,~
code-creation,Function,0x1f9009edf100,144,"Buffer.utf8Slice buffer.js:525",0x3f0f96bfa740,~
code-creation,Function,0x1f9009edf1a0,144,"Buffer.binarySlice buffer.js:529",0x3f0f96bfa820,~
code-creation,Function,0x1f9009edf240,144,"Buffer.asciiSlice buffer.js:533",0x3f0f96bfa900,~
code-creation,Function,0x1f9009edf2e0,144,"Buffer.utf8Write buffer.js:537",0x3f0f96bfa9e0,~
code-creation,Function,0x1f9009edf380,144,"Buffer.binaryWrite buffer.js:541",0x3f0f96bfaac0,~
code-creation,Function,0x1f9009edf420,144,"Buffer.asciiWrite buffer.js:545",0x3f0f96bfaba0,~
code-creation,Function,0x1f9009edf4c0,440,"Buffer.readUInt8 buffer.js:549",0x3f0f96bfac88,~
code-creation,Function,0x1f9009edf680,156,"Buffer.readUInt16LE buffer.js:589",0x3f0f96bfad68,~
code-creation,Function,0x1f9009edf720,156,"Buffer.readUInt16BE buffer.js:593",0x3f0f96bfae48,~
code-creation,Function,0x1f9009edf7c0,156,"Buffer.readUInt32LE buffer.js:626",0x3f0f96bfaf28,~
code-creation,Function,0x1f9009edf860,156,"Buffer.readUInt32BE buffer.js:630",0x3f0f96bfb008,~
code-creation,Function,0x1f9009edf900,556,"Buffer.readInt8 buffer.js:680",0x3f0f96bfb0f8,~
code-creation,Function,0x1f9009edfb40,156,"Buffer.readInt16LE buffer.js:723",0x3f0f96bfb1d8,~
code-creation,Function,0x1f9009edfbe0,156,"Buffer.readInt16BE buffer.js:727",0x3f0f96bfb2b8,~
code-creation,Function,0x1f9009edfc80,156,"Buffer.readInt32LE buffer.js:754",0x3f0f96bfb398,~
code-creation,Function,0x1f9009edfd20,156,"Buffer.readInt32BE buffer.js:758",0x3f0f96bfb478,~
code-creation,Function,0x1f9009edfdc0,156,"Buffer.readFloatLE buffer.js:775",0x3f0f96bfb558,~
code-creation,Function,0x1f9009edfe60,156,"Buffer.readFloatBE buffer.js:779",0x3f0f96bfb638,~
code-creation,Function,0x1f9009edff00,156,"Buffer.readDoubleLE buffer.js:796",0x3f0f96bfb718,~
code-creation,Function,0x1f9009ee0040,156,"Buffer.readDoubleBE buffer.js:800",0x3f0f96bfb7f8,~
code-creation,Function,0x1f9009ee00e0,680,"Buffer.writeUInt8 buffer.js:826",0x3f0f96bfb8e8,~
code-creation,Function,0x1f9009ee03a0,152,"Buffer.writeUInt16LE buffer.js:871",0x3f0f96bfb9d0,~
code-creation,Function,0x1f9009ee0440,152,"Buffer.writeUInt16BE buffer.js:875",0x3f0f96bfbab8,~
code-creation,Function,0x1f9009ee04e0,152,"Buffer.writeUInt32LE buffer.js:909",0x3f0f96bfbba0,~
code-creation,Function,0x1f9009ee0580,152,"Buffer.writeUInt32BE buffer.js:913",0x3f0f96bfbc88,~
code-creation,Function,0x1f9009ee0620,808,"Buffer.writeInt8 buffer.js:978",0x3f0f96bfbd78,~
code-creation,Function,0x1f9009ee0960,152,"Buffer.writeInt16LE buffer.js:1025",0x3f0f96bfbe60,~
code-creation,Function,0x1f9009ee0a00,152,"Buffer.writeInt16BE buffer.js:1029",0x3f0f96bfbf48,~
code-creation,Function,0x1f9009ee0aa0,156,"Buffer.writeInt32LE buffer.js:1057",0x12824e0b4098,~
code-creation,Function,0x1f9009ee0b40,156,"Buffer.writeInt32BE buffer.js:1061",0x12824e0b4180,~
code-creation,Function,0x1f9009ee0be0,152,"Buffer.writeFloatLE buffer.js:1086",0x12824e0b4268,~
code-creation,Function,0x1f9009ee0c80,152,"Buffer.writeFloatBE buffer.js:1090",0x12824e0b4350,~
code-creation,Function,0x1f9009ee0d20,156,"Buffer.writeDoubleLE buffer.js:1115",0x12824e0b4438,~
code-creation,Function,0x1f9009ee0dc0,156,"Buffer.writeDoubleBE buffer.js:1119",0x12824e0b4520,~
tick,0x78311f,0x7fff19045f68,0,0x705654,2,0x1f9009ed431a,0x1f9009ed3da9,0x1f9009ed06b6,0x1f9009ecf683,0x1f9009ed4ce4
code-creation,LazyCompile,0x1f9009eee040,8520," buffer.js:1",0x3f0f96bd5810,~
code-creation,CallIC,0x1f9009ee0e60,167,"Instantiate"
code-creation,Script,0x1f9009ee0f20,160,"assert.js",0x12824e0b6118,
tick,0x6d254a,0x7fff19045410,0,0x2,2,0x1f9009ed431a,0x1f9009ed3da9,0x1f9009eee853,0x1f9009ed431a,0x1f9009ed3da9,0x1f9009ed06b6,0x1f9009ecf683,0x1f9009ed4ce4
code-creation,Stub,0x1f9009ee0fc0,233,"FastNewContextStub"
code-creation,Function,0x1f9009ee10c0,468,"replacer assert.js:54",0x12824e0b6320,~
code-creation,Function,0x1f9009ee12a0,264,"truncate assert.js:67",0x12824e0b6400,~
code-creation,Function,0x1f9009ee13c0,316,"fail assert.js:103",0x12824e0b64f8,~
code-creation,Function,0x1f9009ee1500,200,"ok assert.js:123",0x12824e0b65d8,~
code-creation,Function,0x1f9009ee15e0,1080,"_deepEqual assert.js:154",0x12824e0b66c0,~
code-creation,Function,0x1f9009ee1a20,228,"isUndefinedOrNull assert.js:189",0x12824e0b6798,~
code-creation,Function,0x1f9009ee1b20,228,"isArguments assert.js:193",0x12824e0b6870,~
code-creation,Function,0x1f9009ee2040,1372,"objEquiv assert.js:197",0x12824e0b6970,~
code-creation,Function,0x1f9009ee25a0,440,"expectedException assert.js:267",0x12824e0b6a50,~
code-creation,Function,0x1f9009ee2760,956,"_throws assert.js:283",0x12824e0b6b50,~
code-creation,Function,0x1f9009ee2b20,472,"AssertionError assert.js:40",0x12824e0b6c30,~
code-creation,Stub,0x1f9009ee2d00,240,"FastCloneShallowArrayStub"
code-creation,Function,0x1f9009ee2e00,1000,"assert.AssertionError.toString assert.js:75",0x12824e0b6d00,~
code-creation,Function,0x1f9009ee3200,248,"equal assert.js:132",0x12824e0b6de8,~
code-creation,Function,0x1f9009ee3300,248,"notEqual assert.js:139",0x12824e0b6ed0,~
code-creation,Function,0x1f9009ee3400,256,"deepEqual assert.js:148",0x12824e0b6fb8,~
code-creation,Function,0x1f9009ee3500,256,"notDeepEqual assert.js:243",0x12824e0b70a0,~
code-creation,Function,0x1f9009ee3600,248,"strictEqual assert.js:252",0x12824e0b7188,~
code-creation,Function,0x1f9009ee3700,248,"notStrictEqual assert.js:261",0x12824e0b7270,~
code-creation,Function,0x1f9009ee3800,448,"assert.throws assert.js:317",0x12824e0b7390,~
code-creation,Function,0x1f9009ee39c0,448,"assert.doesNotThrow assert.js:322",0x12824e0b74b0,~
code-creation,Function,0x1f9009ee3b80,144,"assert.ifError assert.js:326",0x12824e0b7588,~
code-creation,LazyCompile,0x1f9009ee4040,2088," assert.js:1",0x12824e0b6040,~
code-creation,LazyCompile,0x1f9009ee4880,372,"NativeModule.compile node.js:531",0x3f0f96bf7c28,~
tick,0x75e770,0x7fff19045d58,0,0x75627b,2,0x1f9009ed3da9,0x1f9009ee43d3,0x1f9009ed431a,0x1f9009ed3da9,0x1f9009eee853,0x1f9009ed431a,0x1f9009ed3da9,0x1f9009ed06b6,0x1f9009ecf683,0x1f9009ed4ce4
code-creation,Stub,0x1f9009ee4a00,290,"CallFunctionStub_Args3_Implicit"
code-creation,Stub,0x1f9009ee4b40,290,"CallFunctionStub_Args4_Implicit"
code-creation,LazyCompile,0x1f9009ee4c80,711,"NativeModule.compile node.js:531",0x3f0f96bf7c28,*
tick,0x6d8961,0x7fff19043850,1,0x536740,2,0x1f9009ee4dc2,0x1f9009ed3da9,0x1f9009ee43d3,0x1f9009ed431a,0x1f9009ed3da9,0x1f9009eee853,0x1f9009ed431a,0x1f9009ed3da9,0x1f9009ed06b6,0x1f9009ecf683,0x1f9009ed4ce4
code-creation,Script,0x1f9009ee4f60,160,"util.js",0x12824e0b83d8,
tick,0x6cfe64,0x7fff19044840,0,0x1,2,0x1f9009ee4e2b,0x1f9009ed3da9,0x1f9009ee43d3,0x1f9009ed431a,0x1f9009ed3da9,0x1f9009eee853,0x1f9009ed431a,0x1f9009ed3da9,0x1f9009ed06b6,0x1f9009ecf683,0x1f9009ed4ce4
code-creation,Function,0x1f9009ee5000,344,"inspect util.js:94",0x12824e0b8b98,~
code-creation,Function,0x1f9009ee5160,308,"stylizeWithColor util.js:136",0x12824e0b8c80,~
code-creation,Function,0x1f9009ee52a0,108,"stylizeNoColor util.js:148",0x12824e0b8d60,~
code-creation,Stub,0x1f9009ee5320,200,"FastNewContextStub"
code-creation,Stub,0x1f9009ee5400,218,"CallFunctionStub_Args6"
code-creation,Function,0x1f9009ee54e0,164," util.js:238",0x12824e0b8e38,~
code-creation,Function,0x1f9009ee6040,3212,"formatValue util.js:153",0x12824e0b8fa8,~
code-creation,Function,0x1f9009ee6ce0,1428,"formatPrimitive util.js:249",0x12824e0b9090,~
code-creation,Function,0x1f9009ee7280,216,"formatError util.js:273",0x12824e0b9168,~
code-creation,Function,0x1f9009ee7360,448," util.js:288",0x12824e0b9240,~
code-creation,Function,0x1f9009ee7520,992,"formatArray util.js:278",0x12824e0b9398,~
code-creation,Function,0x1f9009ee7900,128," util.js:325",0x12824e0b9470,~
code-creation,Function,0x1f9009ee7980,128,"str util.js:329",0x12824e0b9548,~
code-creation,Function,0x1f9009ee8040,2828,"formatProperty util.js:298",0x12824e0b9658,~
code-creation,Function,0x1f9009ee8b60,400," util.js:360",0x12824e0b9738,~
code-creation,Function,0x1f9009ee8d00,612,"reduceToSingleString util.js:358",0x12824e0b9838,~
code-creation,Function,0x1f9009ee8f80,356,"isArray util.js:381",0x12824e0b9910,~
code-creation,Function,0x1f9009ee9100,288,"isRegExp util.js:388",0x12824e0b99e8,~
code-creation,Function,0x1f9009ee9220,288,"isDate util.js:394",0x12824e0b9ac0,~
code-creation,Function,0x1f9009ee9340,288,"isError util.js:400",0x12824e0b9b98,~
code-creation,Function,0x1f9009ee9460,176,"objectToString util.js:406",0x12824e0b9c70,~
code-creation,Function,0x1f9009ee9520,244,"pad util.js:425",0x12824e0b9d48,~
code-creation,Function,0x1f9009ee9620,884,"timestamp util.js:434",0x12824e0b9e28,~
code-creation,Function,0x1f9009ee99a0,768," util.js:35",0x12824e0b9f00,~
code-creation,Function,0x1f9009ebd940,1560,"exports.format util.js:23",0x12824e0ba0e8,~
code-creation,Function,0x1f9009ee9ca0,380,"exports.print util.js:57",0x12824e0ba1d0,~
code-creation,Function,0x1f9009ee9e20,396,"exports.puts util.js:64",0x12824e0ba2b8,~
code-creation,Function,0x1f9009ebff20,200,"exports.debug util.js:71",0x12824e0ba390,~
code-creation,Function,0x1f9009edde00,476,"exports.error util.js:76",0x12824e0ba490,~
code-creation,Function,0x1f9009ebbd80,520,"exports.p util.js:413",0x12824e0ba578,~
code-creation,Function,0x1f9009ec1e80,204,"exports.log util.js:443",0x12824e0ba650,~
code-creation,Function,0x1f9009ec7d60,372,"exports.exec util.js:449",0x12824e0ba728,~
code-creation,Function,0x1f9009ec7ee0,260,"call util.js:462",0x12824e0ba810,~
code-creation,Function,0x1f9009ed1cc0,200,"exports.pump util.js:469",0x12824e0ba8e8,~
code-creation,Function,0x1f9009eb5f80,128,"exports.pump util.js:473",0x12824e0ba9b8,~
code-creation,Function,0x1f9009ec1f60,128,"exports.pump util.js:477",0x12824e0baa88,~
code-creation,Function,0x1f9009ebdf60,128,"exports.pump util.js:481",0x12824e0bab58,~
code-creation,Function,0x1f9009edbf60,156,"exports.pump util.js:485",0x12824e0bac30,~
code-creation,Function,0x1f9009ed9f60,156,"exports.pump util.js:490",0x12824e0bad08,~
code-creation,Function,0x1f9009ee3c20,804,"exports.pump util.js:459",0x12824e0bae40,~
code-creation,Function,0x1f9009ed1da0,332,"exports.inherits util.js:510",0x12824e0baf20,~
code-creation,LazyCompile,0x1f9009eb8d20,3236," util.js:1",0x12824e0b8300,~
tick,0x64ab74,0x7fff19046408,0,0x6ad516,0,0x1f9009eb940b,0x1f9009ee4e2b,0x1f9009ed3da9,0x1f9009ee43d3,0x1f9009ed431a,0x1f9009ed3da9,0x1f9009eee853,0x1f9009ed431a,0x1f9009ed3da9,0x1f9009ed06b6,0x1f9009ecf683,0x1f9009ed4ce4
code-creation,LazyCompile,0x1f9009ee55a0,2004,"DoConstructRegExp native regexp.js:35",0x3f0f96bdfa10,~
code-creation,LazyCompile,0x1f9009ee7a00,1524,"charAt native string.js:64",0x3f0f96bea040,~
code-creation,CallIC,0x1f9009ee3f60,152,"cache"
code-creation,StoreIC,0x1f9009eb1f40,164,"exports"
code-creation,StoreIC,0x1f9009eb1f40,164,"exports"
code-creation,StoreIC,0x1f9009ed1f00,164,"value"
code-creation,StoreIC,0x1f9009ed1f00,164,"value"
code-creation,StoreIC,0x1f9009ee5d80,164,"constructor"
code-creation,StoreIC,0x1f9009ee5d80,164,"constructor"
code-creation,LazyCompile,0x1f9009ee1c20,492,"create native v8natives.js:959",0x3f0f96bdd3a8,~
code-creation,LazyCompile,0x1f9009ec3ba0,564,"defineProperties native v8natives.js:1023",0x3f0f96bdd558,~
code-creation,LazyCompile,0x1f9009eb99e0,588,"GetOwnEnumerablePropertyNames native v8natives.js:1011",0x3f0f96bdd4c8,~
code-creation,KeyedLoadIC,0x1f9009ecbf60,98,""
code-creation,KeyedLoadIC,0x1f9009ecbf60,98,"args_count: 0"
code-creation,StoreIC,0x1f9009ee5e40,164,"enumerable_"
code-creation,StoreIC,0x1f9009ee5e40,164,"enumerable_"
code-creation,StoreIC,0x1f9009ee5f00,164,"hasEnumerable_"
code-creation,StoreIC,0x1f9009ee5f00,164,"hasEnumerable_"
code-creation,StoreIC,0x1f9009ee1e20,164,"configurable_"
code-creation,StoreIC,0x1f9009ee1e20,164,"configurable_"
code-creation,StoreIC,0x1f9009ee1ee0,164,"hasConfigurable_"
code-creation,StoreIC,0x1f9009ee1ee0,164,"hasConfigurable_"
code-creation,LazyCompile,0x1f9009ec3de0,168,"$Array.enumerable_ native v8natives.js:528",0x3f0f96bde650,~
code-creation,StoreIC,0x1f9009ec3ea0,164,"value_"
code-creation,StoreIC,0x1f9009ec3ea0,164,"value_"
code-creation,StoreIC,0x1f9009eb9c40,164,"hasValue_"
code-creation,StoreIC,0x1f9009eb9c40,164,"hasValue_"
code-creation,LazyCompile,0x1f9009eb9d00,168,"$Array.configurable_ native v8natives.js:548",0x3f0f96bdeb88,~
code-creation,StoreIC,0x1f9009eb9dc0,164,"writable_"
code-creation,StoreIC,0x1f9009eb9dc0,164,"writable_"
code-creation,StoreIC,0x1f9009eb9e80,164,"hasWritable_"
code-creation,StoreIC,0x1f9009eb9e80,164,"hasWritable_"
code-creation,LazyCompile,0x1f9009ec3f60,140,"$Array.configurable_ native v8natives.js:552",0x3f0f96bdeca8,~
code-creation,LoadIC,0x1f9009eb9f40,102,"hasValue_"
code-creation,LoadIC,0x1f9009eb9f40,102,"hasValue_"
code-creation,LazyCompile,0x1f9009ec5880,140,"$Array.enumerable_ native v8natives.js:532",0x3f0f96bde748,~
tick,0x655416,0x7fff19046520,0,0x335e620637e1,0,0x1f9009eefa58,0x1f9009ed431a,0x1f9009ed3da9,0x1f9009ed06b6,0x1f9009ecf683,0x1f9009ed4ce4
code-creation,LazyCompile,0x1f9009ec5920,704,"__defineGetter__ native v8natives.js:296",0x3f0f96bdc160,~
code-creation,StoreIC,0x1f9009ec5be0,178,"value_"
code-creation,StoreIC,0x1f9009ec5be0,178,"value_"
code-creation,StoreIC,0x1f9009ec5ca0,178,"hasValue_"
code-creation,StoreIC,0x1f9009ec5ca0,178,"hasValue_"
code-creation,StoreIC,0x1f9009ec5d60,178,"writable_"
code-creation,StoreIC,0x1f9009ec5d60,178,"writable_"
code-creation,StoreIC,0x1f9009ec5e20,178,"hasWritable_"
code-creation,StoreIC,0x1f9009ec5e20,178,"hasWritable_"
code-creation,StoreIC,0x1f9009ec5ee0,178,"enumerable_"
code-creation,StoreIC,0x1f9009ec5ee0,178,"enumerable_"
code-creation,StoreIC,0x1f9009f02040,178,"hasEnumerable_"
code-creation,StoreIC,0x1f9009f02040,178,"hasEnumerable_"
code-creation,StoreIC,0x1f9009f02100,178,"configurable_"
code-creation,StoreIC,0x1f9009f02100,178,"configurable_"
code-creation,StoreIC,0x1f9009f021c0,178,"hasConfigurable_"
code-creation,StoreIC,0x1f9009f021c0,178,"hasConfigurable_"
code-creation,StoreIC,0x1f9009f02280,178,"get_"
code-creation,StoreIC,0x1f9009f02280,178,"get_"
code-creation,StoreIC,0x1f9009f02340,178,"hasGetter_"
code-creation,StoreIC,0x1f9009f02340,178,"hasGetter_"
code-creation,StoreIC,0x1f9009f02400,178,"set_"
code-creation,StoreIC,0x1f9009f02400,178,"set_"
code-creation,StoreIC,0x1f9009f024c0,178,"hasSetter_"
code-creation,StoreIC,0x1f9009f024c0,178,"hasSetter_"
code-creation,StoreIC,0x1f9009f02580,164,"get_"
code-creation,StoreIC,0x1f9009f02580,164,"get_"
code-creation,StoreIC,0x1f9009f02640,164,"hasGetter_"
code-creation,StoreIC,0x1f9009f02640,164,"hasGetter_"
code-creation,CallIC,0x1f9009f02700,149,"ToObject"
code-creation,CallIC,0x1f9009f027a0,149,"ToString"
code-creation,CallIC,0x1f9009f02840,149,"ConvertDescriptorArrayToDescriptor"
code-creation,CallIC,0x1f9009f028e0,203,"hasEnumerable"
code-creation,LoadIC,0x1f9009f029c0,102,"hasEnumerable_"
code-creation,LoadIC,0x1f9009f029c0,102,"hasEnumerable_"
code-creation,CallIC,0x1f9009f02a40,203,"isEnumerable"
code-creation,LoadIC,0x1f9009f02b20,102,"enumerable_"
code-creation,LoadIC,0x1f9009f02b20,102,"enumerable_"
code-creation,CallIC,0x1f9009f02ba0,203,"hasConfigurable"
code-creation,LoadIC,0x1f9009f02c80,102,"hasConfigurable_"
code-creation,LoadIC,0x1f9009f02c80,102,"hasConfigurable_"
code-creation,CallIC,0x1f9009f02d00,200,"isConfigurable"
code-creation,LoadIC,0x1f9009f02de0,102,"configurable_"
code-creation,LoadIC,0x1f9009f02de0,102,"configurable_"
code-creation,CallIC,0x1f9009f02e60,149,"IsDataDescriptor"
code-creation,CallIC,0x1f9009f02f00,200,"hasValue"
code-creation,LoadIC,0x1f9009f02fe0,102,"hasWritable_"
code-creation,LoadIC,0x1f9009f02fe0,102,"hasWritable_"
code-creation,CallIC,0x1f9009f03060,203,"hasGetter"
code-creation,LoadIC,0x1f9009f03140,102,"hasGetter_"
code-creation,LoadIC,0x1f9009f03140,102,"hasGetter_"
code-creation,CallIC,0x1f9009f031c0,149,"IsAccessorDescriptor"
code-creation,LoadIC,0x1f9009f03260,102,"hasSetter_"
code-creation,LoadIC,0x1f9009f03260,102,"hasSetter_"
code-creation,LoadIC,0x1f9009f032e0,107,"PropertyDescriptor"
code-creation,LoadIC,0x1f9009f032e0,107,"PropertyDescriptor"
code-creation,CallIC,0x1f9009f03360,203,"setGet"
code-creation,CallIC,0x1f9009f03440,206,"setEnumerable"
code-creation,CallIC,0x1f9009f03520,203,"setConfigurable"
code-creation,CallMiss,0x1f9009f03600,211,"args_count: 4"
code-creation,CallIC,0x1f9009f036e0,149,"DefineOwnProperty"
code-creation,CallIC,0x1f9009f03780,200,"hasWritable"
code-creation,CallIC,0x1f9009f03860,149,"IsGenericDescriptor"
code-creation,CallIC,0x1f9009f03900,203,"getGet"
code-creation,LoadIC,0x1f9009f039e0,102,"get_"
code-creation,LoadIC,0x1f9009f039e0,102,"get_"
code-creation,CallIC,0x1f9009f03a60,200,"hasSetter"
tick,0x7fc5979d1e4c,0x7fff19045b20,0,0x7fff19046190,0,0x1f9009ebb3a5,0x1f9009ec5bc7,0x1f9009ed258f,0x1f9009ecf705,0x1f9009ed4ce4
code-creation,LoadIC,0x1f9009f03b40,106,"_removedProcessMethods"
code-creation,LoadIC,0x1f9009f03b40,106,"_removedProcessMethods"
code-creation,KeyedLoadIC,0x1f9009f03bc0,122,"debug"
code-creation,KeyedLoadIC,0x1f9009f03bc0,122,"debug"
code-creation,CallIC,0x1f9009f03c40,125,"_removedMethod"
code-creation,KeyedLoadIC,0x1f9009f03cc0,122,"error"
code-creation,KeyedLoadIC,0x1f9009f03cc0,122,"error"
code-creation,Stub,0x1f9009f03d40,343,"CompareICStub"
code-creation,LazyCompile,0x1f9009f04040,820,"indexOf native string.js:115",0x3f0f96bea1f0,~
code-creation,Stub,0x1f9009f04380,173,"CompareICStub"
code-creation,Stub,0x1f9009f04440,343,"CompareICStub"
code-creation,Stub,0x1f9009f045a0,134,"ToBooleanStub_String"
tick,0x676d6c,0x7fff19043660,1,0x536740,2,0x1f9009ed42bd,0x1f9009ed3da9,0x1f9009ecfaec,0x1f9009ed4ce4
code-creation,Script,0x1f9009f04640,160,"path.js",0x12824e0bd270,
code-creation,Stub,0x1f9009f046e0,210,"FastNewContextStub"
code-creation,Function,0x1f9009f047c0,776,"normalizeArray path.js:30",0x12824e0bd410,~
code-creation,Function,0x1f9009f04ae0,812,"splitPath path.js:68",0x12824e0bd520,~
code-creation,Function,0x1f9009f04e20,148,"f path.js:142",0x12824e0bd5f8,~
code-creation,Function,0x1f9009f04ec0,2056,"exports.resolve path.js:83",0x12824e0bd728,~
code-creation,Function,0x1f9009f056e0,148," path.js:163",0x12824e0bd800,~
code-creation,Function,0x1f9009f05780,1236,"exports.normalize path.js:154",0x12824e0bd908,~
code-creation,Function,0x1f9009f05c60,192,"f path.js:179",0x12824e0bd9e0,~
code-creation,Function,0x1f9009f06040,868,"exports.join path.js:178",0x12824e0bdad0,~
tick,0x7fc597a2fc0d,0x7fff19045c60,0,0x0,2,0x1f9009ed431a,0x1f9009ed3da9,0x1f9009ecfaec,0x1f9009ed4ce4
code-creation,Function,0x1f9009f063c0,732,"trim path.js:210",0x12824e0bdbb8,~
code-creation,Function,0x1f9009f066a0,1208,"exports.relative path.js:202",0x12824e0bdcf0,~
code-creation,Function,0x1f9009f06b60,640,"splitPath path.js:260",0x12824e0bddd0,~
code-creation,Function,0x1f9009f06de0,148," path.js:287",0x12824e0bdea8,~
code-creation,Function,0x1f9009f06e80,1012,"exports.resolve path.js:267",0x12824e0be040,~
code-creation,Function,0x1f9009f07280,148," path.js:301",0x12824e0be118,~
code-creation,Function,0x1f9009f07320,624,"exports.normalize path.js:296",0x12824e0be200,~
code-creation,Function,0x1f9009f075a0,192,"exports.join path.js:319",0x12824e0be2e0,~
code-creation,Function,0x1f9009f07660,304,"exports.join path.js:317",0x12824e0be3c0,~
code-creation,Function,0x1f9009f077a0,732,"trim path.js:331",0x12824e0be4a8,~
code-creation,Function,0x1f9009f07a80,1024,"exports.relative path.js:327",0x12824e0be5c0,~
code-creation,Function,0x1f9009f07e80,320,"exports.dirname path.js:371",0x12824e0be6b0,~
code-creation,Function,0x1f9009f08040,344,"exports.basename path.js:390",0x12824e0be798,~
code-creation,Function,0x1f9009f081a0,144,"exports.extname path.js:400",0x12824e0be870,~
code-creation,Function,0x1f9009f08240,200,"exports.exists path.js:406",0x12824e0be950,~
code-creation,Function,0x1f9009f08320,272,"exports.exists path.js:405",0x12824e0bea40,~
code-creation,Function,0x1f9009f08440,304,"exports.existsSync path.js:412",0x12824e0beb18,~
code-creation,Function,0x1f9009f08580,744,"exports._makeLong path.js:423",0x12824e0bebf8,~
code-creation,Function,0x1f9009f08880,108,"exports._makeLong path.js:438",0x12824e0becd0,~
code-creation,LazyCompile,0x1f9009f08900,2392," path.js:1",0x12824e0bd198,~
code-creation,CallIC,0x1f9009f09260,149,"DoConstructRegExp"
code-creation,Stub,0x1f9009f09300,267,"BinaryOpStub_SUB_Alloc_SMI"
code-creation,KeyedLoadIC,0x1f9009f09420,98,""
code-creation,KeyedLoadIC,0x1f9009f09420,98,"args_count: 0"
code-creation,CallIC,0x1f9009f094a0,756,"charAt"
code-creation,Stub,0x1f9009f097a0,1039,"SubStringStub"
code-creation,LazyCompile,0x1f9009f0a040,3868,"split native string.js:564",0x3f0f96bea940,~
code-creation,Stub,0x1f9009f0af60,212,"CompareICStub"
code-creation,LazyCompile,0x1f9009f0b040,1200,"filter native array.js:990",0x3f0f96bf1ec0,~
code-creation,LazyCompile,0x1f9009f0b500,240,"ToUint32 native runtime.js:596",0x3f0f96be5cb0,~
code-creation,Stub,0x1f9009f0b600,178,"KeyedStoreElementStub"
code-creation,KeyedStoreIC,0x1f9009f0b6c0,98,""
code-creation,KeyedStoreIC,0x1f9009f0b6c0,98,"args_count: 0"
tick,0x6cc6b5,0x7fff19045c40,0,0x281de80,2,0x1f9009f071ee,0x1f9009ecfb42,0x1f9009ed4ce4
code-creation,LazyCompile,0x1f9009f0b740,1340,"join native array.js:399",0x3f0f96bf1890,~
code-creation,LazyCompile,0x1f9009f0bc80,711,"NativeModule.compile node.js:531",0x3f0f96bf7c28,*
tick,0x641413,0x7fff19043798,1,0x536740,2,0x1f9009f0bdc2,0x1f9009ed3da9,0x1f9009ecfbe4,0x1f9009ed4ce4
code-creation,Script,0x1f9009f0bf60,160,"module.js",0x12824e0bf868,
code-creation,Stub,0x1f9009f0c040,268,"FastNewContextStub"
code-creation,Function,0x1f9009f0c160,180,"hasOwnProperty module.js:32",0x12824e0bfb58,~
tick,0x7fc5979d1e50,0x7fff19045560,0,0x7fff19045bd0,2,0x1f9009f0be2b,0x1f9009ed3da9,0x1f9009ecfbe4,0x1f9009ed4ce4
code-creation,Function,0x1f9009f0c220,344,"Module module.js:37",0x12824e0bfc38,~
code-creation,Function,0x1f9009f0c380,284,"statPath module.js:86",0x12824e0bfd18,~
code-creation,Function,0x1f9009f0c4a0,796,"readPackage module.js:97",0x12824e0bfe18,~
code-creation,Function,0x1f9009f0c7c0,456,"tryPackage module.js:120",0x12824e0bff08,~
code-creation,Function,0x1f9009f0c9a0,300,"tryFile module.js:136",0x12824e0c0040,~
code-creation,Function,0x1f9009f0cae0,392,"tryExtensions module.js:146",0x12824e0c0138,~
code-creation,Function,0x1f9009f0cc80,204,"stripBOM module.js:436",0x12824e0c0210,~
code-creation,Function,0x1f9009f0cd60,104,"Module._debug module.js:63",0x12824e0c02e0,~
code-creation,Function,0x1f9009f0cde0,144,"Module._debug module.js:65",0x12824e0c03b8,~
code-creation,Function,0x1f9009f0ce80,1192,"Module._findPath module.js:158",0x12824e0c04d8,~
code-creation,Function,0x1f9009f0d340,1248,"Module._nodeModulePaths module.js:206",0x12824e0c05e0,~
code-creation,Function,0x1f9009f0e040,2188,"Module._resolveLookupPaths module.js:230",0x12824e0c06f0,~
code-creation,Function,0x1f9009f0e8e0,1188,"Module._load module.js:274",0x12824e0c0810,~
code-creation,Function,0x1f9009f0eda0,892,"Module._resolveFilename module.js:319",0x12824e0c0910,~
code-creation,KeyedCallInitialize,0x1f9009f0f120,162,"args_count: 2"
code-creation,Function,0x1f9009f0f1e0,680,"Module.load module.js:341",0x12824e0c09f0,~
code-creation,Function,0x1f9009f0f4a0,136,"Module.require module.js:356",0x12824e0c0ac8,~
code-creation,Function,0x1f9009f0f540,132,"require module.js:367",0x12824e0c0ba0,~
code-creation,Function,0x1f9009f0f5e0,152,"Module._compile.require.resolve module.js:371",0x12824e0c0c78,~
code-creation,Function,0x1f9009f0f680,204,"Module._compile.Object.defineProperty.get module.js:375",0x12824e0c0d48,~
code-creation,Function,0x1f9009f0f760,188,"Module._compile.require.registerExtension module.js:385",0x12824e0c0e18,~
code-creation,Stub,0x1f9009f0f820,248,"FastCloneShallowArrayStub"
tick,0x723669,0x7fff19045cd8,0,0x64b954,2,0x1f9009f0be2b,0x1f9009ed3da9,0x1f9009ecfbe4,0x1f9009ed4ce4
code-creation,Function,0x1f9009f10040,2892,"Module._compile module.js:362",0x12824e0c0f40,~
code-creation,Function,0x1f9009f10ba0,236,"Module._extensions..js module.js:448",0x12824e0c1028,~
code-creation,Function,0x1f9009f10ca0,272,"Module._extensions..json module.js:455",0x12824e0c1110,~
code-creation,Function,0x1f9009f10dc0,164,"Module._extensions..node module.js:462",0x12824e0c11f0,~
code-creation,Function,0x1f9009f10e80,196,"Module.runMain module.js:468",0x12824e0c12c0,~
tick,0x784230,0x7fff19046048,0,0x73122d,2,0x1f9009f0be2b,0x1f9009ed3da9,0x1f9009ecfbe4,0x1f9009ed4ce4
code-creation,Function,0x1f9009f10f60,1000,"Module._initPaths module.js:473",0x12824e0c13a0,~
code-creation,Function,0x1f9009f11360,156,"Module.requireRepl module.js:493",0x12824e0c1470,~
code-creation,LazyCompile,0x1f9009f12040,3804," module.js:1",0x12824e0bf790,~
code-creation,Stub,0x1f9009f12f20,422,"CompareStub_LT"
code-creation,Stub,0x1f9009f130e0,212,"CompareICStub"
code-creation,KeyedLoadIC,0x1f9009f131c0,126,"path"
code-creation,KeyedLoadIC,0x1f9009f131c0,126,"path"
code-creation,CallPreMonomorphic,0x1f9009f13240,209,"args_count: 5"
code-creation,LoadIC,0x1f9009f13320,102,"length"
code-creation,LoadIC,0x1f9009f13320,102,"length"
tick,0x7fc5979a3839,0x7fff19045af0,0,0xffffffffffffffff,0,0x1f9009f06f1a,0x1f9009f1103d,0x1f9009f12ee4,0x1f9009f0be2b,0x1f9009ed3da9,0x1f9009ecfbe4,0x1f9009ed4ce4
code-creation,CallIC,0x1f9009f133a0,220,"split"
code-creation,CallIC,0x1f9009f13480,202,"filter"
code-creation,CallIC,0x1f9009f13560,149,"ToUint32"
code-creation,CallIC,0x1f9009f13600,190,"splice"
code-creation,CallIC,0x1f9009f136c0,185,"join"
code-creation,StoreIC,0x1f9009f13780,168,"globalPaths"
code-creation,StoreIC,0x1f9009f13780,168,"globalPaths"
code-creation,Stub,0x1f9009f13840,936,"StringDictionaryNegativeLookupStub"
code-creation,KeyedCallMegamorphic,0x1f9009f14040,1311,"args_count: 0"
code-creation,CallPreMonomorphic,0x1f9009f14560,209,"args_count: 3"
code-creation,Stub,0x1f9009f14640,110,"ToBooleanStub_Null"
code-creation,LazyCompile,0x1f9009f146c0,1508,"substring native string.js:661",0x3f0f96bea9d0,~
code-creation,LazyCompile,0x1f9009f14cc0,2196,"stringify native json.js:307",0x3f0f96bdaf28,~
code-creation,LazyCompile,0x1f9009f15560,1916,"BasicJSONSerialize native json.js:273",0x3f0f96bdae98,~
code-creation,LoadIC,0x1f9009f15ce0,107,"InternalArray"
code-creation,LoadIC,0x1f9009f15ce0,107,"InternalArray"
code-creation,CallIC,0x1f9009f15d60,149,"BasicJSONSerialize"
code-creation,LazyCompile,0x1f9009f16040,2524,"BasicSerializeArray native json.js:181",0x3f0f96bdad78,~
code-creation,CallIC,0x1f9009f16a20,356,"push"
tick,0x6cf855,0x7fff19044c40,1,0x536740,2,0x1f9009f0bdc2,0x1f9009ed3da9,0x1f9009f0cefe,0x1f9009f0efd6,0x1f9009f0e9d3,0x1f9009f10f2b,0x1f9009ed1541
tick,0x6ccaae,0x7fff19043a30,1,0x536740,2,0x1f9009f0bdc2,0x1f9009ed3da9,0x1f9009f0cefe,0x1f9009f0efd6,0x1f9009f0e9d3,0x1f9009f10f2b,0x1f9009ed1541
tick,0x676aca,0x7fff190436c0,1,0x536740,2,0x1f9009f0bdc2,0x1f9009ed3da9,0x1f9009f0cefe,0x1f9009f0efd6,0x1f9009f0e9d3,0x1f9009f10f2b,0x1f9009ed1541
code-creation,Script,0x1f9009f16ba0,160,"fs.js",0x12824e0c2088,
tick,0x6589d8,0x7fff19043e70,0,0x280c7d0,2,0x1f9009f0be2b,0x1f9009ed3da9,0x1f9009f0cefe,0x1f9009f0efd6,0x1f9009f0e9d3,0x1f9009f10f2b,0x1f9009ed1541
tick,0x66a85e,0x7fff19044e20,0,0x7fff190461b0,2,0x1f9009f0be2b,0x1f9009ed3da9,0x1f9009f0cefe,0x1f9009f0efd6,0x1f9009f0e9d3,0x1f9009f10f2b,0x1f9009ed1541
code-creation,Stub,0x1f9009f16c40,324,"FastNewContextStub"
code-creation,Stub,0x1f9009f16da0,111,"BinaryOpStub_BIT_OR_OverwriteLeft_Uninitialized"
code-creation,Function,0x1f9009f16e20,928,"stringToFlags fs.js:161",0x12824e0c2260,~
code-creation,Function,0x1f9009f171c0,104,"noop fs.js:190",0x12824e0c2330,~
code-creation,Function,0x1f9009f17240,332,"modeNum fs.js:203",0x12824e0c2410,~
code-creation,Function,0x1f9009f173a0,328,"toUnixTimestamp fs.js:547",0x12824e0c24e8,~
code-creation,Function,0x1f9009f17500,160,"fs.writeFile.encoding fs.js:589",0x12824e0c25b8,~
code-creation,Function,0x1f9009f175a0,448,"fs.writeFile.encoding fs.js:587",0x12824e0c26a8,~
code-creation,Function,0x1f9009f17760,524,"writeAll fs.js:585",0x12824e0c27f0,~
code-creation,Function,0x1f9009f17980,252,"errnoException fs.js:632",0x12824e0c28d8,~
code-creation,Function,0x1f9009f17a80,268,"_handle.onchange fs.js:648",0x12824e0c29c0,~
code-creation,Function,0x1f9009f17ba0,372,"FSWatcher fs.js:643",0x12824e0c2aa8,~
code-creation,Function,0x1f9009f17d20,148,"_handle.onchange fs.js:704",0x12824e0c2b88,~
code-creation,Function,0x1f9009f17dc0,140,"_handle.onstop fs.js:708",0x12824e0c2c58,~
code-creation,Function,0x1f9009f17e60,396,"StatWatcher fs.js:700",0x12824e0c2d38,~
code-creation,Function,0x1f9009f18040,232,"inStatWatchers fs.js:726",0x12824e0c2e10,~
code-creation,Function,0x1f9009f18140,244,"allocNewPool fs.js:1002",0x12824e0c2ee0,~
code-creation,Function,0x1f9009f18240,184,"SyncWriteStream fs.js:1380",0x12824e0c2fb8,~
code-creation,Function,0x1f9009f18300,200,"fs.Stats._checkModeProperty fs.js:42",0x12824e0c3090,~
code-creation,Function,0x1f9009f183e0,152,"fs.Stats.isDirectory fs.js:46",0x12824e0c3160,~
code-creation,Function,0x1f9009f18480,152,"fs.Stats.isFile fs.js:50",0x12824e0c3230,~
code-creation,Function,0x1f9009f18520,152,"fs.Stats.isBlockDevice fs.js:54",0x12824e0c3300,~
code-creation,Function,0x1f9009f185c0,152,"fs.Stats.isCharacterDevice fs.js:58",0x12824e0c33d0,~
code-creation,Function,0x1f9009f18660,152,"fs.Stats.isSymbolicLink fs.js:62",0x12824e0c34a0,~
code-creation,Function,0x1f9009f18700,152,"fs.Stats.isFIFO fs.js:66",0x12824e0c3570,~
code-creation,Function,0x1f9009f187a0,152,"fs.Stats.isSocket fs.js:70",0x12824e0c3640,~
code-creation,Stub,0x1f9009f18840,214,"FastNewContextStub"
code-creation,Function,0x1f9009f18920,232,"fs.readFile.readStream.on.buffer fs.js:82",0x12824e0c3718,~
code-creation,Function,0x1f9009f18a20,156," fs.js:87",0x12824e0c37f0,~
code-creation,Function,0x1f9009f18ac0,256," fs.js:101",0x12824e0c38d0,~
code-creation,Function,0x1f9009f18bc0,936,"fs.readFile fs.js:92",0x12824e0c39c0,~
code-creation,Function,0x1f9009f18f80,1080,"fs.readFile fs.js:74",0x12824e0c3b18,~
code-creation,Function,0x1f9009f193c0,312," fs.js:142",0x12824e0c3bf0,~
code-creation,Function,0x1f9009f19500,1456,"fs.readFileSync fs.js:119",0x12824e0c3d18,~
code-creation,Function,0x1f9009f19ac0,160,"fs.close fs.js:195",0x12824e0c3df8,~
code-creation,Function,0x1f9009f19b60,132,"fs.closeSync fs.js:199",0x12824e0c3ed0,~
code-creation,Function,0x1f9009f19c00,864,"fs.open fs.js:216",0x12824e0c40e8,~
code-creation,Function,0x1f9009f1a040,244,"fs.openSync fs.js:228",0x12824e0c41d0,~
code-creation,Function,0x1f9009f1a140,188,"wrapper fs.js:252",0x12824e0c42b0,~
tick,0x762fb6,0x7fff19045580,0,0x200000000e04500,2,0x1f9009f0be2b,0x1f9009ed3da9,0x1f9009f0cefe,0x1f9009f0efd6,0x1f9009f0e9d3,0x1f9009f10f2b,0x1f9009ed1541
code-creation,Function,0x1f9009f1a200,276,"fs.read.callback fs.js:243",0x12824e0c4398,~
code-creation,Function,0x1f9009f1a320,1280,"fs.read fs.js:233",0x12824e0c4528,~
code-creation,Function,0x1f9009f1a820,1284,"fs.readSync fs.js:260",0x12824e0c4698,~
code-creation,Function,0x1f9009f1ad40,188,"wrapper fs.js:302",0x12824e0c4778,~
code-creation,Function,0x1f9009f1ae00,152,"fs.write fs.js:295",0x12824e0c4848,~
code-creation,Function,0x1f9009f1aea0,1300,"fs.write fs.js:282",0x12824e0c49b8,~
code-creation,Function,0x1f9009f1b3c0,1008,"fs.writeSync fs.js:310",0x12824e0c4b08,~
code-creation,Function,0x1f9009f1b7c0,224,"fs.rename fs.js:324",0x12824e0c4bf0,~
code-creation,Function,0x1f9009f1b8a0,196,"fs.renameSync fs.js:329",0x12824e0c4cd0,~
code-creation,Function,0x1f9009f1b980,164,"fs.truncate fs.js:334",0x12824e0c4db8,~
code-creation,Function,0x1f9009f1ba40,136,"fs.truncateSync fs.js:338",0x12824e0c4e98,~
code-creation,Function,0x1f9009f1bae0,192,"fs.rmdir fs.js:342",0x12824e0c4f78,~
code-creation,Function,0x1f9009f1bba0,164,"fs.rmdirSync fs.js:346",0x12824e0c5050,~
code-creation,Function,0x1f9009f1bc60,160,"fs.fdatasync fs.js:350",0x12824e0c5130,~
code-creation,Function,0x1f9009f1bd00,132,"fs.fdatasyncSync fs.js:354",0x12824e0c5208,~
code-creation,Function,0x1f9009f1bda0,160,"fs.fsync fs.js:358",0x12824e0c52e8,~
code-creation,Function,0x1f9009f1be40,132,"fs.fsyncSync fs.js:362",0x12824e0c53c0,~
code-creation,Function,0x1f9009f1bee0,284,"fs.mkdir fs.js:366",0x12824e0c54a8,~
code-creation,Function,0x1f9009f1c040,204,"fs.mkdirSync fs.js:372",0x12824e0c5588,~
code-creation,Function,0x1f9009f1c120,172,"fs.sendfile fs.js:377",0x12824e0c5680,~
code-creation,Function,0x1f9009f1c1e0,144,"fs.sendfileSync fs.js:381",0x12824e0c5770,~
code-creation,Function,0x1f9009f1c280,192,"fs.readdir fs.js:385",0x12824e0c5850,~
code-creation,Function,0x1f9009f1c340,164,"fs.readdirSync fs.js:389",0x12824e0c5928,~
code-creation,Function,0x1f9009f1c400,160,"fs.fstat fs.js:393",0x12824e0c5a08,~
code-creation,Function,0x1f9009f1c4a0,192,"fs.lstat fs.js:397",0x12824e0c5ae8,~
code-creation,Function,0x1f9009f1c560,192,"fs.stat fs.js:401",0x12824e0c5bc8,~
code-creation,Function,0x1f9009f1c620,132,"fs.fstatSync fs.js:405",0x12824e0c5ca0,~
code-creation,Function,0x1f9009f1c6c0,164,"fs.lstatSync fs.js:409",0x12824e0c5d78,~
code-creation,Function,0x1f9009f1c780,164,"fs.statSync fs.js:413",0x12824e0c5e50,~
code-creation,Function,0x1f9009f1c840,192,"fs.readlink fs.js:417",0x12824e0c5f30,~
code-creation,Function,0x1f9009f1c900,164,"fs.readlinkSync fs.js:421",0x12824e0c6088,~
code-creation,Function,0x1f9009f1c9c0,776,"fs.symlink fs.js:425",0x12824e0c61d0,~
code-creation,Function,0x1f9009f1cce0,196,"fs.symlinkSync fs.js:433",0x12824e0c62b8,~
code-creation,Function,0x1f9009f1cdc0,224,"fs.link fs.js:438",0x12824e0c63a0,~
code-creation,Function,0x1f9009f1cea0,196,"fs.linkSync fs.js:443",0x12824e0c6480,~
code-creation,Function,0x1f9009f1cf80,192,"fs.unlink fs.js:448",0x12824e0c6560,~
code-creation,Function,0x1f9009f1d040,164,"fs.unlinkSync fs.js:452",0x12824e0c6638,~
code-creation,Function,0x1f9009f1d100,192,"fs.fchmod fs.js:456",0x12824e0c6720,~
code-creation,Function,0x1f9009f1d1c0,164,"fs.fchmodSync fs.js:460",0x12824e0c6800,~
code-creation,Function,0x1f9009f1d280,164,"fs.lchmod fs.js:475",0x12824e0c68d8,~
code-creation,Function,0x1f9009f1d340,240,"fs.lchmod fs.js:474",0x12824e0c69c0,~
code-creation,Function,0x1f9009f1d440,304,"fs.lchmod fs.js:467",0x12824e0c6ab0,~
code-creation,Function,0x1f9009f1d580,464,"fs.lchmod fs.js:465",0x12824e0c6bb8,~
code-creation,Function,0x1f9009f1d760,700,"fs.lchmodSync fs.js:482",0x12824e0c6cc8,~
code-creation,Function,0x1f9009f1da20,220,"fs.chmod fs.js:504",0x12824e0c6db0,~
code-creation,Function,0x1f9009f1db00,192,"fs.chmodSync fs.js:508",0x12824e0c6e90,~
code-creation,Function,0x1f9009f1dbc0,212,"fs.lchown fs.js:515",0x12824e0c6f70,~
code-creation,Function,0x1f9009f1dca0,532,"fs.lchown fs.js:513",0x12824e0c7090,~
code-creation,Function,0x1f9009f1dec0,236,"fs.lchownSync fs.js:524",0x12824e0c7180,~
code-creation,Function,0x1f9009f1e040,168,"fs.fchown fs.js:530",0x12824e0c7270,~
code-creation,Function,0x1f9009f1e100,140,"fs.fchownSync fs.js:534",0x12824e0c7358,~
code-creation,Function,0x1f9009f1e1a0,196,"fs.chown fs.js:538",0x12824e0c7448,~
code-creation,Function,0x1f9009f1e280,168,"fs.chownSync fs.js:542",0x12824e0c7530,~
code-creation,Function,0x1f9009f1e340,264,"fs.utimes fs.js:561",0x12824e0c7620,~
code-creation,Function,0x1f9009f1e460,232,"fs.utimesSync fs.js:567",0x12824e0c7708,~
code-creation,Function,0x1f9009f1e560,232,"fs.futimes fs.js:573",0x12824e0c77f8,~
code-creation,Function,0x1f9009f1e660,204,"fs.futimesSync fs.js:579",0x12824e0c78e0,~
code-creation,Function,0x1f9009f1e740,392,"fs.writeFile fs.js:606",0x12824e0c79c8,~
code-creation,Function,0x1f9009f1e8e0,808,"fs.writeFile fs.js:602",0x12824e0c7b18,~
code-creation,Function,0x1f9009f1ec20,576,"fs.writeFileSync fs.js:617",0x12824e0c7c18,~
code-creation,Function,0x1f9009f1ee60,320,"FSWatcher.start fs.js:658",0x12824e0c7d00,~
code-creation,Function,0x1f9009f1efa0,144,"FSWatcher.close fs.js:667",0x12824e0c7dd0,~
code-creation,Function,0x1f9009f1f040,688,"fs.watch fs.js:671",0x12824e0c7ed8,~
code-creation,Function,0x1f9009f1f300,180,"StatWatcher.start fs.js:715",0x12824e0c8040,~
code-creation,Function,0x1f9009f1f3c0,144,"StatWatcher.stop fs.js:720",0x12824e0c8110,~
code-creation,Function,0x1f9009f1f460,996,"fs.watchFile fs.js:732",0x12824e0c8218,~
code-creation,Function,0x1f9009f1f860,236,"fs.unwatchFile fs.js:766",0x12824e0c82f8,~
code-creation,Function,0x1f9009f1f960,368,"realpathSync fs.js:787",0x12824e0c83d8,~
code-creation,Function,0x1f9009f1fae0,244,"fs.realpath fs.js:807",0x12824e0c84b0,~
code-creation,Function,0x1f9009f1fbe0,844,"fs.realpath fs.js:798",0x12824e0c85c8,~
code-creation,Function,0x1f9009f20040,1672,"realpathSync fs.js:822",0x12824e0c8700,~
code-creation,Stub,0x1f9009f206e0,254,"FastNewContextStub"
code-creation,Function,0x1f9009f207e0,1092,"LOOP fs.js:925",0x12824e0c87d8,~
tick,0x702626,0x7fff19044b20,0,0x281c632,2,0x1f9009f0be2b,0x1f9009ed3da9,0x1f9009f0cefe,0x1f9009f0efd6,0x1f9009f0e9d3,0x1f9009f10f2b,0x1f9009ed1541
code-creation,Function,0x1f9009f20c40,160,"fs.realpath.cache.(anonymous function) fs.js:972",0x12824e0c88b8,~
code-creation,Function,0x1f9009f20ce0,208," fs.js:969",0x12824e0c8990,~
code-creation,Function,0x1f9009f20dc0,700,"gotStat fs.js:953",0x12824e0c8a80,~
code-creation,Function,0x1f9009f21080,272,"gotTarget fs.js:978",0x12824e0c8b70,~
code-creation,Function,0x1f9009f211a0,568,"gotResolvedLink fs.js:986",0x12824e0c8c48,~
code-creation,Function,0x1f9009f213e0,1796,"realpath fs.js:896",0x12824e0c8e10,~
code-creation,Function,0x1f9009f21b00,136,"fs.createReadStream fs.js:1009",0x12824e0c8ef0,~
code-creation,Function,0x1f9009f21ba0,296,"fs.ReadStream fs.js:1056",0x12824e0c8fd0,~
code-creation,Function,0x1f9009f22040,1424,"fs.ReadStream fs.js:1013",0x12824e0c90e0,~
code-creation,Function,0x1f9009f225e0,204,"ReadStream.setEncoding fs.js:1072",0x12824e0c91c0,~
code-creation,Function,0x1f9009f226c0,592,"afterRead fs.js:1102",0x12824e0c92a8,~
code-creation,Function,0x1f9009f22920,1356,"ReadStream._read fs.js:1078",0x12824e0c93b8,~
code-creation,Function,0x1f9009f22e80,300,"ReadStream._emitData fs.js:1144",0x12824e0c9498,~
code-creation,Function,0x1f9009f22fc0,324,"ReadStream.destroy fs.js:1159",0x12824e0c9570,~
code-creation,Function,0x1f9009f23120,172,"close fs.js:1158",0x12824e0c9640,~
code-creation,Function,0x1f9009f231e0,404,"ReadStream.destroy fs.js:1154",0x12824e0c9740,~
code-creation,Function,0x1f9009f23380,132,"ReadStream.pause fs.js:1179",0x12824e0c9810,~
code-creation,Function,0x1f9009f23420,348,"ReadStream.resume fs.js:1184",0x12824e0c98e0,~
code-creation,Function,0x1f9009f23580,132,"fs.createWriteStream fs.js:1200",0x12824e0c99c0,~
code-creation,Function,0x1f9009f23620,1608,"fs.WriteStream fs.js:1204",0x12824e0c9ac0,~
code-creation,Function,0x1f9009f24040,992,"WriteStream.flush fs.js:1262",0x12824e0c9bb0,~
code-creation,Function,0x1f9009f24420,768,"WriteStream.flush fs.js:1247",0x12824e0c9cb8,~
code-creation,Stub,0x1f9009f24720,256,"FastCloneShallowArrayStub"
code-creation,Function,0x1f9009f24820,1428,"WriteStream.write fs.js:1306",0x12824e0c9db8,~
code-creation,Function,0x1f9009f24dc0,996,"WriteStream.end fs.js:1336",0x12824e0c9ed8,~
code-creation,Function,0x1f9009f251c0,324,"WriteStream.destroy fs.js:1355",0x12824e0ca040,~
code-creation,Function,0x1f9009f25320,172,"close fs.js:1354",0x12824e0ca110,~
code-creation,Function,0x1f9009f253e0,404,"WriteStream.destroy fs.js:1350",0x12824e0ca210,~
code-creation,Function,0x1f9009f25580,564,"SyncWriteStream.write fs.js:1392",0x12824e0ca308,~
code-creation,Function,0x1f9009f257c0,176,"SyncWriteStream.end fs.js:1422",0x12824e0ca3f0,~
code-creation,Function,0x1f9009f25880,224,"SyncWriteStream.destroy fs.js:1430",0x12824e0ca4c0,~
code-creation,LazyCompile,0x1f9009f50040,9820," fs.js:1",0x12824e0c1f40,~
code-creation,KeyedLoadIC,0x1f9009f25960,126,"util"
code-creation,KeyedLoadIC,0x1f9009f25960,126,"util"
tick,0x5d9636,0x7fff19045c30,1,0x5241b0,3,0x1f9009f50508,0x1f9009f0be2b,0x1f9009ed3da9,0x1f9009f0cefe,0x1f9009f0efd6,0x1f9009f0e9d3,0x1f9009f10f2b,0x1f9009ed1541
code-creation,Script,0x1f9009f259e0,160,"stream.js",0x12824e0cd348,
code-creation,Function,0x1f9009f25a80,148,"Stream stream.js:25",0x12824e0cd460,~
code-creation,Stub,0x1f9009f25b20,222,"FastNewContextStub"
code-creation,Function,0x1f9009f25c00,276,"ondata stream.js:36",0x12824e0cd538,~
code-creation,Function,0x1f9009f25d20,204,"ondrain stream.js:46",0x12824e0cd608,~
code-creation,Function,0x1f9009f25e00,404,"onend stream.js:66",0x12824e0cd6d8,~
code-creation,Function,0x1f9009f26040,404,"onclose stream.js:84",0x12824e0cd7a8,~
code-creation,Function,0x1f9009f261e0,236,"onerror stream.js:102",0x12824e0cd880,~
code-creation,Function,0x1f9009f262e0,532,"cleanup stream.js:113",0x12824e0cd950,~
code-creation,Function,0x1f9009f26500,1540,"Stream.pipe stream.js:33",0x12824e0cdac0,~
code-creation,LazyCompile,0x1f9009f26b20,456," stream.js:1",0x12824e0cd270,~
code-creation,LoadIC,0x1f9009f26d00,117,"Object"
code-creation,LoadIC,0x1f9009f26d00,117,"Object"
code-creation,CallIC,0x1f9009f26d80,125,"create"
code-creation,LoadIC,0x1f9009f26e00,107,"$Object"
code-creation,LoadIC,0x1f9009f26e00,107,"$Object"
code-creation,CallIC,0x1f9009f26e80,149,"ObjectDefineProperties"
code-creation,CallIC,0x1f9009f26f20,149,"GetOwnEnumerablePropertyNames"
code-creation,KeyedLoadIC,0x1f9009f26fc0,122,"constructor"
code-creation,KeyedLoadIC,0x1f9009f26fc0,122,"constructor"
code-creation,CallIC,0x1f9009f27040,149,"ToPropertyDescriptor"
code-creation,LoadIC,0x1f9009f270e0,102,"enumerable"
code-creation,LoadIC,0x1f9009f270e0,102,"enumerable"
code-creation,CallIC,0x1f9009f27160,149,"ToBoolean"
code-creation,LoadIC,0x1f9009f27200,102,"configurable"
code-creation,LoadIC,0x1f9009f27200,102,"configurable"
tick,0x7fc5979d21f5,0x7fff19045d48,0,0x7fc597a52d4d,0,0x1f9009eb83fd,0x1f9009ec3cf8,0x1f9009ee1deb,0x1f9009ed1ec3,0x1f9009f26c50,0x1f9009f0be2b,0x1f9009ed3da9,0x1f9009f50633,0x1f9009f0be2b,0x1f9009ed3da9,0x1f9009f0cefe,0x1f9009f0efd6,0x1f9009f0e9d3,0x1f9009f10f2b,0x1f9009ed1541
code-creation,LoadIC,0x1f9009f27280,102,"value"
code-creation,LoadIC,0x1f9009f27280,102,"value"
code-creation,CallIC,0x1f9009f27300,206,"setValue"
code-creation,LoadIC,0x1f9009f273e0,102,"writable"
code-creation,LoadIC,0x1f9009f273e0,102,"writable"
code-creation,CallIC,0x1f9009f27460,206,"setWritable"
code-creation,CallIC,0x1f9009f27540,149,"IsInconsistentDescriptor"
code-creation,CallIC,0x1f9009f275e0,203,"isWritable"
code-creation,LoadIC,0x1f9009f276c0,102,"writable_"
code-creation,LoadIC,0x1f9009f276c0,102,"writable_"
code-creation,CallIC,0x1f9009f27740,203,"getValue"
code-creation,LoadIC,0x1f9009f27820,102,"value_"
code-creation,LoadIC,0x1f9009f27820,102,"value_"
code-creation,StoreIC,0x1f9009f278a0,131,"super_"
code-creation,StoreIC,0x1f9009f278a0,131,"super_"
code-creation,LoadIC,0x1f9009f27940,107,"StringCharAt"
code-creation,LoadIC,0x1f9009f27940,107,"StringCharAt"
code-creation,LazyCompile,0x1f9009f279c0,416,"keys native v8natives.js:347",0x3f0f96bdc3a0,~
code-creation,LazyCompile,0x1f9009f27b60,1068,"slice native string.js:525",0x3f0f96bea8b0,~
code-creation,LazyCompile,0x1f9009f28040,688,"SubString native string.js:200",0x3f0f96bea430,~
code-creation,StoreIC,0x1f9009f28300,164,"request"
code-creation,StoreIC,0x1f9009f28300,164,"request"
code-creation,StoreIC,0x1f9009f283c0,164,"paths"
code-creation,StoreIC,0x1f9009f283c0,164,"paths"
code-creation,LoadIC,0x1f9009f28480,132,""
code-creation,LoadIC,0x1f9009f28480,132,""
code-creation,LazyCompile,0x1f9009f28520,1096,"BasicSerializeObject native json.js:244",0x3f0f96bdae08,~
code-creation,KeyedLoadIC,0x1f9009f28980,122,"paths"
code-creation,KeyedLoadIC,0x1f9009f28980,122,"paths"
code-creation,LoadIC,0x1f9009f28a00,192,""
code-creation,LoadIC,0x1f9009f28a00,192,""
code-creation,CallIC,0x1f9009f28ac0,149,"BasicSerializeArray"
code-creation,KeyedStoreIC,0x1f9009f28b60,98,""
code-creation,KeyedStoreIC,0x1f9009f28b60,98,"args_count: 0"
tick,0x64906a,0x7fff190460f0,1,0x5352a0,3,0x1f9009f1c806,0x1f9009f0c45c,0x1f9009f0ca35,0x1f9009f0d15c,0x1f9009f0efd6,0x1f9009f0e9d3,0x1f9009f10f2b,0x1f9009ed1541
code-creation,LazyCompile,0x1f9009f28be0,188,"CreateDate native apinatives.js:33",0x3f0f96be6218,~
code-creation,LazyCompile,0x1f9009f28ca0,428,"setTime native date.js:771",0x3f0f96befb88,~
code-creation,Stub,0x1f9009f28e60,100,"UnaryOpStub_SUB_Alloc_Uninitialized"
code-creation,LazyCompile,0x1f9009f28ee0,392,"abs native math.js:45",0x3f0f96bec898,~
code-creation,LoadIC,0x1f9009f29080,107,"$Date"
code-creation,LoadIC,0x1f9009f29080,107,"$Date"
code-creation,CallIC,0x1f9009f29100,185,"setTime"
code-creation,CallIC,0x1f9009f291c0,149,"ToNumber"
code-creation,CallIC,0x1f9009f29260,149,"TimeClip"
code-creation,CallIC,0x1f9009f29300,149,"$isFinite"
code-creation,CallIC,0x1f9009f293a0,297,"$abs"
code-creation,StoreIC,0x1f9009f294e0,164,"lastIndex"
code-creation,StoreIC,0x1f9009f294e0,164,"lastIndex"
code-creation,Stub,0x1f9009f295a0,900,"RegExpExecStub"
code-creation,LazyCompile,0x1f9009f29940,1280,"exec native regexp.js:167",0x3f0f96be12b8,~
code-creation,RegExp,0x1f9009f2a040,1056,"(.*?)(?:[\\/]+|$)"
code-creation,StoreIC,0x1f9009f2a460,118,"lastMatchInfoOverride"
code-creation,StoreIC,0x1f9009f2a460,118,"lastMatchInfoOverride"
code-creation,Stub,0x1f9009f2a4e0,264,"RegExpConstructResultStub"
code-creation,LazyCompile,0x1f9009f2a600,1800,"BuildResultFromMatchInfo native regexp.js:126",0x3f0f96be1198,~
code-creation,KeyedStoreIC,0x1f9009f2ad20,98,""
code-creation,KeyedStoreIC,0x1f9009f2ad20,98,"args_count: 0"
code-creation,KeyedLoadIC,0x1f9009f2ada0,98,""
code-creation,KeyedLoadIC,0x1f9009f2ada0,98,"args_count: 0"
code-creation,CallIC,0x1f9009f2ae20,155,"exec"
code-creation,LoadIC,0x1f9009f2aec0,102,"lastIndex"
code-creation,LoadIC,0x1f9009f2aec0,102,"lastIndex"
code-creation,LoadIC,0x1f9009f2af40,102,"global"
code-creation,LoadIC,0x1f9009f2af40,102,"global"
code-creation,LoadIC,0x1f9009f2afc0,107,"lastMatchInfo"
code-creation,LoadIC,0x1f9009f2afc0,107,"lastMatchInfo"
code-creation,CallIC,0x1f9009f2b040,149,"BuildResultFromMatchInfo"
code-creation,LoadIC,0x1f9009f2b0e0,106,"mode"
code-creation,LoadIC,0x1f9009f2b0e0,106,"mode"
code-creation,LoadIC,0x1f9009f2b160,108,"hasOwnProperty"
code-creation,LoadIC,0x1f9009f2b160,108,"hasOwnProperty"
code-creation,CallIC,0x1f9009f2b1e0,160,"call"
code-creation,CallIC,0x1f9009f2b280,125,"lstatSync"
code-creation,CallIC,0x1f9009f2b300,173,"_makeLong"
code-creation,CallIC,0x1f9009f2b3c0,415,"lstat"
code-creation,CallIC,0x1f9009f2b560,152,"isSymbolicLink"
code-creation,CallIC,0x1f9009f2b600,152,"_checkModeProperty"
tick,0x655382,0x7fff19046160,0,0x0,3,0x1f9009f1c746,0x1f9009f203f4,0x1f9009f0caa5,0x1f9009f0d15c,0x1f9009f0efd6,0x1f9009f0e9d3,0x1f9009f10f2b,0x1f9009ed1541
code-creation,StoreIC,0x1f9009f2b6a0,164,"id"
code-creation,StoreIC,0x1f9009f2b6a0,164,"id"
code-creation,StoreIC,0x1f9009f2b760,164,"filename"
code-creation,StoreIC,0x1f9009f2b760,164,"filename"
code-creation,RegExp,0x1f9009f2c040,2765,"^(\\/?)([\\s\\S]+\\/(?!$)|\\/)?((?:[\\s\\S]+?)?(\\.[^.]*)?)$"
code-creation,LazyCompile,0x1f9009f2cb20,224,"DoRegExpExec native regexp.js:119",0x3f0f96be1108,~
code-creation,CallIC,0x1f9009f2cc00,149,"DoRegExpExec"
code-creation,LazyCompile,0x1f9009f2cca0,628,"ArrayConcat native array.js:457",0x3f0f96bf1a40,~
code-creation,CallIC,0x1f9009f2cf20,190,"slice"
code-creation,CallIC,0x1f9009f2cfe0,190,"concat"
code-creation,KeyedCallMegamorphic,0x1f9009f2d0a0,1317,"args_count: 2"
code-creation,LazyCompile,0x1f9009f2d5e0,212,"ceil native math.js:80",0x3f0f96becb68,~
code-creation,Stub,0x1f9009f2d6c0,117,"UnaryOpStub_BIT_NOT_Alloc_Smi"
code-creation,Stub,0x1f9009f2d740,117,"UnaryOpStub_BIT_NOT_Overwrite_Smi"
code-creation,StoreIC,0x1f9009f2d7c0,168,"used"
code-creation,StoreIC,0x1f9009f2d7c0,168,"used"
code-creation,LazyCompile,0x1f9009f2d880,168,"isArray native array.js:1311",0x3f0f96bf2430,~
code-creation,CallPreMonomorphic,0x1f9009f2d940,209,"args_count: 4"
code-creation,LoadIC,0x1f9009f2da20,117,"Math"
code-creation,LoadIC,0x1f9009f2da20,117,"Math"
code-creation,CallIC,0x1f9009f2daa0,155,"ceil"
code-creation,StoreIC,0x1f9009f2db40,178,"length"
code-creation,StoreIC,0x1f9009f2db40,178,"length"
code-creation,LoadIC,0x1f9009f2dc00,102,"length"
code-creation,LoadIC,0x1f9009f2dc00,102,"length"
code-creation,LoadIC,0x1f9009f2dc80,106,"poolSize"
code-creation,LoadIC,0x1f9009f2dc80,106,"poolSize"
code-creation,StoreIC,0x1f9009f2dd00,178,"parent"
code-creation,StoreIC,0x1f9009f2dd00,178,"parent"
code-creation,LoadIC,0x1f9009f2ddc0,106,"used"
code-creation,LoadIC,0x1f9009f2ddc0,106,"used"
code-creation,StoreIC,0x1f9009f2de40,178,"offset"
code-creation,StoreIC,0x1f9009f2de40,178,"offset"
code-creation,LoadIC,0x1f9009f2df00,102,"length"
code-creation,LoadIC,0x1f9009f2df00,102,"length"
code-creation,LoadIC,0x1f9009f2df80,117,"Array"
code-creation,LoadIC,0x1f9009f2df80,117,"Array"
code-creation,CallIC,0x1f9009f2e040,125,"isArray"
code-creation,CallIC,0x1f9009f2e0c0,125,"isBuffer"
code-creation,LoadIC,0x1f9009f2e140,102,"parent"
code-creation,LoadIC,0x1f9009f2e140,102,"parent"
code-creation,LoadIC,0x1f9009f2e1c0,102,"offset"
code-creation,LoadIC,0x1f9009f2e1c0,102,"offset"
code-creation,CallMiss,0x1f9009f2e240,209,"args_count: 4"
code-creation,CallIC,0x1f9009f2e320,415,"makeFastBuffer"
code-creation,LoadIC,0x1f9009f2e4c0,117,"Buffer"
code-creation,LoadIC,0x1f9009f2e4c0,117,"Buffer"
code-creation,LoadIC,0x1f9009f2e540,106,"length"
code-creation,LoadIC,0x1f9009f2e540,106,"length"
code-creation,StoreIC,0x1f9009f2e5c0,182,"used"
code-creation,StoreIC,0x1f9009f2e5c0,182,"used"
code-creation,LoadIC,0x1f9009f2e680,102,"length"
code-creation,LoadIC,0x1f9009f2e680,102,"length"
code-creation,CallMiss,0x1f9009f2e700,209,"args_count: 5"
code-creation,CallIC,0x1f9009f2e7e0,125,"readSync"
code-creation,CallIC,0x1f9009f2e860,415,"read"
code-creation,LazyCompile,0x1f9009f2ea00,408,"toLowerCase native string.js:742",0x3f0f96beaaf0,~
tick,0x67851a,0x7fff19044e98,0,0x679bf0,2,0x1f9009f0cce5,0x1f9009f10c59,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,LazyCompile,0x1f9009f2eba0,1236,"charCodeAt native string.js:78",0x3f0f96bea0d0,~
code-creation,LazyCompile,0x1f9009f2f080,1664,"replace native string.js:216",0x3f0f96bea4c0,~
code-creation,RegExp,0x1f9009f2f700,880,"^\\#\\!.*"
code-creation,LazyCompile,0x1f9009f2fa80,872,"defineProperty native v8natives.js:971",0x3f0f96bdd438,~
code-creation,CallIC,0x1f9009f2fe00,203,"substring"
code-creation,Script,0x1f9009f2fee0,160,"/home/linus/development/projects/turkey/turkey.js",0x12824e0d0718,
code-creation,Stub,0x1f9009f30040,272,"FastCloneShallowArrayStub"
code-creation,Function,0x1f9009f30160,200,"loadImage /home/linus/development/projects/turkey/turkey.js:59",0x12824e0d0c48,~
code-creation,Function,0x1f9009f30240,524," /home/linus/development/projects/turkey/turkey.js:73",0x12824e0d0d38,~
code-creation,Function,0x1f9009f30460,940,"loadImages /home/linus/development/projects/turkey/turkey.js:66",0x12824e0d0e48,~
tick,0x5dd39a,0x7fff19045550,0,0x1cf698f96509,2,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,Function,0x1f9009f30820,680,"drawImage /home/linus/development/projects/turkey/turkey.js:87",0x12824e0d0f58,~
code-creation,Function,0x1f9009f30ae0,476," /home/linus/development/projects/turkey/turkey.js:106",0x12824e0d1048,~
code-creation,Function,0x1f9009f30cc0,424," /home/linus/development/projects/turkey/turkey.js:104",0x12824e0d1158,~
code-creation,Function,0x1f9009f30e80,2536," /home/linus/development/projects/turkey/turkey.js:1",0x12824e0d1318,~
code-creation,LazyCompile,0x1f9009f31880,244," /home/linus/development/projects/turkey/turkey.js:1",0x12824e0d0640,~
code-creation,Stub,0x1f9009f31980,141,"ToBooleanStub_NullSpecObject"
code-creation,CallIC,0x1f9009f31a20,125,"_resolveFilename"
code-creation,LoadIC,0x1f9009f31aa0,106,"_cache"
code-creation,LoadIC,0x1f9009f31aa0,106,"_cache"
code-creation,CallIC,0x1f9009f31b20,152,"require"
code-creation,CallIC,0x1f9009f31bc0,142,"_load"
code-creation,LoadIC,0x1f9009f31c60,102,"id"
code-creation,LoadIC,0x1f9009f31c60,102,"id"
code-creation,CallIC,0x1f9009f31ce0,125,"require"
code-creation,CallIC,0x1f9009f31d60,125,"_resolveLookupPaths"
code-creation,LoadIC,0x1f9009f31de0,117,"JSON"
code-creation,LoadIC,0x1f9009f31de0,117,"JSON"
code-creation,CallIC,0x1f9009f31e60,142,"stringify"
code-creation,CallIC,0x1f9009f31f00,216,"pop"
code-creation,CallIC,0x1f9009f32040,125,"_findPath"
code-creation,LoadIC,0x1f9009f320c0,106,"_extensions"
code-creation,LoadIC,0x1f9009f320c0,106,"_extensions"
code-creation,CallIC,0x1f9009f32140,125,"keys"
code-creation,CallIC,0x1f9009f321c0,220,"slice"
code-creation,CallIC,0x1f9009f322a0,149,"SubString"
code-creation,CallIC,0x1f9009f32340,149,"BasicSerializeObject"
code-creation,KeyedLoadIC,0x1f9009f323e0,122,"request"
code-creation,KeyedLoadIC,0x1f9009f323e0,122,"request"
code-creation,LoadIC,0x1f9009f32460,106,"_pathCache"
code-creation,LoadIC,0x1f9009f32460,106,"_pathCache"
code-creation,CallIC,0x1f9009f324e0,139,"resolve"
code-creation,CallIC,0x1f9009f32580,125,"statSync"
code-creation,CallIC,0x1f9009f32600,415,"stat"
code-creation,CallIC,0x1f9009f327a0,152,"isDirectory"
code-creation,Stub,0x1f9009f32840,154,"ToBooleanStub_BoolString"
code-creation,Stub,0x1f9009f328e0,114,"ToBooleanStub_UndefinedSmi"
code-creation,StoreIC,0x1f9009f32960,164,"get"
code-creation,StoreIC,0x1f9009f32960,164,"get"
code-creation,StoreIC,0x1f9009f32a20,164,"set"
code-creation,StoreIC,0x1f9009f32a20,164,"set"
code-creation,LoadIC,0x1f9009f32ae0,102,"enumerable"
code-creation,LoadIC,0x1f9009f32ae0,102,"enumerable"
code-creation,LoadIC,0x1f9009f32b60,102,"configurable"
code-creation,LoadIC,0x1f9009f32b60,102,"configurable"
code-creation,LoadIC,0x1f9009f32be0,102,"get"
code-creation,LoadIC,0x1f9009f32be0,102,"get"
code-creation,StoreIC,0x1f9009f32c60,164,"set_"
code-creation,StoreIC,0x1f9009f32c60,164,"set_"
code-creation,StoreIC,0x1f9009f32d20,164,"hasSetter_"
code-creation,StoreIC,0x1f9009f32d20,164,"hasSetter_"
code-creation,Stub,0x1f9009f32de0,150,"ToBooleanStub_BoolSpecObject"
code-creation,LoadIC,0x1f9009f32e80,107,"kAddMessageAccessorsMarker"
code-creation,LoadIC,0x1f9009f32e80,107,"kAddMessageAccessorsMarker"
code-creation,CallIC,0x1f9009f32f00,149,"captureStackTrace"
code-creation,LoadIC,0x1f9009f32fa0,107,"$Error"
code-creation,LoadIC,0x1f9009f32fa0,107,"$Error"
code-creation,LoadIC,0x1f9009f33020,106,"stackTraceLimit"
code-creation,LoadIC,0x1f9009f33020,106,"stackTraceLimit"
code-creation,CallIC,0x1f9009f330a0,149,"DefineOneShotAccessor"
code-creation,LoadIC,0x1f9009f33140,102,"set"
code-creation,LoadIC,0x1f9009f33140,102,"set"
code-creation,CallIC,0x1f9009f331c0,203,"setSet"
code-creation,CallIC,0x1f9009f332a0,200,"getSet"
code-creation,LoadIC,0x1f9009f33380,102,"set_"
code-creation,LoadIC,0x1f9009f33380,102,"set_"
code-creation,CallMiss,0x1f9009f33400,209,"args_count: 3"
code-creation,CallIC,0x1f9009f334e0,125,"openSync"
code-creation,CallIC,0x1f9009f33560,415,"open"
code-creation,StoreIC,0x1f9009f33700,178,"_bytesRead"
code-creation,StoreIC,0x1f9009f33700,178,"_bytesRead"
code-creation,CallIC,0x1f9009f337c0,125,"closeSync"
code-creation,CallIC,0x1f9009f33840,415,"close"
code-creation,LoadIC,0x1f9009f339e0,102,"_bytesRead"
tick,0x631405,0x7fff19045e90,0,0x7fff19045f00,0,0x1f9009f19951,0x1f9009f0c66a,0x1f9009f0c82c,0x1f9009f0d1e0,0x1f9009f0efd6,0x1f9009f0e9d3,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f310cf,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,LoadIC,0x1f9009f339e0,102,"_bytesRead"
code-creation,CallIC,0x1f9009f33a60,152,"slice"
code-creation,LoadIC,0x1f9009f33b00,107,"undefined"
code-creation,LoadIC,0x1f9009f33b00,107,"undefined"
code-creation,LoadIC,0x1f9009f33b80,102,"length"
code-creation,LoadIC,0x1f9009f33b80,102,"length"
code-creation,LoadIC,0x1f9009f33c00,102,"parent"
code-creation,LoadIC,0x1f9009f33c00,102,"parent"
code-creation,LoadIC,0x1f9009f33c80,102,"offset"
code-creation,LoadIC,0x1f9009f33c80,102,"offset"
code-creation,CallIC,0x1f9009f33d00,169,"toString"
code-creation,CallIC,0x1f9009f33dc0,149,"String"
code-creation,CallIC,0x1f9009f33e60,203,"toLowerCase"
code-creation,LoadIC,0x1f9009f33f40,102,"offset"
code-creation,LoadIC,0x1f9009f33f40,102,"offset"
code-creation,LoadIC,0x1f9009f34040,102,"parent"
code-creation,LoadIC,0x1f9009f34040,102,"parent"
code-creation,CallIC,0x1f9009f340c0,442,"utf8Slice"
code-creation,LazyCompile,0x1f9009f34280,488,"parse native json.js:55",0x3f0f96bdab38,~
code-creation,LoadIC,0x1f9009f34480,106,"_realpathCache"
code-creation,LoadIC,0x1f9009f34480,106,"_realpathCache"
code-creation,CallIC,0x1f9009f34500,125,"realpathSync"
code-creation,CallIC,0x1f9009f34580,139,"resolve"
code-creation,StoreIC,0x1f9009f34620,178,"id"
code-creation,StoreIC,0x1f9009f34620,178,"id"
code-creation,StoreIC,0x1f9009f346e0,178,"exports"
code-creation,StoreIC,0x1f9009f346e0,178,"exports"
code-creation,StoreIC,0x1f9009f347a0,178,"parent"
code-creation,StoreIC,0x1f9009f347a0,178,"parent"
code-creation,StoreIC,0x1f9009f34860,178,"filename"
code-creation,StoreIC,0x1f9009f34860,178,"filename"
code-creation,StoreIC,0x1f9009f34920,178,"loaded"
code-creation,StoreIC,0x1f9009f34920,178,"loaded"
code-creation,StoreIC,0x1f9009f349e0,178,"exited"
code-creation,StoreIC,0x1f9009f349e0,178,"exited"
code-creation,StoreIC,0x1f9009f34aa0,178,"children"
code-creation,StoreIC,0x1f9009f34aa0,178,"children"
code-creation,Stub,0x1f9009f34b60,127,"ToBooleanStub_UndefinedBool"
code-creation,CallIC,0x1f9009f34be0,152,"load"
code-creation,LoadIC,0x1f9009f34c80,102,"id"
code-creation,LoadIC,0x1f9009f34c80,102,"id"
code-creation,LoadIC,0x1f9009f34d00,102,"loaded"
code-creation,LoadIC,0x1f9009f34d00,102,"loaded"
code-creation,CallIC,0x1f9009f34d80,125,"dirname"
code-creation,CallIC,0x1f9009f34e00,125,"_nodeModulePaths"
code-creation,LoadIC,0x1f9009f34e80,117,"process"
code-creation,LoadIC,0x1f9009f34e80,117,"process"
code-creation,StoreIC,0x1f9009f34f00,178,"paths"
code-creation,StoreIC,0x1f9009f34f00,178,"paths"
code-creation,CallIC,0x1f9009f34fc0,125,"extname"
code-creation,CallIC,0x1f9009f35040,125,"readFileSync"
code-creation,CallIC,0x1f9009f350c0,566,"charCodeAt"
code-creation,CallIC,0x1f9009f35300,152,"_compile"
code-creation,CallIC,0x1f9009f353a0,203,"replace"
code-creation,CallIC,0x1f9009f35480,125,"defineProperty"
code-creation,LoadIC,0x1f9009f35500,108,"get"
code-creation,LoadIC,0x1f9009f35500,108,"get"
code-creation,LoadIC,0x1f9009f35580,106,"_contextLoad"
code-creation,LoadIC,0x1f9009f35580,106,"_contextLoad"
code-creation,CallIC,0x1f9009f35600,125,"wrap"
tick,0x7014a2,0x7fff19045bc0,0,0x0,0,0x1f9009f10892,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f310cf,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,Script,0x1f9009f35680,160,"/home/linus/development/projects/turkey/node_modules/canvas/lib/canvas.js",0x12824e0d1888,
code-creation,LoadIC,0x1f9009f35720,102,"exports"
code-creation,LoadIC,0x1f9009f35720,102,"exports"
code-creation,CallIC,0x1f9009f357a0,155,"apply"
code-creation,Function,0x1f9009f35840,208,"Canvas.inspect /home/linus/development/projects/turkey/node_modules/canvas/lib/canvas.js:73",0x12824e0d19a0,~
code-creation,Function,0x1f9009f35920,300,"Canvas.getContext /home/linus/development/projects/turkey/node_modules/canvas/lib/canvas.js:85",0x12824e0d1a80,~
code-creation,Function,0x1f9009f35a60,128,"Canvas.createPNGStream /home/linus/development/projects/turkey/node_modules/canvas/lib/canvas.js:101",0x12824e0d1b50,~
code-creation,Function,0x1f9009f35ae0,140,"Canvas.createSyncPNGStream /home/linus/development/projects/turkey/node_modules/canvas/lib/canvas.js:112",0x12824e0d1c20,~
code-creation,Function,0x1f9009f35b80,276,"Canvas.toDataURL /home/linus/development/projects/turkey/node_modules/canvas/lib/canvas.js:138",0x12824e0d1d08,~
code-creation,Function,0x1f9009f36040,924,"Canvas.toDataURL /home/linus/development/projects/turkey/node_modules/canvas/lib/canvas.js:125",0x12824e0d1e18,~
code-creation,LazyCompile,0x1f9009f363e0,1176," /home/linus/development/projects/turkey/node_modules/canvas/lib/canvas.js:1",0x12824e0d17b0,~
code-creation,LazyCompile,0x1f9009f36880,3052,"test native regexp.js:223",0x3f0f96be1348,~
code-creation,RegExp,0x1f9009f37480,924,"^index\\.\\w+?$"
code-creation,StoreIC,0x1f9009f37820,131,"resolve"
code-creation,StoreIC,0x1f9009f37820,131,"resolve"
tick,0x7fc5979d5ff4,0x7fff19045bf0,0,0x0,0,0x1f9009f1023f,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f36460,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f310cf,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,LoadIC,0x1f9009f378c0,108,"get"
code-creation,LoadIC,0x1f9009f378c0,108,"get"
code-creation,Script,0x1f9009f37940,160,"/home/linus/development/projects/turkey/node_modules/canvas/lib/bindings.js",0x12824e0d2320,
code-creation,LazyCompile,0x1f9009f379e0,560," /home/linus/development/projects/turkey/node_modules/canvas/lib/bindings.js:1",0x12824e0d2248,~
code-creation,LoadIC,0x1f9009f37c20,102,"filename"
code-creation,LoadIC,0x1f9009f37c20,102,"filename"
code-creation,CallIC,0x1f9009f37ca0,142,"basename"
code-creation,CallIC,0x1f9009f37d40,155,"test"
code-creation,LoadIC,0x1f9009f37de0,102,"source"
code-creation,LoadIC,0x1f9009f37de0,102,"source"
code-creation,LazyCompile,0x1f9009f37e60,188,"CreateDate native apinatives.js:33",0x3f0f96be6218,~
code-creation,LazyCompile,0x1f9009f38040,369,"CreateDate native apinatives.js:33",0x3f0f96be6218,*
tick,0x7fc597a8b119,0x7fff19045ab8,0,0x0,1
tick,0x7fc5992f3e67,0x7fff19044b78,1,0x524440,4,0x1f9009f10e4b,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f37bd7,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f36460,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f310cf,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
tick,0x7fc5992e8a06,0x7fff19045260,1,0x524440,4,0x1f9009f10e4b,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f37bd7,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f36460,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f310cf,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,LazyCompile,0x1f9009f381c0,760,"DefaultNumber native runtime.js:637",0x3f0f96be5ef0,~
code-creation,LazyCompile,0x1f9009f384c0,144,"valueOf native v8natives.js:258",0x3f0f96bdbe48,~
code-creation,LazyCompile,0x1f9009f38560,184,"IsPrimitive native runtime.js:628",0x3f0f96be5e60,~
code-creation,LazyCompile,0x1f9009f38620,144,"toString native v8natives.js:1450",0x3f0f96bde1a0,~
code-creation,LazyCompile,0x1f9009f386c0,644,"FunctionSourceString native v8natives.js:1423",0x3f0f96bde110,~
code-creation,CallIC,0x1f9009f38960,148,"ToPrimitive"
code-creation,CallIC,0x1f9009f38a00,148,"DefaultNumber"
code-creation,LoadIC,0x1f9009f38aa0,168,"valueOf"
code-creation,LoadIC,0x1f9009f38aa0,168,"valueOf"
code-creation,CallIC,0x1f9009f38b60,148,"IsPrimitive"
code-creation,LoadIC,0x1f9009f38c00,138,"toString"
code-creation,LoadIC,0x1f9009f38c00,138,"toString"
code-creation,CallIC,0x1f9009f38ca0,149,"FunctionSourceString"
code-creation,CallIC,0x1f9009f38d40,148,"ToNumber"
tick,0x5cf390,0x7fff190451b8,1,0x524440,0,0x1f9009ecec2d,0x1f9009ecdf1f,0x1f9009ece5da,0x1f9009ecde55,0x1f9009f10e4b,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f37bd7,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f36460,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f310cf,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,StoreIC,0x1f9009f38de0,164,"loaded"
code-creation,StoreIC,0x1f9009f38de0,164,"loaded"
code-creation,StoreIC,0x1f9009f38ea0,164,"exports"
code-creation,StoreIC,0x1f9009f38ea0,164,"exports"
code-creation,LazyCompile,0x1f9009f38f60,1068,"forEach native array.js:1019",0x3f0f96bf1f50,~
code-creation,Stub,0x1f9009f393a0,281,"BinaryOpStub_SHR_Alloc_SMI"
code-creation,CallIC,0x1f9009f394c0,155,"copy"
code-creation,CallIC,0x1f9009f39560,445,"copy"
code-creation,LoadIC,0x1f9009f39720,108,"get"
code-creation,LoadIC,0x1f9009f39720,108,"get"
tick,0x6d0341,0x7fff19043000,1,0x536740,2,0x1f9009f108c2,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f364e3,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f310cf,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,Script,0x1f9009f397a0,160,"/home/linus/development/projects/turkey/node_modules/canvas/lib/context2d.js",0x223e80dadb60,
code-creation,Function,0x1f9009f39840,1228,"exports.parseFont /home/linus/development/projects/turkey/node_modules/canvas/lib/context2d.js:64",0x223e80dadcd0,~
code-creation,Function,0x1f9009f39d20,140,"Context2d.createLinearGradient /home/linus/development/projects/turkey/node_modules/canvas/lib/context2d.js:112",0x223e80daddc0,~
code-creation,Function,0x1f9009f39dc0,144,"Context2d.createRadialGradient /home/linus/development/projects/turkey/node_modules/canvas/lib/context2d.js:130",0x223e80dadec0,~
code-creation,Function,0x1f9009f39e60,192,"Context2d.setTransform /home/linus/development/projects/turkey/node_modules/canvas/lib/context2d.js:141",0x223e80dae040,~
code-creation,Function,0x1f9009f3a040,276,"Context2d.__defineSetter__.lastStrokeStyle /home/linus/development/projects/turkey/node_modules/canvas/lib/context2d.js:152",0x223e80dae118,~
code-creation,Function,0x1f9009f3a160,168,"Context2d.__defineSetter__.lastStrokeStyle /home/linus/development/projects/turkey/node_modules/canvas/lib/context2d.js:168",0x223e80dae1e8,~
code-creation,Function,0x1f9009f3a220,276,"Context2d.__defineSetter__.lastFontString /home/linus/development/projects/turkey/node_modules/canvas/lib/context2d.js:178",0x223e80dae2c0,~
code-creation,Function,0x1f9009f3a340,168," /home/linus/development/projects/turkey/node_modules/canvas/lib/context2d.js:194",0x223e80dae390,~
code-creation,Function,0x1f9009f3a400,352,"Context2d.__defineSetter__.lastBaseline /home/linus/development/projects/turkey/node_modules/canvas/lib/context2d.js:206",0x223e80dae470,~
code-creation,Function,0x1f9009f3a560,160," /home/linus/development/projects/turkey/node_modules/canvas/lib/context2d.js:227",0x223e80dae540,~
code-creation,Function,0x1f9009f3a600,212,"Context2d.__defineSetter__.lastTextAlignment /home/linus/development/projects/turkey/node_modules/canvas/lib/context2d.js:237",0x223e80dae620,~
code-creation,Function,0x1f9009f3a6e0,160,"Context2d.__defineSetter__.lastTextAlignment /home/linus/development/projects/turkey/node_modules/canvas/lib/context2d.js:251",0x223e80dae6f0,~
code-creation,Function,0x1f9009f3a780,472,"Context2d.getImageData /home/linus/development/projects/turkey/node_modules/canvas/lib/context2d.js:261",0x223e80dae7c8,~
code-creation,Function,0x1f9009f3a960,160," /home/linus/development/projects/turkey/node_modules/canvas/lib/context2d.js:287",0x223e80dae898,~
code-creation,Function,0x1f9009f3aa00,192,"Context2d.getImageData /home/linus/development/projects/turkey/node_modules/canvas/lib/context2d.js:302",0x223e80dae990,~
code-creation,Function,0x1f9009f3aac0,240,"Context2d.createImageData /home/linus/development/projects/turkey/node_modules/canvas/lib/context2d.js:317",0x223e80daea70,~
code-creation,LazyCompile,0x1f9009f3abc0,2284," /home/linus/development/projects/turkey/node_modules/canvas/lib/context2d.js:1",0x223e80dada88,~
code-creation,LazyCompile,0x1f9009f3b4c0,704,"__defineSetter__ native v8natives.js:321",0x3f0f96bdc280,~
code-creation,LazyCompile,0x1f9009f3b780,612,"SameValue native runtime.js:610",0x3f0f96be5dd0,~
tick,0x6534f8,0x7fff19045bc0,0,0x0,0,0x1f9009ebb3ee,0x1f9009f3b767,0x1f9009f3b214,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f364e3,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f310cf,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,CallIC,0x1f9009f3ba00,149,"SameValue"
code-creation,LoadIC,0x1f9009f3baa0,108,"get"
code-creation,LoadIC,0x1f9009f3baa0,108,"get"
code-creation,Script,0x1f9009f3bb20,160,"/home/linus/development/projects/turkey/node_modules/canvas/lib/pngstream.js",0x223e80daf1a8,
code-creation,LazyCompile,0x1f9009f3bbc0,284," /home/linus/development/projects/turkey/node_modules/canvas/lib/pngstream.js:1",0x223e80daf0d0,~
tick,0x61c674,0x7fff19045ea0,0,0x27c23a8,0,0x1f9009f2cba5,0x1f9009f0a624,0x1f9009f0d66b,0x1f9009f0f387,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f366b0,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f310cf,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,LoadIC,0x1f9009f3bce0,108,"get"
code-creation,LoadIC,0x1f9009f3bce0,108,"get"
code-creation,Script,0x1f9009f3bd60,160,"/home/linus/development/projects/turkey/node_modules/canvas/lib/image.js",0x223e80daf648,
code-creation,LazyCompile,0x1f9009f3be00,388," /home/linus/development/projects/turkey/node_modules/canvas/lib/image.js:1",0x223e80daf570,~
code-creation,LoadIC,0x1f9009f3c040,108,"get"
code-creation,LoadIC,0x1f9009f3c040,108,"get"
code-creation,Script,0x1f9009f3c0c0,160,"/home/linus/development/projects/turkey/node_modules/canvas/lib/pixelarray.js",0x223e80dafc28,
code-creation,LazyCompile,0x1f9009f3c160,248," /home/linus/development/projects/turkey/node_modules/canvas/lib/pixelarray.js:1",0x223e80dafb50,~
code-creation,LoadIC,0x1f9009f3c260,102,"paths"
code-creation,LoadIC,0x1f9009f3c260,102,"paths"
tick,0x5d3c2f,0x7fff190459b0,0,0x27c2158,0,0x1f9009ebb393,0x1f9009ec8e25,0x1f9009ec929c,0x1f9009ec9af6,0x1f9009ec9b17,0x1f9009f1c806,0x1f9009f0c45c,0x1f9009f0ca35,0x1f9009f0cb9c,0x1f9009f0d1a6,0x1f9009f0efd6,0x1f9009f0e9d3,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,CallIC,0x1f9009f3c2e0,142,"parse"
code-creation,LoadIC,0x1f9009f3c380,106,"main"
code-creation,LoadIC,0x1f9009f3c380,106,"main"
code-creation,LoadIC,0x1f9009f3c400,108,"get"
code-creation,LoadIC,0x1f9009f3c400,108,"get"
code-creation,Script,0x1f9009f3c480,160,"/home/linus/development/projects/turkey/node_modules/express/index.js",0x223e80db02f0,
code-creation,LazyCompile,0x1f9009f3c520,156," /home/linus/development/projects/turkey/node_modules/express/index.js:1",0x223e80db0218,~
tick,0x7fc5979d8766,0x7fff19045f10,0,0x96baf0,2,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,LoadIC,0x1f9009f3c5c0,108,"get"
code-creation,LoadIC,0x1f9009f3c5c0,108,"get"
code-creation,Script,0x1f9009f3c640,160,"/home/linus/development/projects/turkey/node_modules/express/lib/express.js",0x223e80db06a8,
code-creation,Function,0x1f9009f3c6e0,488,"exports.createServer /home/linus/development/projects/turkey/node_modules/express/lib/express.js:41",0x223e80db07e0,~
code-creation,LazyCompile,0x1f9009f3c8e0,800," /home/linus/development/projects/turkey/node_modules/express/lib/express.js:1",0x223e80db05d0,~
tick,0x6b7a27,0x7fff19045a40,0,0x41efffffffe00000,0,0x1f9009f0a423,0x1f9009f0716e,0x1f9009f0c5fe,0x1f9009f0c82c,0x1f9009f0d1e0,0x1f9009f0efd6,0x1f9009f0e9d3,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,Function,0x1f9009f3cc00,312," fs.js:142",0x223e80db09d0,~
code-creation,LazyCompile,0x1f9009f3cd40,1456,"fs.readFileSync fs.js:119",0x12824e0c3d18,~
code-creation,LazyCompile,0x1f9009f3d300,2540,"fs.readFileSync fs.js:119",0x12824e0c3d18,*
tick,0x7fc5979de745,0x7fff19045a08,0,0x57e7c8,3,0x1f9009f1c806,0x1f9009f0c45c,0x1f9009f0ca35,0x1f9009f0cb9c,0x1f9009f0d1a6,0x1f9009f0efd6,0x1f9009f0e9d3,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,LoadIC,0x1f9009f3dd00,106,"main"
code-creation,LoadIC,0x1f9009f3dd00,106,"main"
code-creation,LoadIC,0x1f9009f3dd80,108,"get"
code-creation,LoadIC,0x1f9009f3dd80,108,"get"
code-creation,Script,0x1f9009f3de00,160,"/home/linus/development/projects/turkey/node_modules/express/node_modules/connect/index.js",0x223e80db1b88,
code-creation,LazyCompile,0x1f9009f3dea0,156," /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/index.js:1",0x223e80db1ab0,~
code-creation,LoadIC,0x1f9009f3df40,108,"get"
code-creation,LoadIC,0x1f9009f3df40,108,"get"
tick,0x64988d,0x7fff19044d00,1,0x536740,2,0x1f9009f108c2,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,Script,0x1f9009f19f60,160,"/home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/connect.js",0x223e80db1f40,
code-creation,Function,0x1f9009f29e40,416,"createServer /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/connect.js:65",0x223e80db20d0,~
code-creation,Function,0x1f9009f1ff40,160,"exports.HTTPServer /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/connect.js:88",0x223e80db21a0,~
code-creation,Function,0x1f9009f05d20,560," /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/connect.js:85",0x223e80db2288,~
code-creation,LazyCompile,0x1f9009f0f920,1104," /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/connect.js:1",0x223e80db1e68,~
code-creation,LoadIC,0x1f9009f2ff80,108,"get"
code-creation,LoadIC,0x1f9009f2ff80,108,"get"
tick,0x6cf85c,0x7fff19042790,1,0x536740,2,0x1f9009f108c2,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f0fa3a,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,Script,0x1f9009f05f60,160,"/home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/http.js",0x223e80db2678,
code-creation,Function,0x1f9009f39f20,128,"exports.Server /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/http.js:39",0x223e80db27c8,~
code-creation,Function,0x1f9009f03ea0,292,"HTTPServer /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/http.js:37",0x223e80db28a0,~
code-creation,Function,0x1f9009f37f20,136,"Server.use.handle /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/http.js:104",0x223e80db2988,~
code-creation,Function,0x1f9009f21ce0,776,"Server.use /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/http.js:91",0x223e80db2a78,~
code-creation,Function,0x1f9009f11400,2856,"next /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/http.js:139",0x223e80db2b78,~
code-creation,Function,0x1f9009f35ca0,684,"Server.handle /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/http.js:133",0x223e80db2cd8,~
code-creation,LazyCompile,0x1f9009f23c80,888," /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/http.js:1",0x223e80db25a0,~
tick,0x6d054f,0x7fff19043a90,1,0x536740,2,0x1f9009f0bdc2,0x1f9009ed3da9,0x1f9009f0ebef,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f23cfa,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f0fa3a,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
tick,0x66a829,0x7fff190423d0,1,0x536740,2,0x1f9009f0bdc2,0x1f9009ed3da9,0x1f9009f0ebef,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f23cfa,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f0fa3a,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
tick,0x6d8091,0x7fff19042ce0,1,0x536740,2,0x1f9009f0bdc2,0x1f9009ed3da9,0x1f9009f0ebef,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f23cfa,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f0fa3a,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,Script,0x1f9009f35f60,160,"http.js",0x223e80db3348,
tick,0x6804e0,0x7fff190442d8,0,0x6d7138,2,0x1f9009f0be2b,0x1f9009ed3da9,0x1f9009f0ebef,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f23cfa,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f0fa3a,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
tick,0x646620,0x7fff190433f8,0,0x649231,2,0x1f9009f0be2b,0x1f9009ed3da9,0x1f9009f0ebef,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f23cfa,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f0fa3a,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,Stub,0x1f9009f15e00,352,"FastNewContextStub"
code-creation,Function,0x1f9009f0fd80,528,"IncomingMessage http.js:213",0x223e80db3850,~
code-creation,Function,0x1f9009f13c00,476,"OutgoingMessage http.js:317",0x223e80db3920,~
code-creation,Function,0x1f9009f13de0,396,"ServerResponse http.js:773",0x223e80db39f8,~
code-creation,Function,0x1f9009f09bc0,356,"self.createConnection http.js:895",0x223e80db3ae8,~
code-creation,Function,0x1f9009f09d40,616,"Agent http.js:889",0x223e80db3bd0,~
code-creation,Function,0x1f9009f13f80,128,"exports.ClientRequest http.js:1064",0x223e80db3ca0,~
code-creation,Function,0x1f9009f56040,3308,"ClientRequest http.js:983",0x223e80db3dc0,~
code-creation,Function,0x1f9009f56d40,192,"createHangUpError http.js:1090",0x223e80db3e98,~
code-creation,Function,0x1f9009f56e00,196,"socket.ondrain http.js:1307",0x223e80db3f68,~
code-creation,Function,0x1f9009f56ee0,244,"httpSocketSetup http.js:1305",0x223e80db4098,~
code-creation,Function,0x1f9009f56fe0,388,"Server http.js:1315",0x223e80db4170,~
code-creation,Function,0x1f9009f57180,268,"abortIncoming http.js:1346",0x223e80db4248,~
code-creation,Function,0x1f9009f572a0,128," http.js:1360",0x223e80db4318,~
code-creation,Function,0x1f9009f57320,144," http.js:1369",0x223e80db43f0,~
code-creation,Function,0x1f9009f573c0,680,"socket.ondata http.js:1373",0x223e80db44f8,~
code-creation,Function,0x1f9009f57680,668,"socket.onend http.js:1397",0x223e80db45d0,~
code-creation,Function,0x1f9009f57920,204," http.js:1418",0x223e80db46a0,~
code-creation,Function,0x1f9009f57a00,492,"parser.onIncoming.res._expect_continue http.js:1446",0x223e80db4778,~
code-creation,Function,0x1f9009f58040,1128,"parser.onIncoming http.js:1429",0x223e80db4878,~
code-creation,Function,0x1f9009f584c0,1204,"connectionListener http.js:1341",0x223e80db49b0,~
code-creation,Function,0x1f9009f58980,364,"Client http.js:1487",0x223e80db4a90,~
code-creation,Function,0x1f9009f58b00,156,"debug http.js:33",0x223e80db4b68,~
code-creation,Function,0x1f9009f58ba0,104,"debug http.js:35",0x223e80db4c38,~
code-creation,Function,0x1f9009f58c20,220,"parser.onHeaders http.js:50",0x223e80db4d18,~
code-creation,Function,0x1f9009f58d00,1300,"parser.onHeadersComplete http.js:60",0x223e80db4e28,~
code-creation,Function,0x1f9009f59220,424,"parser.onBody http.js:108",0x223e80db4f20,~
tick,0x7fc597d0509e,0x7fff19044030,0,0x8920f0,2,0x1f9009f0be2b,0x1f9009ed3da9,0x1f9009f0ebef,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f23cfa,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f0fa3a,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,Function,0x1f9009f593e0,740,"parser.onMessageComplete http.js:119",0x223e80db5018,~
code-creation,Function,0x1f9009f596e0,580," http.js:39",0x223e80db50f8,~
code-creation,Function,0x1f9009f59940,144,"IncomingMessage.destroy http.js:242",0x223e80db51d0,~
code-creation,Function,0x1f9009f599e0,204,"IncomingMessage.setEncoding http.js:247",0x223e80db52b0,~
code-creation,Function,0x1f9009f59ac0,144,"IncomingMessage.pause http.js:253",0x223e80db5380,~
code-creation,Function,0x1f9009f59b60,144,"IncomingMessage.resume http.js:258",0x223e80db5450,~
code-creation,Function,0x1f9009f5a040,1124,"IncomingMessage._addHeaderLine http.js:270",0x223e80db5538,~
code-creation,Function,0x1f9009f5a4c0,280,"OutgoingMessage.assignSocket http.js:341",0x223e80db5610,~
code-creation,Function,0x1f9009f5a5e0,272,"OutgoingMessage.detachSocket http.js:350",0x223e80db56e8,~
code-creation,Function,0x1f9009f5a700,144,"OutgoingMessage.destroy http.js:357",0x223e80db57c0,~
code-creation,Function,0x1f9009f5a7a0,400,"OutgoingMessage._send http.js:363",0x223e80db58a0,~
code-creation,Function,0x1f9009f5a940,660,"OutgoingMessage._writeRaw http.js:380",0x223e80db5990,~
code-creation,Function,0x1f9009f5abe0,812,"OutgoingMessage._buffer http.js:404",0x223e80db5a88,~
code-creation,Function,0x1f9009f5af20,944,"store http.js:443",0x223e80db5b68,~
code-creation,Function,0x1f9009f5b2e0,2152,"OutgoingMessage._storeHeader http.js:431",0x223e80db5cf0,~
code-creation,Function,0x1f9009f5bb60,812,"OutgoingMessage.setHeader http.js:525",0x223e80db5e00,~
code-creation,Function,0x1f9009f5c040,432,"OutgoingMessage.getHeader http.js:542",0x223e80db5ef8,~
code-creation,Function,0x1f9009f5c200,600,"OutgoingMessage.removeHeader http.js:554",0x223e80db6040,~
code-creation,Function,0x1f9009f5c460,660,"OutgoingMessage._renderHeaders http.js:571",0x223e80db6138,~
code-creation,Function,0x1f9009f5c700,1040,"OutgoingMessage.write http.js:589",0x223e80db6228,~
code-creation,Function,0x1f9009f5cb20,704,"OutgoingMessage.addTrailers http.js:628",0x223e80db6338,~
code-creation,Function,0x1f9009f5cde0,1796,"OutgoingMessage.end http.js:648",0x223e80db6430,~
code-creation,Function,0x1f9009f5d500,308,"OutgoingMessage._finish http.js:715",0x223e80db6500,~
code-creation,Function,0x1f9009f5d640,544,"OutgoingMessage._flush http.js:727",0x223e80db65e8,~
code-creation,Function,0x1f9009f5d860,216,"ServerResponse.writeContinue http.js:790",0x223e80db66b8,~
code-creation,Function,0x1f9009f5d940,144,"ServerResponse._implicitHeader http.js:795",0x223e80db6788,~
code-creation,Function,0x1f9009f5e040,1788,"ServerResponse.writeHead http.js:799",0x223e80db68c8,~
code-creation,Function,0x1f9009f5e740,168,"ServerResponse.writeHeader http.js:872",0x223e80db69a0,~
code-creation,Function,0x1f9009f5e800,560,"Agent.addRequest http.js:915",0x223e80db6a90,~
code-creation,Function,0x1f9009f5ea40,160,"Agent.createSocket.onFree http.js:938",0x223e80db6b60,~
code-creation,Function,0x1f9009f5eae0,152,"Agent.createSocket.onClose http.js:942",0x223e80db6c38,~
code-creation,Function,0x1f9009f5eb80,280,"Agent.createSocket.onRemove http.js:949",0x223e80db6d08,~
code-creation,Function,0x1f9009f5eca0,1080,"Agent.createSocket http.js:931",0x223e80db6e70,~
code-creation,Function,0x1f9009f5f0e0,700,"Agent.removeSocket http.js:961",0x223e80db6f68,~
code-creation,Function,0x1f9009f5f3a0,232,"ClientRequest._implicitHeader http.js:1073",0x223e80db7038,~
code-creation,Function,0x1f9009f5f4a0,244,"ClientRequest.abort http.js:1077",0x223e80db7108,~
code-creation,Function,0x1f9009f5f5a0,344,"ClientRequest.onSocket.process.nextTick.errorListener http.js:1112",0x223e80db71e0,~
code-creation,Function,0x1f9009f5f700,772,"ClientRequest.onSocket.process.nextTick.socket.ondata http.js:1123",0x223e80db72e8,~
code-creation,Function,0x1f9009f5fa20,332,"ClientRequest.onSocket.process.nextTick.socket.onend http.js:1150",0x223e80db73b8,~
tick,0x647442,0x7fff19043e00,0,0x0,2,0x1f9009f0be2b,0x1f9009ed3da9,0x1f9009f0ebef,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f23cfa,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f0fa3a,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,Function,0x1f9009f5fb80,592,"ClientRequest.onSocket.process.nextTick.closeListener http.js:1162",0x223e80db7488,~
code-creation,Function,0x1f9009f5fde0,392,"ClientRequest.onSocket.process.nextTick.parser.onIncoming http.js:1212",0x223e80db7558,~
code-creation,Function,0x1f9009f60040,268,"ClientRequest.onSocket.process.nextTick.parser.onIncoming http.js:1227",0x223e80db7628,~
code-creation,Function,0x1f9009f60160,888,"ClientRequest.onSocket.process.nextTick.parser.onIncoming http.js:1179",0x223e80db7710,~
code-creation,Function,0x1f9009f604e0,992,"ClientRequest.onSocket http.js:1099",0x223e80db7810,~
code-creation,Function,0x1f9009f608c0,308,"ClientRequest.onSocket http.js:1097",0x223e80db7908,~
code-creation,Function,0x1f9009f60a00,260,"ClientRequest._deferToConnect.onSocket http.js:1255",0x223e80db79d8,~
code-creation,Function,0x1f9009f60b20,388,"ClientRequest._deferToConnect.onSocket http.js:1248",0x223e80db7aa8,~
code-creation,Function,0x1f9009f60cc0,516,"ClientRequest._deferToConnect http.js:1241",0x223e80db7bd8,~
code-creation,Function,0x1f9009f60ee0,160,"ClientRequest.setTimeout http.js:1269",0x223e80db7cb0,~
code-creation,Function,0x1f9009f60f80,160,"ClientRequest.setNoDelay http.js:1272",0x223e80db7d88,~
code-creation,Function,0x1f9009f61020,160,"ClientRequest.setSocketKeepAlive http.js:1275",0x223e80db7e60,~
code-creation,Function,0x1f9009f610c0,196,"ClientRequest.pause http.js:1280",0x223e80db7f30,~
code-creation,Function,0x1f9009f611a0,276,"ClientRequest.pause http.js:1278",0x223e80d8bf50,~
code-creation,Function,0x1f9009f612c0,444,"exports.request http.js:1286",0x223e80d91f20,~
code-creation,Function,0x1f9009f61480,200,"exports.get http.js:1298",0x223e80d87f68,~
code-creation,Function,0x1f9009f61560,128,"exports.createServer http.js:1336",0x223e80d85ef0,~
code-creation,Function,0x1f9009f615e0,144,"Client.request http.js:1510",0x223e80d8ded0,~
code-creation,Function,0x1f9009f61680,140,"Client.request http.js:1517",0x223e80d8df60,~
code-creation,Function,0x1f9009f61720,156,"Client.request http.js:1516",0x223e80d95ec0,~
code-creation,Function,0x1f9009f617c0,656,"Client.request http.js:1495",0x223e80d9deb0,~
code-creation,Function,0x1f9009f61a60,132,"exports.createClient http.js:1525",0x223e80d97e70,~
code-creation,LazyCompile,0x1f9009f96040,9044," http.js:1",0x223e80db3270,~
tick,0x6ccc8b,0x7fff19042ac0,1,0x536740,2,0x1f9009f0bdc2,0x1f9009ed3da9,0x1f9009f9654a,0x1f9009f0be2b,0x1f9009ed3da9,0x1f9009f0ebef,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f23cfa,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f0fa3a,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,Script,0x1f9009f61b00,160,"net.js",0x223e80d99d50,
tick,0x6cf8fd,0x7fff19044240,0,0x7fff19044b1f,2,0x1f9009f0be2b,0x1f9009ed3da9,0x1f9009f9654a,0x1f9009f0be2b,0x1f9009ed3da9,0x1f9009f0ebef,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f23cfa,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f0fa3a,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
tick,0x6383a0,0x7fff190445e0,0,0x0,1
tick,0x637e31,0x7fff19044630,0,0x0,1
code-delete,0x1f9009eb1f40
code-delete,0x1f9009eb9c40
code-delete,0x1f9009eb9dc0
code-delete,0x1f9009eb9e80
code-delete,0x1f9009eb9f40
code-delete,0x1f9009ec3ea0
code-delete,0x1f9009ec5be0
tick,0x7fc5979a32b0,0x7fff19043d58,0,0x0,1
code-delete,0x1f9009ec5ca0
code-delete,0x1f9009ec5d60
code-delete,0x1f9009ec5e20
code-delete,0x1f9009ec5ee0
code-delete,0x1f9009ecbf60
code-delete,0x1f9009ece820
code-delete,0x1f9009ecece0
code-delete,0x1f9009eced60
code-delete,0x1f9009ecee00
code-delete,0x1f9009ecee80
code-delete,0x1f9009ecefc0
code-delete,0x1f9009ecf040
code-delete,0x1f9009ed1f00
code-delete,0x1f9009ed4dc0
code-delete,0x1f9009ed6fe0
code-delete,0x1f9009ed70a0
code-delete,0x1f9009ed7120
code-delete,0x1f9009ed71a0
code-delete,0x1f9009ed7220
code-delete,0x1f9009ed72a0
code-delete,0x1f9009ed7340
code-delete,0x1f9009ed73c0
code-delete,0x1f9009ed7560
code-delete,0x1f9009ed7620
code-delete,0x1f9009ed76e0
code-delete,0x1f9009ed77a0
code-delete,0x1f9009ed7860
code-delete,0x1f9009ed7900
code-delete,0x1f9009ed7980
code-delete,0x1f9009ed7a00
code-delete,0x1f9009ed7a80
code-delete,0x1f9009ed7b00
code-delete,0x1f9009ed7c20
code-delete,0x1f9009ed7ca0
code-delete,0x1f9009ee0e60
code-delete,0x1f9009ee1e20
code-delete,0x1f9009ee1ee0
code-delete,0x1f9009ee3f60
code-delete,0x1f9009ee4880
code-delete,0x1f9009ee5d80
code-delete,0x1f9009ee5e40
code-delete,0x1f9009ee5f00
code-delete,0x1f9009f02040
code-delete,0x1f9009f02100
code-delete,0x1f9009f021c0
code-delete,0x1f9009f02280
code-delete,0x1f9009f02340
code-delete,0x1f9009f02400
code-delete,0x1f9009f024c0
code-delete,0x1f9009f02580
code-delete,0x1f9009f02640
code-delete,0x1f9009f02700
code-delete,0x1f9009f027a0
code-delete,0x1f9009f02840
code-delete,0x1f9009f028e0
code-delete,0x1f9009f029c0
code-delete,0x1f9009f02a40
code-delete,0x1f9009f02b20
code-delete,0x1f9009f02ba0
code-delete,0x1f9009f02c80
code-delete,0x1f9009f02d00
code-delete,0x1f9009f02de0
code-delete,0x1f9009f02e60
code-delete,0x1f9009f02f00
code-delete,0x1f9009f02fe0
code-delete,0x1f9009f03060
code-delete,0x1f9009f03140
code-delete,0x1f9009f031c0
code-delete,0x1f9009f03260
code-delete,0x1f9009f032e0
code-delete,0x1f9009f03360
code-delete,0x1f9009f03440
code-delete,0x1f9009f03520
code-delete,0x1f9009f036e0
code-delete,0x1f9009f03780
code-delete,0x1f9009f03860
code-delete,0x1f9009f03900
code-delete,0x1f9009f039e0
code-delete,0x1f9009f03a60
code-delete,0x1f9009f03b40
code-delete,0x1f9009f03bc0
code-delete,0x1f9009f03c40
code-delete,0x1f9009f03cc0
code-delete,0x1f9009f09260
code-delete,0x1f9009f09420
code-delete,0x1f9009f094a0
code-delete,0x1f9009f0b6c0
code-delete,0x1f9009f131c0
code-delete,0x1f9009f13320
code-delete,0x1f9009f133a0
code-delete,0x1f9009f13480
code-delete,0x1f9009f13560
code-delete,0x1f9009f13600
code-delete,0x1f9009f136c0
code-delete,0x1f9009f13780
code-delete,0x1f9009f15ce0
code-delete,0x1f9009f15d60
code-delete,0x1f9009f16a20
code-delete,0x1f9009f25960
code-delete,0x1f9009f26d00
code-delete,0x1f9009f26d80
code-delete,0x1f9009f26e00
code-delete,0x1f9009f26e80
code-delete,0x1f9009f26f20
code-delete,0x1f9009f26fc0
code-delete,0x1f9009f27040
code-delete,0x1f9009f270e0
code-delete,0x1f9009f27160
code-delete,0x1f9009f27200
code-delete,0x1f9009f27280
code-delete,0x1f9009f27300
code-delete,0x1f9009f273e0
code-delete,0x1f9009f27460
code-delete,0x1f9009f27540
code-delete,0x1f9009f275e0
code-delete,0x1f9009f276c0
code-delete,0x1f9009f27740
code-delete,0x1f9009f27820
code-delete,0x1f9009f278a0
code-delete,0x1f9009f27940
code-delete,0x1f9009f28300
code-delete,0x1f9009f283c0
code-delete,0x1f9009f28480
code-delete,0x1f9009f28980
code-delete,0x1f9009f28a00
code-delete,0x1f9009f28ac0
code-delete,0x1f9009f28b60
code-delete,0x1f9009f29080
code-delete,0x1f9009f29100
code-delete,0x1f9009f291c0
code-delete,0x1f9009f29260
code-delete,0x1f9009f29300
code-delete,0x1f9009f293a0
code-delete,0x1f9009f294e0
code-delete,0x1f9009f2a460
code-delete,0x1f9009f2ad20
code-delete,0x1f9009f2ada0
code-delete,0x1f9009f2ae20
code-delete,0x1f9009f2aec0
code-delete,0x1f9009f2af40
code-delete,0x1f9009f2afc0
code-delete,0x1f9009f2b040
code-delete,0x1f9009f2b0e0
code-delete,0x1f9009f2b160
code-delete,0x1f9009f2b1e0
code-delete,0x1f9009f2b280
code-delete,0x1f9009f2b300
code-delete,0x1f9009f2b3c0
code-delete,0x1f9009f2b560
code-delete,0x1f9009f2b600
code-delete,0x1f9009f2b6a0
code-delete,0x1f9009f2b760
code-delete,0x1f9009f2cc00
code-delete,0x1f9009f2cf20
code-delete,0x1f9009f2cfe0
code-delete,0x1f9009f2d7c0
code-delete,0x1f9009f2da20
code-delete,0x1f9009f2daa0
code-delete,0x1f9009f2db40
code-delete,0x1f9009f2dc00
code-delete,0x1f9009f2dc80
code-delete,0x1f9009f2dd00
code-delete,0x1f9009f2ddc0
code-delete,0x1f9009f2de40
code-delete,0x1f9009f2df00
code-delete,0x1f9009f2df80
code-delete,0x1f9009f2e040
code-delete,0x1f9009f2e0c0
code-delete,0x1f9009f2e140
code-delete,0x1f9009f2e1c0
code-delete,0x1f9009f2e320
code-delete,0x1f9009f2e4c0
code-delete,0x1f9009f2e540
code-delete,0x1f9009f2e5c0
code-delete,0x1f9009f2e680
code-delete,0x1f9009f2e7e0
code-delete,0x1f9009f2e860
code-delete,0x1f9009f2fe00
code-delete,0x1f9009f2ff80
code-delete,0x1f9009f31a20
code-delete,0x1f9009f31aa0
code-delete,0x1f9009f31b20
code-delete,0x1f9009f31bc0
code-delete,0x1f9009f31c60
code-delete,0x1f9009f31ce0
code-delete,0x1f9009f31d60
code-delete,0x1f9009f31de0
code-delete,0x1f9009f31e60
code-delete,0x1f9009f31f00
code-delete,0x1f9009f32040
code-delete,0x1f9009f320c0
code-delete,0x1f9009f32140
code-delete,0x1f9009f321c0
code-delete,0x1f9009f322a0
code-delete,0x1f9009f32340
code-delete,0x1f9009f323e0
code-delete,0x1f9009f32460
code-delete,0x1f9009f324e0
code-delete,0x1f9009f32580
code-delete,0x1f9009f32600
code-delete,0x1f9009f327a0
code-delete,0x1f9009f32960
code-delete,0x1f9009f32a20
code-delete,0x1f9009f32ae0
code-delete,0x1f9009f32b60
code-delete,0x1f9009f32be0
code-delete,0x1f9009f32c60
code-delete,0x1f9009f32d20
code-delete,0x1f9009f32e80
code-delete,0x1f9009f32f00
code-delete,0x1f9009f32fa0
code-delete,0x1f9009f33020
code-delete,0x1f9009f330a0
code-delete,0x1f9009f33140
code-delete,0x1f9009f331c0
code-delete,0x1f9009f332a0
code-delete,0x1f9009f33380
code-delete,0x1f9009f334e0
code-delete,0x1f9009f33560
code-delete,0x1f9009f33700
code-delete,0x1f9009f337c0
code-delete,0x1f9009f33840
code-delete,0x1f9009f339e0
code-delete,0x1f9009f33a60
code-delete,0x1f9009f33b00
code-delete,0x1f9009f33b80
code-delete,0x1f9009f33c00
code-delete,0x1f9009f33c80
code-delete,0x1f9009f33d00
code-delete,0x1f9009f33dc0
code-delete,0x1f9009f33e60
code-delete,0x1f9009f33f40
code-delete,0x1f9009f34040
code-delete,0x1f9009f340c0
code-delete,0x1f9009f34480
code-delete,0x1f9009f34500
code-delete,0x1f9009f34580
code-delete,0x1f9009f34620
code-delete,0x1f9009f346e0
code-delete,0x1f9009f347a0
code-delete,0x1f9009f34860
code-delete,0x1f9009f34920
code-delete,0x1f9009f349e0
code-delete,0x1f9009f34aa0
code-delete,0x1f9009f34be0
code-delete,0x1f9009f34c80
code-delete,0x1f9009f34d00
code-delete,0x1f9009f34d80
code-delete,0x1f9009f34e00
code-delete,0x1f9009f34e80
code-delete,0x1f9009f34f00
code-delete,0x1f9009f34fc0
code-delete,0x1f9009f35040
code-delete,0x1f9009f350c0
code-delete,0x1f9009f35300
code-delete,0x1f9009f353a0
code-delete,0x1f9009f35480
code-delete,0x1f9009f35500
code-delete,0x1f9009f35580
code-delete,0x1f9009f35600
code-delete,0x1f9009f35720
code-delete,0x1f9009f357a0
code-delete,0x1f9009f37820
code-delete,0x1f9009f378c0
code-delete,0x1f9009f37c20
code-delete,0x1f9009f37ca0
code-delete,0x1f9009f37d40
code-delete,0x1f9009f37de0
code-delete,0x1f9009f37e60
code-delete,0x1f9009f38960
code-delete,0x1f9009f38a00
code-delete,0x1f9009f38aa0
code-delete,0x1f9009f38b60
code-delete,0x1f9009f38c00
code-delete,0x1f9009f38ca0
code-delete,0x1f9009f38d40
code-delete,0x1f9009f38de0
code-delete,0x1f9009f38ea0
code-delete,0x1f9009f394c0
code-delete,0x1f9009f39560
code-delete,0x1f9009f39720
code-delete,0x1f9009f3ba00
code-delete,0x1f9009f3baa0
code-delete,0x1f9009f3bce0
code-delete,0x1f9009f3c040
code-delete,0x1f9009f3c260
code-delete,0x1f9009f3c2e0
code-delete,0x1f9009f3c380
code-delete,0x1f9009f3c400
code-delete,0x1f9009f3c5c0
code-delete,0x1f9009f3cc00
code-delete,0x1f9009f3cd40
code-delete,0x1f9009f3dd00
code-delete,0x1f9009f3dd80
code-delete,0x1f9009f3df40
tick,0x63a49b,0x7fff19044730,0,0x0,1
code-creation,Function,0x1f9009f61ba0,104,"noop net.js:28",0x223e80d99e28,~
code-creation,Function,0x1f9009f61c20,192,"createPipe net.js:31",0x3b9aad978218,~
code-creation,Function,0x1f9009f61ce0,192,"createTCP net.js:37",0x3b9aad9782f0,~
code-creation,Function,0x1f9009f61da0,268,"isPipeName net.js:58",0x3b9aad9783c8,~
code-creation,Function,0x1f9009f62040,356,"initSocketHandle net.js:81",0x3b9aad9784a0,~
code-creation,Function,0x1f9009f621c0,624,"Socket net.js:97",0x3b9aad978580,~
code-creation,Function,0x1f9009f62440,440,"afterShutdown net.js:240",0x3b9aad978670,~
code-creation,Function,0x1f9009f62600,1412,"onread net.js:309",0x3b9aad978778,~
code-creation,Function,0x1f9009f62ba0,596,"afterWrite net.js:449",0x3b9aad978870,~
code-creation,Function,0x1f9009f62e00,612,"connect net.js:476",0x3b9aad978968,~
tick,0x7fc597a9064d,0x7fff190448c8,0,0x64b886,2,0x1f9009f0be2b,0x1f9009ed3da9,0x1f9009f9654a,0x1f9009f0be2b,0x1f9009ed3da9,0x1f9009f0ebef,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f23cfa,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f0fa3a,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,Stub,0x1f9009f63080,111,"BinaryOpStub_BIT_AND_OverwriteRight_Uninitialized"
code-creation,Function,0x1f9009f63100,1084,"afterConnect net.js:569",0x3b9aad978a60,~
code-creation,Function,0x1f9009f63540,252,"errnoException net.js:612",0x3b9aad978b48,~
code-creation,Function,0x1f9009f63640,728,"Server net.js:625",0x3b9aad978c30,~
code-creation,Function,0x1f9009f63920,188,"toPort net.js:653",0x3b9aad978d08,~
code-creation,Function,0x1f9009f639e0,172,"Server.listen.self net.js:730",0x3b9aad978de0,~
code-creation,Function,0x1f9009f63aa0,588,"listen net.js:728",0x3b9aad978f10,~
code-creation,Function,0x1f9009f64040,800,"onconnection net.js:794",0x3b9aad979000,~
code-creation,Function,0x1f9009f64360,156,"debug net.js:52",0x3b9aad9790d8,~
code-creation,Function,0x1f9009f64400,104,"debug net.js:54",0x3b9aad9791a8,~
code-creation,Function,0x1f9009f64480,172,"exports.createServer net.js:63",0x3b9aad979280,~
code-creation,Function,0x1f9009f64540,464,"exports.connect.exports.createConnection net.js:68",0x3b9aad979378,~
code-creation,Function,0x1f9009f64720,232,"Socket.listen net.js:130",0x3b9aad979458,~
code-creation,Function,0x1f9009f64820,332,"Socket.setTimeout net.js:137",0x3b9aad979538,~
code-creation,Function,0x1f9009f64980,136,"Socket._onTimeout net.js:150",0x3b9aad979608,~
code-creation,Function,0x1f9009f64a20,224,"Socket.setNoDelay net.js:155",0x3b9aad9796d8,~
code-creation,Function,0x1f9009f64b00,260,"Socket.setKeepAlive net.js:161",0x3b9aad9797b8,~
code-creation,Function,0x1f9009f64c20,144,"Socket.address net.js:167",0x3b9aad979888,~
code-creation,Function,0x1f9009f64cc0,432,"Object.defineProperty.get net.js:173",0x3b9aad979958,~
code-creation,Function,0x1f9009f64e80,168,"Object.defineProperty.get net.js:190",0x3b9aad979a28,~
code-creation,Function,0x1f9009f64f40,144,"Socket.pause net.js:196",0x3b9aad979af8,~
code-creation,Function,0x1f9009f64fe0,176,"Socket.resume net.js:201",0x3b9aad979bc8,~
code-creation,Function,0x1f9009f650a0,784,"Socket.end net.js:208",0x3b9aad979cb0,~
code-creation,Function,0x1f9009f653c0,264,"Socket.destroySoon net.js:258",0x3b9aad979d80,~
code-creation,Function,0x1f9009f654e0,184,"Socket._connectQueueCleanUp net.js:268",0x3b9aad979e58,~
code-creation,Function,0x1f9009f655a0,256,"Socket.destroy.destroyed net.js:300",0x3b9aad979f28,~
code-creation,Function,0x1f9009f656a0,860,"Socket.destroy net.js:275",0x3b9aad97a0a8,~
code-creation,Function,0x1f9009f65a00,204,"Socket.setEncoding net.js:363",0x3b9aad97a188,~
code-creation,Function,0x1f9009f65ae0,344,"Socket._getpeername net.js:369",0x3b9aad97a258,~
code-creation,Function,0x1f9009f65c40,144,"Socket.write.encoding net.js:380",0x3b9aad97a328,~
code-creation,Function,0x1f9009f65ce0,144,"Socket.write.encoding net.js:385",0x3b9aad97a3f8,~
code-creation,Function,0x1f9009f66040,1328,"Socket.write net.js:393",0x3b9aad97a4f0,~
code-creation,Function,0x1f9009f66580,484,"Socket._write net.js:430",0x3b9aad97a5e0,~
code-creation,Function,0x1f9009f66780,148,"Socket.connect.require.lookup.addressType net.js:545",0x3b9aad97a6b0,~
code-creation,Function,0x1f9009f66820,548,"Socket.connect net.js:534",0x3b9aad97a7a8,~
code-creation,Function,0x1f9009f66a60,1204,"Socket.connect net.js:504",0x3b9aad97a8b8,~
code-creation,Function,0x1f9009f66f20,756,"exports._createServerHandle net.js:657",0x3b9aad97a9b8,~
code-creation,Function,0x1f9009f67220,204,"Server._listen2.self._handle.onconnection net.js:701",0x3b9aad97aa88,~
code-creation,Function,0x1f9009f67300,204,"Server._listen2 net.js:716",0x3b9aad97ab58,~
code-creation,Function,0x1f9009f673e0,140,"Server._listen2 net.js:722",0x3b9aad97ac28,~
code-creation,Function,0x1f9009f67480,816,"Server._listen2 net.js:692",0x3b9aad97ad28,~
code-creation,Function,0x1f9009f677c0,280,"Server.listen net.js:773",0x3b9aad97ae10,~
code-creation,Function,0x1f9009f678e0,1256,"Server.listen net.js:740",0x3b9aad97af20,~
code-creation,Function,0x1f9009f67de0,304,"Server.address net.js:784",0x3b9aad97aff0,~
code-creation,Function,0x1f9009f68040,300,"Server.close net.js:827",0x3b9aad97b0c0,~
code-creation,Function,0x1f9009f68180,204,"Server._emitCloseIfDrained net.js:840",0x3b9aad97b190,~
code-creation,Function,0x1f9009f68260,168,"Server.listenFD net.js:847",0x3b9aad97b270,~
tick,0x66a7fb,0x7fff19044c58,0,0x73127d,2,0x1f9009f0be2b,0x1f9009ed3da9,0x1f9009f9654a,0x1f9009f0be2b,0x1f9009ed3da9,0x1f9009f0ebef,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f23cfa,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f0fa3a,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,Function,0x1f9009f68320,1076,"exports.isIP net.js:856",0x3b9aad97b360,~
code-creation,Function,0x1f9009f68760,180,"exports.isIPv4 net.js:877",0x3b9aad97b438,~
code-creation,Function,0x1f9009f68820,184,"exports.isIPv6 net.js:882",0x3b9aad97b510,~
code-creation,LazyCompile,0x1f9009f6a040,6136," net.js:1",0x223e80d97f00,~
code-creation,CallIC,0x1f9009f6b840,125,"getCached"
code-creation,LoadIC,0x1f9009f6b8c0,106,"_cache"
code-creation,LoadIC,0x1f9009f6b8c0,106,"_cache"
code-creation,KeyedLoadIC,0x1f9009f6b940,126,"stream"
code-creation,KeyedLoadIC,0x1f9009f6b940,126,"stream"
code-creation,LoadIC,0x1f9009f6b9c0,102,"exports"
code-creation,LoadIC,0x1f9009f6b9c0,102,"exports"
code-creation,StoreIC,0x1f9009f6ba40,178,"filename"
code-creation,StoreIC,0x1f9009f6ba40,178,"filename"
code-creation,StoreIC,0x1f9009f6bb00,178,"id"
code-creation,StoreIC,0x1f9009f6bb00,178,"id"
code-creation,StoreIC,0x1f9009f6bbc0,178,"exports"
code-creation,StoreIC,0x1f9009f6bbc0,178,"exports"
code-creation,StoreIC,0x1f9009f6bc80,178,"loaded"
code-creation,StoreIC,0x1f9009f6bc80,178,"loaded"
code-creation,KeyedLoadIC,0x1f9009f6bd40,98,""
code-creation,KeyedLoadIC,0x1f9009f6bd40,98,"args_count: 0"
code-creation,Script,0x1f9009f6bdc0,160,"timers.js",0x3b9aad97b9f8,
code-creation,Function,0x1f9009f6c040,1096,"list.ontimeout timers.js:68",0x3b9aad97bb48,~
code-creation,Function,0x1f9009f6c4a0,816,"insert timers.js:50",0x3b9aad97bc48,~
code-creation,Function,0x1f9009f6c7e0,204,"debug timers.js:28",0x3b9aad97bd20,~
code-creation,Function,0x1f9009f6c8c0,104,"debug timers.js:30",0x3b9aad97bdf0,~
tick,0x7fc5979d8d10,0x7fff19044728,0,0x7fc5979969ab,2,0x1f9009f0be2b,0x1f9009ed3da9,0x1f9009f6a797,0x1f9009f0be2b,0x1f9009ed3da9,0x1f9009f9654a,0x1f9009f0be2b,0x1f9009ed3da9,0x1f9009f0ebef,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f23cfa,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f0fa3a,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,Function,0x1f9009f6c940,380,"exports.unenroll timers.js:100",0x3b9aad97bed0,~
code-creation,Function,0x1f9009f6cac0,216,"exports.enroll timers.js:115",0x3b9aad97c040,~
code-creation,Function,0x1f9009f6cba0,372,"exports.active timers.js:127",0x3b9aad97c128,~
code-creation,Function,0x1f9009f6cd20,164,"exports.setTimeout.timer._onTimeout timers.js:157",0x3b9aad97c1f8,~
code-creation,Function,0x1f9009f6cde0,140,"exports.setTimeout.timer._onTimeout timers.js:174",0x3b9aad97c2c8,~
code-creation,Function,0x1f9009f6ce80,1324,"exports.setTimeout timers.js:146",0x3b9aad97c3f0,~
code-creation,Function,0x1f9009f6d3c0,332,"exports.clearTimeout timers.js:186",0x3b9aad97c4c8,~
code-creation,Function,0x1f9009f6d520,140,"exports.setInterval.timer.ontimeout timers.js:202",0x3b9aad97c598,~
code-creation,Function,0x1f9009f6d5c0,644,"exports.setInterval timers.js:198",0x3b9aad97c6c0,~
code-creation,Function,0x1f9009f6d860,196,"exports.clearInterval timers.js:211",0x3b9aad97c798,~
code-creation,LazyCompile,0x1f9009f6e040,1856," timers.js:1",0x3b9aad97b920,~
code-creation,KeyedStoreIC,0x1f9009f6e780,98,""
code-creation,KeyedStoreIC,0x1f9009f6e780,98,"args_count: 0"
code-creation,KeyedLoadIC,0x1f9009f6e800,98,""
code-creation,KeyedLoadIC,0x1f9009f6e800,98,"args_count: 0"
code-creation,CallIC,0x1f9009f6e880,149,"InstantiateFunction"
code-creation,LoadIC,0x1f9009f6e920,107,"kApiFunctionCache"
code-creation,LoadIC,0x1f9009f6e920,107,"kApiFunctionCache"
code-creation,KeyedLoadIC,0x1f9009f6e9a0,98,""
code-creation,KeyedLoadIC,0x1f9009f6e9a0,98,"args_count: 0"
code-creation,CallIC,0x1f9009f6ea20,149,"Instantiate"
code-creation,CallIC,0x1f9009f6eac0,149,"ConfigureTemplateInstance"
code-creation,CallIC,0x1f9009f6eb60,125,"exists"
code-creation,LoadIC,0x1f9009f6ebe0,106,"_source"
code-creation,LoadIC,0x1f9009f6ebe0,106,"_source"
code-creation,CallIC,0x1f9009f6ec60,148,"ToString"
code-creation,CallIC,0x1f9009f6ed00,386,"push"
code-creation,CallIC,0x1f9009f6eea0,155,"compile"
code-creation,LoadIC,0x1f9009f6ef40,106,"wrapper"
code-creation,LoadIC,0x1f9009f6ef40,106,"wrapper"
code-creation,Script,0x1f9009f6efc0,160,"_linklist.js",0x3b9aad97d5a0,
code-creation,Function,0x1f9009f6f060,148,"init _linklist.js:22",0x3b9aad97d6c0,~
code-creation,Function,0x1f9009f6f100,192,"peek _linklist.js:30",0x3b9aad97d798,~
code-creation,Function,0x1f9009f6f1c0,164,"shift _linklist.js:38",0x3b9aad97d878,~
code-creation,Function,0x1f9009f6f280,340,"remove _linklist.js:47",0x3b9aad97d950,~
code-creation,Function,0x1f9009f6f3e0,256,"append _linklist.js:63",0x3b9aad97da30,~
code-creation,Function,0x1f9009f6f4e0,168,"isEmpty _linklist.js:73",0x3b9aad97db08,~
code-creation,LazyCompile,0x1f9009f6f5a0,448," _linklist.js:1",0x3b9aad97d4c8,~
code-creation,KeyedLoadIC,0x1f9009f6f760,126,"assert"
code-creation,KeyedLoadIC,0x1f9009f6f760,126,"assert"
code-creation,CallIC,0x1f9009f6f7e0,155,"cache"
code-creation,LoadIC,0x1f9009f6f880,102,"id"
code-creation,LoadIC,0x1f9009f6f880,102,"id"
code-creation,StoreIC,0x1f9009f6f900,131,"super_"
code-creation,StoreIC,0x1f9009f6f900,131,"super_"
code-creation,StoreIC,0x1f9009f6f9a0,164,"value"
code-creation,StoreIC,0x1f9009f6f9a0,164,"value"
code-creation,StoreIC,0x1f9009f6fa60,164,"constructor"
code-creation,StoreIC,0x1f9009f6fa60,164,"constructor"
code-creation,KeyedLoadIC,0x1f9009f6fb20,98,""
code-creation,KeyedLoadIC,0x1f9009f6fb20,98,"args_count: 0"
code-creation,StoreIC,0x1f9009f6fba0,164,"enumerable_"
code-creation,StoreIC,0x1f9009f6fba0,164,"enumerable_"
code-creation,StoreIC,0x1f9009f6fc60,164,"hasEnumerable_"
code-creation,StoreIC,0x1f9009f6fc60,164,"hasEnumerable_"
code-creation,StoreIC,0x1f9009f6fd20,164,"configurable_"
code-creation,StoreIC,0x1f9009f6fd20,164,"configurable_"
code-creation,StoreIC,0x1f9009f6fde0,164,"hasConfigurable_"
code-creation,StoreIC,0x1f9009f6fde0,164,"hasConfigurable_"
tick,0x7fc5979e7e8a,0x7fff190445d8,0,0x7fc5979a4f9c,0,0x1f9009ebca73,0x1f9009eb8421,0x1f9009ec3cf8,0x1f9009ee1deb,0x1f9009ed1ec3,0x1f9009f6ac93,0x1f9009f0be2b,0x1f9009ed3da9,0x1f9009f9654a,0x1f9009f0be2b,0x1f9009ed3da9,0x1f9009f0ebef,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f23cfa,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f0fa3a,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,StoreIC,0x1f9009f6fea0,164,"value_"
code-creation,StoreIC,0x1f9009f6fea0,164,"value_"
code-creation,StoreIC,0x1f9009f70040,164,"hasValue_"
code-creation,StoreIC,0x1f9009f70040,164,"hasValue_"
code-creation,StoreIC,0x1f9009f70100,164,"writable_"
code-creation,StoreIC,0x1f9009f70100,164,"writable_"
code-creation,StoreIC,0x1f9009f701c0,164,"hasWritable_"
code-creation,StoreIC,0x1f9009f701c0,164,"hasWritable_"
code-creation,LoadIC,0x1f9009f70280,102,"hasValue_"
code-creation,LoadIC,0x1f9009f70280,102,"hasValue_"
code-creation,LoadIC,0x1f9009f70300,107,"PropertyDescriptor"
code-creation,LoadIC,0x1f9009f70300,107,"PropertyDescriptor"
code-creation,StoreIC,0x1f9009f70380,178,"value_"
code-creation,StoreIC,0x1f9009f70380,178,"value_"
code-creation,StoreIC,0x1f9009f70440,178,"hasValue_"
code-creation,StoreIC,0x1f9009f70440,178,"hasValue_"
code-creation,StoreIC,0x1f9009f70500,178,"writable_"
code-creation,StoreIC,0x1f9009f70500,178,"writable_"
code-creation,StoreIC,0x1f9009f705c0,178,"hasWritable_"
code-creation,StoreIC,0x1f9009f705c0,178,"hasWritable_"
code-creation,StoreIC,0x1f9009f70680,178,"enumerable_"
code-creation,StoreIC,0x1f9009f70680,178,"enumerable_"
code-creation,StoreIC,0x1f9009f70740,178,"hasEnumerable_"
code-creation,StoreIC,0x1f9009f70740,178,"hasEnumerable_"
code-creation,StoreIC,0x1f9009f70800,178,"configurable_"
code-creation,StoreIC,0x1f9009f70800,178,"configurable_"
code-creation,StoreIC,0x1f9009f708c0,178,"hasConfigurable_"
code-creation,StoreIC,0x1f9009f708c0,178,"hasConfigurable_"
code-creation,StoreIC,0x1f9009f70980,178,"get_"
code-creation,StoreIC,0x1f9009f70980,178,"get_"
code-creation,StoreIC,0x1f9009f70a40,178,"hasGetter_"
code-creation,StoreIC,0x1f9009f70a40,178,"hasGetter_"
code-creation,StoreIC,0x1f9009f70b00,178,"set_"
code-creation,StoreIC,0x1f9009f70b00,178,"set_"
code-creation,StoreIC,0x1f9009f70bc0,178,"hasSetter_"
code-creation,StoreIC,0x1f9009f70bc0,178,"hasSetter_"
code-creation,StoreIC,0x1f9009f70c80,164,"get_"
code-creation,StoreIC,0x1f9009f70c80,164,"get_"
code-creation,StoreIC,0x1f9009f70d40,164,"hasGetter_"
code-creation,StoreIC,0x1f9009f70d40,164,"hasGetter_"
code-creation,CallIC,0x1f9009f70e00,149,"IsInconsistentDescriptor"
code-creation,CallIC,0x1f9009f70ea0,149,"IsAccessorDescriptor"
code-creation,CallIC,0x1f9009f70f40,203,"hasGetter"
code-creation,LoadIC,0x1f9009f71020,102,"hasGetter_"
code-creation,LoadIC,0x1f9009f71020,102,"hasGetter_"
code-creation,CallIC,0x1f9009f710a0,200,"hasValue"
code-creation,LoadIC,0x1f9009f71180,102,"hasWritable_"
code-creation,LoadIC,0x1f9009f71180,102,"hasWritable_"
code-creation,CallIC,0x1f9009f71200,149,"ToObject"
code-creation,CallIC,0x1f9009f712a0,149,"ToString"
code-creation,CallIC,0x1f9009f71340,149,"ConvertDescriptorArrayToDescriptor"
code-creation,CallIC,0x1f9009f713e0,203,"hasEnumerable"
code-creation,LoadIC,0x1f9009f714c0,102,"hasEnumerable_"
code-creation,LoadIC,0x1f9009f714c0,102,"hasEnumerable_"
code-creation,CallIC,0x1f9009f71540,203,"hasConfigurable"
code-creation,LoadIC,0x1f9009f71620,102,"hasConfigurable_"
code-creation,LoadIC,0x1f9009f71620,102,"hasConfigurable_"
code-creation,CallIC,0x1f9009f716a0,149,"IsDataDescriptor"
code-creation,CallIC,0x1f9009f71740,200,"hasWritable"
code-creation,LoadIC,0x1f9009f71820,102,"hasSetter_"
code-creation,LoadIC,0x1f9009f71820,102,"hasSetter_"
code-creation,CallIC,0x1f9009f718a0,149,"ToPropertyDescriptor"
code-creation,LoadIC,0x1f9009f71940,108,"get"
code-creation,LoadIC,0x1f9009f71940,108,"get"
code-creation,CallIC,0x1f9009f719c0,203,"setGet"
code-creation,CallIC,0x1f9009f71aa0,149,"DefineOwnProperty"
code-creation,CallIC,0x1f9009f71b40,149,"IsGenericDescriptor"
code-creation,CallIC,0x1f9009f71be0,203,"getGet"
code-creation,LoadIC,0x1f9009f71cc0,102,"get_"
code-creation,LoadIC,0x1f9009f71cc0,102,"get_"
code-creation,CallIC,0x1f9009f71d40,200,"hasSetter"
code-creation,CallIC,0x1f9009f71e20,203,"isEnumerable"
code-creation,LoadIC,0x1f9009f71f00,102,"enumerable_"
code-creation,LoadIC,0x1f9009f71f00,102,"enumerable_"
code-creation,CallIC,0x1f9009f72040,200,"isConfigurable"
code-creation,LoadIC,0x1f9009f72120,102,"configurable_"
code-creation,LoadIC,0x1f9009f72120,102,"configurable_"
code-creation,CallIC,0x1f9009f721a0,206,"setEnumerable"
code-creation,CallIC,0x1f9009f72280,203,"setConfigurable"
code-creation,LoadIC,0x1f9009f72360,117,"Object"
code-creation,LoadIC,0x1f9009f72360,117,"Object"
code-creation,CallIC,0x1f9009f723e0,125,"create"
code-creation,LoadIC,0x1f9009f72460,107,"$Object"
code-creation,LoadIC,0x1f9009f72460,107,"$Object"
code-creation,CallIC,0x1f9009f724e0,149,"ObjectDefineProperties"
code-creation,CallIC,0x1f9009f72580,149,"GetOwnEnumerablePropertyNames"
code-creation,LoadIC,0x1f9009f72620,107,"InternalArray"
code-creation,LoadIC,0x1f9009f72620,107,"InternalArray"
code-creation,CallIC,0x1f9009f726a0,356,"push"
code-creation,KeyedLoadIC,0x1f9009f72820,122,"constructor"
code-creation,KeyedLoadIC,0x1f9009f72820,122,"constructor"
code-creation,LoadIC,0x1f9009f728a0,102,"enumerable"
code-creation,LoadIC,0x1f9009f728a0,102,"enumerable"
code-creation,CallIC,0x1f9009f72920,149,"ToBoolean"
code-creation,LoadIC,0x1f9009f729c0,102,"configurable"
code-creation,LoadIC,0x1f9009f729c0,102,"configurable"
code-creation,LoadIC,0x1f9009f72a40,102,"value"
code-creation,LoadIC,0x1f9009f72a40,102,"value"
code-creation,CallIC,0x1f9009f72ac0,206,"setValue"
code-creation,LoadIC,0x1f9009f72ba0,102,"writable"
code-creation,LoadIC,0x1f9009f72ba0,102,"writable"
code-creation,CallIC,0x1f9009f72c20,206,"setWritable"
code-creation,CallIC,0x1f9009f72d00,203,"isWritable"
code-creation,LoadIC,0x1f9009f72de0,102,"writable_"
code-creation,LoadIC,0x1f9009f72de0,102,"writable_"
code-creation,CallIC,0x1f9009f72e60,203,"getValue"
code-creation,LoadIC,0x1f9009f72f40,102,"value_"
code-creation,LoadIC,0x1f9009f72f40,102,"value_"
tick,0x7fc5979cfe04,0x7fff19044de0,0,0x27e6340,0,0x1f9009ec58f2,0x1f9009ebb23d,0x1f9009ec3d27,0x1f9009ee1deb,0x1f9009ed1ec3,0x1f9009f6b4d1,0x1f9009f0be2b,0x1f9009ed3da9,0x1f9009f9654a,0x1f9009f0be2b,0x1f9009ed3da9,0x1f9009f0ebef,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f23cfa,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f0fa3a,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,Script,0x1f9009f72fc0,160,"freelist.js",0x3b9aad97ebc8,
code-creation,LazyCompile,0x1f9009f73060,352," freelist.js:1",0x3b9aad97eaf0,~
code-creation,CallIC,0x1f9009f731c0,167,"Instantiate"
code-creation,LazyCompile,0x1f9009f73280,216,"exports.FreeList freelist.js:23",0x3b9aad97eca0,~
code-creation,CallIC,0x1f9009f73360,149,"DoConstructRegExp"
code-creation,LoadIC,0x1f9009f73400,107,"StringCharAt"
code-creation,LoadIC,0x1f9009f73400,107,"StringCharAt"
code-creation,KeyedLoadIC,0x1f9009f73480,98,""
code-creation,KeyedLoadIC,0x1f9009f73480,98,"args_count: 0"
tick,0x686110,0x7fff19043cb8,1,0x536740,2,0x1f9009f0bdc2,0x1f9009ed3da9,0x1f9009f0ebef,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f23d61,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f0fa3a,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,Script,0x1f9009f73500,160,"url.js",0x3b9aad980798,
tick,0x649231,0x7fff190436f0,0,0x7fff19045138,2,0x1f9009f0be2b,0x1f9009ed3da9,0x1f9009f0ebef,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f23d61,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f0fa3a,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,Stub,0x1f9009f735a0,282,"FastNewContextStub"
tick,0x7fc597996501,0x7fff190448c0,0,0x284f300,2,0x1f9009f0be2b,0x1f9009ed3da9,0x1f9009f0ebef,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f23d61,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f0fa3a,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,Function,0x1f9009f74040,7840,"urlParse url.js:88",0x3b9aad980c98,~
code-creation,Function,0x1f9009f76040,2348,"urlFormat url.js:308",0x3b9aad980dc0,~
code-creation,Function,0x1f9009f76980,168,"urlResolve url.js:359",0x3b9aad980ea0,~
code-creation,Function,0x1f9009f9c040,8864,"urlResolveObject url.js:363",0x3b9aad980fe8,~
code-creation,Function,0x1f9009f76a40,384,"parseHost url.js:601",0x3b9aad9810d0,~
code-creation,LazyCompile,0x1f9009f76bc0,3072," url.js:1",0x3b9aad9806c0,~
tick,0x5d097d,0x7fff190421c0,1,0x536740,2,0x1f9009f0bdc2,0x1f9009ed3da9,0x1f9009f76de9,0x1f9009f0be2b,0x1f9009ed3da9,0x1f9009f0ebef,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f23d61,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f0fa3a,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,Script,0x1f9009f777c0,160,"punycode.js",0x3b9aad981548,
code-creation,Function,0x1f9009f77860,164,"error punycode.js:65",0x3b9aad981768,~
code-creation,Function,0x1f9009f77920,268,"map punycode.js:77",0x3b9aad981850,~
code-creation,Function,0x1f9009f77a40,200,"mapDomain punycode.js:94",0x3b9aad981938,~
code-creation,Stub,0x1f9009f77b20,111,"BinaryOpStub_SHL_OverwriteLeft_Uninitialized"
code-creation,Function,0x1f9009f77ba0,1012,"utf16decode punycode.js:109",0x3b9aad981a38,~
code-creation,Function,0x1f9009f78040,500,"k punycode.js:139",0x3b9aad981b18,~
code-creation,Function,0x1f9009f78240,184,"utf16encode punycode.js:138",0x3b9aad981bf0,~
code-creation,Function,0x1f9009f78300,380,"basicToDigit punycode.js:163",0x3b9aad981cc8,~
code-creation,Stub,0x1f9009f78480,111,"BinaryOpStub_SUB_OverwriteLeft_Uninitialized"
code-creation,Function,0x1f9009f78500,288,"digitToBasic punycode.js:184",0x3b9aad981da8,~
code-creation,Stub,0x1f9009f78620,111,"BinaryOpStub_SAR_OverwriteLeft_Uninitialized"
code-creation,Stub,0x1f9009f786a0,111,"BinaryOpStub_DIV_OverwriteLeft_Uninitialized"
code-creation,Function,0x1f9009f78720,660,"adapt punycode.js:195",0x3b9aad981e98,~
code-creation,Stub,0x1f9009f789c0,111,"BinaryOpStub_SUB_OverwriteRight_Uninitialized"
code-creation,Function,0x1f9009f78a40,364,"encodeBasic punycode.js:214",0x3b9aad982040,~
code-creation,Function,0x1f9009f78bc0,2600,"decode punycode.js:226",0x3b9aad982198,~
tick,0x783e90,0x7fff19043f58,0,0x73ac4b,2,0x1f9009f0be2b,0x1f9009ed3da9,0x1f9009f76de9,0x1f9009f0be2b,0x1f9009ed3da9,0x1f9009f0ebef,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f23d61,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f0fa3a,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,Function,0x1f9009f7a040,2908,"encode punycode.js:328",0x3b9aad9822f0,~
code-creation,Function,0x1f9009f7aba0,240,"punycode.version punycode.js:446",0x3b9aad9823c8,~
code-creation,Function,0x1f9009f7aca0,156,"toUnicode punycode.js:445",0x3b9aad9824a0,~
code-creation,Function,0x1f9009f7ad40,208,"punycode.version punycode.js:462",0x3b9aad982578,~
code-creation,Function,0x1f9009f7ae20,156,"toASCII punycode.js:461",0x3b9aad982650,~
code-creation,Function,0x1f9009f7aec0,4368," punycode.js:7",0x3b9aad982900,~
code-creation,LazyCompile,0x1f9009f7c040,380," punycode.js:1",0x3b9aad981470,~
code-creation,StoreIC,0x1f9009f7c1c0,164,"decode"
code-creation,StoreIC,0x1f9009f7c1c0,164,"decode"
code-creation,StoreIC,0x1f9009f7c280,164,"encode"
code-creation,StoreIC,0x1f9009f7c280,164,"encode"
code-creation,StoreIC,0x1f9009f7c340,164,"utf16"
code-creation,StoreIC,0x1f9009f7c340,164,"utf16"
code-creation,StoreIC,0x1f9009f7c400,164,"decode"
code-creation,StoreIC,0x1f9009f7c400,164,"decode"
code-creation,StoreIC,0x1f9009f7c4c0,164,"encode"
code-creation,StoreIC,0x1f9009f7c4c0,164,"encode"
code-creation,StoreIC,0x1f9009f7c580,164,"toASCII"
code-creation,StoreIC,0x1f9009f7c580,164,"toASCII"
code-creation,StoreIC,0x1f9009f7c640,164,"toUnicode"
code-creation,StoreIC,0x1f9009f7c640,164,"toUnicode"
code-creation,Stub,0x1f9009f7c700,178,"CompareICStub"
code-creation,StoreIC,0x1f9009f7c7c0,164,"exports"
code-creation,StoreIC,0x1f9009f7c7c0,164,"exports"
code-creation,Script,0x1f9009f7c880,160,"querystring.js",0x3b9aad982bc0,
code-creation,Function,0x1f9009f7c920,180,"hasOwnProperty querystring.js:31",0x3b9aad982d08,~
code-creation,Function,0x1f9009f7c9e0,128,"charCode querystring.js:36",0x3b9aad982de0,~
tick,0x5c773a,0x7fff190449c0,0,0x281e688,2,0x1f9009f0be2b,0x1f9009ed3da9,0x1f9009f7775c,0x1f9009f0be2b,0x1f9009ed3da9,0x1f9009f0ebef,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f23d61,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f0fa3a,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,Function,0x1f9009f7ca60,3464,"QueryString.unescapeBuffer querystring.js:42",0x3b9aad982f00,~
code-creation,Function,0x1f9009f7d800,156,"QueryString.unescape querystring.js:108",0x3b9aad982fe0,~
code-creation,Function,0x1f9009f7d8a0,132,"QueryString.escape querystring.js:113",0x3b9aad9830b8,~
code-creation,Function,0x1f9009f7d940,380,"stringifyPrimitive querystring.js:117",0x3b9aad983190,~
code-creation,Function,0x1f9009f7dac0,260,"QueryString.stringify.QueryString.encode querystring.js:143",0x3b9aad983268,~
code-creation,Function,0x1f9009f7dbe0,528,"QueryString.stringify.QueryString.encode querystring.js:141",0x3b9aad983350,~
code-creation,Function,0x1f9009f7e040,1028,"QueryString.stringify.QueryString.encode querystring.js:134",0x3b9aad983470,~
code-creation,Function,0x1f9009f7e460,680,"QueryString.parse.QueryString.decode querystring.js:172",0x3b9aad983560,~
code-creation,Function,0x1f9009f7e720,656,"QueryString.parse.QueryString.decode querystring.js:163",0x3b9aad983668,~
code-creation,LazyCompile,0x1f9009f7e9c0,868," querystring.js:1",0x3b9aad982ae8,~
code-creation,CallIC,0x1f9009f7ed40,155,"require"
code-creation,CallIC,0x1f9009f7ede0,142,"_load"
code-creation,LoadIC,0x1f9009f7ee80,102,"id"
code-creation,LoadIC,0x1f9009f7ee80,102,"id"
code-creation,CallIC,0x1f9009f7ef00,125,"_resolveFilename"
code-creation,LoadIC,0x1f9009f7ef80,106,"_cache"
code-creation,LoadIC,0x1f9009f7ef80,106,"_cache"
code-creation,CallIC,0x1f9009f7f000,125,"require"
code-creation,StoreIC,0x1f9009f7f080,164,"loaded"
code-creation,StoreIC,0x1f9009f7f080,164,"loaded"
code-creation,StoreIC,0x1f9009f7f140,118,"lastMatchInfoOverride"
code-creation,StoreIC,0x1f9009f7f140,118,"lastMatchInfoOverride"
code-creation,KeyedStoreIC,0x1f9009f7f1c0,98,""
code-creation,KeyedStoreIC,0x1f9009f7f1c0,98,"args_count: 0"
code-creation,KeyedLoadIC,0x1f9009f7f240,98,""
code-creation,KeyedLoadIC,0x1f9009f7f240,98,"args_count: 0"
code-creation,CallIC,0x1f9009f7f2c0,155,"exec"
code-creation,LoadIC,0x1f9009f7f360,102,"lastIndex"
code-creation,LoadIC,0x1f9009f7f360,102,"lastIndex"
code-creation,LoadIC,0x1f9009f7f3e0,102,"global"
code-creation,LoadIC,0x1f9009f7f3e0,102,"global"
code-creation,LoadIC,0x1f9009f7f460,107,"lastMatchInfo"
code-creation,LoadIC,0x1f9009f7f460,107,"lastMatchInfo"
code-creation,CallIC,0x1f9009f7f4e0,149,"BuildResultFromMatchInfo"
code-creation,CallIC,0x1f9009f7f580,756,"charAt"
code-creation,KeyedStoreIC,0x1f9009f7f880,98,""
code-creation,KeyedStoreIC,0x1f9009f7f880,98,"args_count: 0"
code-creation,CallIC,0x1f9009f7f900,203,"substring"
code-creation,CallIC,0x1f9009f7f9e0,149,"BasicJSONSerialize"
code-creation,StoreIC,0x1f9009f7fa80,164,"request"
code-creation,StoreIC,0x1f9009f7fa80,164,"request"
code-creation,StoreIC,0x1f9009f7fb40,164,"paths"
code-creation,StoreIC,0x1f9009f7fb40,164,"paths"
code-creation,LoadIC,0x1f9009f7fc00,132,""
code-creation,LoadIC,0x1f9009f7fc00,132,""
code-creation,KeyedLoadIC,0x1f9009f7fca0,122,"paths"
code-creation,KeyedLoadIC,0x1f9009f7fca0,122,"paths"
code-creation,LoadIC,0x1f9009f7fd20,192,""
code-creation,LoadIC,0x1f9009f7fd20,192,""
code-creation,CallIC,0x1f9009f7fde0,149,"BasicSerializeArray"
code-creation,KeyedStoreIC,0x1f9009f7fe80,98,""
code-creation,KeyedStoreIC,0x1f9009f7fe80,98,"args_count: 0"
code-creation,LoadIC,0x1f9009f7ff00,102,"length"
code-creation,LoadIC,0x1f9009f7ff00,102,"length"
code-creation,CallIC,0x1f9009f80040,220,"split"
code-creation,CallIC,0x1f9009f80120,202,"filter"
code-creation,CallIC,0x1f9009f80200,149,"ToUint32"
code-creation,CallIC,0x1f9009f802a0,190,"splice"
code-creation,CallIC,0x1f9009f80360,185,"join"
code-creation,StoreIC,0x1f9009f80420,164,"get"
code-creation,StoreIC,0x1f9009f80420,164,"get"
code-creation,StoreIC,0x1f9009f804e0,164,"set"
code-creation,StoreIC,0x1f9009f804e0,164,"set"
code-creation,LoadIC,0x1f9009f805a0,102,"enumerable"
code-creation,LoadIC,0x1f9009f805a0,102,"enumerable"
code-creation,LoadIC,0x1f9009f80620,102,"configurable"
code-creation,LoadIC,0x1f9009f80620,102,"configurable"
code-creation,LoadIC,0x1f9009f806a0,102,"get"
code-creation,LoadIC,0x1f9009f806a0,102,"get"
tick,0x7fc5979a3848,0x7fff19044480,1,0x5352a0,0,0x1f9009eb8533,0x1f9009ec8df3,0x1f9009ec929c,0x1f9009ec9af6,0x1f9009ec9b17,0x1f9009f1c806,0x1f9009f0c45c,0x1f9009f0ca35,0x1f9009f0d15c,0x1f9009f0efd6,0x1f9009f0e9d3,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f0fab3,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,StoreIC,0x1f9009f80720,164,"set_"
code-creation,StoreIC,0x1f9009f80720,164,"set_"
code-creation,StoreIC,0x1f9009f807e0,164,"hasSetter_"
code-creation,StoreIC,0x1f9009f807e0,164,"hasSetter_"
code-creation,CallIC,0x1f9009f808a0,125,"statSync"
code-creation,CallIC,0x1f9009f80920,173,"_makeLong"
code-creation,CallIC,0x1f9009f809e0,415,"stat"
code-creation,CallIC,0x1f9009f80b80,149,"ToNumber"
code-creation,CallIC,0x1f9009f80c20,149,"TimeClip"
code-creation,CallIC,0x1f9009f80cc0,149,"$isFinite"
code-creation,CallIC,0x1f9009f80d60,297,"$abs"
code-creation,StoreIC,0x1f9009f80ea0,164,"lastIndex"
code-creation,StoreIC,0x1f9009f80ea0,164,"lastIndex"
code-creation,LoadIC,0x1f9009f80f60,106,"mode"
code-creation,LoadIC,0x1f9009f80f60,106,"mode"
code-creation,StoreIC,0x1f9009f80fe0,178,"id"
code-creation,StoreIC,0x1f9009f80fe0,178,"id"
code-creation,StoreIC,0x1f9009f810a0,178,"exports"
code-creation,StoreIC,0x1f9009f810a0,178,"exports"
code-creation,StoreIC,0x1f9009f81160,178,"parent"
code-creation,StoreIC,0x1f9009f81160,178,"parent"
code-creation,StoreIC,0x1f9009f81220,178,"filename"
code-creation,StoreIC,0x1f9009f81220,178,"filename"
code-creation,StoreIC,0x1f9009f812e0,178,"loaded"
code-creation,StoreIC,0x1f9009f812e0,178,"loaded"
code-creation,StoreIC,0x1f9009f813a0,178,"exited"
code-creation,StoreIC,0x1f9009f813a0,178,"exited"
code-creation,StoreIC,0x1f9009f81460,178,"children"
code-creation,StoreIC,0x1f9009f81460,178,"children"
code-creation,StoreIC,0x1f9009f81520,164,"filename"
code-creation,StoreIC,0x1f9009f81520,164,"filename"
code-creation,CallIC,0x1f9009f815e0,149,"DoRegExpExec"
code-creation,CallIC,0x1f9009f81680,190,"slice"
code-creation,CallIC,0x1f9009f81740,190,"concat"
code-creation,StoreIC,0x1f9009f81800,178,"paths"
code-creation,StoreIC,0x1f9009f81800,178,"paths"
code-creation,StoreIC,0x1f9009f818c0,178,"length"
code-creation,StoreIC,0x1f9009f818c0,178,"length"
code-creation,StoreIC,0x1f9009f81980,182,"used"
code-creation,StoreIC,0x1f9009f81980,182,"used"
code-creation,StoreIC,0x1f9009f81a40,178,"parent"
code-creation,StoreIC,0x1f9009f81a40,178,"parent"
code-creation,StoreIC,0x1f9009f81b00,178,"offset"
code-creation,StoreIC,0x1f9009f81b00,178,"offset"
code-creation,StoreIC,0x1f9009f81bc0,168,"used"
code-creation,StoreIC,0x1f9009f81bc0,168,"used"
code-creation,LoadIC,0x1f9009f81c80,117,"Math"
code-creation,LoadIC,0x1f9009f81c80,117,"Math"
code-creation,CallIC,0x1f9009f81d00,155,"ceil"
code-creation,LoadIC,0x1f9009f81da0,102,"length"
code-creation,LoadIC,0x1f9009f81da0,102,"length"
code-creation,LoadIC,0x1f9009f81e20,106,"poolSize"
code-creation,LoadIC,0x1f9009f81e20,106,"poolSize"
code-creation,LoadIC,0x1f9009f81ea0,106,"length"
code-creation,LoadIC,0x1f9009f81ea0,106,"length"
code-creation,LoadIC,0x1f9009f81f20,106,"used"
code-creation,LoadIC,0x1f9009f81f20,106,"used"
code-creation,LoadIC,0x1f9009f82040,102,"length"
code-creation,LoadIC,0x1f9009f82040,102,"length"
code-creation,LoadIC,0x1f9009f820c0,117,"Array"
code-creation,LoadIC,0x1f9009f820c0,117,"Array"
code-creation,CallIC,0x1f9009f82140,125,"isArray"
code-creation,CallIC,0x1f9009f821c0,125,"isBuffer"
code-creation,LoadIC,0x1f9009f82240,102,"parent"
code-creation,LoadIC,0x1f9009f82240,102,"parent"
code-creation,LoadIC,0x1f9009f822c0,102,"offset"
code-creation,LoadIC,0x1f9009f822c0,102,"offset"
code-creation,CallIC,0x1f9009f82340,415,"makeFastBuffer"
code-creation,LoadIC,0x1f9009f824e0,117,"Buffer"
code-creation,LoadIC,0x1f9009f824e0,117,"Buffer"
code-creation,CallIC,0x1f9009f82560,415,"read"
code-creation,LoadIC,0x1f9009f82700,108,"get"
code-creation,LoadIC,0x1f9009f82700,108,"get"
tick,0x66da64,0x7fff190431b0,1,0x536740,2,0x1f9009f108c2,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f0fab3,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,Script,0x1f9009f82780,160,"/home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/https.js",0x3b9aad984040,
code-creation,Function,0x1f9009f82820,128,"exports.Server /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/https.js:31",0x3b9aad984160,~
code-creation,Function,0x1f9009f828a0,292,"HTTPSServer /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/https.js:29",0x3b9aad984240,~
code-creation,Function,0x1f9009f829e0,168," /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/https.js:45",0x3b9aad984318,~
code-creation,LazyCompile,0x1f9009f82aa0,640," /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/https.js:1",0x3b9aad983ea0,~
code-creation,CallIC,0x1f9009f82d20,125,"_resolveLookupPaths"
code-creation,LoadIC,0x1f9009f82da0,102,"filename"
code-creation,LoadIC,0x1f9009f82da0,102,"filename"
code-creation,CallIC,0x1f9009f82e20,142,"basename"
code-creation,CallIC,0x1f9009f82ec0,155,"test"
code-creation,LoadIC,0x1f9009f82f60,102,"source"
code-creation,LoadIC,0x1f9009f82f60,102,"source"
code-creation,CallIC,0x1f9009f82fe0,125,"dirname"
code-creation,CallIC,0x1f9009f83060,139,"resolve"
code-creation,LoadIC,0x1f9009f83100,117,"JSON"
code-creation,LoadIC,0x1f9009f83100,117,"JSON"
code-creation,CallIC,0x1f9009f83180,142,"stringify"
code-creation,CallIC,0x1f9009f83220,216,"pop"
code-creation,CallIC,0x1f9009f83300,125,"_findPath"
code-creation,LoadIC,0x1f9009f83380,106,"_extensions"
code-creation,LoadIC,0x1f9009f83380,106,"_extensions"
code-creation,CallIC,0x1f9009f83400,125,"keys"
code-creation,CallIC,0x1f9009f83480,220,"slice"
code-creation,CallIC,0x1f9009f83560,149,"SubString"
code-creation,CallIC,0x1f9009f83600,149,"BasicSerializeObject"
code-creation,KeyedLoadIC,0x1f9009f836a0,122,"request"
code-creation,KeyedLoadIC,0x1f9009f836a0,122,"request"
code-creation,LoadIC,0x1f9009f83720,106,"_pathCache"
code-creation,LoadIC,0x1f9009f83720,106,"_pathCache"
code-creation,Script,0x1f9009f837a0,160,"https.js",0x3b9aad9845c0,
code-creation,Function,0x1f9009f83840,476,"Server https.js:26",0x3b9aad984708,~
code-creation,Function,0x1f9009f83a20,140,"createConnection https.js:54",0x3b9aad9847f0,~
code-creation,Function,0x1f9009f83ac0,176,"Agent https.js:58",0x3b9aad9848c8,~
code-creation,Function,0x1f9009f83b80,132,"exports.createServer https.js:47",0x3b9aad9849a8,~
code-creation,Function,0x1f9009f83c20,556,"exports.request https.js:70",0x3b9aad984a88,~
code-creation,Function,0x1f9009f83e60,200,"exports.get https.js:83",0x3b9aad984b70,~
code-creation,LazyCompile,0x1f9009f84040,1156," https.js:1",0x3b9aad9844e8,~
tick,0x6cf7a6,0x7fff19043d30,1,0x536740,2,0x1f9009f0bdc2,0x1f9009ed3da9,0x1f9009f841cd,0x1f9009f0be2b,0x1f9009ed3da9,0x1f9009f0ebef,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f82b8c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f0fab3,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
tick,0x6d0c90,0x7fff19042e48,1,0x536740,2,0x1f9009f0bdc2,0x1f9009ed3da9,0x1f9009f841cd,0x1f9009f0be2b,0x1f9009ed3da9,0x1f9009f0ebef,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f82b8c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f0fab3,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,Script,0x1f9009f844e0,160,"tls.js",0x3b9aad984f60,
tick,0x67bb07,0x7fff19043bf0,0,0x7fff19044ff8,2,0x1f9009f0be2b,0x1f9009ed3da9,0x1f9009f841cd,0x1f9009f0be2b,0x1f9009ed3da9,0x1f9009f0ebef,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f82b8c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f0fab3,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,Stub,0x1f9009f84580,275,"FastNewContextStub"
code-creation,Function,0x1f9009f846a0,168," tls.js:50",0x3b9aad9851c8,~
code-creation,Function,0x1f9009f84760,244,"NPNProtocols tls.js:54",0x3b9aad9852b0,~
code-creation,Function,0x1f9009f84860,448,"convertNPNProtocols tls.js:47",0x3b9aad9853a0,~
code-creation,Function,0x1f9009f84a20,396,"CryptoStream tls.js:72",0x3b9aad985478,~
code-creation,Function,0x1f9009f84bc0,612,"parseCertString tls.js:178",0x3b9aad985588,~
code-creation,Function,0x1f9009f84e40,136,"CleartextStream tls.js:472",0x3b9aad985660,~
code-creation,Function,0x1f9009f84ee0,136,"EncryptedStream tls.js:513",0x3b9aad985738,~
code-creation,Function,0x1f9009f84f80,208," tls.js:606",0x3b9aad985808,~
code-creation,Function,0x1f9009f85060,1648,"SecurePair tls.js:545",0x3b9aad985910,~
code-creation,Function,0x1f9009f856e0,924,"exports.Server tls.js:881",0x3b9aad9859e8,~
code-creation,Function,0x1f9009f85a80,740,"exports.Server tls.js:866",0x3b9aad985af8,~
code-creation,Function,0x1f9009f86040,1224,"Server tls.js:836",0x3b9aad985c00,~
code-creation,Function,0x1f9009f86520,180,"onerror tls.js:1073",0x3b9aad985cd8,~
code-creation,Function,0x1f9009f865e0,232,"onclose tls.js:1079",0x3b9aad985da8,~
code-creation,Function,0x1f9009f866e0,140,"ontimeout tls.js:1085",0x3b9aad985e78,~
code-creation,Function,0x1f9009f86780,880,"pipe tls.js:1063",0x3b9aad986040,~
code-creation,Function,0x1f9009f86b00,156,"debug tls.js:32",0x3b9aad986118,~
code-creation,Function,0x1f9009f86ba0,104,"debug tls.js:34",0x3b9aad9861e8,~
tick,0x5c2f70,0x7fff19044ac8,0,0x732fb7,2,0x1f9009f0be2b,0x1f9009ed3da9,0x1f9009f841cd,0x1f9009f0be2b,0x1f9009ed3da9,0x1f9009f0ebef,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f82b8c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f0fab3,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,Function,0x1f9009f86c20,1620,"CryptoStream.write tls.js:88",0x3b9aad9862e8,~
code-creation,Function,0x1f9009f87280,272,"CryptoStream.pause tls.js:147",0x3b9aad9863b8,~
code-creation,Function,0x1f9009f873a0,312,"CryptoStream.resume tls.js:153",0x3b9aad986488,~
code-creation,Function,0x1f9009f874e0,180,"CryptoStream.setTimeout tls.js:160",0x3b9aad986560,~
code-creation,Function,0x1f9009f875a0,176,"CryptoStream.setNoDelay tls.js:165",0x3b9aad986630,~
code-creation,Function,0x1f9009f87660,204,"CryptoStream.setEncoding tls.js:170",0x3b9aad986710,~
code-creation,Function,0x1f9009f87740,448,"CryptoStream.getPeerCertificate tls.js:193",0x3b9aad9867e8,~
code-creation,Function,0x1f9009f87900,220,"CryptoStream.getSession tls.js:207",0x3b9aad9868b8,~
code-creation,Function,0x1f9009f879e0,220,"CryptoStream.isSessionReused tls.js:215",0x3b9aad986988,~
code-creation,Function,0x1f9009f87ac0,224,"CryptoStream.getCipher tls.js:223",0x3b9aad986a60,~
code-creation,Function,0x1f9009f87ba0,424,"CryptoStream.end tls.js:232",0x3b9aad986b38,~
code-creation,Function,0x1f9009f87d60,188,"CryptoStream.destroySoon tls.js:252",0x3b9aad986c10,~
code-creation,Function,0x1f9009f87e20,204,"CryptoStream.destroy tls.js:261",0x3b9aad986ce8,~
code-creation,Function,0x1f9009f88040,348,"CryptoStream._done tls.js:267",0x3b9aad986db8,~
code-creation,Function,0x1f9009f881a0,432,"Object.defineProperty.get tls.js:281",0x3b9aad986e88,~
code-creation,Function,0x1f9009f88360,1868,"CryptoStream._push tls.js:309",0x3b9aad986f80,~
code-creation,Function,0x1f9009f88ac0,228,"CryptoStream._pull._needDrain tls.js:459",0x3b9aad987050,~
code-creation,Function,0x1f9009f88bc0,3016,"CryptoStream._pull tls.js:382",0x3b9aad987158,~
code-creation,Function,0x1f9009f897a0,216,"CleartextStream._internallyPendingBytes tls.js:478",0x3b9aad987228,~
code-creation,Function,0x1f9009f89880,268,"CleartextStream._puller tls.js:487",0x3b9aad987300,~
code-creation,Function,0x1f9009f899a0,264,"CleartextStream._pusher tls.js:493",0x3b9aad9873e8,~
code-creation,Function,0x1f9009f89ac0,188,"CleartextStream.address tls.js:499",0x3b9aad9874b8,~
code-creation,Function,0x1f9009f89b80,184,"EncryptedStream._internallyPendingBytes tls.js:503",0x3b9aad987588,~
code-creation,Function,0x1f9009f89c40,184,"EncryptedStream._internallyPendingBytes tls.js:508",0x3b9aad987658,~
code-creation,Function,0x1f9009f89d00,216,"EncryptedStream._internallyPendingBytes tls.js:519",0x3b9aad987728,~
code-creation,Function,0x1f9009f89de0,224,"EncryptedStream._puller tls.js:528",0x3b9aad987800,~
code-creation,Function,0x1f9009f89ec0,264,"EncryptedStream._pusher tls.js:534",0x3b9aad9878e8,~
code-creation,Function,0x1f9009f8a040,152,"exports.createSecurePair tls.js:618",0x3b9aad9879e0,~
code-creation,Function,0x1f9009f8a0e0,1116,"SecurePair.cycle tls.js:659",0x3b9aad987ac0,~
code-creation,Function,0x1f9009f8a540,572,"SecurePair.maybeInitFinished tls.js:705",0x3b9aad987b90,~
code-creation,Function,0x1f9009f8a780,264,"SecurePair.destroy tls.js:734",0x3b9aad987c60,~
code-creation,Function,0x1f9009f8a8a0,596,"SecurePair.destroy tls.js:722",0x3b9aad987d40,~
code-creation,Function,0x1f9009f8ab00,672,"SecurePair.error tls.js:743",0x3b9aad987e18,~
code-creation,Function,0x1f9009f8ada0,132,"exports.createServer tls.js:917",0x3b9aad987ef8,~
code-creation,Function,0x1f9009f8ae40,1516,"Server.setOptions tls.js:922",0x3b9aad988040,~
code-creation,Function,0x1f9009f8b440,988,"Server.addContext tls.js:961",0x3b9aad988128,~
code-creation,Function,0x1f9009f8b820,260,"Server.SNICallback tls.js:976",0x3b9aad988200,~
code-creation,Function,0x1f9009f8b940,248,"Server.SNICallback tls.js:973",0x3b9aad9882f8,~
code-creation,Function,0x1f9009f8ba40,348,"exports.connect.cleartext._controlReleased tls.js:1043",0x3b9aad9883d0,~
code-creation,Function,0x1f9009f8c040,1520,"exports.connect tls.js:1002",0x3b9aad988510,~
code-creation,LazyCompile,0x1f9009f8c640,5884," tls.js:1",0x3b9aad984e88,~
tick,0x6cfe69,0x7fff19043fe0,1,0x536740,2,0x1f9009f0bdc2,0x1f9009ed3da9,0x1f9009f8c9f6,0x1f9009f0be2b,0x1f9009ed3da9,0x1f9009f841cd,0x1f9009f0be2b,0x1f9009ed3da9,0x1f9009f0ebef,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f82b8c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f0fab3,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,Script,0x1f9009f8dd40,160,"crypto.js",0x3b9aad988868,
code-creation,Stub,0x1f9009f8dde0,229,"FastNewContextStub"
code-creation,Function,0x1f9009f8e040,508,"Credentials crypto.js:43",0x3b9aad988998,~
code-creation,Function,0x1f9009f8e240,1648,"exports.createCredentials crypto.js:70",0x3b9aad988a90,~
code-creation,Function,0x1f9009f8e8c0,128,"exports.createHash crypto.js:122",0x3b9aad988b68,~
code-creation,Function,0x1f9009f8e940,148,"exports.createHmac crypto.js:128",0x3b9aad988c48,~
code-creation,Function,0x1f9009f8e9e0,148,"exports.createCipher crypto.js:134",0x3b9aad988d28,~
code-creation,Function,0x1f9009f8ea80,152,"exports.createCipheriv crypto.js:139",0x3b9aad988e10,~
code-creation,Function,0x1f9009f8eb20,148,"exports.createDecipher crypto.js:145",0x3b9aad988ef0,~
code-creation,Function,0x1f9009f8ebc0,152,"exports.createDecipheriv crypto.js:150",0x3b9aad988fd8,~
code-creation,Function,0x1f9009f8ec60,144,"exports.createSign crypto.js:156",0x3b9aad9890b0,~
code-creation,Function,0x1f9009f8ed00,144,"exports.createVerify crypto.js:161",0x3b9aad989188,~
code-creation,Function,0x1f9009f8eda0,224,"exports.createDiffieHellman crypto.js:166",0x3b9aad989268,~
code-creation,LazyCompile,0x1f9009f8ee80,2196," crypto.js:1",0x3b9aad988790,~
tick,0x7fc59798ce73,0x7fff190449a0,1,0x5241b0,4,0x1f9009f8effa,0x1f9009f0be2b,0x1f9009ed3da9,0x1f9009f8c9f6,0x1f9009f0be2b,0x1f9009ed3da9,0x1f9009f841cd,0x1f9009f0be2b,0x1f9009ed3da9,0x1f9009f0ebef,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f82b8c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f0fab3,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
tick,0x7fc598985be9,0x7fff19044ae0,1,0x5241b0,4,0x1f9009f8effa,0x1f9009f0be2b,0x1f9009ed3da9,0x1f9009f8c9f6,0x1f9009f0be2b,0x1f9009ed3da9,0x1f9009f841cd,0x1f9009f0be2b,0x1f9009ed3da9,0x1f9009f0ebef,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f82b8c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f0fab3,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
tick,0x789d45,0x7fff19044a78,1,0x5241b0,0,0x1f9009f8effa,0x1f9009f0be2b,0x1f9009ed3da9,0x1f9009f8c9f6,0x1f9009f0be2b,0x1f9009ed3da9,0x1f9009f841cd,0x1f9009f0be2b,0x1f9009ed3da9,0x1f9009f0ebef,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f82b8c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f0fab3,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,LoadIC,0x1f9009f8f720,108,"get"
code-creation,LoadIC,0x1f9009f8f720,108,"get"
code-creation,LoadIC,0x1f9009f8f7a0,102,"options"
code-creation,LoadIC,0x1f9009f8f7a0,102,"options"
code-creation,LoadIC,0x1f9009f8f820,132,""
code-creation,LoadIC,0x1f9009f8f820,132,""
code-creation,LoadIC,0x1f9009f8f8c0,106,"defaultMaxSockets"
code-creation,LoadIC,0x1f9009f8f8c0,106,"defaultMaxSockets"
code-creation,CallIC,0x1f9009f8f940,209,"on"
code-creation,LoadIC,0x1f9009f8fa20,216,""
code-creation,LoadIC,0x1f9009f8fa20,216,""
code-creation,CallIC,0x1f9009f8fb00,223,"emit"
code-creation,LoadIC,0x1f9009f8fbe0,102,"_events"
code-creation,LoadIC,0x1f9009f8fbe0,102,"_events"
code-creation,KeyedStoreIC,0x1f9009f8fc60,150,"free"
code-creation,KeyedStoreIC,0x1f9009f8fc60,150,"free"
code-creation,LoadIC,0x1f9009f8fd00,108,"createConnection"
code-creation,LoadIC,0x1f9009f8fd00,108,"createConnection"
code-creation,StoreIC,0x1f9009f8fd80,131,"Server"
code-creation,StoreIC,0x1f9009f8fd80,131,"Server"
code-creation,KeyedLoadIC,0x1f9009f8fe20,128,"handle"
code-creation,KeyedLoadIC,0x1f9009f8fe20,128,"handle"
code-creation,LoadIC,0x1f9009f8fea0,102,"exports"
code-creation,LoadIC,0x1f9009f8fea0,102,"exports"
code-creation,LoadIC,0x1f9009f8ff20,107,"kAddMessageAccessorsMarker"
code-creation,LoadIC,0x1f9009f8ff20,107,"kAddMessageAccessorsMarker"
code-creation,CallIC,0x1f9009f90040,149,"captureStackTrace"
code-creation,LoadIC,0x1f9009f900e0,107,"$Error"
code-creation,LoadIC,0x1f9009f900e0,107,"$Error"
code-creation,LoadIC,0x1f9009f90160,106,"stackTraceLimit"
code-creation,LoadIC,0x1f9009f90160,106,"stackTraceLimit"
code-creation,CallIC,0x1f9009f901e0,149,"DefineOneShotAccessor"
code-creation,LoadIC,0x1f9009f90280,102,"set"
code-creation,LoadIC,0x1f9009f90280,102,"set"
code-creation,CallIC,0x1f9009f90300,203,"setSet"
code-creation,CallIC,0x1f9009f903e0,200,"getSet"
code-creation,LoadIC,0x1f9009f904c0,102,"set_"
code-creation,LoadIC,0x1f9009f904c0,102,"set_"
code-creation,CallIC,0x1f9009f90540,155,"isDirectory"
code-creation,CallIC,0x1f9009f905e0,155,"_checkModeProperty"
code-creation,LoadIC,0x1f9009f90680,106,"_realpathCache"
code-creation,LoadIC,0x1f9009f90680,106,"_realpathCache"
code-creation,CallIC,0x1f9009f90700,125,"realpathSync"
code-creation,CallIC,0x1f9009f90780,139,"resolve"
code-creation,LoadIC,0x1f9009f90820,108,"hasOwnProperty"
code-creation,LoadIC,0x1f9009f90820,108,"hasOwnProperty"
code-creation,CallIC,0x1f9009f908a0,160,"call"
code-creation,CallIC,0x1f9009f90940,125,"lstatSync"
code-creation,CallIC,0x1f9009f909c0,415,"lstat"
code-creation,CallIC,0x1f9009f90b60,155,"isSymbolicLink"
code-creation,CallIC,0x1f9009f90c00,155,"load"
code-creation,LoadIC,0x1f9009f90ca0,102,"id"
code-creation,LoadIC,0x1f9009f90ca0,102,"id"
code-creation,LoadIC,0x1f9009f90d20,102,"loaded"
code-creation,LoadIC,0x1f9009f90d20,102,"loaded"
code-creation,CallIC,0x1f9009f90da0,125,"_nodeModulePaths"
code-creation,LoadIC,0x1f9009f90e20,117,"process"
code-creation,LoadIC,0x1f9009f90e20,117,"process"
code-creation,CallIC,0x1f9009f90ea0,125,"extname"
tick,0x7fc597a2fc0d,0x7fff19045400,0,0x0,0,0x1f9009f0f3b6,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f0fb56,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,CallIC,0x1f9009f90f20,125,"readFileSync"
code-creation,CallIC,0x1f9009f90fa0,415,"open"
code-creation,CallIC,0x1f9009f91140,415,"close"
code-creation,LoadIC,0x1f9009f912e0,107,"undefined"
code-creation,LoadIC,0x1f9009f912e0,107,"undefined"
code-creation,LoadIC,0x1f9009f91360,102,"length"
code-creation,LoadIC,0x1f9009f91360,102,"length"
code-creation,LoadIC,0x1f9009f913e0,102,"parent"
code-creation,LoadIC,0x1f9009f913e0,102,"parent"
code-creation,LoadIC,0x1f9009f91460,102,"offset"
code-creation,LoadIC,0x1f9009f91460,102,"offset"
code-creation,CallIC,0x1f9009f914e0,172,"toString"
code-creation,CallIC,0x1f9009f915a0,149,"String"
code-creation,CallIC,0x1f9009f91640,203,"toLowerCase"
code-creation,LoadIC,0x1f9009f91720,102,"length"
code-creation,LoadIC,0x1f9009f91720,102,"length"
code-creation,LoadIC,0x1f9009f917a0,102,"offset"
code-creation,LoadIC,0x1f9009f917a0,102,"offset"
code-creation,LoadIC,0x1f9009f91820,102,"parent"
code-creation,LoadIC,0x1f9009f91820,102,"parent"
code-creation,CallIC,0x1f9009f918a0,445,"utf8Slice"
code-creation,CallIC,0x1f9009f91a60,566,"charCodeAt"
code-creation,CallIC,0x1f9009f91ca0,155,"_compile"
code-creation,CallIC,0x1f9009f91d40,203,"replace"
code-creation,CallIC,0x1f9009f91e20,125,"defineProperty"
code-creation,LoadIC,0x1f9009f91ea0,108,"get"
code-creation,LoadIC,0x1f9009f91ea0,108,"get"
code-creation,LoadIC,0x1f9009f91f20,106,"_contextLoad"
code-creation,LoadIC,0x1f9009f91f20,106,"_contextLoad"
code-creation,CallIC,0x1f9009f7ff80,125,"wrap"
code-creation,Script,0x1f9009f6ff60,160,"/home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/patch.js",0x3b9aad991368,
code-creation,CallIC,0x1f9009f2cc00,155,"apply"
code-creation,Function,0x1f9009f71f80,124," /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/patch.js:33",0x3b9aad9914a0,~
code-creation,Function,0x1f9009f394c0,704,"res.setHeader /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/patch.js:46",0x3b9aad991590,~
code-creation,Function,0x1f9009f83f40,168,"res._renderHeaders /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/patch.js:74",0x3b9aad991660,~
code-creation,LazyCompile,0x1f9009f85d80,624," /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/patch.js:1",0x3b9aad991290,~
code-creation,StoreIC,0x1f9009f3df40,164,"exports"
code-creation,StoreIC,0x1f9009f3df40,164,"exports"
code-creation,StoreIC,0x1f9009f15f60,131,"version"
code-creation,StoreIC,0x1f9009f15f60,131,"version"
code-creation,RegExp,0x1f9009f63d00,729,"\\.js$"
code-creation,LazyCompile,0x1f9009f59c00,1004,"lastIndexOf native string.js:134",0x3f0f96bea280,~
tick,0x700e10,0x7fff19044f18,0,0x5c4ed8,2,0x1f9009f05eb0,0x1f9009f392ee,0x1f9009f0fc97,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,LazyCompile,0x1f9009f036e0,1600,"substr native string.js:698",0x3f0f96beaa60,~
code-creation,Stub,0x1f9009f2d7c0,173,"CompareICStub"
code-creation,CallIC,0x1f9009f67f20,203,"lastIndexOf"
code-creation,CallIC,0x1f9009f2fe00,203,"substr"
code-creation,LoadIC,0x1f9009f5ff80,106,"middleware"
code-creation,LoadIC,0x1f9009f5ff80,106,"middleware"
code-creation,CallIC,0x1f9009f09260,155,"__defineGetter__"
code-creation,CallMegamorphic,0x1f9009f37c20,682,"args_count: 2"
code-creation,CallIC,0x1f9009ee3f60,155,"__defineGetter__"
code-creation,CallIC,0x1f9009ecbf60,155,"__defineGetter__"
code-creation,CallIC,0x1f9009f11f40,155,"__defineGetter__"
code-creation,CallIC,0x1f9009ee0e60,155,"__defineGetter__"
code-creation,CallIC,0x1f9009ec3ea0,155,"__defineGetter__"
code-creation,CallIC,0x1f9009eb9c40,155,"__defineGetter__"
code-creation,CallIC,0x1f9009eb1f40,155,"__defineGetter__"
code-creation,CallIC,0x1f9009f87f00,155,"__defineGetter__"
code-creation,CallIC,0x1f9009f3dd00,155,"__defineGetter__"
code-creation,CallIC,0x1f9009ed7c20,155,"__defineGetter__"
code-creation,CallIC,0x1f9009ed1f00,155,"__defineGetter__"
code-creation,CallIC,0x1f9009f8dee0,155,"__defineGetter__"
code-creation,CallIC,0x1f9009f75ee0,155,"__defineGetter__"
code-creation,CallIC,0x1f9009f3ba00,155,"__defineGetter__"
code-creation,CallIC,0x1f9009f37820,155,"__defineGetter__"
code-creation,CallIC,0x1f9009f35720,155,"__defineGetter__"
code-creation,LoadIC,0x1f9009f357c0,102,"_bytesRead"
code-creation,LoadIC,0x1f9009f357c0,102,"_bytesRead"
code-creation,CallIC,0x1f9009f15ce0,155,"copy"
code-creation,CallIC,0x1f9009ee1e20,445,"copy"
tick,0x1f9009eae12f,0x7fff190455d0,0,0x1f9009eae0c1,0,0x1f9009edeec8,0x1f9009f1947e,0x1f9009f392ee,0x1f9009f3d91b,0x1f9009f10c39,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f0fcbf,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,StoreIC,0x1f9009ecefc0,131,"resolve"
code-creation,StoreIC,0x1f9009ecefc0,131,"resolve"
code-creation,LoadIC,0x1f9009ecf060,108,"get"
code-creation,LoadIC,0x1f9009ecf060,108,"get"
code-creation,Script,0x1f9009f61ec0,160,"/home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/utils.js",0x3b9aad992118,
tick,0x64663a,0x7fff19043a00,0,0x2924de265a01,2,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f0fcbf,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,Stub,0x1f9009f15d80,111,"BinaryOpStub_MUL_OverwriteRight_Uninitialized"
code-creation,Function,0x1f9009f5bea0,228,"getRandomInt /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/utils.js:449",0x3b9aad992308,~
code-creation,Function,0x1f9009f7de00,488,"exports.flatten /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/utils.js:25",0x3b9aad9923f8,~
code-creation,Function,0x1f9009f2cf20,220,"exports.md5 /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/utils.js:51",0x3b9aad9924d8,~
code-creation,Function,0x1f9009f3c260,540,"exports.merge /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/utils.js:73",0x3b9aad9925c0,~
code-creation,Function,0x1f9009f32960,1140,"exports.escape /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/utils.js:90",0x3b9aad992698,~
code-creation,Function,0x1f9009f2e040,448,"exports.uid /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/utils.js:110",0x3b9aad992790,~
code-creation,Function,0x1f9009f0d820,1864,"exports.parseCookie /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/utils.js:130",0x3b9aad9928c0,~
code-creation,Function,0x1f9009f09420,816,"exports.serializeCookie /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/utils.js:172",0x3b9aad9929b0,~
code-creation,Function,0x1f9009f16a20,300,"exports.pause.obj.on.onData /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/utils.js:209",0x3b9aad992a90,~
code-creation,Function,0x1f9009ee4880,300,"exports.pause.obj.on.onEnd /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/utils.js:214",0x3b9aad992b70,~
code-creation,Function,0x1f9009f6be60,188,"exports.pause.end /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/utils.js:219",0x3b9aad992c40,~
code-creation,Function,0x1f9009f2e7e0,360,"exports.pause.resume /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/utils.js:223",0x3b9aad992d20,~
code-creation,Function,0x1f9009f2e320,764,"exports.pause /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/utils.js:203",0x3b9aad992e38,~
code-creation,Function,0x1f9009f57c00,972,"exports.modified /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/utils.js:241",0x3b9aad992f40,~
code-creation,Function,0x1f9009f2e620,200,"exports.removeContentHeaders /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/utils.js:276",0x3b9aad993018,~
code-creation,Function,0x1f9009f28300,280,"exports.removeContentHeaders /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/utils.js:275",0x3b9aad993100,~
code-creation,Function,0x1f9009f6bf20,200,"exports.conditionalGET /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/utils.js:291",0x3b9aad9931d8,~
code-creation,Function,0x1f9009f34040,276,"exports.forbidden /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/utils.js:303",0x3b9aad9932b8,~
code-creation,Function,0x1f9009f28420,244,"exports.unauthorized /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/utils.js:319",0x3b9aad993398,~
code-creation,Function,0x1f9009f34160,168,"exports.badRequest /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/utils.js:332",0x3b9aad993470,~
code-creation,Function,0x1f9009ecece0,184,"exports.notModified /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/utils.js:345",0x3b9aad993548,~
code-creation,Function,0x1f9009eceda0,228,"exports.etag /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/utils.js:360",0x3b9aad993620,~
code-creation,Function,0x1f9009ec5be0,684," /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/utils.js:375",0x3b9aad993708,~
code-creation,Function,0x1f9009eb9dc0,448,"exports.parseRange /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/utils.js:373",0x3b9aad993810,~
code-creation,Function,0x1f9009f28980,592,"exports.parseCacheControl /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/utils.js:405",0x3b9aad993920,~
code-creation,Function,0x1f9009ec5ea0,336,"exports.toArray /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/utils.js:431",0x3b9aad993a10,~
code-creation,LazyCompile,0x1f9009f6d940,1668," /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/utils.js:1",0x3b9aad992040,~
tick,0xffffffffff60017b,0x7fff19044bb0,0,0x7fff19044bd0,0,0x1f9009ec68fd,0x1f9009f380c5,0x1f9009f1c746,0x1f9009f203f4,0x1f9009f0caa5,0x1f9009f0cb9c,0x1f9009f0d1a6,0x1f9009f0efd6,0x1f9009f0e9d3,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f1ffbf,0x1f9009f3c434,0x1f9009f0fd1a,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,Function,0x1f9009f2e960,132,"require module.js:367",0x3b9aad994318,~
code-creation,Function,0x1f9009f2d000,152,"require.resolve module.js:371",0x3b9aad9943f0,~
code-creation,Function,0x1f9009f65d80,204,"Object.defineProperty.get module.js:375",0x3b9aad9944c0,~
code-creation,Function,0x1f9009f65e60,188,"require.registerExtension module.js:385",0x3b9aad994590,~
code-creation,LazyCompile,0x1f9009ed6fe0,2892,"Module._compile module.js:362",0x12824e0c0f40,~
code-creation,LazyCompile,0x1f9009f10040,2892,"Module._compile module.js:362",0x12824e0c0f40,
code-creation,LoadIC,0x1f9009eb9f80,108,"get"
code-creation,LoadIC,0x1f9009eb9f80,108,"get"
code-creation,Script,0x1f9009f61f60,160,"/home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/basicAuth.js",0x3b9aad9956b8,
code-creation,Function,0x1f9009ee5d80,228,"module.exports.callback /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/basicAuth.js:54",0x3b9aad9957e0,~
code-creation,Function,0x1f9009ee5e80,264,"module.exports.req.remoteUser /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/basicAuth.js:76",0x3b9aad9958c0,~
code-creation,Function,0x1f9009f29080,1172,"module.exports /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/basicAuth.js:61",0x3b9aad995a08,~
code-creation,Function,0x1f9009f8bba0,928,"basicAuth /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/basicAuth.js:45",0x3b9aad995b30,~
code-creation,LazyCompile,0x1f9009f13320,456," /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/basicAuth.js:1",0x3b9aad9955e0,~
tick,0x1f9009f6fcbd,0x7fff190448e0,0,0x1f9009ebc7d3,0,0x1f9009eb8cc8,0x1f9009eba19f,0x1f9009ec8e25,0x1f9009ec929c,0x1f9009ec9af6,0x1f9009ec9b17,0x1f9009f1c806,0x1f9009f0c45c,0x1f9009f0ca35,0x1f9009f0d15c,0x1f9009f0efd6,0x1f9009f0e9d3,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f13396,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f1ffbf,0x1f9009f3c434,0x1f9009f0fd1a,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,CallIC,0x1f9009f65f20,202,"forEach"
code-creation,LoadIC,0x1f9009f29520,108,"get"
code-creation,LoadIC,0x1f9009f29520,108,"get"
code-creation,Script,0x1f9009f8bf40,160,"/home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/bodyParser.js",0x3b9aad995f58,
code-creation,Function,0x1f9009f13500,228,"mime /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/bodyParser.js:25",0x3b9aad9960f8,~
code-creation,Function,0x1f9009f13600,564,"bodyParser /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/bodyParser.js:81",0x3b9aad9961e8,~
code-creation,Function,0x1f9009f32e80,400,"bodyParser /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/bodyParser.js:79",0x3b9aad9962d0,~
code-creation,Function,0x1f9009f33020,192," /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/bodyParser.js:108",0x3b9aad9963a8,~
code-creation,Function,0x1f9009f330e0,300,"exports.parse.application/x-www-form-urlencoded /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/bodyParser.js:109",0x3b9aad996478,~
tick,0x7fc5979a3303,0x7fff19043928,0,0x7fc5979a57d7,2,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f1ffbf,0x1f9009f3c434,0x1f9009f0fd1a,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,Function,0x1f9009f33220,472,"exports.parse.application/x-www-form-urlencoded /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/bodyParser.js:105",0x3b9aad996590,~
code-creation,Function,0x1f9009f31a20,192," /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/bodyParser.js:126",0x3b9aad996668,~
code-creation,Function,0x1f9009f31ae0,312,"exports.parse.application/json /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/bodyParser.js:127",0x3b9aad996738,~
code-creation,Function,0x1f9009f31c20,472,"exports.parse.application/json /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/bodyParser.js:123",0x3b9aad996850,~
code-creation,Function,0x1f9009f31e00,456,"ondata /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/bodyParser.js:154",0x3b9aad996938,~
code-creation,Function,0x1f9009f2da20,136,"exports.parse.multipart/form-data.data.(anonymous function) /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/bodyParser.js:150",0x3b9aad996a10,~
code-creation,Function,0x1f9009f2dac0,140,"exports.parse.multipart/form-data.form.on.done /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/bodyParser.js:164",0x3b9aad996af0,~
code-creation,Function,0x1f9009f2db60,140,"exports.parse.multipart/form-data.form.on.done /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/bodyParser.js:168",0x3b9aad996bd0,~
code-creation,Function,0x1f9009f2dc00,212," /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/bodyParser.js:172",0x3b9aad996ca8,~
code-creation,Function,0x1f9009f2dce0,392,"exports.parse.multipart/form-data /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/bodyParser.js:177",0x3b9aad996d78,~
code-creation,Function,0x1f9009f38960,1076,"exports.parse.multipart/form-data /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/bodyParser.js:144",0x3b9aad996ee0,~
code-creation,LazyCompile,0x1f9009f5d9e0,900," /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/bodyParser.js:1",0x3b9aad995e80,~
tick,0x5bf30a,0x7fff19044670,0,0x12824e0bf559,0,0x1f9009ec9220,0x1f9009ec9af6,0x1f9009ec9b17,0x1f9009f1c806,0x1f9009f0c45c,0x1f9009f0ca35,0x1f9009f0cb9c,0x1f9009f0d1a6,0x1f9009f0efd6,0x1f9009f0e9d3,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f5dae9,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f1ffbf,0x1f9009f3c434,0x1f9009f0fd1a,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,LoadIC,0x1f9009eceea0,108,"get"
code-creation,LoadIC,0x1f9009eceea0,108,"get"
code-creation,Script,0x1f9009f2de80,160,"/home/linus/development/projects/turkey/node_modules/express/node_modules/qs/index.js",0x3b9aad9975f0,
code-creation,LazyCompile,0x1f9009f2df20,156," /home/linus/development/projects/turkey/node_modules/express/node_modules/qs/index.js:1",0x3b9aad997518,~
tick,0x1f9009f380c5,0x7fff190447d0,0,0x0,0,0x1f9009f1c746,0x1f9009f203f4,0x1f9009f0caa5,0x1f9009f0cb9c,0x1f9009f0d1a6,0x1f9009f0efd6,0x1f9009f0e9d3,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f2df8f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f5dae9,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f1ffbf,0x1f9009f3c434,0x1f9009f0fd1a,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,LoadIC,0x1f9009f0df80,108,"get"
code-creation,LoadIC,0x1f9009f0df80,108,"get"
code-creation,Script,0x1f9009f38da0,160,"/home/linus/development/projects/turkey/node_modules/express/node_modules/qs/lib/querystring.js",0x3b9aad997a88,
code-creation,Stub,0x1f9009f38e40,247,"FastNewContextStub"
tick,0x72c46b,0x7fff190447d0,0,0x281d610,2,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f2df8f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f5dae9,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f1ffbf,0x1f9009f3c434,0x1f9009f0fd1a,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,Function,0x1f9009f34480,712,"promote /home/linus/development/projects/turkey/node_modules/express/node_modules/qs/lib/querystring.js:26",0x3b9aad997ca0,~
code-creation,Function,0x1f9009f3cc00,1752,"parse /home/linus/development/projects/turkey/node_modules/express/node_modules/qs/lib/querystring.js:34",0x3b9aad997da0,~
code-creation,Function,0x1f9009f34760,956,"merge /home/linus/development/projects/turkey/node_modules/express/node_modules/qs/lib/querystring.js:75",0x3b9aad997eb0,~
code-creation,Function,0x1f9009f5dd80,156," /home/linus/development/projects/turkey/node_modules/express/node_modules/qs/lib/querystring.js:100",0x3b9aad998040,~
code-creation,Function,0x1f9009f5de20,400,"parseObject /home/linus/development/projects/turkey/node_modules/express/node_modules/qs/lib/querystring.js:98",0x3b9aad998138,~
code-creation,Function,0x1f9009f32040,872,"String.split.reduce.base /home/linus/development/projects/turkey/node_modules/express/node_modules/qs/lib/querystring.js:113",0x3b9aad998238,~
code-creation,Function,0x1f9009f323c0,284,"parseString /home/linus/development/projects/turkey/node_modules/express/node_modules/qs/lib/querystring.js:110",0x3b9aad998310,~
code-creation,Function,0x1f9009f324e0,244,"stringifyString /home/linus/development/projects/turkey/node_modules/express/node_modules/qs/lib/querystring.js:177",0x3b9aad9983f0,~
code-creation,Function,0x1f9009f325e0,520,"stringifyArray /home/linus/development/projects/turkey/node_modules/express/node_modules/qs/lib/querystring.js:191",0x3b9aad9984e0,~
code-creation,Function,0x1f9009f736c0,656,"stringifyObject /home/linus/development/projects/turkey/node_modules/express/node_modules/qs/lib/querystring.js:209",0x3b9aad9985e8,~
code-creation,Function,0x1f9009f73960,476,"set /home/linus/development/projects/turkey/node_modules/express/node_modules/qs/lib/querystring.js:233",0x3b9aad9986d8,~
code-creation,Function,0x1f9009f73b40,568,"lastBraceInKey /home/linus/development/projects/turkey/node_modules/express/node_modules/qs/lib/querystring.js:252",0x3b9aad9987d0,~
code-creation,Function,0x1f9009f73d80,404,"exports.parse /home/linus/development/projects/turkey/node_modules/express/node_modules/qs/lib/querystring.js:141",0x3b9aad9988a8,~
code-creation,Function,0x1f9009f79600,420,"exports.stringify /home/linus/development/projects/turkey/node_modules/express/node_modules/qs/lib/querystring.js:156",0x3b9aad998988,~
code-creation,LazyCompile,0x1f9009f797c0,1744," /home/linus/development/projects/turkey/node_modules/express/node_modules/qs/lib/querystring.js:1",0x3b9aad9979b0,~
code-creation,LoadIC,0x1f9009f378c0,102,"paths"
code-creation,LoadIC,0x1f9009f378c0,102,"paths"
tick,0x1f9009f0b477,0x7fff19044f20,0,0xc00000000,0,0x1f9009f07194,0x1f9009f0d233,0x1f9009f0efd6,0x1f9009f0e9d3,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f5db50,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f1ffbf,0x1f9009f3c434,0x1f9009f0fd1a,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,CallIC,0x1f9009f73f20,142,"parse"
code-creation,LoadIC,0x1f9009f3baa0,106,"main"
code-creation,LoadIC,0x1f9009f3baa0,106,"main"
code-creation,LoadIC,0x1f9009f75f80,108,"get"
code-creation,LoadIC,0x1f9009f75f80,108,"get"
code-creation,Script,0x1f9009f79ea0,160,"/home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/index.js",0x3b9aad9990f0,
code-creation,LazyCompile,0x1f9009f34be0,208," /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/index.js:1",0x3b9aad999018,~
tick,0x65d056,0x7fff19044b30,0,0x27c20b0,0,0x1f9009f20312,0x1f9009f0caa5,0x1f9009f0cb9c,0x1f9009f0d1a6,0x1f9009f0efd6,0x1f9009f0e9d3,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f34c50,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f5db50,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f1ffbf,0x1f9009f3c434,0x1f9009f0fd1a,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,CallIC,0x1f9009f34cc0,445,"utf8Slice"
code-creation,LoadIC,0x1f9009f8df80,108,"get"
code-creation,LoadIC,0x1f9009f8df80,108,"get"
code-creation,Script,0x1f9009f79f40,160,"/home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/incoming_form.js",0x3b9aad999518,
tick,0x7fc5979d5242,0x7fff19044140,1,0x536740,2,0x1f9009f108c2,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f34c50,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f5db50,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f1ffbf,0x1f9009f3c434,0x1f9009f0fd1a,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,Function,0x1f9009f34e80,568,"IncomingForm /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/incoming_form.js:12",0x3b9aad999698,~
code-creation,Function,0x1f9009f350c0,716," /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/incoming_form.js:36",0x3b9aad999788,~
code-creation,Function,0x1f9009f353a0,300,"IncomingForm.parse.pause /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/incoming_form.js:51",0x3b9aad999858,~
code-creation,Function,0x1f9009f354e0,300,"IncomingForm.parse.resume /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/incoming_form.js:65",0x3b9aad999928,~
code-creation,Function,0x1f9009f334e0,132,"IncomingForm.parse.fields /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/incoming_form.js:84",0x3b9aad999a00,~
code-creation,Function,0x1f9009f33580,140,"IncomingForm.parse.fields /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/incoming_form.js:87",0x3b9aad999ad0,~
code-creation,Function,0x1f9009f33620,132," /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/incoming_form.js:90",0x3b9aad999ba8,~
code-creation,Function,0x1f9009f336c0,248,"IncomingForm.parse.fields /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/incoming_form.js:93",0x3b9aad999c80,~
code-creation,Function,0x1f9009f3c5c0,124,"IncomingForm.parse.on.on.files.(anonymous function) /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/incoming_form.js:107",0x3b9aad999d60,~
code-creation,Function,0x1f9009f3c040,124,"IncomingForm.parse /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/incoming_form.js:110",0x3b9aad999e40,~
code-creation,Function,0x1f9009f337c0,144,"IncomingForm.parse /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/incoming_form.js:113",0x3b9aad999f18,~
code-creation,Function,0x1f9009f33860,152,"IncomingForm.parse /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/incoming_form.js:116",0x3b9aad99a040,~
code-creation,Function,0x1f9009f33900,1140,"IncomingForm.parse /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/incoming_form.js:50",0x3b9aad99a170,~
code-creation,Function,0x1f9009f33d80,172,"IncomingForm.writeHeaders /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/incoming_form.js:124",0x3b9aad99a248,~
code-creation,Function,0x1f9009f26d00,620,"IncomingForm.write /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/incoming_form.js:130",0x3b9aad99a328,~
code-creation,Function,0x1f9009f3bce0,116,"IncomingForm.pause /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/incoming_form.js:147",0x3b9aad99a3f8,~
code-creation,Function,0x1f9009f2ff80,116,"IncomingForm.resume /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/incoming_form.js:152",0x3b9aad99a4c8,~
code-creation,Function,0x1f9009f2a460,128,"IncomingForm.onPart /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/incoming_form.js:157",0x3b9aad99a5a0,~
code-creation,Function,0x1f9009f26f80,496,"IncomingForm.handlePart.File.path /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/incoming_form.js:169",0x3b9aad99a678,~
code-creation,Function,0x1f9009f33e40,168,"IncomingForm.handlePart.File.path /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/incoming_form.js:178",0x3b9aad99a748,~
code-creation,Function,0x1f9009f25960,128,"IncomingForm.handlePart /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/incoming_form.js:198",0x3b9aad99a818,~
code-creation,Function,0x1f9009f33f00,176,"IncomingForm.handlePart /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/incoming_form.js:196",0x3b9aad99a8f0,~
code-creation,Function,0x1f9009f27180,256,"IncomingForm.handlePart /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/incoming_form.js:204",0x3b9aad99a9c0,~
code-creation,Function,0x1f9009f27280,148,"IncomingForm.handlePart /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/incoming_form.js:203",0x3b9aad99aa90,~
code-creation,Function,0x1f9009f27320,1168,"IncomingForm.handlePart /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/incoming_form.js:162",0x3b9aad99abb8,~
code-creation,Function,0x1f9009f2ad20,1420,"IncomingForm._parseContentType /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/incoming_form.js:212",0x3b9aad99ac90,~
code-creation,Function,0x1f9009f277c0,232,"IncomingForm._error /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/incoming_form.js:236",0x3b9aad99ad68,~
code-creation,Function,0x1f9009f2b2c0,260,"IncomingForm._parseContentLength /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/incoming_form.js:246",0x3b9aad99ae38,~
tick,0x7fc5979e7ece,0x7fff19043af8,0,0x7fc5979a3590,2,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f34c50,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f5db50,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f1ffbf,0x1f9009f3c434,0x1f9009f0fd1a,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,Function,0x1f9009f131c0,124,"IncomingForm._newParser /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/incoming_form.js:253",0x3b9aad99af08,~
code-creation,Function,0x1f9009f2b3e0,504,"IncomingForm._initMultipart.parser.onPartBegin /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/incoming_form.js:268",0x3b9aad99afd8,~
code-creation,Function,0x1f9009f278c0,236,"IncomingForm._initMultipart.parser.onHeaderField /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/incoming_form.js:278",0x3b9aad99b0c0,~
code-creation,Function,0x1f9009f2b5e0,236,"IncomingForm._initMultipart.parser.onHeaderValue /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/incoming_form.js:282",0x3b9aad99b1a8,~
code-creation,Function,0x1f9009f2b6e0,880,"IncomingForm._initMultipart.parser.onHeaderEnd /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/incoming_form.js:286",0x3b9aad99b280,~
code-creation,Function,0x1f9009f2ba60,136,"IncomingForm._initMultipart.parser.onHeadersEnd /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/incoming_form.js:305",0x3b9aad99b350,~
code-creation,Function,0x1f9009f2bb00,168,"IncomingForm._initMultipart.parser.onPartData /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/incoming_form.js:309",0x3b9aad99b438,~
code-creation,Function,0x1f9009f2bbc0,140,"IncomingForm._initMultipart.parser.onPartEnd /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/incoming_form.js:313",0x3b9aad99b508,~
code-creation,Function,0x1f9009f2bc60,160,"IncomingForm._initMultipart.parser.onEnd /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/incoming_form.js:317",0x3b9aad99b5d8,~
code-creation,Function,0x1f9009f02040,776,"IncomingForm._initMultipart /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/incoming_form.js:257",0x3b9aad99b6f8,~
code-creation,Function,0x1f9009f2bd00,148," /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/incoming_form.js:331",0x3b9aad99b7d8,~
code-creation,Function,0x1f9009f02360,1012,"IncomingForm._fileName /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/incoming_form.js:325",0x3b9aad99b8c0,~
code-creation,Function,0x1f9009f2bda0,148,"IncomingForm._initUrlencoded.parser.onField /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/incoming_form.js:343",0x3b9aad99b9a0,~
code-creation,Function,0x1f9009f2be40,160,"IncomingForm._initUrlencoded.parser.onEnd /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/incoming_form.js:347",0x3b9aad99ba70,~
code-creation,Function,0x1f9009f02760,384,"IncomingForm._initUrlencoded /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/incoming_form.js:337",0x3b9aad99bb58,~
code-creation,Function,0x1f9009f028e0,868,"IncomingForm._uploadPath /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/incoming_form.js:355",0x3b9aad99bc48,~
code-creation,Function,0x1f9009f2bee0,216,"IncomingForm._maybeEnd /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/incoming_form.js:371",0x3b9aad99bd18,~
code-creation,LazyCompile,0x1f9009f688e0,2552," /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/incoming_form.js:1",0x3b9aad999440,~
code-creation,LazyCompile,0x1f9009fa2040,3708,"Join native array.js:119",0x3f0f96bf1380,~
code-creation,LazyCompile,0x1f9009fa2ec0,384,"UseSparseVariant native array.js:111",0x3f0f96bf12f0,~
tick,0x7fc597a39d6a,0x7fff19044738,0,0x0,1
code-creation,LoadIC,0x1f9009fa3040,108,"get"
code-creation,LoadIC,0x1f9009fa3040,108,"get"
code-creation,Script,0x1f9009fa30c0,160,"/home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/util.js",0x3b9aad9a0400,
code-creation,LazyCompile,0x1f9009fa3160,452," /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/util.js:1",0x3b9aad9a0328,~
code-creation,LazyCompile,0x1f9009fa3340,164,"fs.statSync fs.js:413",0x12824e0c5e50,~
tick,0x5e9355,0x7fff190445e8,0,0x594feb,2,0x1f9009f0c45c,0x1f9009f0ca35,0x1f9009f0d15c,0x1f9009f0efd6,0x1f9009f0e9d3,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f68afe,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f34c50,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f5db50,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f1ffbf,0x1f9009f3c434,0x1f9009f0fd1a,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d
code-creation,LazyCompile,0x1f9009fa3400,221,"fs.statSync fs.js:413",0x12824e0c5e50,*
code-creation,LoadIC,0x1f9009fa34e0,108,"get"
code-creation,LoadIC,0x1f9009fa34e0,108,"get"
code-creation,Script,0x1f9009fa3560,160,"/home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/file.js",0x3b9aad9a0910,
code-creation,Function,0x1f9009fa3600,712,"File /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/file.js:7",0x3b9aad9a0a38,~
code-creation,Function,0x1f9009fa38e0,128,"File._backwardsCompatibility /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/file.js:30",0x3b9aad9a0b08,~
code-creation,Function,0x1f9009fa3960,128,"File._backwardsCompatibility /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/file.js:33",0x3b9aad9a0bd8,~
code-creation,Function,0x1f9009fa39e0,128,"File._backwardsCompatibility /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/file.js:36",0x3b9aad9a0ca8,~
code-creation,Function,0x1f9009fa3a60,340,"File._backwardsCompatibility /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/file.js:28",0x3b9aad9a0d88,~
code-creation,Function,0x1f9009fa3bc0,164,"File.open /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/file.js:41",0x3b9aad9a0e58,~
code-creation,Function,0x1f9009fa3c80,312,"File.write /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/file.js:47",0x3b9aad9a0f28,~
code-creation,Function,0x1f9009fa3dc0,384,"File.write /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/file.js:45",0x3b9aad9a1038,~
code-creation,Function,0x1f9009fa3f40,168,"File.end /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/file.js:57",0x3b9aad9a1108,~
code-creation,Function,0x1f9009fa4040,308,"File.end /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/file.js:55",0x3b9aad9a1200,~
code-creation,LazyCompile,0x1f9009fa4180,876," /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/file.js:1",0x3b9aad9a0838,~
tick,0x1f9009f202e4,0x7fff19044988,0,0x1cf698f6a091,0,0x1f9009f0caa5,0x1f9009f0cb9c,0x1f9009f0d1a6,0x1f9009f0efd6,0x1f9009f0e9d3,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f68b65,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f34c50,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f5db50,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f1ffbf,0x1f9009f3c434,0x1f9009f0fd1a,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d
code-creation,LoadIC,0x1f9009fa4500,108,"get"
code-creation,LoadIC,0x1f9009fa4500,108,"get"
code-creation,Script,0x1f9009fa4580,160,"/home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/multipart_parser.js",0x3b9aad9a17d0,
tick,0x676390,0x7fff19042f30,0,0x1,2,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f68b65,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f34c50,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f5db50,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f1ffbf,0x1f9009f3c434,0x1f9009f0fd1a,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b
code-creation,Stub,0x1f9009fa4620,240,"FastNewContextStub"
code-creation,Function,0x1f9009fa4720,280,"MultipartParser /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/multipart_parser.js:41",0x3b9aad9a19f8,~
code-creation,Function,0x1f9009fa4840,124,"lower /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/multipart_parser.js:33",0x3b9aad9a1ad0,~
code-creation,Function,0x1f9009fa48c0,568,"MultipartParser.stateToString /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/multipart_parser.js:52",0x3b9aad9a1bb8,~
code-creation,Function,0x1f9009fa4b00,732,"MultipartParser.initWithBoundary /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/multipart_parser.js:59",0x3b9aad9a1c98,~
code-creation,Function,0x1f9009fa4de0,144,"MultipartParser.write.mark /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/multipart_parser.js:89",0x3b9aad9a1d70,~
code-creation,Function,0x1f9009fa4e80,156,"MultipartParser.write.clear /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/multipart_parser.js:92",0x3b9aad9a1e48,~
code-creation,KeyedCallInitialize,0x1f9009fa4f20,162,"args_count: 3"
code-creation,Function,0x1f9009fa4fe0,400,"MultipartParser.write.callback /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/multipart_parser.js:95",0x3b9aad9a1f40,~
code-creation,Function,0x1f9009fa5180,396,"MultipartParser.write.dataCallback /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/multipart_parser.js:105",0x3b9aad9a2098,~
code-creation,Function,0x1f9009fa6040,6904,"MultipartParser.write /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/multipart_parser.js:72",0x3b9aad9a2230,~
code-creation,Function,0x1f9009fa7b40,256,"MultipartParser.end /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/multipart_parser.js:304",0x3b9aad9a2300,~
code-creation,Function,0x1f9009fa7c40,168,"MultipartParser.explain /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/multipart_parser.js:310",0x3b9aad9a23d0,~
code-creation,LazyCompile,0x1f9009fa8040,2672," /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/multipart_parser.js:1",0x3b9aad9a16f8,~
code-creation,StoreIC,0x1f9009fa8ac0,164,"PARSER_UNINITIALIZED"
code-creation,StoreIC,0x1f9009fa8ac0,164,"PARSER_UNINITIALIZED"
code-creation,StoreIC,0x1f9009fa8b80,164,"START"
code-creation,StoreIC,0x1f9009fa8b80,164,"START"
code-creation,StoreIC,0x1f9009fa8c40,164,"START_BOUNDARY"
code-creation,StoreIC,0x1f9009fa8c40,164,"START_BOUNDARY"
code-creation,StoreIC,0x1f9009fa8d00,164,"HEADER_FIELD_START"
code-creation,StoreIC,0x1f9009fa8d00,164,"HEADER_FIELD_START"
code-creation,StoreIC,0x1f9009fa8dc0,164,"HEADER_FIELD"
code-creation,StoreIC,0x1f9009fa8dc0,164,"HEADER_FIELD"
code-creation,StoreIC,0x1f9009fa8e80,164,"HEADER_VALUE_START"
code-creation,StoreIC,0x1f9009fa8e80,164,"HEADER_VALUE_START"
code-creation,StoreIC,0x1f9009fa8f40,164,"HEADER_VALUE"
code-creation,StoreIC,0x1f9009fa8f40,164,"HEADER_VALUE"
code-creation,StoreIC,0x1f9009fa9000,164,"HEADER_VALUE_ALMOST_DONE"
code-creation,StoreIC,0x1f9009fa9000,164,"HEADER_VALUE_ALMOST_DONE"
code-creation,StoreIC,0x1f9009fa90c0,164,"HEADERS_ALMOST_DONE"
code-creation,StoreIC,0x1f9009fa90c0,164,"HEADERS_ALMOST_DONE"
code-creation,StoreIC,0x1f9009fa9180,164,"PART_DATA_START"
code-creation,StoreIC,0x1f9009fa9180,164,"PART_DATA_START"
code-creation,StoreIC,0x1f9009fa9240,164,"PART_DATA"
code-creation,StoreIC,0x1f9009fa9240,164,"PART_DATA"
code-creation,StoreIC,0x1f9009fa9300,164,"PART_END"
code-creation,StoreIC,0x1f9009fa9300,164,"PART_END"
code-creation,StoreIC,0x1f9009fa93c0,164,"END"
code-creation,StoreIC,0x1f9009fa93c0,164,"END"
code-creation,StoreIC,0x1f9009fa9480,164,"PART_BOUNDARY"
code-creation,StoreIC,0x1f9009fa9480,164,"PART_BOUNDARY"
code-creation,Stub,0x1f9009fa9540,288,"BinaryOpStub_MUL_Alloc_SMI"
code-creation,StoreIC,0x1f9009fa9660,164,"LAST_BOUNDARY"
code-creation,StoreIC,0x1f9009fa9660,164,"LAST_BOUNDARY"
tick,0x7039f5,0x7fff19044688,0,0x77b4da,0,0x1f9009fa84b0,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f68b65,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f34c50,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f5db50,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f1ffbf,0x1f9009f3c434,0x1f9009f0fd1a,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d
code-creation,KeyedLoadIC,0x1f9009fa9720,122,"START"
code-creation,KeyedLoadIC,0x1f9009fa9720,122,"START"
code-creation,KeyedLoadIC,0x1f9009fa97a0,122,"START_BOUNDARY"
code-creation,KeyedLoadIC,0x1f9009fa97a0,122,"START_BOUNDARY"
code-creation,LoadIC,0x1f9009fa9820,108,"get"
code-creation,LoadIC,0x1f9009fa9820,108,"get"
code-creation,Script,0x1f9009fa98a0,160,"/home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/querystring_parser.js",0x3b9aad9a29c8,
code-creation,Function,0x1f9009fa9940,132,"QuerystringParser /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/querystring_parser.js:7",0x3b9aad9a2ae0,~
code-creation,Function,0x1f9009fa99e0,204,"QuerystringParser.write /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/querystring_parser.js:12",0x3b9aad9a2bb8,~
code-creation,Function,0x1f9009fa9ac0,608,"QuerystringParser.end /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/querystring_parser.js:17",0x3b9aad9a2c98,~
code-creation,LazyCompile,0x1f9009fa9d20,516," /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/node_modules/formidable/lib/querystring_parser.js:1",0x3b9aad9a28f0,~
code-creation,Script,0x1f9009fa9f40,160,"string_decoder.js",0x3b9aad9a2f80,
code-creation,LazyCompile,0x1f9009faa040,252," string_decoder.js:1",0x3b9aad9a2ea8,~
tick,0x605f91,0x7fff190446b0,0,0x283f650,2,0x1f9009f0be2b,0x1f9009ed3da9,0x1f9009f0ebef,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f68c51,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f34c50,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f5db50,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f1ffbf,0x1f9009f3c434,0x1f9009f0fd1a,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,LoadIC,0x1f9009faa140,108,"get"
code-creation,LoadIC,0x1f9009faa140,108,"get"
code-creation,Script,0x1f9009faa1c0,160,"/home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/compiler.js",0x3b9aad9a3ce0,
tick,0x7fc597d0509e,0x7fff19044480,0,0x7fff190447d0,2,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f1ffbf,0x1f9009f3c434,0x1f9009f0fd1a,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,Function,0x1f9009faa260,132,"module.exports /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/compiler.js:103",0x3b9aad9a3f00,~
code-creation,Function,0x1f9009faa300,224,"module.exports /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/compiler.js:99",0x3b9aad9a4040,~
code-creation,Function,0x1f9009faa3e0,204,"module.exports /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/compiler.js:95",0x3b9aad9a4120,~
code-creation,Function,0x1f9009faa4c0,168,"compile /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/compiler.js:94",0x3b9aad9a41f0,~
code-creation,Function,0x1f9009faa580,392,"module.exports /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/compiler.js:72",0x3b9aad9a42d0,~
code-creation,Function,0x1f9009faa720,388,"module.exports /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/compiler.js:64",0x3b9aad9a43c0,~
code-creation,Function,0x1f9009faa8c0,1180,"compiler /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/compiler.js:53",0x3b9aad9a4518,~
code-creation,Function,0x1f9009faad60,744,"compiler /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/compiler.js:42",0x3b9aad9a4620,~
code-creation,Function,0x1f9009fab060,480,"exports.compilers.sass.compile /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/compiler.js:130",0x3b9aad9a4718,~
code-creation,Function,0x1f9009fab240,448,"exports.compilers.less.compile /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/compiler.js:142",0x3b9aad9a4810,~
code-creation,Function,0x1f9009fab400,480,"exports.compilers.coffeescript.compile /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/compiler.js:154",0x3b9aad9a4908,~
code-creation,LazyCompile,0x1f9009fab5e0,1944," /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/compiler.js:1",0x3b9aad9a3c08,~
code-creation,StoreIC,0x1f9009fabd80,164,"sass"
code-creation,StoreIC,0x1f9009fabd80,164,"sass"
code-creation,StoreIC,0x1f9009fabe40,164,"less"
code-creation,StoreIC,0x1f9009fabe40,164,"less"
code-creation,StoreIC,0x1f9009fabf00,164,"coffeescript"
code-creation,StoreIC,0x1f9009fabf00,164,"coffeescript"
code-creation,LoadIC,0x1f9009fac040,108,"get"
code-creation,LoadIC,0x1f9009fac040,108,"get"
code-creation,Script,0x1f9009fac0c0,160,"/home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/cookieParser.js",0x3b9aad9a4e28,
code-creation,Function,0x1f9009fac160,592,"cookieParser /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/cookieParser.js:33",0x3b9aad9a4f70,~
code-creation,Function,0x1f9009fac3c0,180,"cookieParser /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/cookieParser.js:32",0x3b9aad9a5040,~
code-creation,LazyCompile,0x1f9009fac480,276," /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/cookieParser.js:1",0x3b9aad9a4d50,~
tick,0x7fff191bc981,0x7fff19044940,0,0x7fff190449b8,0,0x1f9009ec68fd,0x1f9009f380c5,0x1f9009fa349b,0x1f9009f0c45c,0x1f9009f0ca35,0x1f9009f0cb9c,0x1f9009f0d1a6,0x1f9009f0efd6,0x1f9009f0e9d3,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009fac4f6,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f1ffbf,0x1f9009f3c434,0x1f9009f0fd1a,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,LoadIC,0x1f9009fac5a0,108,"get"
code-creation,LoadIC,0x1f9009fac5a0,108,"get"
code-creation,Script,0x1f9009fac620,160,"/home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/csrf.js",0x3b9aad9a5428,
code-creation,Function,0x1f9009fac6c0,348,"defaultValue /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/csrf.js:101",0x3b9aad9a5548,~
code-creation,Function,0x1f9009fac820,468,"module.exports /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/csrf.js:75",0x3b9aad9a5640,~
code-creation,Function,0x1f9009faca00,360,"csrf /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/csrf.js:71",0x3b9aad9a5728,~
code-creation,LazyCompile,0x1f9009facb80,400," /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/csrf.js:1",0x3b9aad9a5350,~
code-creation,LoadIC,0x1f9009facd20,108,"get"
code-creation,LoadIC,0x1f9009facd20,108,"get"
tick,0x7fc5979d5c92,0x7fff19044f50,0,0x335e630d8261,0,0x1f9009eb8533,0x1f9009f2fd91,0x1f9009f102f3,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f1ffbf,0x1f9009f3c434,0x1f9009f0fd1a,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,Script,0x1f9009facda0,160,"/home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/directory.js",0x3b9aad9a5bd8,
code-creation,Function,0x1f9009face40,236,"<ul id="files">.files.map.icon /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/directory.js:148",0x3b9aad9a5da8,~
code-creation,Function,0x1f9009facf40,312,"htmlPath /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/directory.js:146",0x3b9aad9a5e90,~
code-creation,Function,0x1f9009fad080,652," /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/directory.js:159",0x3b9aad9a6040,~
code-creation,Function,0x1f9009fad320,384,"html /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/directory.js:158",0x3b9aad9a6148,~
code-creation,Function,0x1f9009fad4a0,252,"load /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/directory.js:187",0x3b9aad9a6220,~
code-creation,Function,0x1f9009fad5a0,184,"icons..js /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/directory.js:202",0x3b9aad9a62f8,~
code-creation,Function,0x1f9009fad660,144,"removeHidden /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/directory.js:201",0x3b9aad9a63d0,~
code-creation,KeyedCallInitialize,0x1f9009fad700,162,"args_count: 7"
code-creation,Function,0x1f9009fad7c0,908,"module.exports /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/directory.js:80",0x3b9aad9a64b8,~
code-creation,Function,0x1f9009fadb60,372,"module.exports /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/directory.js:72",0x3b9aad9a6598,~
code-creation,Function,0x1f9009fae040,1412,"directory /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/directory.js:56",0x3b9aad9a6708,~
code-creation,Function,0x1f9009fae5e0,760,"directory /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/directory.js:46",0x3b9aad9a6828,~
code-creation,Function,0x1f9009fae8e0,664,"exports.html /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/directory.js:105",0x3b9aad9a6908,~
tick,0x7fc5979d1e4c,0x7fff190431a0,0,0x7fff19043810,2,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f1ffbf,0x1f9009f3c434,0x1f9009f0fd1a,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,Function,0x1f9009faeb80,320,"exports.html /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/directory.js:103",0x3b9aad9a69f8,~
code-creation,Function,0x1f9009faecc0,596,"exports.html /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/directory.js:102",0x3b9aad9a6b60,~
code-creation,Function,0x1f9009faef20,276,"exports.json /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/directory.js:124",0x3b9aad9a6c48,~
code-creation,Function,0x1f9009faf040,284,"exports.plain /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/directory.js:135",0x3b9aad9a6d30,~
code-creation,LazyCompile,0x1f9009faf160,1780," /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/directory.js:1",0x3b9aad9a5b00,~
code-creation,LoadIC,0x1f9009faf860,108,"get"
code-creation,LoadIC,0x1f9009faf860,108,"get"
code-creation,Script,0x1f9009faf8e0,160,"/home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/errorHandler.js",0x3b9aad9a7308,
code-creation,Function,0x1f9009faf980,148," /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/errorHandler.js:66",0x3b9aad9a7468,~
code-creation,Function,0x1f9009fafa20,812,"module.exports.JSON.stringify.error /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/errorHandler.js:63",0x3b9aad9a7550,~
code-creation,Function,0x1f9009fafd60,304,"module.exports.JSON.stringify.error /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/errorHandler.js:62",0x3b9aad9a7640,~
code-creation,Function,0x1f9009fb0040,1172,"errorHandler /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/errorHandler.js:55",0x3b9aad9a7768,~
code-creation,Function,0x1f9009fb04e0,688,"errorHandler /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/errorHandler.js:46",0x3b9aad9a7878,~
code-creation,LazyCompile,0x1f9009fb07a0,656," /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/errorHandler.js:1",0x3b9aad9a7230,~
tick,0x5dbfef,0x7fff190451c0,0,0xc0000000a,0,0x1f9009f0e794,0x1f9009f0eef8,0x1f9009f0e9d3,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f1ffbf,0x1f9009f3c434,0x1f9009f0fd1a,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,LoadIC,0x1f9009fb0a40,108,"get"
code-creation,LoadIC,0x1f9009fb0a40,108,"get"
code-creation,Script,0x1f9009fb0ac0,160,"/home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/favicon.js",0x3b9aad9a7d18,
code-creation,Function,0x1f9009fb0b60,668,"module.exports /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/favicon.js:57",0x3b9aad9a7ec0,~
code-creation,Function,0x1f9009fb0e00,608,"favicon /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/favicon.js:51",0x3b9aad9a8040,~
code-creation,Function,0x1f9009fb1060,556,"favicon /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/favicon.js:46",0x3b9aad9a8140,~
code-creation,LazyCompile,0x1f9009fb12a0,448," /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/favicon.js:1",0x3b9aad9a7c40,~
code-creation,LoadIC,0x1f9009fb1460,108,"get"
code-creation,LoadIC,0x1f9009fb1460,108,"get"
tick,0x65cf93,0x7fff19044fd0,0,0x1cf698f6f721,0,0x1f9009eb8533,0x1f9009f2fd91,0x1f9009f102f3,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f1ffbf,0x1f9009f3c434,0x1f9009f0fd1a,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,Script,0x1f9009fb14e0,160,"/home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/limit.js",0x3b9aad9a8598,
code-creation,Function,0x1f9009fb1580,484,"parse /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/limit.js:70",0x3b9aad9a8718,~
code-creation,Function,0x1f9009fb1780,128,"deny /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/limit.js:37",0x3b9aad9a87e8,~
code-creation,Function,0x1f9009fb1800,280,"module.exports /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/limit.js:53",0x3b9aad9a88c0,~
code-creation,Function,0x1f9009fb1920,828,"limit /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/limit.js:30",0x3b9aad9a89e0,~
code-creation,Function,0x1f9009fb1c60,500,"limit /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/limit.js:27",0x3b9aad9a8ac8,~
code-creation,LazyCompile,0x1f9009fb1e60,280," /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/limit.js:1",0x3b9aad9a84c0,~
code-creation,LoadIC,0x1f9009fb1f80,108,"get"
code-creation,LoadIC,0x1f9009fb1f80,108,"get"
tick,0x6ccc5b,0x7fff19042ff0,1,0x536740,2,0x1f9009f108c2,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f1ffbf,0x1f9009f3c434,0x1f9009f0fd1a,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,Script,0x1f9009fb2040,160,"/home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/logger.js",0x3b9aad9a8ed0,
code-creation,Function,0x1f9009fb20e0,176,"js /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/logger.js:169",0x3b9aad9a9040,~
code-creation,Function,0x1f9009fb21a0,716,"compile /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/logger.js:167",0x3b9aad9a9120,~
code-creation,Function,0x1f9009fb2480,244,"module.exports.stream.write /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/logger.js:113",0x3b9aad9a91f0,~
code-creation,Function,0x1f9009fb2580,132,"module.exports.stream.write /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/logger.js:122",0x3b9aad9a92c8,~
code-creation,Function,0x1f9009fb2620,356,"module.exports.res.end /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/logger.js:145",0x3b9aad9a93b0,~
code-creation,Function,0x1f9009fb27a0,828,"logger /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/logger.js:128",0x3b9aad9a94d0,~
code-creation,Function,0x1f9009fb2ae0,1468,"logger /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/logger.js:83",0x3b9aad9a95f8,~
code-creation,Function,0x1f9009fb30a0,128,"exports.token /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/logger.js:185",0x3b9aad9a96d8,~
code-creation,Function,0x1f9009fb3120,128,"exports.format /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/logger.js:199",0x3b9aad9a97b8,~
code-creation,Function,0x1f9009fb31a0,616," /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/logger.js:218",0x3b9aad9a98b0,~
code-creation,Function,0x1f9009fb3420,124," /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/logger.js:236",0x3b9aad9a9988,~
code-creation,Function,0x1f9009fb34a0,124," /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/logger.js:242",0x3b9aad9a9a60,~
code-creation,Function,0x1f9009fb3520,164," /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/logger.js:248",0x3b9aad9a9b38,~
code-creation,Function,0x1f9009fb35e0,156," /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/logger.js:254",0x3b9aad9a9c08,~
code-creation,Function,0x1f9009fb3680,124," /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/logger.js:260",0x3b9aad9a9ce8,~
code-creation,Function,0x1f9009fb3700,200," /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/logger.js:266",0x3b9aad9a9dc0,~
code-creation,Function,0x1f9009fb37e0,320," /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/logger.js:272",0x3b9aad9a9e98,~
code-creation,Function,0x1f9009fb3920,168," /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/logger.js:278",0x3b9aad9a9f70,~
code-creation,Function,0x1f9009fb39e0,140," /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/logger.js:284",0x3b9aad9aa088,~
code-creation,Function,0x1f9009fb3a80,152," /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/logger.js:290",0x3b9aad9aa170,~
code-creation,Function,0x1f9009fb3b20,212," /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/logger.js:296",0x3b9aad9aa258,~
code-creation,LazyCompile,0x1f9009fb4040,1548," /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/logger.js:1",0x3b9aad9a8df8,~
tick,0x6d2515,0x7fff19044490,0,0x7fff19044fe8,2,0x1f9009f0efd6,0x1f9009f0e9d3,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f1ffbf,0x1f9009f3c434,0x1f9009f0fd1a,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,LazyCompile,0x1f9009fb4660,1192,"Module._findPath module.js:158",0x12824e0c04d8,~
code-creation,Stub,0x1f9009fb4b20,290,"CallFunctionStub_Args1_Implicit"
code-creation,Stub,0x1f9009fb4c60,290,"CallFunctionStub_Args2_Implicit"
code-creation,Stub,0x1f9009fb4da0,998,"CEntryStub"
code-creation,LazyCompile,0x1f9009fb51a0,3232,"Module._findPath module.js:158",0x12824e0c04d8,*
code-creation,LazyCompile,0x1f9009fb5e40,392,"tryExtensions module.js:146",0x12824e0c0138,~
tick,0x75b075,0x7fff19044a58,0,0x75627b,2,0x1f9009fb5776,0x1f9009f0efd6,0x1f9009f0e9d3,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f1ffbf,0x1f9009f3c434,0x1f9009f0fd1a,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,LazyCompile,0x1f9009fb6040,849,"tryExtensions module.js:146",0x12824e0c0138,*
code-creation,LoadIC,0x1f9009fb63a0,108,"get"
code-creation,LoadIC,0x1f9009fb63a0,108,"get"
code-creation,Script,0x1f9009fb6420,160,"/home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/methodOverride.js",0x3b9aad9abc88,
code-creation,LazyCompile,0x1f9009fb64c0,164," /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/methodOverride.js:1",0x3b9aad9abbb0,~
tick,0x1f9009f2cef4,0x7fff190450a0,0,0x100000000,0,0x1f9009f0d74e,0x1f9009f0f387,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f1ffbf,0x1f9009f3c434,0x1f9009f0fd1a,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,LoadIC,0x1f9009fb6580,108,"get"
code-creation,LoadIC,0x1f9009fb6580,108,"get"
code-creation,Script,0x1f9009fb6600,160,"/home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/profiler.js",0x3b9aad9ac1b8,
code-creation,Function,0x1f9009fb66a0,1004,"compare /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/profiler.js:61",0x3b9aad9ac318,~
code-creation,Function,0x1f9009fb6aa0,160,"row /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/profiler.js:80",0x3b9aad9ac3f8,~
code-creation,Function,0x1f9009fb6b40,508,"formatBytes /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/profiler.js:92",0x3b9aad9ac4e8,~
code-creation,Function,0x1f9009fb6d40,256,"snapshot /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/profiler.js:34",0x3b9aad9ac5b8,~
code-creation,Function,0x1f9009fb6e40,228,"module.exports.res.end /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/profiler.js:42",0x3b9aad9ac698,~
code-creation,Function,0x1f9009fb6f40,624,"module.exports /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/profiler.js:29",0x3b9aad9ac7d0,~
code-creation,Function,0x1f9009fb71c0,156,"profiler /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/profiler.js:28",0x3b9aad9ac8a0,~
code-creation,LazyCompile,0x1f9009fb7260,416," /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/profiler.js:1",0x3b9aad9ac0e0,~
code-creation,LoadIC,0x1f9009fb7400,108,"get"
code-creation,LoadIC,0x1f9009fb7400,108,"get"
tick,0x6cf85c,0x7fff19043090,1,0x536740,2,0x1f9009f108c2,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f1ffbf,0x1f9009f3c434,0x1f9009f0fd1a,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,Script,0x1f9009fb7480,160,"/home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/query.js",0x3b9aad9acc88,
code-creation,Function,0x1f9009fb7520,384,"query /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/query.js:34",0x3b9aad9acdb8,~
code-creation,Function,0x1f9009fb76a0,180,"query /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/query.js:33",0x3b9aad9ace88,~
code-creation,LazyCompile,0x1f9009fb7760,396," /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/query.js:1",0x3b9aad9acbb0,~
code-creation,LoadIC,0x1f9009fb7900,108,"get"
code-creation,LoadIC,0x1f9009fb7900,108,"get"
code-creation,Script,0x1f9009fb7980,160,"/home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/responseTime.js",0x3b9aad9ad260,
code-creation,LazyCompile,0x1f9009fb7a20,164," /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/responseTime.js:1",0x3b9aad9ad188,~
tick,0x646cbd,0x7fff19044ad0,0,0x7fff19044ba8,0,0x1f9009f202e3,0x1f9009f0caa5,0x1f9009fb6183,0x1f9009fb5776,0x1f9009f0efd6,0x1f9009f0e9d3,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f1ffbf,0x1f9009f3c434,0x1f9009f0fd1a,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,LoadIC,0x1f9009fb7ae0,108,"get"
code-creation,LoadIC,0x1f9009fb7ae0,108,"get"
code-creation,Script,0x1f9009fb7b60,160,"/home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/router.js",0x3b9aad9ad850,
tick,0x6491ee,0x7fff19044620,0,0x7fffffffffff,2,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f1ffbf,0x1f9009f3c434,0x1f9009f0fd1a,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,Function,0x1f9009fb8040,1216,"self /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/router.js:100",0x3b9aad9adb18,~
code-creation,Function,0x1f9009fb8500,384,"generateMethodFunction /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/router.js:98",0x3b9aad9adc10,~
code-creation,Function,0x1f9009fb8680,232," /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/router.js:175",0x3b9aad9adce8,~
code-creation,Function,0x1f9009fb8780,592,"nextMiddleware /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/router.js:166",0x3b9aad9addc8,~
code-creation,Function,0x1f9009fb89e0,1016,"param /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/router.js:141",0x3b9aad9adeb8,~
code-creation,Function,0x1f9009fb8de0,776,"pass /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/router.js:133",0x3b9aad9ae040,~
code-creation,Function,0x1f9009fb9100,424,"router /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/router.js:129",0x3b9aad9ae178,~
code-creation,Function,0x1f9009fb92c0,168,"methods.del /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/router.js:75",0x3b9aad9ae250,~
code-creation,Function,0x1f9009fb9380,148,"methods.all /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/router.js:85",0x3b9aad9ae328,~
code-creation,Function,0x1f9009fb9420,268,"methods.all /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/router.js:83",0x3b9aad9ae410,~
code-creation,Function,0x1f9009fb9540,124,"methods.param /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/router.js:92",0x3b9aad9ae4f0,~
code-creation,Function,0x1f9009fb95c0,176,"router.remove /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/router.js:202",0x3b9aad9ae5c8,~
code-creation,Function,0x1f9009fb9680,184,"router.remove /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/router.js:200",0x3b9aad9ae6b0,~
code-creation,Function,0x1f9009fb9740,392,"router.lookup /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/router.js:214",0x3b9aad9ae798,~
code-creation,Function,0x1f9009fb98e0,144,"router.lookup /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/router.js:228",0x3b9aad9ae870,~
code-creation,Function,0x1f9009fb9980,568,"router.lookup /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/router.js:207",0x3b9aad9ae978,~
code-creation,Function,0x1f9009fb9bc0,144,"router.match /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/router.js:252",0x3b9aad9aea50,~
code-creation,Function,0x1f9009fb9c60,768,"router.match /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/router.js:236",0x3b9aad9aeb70,~
code-creation,Function,0x1f9009fba040,1236,"router /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/router.js:66",0x3b9aad9aeca8,~
code-creation,Function,0x1f9009fba520,404,"options /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/router.js:272",0x3b9aad9aeda0,~
code-creation,Function,0x1f9009fba6c0,392,"path.concat.replace.replace.slash /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/router.js:292",0x3b9aad9aee90,~
code-creation,Function,0x1f9009fba860,128,"path.concat.replace.replace.slash /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/router.js:297",0x3b9aad9aef68,~
code-creation,Function,0x1f9009fba8e0,332,"optionsFor /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/router.js:291",0x3b9aad9af068,~
code-creation,Function,0x1f9009fbaa40,460," /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/router.js:321",0x3b9aad9af168,~
tick,0x7fc597a90330,0x7fff19044798,0,0x64b886,2,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f1ffbf,0x1f9009f3c434,0x1f9009f0fd1a,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,Function,0x1f9009fbac20,1328,"normalizePath /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/router.js:317",0x3b9aad9af258,~
code-creation,Function,0x1f9009fbb160,1180,"match /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/router.js:347",0x3b9aad9af3a0,~
code-creation,LazyCompile,0x1f9009fbb600,920," /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/router.js:1",0x3b9aad9ad778,~
code-creation,LoadIC,0x1f9009fbb9a0,108,"get"
code-creation,LoadIC,0x1f9009fbb9a0,108,"get"
tick,0x658810,0x7fff19041fe8,1,0x536740,2,0x1f9009f108c2,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f1ffbf,0x1f9009f3c434,0x1f9009f0fd1a,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,Script,0x1f9009fbba20,160,"/home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/session.js",0x3b9aad9af768,
code-creation,Function,0x1f9009fbbac0,436,"defaultFingerprint /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/session.js:52",0x3b9aad9af890,~
code-creation,Function,0x1f9009fbbc80,492,"store.hash /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/session.js:223",0x3b9aad9af970,~
code-creation,Function,0x1f9009fbbe80,344,"store.generate /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/session.js:232",0x3b9aad9afa58,~
code-creation,Function,0x1f9009fbc040,140,"hash /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/session.js:290",0x3b9aad9afb30,~
code-creation,Function,0x1f9009fbc0e0,136,"generate /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/session.js:295",0x3b9aad9afc00,~
code-creation,Function,0x1f9009fbc180,540,"res.writeHead /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/session.js:256",0x3b9aad9afcf0,~
code-creation,Function,0x1f9009fbc3a0,140,"res.end /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/session.js:281",0x3b9aad9afdc0,~
code-creation,Function,0x1f9009fbc440,528,"res.end /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/session.js:275",0x3b9aad9afec0,~
code-creation,Function,0x1f9009fbc660,160,"store.get.next /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/session.js:322",0x3b9aad9b0040,~
code-creation,Function,0x1f9009fbc700,596," /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/session.js:319",0x3b9aad9b0130,~
code-creation,Function,0x1f9009fbc960,1584,"session /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/session.js:240",0x3b9aad9b02a8,~
code-creation,Function,0x1f9009fbcfa0,1112,"session /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/session.js:203",0x3b9aad9b03d0,~
code-creation,LazyCompile,0x1f9009fbd400,1492," /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/session.js:1",0x3b9aad9af690,~
tick,0x7fc5979d63ce,0x7fff19044d20,0,0x27c20b0,0,0x1f9009f1a9db,0x1f9009f3d5ed,0x1f9009f10c39,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009fbd556,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f1ffbf,0x1f9009f3c434,0x1f9009f0fd1a,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,LoadIC,0x1f9009fbd9e0,108,"get"
code-creation,LoadIC,0x1f9009fbd9e0,108,"get"
code-creation,Script,0x1f9009fbda60,160,"/home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/session/session.js",0x3b9aad9b0830,
code-creation,Function,0x1f9009fbdb00,560,"Session /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/session/session.js:24",0x3b9aad9b0998,~
code-creation,Function,0x1f9009fbdd40,148,"Session.touch /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/session/session.js:44",0x3b9aad9b0a68,~
code-creation,Function,0x1f9009fbdde0,168,"Session.resetLastAccess /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/session/session.js:57",0x3b9aad9b0b38,~
code-creation,Function,0x1f9009fbdea0,180,"Session.resetMaxAge /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/session/session.js:69",0x3b9aad9b0c08,~
code-creation,Function,0x1f9009fbdf60,104,"Session.save /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/session/session.js:83",0x3b9aad9b0cd8,~
code-creation,Function,0x1f9009fbe040,228,"Session.save /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/session/session.js:82",0x3b9aad9b0db0,~
code-creation,Function,0x1f9009fbe140,312,"Session.reload /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/session/session.js:103",0x3b9aad9b0e90,~
code-creation,Function,0x1f9009fbe280,440,"Session.reload /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/session/session.js:100",0x3b9aad9b0f98,~
code-creation,Function,0x1f9009fbe440,244,"Session.destroy /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/session/session.js:120",0x3b9aad9b1070,~
code-creation,Function,0x1f9009fbe540,188,"Session.regenerate /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/session/session.js:134",0x3b9aad9b1148,~
code-creation,LazyCompile,0x1f9009fbe600,872," /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/session/session.js:1",0x3b9aad9b0758,~
tick,0x7fc59846c4b0,0x7fff19044cb8,0,0x7fc59846c5e9,0,0x1f9009f0d74e,0x1f9009f0f387,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009fbe6e3,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009fbd556,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f1ffbf,0x1f9009f3c434,0x1f9009f0fd1a,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,LoadIC,0x1f9009fbe980,108,"get"
code-creation,LoadIC,0x1f9009fbe980,108,"get"
code-creation,Script,0x1f9009fbea00,160,"/home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/session/cookie.js",0x3b9aad9b15e8,
code-creation,Function,0x1f9009fbeaa0,408,"Cookie /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/session/cookie.js:22",0x3b9aad9b17f8,~
code-creation,Function,0x1f9009fbec40,164,"expires /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/session/cookie.js:45",0x3b9aad9b18d0,~
code-creation,Function,0x1f9009fbed00,124,"expires /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/session/cookie.js:57",0x3b9aad9b19a0,~
code-creation,Function,0x1f9009fbed80,260,"maxAge /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/session/cookie.js:68",0x3b9aad9b1a78,~
code-creation,Function,0x1f9009fbeea0,288,"maxAge /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/session/cookie.js:81",0x3b9aad9b1b48,~
code-creation,Function,0x1f9009fbefc0,376,"data /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/session/cookie.js:94",0x3b9aad9b1c18,~
code-creation,Function,0x1f9009fbf140,156,"Cookie.serialize /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/session/cookie.js:112",0x3b9aad9b1cf8,~
code-creation,Function,0x1f9009fbf1e0,124,"Cookie.toJSON /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/session/cookie.js:123",0x3b9aad9b1dc8,~
code-creation,LazyCompile,0x1f9009fbf260,776," /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/session/cookie.js:1",0x3b9aad9b1510,~
code-creation,LoadIC,0x1f9009fbf580,108,"get"
code-creation,LoadIC,0x1f9009fbf580,108,"get"
tick,0x6cf755,0x7fff19043590,1,0x536740,2,0x1f9009f108c2,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009fbd5bd,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f1ffbf,0x1f9009f3c434,0x1f9009f0fd1a,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,Script,0x1f9009fbf600,160,"/home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/session/memory.js",0x3b9aad9b2568,
code-creation,LazyCompile,0x1f9009fbf6a0,816," /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/session/memory.js:1",0x3b9aad9b2490,~
code-creation,LoadIC,0x1f9009fbf9e0,108,"get"
code-creation,LoadIC,0x1f9009fbf9e0,108,"get"
code-creation,Script,0x1f9009fbfa60,160,"/home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/session/store.js",0x3b9aad9b2d60,
code-creation,Function,0x1f9009fbfb00,136,"Store /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/session/store.js:24",0x3b9aad9b2eb0,~
code-creation,Function,0x1f9009fbfba0,164,"Store.regenerate /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/session/store.js:42",0x3b9aad9b2f88,~
code-creation,Function,0x1f9009fbfc60,384,"Store.regenerate /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/session/store.js:40",0x3b9aad9b3098,~
code-creation,Function,0x1f9009fbfde0,392,"Store.load /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/session/store.js:59",0x3b9aad9b3180,~
code-creation,Function,0x1f9009fc0040,392,"Store.load /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/session/store.js:57",0x3b9aad9b3290,~
code-creation,Function,0x1f9009fc01e0,628,"Store.createSession /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/session/store.js:77",0x3b9aad9b3388,~
tick,0x783374,0x7fff190441f8,0,0x64b8fc,2,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009fbf714,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009fbd5bd,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f1ffbf,0x1f9009f3c434,0x1f9009f0fd1a,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,LazyCompile,0x1f9009fc0460,772," /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/session/store.js:1",0x3b9aad9b2c88,~
code-creation,LoadIC,0x1f9009fc0780,108,"get"
code-creation,LoadIC,0x1f9009fc0780,108,"get"
tick,0x7fc597a2fc0d,0x7fff19044e20,0,0x0,0,0x1f9009eb8533,0x1f9009f2fd91,0x1f9009f102f3,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f1ffbf,0x1f9009f3c434,0x1f9009f0fd1a,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,Script,0x1f9009fc0800,160,"/home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/static.js",0x3b9aad9b3b08,
code-creation,Function,0x1f9009fc08a0,276,"invalidRange /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/static.js:77",0x3b9aad9b3c30,~
code-creation,Function,0x1f9009fc09c0,252,"static /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/static.js:57",0x3b9aad9b3d18,~
code-creation,Function,0x1f9009fc0ac0,484,"static /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/static.js:50",0x3b9aad9b3e08,~
code-creation,Function,0x1f9009fc0cc0,232,"callback /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/static.js:220",0x3b9aad9b3ee0,~
code-creation,Function,0x1f9009fc0dc0,2740,"exports.send /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/static.js:142",0x3b9aad9b4040,~
code-creation,Function,0x1f9009fc2040,2688,"exports.send /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/static.js:95",0x3b9aad9b4210,~
code-creation,LazyCompile,0x1f9009fc2ac0,1200," /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/static.js:1",0x3b9aad9b3a30,~
tick,0x7236b2,0x7fff190450c8,0,0x7a678c,0,0x1f9009fc2dd3,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f1ffbf,0x1f9009f3c434,0x1f9009f0fd1a,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
tick,0x1f9009eae11f,0x7fff190448a8,0,0x1f9009eae0c1,0,0x1f9009ec8daa,0x1f9009ec929c,0x1f9009ec9af6,0x1f9009ec9b17,0x1f9009fa349b,0x1f9009f0c45c,0x1f9009f0ca35,0x1f9009fb6183,0x1f9009fb592e,0x1f9009f0efd6,0x1f9009f0e9d3,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009fc2e32,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f1ffbf,0x1f9009f3c434,0x1f9009f0fd1a,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,LoadIC,0x1f9009fc2f80,106,"main"
code-creation,LoadIC,0x1f9009fc2f80,106,"main"
code-creation,LoadIC,0x1f9009fc3000,108,"get"
code-creation,LoadIC,0x1f9009fc3000,108,"get"
code-creation,Script,0x1f9009fc3080,160,"/home/linus/development/projects/turkey/node_modules/express/node_modules/mime/mime.js",0x3b9aad9b4a58,
code-creation,Function,0x1f9009fc3120,780,"module.exports.define /home/linus/development/projects/turkey/node_modules/express/node_modules/mime/mime.js:20",0x3b9aad9b4c70,~
code-creation,Function,0x1f9009fc3440,644,"module.exports.load /home/linus/development/projects/turkey/node_modules/express/node_modules/mime/mime.js:49",0x3b9aad9b4d58,~
code-creation,Function,0x1f9009fc36e0,616,"module.exports.load /home/linus/development/projects/turkey/node_modules/express/node_modules/mime/mime.js:43",0x3b9aad9b4e50,~
code-creation,Function,0x1f9009fc3960,496,"module.exports.lookup /home/linus/development/projects/turkey/node_modules/express/node_modules/mime/mime.js:61",0x3b9aad9b4f38,~
code-creation,Function,0x1f9009fc3b60,140,"module.exports.extension /home/linus/development/projects/turkey/node_modules/express/node_modules/mime/mime.js:69",0x3b9aad9b5010,~
code-creation,Function,0x1f9009fc3c00,380,"module.exports.charsets.lookup /home/linus/development/projects/turkey/node_modules/express/node_modules/mime/mime.js:77",0x3b9aad9b50f0,~
code-creation,LazyCompile,0x1f9009fc4040,1000," /home/linus/development/projects/turkey/node_modules/express/node_modules/mime/mime.js:1",0x3b9aad9b4980,~
tick,0x7325fa,0x7fff19043b60,0,0x2862af1,2,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009fc2e32,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f1ffbf,0x1f9009f3c434,0x1f9009f0fd1a,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,LoadIC,0x1f9009fc4440,107,"ConvertToString"
code-creation,LoadIC,0x1f9009fc4440,107,"ConvertToString"
code-creation,CallIC,0x1f9009fc44c0,149,"Join"
code-creation,LoadIC,0x1f9009fc4560,107,"visited_arrays"
code-creation,LoadIC,0x1f9009fc4560,107,"visited_arrays"
code-creation,CallIC,0x1f9009fc45e0,149,"UseSparseVariant"
code-creation,RegExp,0x1f9009fc4680,850,"[\\r\\n]+"
tick,0x60dd90,0x7fff19043d68,0,0x617a71,0,0x1f9009f2f3b7,0x1f9009fc358c,0x1f9009f392ee,0x1f9009fc390e,0x1f9009fc4392,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009fc2e32,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f1ffbf,0x1f9009f3c434,0x1f9009f0fd1a,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,RegExp,0x1f9009fc49e0,1615,"\\s*#.*|^\\s*|\\s*$"
code-creation,RegExp,0x1f9009fc5040,858,"\\s+"
code-creation,CallIC,0x1f9009fc53a0,167,"DoRegExpExec"
code-creation,CallIC,0x1f9009fc5460,187,"shift"
tick,0x7fc597a8bed7,0x7fff19044908,0,0x0,1
tick,0x5e4092,0x7fff19044980,0,0x0,1
code-creation,LazyCompile,0x1f9009fc5520,644,"module.exports.load /home/linus/development/projects/turkey/node_modules/express/node_modules/mime/mime.js:49",0x3b9aad9b4d58,~
code-creation,LazyCompile,0x1f9009fc57c0,915,"module.exports.load /home/linus/development/projects/turkey/node_modules/express/node_modules/mime/mime.js:49",0x3b9aad9b4d58,*
code-creation,LazyCompile,0x1f9009fc6040,1664,"replace native string.js:216",0x3f0f96bea4c0,~
tick,0x622a35,0x7fff190444e0,0,0x2865248,2,0x1f9009fc5915,0x1f9009f392ee,0x1f9009fc390e,0x1f9009fc4392,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009fc2e32,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f1ffbf,0x1f9009f3c434,0x1f9009f0fd1a,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,LazyCompile,0x1f9009fc66c0,2464,"replace native string.js:216",0x3f0f96bea4c0,*
code-creation,LazyCompile,0x1f9009fc7060,3868,"split native string.js:564",0x3f0f96bea940,~
tick,0x7fc5979d670c,0x7fff19043d20,0,0x287d770,2,0x1f9009fc5a0c,0x1f9009f392ee,0x1f9009fc390e,0x1f9009fc4392,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009fc2e32,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f1ffbf,0x1f9009f3c434,0x1f9009f0fd1a,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
tick,0x6cb554,0x7fff190443c0,0,0x7fc59937a890,2,0x1f9009fc5a0c,0x1f9009f392ee,0x1f9009fc390e,0x1f9009fc4392,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009fc2e32,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f1ffbf,0x1f9009f3c434,0x1f9009f0fd1a,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,LazyCompile,0x1f9009fc8040,4904,"split native string.js:564",0x3f0f96bea940,*
tick,0x1f9009fc513a,0x7fff19044bf0,0,0xffffffffffffffd1,0,0x1f9009f2cba5,0x1f9009fc84b1,0x1f9009fc5a0c,0x1f9009f392ee,0x1f9009fc390e,0x1f9009fc4392,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009fc2e32,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f1ffbf,0x1f9009f3c434,0x1f9009f0fd1a,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
tick,0x1f9009f29651,0x7fff19044c30,0,0x1f9009f2cba5,0,0x1f9009fc8b0e,0x1f9009fc5a0c,0x1f9009f392ee,0x1f9009fc390e,0x1f9009fc4392,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009fc2e32,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f1ffbf,0x1f9009f3c434,0x1f9009f0fd1a,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,LoadIC,0x1f9009fc9380,106,"extensions"
code-creation,LoadIC,0x1f9009fc9380,106,"extensions"
code-creation,LoadIC,0x1f9009fc9400,106,"types"
code-creation,LoadIC,0x1f9009fc9400,106,"types"
tick,0x1f9009fc9456,0x7fff19044eb0,0,0x1f9009fc32f0,0,0x1f9009fc392e,0x1f9009fc4392,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009fc2e32,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f1ffbf,0x1f9009f3c434,0x1f9009f0fd1a,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,LoadIC,0x1f9009fc9480,138,"slice"
code-creation,LoadIC,0x1f9009fc9480,138,"slice"
code-creation,CallIC,0x1f9009fc9520,125,"normalize"
code-creation,CallIC,0x1f9009fc95a0,445,"asciiSlice"
code-creation,CallIC,0x1f9009fc9760,125,"define"
code-creation,LoadIC,0x1f9009fc97e0,108,"get"
code-creation,LoadIC,0x1f9009fc97e0,108,"get"
tick,0x6ccc65,0x7fff19042ff0,1,0x536740,2,0x1f9009f108c2,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f1ffbf,0x1f9009f3c434,0x1f9009f0fd1a,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,Script,0x1f9009fc9860,160,"/home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/staticCache.js",0x47c74d702d8,
code-creation,Function,0x1f9009fc9900,216,"isStale /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/staticCache.js:173",0x47c74d70400,~
code-creation,Function,0x1f9009fc99e0,224,"module.exports /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/staticCache.js:149",0x47c74d704d0,~
code-creation,Function,0x1f9009fc9ac0,516,"write /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/staticCache.js:145",0x47c74d705c0,~
code-creation,Function,0x1f9009fc9ce0,132,"module.exports.req.on.stream.on.arr.complete /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/staticCache.js:99",0x47c74d70698,~
code-creation,Function,0x1f9009fc9d80,136,"module.exports.header.Age.age /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/staticCache.js:104",0x47c74d70768,~
code-creation,Function,0x1f9009fca040,1064," /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/staticCache.js:66",0x47c74d70870,~
code-creation,Function,0x1f9009fca480,1868,"staticCache /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/staticCache.js:56",0x47c74d709c0,~
code-creation,Function,0x1f9009fcabe0,528,"staticCache /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/staticCache.js:51",0x47c74d70ab8,~
code-creation,LazyCompile,0x1f9009fcae00,648," /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/staticCache.js:1",0x47c74d70200,~
code-creation,LoadIC,0x1f9009fcb0a0,108,"get"
code-creation,LoadIC,0x1f9009fcb0a0,108,"get"
tick,0x6cf855,0x7fff190432f0,1,0x536740,2,0x1f9009f108c2,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009fcaf5a,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f1ffbf,0x1f9009f3c434,0x1f9009f0fd1a,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3df0f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c95c,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,Script,0x1f9009fcb120,160,"/home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/cache.js",0x47c74d70e78,
code-creation,LazyCompile,0x1f9009fcb1c0,488," /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/cache.js:1",0x47c74d70da0,~
code-creation,LoadIC,0x1f9009fcb3c0,108,"get"
code-creation,LoadIC,0x1f9009fcb3c0,108,"get"
code-creation,Script,0x1f9009fcb440,160,"/home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/vhost.js",0x47c74d716b0,
code-creation,LazyCompile,0x1f9009fcb4e0,164," /home/linus/development/projects/turkey/node_modules/express/node_modules/connect/lib/middleware/vhost.js:1",0x47c74d715d8,~
tick,0x1f9009eb642e,0x7fff19045cc8,0,0x300000000,0,0x1f9009edf0cb,0x1f9009f3d830,0x1f9009f10c39,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c983,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,LoadIC,0x1f9009fcb5a0,108,"get"
code-creation,LoadIC,0x1f9009fcb5a0,108,"get"
code-creation,Script,0x1f9009fcb620,160,"/home/linus/development/projects/turkey/node_modules/express/lib/https.js",0x47c74d71b60,
code-creation,Function,0x1f9009fcb6c0,204,"HTTPSServer /home/linus/development/projects/turkey/node_modules/express/lib/https.js:37",0x47c74d71c88,~
code-creation,Function,0x1f9009fcb7a0,152," /home/linus/development/projects/turkey/node_modules/express/lib/https.js:50",0x47c74d71d60,~
code-creation,LazyCompile,0x1f9009fcb840,684," /home/linus/development/projects/turkey/node_modules/express/lib/https.js:1",0x47c74d71a88,~
code-creation,LoadIC,0x1f9009fcbb00,108,"get"
code-creation,LoadIC,0x1f9009fcbb00,108,"get"
tick,0x6ccbeb,0x7fff19043790,1,0x536740,2,0x1f9009f108c2,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009fcb951,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c983,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,Script,0x1f9009fcbb80,160,"/home/linus/development/projects/turkey/node_modules/express/lib/http.js",0x47c74d721d0,
code-creation,Function,0x1f9009fcbc20,200,"HTTPServer /home/linus/development/projects/turkey/node_modules/express/lib/http.js:41",0x47c74d72338,~
code-creation,Function,0x1f9009fcbd00,596," /home/linus/development/projects/turkey/node_modules/express/lib/http.js:72",0x47c74d72428,~
code-creation,Function,0x1f9009fcc040,172,"app.init.locals.settings /home/linus/development/projects/turkey/node_modules/express/lib/http.js:92",0x47c74d724f8,~
code-creation,Function,0x1f9009fcc100,136,"app.init.methods.forEach.self.lookup.(anonymous function) /home/linus/development/projects/turkey/node_modules/express/lib/http.js:104",0x47c74d725c8,~
code-creation,Function,0x1f9009fcc1a0,136,"app.init.methods.forEach.self.lookup.(anonymous function) /home/linus/development/projects/turkey/node_modules/express/lib/http.js:109",0x47c74d72698,~
code-creation,Function,0x1f9009fcc240,156,"app.init.methods.forEach.self.lookup.(anonymous function) /home/linus/development/projects/turkey/node_modules/express/lib/http.js:119",0x47c74d72770,~
code-creation,Function,0x1f9009fcc2e0,156,"app.init.methods.forEach.self.match.(anonymous function) /home/linus/development/projects/turkey/node_modules/express/lib/http.js:123",0x47c74d72848,~
code-creation,Function,0x1f9009fcc380,176,"app.init.methods.forEach.self.remove.(anonymous function) /home/linus/development/projects/turkey/node_modules/express/lib/http.js:127",0x47c74d72920,~
code-creation,Function,0x1f9009fcc440,416,"app.init.self.lookup.del /home/linus/development/projects/turkey/node_modules/express/lib/http.js:118",0x47c74d72a08,~
code-creation,Function,0x1f9009fcc5e0,1572,"app.init /home/linus/development/projects/turkey/node_modules/express/lib/http.js:59",0x47c74d72af0,~
code-creation,Function,0x1f9009fccc20,180,"app.remove /home/linus/development/projects/turkey/node_modules/express/lib/http.js:146",0x47c74d72bc8,~
code-creation,Function,0x1f9009fccce0,160,"app.lookup /home/linus/development/projects/turkey/node_modules/express/lib/http.js:159",0x47c74d72ca0,~
code-creation,Function,0x1f9009fccd80,160,"app.match /home/linus/development/projects/turkey/node_modules/express/lib/http.js:171",0x47c74d72d78,~
code-creation,Function,0x1f9009fcce20,124,"app.onvhost /home/linus/development/projects/turkey/node_modules/express/lib/http.js:179",0x47c74d72e48,~
tick,0x7fc5979cfb2b,0x7fff190450c0,0,0x27e6340,2,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009fcb951,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c983,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,Function,0x1f9009fccea0,444,"app.registerErrorHandlers /home/linus/development/projects/turkey/node_modules/express/lib/http.js:192",0x47c74d72f80,~
code-creation,Function,0x1f9009fcd060,220,"app.registerErrorHandlers /home/linus/development/projects/turkey/node_modules/express/lib/http.js:191",0x47c74d73068,~
code-creation,Function,0x1f9009fcd140,168,"app.registerErrorHandlers /home/linus/development/projects/turkey/node_modules/express/lib/http.js:190",0x47c74d73138,~
code-creation,Function,0x1f9009fcd200,184,"app.use.middleware /home/linus/development/projects/turkey/node_modules/express/lib/http.js:224",0x47c74d73210,~
code-creation,Function,0x1f9009fcd2c0,460,"app.use.middleware /home/linus/development/projects/turkey/node_modules/express/lib/http.js:222",0x47c74d73338,~
code-creation,Function,0x1f9009fcd4a0,912,"app.use /home/linus/development/projects/turkey/node_modules/express/lib/http.js:209",0x47c74d73438,~
code-creation,Function,0x1f9009fcd840,132,"app.mounted /home/linus/development/projects/turkey/node_modules/express/lib/http.js:268",0x47c74d73510,~
code-creation,Function,0x1f9009fcd8e0,180,"app.register /home/linus/development/projects/turkey/node_modules/express/lib/http.js:280",0x47c74d735e8,~
code-creation,Function,0x1f9009fcd9a0,156,"app.helpers.app.locals /home/linus/development/projects/turkey/node_modules/express/lib/http.js:295",0x47c74d736c0,~
code-creation,Function,0x1f9009fcda40,156,"app.dynamicHelpers /home/linus/development/projects/turkey/node_modules/express/lib/http.js:309",0x47c74d73798,~
code-creation,Function,0x1f9009fcdae0,140,"app.param /home/linus/development/projects/turkey/node_modules/express/lib/http.js:380",0x47c74d73870,~
code-creation,Function,0x1f9009fcdb80,224," /home/linus/development/projects/turkey/node_modules/express/lib/http.js:379",0x47c74d73958,~
code-creation,Function,0x1f9009fcdc60,156,"app.param /home/linus/development/projects/turkey/node_modules/express/lib/http.js:390",0x47c74d73a30,~
code-creation,Function,0x1f9009fce040,888,"app.param /home/linus/development/projects/turkey/node_modules/express/lib/http.js:373",0x47c74d73b58,~
code-creation,Function,0x1f9009fce3c0,152,"app.error /home/linus/development/projects/turkey/node_modules/express/lib/http.js:407",0x47c74d73c30,~
code-creation,Function,0x1f9009fce460,196,"app.is /home/linus/development/projects/turkey/node_modules/express/lib/http.js:421",0x47c74d73d10,~
code-creation,Function,0x1f9009fce540,380,"app.set /home/linus/development/projects/turkey/node_modules/express/lib/http.js:437",0x47c74d73df0,~
code-creation,Function,0x1f9009fce6c0,168,"app.enabled /home/linus/development/projects/turkey/node_modules/express/lib/http.js:458",0x47c74d73ec8,~
code-creation,Function,0x1f9009fce780,168,"app.disabled /home/linus/development/projects/turkey/node_modules/express/lib/http.js:470",0x47c74d74040,~
code-creation,Function,0x1f9009fce840,144,"app.enable /home/linus/development/projects/turkey/node_modules/express/lib/http.js:482",0x47c74d74118,~
code-creation,Function,0x1f9009fce8e0,144,"app.disable /home/linus/development/projects/turkey/node_modules/express/lib/http.js:494",0x47c74d741f0,~
code-creation,Function,0x1f9009fce980,144,"app.redirect /home/linus/development/projects/turkey/node_modules/express/lib/http.js:507",0x47c74d742d0,~
code-creation,Function,0x1f9009fcea20,616,"app.configure /home/linus/development/projects/turkey/node_modules/express/lib/http.js:538",0x47c74d743e8,~
code-creation,Function,0x1f9009fceca0,636,"methods.forEach.app.(anonymous function) /home/linus/development/projects/turkey/node_modules/express/lib/http.js:552",0x47c74d744e0,~
code-creation,Function,0x1f9009fcef20,244,"app.all.args /home/linus/development/projects/turkey/node_modules/express/lib/http.js:551",0x47c74d745c8,~
code-creation,Function,0x1f9009fcf020,212,"app.all /home/linus/development/projects/turkey/node_modules/express/lib/http.js:573",0x47c74d746a0,~
code-creation,Function,0x1f9009fcf100,444,"app.all /home/linus/development/projects/turkey/node_modules/express/lib/http.js:570",0x47c74d747a0,~
code-creation,LazyCompile,0x1f9009fcf2c0,2748," /home/linus/development/projects/turkey/node_modules/express/lib/http.js:1",0x47c74d720f8,~
code-creation,LoadIC,0x1f9009fcfd80,106,"main"
code-creation,LoadIC,0x1f9009fcfd80,106,"main"
tick,0x651b65,0x7fff19045448,0,0x5c8257,0,0x1f9009fc83b9,0x1f9009f0716e,0x1f9009f0c8b3,0x1f9009fb5844,0x1f9009f0efd6,0x1f9009f0e9d3,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009fcf36a,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009fcb951,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c983,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,LoadIC,0x1f9009fcfe00,108,"get"
code-creation,LoadIC,0x1f9009fcfe00,108,"get"
tick,0x6ce788,0x7fff19042af0,1,0x536740,2,0x1f9009f108c2,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009fcf438,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009fcb951,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c983,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,Script,0x1f9009fcfe80,160,"/home/linus/development/projects/turkey/node_modules/express/lib/router/index.js",0x47c74d74df8,
code-creation,Function,0x1f9009fcff20,136,"middleware /home/linus/development/projects/turkey/node_modules/express/lib/router/index.js:44",0x47c74d74f78,~
code-creation,Function,0x1f9009fd0040,440,"Router /home/linus/development/projects/turkey/node_modules/express/lib/router/index.js:37",0x47c74d75060,~
code-creation,Function,0x1f9009fd0200,748,"Router.param /home/linus/development/projects/turkey/node_modules/express/lib/router/index.js:58",0x47c74d75160,~
code-creation,Function,0x1f9009fd0500,116,"Router.all /home/linus/development/projects/turkey/node_modules/express/lib/router/index.js:94",0x47c74d75230,~
code-creation,Function,0x1f9009fd0580,144,"Router.all /home/linus/development/projects/turkey/node_modules/express/lib/router/index.js:93",0x47c74d75300,~
code-creation,Function,0x1f9009fd0620,436,"Router.remove /home/linus/development/projects/turkey/node_modules/express/lib/router/index.js:109",0x47c74d753f0,~
code-creation,Function,0x1f9009fd07e0,340,"Router.lookup /home/linus/development/projects/turkey/node_modules/express/lib/router/index.js:131",0x47c74d754c8,~
code-creation,Function,0x1f9009fd0940,288,"Router.lookup /home/linus/development/projects/turkey/node_modules/express/lib/router/index.js:130",0x47c74d755c8,~
code-creation,Function,0x1f9009fd0a60,304,"Router.match /home/linus/development/projects/turkey/node_modules/express/lib/router/index.js:148",0x47c74d756a0,~
code-creation,Function,0x1f9009fd0ba0,288,"Router.match /home/linus/development/projects/turkey/node_modules/express/lib/router/index.js:147",0x47c74d757a0,~
code-creation,Function,0x1f9009fd0cc0,636,"Router.find /home/linus/development/projects/turkey/node_modules/express/lib/router/index.js:164",0x47c74d758b8,~
code-creation,Function,0x1f9009fd0f40,184,"nextRoute /home/linus/development/projects/turkey/node_modules/express/lib/router/index.js:208",0x47c74d75990,~
code-creation,Function,0x1f9009fd1000,1220,"param /home/linus/development/projects/turkey/node_modules/express/lib/router/index.js:228",0x47c74d75a68,~
code-creation,Function,0x1f9009fd14e0,360,"paramCallback /home/linus/development/projects/turkey/node_modules/express/lib/router/index.js:256",0x47c74d75b48,~
code-creation,Function,0x1f9009fd1660,720,"callbacks /home/linus/development/projects/turkey/node_modules/express/lib/router/index.js:263",0x47c74d75c28,~
code-creation,Function,0x1f9009fd1940,1172,"pass /home/linus/development/projects/turkey/node_modules/express/lib/router/index.js:198",0x47c74d75dd0,~
code-creation,Function,0x1f9009fd1de0,512,"Router._dispatch /home/linus/development/projects/turkey/node_modules/express/lib/router/index.js:193",0x47c74d75f08,~
code-creation,Function,0x1f9009fd2040,324,"Router._options /home/linus/development/projects/turkey/node_modules/express/lib/router/index.js:291",0x47c74d76040,~
tick,0x7fc5979a383d,0x7fff19043eb0,0,0x2000000ff174600,2,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009fcf438,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009fcb951,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c983,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,Function,0x1f9009fd21a0,456,"Router._optionsFor /home/linus/development/projects/turkey/node_modules/express/lib/router/index.js:307",0x47c74d76130,~
code-creation,Function,0x1f9009fd2380,128,"Router._optionsFor /home/linus/development/projects/turkey/node_modules/express/lib/router/index.js:313",0x47c74d76208,~
code-creation,Function,0x1f9009fd2400,336,"Router._optionsFor /home/linus/development/projects/turkey/node_modules/express/lib/router/index.js:305",0x47c74d76300,~
code-creation,Function,0x1f9009fd2560,1116,"Router._match /home/linus/development/projects/turkey/node_modules/express/lib/router/index.js:328",0x47c74d76440,~
code-creation,Function,0x1f9009fd29c0,960,"Router._route /home/linus/development/projects/turkey/node_modules/express/lib/router/index.js:381",0x47c74d76570,~
code-creation,LazyCompile,0x1f9009fd2d80,1688," /home/linus/development/projects/turkey/node_modules/express/lib/router/index.js:1",0x47c74d74d20,~
code-creation,LoadIC,0x1f9009fd3420,108,"get"
code-creation,LoadIC,0x1f9009fd3420,108,"get"
code-creation,Script,0x1f9009fd34a0,160,"/home/linus/development/projects/turkey/node_modules/express/lib/router/route.js",0x47c74d76978,
code-creation,Function,0x1f9009fd3540,384,"Route /home/linus/development/projects/turkey/node_modules/express/lib/router/route.js:30",0x47c74d76ae0,~
code-creation,Function,0x1f9009fd36c0,648," /home/linus/development/projects/turkey/node_modules/express/lib/router/route.js:75",0x47c74d76be0,~
code-creation,Function,0x1f9009fd3960,1488,"normalize /home/linus/development/projects/turkey/node_modules/express/lib/router/route.js:70",0x47c74d76ce0,~
code-creation,Function,0x1f9009fd3f40,148,"Route.match /home/linus/development/projects/turkey/node_modules/express/lib/router/route.js:49",0x47c74d76db8,~
code-creation,LazyCompile,0x1f9009fd4040,368," /home/linus/development/projects/turkey/node_modules/express/lib/router/route.js:1",0x47c74d768a0,~
tick,0x57dcad,0x7fff19045130,0,0x1,3,0x1f9009fa349b,0x1f9009f0c45c,0x1f9009f0ca35,0x1f9009fb6183,0x1f9009fb5776,0x1f9009f0efd6,0x1f9009f0e9d3,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009fd2e8f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009fcf438,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009fcb951,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c983,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,LoadIC,0x1f9009fd41c0,108,"get"
code-creation,LoadIC,0x1f9009fd41c0,108,"get"
code-creation,Script,0x1f9009fd4240,160,"/home/linus/development/projects/turkey/node_modules/express/lib/router/collection.js",0x47c74d77188,
code-creation,Function,0x1f9009fd42e0,276,"Collection /home/linus/development/projects/turkey/node_modules/express/lib/router/collection.js:22",0x47c74d772c0,~
code-creation,Function,0x1f9009fd4400,432,"Collection.remove /home/linus/development/projects/turkey/node_modules/express/lib/router/collection.js:40",0x47c74d773b0,~
code-creation,LazyCompile,0x1f9009fd45c0,372," /home/linus/development/projects/turkey/node_modules/express/lib/router/collection.js:1",0x47c74d770b0,~
code-creation,LoadIC,0x1f9009fd4740,108,"get"
code-creation,LoadIC,0x1f9009fd4740,108,"get"
code-creation,Script,0x1f9009fd47c0,160,"/home/linus/development/projects/turkey/node_modules/express/lib/utils.js",0x47c74d777a8,
tick,0x5946a7,0x7fff19044498,1,0x536740,2,0x1f9009f108c2,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009fd2ef6,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009fcf438,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009fcb951,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c983,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,Function,0x1f9009fd4860,304,"exports.isAbsolute /home/linus/development/projects/turkey/node_modules/express/lib/utils.js:16",0x47c74d778f8,~
code-creation,Function,0x1f9009fd49a0,444,"exports.union /home/linus/development/projects/turkey/node_modules/express/lib/utils.js:31",0x47c74d779f8,~
code-creation,Function,0x1f9009fd4b60,488,"exports.flatten /home/linus/development/projects/turkey/node_modules/express/lib/utils.js:54",0x47c74d77ae8,~
code-creation,Function,0x1f9009fd4d60,884,"exports.miniMarkdown /home/linus/development/projects/turkey/node_modules/express/lib/utils.js:81",0x47c74d77bc0,~
code-creation,Function,0x1f9009fd50e0,1140,"exports.escape /home/linus/development/projects/turkey/node_modules/express/lib/utils.js:96",0x47c74d77c98,~
code-creation,Function,0x1f9009fd5560,684," /home/linus/development/projects/turkey/node_modules/express/lib/utils.js:115",0x47c74d77d80,~
code-creation,Function,0x1f9009fd5820,448,"exports.parseRange /home/linus/development/projects/turkey/node_modules/express/lib/utils.js:113",0x47c74d77e88,~
code-creation,Function,0x1f9009fd59e0,368,"exports.toArray /home/linus/development/projects/turkey/node_modules/express/lib/utils.js:146",0x47c74d78040,~
code-creation,LazyCompile,0x1f9009fd5b60,628," /home/linus/development/projects/turkey/node_modules/express/lib/utils.js:1",0x47c74d776d0,~
code-creation,LoadIC,0x1f9009fd5de0,108,"get"
code-creation,LoadIC,0x1f9009fd5de0,108,"get"
code-creation,Script,0x1f9009fd5e60,160,"/home/linus/development/projects/turkey/node_modules/express/lib/router/methods.js",0x47c74d787b8,
code-creation,CallInitialize,0x1f9009fd5f00,209,"args_count: 7"
code-creation,LazyCompile,0x1f9009fd6040,496," /home/linus/development/projects/turkey/node_modules/express/lib/router/methods.js:1",0x47c74d786e0,~
code-creation,CallPreMonomorphic,0x1f9009fd6240,209,"args_count: 7"
code-creation,LazyCompile,0x1f9009fd6320,1188,"map native array.js:1094",0x3f0f96bf2160,~
tick,0x738add,0x7fff19044da8,0,0x7fff19045050,2,0x1f9009fd6204,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009fd304b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009fcf438,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009fcb951,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c983,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,LazyCompile,0x1f9009fd67e0,128," /home/linus/development/projects/turkey/node_modules/express/lib/router/methods.js:68",0x47c74d789e8,~
code-creation,StoreIC,0x1f9009fd6860,131,"methods"
code-creation,StoreIC,0x1f9009fd6860,131,"methods"
code-creation,LoadIC,0x1f9009fd6900,108,"get"
code-creation,LoadIC,0x1f9009fd6900,108,"get"
tick,0x6d1850,0x7fff190429c0,1,0x536740,2,0x1f9009f108c2,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009fcf4c6,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009fcb951,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c983,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,Script,0x1f9009fd6980,160,"/home/linus/development/projects/turkey/node_modules/express/lib/view.js",0x47c74d79200,
code-creation,Function,0x1f9009fd6a20,380,"render /home/linus/development/projects/turkey/node_modules/express/lib/view.js:176",0x47c74d79318,~
code-creation,Function,0x1f9009fd6ba0,3176,"renderPartial /home/linus/development/projects/turkey/node_modules/express/lib/view.js:131",0x47c74d794b8,~
code-creation,Function,0x1f9009fd7820,156," /home/linus/development/projects/turkey/node_modules/express/lib/view.js:453",0x47c74d79590,~
code-creation,Function,0x1f9009fd78c0,336,"hintAtViewPaths /home/linus/development/projects/turkey/node_modules/express/lib/view.js:450",0x47c74d79670,~
code-creation,Function,0x1f9009fd7a20,656,"exports.compile /home/linus/development/projects/turkey/node_modules/express/lib/view.js:49",0x47c74d79768,~
code-creation,Function,0x1f9009fd7cc0,716,"exports.lookup /home/linus/development/projects/turkey/node_modules/express/lib/view.js:96",0x47c74d79860,~
code-creation,Function,0x1f9009fd8040,1064,"res.partial /home/linus/development/projects/turkey/node_modules/express/lib/view.js:253",0x47c74d79978,~
code-creation,Function,0x1f9009fd8480,672,"res.render /home/linus/development/projects/turkey/node_modules/express/lib/view.js:308",0x47c74d79a90,~
code-creation,Function,0x1f9009fd8720,156,"res._render.options.partial /home/linus/development/projects/turkey/node_modules/express/lib/view.js:408",0x47c74d79b70,~
code-creation,Function,0x1f9009fd87c0,176,"res._render.options.layout /home/linus/development/projects/turkey/node_modules/express/lib/view.js:417",0x47c74d79c48,~
code-creation,Function,0x1f9009fd8880,3192,"res._render /home/linus/development/projects/turkey/node_modules/express/lib/view.js:332",0x47c74d79dc8,~
code-creation,LazyCompile,0x1f9009fd9500,1476," /home/linus/development/projects/turkey/node_modules/express/lib/view.js:1",0x47c74d79128,~
tick,0x5da320,0x7fff190450c0,0,0x283f5b0,3,0x1f9009fa349b,0x1f9009f0c45c,0x1f9009f0ca35,0x1f9009fb56b2,0x1f9009f0efd6,0x1f9009f0e9d3,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009fd971f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009fcf4c6,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009fcb951,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c983,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,LoadIC,0x1f9009fd9ae0,108,"get"
code-creation,LoadIC,0x1f9009fd9ae0,108,"get"
code-creation,Script,0x1f9009fd9b60,160,"/home/linus/development/projects/turkey/node_modules/express/lib/view/view.js",0x47c74d7a250,
code-creation,Function,0x1f9009fd9c00,932,"View /home/linus/development/projects/turkey/node_modules/express/lib/view/view.js:40",0x47c74d7a378,~
code-creation,Function,0x1f9009fda040,272,"View.resolveEngine /home/linus/development/projects/turkey/node_modules/express/lib/view/view.js:66",0x47c74d7a448,~
code-creation,Function,0x1f9009fda160,336,"View.resolveEngine /home/linus/development/projects/turkey/node_modules/express/lib/view/view.js:82",0x47c74d7a518,~
code-creation,Function,0x1f9009fda2c0,524,"View.resolvePath /home/linus/development/projects/turkey/node_modules/express/lib/view/view.js:98",0x47c74d7a5f0,~
code-creation,Function,0x1f9009fda4e0,164,"View.__defineGetter__.ext /home/linus/development/projects/turkey/node_modules/express/lib/view/view.js:120",0x47c74d7a6c0,~
code-creation,Function,0x1f9009fda5a0,236,"View.__defineGetter__.relative /home/linus/development/projects/turkey/node_modules/express/lib/view/view.js:132",0x47c74d7a798,~
code-creation,Function,0x1f9009fda6a0,156,"exports.register.ext /home/linus/development/projects/turkey/node_modules/express/lib/view/view.js:144",0x47c74d7a868,~
code-creation,Function,0x1f9009fda740,268,"exports.register.ext /home/linus/development/projects/turkey/node_modules/express/lib/view/view.js:156",0x47c74d7a938,~
code-creation,Function,0x1f9009fda860,216,"exports.register.ext /home/linus/development/projects/turkey/node_modules/express/lib/view/view.js:169",0x47c74d7aa08,~
code-creation,Function,0x1f9009fda940,168,"exports.register.ext /home/linus/development/projects/turkey/node_modules/express/lib/view/view.js:180",0x47c74d7aad8,~
code-creation,Function,0x1f9009fdaa00,208,"exports.register /home/linus/development/projects/turkey/node_modules/express/lib/view/view.js:207",0x47c74d7abb8,~
code-creation,LazyCompile,0x1f9009fdaae0,1672," /home/linus/development/projects/turkey/node_modules/express/lib/view/view.js:1",0x47c74d7a178,~
tick,0x1f9009eae653,0x7fff19045078,0,0x1f9009f0b34e,0,0x1f9009f07194,0x1f9009fb568a,0x1f9009f0efd6,0x1f9009f0e9d3,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009fdabfa,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009fd971f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009fcf4c6,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009fcb951,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c983,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,LoadIC,0x1f9009fdb180,108,"get"
code-creation,LoadIC,0x1f9009fdb180,108,"get"
code-creation,Script,0x1f9009fdb200,160,"/home/linus/development/projects/turkey/node_modules/express/lib/view/partial.js",0x47c74d7b190,
code-creation,Function,0x1f9009fdb2a0,196," /home/linus/development/projects/turkey/node_modules/express/lib/view/partial.js:35",0x47c74d7b2b8,~
code-creation,Function,0x1f9009fdb380,1088,"exports.resolveObjectName /home/linus/development/projects/turkey/node_modules/express/lib/view/partial.js:28",0x47c74d7b390,~
code-creation,LazyCompile,0x1f9009fdb7c0,284," /home/linus/development/projects/turkey/node_modules/express/lib/view/partial.js:1",0x47c74d7b0b8,~
tick,0x5dc4ed,0x7fff190452f0,0,0x6,0,0x1f9009fd99b6,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009fcf4c6,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009fcb951,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c983,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,KeyedLoadIC,0x1f9009fdb8e0,128,"remove"
code-creation,KeyedLoadIC,0x1f9009fdb8e0,128,"remove"
code-creation,KeyedLoadIC,0x1f9009fdb960,128,"lookup"
code-creation,KeyedLoadIC,0x1f9009fdb960,128,"lookup"
code-creation,LazyCompile,0x1f9009fdb9e0,1248,"Module._nodeModulePaths module.js:206",0x12824e0c05e0,~
tick,0x5e578e,0x7fff190454e8,0,0x755d2e,2,0x1f9009f0f387,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3cb90,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,LazyCompile,0x1f9009fdc040,2090,"Module._nodeModulePaths module.js:206",0x12824e0c05e0,*
tick,0x5d576e,0x7fff19045a20,0,0x0,1
code-creation,LoadIC,0x1f9009fdc880,108,"get"
code-creation,LoadIC,0x1f9009fdc880,108,"get"
tick,0x6cf85f,0x7fff190444a0,1,0x536740,2,0x1f9009f108c2,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3cb90,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,Script,0x1f9009fdc900,160,"/home/linus/development/projects/turkey/node_modules/express/lib/response.js",0x124fe62eaba0,
code-creation,Function,0x1f9009fdc9a0,2624,"res.send /home/linus/development/projects/turkey/node_modules/express/lib/response.js:44",0x124fe62ead78,~
code-creation,Function,0x1f9009fdd3e0,804,"res.json /home/linus/development/projects/turkey/node_modules/express/lib/response.js:129",0x124fe62eae78,~
code-creation,Function,0x1f9009fdd720,132,"res.status /home/linus/development/projects/turkey/node_modules/express/lib/response.js:153",0x124fe62eaf50,~
code-creation,Function,0x1f9009fdd7c0,440,"res.sendfile /home/linus/development/projects/turkey/node_modules/express/lib/response.js:174",0x124fe62eb040,~
code-creation,Function,0x1f9009fdd980,168,"res.contentType /home/linus/development/projects/turkey/node_modules/express/lib/response.js:208",0x124fe62eb118,~
code-creation,Function,0x1f9009fdda40,292,"res.attachment /home/linus/development/projects/turkey/node_modules/express/lib/response.js:220",0x124fe62eb1f0,~
code-creation,Function,0x1f9009fddb80,436,"res.download /home/linus/development/projects/turkey/node_modules/express/lib/response.js:252",0x124fe62eb2d0,~
code-creation,Function,0x1f9009fddd40,612,"res.download /home/linus/development/projects/turkey/node_modules/express/lib/response.js:241",0x124fe62eb3f0,~
code-creation,Function,0x1f9009fc9e20,400,"res.header /home/linus/development/projects/turkey/node_modules/express/lib/response.js:278",0x124fe62eb4f8,~
tick,0x783334,0x7fff19045238,0,0x64b8fc,2,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3cb90,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,Function,0x1f9009fdbec0,304,"res.clearCookie /home/linus/development/projects/turkey/node_modules/express/lib/response.js:292",0x124fe62eb5e0,~
code-creation,Function,0x1f9009fc3d80,568,"res.cookie /home/linus/development/projects/turkey/node_modules/express/lib/response.js:321",0x124fe62eb6d0,~
code-creation,Function,0x1f9009fc1880,1504,"res.redirect /home/linus/development/projects/turkey/node_modules/express/lib/response.js:374",0x124fe62eb7f8,~
code-creation,Function,0x1f9009fafea0,336,"res.local /home/linus/development/projects/turkey/node_modules/express/lib/response.js:435",0x124fe62eb8d8,~
code-creation,Function,0x1f9009fcdd00,552,"res.locals.res.helpers /home/linus/development/projects/turkey/node_modules/express/lib/response.js:452",0x124fe62eb9b8,~
code-creation,LazyCompile,0x1f9009f02c60,1652," /home/linus/development/projects/turkey/node_modules/express/lib/response.js:1",0x124fe62eaac8,~
tick,0x1f9009fdc386,0x7fff19045da8,0,0x1f9009f07fb0,0,0x1f9009f0f387,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3cbb3,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,LoadIC,0x1f9009fc7f80,108,"get"
code-creation,LoadIC,0x1f9009fc7f80,108,"get"
code-creation,Script,0x1f9009fcbf60,160,"/home/linus/development/projects/turkey/node_modules/express/lib/request.js",0x124fe62ec3f0,
code-creation,Function,0x1f9009fc1e60,220,"isxhr /home/linus/development/projects/turkey/node_modules/express/lib/request.js:309",0x124fe62ec528,~
code-creation,Function,0x1f9009fb9f60,132,"exports.flashFormatters.s /home/linus/development/projects/turkey/node_modules/express/lib/request.js:25",0x124fe62ec600,~
code-creation,Function,0x1f9009fa7d00,404,"req.header /home/linus/development/projects/turkey/node_modules/express/lib/request.js:57",0x124fe62ec6e0,~
code-creation,Function,0x1f9009f032e0,400,"req.get /home/linus/development/projects/turkey/node_modules/express/lib/request.js:83",0x124fe62ec7d0,~
code-creation,Function,0x1f9009fc1f40,168," /home/linus/development/projects/turkey/node_modules/express/lib/request.js:98",0x124fe62ec8a0,~
code-creation,Function,0x1f9009fadce0,660,"req.accepts /home/linus/development/projects/turkey/node_modules/express/lib/request.js:132",0x124fe62ec980,~
code-creation,Function,0x1f9009fb7c00,588,"req.param /home/linus/development/projects/turkey/node_modules/express/lib/request.js:173",0x124fe62eca60,~
code-creation,Function,0x1f9009fa7ea0,308," /home/linus/development/projects/turkey/node_modules/express/lib/request.js:233",0x124fe62ecb48,~
code-creation,Function,0x1f9009fa5320,1732,"req.flash /home/linus/development/projects/turkey/node_modules/express/lib/request.js:224",0x124fe62ecc90,~
tick,0x6f4aa0,0x7fff190449a8,0,0x6f4f3f,2,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3cbb3,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3c58f,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f0f50c,0x1f9009f0f5a9,0x1f9009f3113a,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,Function,0x1f9009fb3c00,820,"req.is /home/linus/development/projects/turkey/node_modules/express/lib/request.js:292",0x124fe62ecd78,~
code-creation,LazyCompile,0x1f9009fa5a00,1248," /home/linus/development/projects/turkey/node_modules/express/lib/request.js:1",0x124fe62ec318,~
code-creation,StoreIC,0x1f9009fb3f40,168,"title"
code-creation,StoreIC,0x1f9009fb3f40,168,"title"
code-creation,LoadIC,0x1f9009fa5ee0,279,""
code-creation,LoadIC,0x1f9009fa5ee0,279,""
code-creation,CallMegamorphic,0x1f9009fc5b60,682,"args_count: 3"
code-creation,LoadIC,0x1f9009fadf80,102,"_events"
code-creation,LoadIC,0x1f9009fadf80,102,"_events"
code-creation,LoadIC,0x1f9009fbff80,102,"_events"
code-creation,LoadIC,0x1f9009fbff80,102,"_events"
code-creation,CallIC,0x1f9009f03480,286,"emit"
code-creation,StoreIC,0x1f9009fcdf40,164,"route"
code-creation,StoreIC,0x1f9009fcdf40,164,"route"
code-creation,StoreIC,0x1f9009fb7e60,164,"handle"
code-creation,StoreIC,0x1f9009fb7e60,164,"handle"
code-creation,Function,0x1f9009fc5e20,296,"d native v8natives.js:1465",0x124fe62ed228,~
code-creation,Function,0x1f9009f692e0,724,"d native v8natives.js:1480",0x124fe62ed310,~
code-creation,LazyCompile,0x1f9009f695c0,1292,"bind native v8natives.js:1456",0x3f0f96bde230,~
code-creation,LazyCompile,0x1f9009fb7f20,204,"ToInteger native runtime.js:589",0x3f0f96be5c20,~
code-creation,StoreIC,0x1f9009f69ae0,164,"settings"
code-creation,StoreIC,0x1f9009f69ae0,164,"settings"
code-creation,StoreIC,0x1f9009f69ba0,164,"app"
code-creation,StoreIC,0x1f9009f69ba0,164,"app"
code-creation,KeyedLoadIC,0x1f9009f0b6c0,122,"settings"
code-creation,KeyedLoadIC,0x1f9009f0b6c0,122,"settings"
code-creation,KeyedLoadIC,0x1f9009ed4dc0,122,"app"
code-creation,KeyedLoadIC,0x1f9009ed4dc0,122,"app"
code-creation,LazyCompile,0x1f9009f69c60,304,"toString native array.js:383",0x3f0f96bf1770,~
code-creation,Stub,0x1f9009ece820,100,"UnaryOpStub_SUB_Overwrite_Uninitialized"
tick,0x6e60d0,0x7fff19045e48,0,0x27ce280,2,0x1f9009fcec39,0x1f9009fcca5a,0x1f9009fcbcce,0x1f9009f3c8b9,0x1f9009f317ce,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,LazyCompile,0x1f9009fe2040,2196,"indexOf native array.js:1122",0x3f0f96bf21f0,~
code-creation,LoadIC,0x1f9009fe28e0,106,"settings"
code-creation,LoadIC,0x1f9009fe28e0,106,"settings"
code-creation,LoadIC,0x1f9009fe2960,102,"length"
code-creation,LoadIC,0x1f9009fe2960,102,"length"
code-creation,CallIC,0x1f9009fe29e0,246,"pop"
code-creation,CallIC,0x1f9009fe2ae0,148,"ToPrimitive"
code-creation,CallIC,0x1f9009fe2b80,148,"DefaultNumber"
code-creation,LoadIC,0x1f9009fe2c20,198,"valueOf"
code-creation,LoadIC,0x1f9009fe2c20,198,"valueOf"
code-creation,CallIC,0x1f9009fe2d00,148,"IsPrimitive"
code-creation,LoadIC,0x1f9009fe2da0,168,"toString"
code-creation,LoadIC,0x1f9009fe2da0,168,"toString"
code-creation,LoadIC,0x1f9009fe2e60,106,"env"
code-creation,LoadIC,0x1f9009fe2e60,106,"env"
code-creation,CallIC,0x1f9009fe2ee0,202,"indexOf"
code-creation,CallIC,0x1f9009fe2fc0,149,"ToInteger"
code-creation,LoadIC,0x1f9009fe3060,106,"_events"
code-creation,LoadIC,0x1f9009fe3060,106,"_events"
code-creation,CallIC,0x1f9009fe30e0,286,"emit"
code-creation,LoadIC,0x1f9009fe3200,135,"lookup"
code-creation,LoadIC,0x1f9009fe3200,135,"lookup"
code-creation,LoadIC,0x1f9009fe32a0,135,"match"
code-creation,LoadIC,0x1f9009fe32a0,135,"match"
code-creation,LoadIC,0x1f9009fe3340,135,"remove"
code-creation,LoadIC,0x1f9009fe3340,135,"remove"
code-creation,LoadIC,0x1f9009fe33e0,102,"length"
code-creation,LoadIC,0x1f9009fe33e0,102,"length"
code-creation,LoadIC,0x1f9009fe3460,162,""
code-creation,LoadIC,0x1f9009fe3460,162,""
code-creation,LoadIC,0x1f9009fe3520,108,"HTTPServer"
code-creation,LoadIC,0x1f9009fe3520,108,"HTTPServer"
code-creation,LoadIC,0x1f9009fe35a0,108,"use"
code-creation,LoadIC,0x1f9009fe35a0,108,"use"
code-creation,CallIC,0x1f9009fe3620,160,"call"
code-creation,LoadIC,0x1f9009fe36c0,108,"Server"
code-creation,LoadIC,0x1f9009fe36c0,108,"Server"
code-creation,LoadIC,0x1f9009fe3740,102,"length"
code-creation,LoadIC,0x1f9009fe3740,102,"length"
code-creation,StoreIC,0x1f9009fe37c0,164,"sensitive"
code-creation,StoreIC,0x1f9009fe37c0,164,"sensitive"
code-creation,Stub,0x1f9009fe3880,1136,"StringDictionaryNegativeLookupStub"
code-creation,CallIC,0x1f9009fe3d00,520,"set"
code-creation,CallIC,0x1f9009fe3f20,155,"hasOwnProperty"
code-creation,StoreIC,0x1f9009fe4040,164,"strict"
code-creation,StoreIC,0x1f9009fe4040,164,"strict"
code-creation,LazyCompile,0x1f9009fe4100,396,"Image.inspect /home/linus/development/projects/turkey/node_modules/canvas/lib/image.js:24",0x223e80daf720,~
tick,0x7fc5992e6e4c,0x7fff19045700,0,0x8920f0,4,0x1f9009fe4274,0x1f9009f3020a,0x1f9009f304e0,0x1f9009f31829,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
tick,0x7fc5964f9a36,0x7fff19045948,0,0x7fc5958f5a94,4,0x1f9009fe4274,0x1f9009f3020a,0x1f9009f304e0,0x1f9009f31829,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
tick,0x7fc5964f9a1b,0x7fff19045948,0,0x7fc5958f5a94,4,0x1f9009fe4274,0x1f9009f3020a,0x1f9009f304e0,0x1f9009f31829,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
tick,0x7fc5990cfcfb,0x7fff19045920,0,0x100000000,4,0x1f9009fe4274,0x1f9009f3020a,0x1f9009f304e0,0x1f9009f31829,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,CallIC,0x1f9009fe42a0,415,"readdir"
code-creation,Function,0x1f9009fe4440,736,"InsertionSort native array.js:747",0x124fe62ef230,~
code-creation,Function,0x1f9009fe4720,2476,"QuickSort native array.js:763",0x124fe62ef390,~
code-creation,Function,0x1f9009fe50e0,1224,"CopyFromPrototype native array.js:836",0x124fe62ef4a0,~
code-creation,Function,0x1f9009fe55c0,972,"ShadowPrototypeElements native array.js:868",0x124fe62ef5b0,~
code-creation,Function,0x1f9009fe59a0,1456,"SafeRemoveArrayHoles native array.js:893",0x124fe62ef6a8,~
code-creation,Function,0x1f9009fe6040,428,"a native array.js:734",0x124fe62ef788,~
code-creation,LazyCompile,0x1f9009fe6200,1440,"sort native array.js:724",0x3f0f96bf1e30,~
code-creation,Stub,0x1f9009fe67a0,267,"BinaryOpStub_SAR_OverwriteLeft_SMI"
code-creation,Stub,0x1f9009fe68c0,267,"BinaryOpStub_ADD_OverwriteRight_SMI"
code-creation,LoadIC,0x1f9009fe69e0,108,"Image"
code-creation,LoadIC,0x1f9009fe69e0,108,"Image"
code-creation,CallIC,0x1f9009fe6a60,142,"readFileSync"
tick,0x5c0246,0x7fff19045f68,0,0x5a996a,0,0x1f9009f301d7,0x1f9009f30395,0x1f9009f3079f,0x1f9009f31829,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,LoadIC,0x1f9009fe6b00,102,"path"
code-creation,LoadIC,0x1f9009fe6b00,102,"path"
tick,0x7fc5964f9938,0x7fff190458b8,0,0x7fc5958f5a94,4,0x1f9009fe4274,0x1f9009f3020a,0x1f9009f30395,0x1f9009f3079f,0x1f9009f31829,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
tick,0x7fc5990d1272,0x7fff19045890,0,0x100000000,4,0x1f9009fe4274,0x1f9009f3020a,0x1f9009f30395,0x1f9009f3079f,0x1f9009f31829,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,LazyCompile,0x1f9009fe6b80,524," /home/linus/development/projects/turkey/turkey.js:73",0x12824e0d0d38,~
code-creation,LazyCompile,0x1f9009fe6da0,1111," /home/linus/development/projects/turkey/turkey.js:73",0x12824e0d0d38,*
tick,0x7fc5958e7f09,0x7fff190458a0,0,0x1,4,0x1f9009fe4274,0x1f9009f3020a,0x1f9009fe6fd6,0x1f9009f3079f,0x1f9009f31829,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
tick,0x7fc597a8bfa8,0x7fff190458d8,0,0x7fc5958ee0c6,4,0x1f9009fe4274,0x1f9009f3020a,0x1f9009fe6fd6,0x1f9009f3079f,0x1f9009f31829,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,Function,0x1f9009fe7200,192," path.js:319",0x124fe62efeb0,~
code-creation,LazyCompile,0x1f9009fe72c0,304,"exports.join path.js:317",0x12824e0be3c0,~
code-creation,LazyCompile,0x1f9009f07660,304,"exports.join path.js:317",0x12824e0be3c0,
tick,0x7fc5964f9960,0x7fff19045858,0,0x7fc5958f5a94,4,0x1f9009fe4274,0x1f9009f3020a,0x1f9009fe6fd6,0x1f9009f3079f,0x1f9009f31829,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,Function,0x1f9009fe7400,524," /home/linus/development/projects/turkey/turkey.js:73",0x124fe62f0220,~
code-creation,LazyCompile,0x1f9009fe7620,940,"loadImages /home/linus/development/projects/turkey/turkey.js:66",0x12824e0d0e48,~
code-creation,LazyCompile,0x1f9009f30460,940,"loadImages /home/linus/development/projects/turkey/turkey.js:66",0x12824e0d0e48,
tick,0x7fc5979d8795,0x7fff19045ce0,0,0x27c6758,2,0x1f9009f307db,0x1f9009f31829,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,CallIC,0x1f9009fe79e0,125,"readdirSync"
code-creation,CallIC,0x1f9009fe7a60,199,"sort"
tick,0x7fc5990cf87c,0x7fff19045890,0,0x100000000,4,0x1f9009fe4274,0x1f9009f3020a,0x1f9009f30395,0x1f9009f3079f,0x1f9009f31829,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,StoreIC,0x1f9009fe7b40,131,"images"
code-creation,StoreIC,0x1f9009fe7b40,131,"images"
tick,0x7fc5990cf7fd,0x7fff19045890,0,0x100000000,4,0x1f9009fe4274,0x1f9009f3020a,0x1f9009f30395,0x1f9009f3079f,0x1f9009f31829,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
tick,0x7fc597a8ba63,0x7fff19045858,0,0x7fc5990cf2c6,4,0x1f9009fe4274,0x1f9009f3020a,0x1f9009f30395,0x1f9009f3079f,0x1f9009f31829,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
tick,0x7fc5958e7f09,0x7fff19045900,0,0x1,4,0x1f9009fe4274,0x1f9009f3020a,0x1f9009f30395,0x1f9009f3079f,0x1f9009f31829,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,LazyCompile,0x1f9009fe8040,1108," /home/linus/development/projects/turkey/turkey.js:73",0x12824e0d0d38,*
tick,0x7fc5990cfcba,0x7fff19045840,0,0x100000000,4,0x1f9009fe4274,0x1f9009f3020a,0x1f9009fe8271,0x1f9009f3079f,0x1f9009f31829,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
tick,0x7fc5990d006d,0x7fff19045840,0,0x100000000,4,0x1f9009fe4274,0x1f9009f3020a,0x1f9009fe8271,0x1f9009f3079f,0x1f9009f31829,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
tick,0x7fc5979e6cbb,0x7fff190457a8,0,0x7fc5979d76fc,4,0x1f9009fe4274,0x1f9009f3020a,0x1f9009fe8271,0x1f9009f3079f,0x1f9009f31829,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
tick,0x1f9009ed89d3,0x7fff19046268,0,0x7fff190462b0,0,0x1f9009ed8666,0x1f9009f3d531,0x1f9009f301f6,0x1f9009f30395,0x1f9009f3079f,0x1f9009f31829,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
tick,0x7fc5990cff45,0x7fff19045890,0,0x100000000,4,0x1f9009fe4274,0x1f9009f3020a,0x1f9009f30395,0x1f9009f3079f,0x1f9009f31829,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
tick,0x7fc5990cffc4,0x7fff19045890,0,0x100000000,4,0x1f9009fe4274,0x1f9009f3020a,0x1f9009f30395,0x1f9009f3079f,0x1f9009f31829,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
tick,0x69ed30,0x7fff19046258,0,0x1f9009eae14e,0,0x1f9009ed82ec,0x1f9009f3d531,0x1f9009f301f6,0x1f9009f30395,0x1f9009f3079f,0x1f9009f31829,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
tick,0x7fc5990cfbba,0x7fff19045890,0,0x100000000,4,0x1f9009fe4274,0x1f9009f3020a,0x1f9009f30395,0x1f9009f3079f,0x1f9009f31829,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,LazyCompile,0x1f9009fe84a0,1108," /home/linus/development/projects/turkey/turkey.js:73",0x12824e0d0d38,*
tick,0x7fc5990d0c70,0x7fff19045840,0,0x100000000,4,0x1f9009fe4274,0x1f9009f3020a,0x1f9009fe86d1,0x1f9009f3079f,0x1f9009f31829,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
tick,0x7fc5990d0c05,0x7fff19045840,0,0x100000000,4,0x1f9009fe4274,0x1f9009f3020a,0x1f9009fe86d1,0x1f9009f3079f,0x1f9009f31829,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
tick,0x7fc5990cffae,0x7fff19045840,0,0x100000000,4,0x1f9009fe4274,0x1f9009f3020a,0x1f9009fe86d1,0x1f9009f3079f,0x1f9009f31829,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
tick,0x7fc597a8b68b,0x7fff19045858,0,0x7fc5990cf2c6,4,0x1f9009fe4274,0x1f9009f3020a,0x1f9009f30395,0x1f9009f3079f,0x1f9009f31829,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
tick,0x7fc5990d0c18,0x7fff19045890,0,0x100000000,4,0x1f9009fe4274,0x1f9009f3020a,0x1f9009f30395,0x1f9009f3079f,0x1f9009f31829,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
tick,0x5283f5,0x7fff19046208,0,0x1f9009f8244c,0,0x1f9009ed8826,0x1f9009f3d531,0x1f9009f301f6,0x1f9009f30395,0x1f9009f3079f,0x1f9009f31829,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
tick,0x7fc5964f99ea,0x7fff190458b8,0,0x7fc5958f5a94,4,0x1f9009fe4274,0x1f9009f3020a,0x1f9009f30395,0x1f9009f3079f,0x1f9009f31829,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
tick,0x7fc5958edeee,0x7fff19045940,0,0xf000000ff,4,0x1f9009fe4274,0x1f9009f3020a,0x1f9009f30395,0x1f9009f3079f,0x1f9009f31829,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,LazyCompile,0x1f9009fe8900,1108," /home/linus/development/projects/turkey/turkey.js:73",0x12824e0d0d38,*
tick,0x7fc5958e7ec0,0x7fff190458b0,0,0x1,4,0x1f9009fe4274,0x1f9009f3020a,0x1f9009fe8b31,0x1f9009f3079f,0x1f9009f31829,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
tick,0x7fc5990c7000,0x7fff19045838,0,0x7fc5990d0aeb,4,0x1f9009fe4274,0x1f9009f3020a,0x1f9009fe8b31,0x1f9009f3079f,0x1f9009f31829,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
tick,0x7fc597d0a0dd,0x7fff19046080,0,0x0,0,0x1f9009f1abdb,0x1f9009f3d5ed,0x1f9009f301f6,0x1f9009f30395,0x1f9009f3079f,0x1f9009f31829,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
tick,0x7fc5990d37b5,0x7fff19045728,0,0xffffffffffffffff,4,0x1f9009fe4274,0x1f9009f3020a,0x1f9009f30395,0x1f9009f3079f,0x1f9009f31829,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
tick,0x7fc597d0a93d,0x7fff190460f0,0,0x0,0,0x1f9009f1a116,0x1f9009f3d3d7,0x1f9009f301f6,0x1f9009f30395,0x1f9009f3079f,0x1f9009f31829,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
tick,0x7fc5979d8d18,0x7fff19045a00,0,0x2babf10,4,0x1f9009fe4274,0x1f9009f3020a,0x1f9009f30395,0x1f9009f3079f,0x1f9009f31829,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
tick,0x67ce52,0x7fff19046130,0,0x0,2,0x1f9009f07740,0x1f9009f30388,0x1f9009f3079f,0x1f9009f31829,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,LazyCompile,0x1f9009fe8d60,1200,"filter native array.js:990",0x3f0f96bf1ec0,~
code-creation,LazyCompile,0x1f9009fe9220,2041,"filter native array.js:990",0x3f0f96bf1ec0,*
code-creation,Function,0x1f9009fe9a20,148," path.js:301",0x124fe62f1758,~
code-creation,LazyCompile,0x1f9009fe9ac0,624,"exports.normalize path.js:296",0x12824e0be200,~
tick,0x62471a,0x7fff19045a50,0,0x8bb572,2,0x1f9009f07774,0x1f9009f30388,0x1f9009f3079f,0x1f9009f31829,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,LazyCompile,0x1f9009fea040,1713,"exports.normalize path.js:296",0x12824e0be200,*
tick,0x7fc5990cff07,0x7fff19045890,0,0x100000000,4,0x1f9009fe4274,0x1f9009f3020a,0x1f9009f30395,0x1f9009f3079f,0x1f9009f31829,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
tick,0x7fc5990d0076,0x7fff19045890,0,0x100000000,4,0x1f9009fe4274,0x1f9009f3020a,0x1f9009f30395,0x1f9009f3079f,0x1f9009f31829,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,LazyCompile,0x1f9009fea700,1108," /home/linus/development/projects/turkey/turkey.js:73",0x12824e0d0d38,*
tick,0x7fc5958e7ec0,0x7fff190458b0,0,0x1,4,0x1f9009fe4274,0x1f9009f3020a,0x1f9009fea931,0x1f9009f3079f,0x1f9009f31829,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
tick,0x7fc5958e8032,0x7fff19045830,0,0x400000000,4,0x1f9009fe4274,0x1f9009f3020a,0x1f9009fea931,0x1f9009f3079f,0x1f9009f31829,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
tick,0x7fc5990d37b1,0x7fff190456d8,0,0xffffffffffffffff,4,0x1f9009fe4274,0x1f9009f3020a,0x1f9009fea931,0x1f9009f3079f,0x1f9009f31829,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
tick,0x7fc5990d0b5c,0x7fff19045840,0,0x100000000,4,0x1f9009fe4274,0x1f9009f3020a,0x1f9009fea931,0x1f9009f3079f,0x1f9009f31829,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
tick,0x7fc597a059a5,0x7fff190461e0,0,0x2c7aab0,0,0x1f9009f1c3c6,0x1f9009f30717,0x1f9009f31829,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,LazyCompile,0x1f9009feab60,1696,"Buffer buffer.js:210",0x3f0f96bd5bd8,~
code-creation,LazyCompile,0x1f9009ed81a0,1696,"Buffer buffer.js:210",0x3f0f96bd5bd8,
tick,0x7fc5958f5a6a,0x7fff190458c0,0,0x0,4,0x1f9009fe4274,0x1f9009f3020a,0x1f9009f30395,0x1f9009f3079f,0x1f9009f31829,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
tick,0x1f9009fea0ba,0x7fff19046370,0,0x1f9009eaf40e,0,0x1f9009f07774,0x1f9009f30388,0x1f9009f3079f,0x1f9009f31829,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
tick,0x7fc5990d041f,0x7fff19045890,0,0x7fff190458c8,4,0x1f9009fe4274,0x1f9009f3020a,0x1f9009f30395,0x1f9009f3079f,0x1f9009f31829,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
tick,0x7fc5958e7ef6,0x7fff19045900,0,0x1,4,0x1f9009fe4274,0x1f9009f3020a,0x1f9009f30395,0x1f9009f3079f,0x1f9009f31829,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
tick,0x7fc5958e7eed,0x7fff19045900,0,0x1,4,0x1f9009fe4274,0x1f9009f3020a,0x1f9009f30395,0x1f9009f3079f,0x1f9009f31829,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
tick,0x7fc597a8cbe3,0x7fff19045858,0,0x7fc5990cf2c6,4,0x1f9009fe4274,0x1f9009f3020a,0x1f9009f30395,0x1f9009f3079f,0x1f9009f31829,0x1f9009f3195b,0x1f9009f10b6b,0x1f9009f10c73,0x1f9009f0f44e,0x1f9009f0ed4d,0x1f9009f10f2b,0x1f9009ed1541
code-creation,LazyCompile,0x1f9009feb200,1108," /home/linus/development/projects/turkey/turkey.js:73",0x12824e0d0d38,*
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a39bd9,0x7fff19046ac8,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff19046ac0,0,0x0,4
tick,0x7fc597a3def3,0x7fff190
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment