-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsirens_punch_5.render_stats.html
985 lines (985 loc) · 60.6 KB
/
sirens_punch_5.render_stats.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>REAPER Render: prologue</title>
<style>
body { font-family: monospace; }
table { border-collapse: collapse; }
table th { border: 1px solid black; padding: 12px; text-align: right; }
table td { border: 1px solid black; padding: 12px; text-align: right; }
table th:nth-child(1), td:nth-child(1) { text-align: left; }
</style>
</head>
<body>
<p>REAPER Render</p>
<p>
WAV: 24bit PCM, 44100Hz, 2ch, 2067kbps<br>
Project: prologue<br>
</p>
<br>
<table>
<thead>
<tr>
<th><br>File</th>
<th><br>Length</th>
<th><br>Peak</th>
<th>True<br>Peak</th>
<th><br>Clips</th>
<th>TP<br>Clips</th>
<th>max<br>RMS-M</th>
<th>max<br>RMS-S</th>
<th><br>RMS-I</th>
<th><br>RMS-RA</th>
</tr>
</thead>
<tbody>
<tr>
<td>sirens_punch_5.wav</td>
<td>0:32.903</td>
<td>-10.9</td>
<td>-10.9</td>
<td>0</td>
<td>0</td>
<td>-21.6</td>
<td>-23.2</td>
<td>-28.2</td>
<td>15.4</td>
</tr>
</tbody>
</table>
<br><br>
<input type='checkbox' id='regions' name='regions' value='yes'>
<label for='regions'> Display project regions</label><br>
<input type='checkbox' id='markers' name='markers'>
<label for='markers'> Display project markers</label><br>
<script type='text/javascript'>
var w=1024, h=768, xa=64, xb=w-24, ya=32, yb=112, yc=160, yd=h-24;
const colors=['#808080', '#3366CC', '#FF9900', '#F0F8F0', '#80E080'];
function stroke(ctx, c, l) { ctx.strokeStyle=c; ctx.lineWidth=l; ctx.stroke(); }
function strokerect(ctx, c, l, x, y, w, h) { ctx.strokeStyle=c; ctx.lineWidth=l; ctx.strokeRect(x, y, w, h); }
function fill(ctx, c) { ctx.fillStyle=c; ctx.fill(); }
function fillrect(ctx, c, x, y, w, h) { ctx.fillStyle=c; ctx.fillRect(x, y, w, h); }
function text(ctx, c, a, b, t, x, y) { ctx.fillStyle=c; ctx.textAlign=a; ctx.textBaseline=b; ctx.fillText(t, x, y); }
function clip(ctx, x, y, w, h) { ctx.save(); ctx.beginPath(); ctx.rect(x, y, w, h); ctx.clip(); }
function to_x(x) { return xa+(xb-xa)*x; }
function to_y(y, i) { return !i ? ya+(yb-ya)*y : yc+(yd-yc)*y; }
function from_x(x) { return (x-xa)/(xb-xa); }
function draw_chart(canv, data, tipx, tipy) {
w=canv.width=Math.max(window.innerWidth-64, 800);
xb=w-24;
let reg = 'regions' in data && document.getElementById('regions').checked;
let mrk = 'markers' in data && document.getElementById('markers').checked;
yc=160+40*(reg+mrk);
let ctx=canv.getContext('2d');
ctx.clearRect(0, 0, w, h);
ctx.font='1em monospace';
let x=xa;
text(ctx, '#000000', 'left', 'top', 'File: '+data.name, x, 0);
x += ctx.measureText('File: '+data.name).width+48;
for (let i=1; i < data.series.length; ++i) {
fillrect(ctx, colors[i], x, 6, 40, 3);
text(ctx, '#000000', 'left', 'top', data.series[i], x+48, 0);
x += ctx.measureText(data.series[i]).width+96;
}
fillrect(ctx, colors[4], x, 6, 40, 3);
text(ctx, '#000000', 'left', 'top', data.integrated[0], x+48, 0);
x += ctx.measureText(data.integrated[0]).width+96;
if ('dynrange' in data) {
fillrect(ctx, colors[3], x, 0, 40, 16);
text(ctx, '#000000', 'left', 'top', data.dynrange[0], x+48, 0);
let ylo=to_y(data.dynrange[1][0], 1), yhi=to_y(data.dynrange[2][0], 1);
fillrect(ctx, colors[3], xa, yhi, xb-xa, ylo-yhi);
}
let y=to_y(data.integrated[1], 1);
fillrect(ctx, colors[4], xa, y-1, xb-xa, 2);
ctx.beginPath();
for (let i=0; i < data.xmaj.length; ++i) {
let x=Math.floor(to_x(data.xmaj[i][0]))+0.5;
ctx.moveTo(x, ya);
ctx.lineTo(x, yb+8);
ctx.moveTo(x, yc-8);
ctx.lineTo(x+0.5, h);
text(ctx, '#000000', 'center', 'middle', data.xmaj[i][1], x, yc-24);
}
for (let i=0; i < data.ymaj.length; ++i) {
let y=Math.floor(to_y(data.ymaj[i][0], 1))+0.5;
ctx.moveTo(xa-8, y);
ctx.lineTo(w, y);
text(ctx, '#000000', 'right', 'middle', data.ymaj[i][1], xa-24, y);
}
stroke(ctx, '#E0E0E0', 1);
ctx.beginPath();
for (let i=0; i < data.xmin.length; ++i) {
let x=Math.floor(to_x(data.xmin[i]))+0.5;
ctx.moveTo(x, ya);
ctx.lineTo(x, yb);
ctx.moveTo(x, yc);
ctx.lineTo(x, h);
}
for (let i=0; i < data.ymin.length; ++i) {
let y=Math.floor(to_y(data.ymin[i], 1))+0.5;
ctx.moveTo(xa, y);
ctx.lineTo(w-8, y);
}
stroke(ctx, '#F4F4F4', 1);
strokerect(ctx, '#000000', 1, xa+0.5, ya+0.5, xb-xa, yb-ya);
for (let i=0; i < data.series.length; ++i) {
ctx.beginPath();
for (let j=0; j < data.vals.length; ++j) {
ctx.lineTo(to_x(data.vals[j][0][0]), to_y(data.vals[j][i+1][0], i));
}
if (!i) {
ctx.lineTo(xb, yb);
ctx.lineTo(xa, yb);
fill(ctx, colors[0]);
}
else {
stroke(ctx, colors[i], 2);
}
}
let sx=-1, ex=-1;
for (let i=0; i <= data.vals.length; ++i) {
if (i < data.vals.length && data.vals[i][1][1].startsWith('+')) {
ex=to_x(data.vals[i][0][0]);
if (sx < 0) sx=ex;
}
else if (sx >= 0 && ex >= 0) {
fillrect(ctx, '#FF0000', sx, ya, ex-sx, yb-ya);
sx=ex=-1;
}
}
if (reg) {
let lastx=w;
for (let i=data.regions.length-1; i >= 0; --i) {
let tx=Math.floor(to_x(data.regions[i][0]));
let ty=yb+10+0.5;
let tw=Math.floor(to_x(data.regions[i][2]))-tx;
let ex=tx+tw;
if (tx+tw > lastx) tw=lastx-tx;
lastx=tx-1;
fillrect(ctx, data.regions[i][5], tx, ty, tw, 20);
clip(ctx, tx, ty, tw, 20);
text(ctx, data.regions[i][6], 'left', 'middle', data.regions[i][4], tx+8, ty+10);
ctx.restore();
fillrect(ctx, data.regions[i][5], tx, ya-6, 2, yc-ya-32);
fillrect(ctx, data.regions[i][5], tx, yc-12, 2, h-yc+12);
fillrect(ctx, data.regions[i][5], ex, ya-6, 2, yc-ya-32);
fillrect(ctx, data.regions[i][5], ex, yc-12, 2, h-yc+12);
}
}
if (mrk) {
let lastx=w;
for (let i=data.markers.length-1; i >= 0; --i) {
let tx=Math.floor(to_x(data.markers[i][0]));
let ty=yb+40*reg+10+0.5;
let tw=ctx.measureText(data.markers[i][2]).width+16;
if (tx+tw > lastx) tw=lastx-tx;
lastx=tx-1;
fillrect(ctx, data.markers[i][3], tx, ty, tw, 20);
clip(ctx, tx, ty, tw, 20);
text(ctx, data.markers[i][4], 'left', 'middle', data.markers[i][2], tx+8, ty+10);
ctx.restore();
fillrect(ctx, data.markers[i][3], tx, ya-6, 2, yc-ya-32);
fillrect(ctx, data.markers[i][3], tx, yc-12, 2, h-yc+12);
}
}
if (tipx >= 0 && tipy >= 0) {
let tx=from_x(tipx);
let j=0;
for (; j < data.vals.length-1; ++j) {
if (data.vals[j][0][0] > tx) break;
}
if (j < data.vals.length-1 && data.vals[j+1][0][0]-tx < tx-data.vals[j][0][0]) ++j;
let str=[data.vals[j][0][1], '', '', ''];
for (let i=0; i < data.series.length; ++i) {
ctx.beginPath();
ctx.arc(to_x(data.vals[j][0][0]), to_y(data.vals[j][i+1][0], i), 4, 0, 2*Math.PI, false);
fill(ctx, !i ? '#000000' : colors[i]);
str[i+1]=data.series[i]+' '+data.vals[j][i+1][1];
}
let tipw=160, tiph=24*(data.series.length+1)+12;
if (tipx < tipw/2+1) tipx=tipw/2+1;
else if (tipx > w-tipw/2-1) tipx=w-tipw/2-1;
tipy += 96;
if (tipy > h-tiph/2-1) tipy=h-tiph/2-1;
strokerect(ctx, '#000000', 1, tipx-tipw/2, tipy-tiph/2, tipw, tiph);
fillrect(ctx, '#FFFFFF', tipx-tipw/2, tipy-tiph/2, tipw, tiph);
tipy -= 24*data.series.length/2;
for (let i=0; str[i]; ++i) {
text(ctx, !i ? '#000000' : colors[i-1], 'center', 'middle', str[i], tipx, tipy);
tipy += 24;
}
}
}
</script>
<br><br>
<canvas id='chart_0' width='1024' height='768'></canvas>
<script type='text/javascript'>
const data_0={
name:'sirens_punch_5.wav',
length:32.903,
series:['Peak','RMS-M','RMS-S'],
integrated:['RMS-I',0.1000,'-28.20'],
dynrange:['RMS-RA',[0.2039,'-38.80'],[0.0529,'-23.40']],
vals:[
[[0.0014,'0:00.046'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.0028,'0:00.092'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.0042,'0:00.139'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.0056,'0:00.185'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.0071,'0:00.232'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.0085,'0:00.278'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.0099,'0:00.325'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.0113,'0:00.371'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.0127,'0:00.418'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.0141,'0:00.464'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.0155,'0:00.511'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.0169,'0:00.557'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.0184,'0:00.604'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.0198,'0:00.650'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.0212,'0:00.697'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.0226,'0:00.743'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.0240,'0:00.790'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.0254,'0:00.836'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.0268,'0:00.882'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.0282,'0:00.929'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.0297,'0:00.975'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.0311,'0:01.022'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.0325,'0:01.068'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.0339,'0:01.115'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.0353,'0:01.161'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.0367,'0:01.208'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.0381,'0:01.254'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.0395,'0:01.301'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.0410,'0:01.347'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.0424,'0:01.394'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.0438,'0:01.440'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.0452,'0:01.487'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.0466,'0:01.533'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.0480,'0:01.580'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.0494,'0:01.626'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.0508,'0:01.673'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.0523,'0:01.719'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.0537,'0:01.765'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.0551,'0:01.812'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.0565,'0:01.858'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.0579,'0:01.905'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.0593,'0:01.951'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.0607,'0:01.998'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.0621,'0:02.044'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.0636,'0:02.091'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.0650,'0:02.137'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.0664,'0:02.184'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.0678,'0:02.230'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.0692,'0:02.277'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.0706,'0:02.323'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.0720,'0:02.370'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.0734,'0:02.416'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.0749,'0:02.463'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.0763,'0:02.509'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.0777,'0:02.556'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.0791,'0:02.602'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.0805,'0:02.648'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.0819,'0:02.695'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.0833,'0:02.741'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.0847,'0:02.788'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.0862,'0:02.834'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.0876,'0:02.881'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.0890,'0:02.927'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.0904,'0:02.974'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.0918,'0:03.020'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.0932,'0:03.067'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.0946,'0:03.113'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.0960,'0:03.160'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.0975,'0:03.206'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.0989,'0:03.253'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.1003,'0:03.299'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.1017,'0:03.346'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.1031,'0:03.392'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.1045,'0:03.439'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.1059,'0:03.485'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.1073,'0:03.531'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.1088,'0:03.578'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.1102,'0:03.624'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.1116,'0:03.671'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.1130,'0:03.717'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.1144,'0:03.764'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.1158,'0:03.810'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.1172,'0:03.857'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.1186,'0:03.903'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.1201,'0:03.950'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.1215,'0:03.996'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.1229,'0:04.043'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.1243,'0:04.089'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.1257,'0:04.136'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.1271,'0:04.182'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.1285,'0:04.229'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.1299,'0:04.275'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.1314,'0:04.322'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.1328,'0:04.368'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.1342,'0:04.414'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.1356,'0:04.461'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.1370,'0:04.507'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.1384,'0:04.554'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.1398,'0:04.600'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.1412,'0:04.647'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.1427,'0:04.693'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.1441,'0:04.740'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.1455,'0:04.786'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.1469,'0:04.833'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.1483,'0:04.879'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.1497,'0:04.926'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.1511,'0:04.972'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.1525,'0:05.019'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.1540,'0:05.065'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.1554,'0:05.112'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.1568,'0:05.158'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.1582,'0:05.205'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.1596,'0:05.251'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.1610,'0:05.297'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.1624,'0:05.344'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.1638,'0:05.390'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.1653,'0:05.437'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.1667,'0:05.483'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.1681,'0:05.530'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.1695,'0:05.576'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.1709,'0:05.623'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.1723,'0:05.669'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.1737,'0:05.716'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.1751,'0:05.762'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.1766,'0:05.809'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.1780,'0:05.855'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.1794,'0:05.902'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.1808,'0:05.948'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.1822,'0:05.995'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.1836,'0:06.041'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.1850,'0:06.088'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.1864,'0:06.134'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.1879,'0:06.180'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.1893,'0:06.227'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.1907,'0:06.273'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.1921,'0:06.320'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.1935,'0:06.366'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.1949,'0:06.413'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.1963,'0:06.459'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.1977,'0:06.506'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.1992,'0:06.552'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.2006,'0:06.599'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.2020,'0:06.645'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.2034,'0:06.692'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.2048,'0:06.738'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.2062,'0:06.785'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.2076,'0:06.831'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.2090,'0:06.878'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.2105,'0:06.924'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.2119,'0:06.971'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.2133,'0:07.017'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.2147,'0:07.063'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.2161,'0:07.110'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.2175,'0:07.156'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.2189,'0:07.203'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.2203,'0:07.249'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.2218,'0:07.296'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.2232,'0:07.342'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.2246,'0:07.389'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.2260,'0:07.435'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.2274,'0:07.482'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.2288,'0:07.528'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.2302,'0:07.575'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.2316,'0:07.621'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.2331,'0:07.668'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.2345,'0:07.714'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.2359,'0:07.761'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.2373,'0:07.807'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.2387,'0:07.854'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.2401,'0:07.900'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.2415,'0:07.946'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.2429,'0:07.993'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.2444,'0:08.039'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.2458,'0:08.086'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.2472,'0:08.132'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.2486,'0:08.179'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.2500,'0:08.225'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.2514,'0:08.272'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.2528,'0:08.318'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.2542,'0:08.365'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.2556,'0:08.411'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.2571,'0:08.458'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.2585,'0:08.504'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.2599,'0:08.551'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.2613,'0:08.597'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.2627,'0:08.644'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.2641,'0:08.690'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.2655,'0:08.737'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.2669,'0:08.783'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.2684,'0:08.829'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.2698,'0:08.876'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.2712,'0:08.922'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.2726,'0:08.969'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.2740,'0:09.015'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.2754,'0:09.062'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.2768,'0:09.108'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.2782,'0:09.155'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.2797,'0:09.201'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.2811,'0:09.248'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.2825,'0:09.294'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.2839,'0:09.341'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.2853,'0:09.387'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.2867,'0:09.434'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.2881,'0:09.480'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.2895,'0:09.527'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.2910,'0:09.573'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.2924,'0:09.620'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.2938,'0:09.666'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.2952,'0:09.712'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.2966,'0:09.759'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.2980,'0:09.805'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.2994,'0:09.852'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.3008,'0:09.898'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.3023,'0:09.945'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.3037,'0:09.991'],[1.0000,'-inf'],[1.2941,'-inf'],[1.2941,'-inf']],
[[0.3051,'0:10.038'],[1.0000,'-inf'],[0.9870,'-118.67'],[1.0190,'-121.93']],
[[0.3065,'0:10.084'],[1.0000,'-inf'],[0.6043,'-79.64'],[0.6761,'-86.96']],
[[0.3079,'0:10.131'],[1.0000,'-inf'],[0.4552,'-64.43'],[0.5409,'-73.17']],
[[0.3093,'0:10.177'],[0.9605,'-56.13'],[0.4316,'-62.02'],[0.5173,'-70.76']],
[[0.3107,'0:10.224'],[0.9637,'-57.58'],[0.4142,'-60.25'],[0.5000,'-69.00']],
[[0.3121,'0:10.270'],[0.9649,'-58.19'],[0.4032,'-59.12'],[0.4890,'-67.87']],
[[0.3136,'0:10.317'],[0.9646,'-58.03'],[0.3936,'-58.14'],[0.4793,'-66.89']],
[[0.3150,'0:10.363'],[0.9644,'-57.95'],[0.3866,'-57.44'],[0.4724,'-66.19']],
[[0.3164,'0:10.410'],[0.9644,'-57.93'],[0.3727,'-56.01'],[0.4584,'-64.75']],
[[0.3178,'0:10.456'],[0.9645,'-57.99'],[0.3296,'-51.62'],[0.4149,'-60.32']],
[[0.3192,'0:10.503'],[0.9645,'-57.99'],[0.2870,'-47.27'],[0.3718,'-55.92']],
[[0.3206,'0:10.549'],[0.9650,'-58.22'],[0.2537,'-43.87'],[0.3388,'-52.56']],
[[0.3220,'0:10.595'],[0.8138,'-29.20'],[0.2204,'-40.48'],[0.3058,'-49.19']],
[[0.3234,'0:10.642'],[0.7851,'-26.71'],[0.2096,'-39.38'],[0.2950,'-48.09']],
[[0.3249,'0:10.688'],[0.8274,'-30.51'],[0.2016,'-38.56'],[0.2869,'-47.27']],
[[0.3263,'0:10.735'],[0.8373,'-31.55'],[0.1972,'-38.11'],[0.2825,'-46.82']],
[[0.3277,'0:10.781'],[0.8621,'-34.41'],[0.1941,'-37.80'],[0.2794,'-46.50']],
[[0.3291,'0:10.828'],[0.8821,'-37.14'],[0.1916,'-37.54'],[0.2763,'-46.19']],
[[0.3305,'0:10.874'],[0.8723,'-35.76'],[0.1894,'-37.32'],[0.2733,'-45.87']],
[[0.3319,'0:10.921'],[0.8889,'-38.18'],[0.1902,'-37.40'],[0.2711,'-45.66']],
[[0.3333,'0:10.967'],[0.8154,'-29.35'],[0.1949,'-37.88'],[0.2702,'-45.56']],
[[0.3347,'0:11.014'],[0.8443,'-32.31'],[0.2007,'-38.47'],[0.2694,'-45.48']],
[[0.3362,'0:11.060'],[0.9062,'-41.11'],[0.2095,'-39.37'],[0.2689,'-45.43']],
[[0.3376,'0:11.107'],[0.7856,'-26.75'],[0.2182,'-40.26'],[0.2685,'-45.39']],
[[0.3390,'0:11.153'],[0.9053,'-40.95'],[0.2267,'-41.13'],[0.2684,'-45.38']],
[[0.3404,'0:11.200'],[0.8348,'-31.28'],[0.2353,'-42.00'],[0.2683,'-45.36']],
[[0.3418,'0:11.246'],[0.9077,'-41.38'],[0.2028,'-38.69'],[0.2507,'-43.58']],
[[0.3432,'0:11.293'],[0.9350,'-47.49'],[0.1695,'-35.29'],[0.2328,'-41.75']],
[[0.3446,'0:11.339'],[0.6943,'-20.59'],[0.1598,'-34.30'],[0.2269,'-41.14']],
[[0.3460,'0:11.386'],[0.7471,'-23.88'],[0.1551,'-33.82'],[0.2235,'-40.79']],
[[0.3475,'0:11.432'],[0.8292,'-30.70'],[0.1522,'-33.53'],[0.2213,'-40.57']],
[[0.3489,'0:11.478'],[0.8139,'-29.21'],[0.1502,'-33.32'],[0.2198,'-40.41']],
[[0.3503,'0:11.525'],[0.8347,'-31.26'],[0.1490,'-33.20'],[0.2189,'-40.33']],
[[0.3517,'0:11.571'],[0.8828,'-37.25'],[0.1487,'-33.17'],[0.2186,'-40.30']],
[[0.3531,'0:11.618'],[0.7943,'-27.47'],[0.1491,'-33.20'],[0.2184,'-40.28']],
[[0.3545,'0:11.664'],[0.8821,'-37.14'],[0.1504,'-33.34'],[0.2183,'-40.26']],
[[0.3559,'0:11.711'],[0.8853,'-37.62'],[0.1565,'-33.97'],[0.2181,'-40.25']],
[[0.3573,'0:11.757'],[0.8904,'-38.40'],[0.1795,'-36.31'],[0.2181,'-40.24']],
[[0.3588,'0:11.804'],[0.9136,'-42.53'],[0.2019,'-38.59'],[0.2180,'-40.23']],
[[0.3602,'0:11.850'],[0.8863,'-37.77'],[0.2154,'-39.97'],[0.2173,'-40.17']],
[[0.3616,'0:11.897'],[0.9366,'-47.91'],[0.2289,'-41.35'],[0.2167,'-40.10']],
[[0.3630,'0:11.943'],[0.8035,'-28.27'],[0.2416,'-42.64'],[0.2165,'-40.08']],
[[0.3644,'0:11.990'],[0.8210,'-29.88'],[0.2542,'-43.93'],[0.2163,'-40.06']],
[[0.3658,'0:12.036'],[0.9114,'-42.09'],[0.2581,'-44.32'],[0.2162,'-40.05']],
[[0.3672,'0:12.083'],[0.8417,'-32.02'],[0.2592,'-44.44'],[0.2161,'-40.04']],
[[0.3686,'0:12.129'],[0.8946,'-39.09'],[0.2598,'-44.50'],[0.2160,'-40.03']],
[[0.3701,'0:12.176'],[0.9201,'-43.90'],[0.2599,'-44.51'],[0.2160,'-40.03']],
[[0.3715,'0:12.222'],[0.8629,'-34.52'],[0.2431,'-42.80'],[0.2137,'-39.79']],
[[0.3729,'0:12.268'],[0.9360,'-47.75'],[0.2064,'-39.05'],[0.2086,'-39.28']],
[[0.3743,'0:12.315'],[0.7740,'-25.84'],[0.1801,'-36.37'],[0.2049,'-38.90']],
[[0.3757,'0:12.361'],[0.6994,'-20.88'],[0.1774,'-36.09'],[0.2041,'-38.82']],
[[0.3771,'0:12.408'],[0.8372,'-31.54'],[0.1729,'-35.64'],[0.2027,'-38.68']],
[[0.3785,'0:12.454'],[0.8516,'-33.14'],[0.1591,'-34.22'],[0.1980,'-38.20']],
[[0.3799,'0:12.501'],[0.8677,'-35.13'],[0.1452,'-32.81'],[0.1933,'-37.72']],
[[0.3814,'0:12.547'],[0.8762,'-36.29'],[0.1415,'-32.44'],[0.1917,'-37.56']],
[[0.3828,'0:12.594'],[0.6988,'-20.85'],[0.1379,'-32.06'],[0.1901,'-37.39']],
[[0.3842,'0:12.640'],[0.7799,'-26.30'],[0.1410,'-32.39'],[0.1895,'-37.33']],
[[0.3856,'0:12.687'],[0.8258,'-30.36'],[0.1454,'-32.83'],[0.1891,'-37.29']],
[[0.3870,'0:12.733'],[0.8637,'-34.62'],[0.1487,'-33.17'],[0.1887,'-37.25']],
[[0.3884,'0:12.780'],[0.8630,'-34.53'],[0.1516,'-33.46'],[0.1883,'-37.21']],
[[0.3898,'0:12.826'],[0.8331,'-31.10'],[0.1516,'-33.46'],[0.1868,'-37.05']],
[[0.3912,'0:12.873'],[0.8686,'-35.26'],[0.1493,'-33.23'],[0.1842,'-36.79']],
[[0.3927,'0:12.919'],[0.8236,'-30.14'],[0.1509,'-33.40'],[0.1823,'-36.60']],
[[0.3941,'0:12.966'],[0.7602,'-24.80'],[0.1585,'-34.17'],[0.1814,'-36.50']],
[[0.3955,'0:13.012'],[0.7956,'-27.58'],[0.1642,'-34.75'],[0.1806,'-36.42']],
[[0.3969,'0:13.059'],[0.7359,'-23.13'],[0.1643,'-34.75'],[0.1803,'-36.39']],
[[0.3983,'0:13.105'],[0.8521,'-33.20'],[0.1637,'-34.70'],[0.1798,'-36.34']],
[[0.3997,'0:13.151'],[0.8633,'-34.57'],[0.1578,'-34.10'],[0.1782,'-36.18']],
[[0.4011,'0:13.198'],[0.7905,'-27.16'],[0.1519,'-33.49'],[0.1766,'-36.01']],
[[0.4025,'0:13.244'],[0.8953,'-39.21'],[0.1482,'-33.12'],[0.1740,'-35.75']],
[[0.4040,'0:13.291'],[0.7169,'-21.92'],[0.1446,'-32.75'],[0.1714,'-35.48']],
[[0.4054,'0:13.337'],[0.7144,'-21.77'],[0.1443,'-32.72'],[0.1703,'-35.37']],
[[0.4068,'0:13.384'],[0.7521,'-24.23'],[0.1448,'-32.77'],[0.1696,'-35.30']],
[[0.4082,'0:13.430'],[0.7901,'-27.12'],[0.1434,'-32.62'],[0.1688,'-35.22']],
[[0.4096,'0:13.477'],[0.8187,'-29.66'],[0.1408,'-32.36'],[0.1681,'-35.14']],
[[0.4110,'0:13.523'],[0.8397,'-31.80'],[0.1392,'-32.20'],[0.1678,'-35.12']],
[[0.4124,'0:13.570'],[0.7557,'-24.49'],[0.1387,'-32.15'],[0.1682,'-35.15']],
[[0.4138,'0:13.616'],[0.8262,'-30.40'],[0.1412,'-32.41'],[0.1685,'-35.19']],
[[0.4153,'0:13.663'],[0.8450,'-32.38'],[0.1497,'-33.27'],[0.1689,'-35.22']],
[[0.4167,'0:13.709'],[0.8723,'-35.75'],[0.1592,'-34.24'],[0.1692,'-35.25']],
[[0.4181,'0:13.756'],[0.8864,'-37.79'],[0.1732,'-35.66'],[0.1692,'-35.26']],
[[0.4195,'0:13.802'],[0.8671,'-35.06'],[0.1869,'-37.06'],[0.1693,'-35.27']],
[[0.4209,'0:13.849'],[0.9085,'-41.55'],[0.1906,'-37.44'],[0.1693,'-35.26']],
[[0.4223,'0:13.895'],[0.7898,'-27.10'],[0.1943,'-37.82'],[0.1692,'-35.26']],
[[0.4237,'0:13.942'],[0.7904,'-27.14'],[0.2063,'-39.05'],[0.1693,'-35.27']],
[[0.4251,'0:13.988'],[0.9124,'-42.30'],[0.2195,'-40.39'],[0.1694,'-35.28']],
[[0.4266,'0:14.034'],[0.8216,'-29.94'],[0.2243,'-40.88'],[0.1694,'-35.28']],
[[0.4280,'0:14.081'],[0.8990,'-39.83'],[0.2258,'-41.04'],[0.1693,'-35.27']],
[[0.4294,'0:14.127'],[0.7687,'-25.43'],[0.2186,'-40.29'],[0.1688,'-35.21']],
[[0.4308,'0:14.174'],[0.8446,'-32.34'],[0.2047,'-38.88'],[0.1678,'-35.12']],
[[0.4322,'0:14.220'],[0.9240,'-44.77'],[0.1945,'-37.84'],[0.1681,'-35.14']],
[[0.4336,'0:14.267'],[0.7637,'-25.06'],[0.1894,'-37.32'],[0.1700,'-35.34']],
[[0.4350,'0:14.313'],[0.7978,'-27.77'],[0.1849,'-36.86'],[0.1716,'-35.51']],
[[0.4364,'0:14.360'],[0.8124,'-29.07'],[0.1823,'-36.60'],[0.1725,'-35.60']],
[[0.4379,'0:14.406'],[0.8228,'-30.06'],[0.1779,'-36.15'],[0.1730,'-35.64']],
[[0.4393,'0:14.453'],[0.8681,'-35.19'],[0.1601,'-34.33'],[0.1703,'-35.37']],
[[0.4407,'0:14.499'],[0.8467,'-32.58'],[0.1424,'-32.52'],[0.1677,'-35.11']],
[[0.4421,'0:14.546'],[0.7169,'-21.92'],[0.1378,'-32.05'],[0.1658,'-34.91']],
[[0.4435,'0:14.592'],[0.7704,'-25.56'],[0.1337,'-31.63'],[0.1639,'-34.71']],
[[0.4449,'0:14.639'],[0.7759,'-25.98'],[0.1322,'-31.48'],[0.1630,'-34.62']],
[[0.4463,'0:14.685'],[0.7827,'-26.52'],[0.1313,'-31.40'],[0.1623,'-34.55']],
[[0.4477,'0:14.732'],[0.7815,'-26.42'],[0.1296,'-31.22'],[0.1614,'-34.47']],
[[0.4492,'0:14.778'],[0.7867,'-26.84'],[0.1274,'-30.99'],[0.1605,'-34.38']],
[[0.4506,'0:14.825'],[0.8262,'-30.40'],[0.1275,'-31.01'],[0.1598,'-34.30']],
[[0.4520,'0:14.871'],[0.7930,'-27.37'],[0.1299,'-31.25'],[0.1592,'-34.24']],
[[0.4534,'0:14.917'],[0.7927,'-27.34'],[0.1338,'-31.65'],[0.1587,'-34.19']],
[[0.4548,'0:14.964'],[0.8072,'-28.60'],[0.1405,'-32.33'],[0.1585,'-34.17']],
[[0.4562,'0:15.010'],[0.7404,'-23.43'],[0.1474,'-33.04'],[0.1583,'-34.15']],
[[0.4576,'0:15.057'],[0.8397,'-31.80'],[0.1555,'-33.86'],[0.1583,'-34.15']],
[[0.4590,'0:15.103'],[0.8037,'-28.28'],[0.1617,'-34.49'],[0.1579,'-34.10']],
[[0.4605,'0:15.150'],[0.8787,'-36.64'],[0.1319,'-31.45'],[0.1501,'-33.31']],
[[0.4619,'0:15.196'],[0.9042,'-40.74'],[0.1021,'-28.42'],[0.1423,'-32.52']],
[[0.4633,'0:15.243'],[0.5419,'-13.56'],[0.0954,'-27.73'],[0.1405,'-32.33']],
[[0.4647,'0:15.289'],[0.6578,'-18.63'],[0.0912,'-27.30'],[0.1393,'-32.21']],
[[0.4661,'0:15.336'],[0.7031,'-21.10'],[0.0892,'-27.10'],[0.1387,'-32.15']],
[[0.4675,'0:15.382'],[0.7401,'-23.41'],[0.0880,'-26.98'],[0.1382,'-32.09']],
[[0.4689,'0:15.429'],[0.7227,'-22.28'],[0.0875,'-26.92'],[0.1380,'-32.07']],
[[0.4703,'0:15.475'],[0.7021,'-21.04'],[0.0873,'-26.91'],[0.1379,'-32.07']],
[[0.4718,'0:15.522'],[0.7949,'-27.53'],[0.0894,'-27.12'],[0.1386,'-32.13']],
[[0.4732,'0:15.568'],[0.8419,'-32.05'],[0.0943,'-27.62'],[0.1400,'-32.28']],
[[0.4746,'0:15.615'],[0.8657,'-34.87'],[0.1042,'-28.63'],[0.1411,'-32.39']],
[[0.4760,'0:15.661'],[0.8844,'-37.48'],[0.1263,'-30.88'],[0.1412,'-32.40']],
[[0.4774,'0:15.708'],[0.7972,'-27.71'],[0.1481,'-33.11'],[0.1413,'-32.41']],
[[0.4788,'0:15.754'],[0.8546,'-33.49'],[0.1687,'-35.21'],[0.1411,'-32.40']],
[[0.4802,'0:15.800'],[0.9163,'-43.08'],[0.1893,'-37.31'],[0.1410,'-32.38']],
[[0.4816,'0:15.847'],[0.7449,'-23.73'],[0.2011,'-38.51'],[0.1413,'-32.41']],
[[0.4831,'0:15.893'],[0.8576,'-33.86'],[0.2127,'-39.69'],[0.1416,'-32.44']],
[[0.4845,'0:15.940'],[0.7592,'-24.74'],[0.2139,'-39.82'],[0.1423,'-32.51']],
[[0.4859,'0:15.986'],[0.8385,'-31.68'],[0.2131,'-39.73'],[0.1431,'-32.59']],
[[0.4873,'0:16.033'],[0.8993,'-39.88'],[0.2043,'-38.84'],[0.1431,'-32.60']],
[[0.4887,'0:16.079'],[0.8374,'-31.56'],[0.1920,'-37.58'],[0.1429,'-32.57']],
[[0.4901,'0:16.126'],[0.8701,'-35.46'],[0.1849,'-36.86'],[0.1426,'-32.55']],
[[0.4915,'0:16.172'],[0.9018,'-40.31'],[0.1825,'-36.62'],[0.1424,'-32.52']],
[[0.4929,'0:16.219'],[0.7219,'-22.23'],[0.1809,'-36.46'],[0.1427,'-32.55']],
[[0.4944,'0:16.265'],[0.8244,'-30.22'],[0.1806,'-36.43'],[0.1439,'-32.68']],
[[0.4958,'0:16.312'],[0.8455,'-32.44'],[0.1774,'-36.10'],[0.1448,'-32.77']],
[[0.4972,'0:16.358'],[0.8419,'-32.04'],[0.1644,'-34.77'],[0.1446,'-32.75']],
[[0.4986,'0:16.405'],[0.8834,'-37.33'],[0.1521,'-33.52'],[0.1444,'-32.73']],
[[0.5000,'0:16.451'],[0.7243,'-22.39'],[0.1500,'-33.30'],[0.1445,'-32.74']],
[[0.5014,'0:16.498'],[0.7497,'-24.06'],[0.1480,'-33.09'],[0.1446,'-32.75']],
[[0.5028,'0:16.544'],[0.7992,'-27.89'],[0.1513,'-33.43'],[0.1444,'-32.73']],
[[0.5042,'0:16.591'],[0.7875,'-26.91'],[0.1550,'-33.81'],[0.1442,'-32.71']],
[[0.5056,'0:16.637'],[0.8269,'-30.47'],[0.1540,'-33.71'],[0.1439,'-32.68']],
[[0.5071,'0:16.683'],[0.8164,'-29.45'],[0.1515,'-33.46'],[0.1435,'-32.64']],
[[0.5085,'0:16.730'],[0.8124,'-29.07'],[0.1488,'-33.18'],[0.1428,'-32.56']],
[[0.5099,'0:16.776'],[0.8565,'-33.72'],[0.1460,'-32.89'],[0.1418,'-32.46']],
[[0.5113,'0:16.823'],[0.7513,'-24.17'],[0.1443,'-32.72'],[0.1409,'-32.37']],
[[0.5127,'0:16.869'],[0.7653,'-25.18'],[0.1439,'-32.68'],[0.1403,'-32.31']],
[[0.5141,'0:16.916'],[0.7661,'-25.24'],[0.1436,'-32.65'],[0.1399,'-32.27']],
[[0.5155,'0:16.962'],[0.7504,'-24.11'],[0.1432,'-32.61'],[0.1398,'-32.26']],
[[0.5169,'0:17.009'],[0.8336,'-31.15'],[0.1413,'-32.41'],[0.1394,'-32.22']],
[[0.5184,'0:17.055'],[0.7253,'-22.45'],[0.1315,'-31.41'],[0.1374,'-32.02']],
[[0.5198,'0:17.102'],[0.8536,'-33.38'],[0.1217,'-30.42'],[0.1355,'-31.82']],
[[0.5212,'0:17.148'],[0.8858,'-37.69'],[0.1207,'-30.31'],[0.1348,'-31.75']],
[[0.5226,'0:17.195'],[0.6778,'-19.68'],[0.1196,'-30.20'],[0.1341,'-31.68']],
[[0.5240,'0:17.241'],[0.7365,'-23.17'],[0.1206,'-30.30'],[0.1341,'-31.68']],
[[0.5254,'0:17.288'],[0.7622,'-24.95'],[0.1219,'-30.43'],[0.1341,'-31.68']],
[[0.5268,'0:17.334'],[0.8089,'-28.75'],[0.1224,'-30.49'],[0.1340,'-31.67']],
[[0.5282,'0:17.381'],[0.8435,'-32.22'],[0.1226,'-30.51'],[0.1338,'-31.65']],
[[0.5297,'0:17.427'],[0.7151,'-21.81'],[0.1227,'-30.51'],[0.1343,'-31.69']],
[[0.5311,'0:17.474'],[0.8027,'-28.19'],[0.1226,'-30.51'],[0.1352,'-31.79']],
[[0.5325,'0:17.520'],[0.8807,'-36.94'],[0.1312,'-31.39'],[0.1362,'-31.89']],
[[0.5339,'0:17.566'],[0.8502,'-32.98'],[0.1525,'-33.56'],[0.1372,'-31.99']],
[[0.5353,'0:17.613'],[0.8887,'-38.14'],[0.1717,'-35.52'],[0.1381,'-32.08']],
[[0.5367,'0:17.659'],[0.7870,'-26.87'],[0.1847,'-36.84'],[0.1387,'-32.15']],
[[0.5381,'0:17.706'],[0.8637,'-34.62'],[0.1971,'-38.10'],[0.1393,'-32.21']],
[[0.5395,'0:17.752'],[0.9079,'-41.44'],[0.2044,'-38.84'],[0.1394,'-32.22']],
[[0.5410,'0:17.799'],[0.7278,'-22.60'],[0.2116,'-39.59'],[0.1395,'-32.23']],
[[0.5424,'0:17.845'],[0.8560,'-33.67'],[0.2124,'-39.67'],[0.1401,'-32.29']],
[[0.5438,'0:17.892'],[0.7783,'-26.17'],[0.2129,'-39.71'],[0.1407,'-32.35']],
[[0.5452,'0:17.938'],[0.7813,'-26.41'],[0.2118,'-39.60'],[0.1410,'-32.38']],
[[0.5466,'0:17.985'],[0.9017,'-40.29'],[0.2104,'-39.46'],[0.1412,'-32.40']],
[[0.5480,'0:18.031'],[0.7918,'-27.26'],[0.2000,'-38.40'],[0.1408,'-32.36']],
[[0.5494,'0:18.078'],[0.8690,'-35.31'],[0.1848,'-36.85'],[0.1400,'-32.28']],
[[0.5508,'0:18.124'],[0.9047,'-40.84'],[0.1753,'-35.88'],[0.1419,'-32.48']],
[[0.5523,'0:18.171'],[0.7512,'-24.17'],[0.1717,'-35.51'],[0.1467,'-32.96']],
[[0.5537,'0:18.217'],[0.7856,'-26.75'],[0.1651,'-34.84'],[0.1510,'-33.40']],
[[0.5551,'0:18.264'],[0.7991,'-27.88'],[0.1528,'-33.58'],[0.1544,'-33.75']],
[[0.5565,'0:18.310'],[0.8224,'-30.02'],[0.1403,'-32.31'],[0.1567,'-33.99']],
[[0.5579,'0:18.357'],[0.8599,'-34.15'],[0.1274,'-30.99'],[0.1544,'-33.75']],
[[0.5593,'0:18.403'],[0.6788,'-19.73'],[0.1147,'-29.70'],[0.1521,'-33.51']],
[[0.5607,'0:18.449'],[0.6543,'-18.45'],[0.1117,'-29.39'],[0.1501,'-33.31']],
[[0.5621,'0:18.496'],[0.7460,'-23.81'],[0.1087,'-29.08'],[0.1482,'-33.11']],
[[0.5636,'0:18.542'],[0.7328,'-22.93'],[0.1057,'-28.78'],[0.1468,'-32.97']],
[[0.5650,'0:18.589'],[0.7269,'-22.55'],[0.1027,'-28.47'],[0.1455,'-32.84']],
[[0.5664,'0:18.635'],[0.7383,'-23.28'],[0.0996,'-28.16'],[0.1437,'-32.66']],
[[0.5678,'0:18.682'],[0.7666,'-25.28'],[0.0965,'-27.84'],[0.1418,'-32.46']],
[[0.5692,'0:18.728'],[0.7666,'-25.28'],[0.0966,'-27.86'],[0.1399,'-32.27']],
[[0.5706,'0:18.775'],[0.6653,'-19.01'],[0.0991,'-28.11'],[0.1383,'-32.10']],
[[0.5720,'0:18.821'],[0.7024,'-21.05'],[0.1006,'-28.26'],[0.1368,'-31.95']],
[[0.5734,'0:18.868'],[0.7327,'-22.92'],[0.1008,'-28.28'],[0.1356,'-31.83']],
[[0.5749,'0:18.914'],[0.6612,'-18.80'],[0.1011,'-28.31'],[0.1345,'-31.72']],
[[0.5763,'0:18.961'],[0.7319,'-22.87'],[0.1017,'-28.37'],[0.1339,'-31.65']],
[[0.5777,'0:19.007'],[0.7499,'-24.08'],[0.1015,'-28.35'],[0.1329,'-31.55']],
[[0.5791,'0:19.054'],[0.7506,'-24.12'],[0.0955,'-27.74'],[0.1298,'-31.23']],
[[0.5805,'0:19.100'],[0.7279,'-22.61'],[0.0895,'-27.13'],[0.1266,'-30.92']],
[[0.5819,'0:19.147'],[0.6494,'-18.21'],[0.0878,'-26.95'],[0.1253,'-30.78']],
[[0.5833,'0:19.193'],[0.6611,'-18.80'],[0.0862,'-26.80'],[0.1240,'-30.65']],
[[0.5847,'0:19.240'],[0.6880,'-20.24'],[0.0865,'-26.82'],[0.1229,'-30.54']],
[[0.5862,'0:19.286'],[0.7163,'-21.88'],[0.0871,'-26.89'],[0.1219,'-30.44']],
[[0.5876,'0:19.332'],[0.7605,'-24.83'],[0.0860,'-26.77'],[0.1213,'-30.37']],
[[0.5890,'0:19.379'],[0.7131,'-21.69'],[0.0840,'-26.57'],[0.1208,'-30.32']],
[[0.5904,'0:19.425'],[0.7220,'-22.24'],[0.0836,'-26.53'],[0.1201,'-30.25']],
[[0.5918,'0:19.472'],[0.7039,'-21.14'],[0.0847,'-26.64'],[0.1192,'-30.16']],
[[0.5932,'0:19.518'],[0.7233,'-22.32'],[0.0876,'-26.93'],[0.1184,'-30.08']],
[[0.5946,'0:19.565'],[0.7488,'-24.00'],[0.0936,'-27.55'],[0.1175,'-29.99']],
[[0.5960,'0:19.611'],[0.6934,'-20.54'],[0.0983,'-28.03'],[0.1168,'-29.91']],
[[0.5975,'0:19.658'],[0.7309,'-22.81'],[0.0978,'-27.97'],[0.1163,'-29.86']],
[[0.5989,'0:19.704'],[0.7131,'-21.69'],[0.0973,'-27.92'],[0.1157,'-29.80']],
[[0.6003,'0:19.751'],[0.6972,'-20.76'],[0.0973,'-27.92'],[0.1150,'-29.73']],
[[0.6017,'0:19.797'],[0.7507,'-24.13'],[0.0973,'-27.92'],[0.1142,'-29.65']],
[[0.6031,'0:19.844'],[0.6811,'-19.85'],[0.0956,'-27.75'],[0.1133,'-29.56']],
[[0.6045,'0:19.890'],[0.6153,'-16.59'],[0.0938,'-27.56'],[0.1123,'-29.46']],
[[0.6059,'0:19.937'],[0.6304,'-17.29'],[0.0932,'-27.51'],[0.1115,'-29.37']],
[[0.6073,'0:19.983'],[0.6913,'-20.42'],[0.0931,'-27.49'],[0.1107,'-29.29']],
[[0.6088,'0:20.030'],[0.7409,'-23.46'],[0.0926,'-27.44'],[0.1101,'-29.23']],
[[0.6102,'0:20.076'],[0.7855,'-26.75'],[0.0919,'-27.37'],[0.1097,'-29.19']],
[[0.6116,'0:20.123'],[0.6592,'-18.70'],[0.0914,'-27.32'],[0.1099,'-29.21']],
[[0.6130,'0:20.169'],[0.7487,'-23.99'],[0.0912,'-27.30'],[0.1108,'-29.30']],
[[0.6144,'0:20.215'],[0.7047,'-21.19'],[0.0916,'-27.34'],[0.1110,'-29.32']],
[[0.6158,'0:20.262'],[0.7539,'-24.36'],[0.0936,'-27.55'],[0.1094,'-29.16']],
[[0.6172,'0:20.308'],[0.8134,'-29.16'],[0.0946,'-27.65'],[0.1078,'-29.00']],
[[0.6186,'0:20.355'],[0.6986,'-20.84'],[0.0897,'-27.15'],[0.1062,'-28.84']],
[[0.6201,'0:20.401'],[0.6342,'-17.47'],[0.0847,'-26.64'],[0.1046,'-28.67']],
[[0.6215,'0:20.448'],[0.6505,'-18.26'],[0.0828,'-26.45'],[0.1036,'-28.56']],
[[0.6229,'0:20.494'],[0.6402,'-17.76'],[0.0809,'-26.25'],[0.1025,'-28.46']],
[[0.6243,'0:20.541'],[0.6757,'-19.56'],[0.0790,'-26.06'],[0.1018,'-28.38']],
[[0.6257,'0:20.587'],[0.6956,'-20.66'],[0.0771,'-25.86'],[0.1011,'-28.32']],
[[0.6271,'0:20.634'],[0.7231,'-22.31'],[0.0753,'-25.68'],[0.1002,'-28.22']],
[[0.6285,'0:20.680'],[0.7418,'-23.52'],[0.0735,'-25.50'],[0.0992,'-28.12']],
[[0.6299,'0:20.727'],[0.6790,'-19.74'],[0.0749,'-25.64'],[0.0983,'-28.03']],
[[0.6314,'0:20.773'],[0.6878,'-20.22'],[0.0790,'-26.06'],[0.0975,'-27.94']],
[[0.6328,'0:20.820'],[0.7158,'-21.86'],[0.0824,'-26.41'],[0.0967,'-27.86']],
[[0.6342,'0:20.866'],[0.6859,'-20.12'],[0.0846,'-26.63'],[0.0960,'-27.79']],
[[0.6356,'0:20.913'],[0.7175,'-21.96'],[0.0845,'-26.62'],[0.0949,'-27.68']],
[[0.6370,'0:20.959'],[0.7060,'-21.27'],[0.0768,'-25.84'],[0.0928,'-27.46']],
[[0.6384,'0:21.006'],[0.7177,'-21.97'],[0.0695,'-25.09'],[0.0907,'-27.25']],
[[0.6398,'0:21.052'],[0.7268,'-22.54'],[0.0665,'-24.78'],[0.0894,'-27.12']],
[[0.6412,'0:21.098'],[0.5833,'-15.21'],[0.0635,'-24.47'],[0.0881,'-26.99']],
[[0.6427,'0:21.145'],[0.6110,'-16.40'],[0.0631,'-24.44'],[0.0878,'-26.96']],
[[0.6441,'0:21.191'],[0.6550,'-18.48'],[0.0629,'-24.42'],[0.0875,'-26.93']],
[[0.6455,'0:21.238'],[0.7124,'-21.65'],[0.0630,'-24.43'],[0.0870,'-26.88']],
[[0.6469,'0:21.284'],[0.7316,'-22.85'],[0.0631,'-24.44'],[0.0864,'-26.82']],
[[0.6483,'0:21.331'],[0.6681,'-19.16'],[0.0630,'-24.43'],[0.0862,'-26.79']],
[[0.6497,'0:21.377'],[0.6626,'-18.88'],[0.0627,'-24.39'],[0.0862,'-26.79']],
[[0.6511,'0:21.424'],[0.7124,'-21.65'],[0.0668,'-24.81'],[0.0861,'-26.79']],
[[0.6525,'0:21.470'],[0.7125,'-21.65'],[0.0757,'-25.72'],[0.0860,'-26.77']],
[[0.6540,'0:21.517'],[0.6998,'-20.90'],[0.0815,'-26.31'],[0.0857,'-26.74']],
[[0.6554,'0:21.563'],[0.6751,'-19.53'],[0.0810,'-26.26'],[0.0853,'-26.70']],
[[0.6568,'0:21.610'],[0.7136,'-21.72'],[0.0808,'-26.24'],[0.0849,'-26.66']],
[[0.6582,'0:21.656'],[0.7454,'-23.76'],[0.0822,'-26.38'],[0.0850,'-26.67']],
[[0.6596,'0:21.703'],[0.6669,'-19.10'],[0.0835,'-26.52'],[0.0850,'-26.67']],
[[0.6610,'0:21.749'],[0.6901,'-20.35'],[0.0831,'-26.48'],[0.0846,'-26.63']],
[[0.6624,'0:21.796'],[0.7309,'-22.80'],[0.0827,'-26.44'],[0.0842,'-26.59']],
[[0.6638,'0:21.842'],[0.6385,'-17.68'],[0.0803,'-26.19'],[0.0836,'-26.53']],
[[0.6653,'0:21.889'],[0.6636,'-18.92'],[0.0776,'-25.92'],[0.0830,'-26.47']],
[[0.6667,'0:21.935'],[0.6711,'-19.32'],[0.0755,'-25.70'],[0.0823,'-26.39']],
[[0.6681,'0:21.981'],[0.6716,'-19.34'],[0.0736,'-25.51'],[0.0815,'-26.31']],
[[0.6695,'0:22.028'],[0.6796,'-19.77'],[0.0716,'-25.30'],[0.0812,'-26.29']],
[[0.6709,'0:22.074'],[0.6042,'-16.10'],[0.0695,'-25.09'],[0.0814,'-26.30']],
[[0.6723,'0:22.121'],[0.6824,'-19.93'],[0.0672,'-24.85'],[0.0812,'-26.28']],
[[0.6737,'0:22.167'],[0.6701,'-19.27'],[0.0645,'-24.58'],[0.0806,'-26.22']],
[[0.6751,'0:22.214'],[0.6852,'-20.08'],[0.0618,'-24.30'],[0.0798,'-26.14']],
[[0.6766,'0:22.260'],[0.7580,'-24.65'],[0.0587,'-23.99'],[0.0786,'-26.02']],
[[0.6780,'0:22.307'],[0.5302,'-13.12'],[0.0556,'-23.67'],[0.0775,'-25.90']],
[[0.6794,'0:22.353'],[0.5842,'-15.25'],[0.0530,'-23.40'],[0.0764,'-25.79']],
[[0.6808,'0:22.400'],[0.6423,'-17.86'],[0.0503,'-23.13'],[0.0753,'-25.68']],
[[0.6822,'0:22.446'],[0.6639,'-18.94'],[0.0483,'-22.92'],[0.0746,'-25.61']],
[[0.6836,'0:22.493'],[0.6516,'-18.32'],[0.0463,'-22.72'],[0.0738,'-25.53']],
[[0.6850,'0:22.539'],[0.6356,'-17.54'],[0.0433,'-22.42'],[0.0725,'-25.39']],
[[0.6864,'0:22.586'],[0.6772,'-19.64'],[0.0401,'-22.09'],[0.0710,'-25.24']],
[[0.6879,'0:22.632'],[0.6818,'-19.89'],[0.0388,'-21.96'],[0.0698,'-25.11']],
[[0.6893,'0:22.679'],[0.5635,'-14.40'],[0.0387,'-21.95'],[0.0686,'-25.00']],
[[0.6907,'0:22.725'],[0.6082,'-16.28'],[0.0390,'-21.98'],[0.0678,'-24.92']],
[[0.6921,'0:22.772'],[0.6106,'-16.38'],[0.0397,'-22.05'],[0.0672,'-24.86']],
[[0.6935,'0:22.818'],[0.6358,'-17.55'],[0.0402,'-22.10'],[0.0667,'-24.80']],
[[0.6949,'0:22.864'],[0.6583,'-18.65'],[0.0404,'-22.12'],[0.0662,'-24.75']],
[[0.6963,'0:22.911'],[0.6248,'-17.03'],[0.0403,'-22.11'],[0.0654,'-24.67']],
[[0.6977,'0:22.957'],[0.6507,'-18.27'],[0.0390,'-21.98'],[0.0640,'-24.53']],
[[0.6992,'0:23.004'],[0.6236,'-16.97'],[0.0379,'-21.86'],[0.0626,'-24.38']],
[[0.7006,'0:23.050'],[0.5689,'-14.62'],[0.0388,'-21.95'],[0.0620,'-24.32']],
[[0.7020,'0:23.097'],[0.5878,'-15.40'],[0.0397,'-22.04'],[0.0614,'-24.26']],
[[0.7034,'0:23.143'],[0.6349,'-17.50'],[0.0406,'-22.14'],[0.0609,'-24.21']],
[[0.7048,'0:23.190'],[0.6550,'-18.49'],[0.0416,'-22.24'],[0.0604,'-24.16']],
[[0.7062,'0:23.236'],[0.6628,'-18.89'],[0.0430,'-22.38'],[0.0602,'-24.14']],
[[0.7076,'0:23.283'],[0.6297,'-17.26'],[0.0444,'-22.53'],[0.0601,'-24.13']],
[[0.7090,'0:23.329'],[0.7166,'-21.90'],[0.0473,'-22.83'],[0.0603,'-24.15']],
[[0.7105,'0:23.376'],[0.6596,'-18.72'],[0.0512,'-23.22'],[0.0605,'-24.17']],
[[0.7119,'0:23.422'],[0.7161,'-21.87'],[0.0565,'-23.77'],[0.0607,'-24.19']],
[[0.7133,'0:23.469'],[0.7327,'-22.92'],[0.0638,'-24.51'],[0.0608,'-24.20']],
[[0.7147,'0:23.515'],[0.7266,'-22.53'],[0.0700,'-25.14'],[0.0609,'-24.21']],
[[0.7161,'0:23.562'],[0.7523,'-24.24'],[0.0737,'-25.51'],[0.0607,'-24.19']],
[[0.7175,'0:23.608'],[0.7059,'-21.26'],[0.0771,'-25.86'],[0.0606,'-24.18']],
[[0.7189,'0:23.654'],[0.6740,'-19.47'],[0.0790,'-26.06'],[0.0607,'-24.19']],
[[0.7203,'0:23.701'],[0.7358,'-23.12'],[0.0809,'-26.25'],[0.0608,'-24.20']],
[[0.7218,'0:23.747'],[0.6128,'-16.48'],[0.0820,'-26.37'],[0.0607,'-24.19']],
[[0.7232,'0:23.794'],[0.7289,'-22.67'],[0.0832,'-26.49'],[0.0607,'-24.19']],
[[0.7246,'0:23.840'],[0.7479,'-23.94'],[0.0830,'-26.47'],[0.0606,'-24.18']],
[[0.7260,'0:23.887'],[0.6706,'-19.29'],[0.0826,'-26.43'],[0.0605,'-24.17']],
[[0.7274,'0:23.933'],[0.7616,'-24.91'],[0.0799,'-26.15'],[0.0603,'-24.15']],
[[0.7288,'0:23.980'],[0.6935,'-20.54'],[0.0760,'-25.75'],[0.0601,'-24.13']],
[[0.7302,'0:24.026'],[0.7114,'-21.59'],[0.0743,'-25.58'],[0.0604,'-24.16']],
[[0.7316,'0:24.073'],[0.6925,'-20.49'],[0.0748,'-25.63'],[0.0613,'-24.25']],
[[0.7331,'0:24.119'],[0.7043,'-21.16'],[0.0739,'-25.53'],[0.0617,'-24.29']],
[[0.7345,'0:24.166'],[0.7289,'-22.68'],[0.0705,'-25.19'],[0.0612,'-24.24']],
[[0.7359,'0:24.212'],[0.7661,'-25.24'],[0.0676,'-24.90'],[0.0608,'-24.20']],
[[0.7373,'0:24.259'],[0.6244,'-17.01'],[0.0664,'-24.77'],[0.0608,'-24.20']],
[[0.7387,'0:24.305'],[0.6781,'-19.69'],[0.0653,'-24.66'],[0.0608,'-24.20']],
[[0.7401,'0:24.352'],[0.6600,'-18.74'],[0.0666,'-24.79'],[0.0608,'-24.20']],
[[0.7415,'0:24.398'],[0.7071,'-21.33'],[0.0679,'-24.92'],[0.0608,'-24.20']],
[[0.7429,'0:24.445'],[0.7147,'-21.79'],[0.0695,'-25.09'],[0.0608,'-24.21']],
[[0.7444,'0:24.491'],[0.7095,'-21.47'],[0.0711,'-25.25'],[0.0609,'-24.21']],
[[0.7458,'0:24.537'],[0.7449,'-23.73'],[0.0711,'-25.25'],[0.0607,'-24.19']],
[[0.7472,'0:24.584'],[0.7422,'-23.55'],[0.0705,'-25.19'],[0.0604,'-24.17']],
[[0.7486,'0:24.630'],[0.6123,'-16.46'],[0.0719,'-25.33'],[0.0603,'-24.15']],
[[0.7500,'0:24.677'],[0.6772,'-19.64'],[0.0745,'-25.60'],[0.0602,'-24.14']],
[[0.7514,'0:24.723'],[0.6803,'-19.81'],[0.0772,'-25.87'],[0.0603,'-24.15']],
[[0.7528,'0:24.770'],[0.6805,'-19.82'],[0.0799,'-26.15'],[0.0605,'-24.17']],
[[0.7542,'0:24.816'],[0.7483,'-23.97'],[0.0798,'-26.14'],[0.0605,'-24.18']],
[[0.7556,'0:24.863'],[0.6795,'-19.77'],[0.0734,'-25.48'],[0.0602,'-24.14']],
[[0.7571,'0:24.909'],[0.7537,'-24.34'],[0.0680,'-24.93'],[0.0600,'-24.12']],
[[0.7585,'0:24.956'],[0.5873,'-15.38'],[0.0685,'-24.99'],[0.0601,'-24.13']],
[[0.7599,'0:25.002'],[0.5656,'-14.49'],[0.0690,'-25.04'],[0.0602,'-24.14']],
[[0.7613,'0:25.049'],[0.6792,'-19.75'],[0.0716,'-25.30'],[0.0604,'-24.17']],
[[0.7627,'0:25.095'],[0.7354,'-23.10'],[0.0741,'-25.56'],[0.0607,'-24.20']],
[[0.7641,'0:25.142'],[0.7292,'-22.69'],[0.0743,'-25.58'],[0.0608,'-24.20']],
[[0.7655,'0:25.188'],[0.7518,'-24.21'],[0.0741,'-25.56'],[0.0607,'-24.19']],
[[0.7669,'0:25.235'],[0.7147,'-21.79'],[0.0741,'-25.56'],[0.0616,'-24.28']],
[[0.7684,'0:25.281'],[0.7496,'-24.05'],[0.0742,'-25.57'],[0.0628,'-24.41']],
[[0.7698,'0:25.328'],[0.7593,'-24.74'],[0.0828,'-26.44'],[0.0639,'-24.52']],
[[0.7712,'0:25.374'],[0.7674,'-25.34'],[0.0984,'-28.04'],[0.0648,'-24.61']],
[[0.7726,'0:25.420'],[0.7708,'-25.59'],[0.1089,'-29.11'],[0.0657,'-24.71']],
[[0.7740,'0:25.467'],[0.7594,'-24.75'],[0.1116,'-29.38'],[0.0666,'-24.79']],
[[0.7754,'0:25.513'],[0.7639,'-25.07'],[0.1148,'-29.71'],[0.0675,'-24.88']],
[[0.7768,'0:25.560'],[0.6290,'-17.22'],[0.1193,'-30.16'],[0.0686,'-25.00']],
[[0.7782,'0:25.606'],[0.7508,'-24.14'],[0.1237,'-30.61'],[0.0698,'-25.12']],
[[0.7797,'0:25.653'],[0.8113,'-28.97'],[0.1275,'-31.01'],[0.0716,'-25.31']],
[[0.7811,'0:25.699'],[0.7462,'-23.82'],[0.1313,'-31.40'],[0.0735,'-25.49']],
[[0.7825,'0:25.746'],[0.8291,'-30.69'],[0.1352,'-31.79'],[0.0745,'-25.60']],
[[0.7839,'0:25.792'],[0.7540,'-24.36'],[0.1390,'-32.18'],[0.0755,'-25.70']],
[[0.7853,'0:25.839'],[0.8052,'-28.42'],[0.1374,'-32.02'],[0.0765,'-25.80']],
[[0.7867,'0:25.885'],[0.8514,'-33.12'],[0.1344,'-31.71'],[0.0774,'-25.89']],
[[0.7881,'0:25.932'],[0.6189,'-16.76'],[0.1332,'-31.59'],[0.0790,'-26.06']],
[[0.7895,'0:25.978'],[0.7437,'-23.65'],[0.1330,'-31.57'],[0.0810,'-26.26']],
[[0.7910,'0:26.025'],[0.7859,'-26.78'],[0.1279,'-31.05'],[0.0828,'-26.45']],
[[0.7924,'0:26.071'],[0.8087,'-28.73'],[0.1175,'-29.99'],[0.0845,'-26.62']],
[[0.7938,'0:26.118'],[0.8147,'-29.29'],[0.1086,'-29.08'],[0.0858,'-26.75']],
[[0.7952,'0:26.164'],[0.6700,'-19.26'],[0.1025,'-28.46'],[0.0863,'-26.80']],
[[0.7966,'0:26.211'],[0.6326,'-17.39'],[0.0971,'-27.90'],[0.0867,'-26.85']],
[[0.7980,'0:26.257'],[0.6942,'-20.58'],[0.0945,'-27.64'],[0.0868,'-26.86']],
[[0.7994,'0:26.303'],[0.6975,'-20.77'],[0.0919,'-27.37'],[0.0869,'-26.87']],
[[0.8008,'0:26.350'],[0.7071,'-21.33'],[0.0881,'-26.99'],[0.0871,'-26.89']],
[[0.8023,'0:26.396'],[0.6837,'-19.99'],[0.0844,'-26.61'],[0.0873,'-26.91']],
[[0.8037,'0:26.443'],[0.6709,'-19.31'],[0.0823,'-26.40'],[0.0872,'-26.90']],
[[0.8051,'0:26.489'],[0.7405,'-23.43'],[0.0805,'-26.22'],[0.0871,'-26.89']],
[[0.8065,'0:26.536'],[0.6866,'-20.15'],[0.0794,'-26.10'],[0.0869,'-26.86']],
[[0.8079,'0:26.582'],[0.7062,'-21.28'],[0.0785,'-26.00'],[0.0866,'-26.83']],
[[0.8093,'0:26.629'],[0.7097,'-21.48'],[0.0771,'-25.86'],[0.0863,'-26.80']],
[[0.8107,'0:26.675'],[0.6311,'-17.32'],[0.0754,'-25.69'],[0.0860,'-26.77']],
[[0.8121,'0:26.722'],[0.6456,'-18.02'],[0.0721,'-25.36'],[0.0854,'-26.71']],
[[0.8136,'0:26.768'],[0.6665,'-19.08'],[0.0665,'-24.79'],[0.0844,'-26.61']],
[[0.8150,'0:26.815'],[0.6991,'-20.86'],[0.0617,'-24.29'],[0.0835,'-26.52']],
[[0.8164,'0:26.861'],[0.7241,'-22.37'],[0.0588,'-24.00'],[0.0829,'-26.46']],
[[0.8178,'0:26.908'],[0.5631,'-14.38'],[0.0564,'-23.75'],[0.0824,'-26.41']],
[[0.8192,'0:26.954'],[0.5972,'-15.80'],[0.0571,'-23.83'],[0.0828,'-26.45']],
[[0.8206,'0:27.001'],[0.6635,'-18.92'],[0.0578,'-23.90'],[0.0832,'-26.49']],
[[0.8220,'0:27.047'],[0.6863,'-20.14'],[0.0576,'-23.88'],[0.0826,'-26.43']],
[[0.8234,'0:27.094'],[0.7133,'-21.70'],[0.0575,'-23.86'],[0.0820,'-26.36']],
[[0.8249,'0:27.140'],[0.6443,'-17.95'],[0.0553,'-23.64'],[0.0817,'-26.33']],
[[0.8263,'0:27.186'],[0.6088,'-16.30'],[0.0526,'-23.36'],[0.0815,'-26.31']],
[[0.8277,'0:27.233'],[0.6201,'-16.81'],[0.0529,'-23.39'],[0.0810,'-26.27']],
[[0.8291,'0:27.279'],[0.6072,'-16.23'],[0.0547,'-23.58'],[0.0805,'-26.21']],
[[0.8305,'0:27.326'],[0.6118,'-16.44'],[0.0535,'-23.46'],[0.0797,'-26.13']],
[[0.8319,'0:27.372'],[0.6478,'-18.13'],[0.0494,'-23.04'],[0.0787,'-26.03']],
[[0.8333,'0:27.419'],[0.6537,'-18.42'],[0.0467,'-22.77'],[0.0780,'-25.96']],
[[0.8347,'0:27.465'],[0.6842,'-20.03'],[0.0467,'-22.77'],[0.0778,'-25.93']],
[[0.8362,'0:27.512'],[0.6158,'-16.62'],[0.0470,'-22.79'],[0.0775,'-25.90']],
[[0.8376,'0:27.558'],[0.6776,'-19.66'],[0.0485,'-22.95'],[0.0770,'-25.85']],
[[0.8390,'0:27.605'],[0.6758,'-19.57'],[0.0498,'-23.08'],[0.0764,'-25.79']],
[[0.8404,'0:27.651'],[0.5736,'-14.81'],[0.0482,'-22.92'],[0.0751,'-25.66']],
[[0.8418,'0:27.698'],[0.5974,'-15.81'],[0.0466,'-22.76'],[0.0739,'-25.53']],
[[0.8432,'0:27.744'],[0.6124,'-16.47'],[0.0458,'-22.67'],[0.0727,'-25.42']],
[[0.8446,'0:27.791'],[0.6291,'-17.23'],[0.0451,'-22.60'],[0.0716,'-25.30']],
[[0.8460,'0:27.837'],[0.6424,'-17.87'],[0.0445,'-22.53'],[0.0715,'-25.30']],
[[0.8475,'0:27.884'],[0.6183,'-16.73'],[0.0439,'-22.47'],[0.0719,'-25.33']],
[[0.8489,'0:27.930'],[0.6554,'-18.51'],[0.0453,'-22.62'],[0.0723,'-25.38']],
[[0.8503,'0:27.977'],[0.6968,'-20.73'],[0.0481,'-22.90'],[0.0729,'-25.43']],
[[0.8517,'0:28.023'],[0.7295,'-22.71'],[0.0508,'-23.19'],[0.0729,'-25.43']],
[[0.8531,'0:28.069'],[0.8000,'-27.96'],[0.0537,'-23.47'],[0.0722,'-25.36']],
[[0.8545,'0:28.116'],[0.5957,'-15.73'],[0.0565,'-23.77'],[0.0715,'-25.29']],
[[0.8559,'0:28.162'],[0.6394,'-17.72'],[0.0595,'-24.07'],[0.0710,'-25.25']],
[[0.8573,'0:28.209'],[0.6443,'-17.96'],[0.0624,'-24.37'],[0.0706,'-25.20']],
[[0.8588,'0:28.255'],[0.6527,'-18.37'],[0.0648,'-24.61'],[0.0701,'-25.15']],
[[0.8602,'0:28.302'],[0.6654,'-19.02'],[0.0672,'-24.85'],[0.0695,'-25.09']],
[[0.8616,'0:28.348'],[0.6713,'-19.33'],[0.0628,'-24.40'],[0.0688,'-25.01']],
[[0.8630,'0:28.395'],[0.6752,'-19.54'],[0.0583,'-23.95'],[0.0680,'-24.93']],
[[0.8644,'0:28.441'],[0.6745,'-19.50'],[0.0592,'-24.04'],[0.0675,'-24.88']],
[[0.8658,'0:28.488'],[0.6368,'-17.60'],[0.0612,'-24.24'],[0.0670,'-24.84']],
[[0.8672,'0:28.534'],[0.6726,'-19.40'],[0.0596,'-24.08'],[0.0661,'-24.74']],
[[0.8686,'0:28.581'],[0.7120,'-21.63'],[0.0564,'-23.75'],[0.0649,'-24.62']],
[[0.8701,'0:28.627'],[0.6170,'-16.67'],[0.0528,'-23.39'],[0.0637,'-24.50']],
[[0.8715,'0:28.674'],[0.6359,'-17.55'],[0.0489,'-22.99'],[0.0625,'-24.37']],
[[0.8729,'0:28.720'],[0.6198,'-16.80'],[0.0450,'-22.59'],[0.0611,'-24.24']],
[[0.8743,'0:28.767'],[0.6380,'-17.65'],[0.0411,'-22.19'],[0.0596,'-24.08']],
[[0.8757,'0:28.813'],[0.6004,'-15.94'],[0.0378,'-21.85'],[0.0584,'-23.96']],
[[0.8771,'0:28.860'],[0.5382,'-13.42'],[0.0366,'-21.73'],[0.0580,'-23.92']],
[[0.8785,'0:28.906'],[0.6113,'-16.41'],[0.0355,'-21.62'],[0.0576,'-23.87']],
[[0.8799,'0:28.952'],[0.6573,'-18.60'],[0.0354,'-21.61'],[0.0565,'-23.76']],
[[0.8814,'0:28.999'],[0.6765,'-19.60'],[0.0353,'-21.60'],[0.0553,'-23.64']],
[[0.8828,'0:29.045'],[0.6955,'-20.66'],[0.0353,'-21.60'],[0.0548,'-23.59']],
[[0.8842,'0:29.092'],[0.5457,'-13.71'],[0.0352,'-21.59'],[0.0543,'-23.54']],
[[0.8856,'0:29.138'],[0.5654,'-14.48'],[0.0375,'-21.83'],[0.0540,'-23.51']],
[[0.8870,'0:29.185'],[0.6328,'-17.40'],[0.0406,'-22.14'],[0.0538,'-23.48']],
[[0.8884,'0:29.231'],[0.6485,'-18.16'],[0.0439,'-22.48'],[0.0537,'-23.48']],
[[0.8898,'0:29.278'],[0.6709,'-19.30'],[0.0474,'-22.84'],[0.0538,'-23.49']],
[[0.8912,'0:29.324'],[0.6752,'-19.54'],[0.0502,'-23.12'],[0.0540,'-23.50']],
[[0.8927,'0:29.371'],[0.7408,'-23.45'],[0.0522,'-23.32'],[0.0541,'-23.52']],
[[0.8941,'0:29.417'],[0.6796,'-19.77'],[0.0574,'-23.85'],[0.0542,'-23.53']],
[[0.8955,'0:29.464'],[0.7172,'-21.94'],[0.0695,'-25.09'],[0.0541,'-23.52']],
[[0.8969,'0:29.510'],[0.7865,'-26.83'],[0.0801,'-26.17'],[0.0540,'-23.51']],
[[0.8983,'0:29.557'],[0.6960,'-20.68'],[0.0828,'-26.44'],[0.0541,'-23.52']],
[[0.8997,'0:29.603'],[0.6354,'-17.53'],[0.0853,'-26.70'],[0.0542,'-23.53']],
[[0.9011,'0:29.650'],[0.6263,'-17.10'],[0.0793,'-26.08'],[0.0540,'-23.51']],
[[0.9025,'0:29.696'],[0.6739,'-19.46'],[0.0732,'-25.46'],[0.0539,'-23.49']],
[[0.9040,'0:29.743'],[0.6631,'-18.90'],[0.0663,'-24.76'],[0.0535,'-23.46']],
[[0.9054,'0:29.789'],[0.6368,'-17.59'],[0.0593,'-24.05'],[0.0532,'-23.43']],
[[0.9068,'0:29.835'],[0.6263,'-17.10'],[0.0567,'-23.78'],[0.0535,'-23.46']],
[[0.9082,'0:29.882'],[0.6632,'-18.90'],[0.0557,'-23.69'],[0.0541,'-23.52']],
[[0.9096,'0:29.928'],[0.6653,'-19.01'],[0.0537,'-23.47'],[0.0539,'-23.49']],
[[0.9110,'0:29.975'],[0.7065,'-21.30'],[0.0506,'-23.17'],[0.0530,'-23.40']],
[[0.9124,'0:30.021'],[0.7654,'-25.19'],[0.0483,'-22.93'],[0.0524,'-23.35']],
[[0.9138,'0:30.068'],[0.5383,'-13.42'],[0.0470,'-22.79'],[0.0524,'-23.34']],
[[0.9153,'0:30.114'],[0.5987,'-15.86'],[0.0460,'-22.69'],[0.0523,'-23.33']],
[[0.9167,'0:30.161'],[0.6621,'-18.85'],[0.0458,'-22.67'],[0.0523,'-23.33']],
[[0.9181,'0:30.207'],[0.6544,'-18.46'],[0.0452,'-22.61'],[0.0522,'-23.33']],
[[0.9195,'0:30.254'],[0.6385,'-17.68'],[0.0414,'-22.22'],[0.0520,'-23.31']],
[[0.9209,'0:30.300'],[0.5809,'-15.11'],[0.0375,'-21.83'],[0.0518,'-23.29']],
[[0.9223,'0:30.347'],[0.6270,'-17.13'],[0.0367,'-21.74'],[0.0516,'-23.27']],
[[0.9237,'0:30.393'],[0.6542,'-18.45'],[0.0361,'-21.68'],[0.0514,'-23.25']],
[[0.9251,'0:30.440'],[0.5663,'-14.51'],[0.0380,'-21.88'],[0.0514,'-23.24']],
[[0.9266,'0:30.486'],[0.6123,'-16.46'],[0.0407,'-22.15'],[0.0514,'-23.24']],
[[0.9280,'0:30.533'],[0.6200,'-16.81'],[0.0428,'-22.37'],[0.0516,'-23.26']],
[[0.9294,'0:30.579'],[0.6748,'-19.52'],[0.0447,'-22.56'],[0.0519,'-23.29']],
[[0.9308,'0:30.626'],[0.6644,'-18.97'],[0.0456,'-22.65'],[0.0520,'-23.30']],
[[0.9322,'0:30.672'],[0.7001,'-20.92'],[0.0456,'-22.65'],[0.0518,'-23.29']],
[[0.9336,'0:30.718'],[0.7246,'-22.40'],[0.0456,'-22.65'],[0.0517,'-23.28']],
[[0.9350,'0:30.765'],[0.5630,'-14.38'],[0.0459,'-22.68'],[0.0517,'-23.27']],
[[0.9364,'0:30.811'],[0.5053,'-12.23'],[0.0465,'-22.75'],[0.0518,'-23.28']],
[[0.9379,'0:30.858'],[0.6260,'-17.08'],[0.0486,'-22.96'],[0.0521,'-23.31']],
[[0.9393,'0:30.904'],[0.6898,'-20.33'],[0.0507,'-23.17'],[0.0524,'-23.35']],
[[0.9407,'0:30.951'],[0.7283,'-22.64'],[0.0518,'-23.28'],[0.0523,'-23.33']],
[[0.9421,'0:30.997'],[0.7604,'-24.82'],[0.0528,'-23.39'],[0.0521,'-23.32']],
[[0.9435,'0:31.044'],[0.6690,'-19.21'],[0.0528,'-23.39'],[0.0524,'-23.34']],
[[0.9449,'0:31.090'],[0.7007,'-20.95'],[0.0527,'-23.37'],[0.0527,'-23.38']],
[[0.9463,'0:31.137'],[0.6995,'-20.89'],[0.0631,'-24.43'],[0.0530,'-23.41']],
[[0.9477,'0:31.183'],[0.7066,'-21.30'],[0.0772,'-25.88'],[0.0534,'-23.44']],
[[0.9492,'0:31.230'],[0.7437,'-23.65'],[0.0830,'-26.47'],[0.0536,'-23.46']],
[[0.9506,'0:31.276'],[0.7230,'-22.30'],[0.0828,'-26.45'],[0.0537,'-23.48']],
[[0.9520,'0:31.323'],[0.7414,'-23.49'],[0.0831,'-26.47'],[0.0538,'-23.49']],
[[0.9534,'0:31.369'],[0.6539,'-18.43'],[0.0838,'-26.54'],[0.0540,'-23.51']],
[[0.9548,'0:31.416'],[0.6812,'-19.86'],[0.0842,'-26.59'],[0.0542,'-23.53']],
[[0.9562,'0:31.462'],[0.7434,'-23.63'],[0.0840,'-26.57'],[0.0543,'-23.54']],
[[0.9576,'0:31.509'],[0.6862,'-20.14'],[0.0839,'-26.56'],[0.0545,'-23.56']],
[[0.9590,'0:31.555'],[0.7104,'-21.53'],[0.0843,'-26.60'],[0.0551,'-23.62']],
[[0.9605,'0:31.601'],[0.7422,'-23.55'],[0.0846,'-26.63'],[0.0557,'-23.69']],
[[0.9619,'0:31.648'],[0.7327,'-22.92'],[0.0833,'-26.50'],[0.0563,'-23.74']],
[[0.9633,'0:31.694'],[0.7923,'-27.31'],[0.0819,'-26.36'],[0.0569,'-23.80']],
[[0.9647,'0:31.741'],[0.6555,'-18.51'],[0.0813,'-26.29'],[0.0579,'-23.91']],
[[0.9661,'0:31.787'],[0.6778,'-19.67'],[0.0808,'-26.24'],[0.0591,'-24.03']],
[[0.9675,'0:31.834'],[0.7167,'-21.91'],[0.0803,'-26.19'],[0.0599,'-24.11']],
[[0.9689,'0:31.880'],[0.7293,'-22.70'],[0.0797,'-26.13'],[0.0605,'-24.17']],
[[0.9703,'0:31.927'],[0.7680,'-25.38'],[0.0773,'-25.89'],[0.0609,'-24.21']],
[[0.9718,'0:31.973'],[0.6373,'-17.62'],[0.0732,'-25.47'],[0.0611,'-24.23']],
[[0.9732,'0:32.020'],[0.6455,'-18.02'],[0.0708,'-25.22'],[0.0615,'-24.28']],
[[0.9746,'0:32.066'],[0.6970,'-20.74'],[0.0714,'-25.29'],[0.0623,'-24.35']],
[[0.9760,'0:32.113'],[0.6808,'-19.83'],[0.0721,'-25.36'],[0.0630,'-24.43']],
[[0.9774,'0:32.159'],[0.6730,'-19.42'],[0.0730,'-25.45'],[0.0635,'-24.47']],
[[0.9788,'0:32.206'],[0.7036,'-21.13'],[0.0737,'-25.52'],[0.0639,'-24.52']],
[[0.9802,'0:32.252'],[0.6687,'-19.19'],[0.0707,'-25.21'],[0.0635,'-24.48']],
[[0.9816,'0:32.299'],[0.7393,'-23.35'],[0.0677,'-24.91'],[0.0631,'-24.43']],
[[0.9831,'0:32.345'],[0.6292,'-17.23'],[0.0684,'-24.98'],[0.0627,'-24.39']],
[[0.9845,'0:32.392'],[0.6297,'-17.26'],[0.0695,'-25.09'],[0.0623,'-24.36']],
[[0.9859,'0:32.438'],[0.6664,'-19.07'],[0.0712,'-25.26'],[0.0622,'-24.34']],
[[0.9873,'0:32.484'],[0.6637,'-18.93'],[0.0731,'-25.45'],[0.0622,'-24.34']],
[[0.9887,'0:32.531'],[0.6845,'-20.04'],[0.0698,'-25.12'],[0.0620,'-24.32']],
[[0.9901,'0:32.577'],[0.6312,'-17.33'],[0.0632,'-24.44'],[0.0616,'-24.29']],
[[0.9915,'0:32.624'],[0.7196,'-22.09'],[0.0589,'-24.00'],[0.0613,'-24.25']],
[[0.9929,'0:32.670'],[0.7468,'-23.86'],[0.0574,'-23.85'],[0.0609,'-24.21']],
[[0.9944,'0:32.717'],[0.4664,'-10.91'],[0.0566,'-23.77'],[0.0608,'-24.20']],
[[0.9958,'0:32.763'],[0.6054,'-16.15'],[0.0574,'-23.85'],[0.0614,'-24.26']],
[[0.9972,'0:32.810'],[0.6590,'-18.69'],[0.0580,'-23.92'],[0.0619,'-24.32']],
[[0.9986,'0:32.856'],[0.6906,'-20.38'],[0.0580,'-23.92'],[0.0619,'-24.32']],
[[1.0000,'0:32.903'],[0.7251,'-22.43'],[0.0580,'-23.92'],[0.0619,'-24.32']],
],
xmaj:[
[0.0000,'0:00'],
[0.1520,'0:05'],
[0.3039,'0:10'],
[0.4559,'0:15'],
[0.6078,'0:20'],
[0.7598,'0:25'],
[0.9118,'0:30'],
],
xmin:[
],
yrange:[
-120.00,
-18.00,
],
ymaj:[
[0.0588,'-24'],
[0.2941,'-48'],
[0.5294,'-72'],
[0.7647,'-96'],
[1.0000,'-120'],
],
ymin:[
0.0000,
0.1176,
0.1765,
0.2353,
0.3529,
0.4118,
0.4706,
0.5882,
0.6471,
0.7059,
0.8235,
0.8824,
0.9412,
],
markers:[
[0.0000,'0:00.000','C# minor','#567272', '#FFFFFF'],
],
};
var canv_0=document.getElementById('chart_0');
draw_chart(canv_0, data_0, -1, -1);
canv_0.addEventListener('mousemove', function (evt) { draw_chart(canv_0, data_0, evt.offsetX, evt.offsetY); }, false);
canv_0.addEventListener('mouseleave', function (evt) { draw_chart(canv_0, data_0, -1, -1); }, false);
window.addEventListener('resize', function (evt) { draw_chart(canv_0, data_0, -1, -1); }, false);
document.getElementById('regions').addEventListener('change', function (evt) { draw_chart(canv_0, data_0, -1, -1); }, false);
document.getElementById('markers').addEventListener('change', function (evt) { draw_chart(canv_0, data_0, -1, -1); }, false);
</script>
</body>
</html>